]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - net/core/net_namespace.c
[NETNS]: Don't memset() netns to zero manually
authorPavel Emelyanov <xemul@openvz.org>
Tue, 9 Oct 2007 20:02:17 +0000 (13:02 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:54:59 +0000 (16:54 -0700)
commit32f0c4cbe495d121c09ed14d9c84f9e1b9574415
treebdf044b03098748b6619bb71e8090ff5b9ef7da2
parent0a8891a0a419d43ea06c8ded0849f0820c6a873b
[NETNS]: Don't memset() netns to zero manually

The newly created net namespace is set to 0 with memset()
in setup_net(). The setup_net() is also called for the
init_net_ns(), which is zeroed naturally as a global var.

So remove this memset and allocate new nets with the
kmem_cache_zalloc().

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net_namespace.c