diff options
author | Rob Gardner <rob.gardner@oracle.com> | 2015-03-02 23:16:55 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-03 14:05:48 -0800 |
commit | 53eb2516972b8c4628651dfcb926cb9ef8b2864a (patch) | |
tree | 4827808f8699895836d524b53c8bc8aa9206e9ff /arch/sparc/kernel/sys_sparc_64.c | |
parent | 9555b47fab149ee23bddc842c264dd6f3b51f52d (diff) | |
download | op-kernel-dev-53eb2516972b8c4628651dfcb926cb9ef8b2864a.zip op-kernel-dev-53eb2516972b8c4628651dfcb926cb9ef8b2864a.tar.gz |
sparc: semtimedop() unreachable due to comparison error
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>
Diffstat (limited to 'arch/sparc/kernel/sys_sparc_64.c')
-rw-r--r-- | arch/sparc/kernel/sys_sparc_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/sys_sparc_64.c b/arch/sparc/kernel/sys_sparc_64.c index c85403d..30e7ddb 100644 --- a/arch/sparc/kernel/sys_sparc_64.c +++ b/arch/sparc/kernel/sys_sparc_64.c @@ -333,7 +333,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, |