diff options
author | Robert Love <rml@novell.com> | 2005-07-27 11:58:00 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-07-27 13:46:12 -0400 |
commit | d108919b2b5c064946c9bd30cbd4761d491cddb0 (patch) | |
tree | bcb902d8b1c6fa3d5311d0a0e4b8520e3ec8b721 | |
parent | c2834cf4746cf13501efc3489b1895bce58a4ccb (diff) |
[IA64] inotify: ia64 syscalls.
Attached patch adds the inotify syscalls to ia64.
Signed-off-by: Robert Love <rml@novell.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | arch/ia64/kernel/entry.S | 6 | ||||
-rw-r--r-- | include/asm-ia64/unistd.h | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/arch/ia64/kernel/entry.S b/arch/ia64/kernel/entry.S index bb9a506deb78..66946f3fdac7 100644 --- a/arch/ia64/kernel/entry.S +++ b/arch/ia64/kernel/entry.S | |||
@@ -1574,8 +1574,8 @@ sys_call_table: | |||
1574 | data8 sys_ioprio_set | 1574 | data8 sys_ioprio_set |
1575 | data8 sys_ioprio_get // 1275 | 1575 | data8 sys_ioprio_get // 1275 |
1576 | data8 sys_set_zone_reclaim | 1576 | data8 sys_set_zone_reclaim |
1577 | data8 sys_ni_syscall | 1577 | data8 sys_inotify_init |
1578 | data8 sys_ni_syscall | 1578 | data8 sys_inotify_add_watch |
1579 | data8 sys_ni_syscall | 1579 | data8 sys_inotify_rm_watch |
1580 | 1580 | ||
1581 | .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls | 1581 | .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls |
diff --git a/include/asm-ia64/unistd.h b/include/asm-ia64/unistd.h index 517f1649ee64..3a0c69524656 100644 --- a/include/asm-ia64/unistd.h +++ b/include/asm-ia64/unistd.h | |||
@@ -266,6 +266,9 @@ | |||
266 | #define __NR_ioprio_set 1274 | 266 | #define __NR_ioprio_set 1274 |
267 | #define __NR_ioprio_get 1275 | 267 | #define __NR_ioprio_get 1275 |
268 | #define __NR_set_zone_reclaim 1276 | 268 | #define __NR_set_zone_reclaim 1276 |
269 | #define __NR_inotify_init 1277 | ||
270 | #define __NR_inotify_add_watch 1278 | ||
271 | #define __NR_inotify_rm_watch 1279 | ||
269 | 272 | ||
270 | #ifdef __KERNEL__ | 273 | #ifdef __KERNEL__ |
271 | 274 | ||