From: Jiri Pirko Date: Sun, 25 Apr 2010 07:49:56 +0000 (-0700) Subject: netns: rename unregister_pernet_subsys parameter X-Git-Tag: v3.0~4931^2~384 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3c981d2bbbe889125169bd0bb482e64d3c028a1;p=platform%2Fkernel%2Flinux-amlogic.git netns: rename unregister_pernet_subsys parameter Stay consistent with other functions and with comment also and name pernet_operations parameter properly. Signed-off-by: Jiri Pirko Signed-off-by: David S. Miller --- diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c index bd8c471..69a20bf 100644 --- a/net/core/net_namespace.c +++ b/net/core/net_namespace.c @@ -469,10 +469,10 @@ EXPORT_SYMBOL_GPL(register_pernet_subsys); * addition run the exit method for all existing network * namespaces. */ -void unregister_pernet_subsys(struct pernet_operations *module) +void unregister_pernet_subsys(struct pernet_operations *ops) { mutex_lock(&net_mutex); - unregister_pernet_operations(module); + unregister_pernet_operations(ops); mutex_unlock(&net_mutex); } EXPORT_SYMBOL_GPL(unregister_pernet_subsys);