[NET] fs/proc/proc_net.c: make a struct static
Struct proc_net_ns_ops can become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c8d90dca32
commit
253879e62f
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ static __net_exit void proc_net_ns_exit(struct net *net)
|
|||
kfree(net->proc_net_root);
|
||||
}
|
||||
|
||||
struct pernet_operations __net_initdata proc_net_ns_ops = {
|
||||
static struct pernet_operations __net_initdata proc_net_ns_ops = {
|
||||
.init = proc_net_ns_init,
|
||||
.exit = proc_net_ns_exit,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue