1 #ifndef __IPC_NAMESPACE_H__
2 #define __IPC_NAMESPACE_H__
6 #include <linux/rwsem.h>
11 unsigned short seq_max;
12 struct rw_semaphore rw_mutex;
16 struct ipc_namespace {
18 struct ipc_ids ids[3];
35 extern struct ipc_namespace init_ipc_ns;
38 #define INIT_IPC_NS(ns) .ns = &init_ipc_ns,
40 #define INIT_IPC_NS(ns)
43 #if defined(CONFIG_SYSVIPC) && defined(CONFIG_IPC_NS)
44 extern void free_ipc_ns(struct kref *kref);
45 extern struct ipc_namespace *copy_ipcs(unsigned long flags,
46 struct ipc_namespace *ns);
47 extern void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids,
48 void (*free)(struct ipc_namespace *,
49 struct kern_ipc_perm *));
51 static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
58 static inline void put_ipc_ns(struct ipc_namespace *ns)
60 kref_put(&ns->kref, free_ipc_ns);
63 static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
64 struct ipc_namespace *ns)
66 if (flags & CLONE_NEWIPC)
67 return ERR_PTR(-EINVAL);
72 static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
77 static inline void put_ipc_ns(struct ipc_namespace *ns)