mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
a0a53c8ba9
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>
14 lines
224 B
C
14 lines
224 B
C
/*
|
|
* Unix network namespace
|
|
*/
|
|
#ifndef __NETNS_UNIX_H__
|
|
#define __NETNS_UNIX_H__
|
|
|
|
struct ctl_table_header;
|
|
struct netns_unix {
|
|
int sysctl_max_dgram_qlen;
|
|
struct ctl_table_header *ctl;
|
|
};
|
|
|
|
#endif /* __NETNS_UNIX_H__ */
|