microblaze: Wire up new syscalls
authorMichal Simek <monstr@monstr.eu>
Thu, 31 Mar 2011 06:11:47 +0000 (08:11 +0200)
committerMichal Simek <monstr@monstr.eu>
Fri, 1 Apr 2011 07:25:05 +0000 (09:25 +0200)
Hook up name_to_handle_at, open_by_handle_at, clock_adjtime, syncfs

Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/include/asm/unistd.h
arch/microblaze/kernel/syscall_table.S

index d770b00..30edd61 100644 (file)
 #define __NR_fanotify_init     368
 #define __NR_fanotify_mark     369
 #define __NR_prlimit64         370
+#define __NR_name_to_handle_at 371
+#define __NR_open_by_handle_at 372
+#define __NR_clock_adjtime     373
+#define __NR_syncfs            374
 
-#define __NR_syscalls          371
+#define __NR_syscalls          375
 
 #ifdef __KERNEL__
 #ifndef __ASSEMBLY__
index e88a930..85cea81 100644 (file)
@@ -375,3 +375,7 @@ ENTRY(sys_call_table)
        .long sys_fanotify_init
        .long sys_fanotify_mark
        .long sys_prlimit64     /* 370 */
+       .long sys_name_to_handle_at
+       .long sys_open_by_handle_at
+       .long sys_clock_adjtime
+       .long sys_syncfs