https://github.com/torvalds/linux
Raw File
Tip revision: da6843394289dcb5268f0ba7b30dab9d62db639c authored by Jose Manuel Tasende on 25 May 2016, 15:30:01 UTC
Wolfson WM8742 DAC driver
Tip revision: da68433
netns.h
#ifndef __LOCKD_NETNS_H__
#define __LOCKD_NETNS_H__

#include <linux/fs.h>
#include <net/netns/generic.h>

struct lockd_net {
	unsigned int nlmsvc_users;
	unsigned long next_gc;
	unsigned long nrhosts;

	struct delayed_work grace_period_end;
	struct lock_manager lockd_manager;

	struct list_head nsm_handles;
};

extern int lockd_net_id;

#endif
back to top