Skip to content

Commit 97daa76

Browse files
committed
MIPS: N32: Fix signalfd4 syscall entry point
This needs to use the compat entry point or it's going to fail on big endian systems. Noticed by Al Viro. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent d556371 commit 97daa76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/mips/kernel/scall64-n32.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ EXPORT(sysn32_call_table)
397397
PTR sys_timerfd_create
398398
PTR compat_sys_timerfd_gettime /* 6285 */
399399
PTR compat_sys_timerfd_settime
400-
PTR sys_signalfd4
400+
PTR compat_sys_signalfd4
401401
PTR sys_eventfd2
402402
PTR sys_epoll_create1
403403
PTR sys_dup3 /* 6290 */

0 commit comments

Comments
 (0)