microblaze: Wire up new syscalls

Hook up name_to_handle_at, open_by_handle_at, clock_adjtime, syncfs

Signed-off-by: Michal Simek <monstr@monstr.eu>

+9 -1
+5 -1
arch/microblaze/include/asm/unistd.h
··· 386 #define __NR_fanotify_init 368 387 #define __NR_fanotify_mark 369 388 #define __NR_prlimit64 370 389 390 - #define __NR_syscalls 371 391 392 #ifdef __KERNEL__ 393 #ifndef __ASSEMBLY__
··· 386 #define __NR_fanotify_init 368 387 #define __NR_fanotify_mark 369 388 #define __NR_prlimit64 370 389 + #define __NR_name_to_handle_at 371 390 + #define __NR_open_by_handle_at 372 391 + #define __NR_clock_adjtime 373 392 + #define __NR_syncfs 374 393 394 + #define __NR_syscalls 375 395 396 #ifdef __KERNEL__ 397 #ifndef __ASSEMBLY__
+4
arch/microblaze/kernel/syscall_table.S
··· 375 .long sys_fanotify_init 376 .long sys_fanotify_mark 377 .long sys_prlimit64 /* 370 */
··· 375 .long sys_fanotify_init 376 .long sys_fanotify_mark 377 .long sys_prlimit64 /* 370 */ 378 + .long sys_name_to_handle_at 379 + .long sys_open_by_handle_at 380 + .long sys_clock_adjtime 381 + .long sys_syncfs