diff options
author | Eric Dumazet <edumazet@google.com> | 2019-05-24 09:03:31 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-26 14:08:04 -0700 |
commit | 89fb900514d1623cf6019848f39d0557a3d31890 (patch) | |
tree | 07510f55599257f9706e411780f59ba91896131c /net/ipv6/reassembly.c | |
parent | 6ce3b4dcee4f96a5000d3f790403eb6997e3d553 (diff) | |
download | lwn-89fb900514d1623cf6019848f39d0557a3d31890.tar.gz lwn-89fb900514d1623cf6019848f39d0557a3d31890.zip |
net: rename inet_frags_exit_net() to fqdir_exit()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/reassembly.c')
-rw-r--r-- | net/ipv6/reassembly.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c index acd5a9a04415..f1142f5d5075 100644 --- a/net/ipv6/reassembly.c +++ b/net/ipv6/reassembly.c @@ -528,14 +528,14 @@ static int __net_init ipv6_frags_init_net(struct net *net) res = ip6_frags_ns_sysctl_register(net); if (res < 0) - inet_frags_exit_net(&net->ipv6.frags); + fqdir_exit(&net->ipv6.frags); return res; } static void __net_exit ipv6_frags_exit_net(struct net *net) { ip6_frags_ns_sysctl_unregister(net); - inet_frags_exit_net(&net->ipv6.frags); + fqdir_exit(&net->ipv6.frags); } static struct pernet_operations ip6_frags_ops = { |