https://github.com/torvalds/linux
Raw File
Tip revision: 4f7d029b9bf009fbee76bb10c0c4351a1870d2f3 authored by Linus Torvalds on 16 April 2017, 20:00:18 UTC
Linux 4.11-rc7
Tip revision: 4f7d029
ns_common.h
#ifndef _LINUX_NS_COMMON_H
#define _LINUX_NS_COMMON_H

struct proc_ns_operations;

struct ns_common {
	atomic_long_t stashed;
	const struct proc_ns_operations *ops;
	unsigned int inum;
};

#endif
back to top