Skip to content

Commit

Permalink
s390: remove 31 bit syscalls
Browse files Browse the repository at this point in the history
Remove the 31 bit syscalls from the syscall table. This is a separate patch
just in case I screwed something up so it can be easily reverted.
However the conversion was done with a script, so everything should be ok.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Mar 25, 2015
1 parent 4bfc86c commit a876cb3
Show file tree
Hide file tree
Showing 2 changed files with 361 additions and 361 deletions.
6 changes: 3 additions & 3 deletions arch/s390/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -1042,16 +1042,16 @@ sie_exit:
EX_TABLE(sie_exit,.Lsie_fault)
#endif

.section .rodata, "a"
#define SYSCALL(esa,esame,emu) .long esame
.section .rodata, "a"
#define SYSCALL(esame,emu) .long esame
.globl sys_call_table
sys_call_table:
#include "syscalls.S"
#undef SYSCALL

#ifdef CONFIG_COMPAT

#define SYSCALL(esa,esame,emu) .long emu
#define SYSCALL(esame,emu) .long emu
.globl sys_call_table_emu
sys_call_table_emu:
#include "syscalls.S"
Expand Down
Loading

0 comments on commit a876cb3

Please sign in to comment.