Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3c981d2 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller
Browse files

netns: rename unregister_pernet_subsys parameter



Stay consistent with other functions and with comment also and name
pernet_operations parameter properly.

Signed-off-by: default avatarJiri Pirko <jpirko@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8c52d509
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);