[PATCH] ppc32: inotify syscalls

Add inotify system call stubs to PPC32.

Signed-off-by: Robert Love <rml@novell.com>
Acked-by: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Robert Love and committed by Linus Torvalds 141d751e b0825488

+7 -1
+3
arch/ppc/kernel/misc.S
··· 1451 .long sys_waitid 1452 .long sys_ioprio_set 1453 .long sys_ioprio_get
··· 1451 .long sys_waitid 1452 .long sys_ioprio_set 1453 .long sys_ioprio_get 1454 + .long sys_inotify_init /* 275 */ 1455 + .long sys_inotify_add_watch 1456 + .long sys_inotify_rm_watch
+4 -1
include/asm-ppc/unistd.h
··· 279 #define __NR_waitid 272 280 #define __NR_ioprio_set 273 281 #define __NR_ioprio_get 274 282 283 - #define __NR_syscalls 275 284 285 #define __NR(n) #n 286
··· 279 #define __NR_waitid 272 280 #define __NR_ioprio_set 273 281 #define __NR_ioprio_get 274 282 + #define __NR_inotify_init 275 283 + #define __NR_inotify_add_watch 276 284 + #define __NR_inotify_rm_watch 277 285 286 + #define __NR_syscalls 278 287 288 #define __NR(n) #n 289