Commit 253879e62f997d0027500f4b71ef290f37e306ee

Authored by Adrian Bunk
Committed by David S. Miller
1 parent c8d90dca32

[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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -185,7 +185,7 @@
185 185 kfree(net->proc_net_root);
186 186 }
187 187  
188   -struct pernet_operations __net_initdata proc_net_ns_ops = {
  188 +static struct pernet_operations __net_initdata proc_net_ns_ops = {
189 189 .init = proc_net_ns_init,
190 190 .exit = proc_net_ns_exit,
191 191 };