aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/proc.c
diff options
context:
space:
mode:
authorEric Dumazet <[email protected]>2019-05-24 16:03:32 +0000
committerDavid S. Miller <[email protected]>2019-05-26 21:08:05 +0000
commit803fdd99684714b3cdcbed4364473d41abbd6afe (patch)
tree87a5807632e61335f54dc54dbce14e3c59037969 /net/ipv4/proc.c
parentnet: rename inet_frags_exit_net() to fqdir_exit() (diff)
downloadkernel-803fdd99684714b3cdcbed4364473d41abbd6afe.tar.gz
kernel-803fdd99684714b3cdcbed4364473d41abbd6afe.zip
net: rename struct fqdir fields
Rename the @frags fields from structs netns_ipv4, netns_ipv6, netns_nf_frag and netns_ieee802154_lowpan to @fqdir Signed-off-by: Eric Dumazet <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r--net/ipv4/proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c
index c3610b37bb4c..3927e00084e8 100644
--- a/net/ipv4/proc.c
+++ b/net/ipv4/proc.c
@@ -72,8 +72,8 @@ static int sockstat_seq_show(struct seq_file *seq, void *v)
seq_printf(seq, "RAW: inuse %d\n",
sock_prot_inuse_get(net, &raw_prot));
seq_printf(seq, "FRAG: inuse %u memory %lu\n",
- atomic_read(&net->ipv4.frags.rhashtable.nelems),
- frag_mem_limit(&net->ipv4.frags));
+ atomic_read(&net->ipv4.fqdir.rhashtable.nelems),
+ frag_mem_limit(&net->ipv4.fqdir));
return 0;
}