diff options
author | Robert Love <rml@novell.com> | 2005-08-18 11:24:13 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-18 12:53:57 -0700 |
commit | f2926b7953c5f23265c062992516fed6674105db (patch) | |
tree | 022b1bc9de27ee37a6f2e87e08c715b853cb4501 /arch | |
parent | dc59250c6ebed099a9bc0a11298e2281dd896657 (diff) | |
download | linux-3.10-f2926b7953c5f23265c062992516fed6674105db.tar.gz linux-3.10-f2926b7953c5f23265c062992516fed6674105db.tar.bz2 linux-3.10-f2926b7953c5f23265c062992516fed6674105db.zip |
[PATCH] SH: inotify and ioprio syscalls
Add inotify and ioprio syscall stubs to SH.
Signed-off-by: Robert Love <rml@novell.com>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/entry.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sh/kernel/entry.S b/arch/sh/kernel/entry.S index 6615e4838ee..fb6368159dd 100644 --- a/arch/sh/kernel/entry.S +++ b/arch/sh/kernel/entry.S @@ -1145,5 +1145,10 @@ ENTRY(sys_call_table) .long sys_add_key /* 285 */ .long sys_request_key .long sys_keyctl + .long sys_ioprio_set + .long sys_ioprio_get + .long sys_inotify_init /* 290 */ + .long sys_inotify_add_watch + .long sys_inotify_rm_watch /* End of entry.S */ |