Skip to content

Commit f5ef419

Browse files
tklauserMichal Simek
authored andcommitted
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>
1 parent bb26081 commit f5ef419

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

arch/microblaze/include/asm/unistd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@
3838

3939
#endif /* __ASSEMBLY__ */
4040

41-
#define __NR_syscalls 398
41+
#define __NR_syscalls 399
4242

4343
#endif /* _ASM_MICROBLAZE_UNISTD_H */

arch/microblaze/include/uapi/asm/unistd.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,5 +413,6 @@
413413
#define __NR_pkey_mprotect 395
414414
#define __NR_pkey_alloc 396
415415
#define __NR_pkey_free 397
416+
#define __NR_statx 398
416417

417418
#endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */

arch/microblaze/kernel/syscall_table.S

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,3 +398,4 @@ ENTRY(sys_call_table)
398398
.long sys_pkey_mprotect /* 395 */
399399
.long sys_pkey_alloc
400400
.long sys_pkey_free
401+
.long sys_statx

0 commit comments

Comments
 (0)