https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 5d02973e905a466c3989460c36a9911e99314912 authored by Jason Self on 27 April 2014, 00:16:39 UTC
Linux-libre 3.10.38-gnu
Tip revision: 5d02973
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