From: Eric Sandeen Date: Tue, 2 May 2017 16:12:51 +0000 (-0500) Subject: xfs_io: fix statx definition for non-x86 architecture X-Git-Tag: v4.11.0-rc2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc6b7f74403e793586720a5fddedff0837dc2812;p=thirdparty%2Fxfsprogs-dev.git xfs_io: fix statx definition for non-x86 architecture Apply the same fix to xfs_io as Gwendal did for fstests: Fix a compilation error for ARM: __ILP32__ is defined but not __X32_SYSCALL_BIT. The check should only apply for x86_64 architecture, statx for other architectures is not implemented yet - see commit 7acc839c9e57 "statx: Add a system call to make enhanced file info available". Signed-off-by: Gwendal Grignou Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig Signed-off-by: Eric Sandeen --- diff --git a/io/statx.h b/io/statx.h index ff08e2776..eea7944e7 100644 --- a/io/statx.h +++ b/io/statx.h @@ -18,10 +18,12 @@ #ifndef __NR_statx # ifdef __i386__ # define __NR_statx 383 -# elif defined (__ILP32__) -# define __NR_statx (__X32_SYSCALL_BIT + 332) # elif defined (__x86_64__) -# define __NR_statx 332 +# if defined (__ILP32__) +# define __NR_statx (__X32_SYSCALL_BIT + 332) +# else +# define __NR_statx 332 +# endif # endif #endif