aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorLi RongQing <lirongqing@baidu.com>2019-08-19 20:05:15 +0800
committerDavid S. Miller <davem@davemloft.net>2019-08-19 18:22:54 -0700
commitaf809709e9df2a44137429ba3694c339a11b710d (patch)
tree38872e93661c6957a4027a3fd7f463dce923d91b /net/ipv4
parentMerge branch 'ns-plugin-fixes' (diff)
downloadlinux-dev-af809709e9df2a44137429ba3694c339a11b710d.tar.xz
linux-dev-af809709e9df2a44137429ba3694c339a11b710d.zip
net: remove empty inet_exit_net
Pointer members of an object with static storage duration, if not explicitly initialized, will be initialized to a NULL pointer. The net namespace API checks if this pointer is not NULL before using it, it are safe to remove the function. Signed-off-by: Li RongQing <lirongqing@baidu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/af_inet.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index ed2301ef872e..70f92aaca411 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -1845,13 +1845,8 @@ static __net_init int inet_init_net(struct net *net)
return 0;
}
-static __net_exit void inet_exit_net(struct net *net)
-{
-}
-
static __net_initdata struct pernet_operations af_inet_ops = {
.init = inet_init_net,
- .exit = inet_exit_net,
};
static int __init init_inet_pernet_ops(void)