https://jxself.org/git/linux-libre.git
Raw File
Tip revision: e6727770d700af6d23a40e1b46da83888ce17329 authored by Jason Self on 22 November 2010, 19:01:32 UTC
Linux-libre 2.6.35.9-gnu1
Tip revision: e672777
core.h
#ifndef __NETNS_CORE_H__
#define __NETNS_CORE_H__

struct ctl_table_header;
struct prot_inuse;

struct netns_core {
	/* core sysctls */
	struct ctl_table_header	*sysctl_hdr;

	int	sysctl_somaxconn;

	struct prot_inuse __percpu *inuse;
};

#endif
back to top