|
@@ -33,6 +33,7 @@
|
|
|
static int sockstat6_seq_show(struct seq_file *seq, void *v)
|
|
|
{
|
|
|
struct net *net = seq->private;
|
|
|
+ unsigned int frag_mem = ip6_frag_mem(net);
|
|
|
|
|
|
seq_printf(seq, "TCP6: inuse %d\n",
|
|
|
sock_prot_inuse_get(net, &tcpv6_prot));
|
|
@@ -42,8 +43,7 @@ static int sockstat6_seq_show(struct seq_file *seq, void *v)
|
|
|
sock_prot_inuse_get(net, &udplitev6_prot));
|
|
|
seq_printf(seq, "RAW6: inuse %d\n",
|
|
|
sock_prot_inuse_get(net, &rawv6_prot));
|
|
|
- seq_printf(seq, "FRAG6: inuse %d memory %d\n",
|
|
|
- ip6_frag_nqueues(net), ip6_frag_mem(net));
|
|
|
+ seq_printf(seq, "FRAG6: inuse %u memory %u\n", !!frag_mem, frag_mem);
|
|
|
return 0;
|
|
|
}
|
|
|
|