]> git.baikalelectronics.ru Git - kernel.git/commit
ipc,sem: fix semctl(..., GETZCNT)
authorRik van Riel <riel@redhat.com>
Thu, 9 May 2013 20:53:28 +0000 (16:53 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 9 May 2013 21:17:47 +0000 (14:17 -0700)
commit512ae52f6afbf1d7f461e78b2959a6add414e15b
treeeb376fff2b32ae63b6d5ba8faac2f26a899d51df
parentd3487fee04fbc074bb7db01133280f8c3a4e8837
ipc,sem: fix semctl(..., GETZCNT)

The semctl GETZCNT returns the number of semops waiting for the
specified semaphore to become zero.  After commit 256ec5b5b9cf
("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>
ipc/sem.c