https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 90a35ab9c7a966a228f9178b733830da1e2a3631 authored by Jason Self on 06 September 2016, 14:13:30 UTC
Linux-libre 3.12.63-gnu
Tip revision: 90a35ab
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