Message ID | 1493188758-3173-1-git-send-email-chandan@linux.vnet.ibm.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Looks fine,
Reviewed-by: Christoph Hellwig <hch@lst.de>
--
To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
On 4/26/17 1:39 AM, Chandan Rajendra wrote: > 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 <chandan@linux.vnet.ibm.com> Ok, sure - some day I hope to get rid of io/statx.h but for now I want to be sure we run on the architectures that people "care" about ;) so this sounds good. Reviewed-by: Eric Sandeen <sandeen@redhat.com> > --- > This patch is based on Eric's "xfs_io: fix statx definition for non-x86 > architecture" patch. > > io/statx.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/io/statx.h b/io/statx.h > index eea7944..14361a8 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__) > -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/io/statx.h b/io/statx.h index eea7944..14361a8 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__)
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 <chandan@linux.vnet.ibm.com> --- This patch is based on Eric's "xfs_io: fix statx definition for non-x86 architecture" patch. io/statx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)