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

Commit 45bad914 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller
Browse files

net core: Remove unneded creation of an empty net/core sysctl directory



On the next line we register the net_core_table in net/core which
creates the directory and ensures it exists.

Signed-off-by: default avatarEric W. Biederman <ebiederm@xmission.com>
Acked-by: default avatarPavel Emelyanov <xemul@parallels.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5dd3df10
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -255,9 +255,6 @@ static __net_initdata struct pernet_operations sysctl_core_ops = {

static __init int sysctl_core_init(void)
{
	static struct ctl_table empty[1];

	kmemleak_not_leak(register_net_sysctl_table(&init_net, net_core_path, empty));
	register_net_sysctl(&init_net, "net/core", net_core_table);
	return register_pernet_subsys(&sysctl_core_ops);
}