]> git.baikalelectronics.ru Git - kernel.git/commit
[NETNS]: struct net content re-work (v3)
authorDenis V. Lunev <den@openvz.org>
Tue, 11 Dec 2007 12:19:17 +0000 (04:19 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:57:14 +0000 (14:57 -0800)
commit4dbea5226eb08698a099448320e48c1f7a2383d8
tree0b64ce018878cbaa0bf5cdfa308d4a7e71218914
parentc4bfc0a3c141247bc918ce0ba1a955b8ad03144e
[NETNS]: struct net content re-work (v3)

Recently David Miller and Herbert Xu pointed out that struct net becomes
overbloated and un-maintainable. There are two solutions:
- provide a pointer to a network subsystem definition from struct net.
  This costs an additional dereferrence
- place sub-system definition into the structure itself. This will speedup
  run-time access at the cost of recompilation time

The second approach looks better for us. Other sub-systems will follow.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/net_namespace.h
include/net/netns/unix.h [new file with mode: 0644]
net/unix/af_unix.c
net/unix/sysctl_net_unix.c