From: Mike Frysinger Date: Mon, 6 May 2013 05:49:41 +0000 (-0400) Subject: Blackfin: disable socketcall and ipc subcall support X-Git-Tag: v4.8~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b572cfd2b2a65818f4164b896a59ae59a762c82;p=strace Blackfin: disable socketcall and ipc subcall support The Blackfin arch does not have a socketcall or ipc subcall (it has dedicated syscalls broken out), so disable the logic for it. * linux/syscall.h [BFIN]: Do not define SYS_socket_subcall and SYS_ipc_subcall. --- diff --git a/linux/syscall.h b/linux/syscall.h index 6368cefe..666de007 100644 --- a/linux/syscall.h +++ b/linux/syscall.h @@ -316,7 +316,8 @@ int sys_osf_wait4(); #if !defined(ALPHA) \ && !defined(MIPS) \ && !defined(HPPA) \ - && !defined(__ARM_EABI__) + && !defined(__ARM_EABI__) \ + && !defined(BFIN) # if defined(SPARC) || defined(SPARC64) # define SYS_socket_subcall 353 # else