|
@@ -38,6 +38,7 @@
|
|
#include <net/tcp.h>
|
|
#include <net/tcp.h>
|
|
#include <net/udp.h>
|
|
#include <net/udp.h>
|
|
#include <net/udplite.h>
|
|
#include <net/udplite.h>
|
|
|
|
+#include <linux/bottom_half.h>
|
|
#include <linux/inetdevice.h>
|
|
#include <linux/inetdevice.h>
|
|
#include <linux/proc_fs.h>
|
|
#include <linux/proc_fs.h>
|
|
#include <linux/seq_file.h>
|
|
#include <linux/seq_file.h>
|
|
@@ -50,13 +51,17 @@
|
|
static int sockstat_seq_show(struct seq_file *seq, void *v)
|
|
static int sockstat_seq_show(struct seq_file *seq, void *v)
|
|
{
|
|
{
|
|
struct net *net = seq->private;
|
|
struct net *net = seq->private;
|
|
|
|
+ int orphans, sockets;
|
|
|
|
+
|
|
|
|
+ local_bh_disable();
|
|
|
|
+ orphans = percpu_counter_sum_positive(&tcp_orphan_count),
|
|
|
|
+ sockets = percpu_counter_sum_positive(&tcp_sockets_allocated),
|
|
|
|
+ local_bh_enable();
|
|
|
|
|
|
socket_seq_show(seq);
|
|
socket_seq_show(seq);
|
|
seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n",
|
|
seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n",
|
|
- sock_prot_inuse_get(net, &tcp_prot),
|
|
|
|
- (int)percpu_counter_sum_positive(&tcp_orphan_count),
|
|
|
|
- tcp_death_row.tw_count,
|
|
|
|
- (int)percpu_counter_sum_positive(&tcp_sockets_allocated),
|
|
|
|
|
|
+ sock_prot_inuse_get(net, &tcp_prot), orphans,
|
|
|
|
+ tcp_death_row.tw_count, sockets,
|
|
atomic_read(&tcp_memory_allocated));
|
|
atomic_read(&tcp_memory_allocated));
|
|
seq_printf(seq, "UDP: inuse %d mem %d\n",
|
|
seq_printf(seq, "UDP: inuse %d mem %d\n",
|
|
sock_prot_inuse_get(net, &udp_prot),
|
|
sock_prot_inuse_get(net, &udp_prot),
|