Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285907
b: refs/heads/master
c: e79a7fc
h: refs/heads/master
i:
  285905: dde97a9
  285903: 5074032
v: v3
  • Loading branch information
H. Peter Anvin committed Nov 17, 2011
1 parent e64668f commit 53d37ce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b7641d2c83aa10031bf45afd82619bfaaedcbc6f
refs/heads/master: e79a7fccfb2ab10f8753ac634a1c8473e870ae6c
1 change: 1 addition & 0 deletions trunk/arch/x86/ia32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#

obj-$(CONFIG_IA32_EMULATION) := ia32entry.o sys_ia32.o ia32_signal.o
obj-$(CONFIG_IA32_EMULATION) += nosyscall.o

sysv-$(CONFIG_SYSVIPC) := ipc32.o
obj-$(CONFIG_IA32_EMULATION) += $(sysv-y)
Expand Down
3 changes: 0 additions & 3 deletions trunk/arch/x86/ia32/ia32entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,6 @@ ia32_badsys:
movq $-ENOSYS,%rax
jmp ia32_sysret

quiet_ni_syscall:
movq $-ENOSYS,%rax
ret
CFI_ENDPROC

.macro PTREGSCALL label, func, arg
Expand Down
7 changes: 7 additions & 0 deletions trunk/arch/x86/ia32/nosyscall.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <linux/kernel.h>
#include <linux/errno.h>

long compat_ni_syscall(void)
{
return -ENOSYS;
}

0 comments on commit 53d37ce

Please sign in to comment.