]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/ipc_namespace.h
xps: Transmit Packet Steering
[net-next-2.6.git] / include / linux / ipc_namespace.h
CommitLineData
ae5e1b22
PE
1#ifndef __IPC_NAMESPACE_H__
2#define __IPC_NAMESPACE_H__
3
4#include <linux/err.h>
ed2ddbf8
PP
5#include <linux/idr.h>
6#include <linux/rwsem.h>
b6b337ad 7#include <linux/notifier.h>
b6b337ad
ND
8
9/*
10 * ipc namespace events
11 */
12#define IPCNS_MEMCHANGED 0x00000001 /* Notify lowmem size changed */
e2c284d8
ND
13#define IPCNS_CREATED 0x00000002 /* Notify new ipc namespace created */
14#define IPCNS_REMOVED 0x00000003 /* Notify ipc namespace removed */
b6b337ad
ND
15
16#define IPCNS_CALLBACK_PRI 0
17
ed2ddbf8
PP
18
19struct ipc_ids {
20 int in_use;
21 unsigned short seq;
22 unsigned short seq_max;
23 struct rw_semaphore rw_mutex;
24 struct idr ipcs_idr;
25};
ae5e1b22 26
ae5e1b22 27struct ipc_namespace {
7eafd7c7 28 atomic_t count;
ed2ddbf8 29 struct ipc_ids ids[3];
ae5e1b22
PE
30
31 int sem_ctls[4];
32 int used_sems;
33
34 int msg_ctlmax;
35 int msg_ctlmnb;
36 int msg_ctlmni;
37 atomic_t msg_bytes;
38 atomic_t msg_hdrs;
9eefe520 39 int auto_msgmni;
ae5e1b22
PE
40
41 size_t shm_ctlmax;
42 size_t shm_ctlall;
43 int shm_ctlmni;
44 int shm_tot;
b6b337ad 45
b6b337ad 46 struct notifier_block ipcns_nb;
614b84cf
SH
47
48 /* The kern_mount of the mqueuefs sb. We take a ref on it */
49 struct vfsmount *mq_mnt;
50
51 /* # queues in this ns, protected by mq_lock */
52 unsigned int mq_queues_count;
53
54 /* next fields are set through sysctl */
55 unsigned int mq_queues_max; /* initialized to DFLT_QUEUESMAX */
56 unsigned int mq_msg_max; /* initialized to DFLT_MSGMAX */
57 unsigned int mq_msgsize_max; /* initialized to DFLT_MSGSIZEMAX */
58
ae5e1b22
PE
59};
60
61extern struct ipc_namespace init_ipc_ns;
4d89dc6a 62extern atomic_t nr_ipc_ns;
ae5e1b22 63
7eafd7c7 64extern spinlock_t mq_lock;
b6b337ad 65
614b84cf 66#ifdef CONFIG_SYSVIPC
b6b337ad 67extern int register_ipcns_notifier(struct ipc_namespace *);
6546bc42 68extern int cond_register_ipcns_notifier(struct ipc_namespace *);
9eefe520 69extern void unregister_ipcns_notifier(struct ipc_namespace *);
b6b337ad 70extern int ipcns_notify(unsigned long);
b6b337ad 71#else /* CONFIG_SYSVIPC */
614b84cf
SH
72static inline int register_ipcns_notifier(struct ipc_namespace *ns)
73{ return 0; }
74static inline int cond_register_ipcns_notifier(struct ipc_namespace *ns)
75{ return 0; }
76static inline void unregister_ipcns_notifier(struct ipc_namespace *ns) { }
77static inline int ipcns_notify(unsigned long l) { return 0; }
b6b337ad 78#endif /* CONFIG_SYSVIPC */
ae5e1b22 79
614b84cf 80#ifdef CONFIG_POSIX_MQUEUE
7eafd7c7 81extern int mq_init_ns(struct ipc_namespace *ns);
614b84cf
SH
82/* default values */
83#define DFLT_QUEUESMAX 256 /* max number of message queues */
84#define DFLT_MSGMAX 10 /* max number of messages in each queue */
9cf18e1d 85#define HARD_MSGMAX (32768*sizeof(void *)/4)
614b84cf
SH
86#define DFLT_MSGSIZEMAX 8192 /* max message size */
87#else
7eafd7c7 88static inline int mq_init_ns(struct ipc_namespace *ns) { return 0; }
614b84cf
SH
89#endif
90
91#if defined(CONFIG_IPC_NS)
ae5e1b22 92extern struct ipc_namespace *copy_ipcs(unsigned long flags,
01b8b07a 93 struct ipc_namespace *ns);
ae5e1b22
PE
94static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
95{
96 if (ns)
7eafd7c7 97 atomic_inc(&ns->count);
ae5e1b22
PE
98 return ns;
99}
100
7eafd7c7 101extern void put_ipc_ns(struct ipc_namespace *ns);
ae5e1b22
PE
102#else
103static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
104 struct ipc_namespace *ns)
105{
106 if (flags & CLONE_NEWIPC)
107 return ERR_PTR(-EINVAL);
108
109 return ns;
110}
111
112static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
113{
114 return ns;
115}
116
117static inline void put_ipc_ns(struct ipc_namespace *ns)
118{
119}
120#endif
bdc8e5f8
SH
121
122#ifdef CONFIG_POSIX_MQUEUE_SYSCTL
123
124struct ctl_table_header;
125extern struct ctl_table_header *mq_register_sysctl_table(void);
126
127#else /* CONFIG_POSIX_MQUEUE_SYSCTL */
128
129static inline struct ctl_table_header *mq_register_sysctl_table(void)
130{
131 return NULL;
132}
133
134#endif /* CONFIG_POSIX_MQUEUE_SYSCTL */
ae5e1b22 135#endif