1 #ifndef __IPC_NAMESPACE_H__
2 #define __IPC_NAMESPACE_H__
6 #include <linux/rwsem.h>
7 #include <linux/notifier.h>
10 * ipc namespace events
12 #define IPCNS_MEMCHANGED 0x00000001 /* Notify lowmem size changed */
13 #define IPCNS_CREATED 0x00000002 /* Notify new ipc namespace created */
14 #define IPCNS_REMOVED 0x00000003 /* Notify ipc namespace removed */
16 #define IPCNS_CALLBACK_PRI 0
22 unsigned short seq_max;
23 struct rw_semaphore rw_mutex;
27 struct ipc_namespace {
29 struct ipc_ids ids[3];
45 struct notifier_block ipcns_nb;
48 extern struct ipc_namespace init_ipc_ns;
49 extern atomic_t nr_ipc_ns;
52 #define INIT_IPC_NS(ns) .ns = &init_ipc_ns,
54 extern int register_ipcns_notifier(struct ipc_namespace *);
55 extern int cond_register_ipcns_notifier(struct ipc_namespace *);
56 extern int unregister_ipcns_notifier(struct ipc_namespace *);
57 extern int ipcns_notify(unsigned long);
59 #else /* CONFIG_SYSVIPC */
60 #define INIT_IPC_NS(ns)
61 #endif /* CONFIG_SYSVIPC */
63 #if defined(CONFIG_SYSVIPC) && defined(CONFIG_IPC_NS)
64 extern void free_ipc_ns(struct kref *kref);
65 extern struct ipc_namespace *copy_ipcs(unsigned long flags,
66 struct ipc_namespace *ns);
67 extern void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids,
68 void (*free)(struct ipc_namespace *,
69 struct kern_ipc_perm *));
71 static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
78 static inline void put_ipc_ns(struct ipc_namespace *ns)
80 kref_put(&ns->kref, free_ipc_ns);
83 static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
84 struct ipc_namespace *ns)
86 if (flags & CLONE_NEWIPC)
87 return ERR_PTR(-EINVAL);
92 static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
97 static inline void put_ipc_ns(struct ipc_namespace *ns)