]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
sparc: semtimedop() unreachable due to comparison error
authorRob Gardner <rob.gardner@oracle.com>
Tue, 3 Mar 2015 06:16:55 +0000 (23:16 -0700)
committerJiri Slaby <jslaby@suse.cz>
Thu, 9 Apr 2015 11:13:49 +0000 (13:13 +0200)
[ Upstream commit 53eb2516972b8c4628651dfcb926cb9ef8b2864a ]

A bug was reported that the semtimedop() system call was always
failing eith ENOSYS.

Since SEMCTL is defined as 3, and SEMTIMEDOP is defined as 4,
the comparison "call <= SEMCTL" will always prevent SEMTIMEDOP
from getting through to the semaphore ops switch statement.

This is corrected by changing the comparison to "call <= SEMTIMEDOP".

Orabug: 20633375

Signed-off-by: Rob Gardner <rob.gardner@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/sparc/kernel/sys_sparc_64.c

index d05eb9c1d8465e77fe2c4667e9827dd19842c6e5..d188c591f2d62562236d665c164bec9696157b55 100644 (file)
@@ -331,7 +331,7 @@ SYSCALL_DEFINE6(sparc_ipc, unsigned int, call, int, first, unsigned long, second
        long err;
 
        /* No need for backward compatibility. We can start fresh... */
-       if (call <= SEMCTL) {
+       if (call <= SEMTIMEDOP) {
                switch (call) {
                case SEMOP:
                        err = sys_semtimedop(first, ptr,