aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/sem.c
diff options
context:
space:
mode:
authorRik van Riel <riel@redhat.com>2013-05-09 16:53:28 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-05-09 17:17:47 -0400
commitebc2e5e6a408a0e6ed63c0ba98c2c8a232c6b4f4 (patch)
treeeb376fff2b32ae63b6d5ba8faac2f26a899d51df /ipc/sem.c
parent07e074503eba3ee657ab50a8c9497ddf90039e7e (diff)
ipc,sem: fix semctl(..., GETZCNT)
The semctl GETZCNT returns the number of semops waiting for the specified semaphore to become zero. After commit 9f1bc2c9022c ("ipc,sem: have only one list in struct sem_queue"), the semops waiting on just one semaphore are waiting on that semaphore's list. In order to return the correct count, we have to walk that list too, in addition to the sem_array's list for complex operations. This bug broke dbench; it works again with this patch applied. Signed-off-by: Rik van Riel <riel@redhat.com> Reported-by: Kent Overstreet <koverstreet@google.com> Tested-by: Kent Overstreet <koverstreet@google.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/sem.c')
-rw-r--r--ipc/sem.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ipc/sem.c b/ipc/sem.c
index 899b598b63be..04b264dbf141 100644
--- a/ipc/sem.c
+++ b/ipc/sem.c
@@ -815,6 +815,13 @@ static int count_semzcnt (struct sem_array * sma, ushort semnum)
815 struct sem_queue * q; 815 struct sem_queue * q;
816 816
817 semzcnt = 0; 817 semzcnt = 0;
818 list_for_each_entry(q, &sma->sem_base[semnum].sem_pending, list) {
819 struct sembuf * sops = q->sops;
820 BUG_ON(sops->sem_num != semnum);
821 if ((sops->sem_op == 0) && !(sops->sem_flg & IPC_NOWAIT))
822 semzcnt++;
823 }
824
818 list_for_each_entry(q, &sma->sem_pending, list) { 825 list_for_each_entry(q, &sma->sem_pending, list) {
819 struct sembuf * sops = q->sops; 826 struct sembuf * sops = q->sops;
820 int nsops = q->nsops; 827 int nsops = q->nsops;