From 4a7aa05a1069e1671c3b58d25a0874f83be5c459 Mon Sep 17 00:00:00 2001 From: chandan Date: Tue, 2 May 2017 11:12:52 -0500 Subject: [PATCH] xfs_io: Add statx support for PowerPC architecture Linux kernel commit f717629c7f834ab2efa05c7dbf0826f1d7c32ade (powerpc: Wire up statx() syscall) added support for statx syscall for PowerPC architecture. This commit enables using 'statx' sub-command of xfs_io to be used on PowerPC. Signed-off-by: Chandan Rajendra Reviewed-by: Christoph Hellwig Reviewed-by: Eric Sandeen Signed-off-by: Eric Sandeen --- io/statx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/statx.h b/io/statx.h index eea7944e7..14361a88d 100644 --- a/io/statx.h +++ b/io/statx.h @@ -16,7 +16,7 @@ #endif #ifndef __NR_statx -# ifdef __i386__ +# if defined(__i386__) || defined(__powerpc__) # define __NR_statx 383 # elif defined (__x86_64__) # if defined (__ILP32__) -- 2.47.2