diff options
author | Guy Streeter <guy.streeter@gmail.com> | 2007-01-23 13:20:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-01-23 14:18:50 -0500 |
commit | f66d45e99eb7ca91822c3e3f6d7a98843c9626cb (patch) | |
tree | ce796ff749980d7c3d08c0d42f63d25d42416e49 /ipc | |
parent | 821836e5baa69b8bc80605f25ad963e721609bc0 (diff) |
[PATCH] correct sys_shmget allocation check
As written, sys_shmget will return ENOSPC when one page is still
available for allocation. This patch corrects the test.
Signed-off-by: Guy Streeter <guy.streeter+lkml@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
--
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/shm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -279,7 +279,7 @@ static int newseg (struct ipc_namespace *ns, key_t key, int shmflg, size_t size) | |||
279 | if (size < SHMMIN || size > ns->shm_ctlmax) | 279 | if (size < SHMMIN || size > ns->shm_ctlmax) |
280 | return -EINVAL; | 280 | return -EINVAL; |
281 | 281 | ||
282 | if (ns->shm_tot + numpages >= ns->shm_ctlall) | 282 | if (ns->shm_tot + numpages > ns->shm_ctlall) |
283 | return -ENOSPC; | 283 | return -ENOSPC; |
284 | 284 | ||
285 | shp = ipc_rcu_alloc(sizeof(*shp)); | 285 | shp = ipc_rcu_alloc(sizeof(*shp)); |