diff options
| author | Kirill Korotaev <[email protected]> | 2007-10-18 23:40:56 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-10-19 11:53:48 -0700 |
| commit | 3ac88a41ff747b8c2f290f86b5243b2f8fce2cc0 (patch) | |
| tree | a0a87ebb1b5cac9da1a2cee05475139b16a8dbc6 /include/linux | |
| parent | c530c6ac7eb1d4ae1ff6b382d9211be446ee82c6 (diff) | |
virtualization of sysv msg queues is incomplete
Virtualization of sysv msg queues is incomplete: msg_hdrs and msg_bytes
variables visible from userspace are global. Let's make them
per-namespace.
Signed-off-by: Alexey Kuznetsov <[email protected]>
Signed-off-by: Kirill Korotaev <[email protected]>
Cc: Pierre Peiffer <[email protected]>
Cc: Nadia Derbey <[email protected]>
Cc: Serge Hallyn <[email protected]>
Acked-by: "Eric W. Biederman" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ipc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ipc.h b/include/linux/ipc.h index 96988d1460da..408696ea5189 100644 --- a/include/linux/ipc.h +++ b/include/linux/ipc.h @@ -111,6 +111,8 @@ struct ipc_namespace { int msg_ctlmax; int msg_ctlmnb; int msg_ctlmni; + atomic_t msg_bytes; + atomic_t msg_hdrs; size_t shm_ctlmax; size_t shm_ctlall; |