From: Chris Zankel Date: Mon, 6 May 2013 22:21:38 +0000 (-0700) Subject: xtensa: disable socket and ipc subcall support X-Git-Tag: v4.8~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f6519a9c1953dc33ba42e1c9b2178dc47efea42;p=strace xtensa: disable socket and ipc subcall support The Xtensa architecture also uses dedicated syscalls and doesn't need to multiplex ipc and socket subcalls. * linux/syscall.h [XTENSA]: Do not define SYS_socket_subcall and SYS_ipc_subcall. Signed-off-by: Chris Zankel --- diff --git a/linux/syscall.h b/linux/syscall.h index d0cf4235..878732da 100644 --- a/linux/syscall.h +++ b/linux/syscall.h @@ -318,7 +318,8 @@ int sys_osf_wait4(); && !defined(HPPA) \ && !defined(__ARM_EABI__) \ && !defined(BFIN) \ - && !defined(TILE) + && !defined(TILE) \ + && !defined(XTENSA) # if defined(SPARC) || defined(SPARC64) # define SYS_socket_subcall 353 # else