public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] SH: inotify and ioprio syscalls
@ 2005-08-10 20:07 ` Robert Love
  2005-08-12  3:17   ` Paul Mundt
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Love @ 2005-08-10 20:07 UTC (permalink / raw)
  To: Mr Morton; +Cc: Linux Kernel Mailing List, The Cutch

Add inotify and ioprio syscall stubs to SH.

	Robert Love


Signed-off-by: Robert Love <rml@novell.com>

 arch/sh/kernel/entry.S  |    5 +++++
 include/asm-sh/unistd.h |    8 +++++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff -urN linux-2.6.13-rc6-git2/arch/sh/kernel/entry.S linux/arch/sh/kernel/entry.S
--- linux-2.6.13-rc6-git2/arch/sh/kernel/entry.S	2005-06-17 15:48:29.000000000 -0400
+++ linux/arch/sh/kernel/entry.S	2005-08-10 15:54:44.000000000 -0400
@@ -1145,5 +1145,10 @@
 	.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 */
diff -urN linux-2.6.13-rc6-git2/include/asm-sh/unistd.h linux/include/asm-sh/unistd.h
--- linux-2.6.13-rc6-git2/include/asm-sh/unistd.h	2005-06-17 15:48:29.000000000 -0400
+++ linux/include/asm-sh/unistd.h	2005-08-10 15:55:41.000000000 -0400
@@ -295,8 +295,14 @@
 #define __NR_add_key		285
 #define __NR_request_key	286
 #define __NR_keyctl		287
+#define __NR_ioprio_set		288
+#define __NR_ioprio_get		289
+#define __NR_inotify_init	290
+#define __NR_inotify_add_watch	291
+#define __NR_inotify_rm_watch	292
 
-#define NR_syscalls 288
+
+#define NR_syscalls 293
 
 /* user-visible error numbers are in the range -1 - -124: see <asm-sh/errno.h> */
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [patch] SH64: inotify and ioprio syscalls
@ 2005-08-10 20:13 Robert Love
  2005-08-10 20:07 ` [patch] SH: " Robert Love
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Love @ 2005-08-10 20:13 UTC (permalink / raw)
  To: Mr Morton; +Cc: The Cutch, Linux Kernel Mailing List

Add inotify and ioprio syscall stubs to SH64.

	Robert Love


Signed-off-by: Robert Love <rml@novell.com>

 arch/sh64/kernel/syscalls.S |    5 +++++
 include/asm-sh64/unistd.h   |    7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff -urN linux-2.6.13-rc6-git2/arch/sh64/kernel/syscalls.S linux/arch/sh64/kernel/syscalls.S
--- linux-2.6.13-rc6-git2/arch/sh64/kernel/syscalls.S	2005-06-17 15:48:29.000000000 -0400
+++ linux/arch/sh64/kernel/syscalls.S	2005-08-10 16:12:24.000000000 -0400
@@ -342,4 +342,9 @@
 	.long sys_add_key
 	.long sys_request_key
 	.long sys_keyctl		/* 315 */
+	.long sys_ioprio_set
+	.long sys_ioprio_get
+	.long sys_inotify_init
+	.long sys_inotify_add_watch
+	.long sys_inotify_rm_watch	/* 320 */
 
diff -urN linux-2.6.13-rc6-git2/include/asm-sh64/unistd.h linux/include/asm-sh64/unistd.h
--- linux-2.6.13-rc6-git2/include/asm-sh64/unistd.h	2005-06-17 15:48:29.000000000 -0400
+++ linux/include/asm-sh64/unistd.h	2005-08-10 16:12:10.000000000 -0400
@@ -338,8 +338,13 @@
 #define __NR_add_key		313
 #define __NR_request_key	314
 #define __NR_keyctl		315
+#define __NR_ioprio_set		316
+#define __NR_ioprio_get		317
+#define __NR_inotify_init	318
+#define __NR_inotify_add_watch	319
+#define __NR_inotify_rm_watch	320
 
-#define NR_syscalls 316
+#define NR_syscalls 321
 
 /* user-visible error numbers are in the range -1 - -125: see <asm-sh64/errno.h> */
 



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch] SH: inotify and ioprio syscalls
  2005-08-10 20:07 ` [patch] SH: " Robert Love
@ 2005-08-12  3:17   ` Paul Mundt
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Mundt @ 2005-08-12  3:17 UTC (permalink / raw)
  To: Robert Love; +Cc: Mr Morton, Linux Kernel Mailing List, The Cutch

[-- Attachment #1: Type: text/plain, Size: 742 bytes --]

On Wed, Aug 10, 2005 at 04:07:09PM -0400, Robert Love wrote:
> Add inotify and ioprio syscall stubs to SH.
> 
> 	Robert Love
> 
> 
> Signed-off-by: Robert Love <rml@novell.com>
> 
>  arch/sh/kernel/entry.S  |    5 +++++
>  include/asm-sh/unistd.h |    8 +++++++-
>  2 files changed, 12 insertions(+), 1 deletion(-)
> 

On Wed, Aug 10, 2005 at 04:13:17PM -0400, Robert Love wrote:
> Add inotify and ioprio syscall stubs to SH64.
> 
> 	Robert Love
> 
> 
> Signed-off-by: Robert Love <rml@novell.com>
> 
>  arch/sh64/kernel/syscalls.S |    5 +++++
>  include/asm-sh64/unistd.h   |    7 ++++++-
>  2 files changed, 11 insertions(+), 1 deletion(-)
> 
Both look good, thanks.

Acked-by: Paul Mundt <lethal@linux-sh.org>

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-08-12  3:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-10 20:13 [patch] SH64: inotify and ioprio syscalls Robert Love
2005-08-10 20:07 ` [patch] SH: " Robert Love
2005-08-12  3:17   ` Paul Mundt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox