Skip to content

Commit 5a9372f

Browse files
arndbpaulburton
authored andcommitted
mips: fix n32 compat_ipc_parse_version
While reading through the sysvipc implementation, I noticed that the n32 semctl/shmctl/msgctl system calls behave differently based on whether o32 support is enabled or not: Without o32, the IPC_64 flag passed by user space is rejected but calls without that flag get IPC_64 behavior. As far as I can tell, this was inadvertently changed by a cleanup patch but never noticed by anyone, possibly nobody has tried using sysvipc on n32 after linux-3.19. Change it back to the old behavior now. Fixes: 78aaf95 ("MIPS: Compat: Fix build error if CONFIG_MIPS32_COMPAT but no compat ABI.") Signed-off-by: Arnd Bergmann <[email protected]> Signed-off-by: Paul Burton <[email protected]> Cc: [email protected] Cc: [email protected] # 3.19+
1 parent a214720 commit 5a9372f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

arch/mips/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3155,6 +3155,7 @@ config MIPS32_O32
31553155
config MIPS32_N32
31563156
bool "Kernel support for n32 binaries"
31573157
depends on 64BIT
3158+
select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
31583159
select COMPAT
31593160
select MIPS32_COMPAT
31603161
select SYSVIPC_COMPAT if SYSVIPC

0 commit comments

Comments
 (0)