aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/net_namespace.c
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2010-04-25 00:49:56 -0700
committerDavid S. Miller <davem@davemloft.net>2010-04-25 00:49:56 -0700
commitb3c981d2bbbe889125169bd0bb482e64d3c028a1 (patch)
tree81c5a84c234ae7cd7fb33c0953092237207b254c /net/core/net_namespace.c
parent8c52d509e84bbf26cffb8b6e75b399689af67885 (diff)
downloadkernel_samsung_smdk4412-b3c981d2bbbe889125169bd0bb482e64d3c028a1.zip
kernel_samsung_smdk4412-b3c981d2bbbe889125169bd0bb482e64d3c028a1.tar.gz
kernel_samsung_smdk4412-b3c981d2bbbe889125169bd0bb482e64d3c028a1.tar.bz2
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 <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net_namespace.c')
-rw-r--r--net/core/net_namespace.c4
1 files changed, 2 insertions, 2 deletions
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);