Blame view

include/linux/ns_common.h 235 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
435d5f4bb   Al Viro   common object emb...
2
3
  #ifndef _LINUX_NS_COMMON_H
  #define _LINUX_NS_COMMON_H
33c429405   Al Viro   copy address of p...
4
  struct proc_ns_operations;
435d5f4bb   Al Viro   common object emb...
5
  struct ns_common {
e149ed2b8   Al Viro   take the targets ...
6
  	atomic_long_t stashed;
33c429405   Al Viro   copy address of p...
7
  	const struct proc_ns_operations *ops;
435d5f4bb   Al Viro   common object emb...
8
9
10
11
  	unsigned int inum;
  };
  
  #endif