mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
generic: fix statx definition for non-x86 architecture
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 <gwendal@chromium.org> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
committed by
Eryu Guan
parent
7e0b48b33d
commit
796a473462
+4
-2
@@ -19,12 +19,14 @@
|
||||
#ifndef __NR_statx
|
||||
# ifdef __i386__
|
||||
# define __NR_statx 383
|
||||
# elif defined (__ILP32__)
|
||||
# define __NR_statx (__X32_SYSCALL_BIT + 332)
|
||||
# elif defined(__x86_64__)
|
||||
# if defined (__ILP32__)
|
||||
# define __NR_statx (__X32_SYSCALL_BIT + 332)
|
||||
# else
|
||||
# define __NR_statx 332
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef STATX_TYPE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user