mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-18 21:14:28 +00:00
microblaze: wire up statx syscall
Add the new statx syscall. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
bb26081a98
commit
f5ef419630
3 changed files with 3 additions and 1 deletions
|
@ -38,6 +38,6 @@
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
#define __NR_syscalls 398
|
#define __NR_syscalls 399
|
||||||
|
|
||||||
#endif /* _ASM_MICROBLAZE_UNISTD_H */
|
#endif /* _ASM_MICROBLAZE_UNISTD_H */
|
||||||
|
|
|
@ -413,5 +413,6 @@
|
||||||
#define __NR_pkey_mprotect 395
|
#define __NR_pkey_mprotect 395
|
||||||
#define __NR_pkey_alloc 396
|
#define __NR_pkey_alloc 396
|
||||||
#define __NR_pkey_free 397
|
#define __NR_pkey_free 397
|
||||||
|
#define __NR_statx 398
|
||||||
|
|
||||||
#endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */
|
#endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */
|
||||||
|
|
|
@ -398,3 +398,4 @@ ENTRY(sys_call_table)
|
||||||
.long sys_pkey_mprotect /* 395 */
|
.long sys_pkey_mprotect /* 395 */
|
||||||
.long sys_pkey_alloc
|
.long sys_pkey_alloc
|
||||||
.long sys_pkey_free
|
.long sys_pkey_free
|
||||||
|
.long sys_statx
|
||||||
|
|
Loading…
Add table
Reference in a new issue