summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/shm.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index 566c1e193ee1..2ac489ef56e4 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -518,6 +518,19 @@ static const struct vm_operations_struct shm_vm_ops = {
518#endif 518#endif
519}; 519};
520 520
521static struct shmid_kernel *shm_alloc(void)
522{
523 struct shmid_kernel *shp;
524
525 shp = kvmalloc(sizeof(*shp), GFP_KERNEL);
526 if (unlikely(!shp))
527 return NULL;
528
529 atomic_set(&shp->shm_perm.refcount, 1);
530
531 return shp;
532}
533
521/** 534/**
522 * newseg - Create a new shared memory segment 535 * newseg - Create a new shared memory segment
523 * @ns: namespace 536 * @ns: namespace
@@ -548,10 +561,7 @@ static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
548 ns->shm_tot + numpages > ns->shm_ctlall) 561 ns->shm_tot + numpages > ns->shm_ctlall)
549 return -ENOSPC; 562 return -ENOSPC;
550 563
551 BUILD_BUG_ON(offsetof(struct shmid_kernel, shm_perm) != 0); 564 shp = shm_alloc();
552
553 shp = container_of(ipc_rcu_alloc(sizeof(*shp)), struct shmid_kernel,
554 shm_perm);
555 if (!shp) 565 if (!shp)
556 return -ENOMEM; 566 return -ENOMEM;
557 567