[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070601231053.GA26602@plexity.net>
Date: Fri, 1 Jun 2007 16:10:53 -0700
From: Deepak Saxena <dsaxena@...xity.net>
To: Ingo Molnar <mingo@...e.hu>
Cc: Thomas Gleixner <tglx@...utronix.de>, linux-kernel@...r.kernel.org,
rmk@....linux.org.uk
Subject: [PATCH RT] Fix NR_syscalls in ARM
The -rt patch adds a NR_syscalls symbol to the arm/unistd.h but
it is not the correct value as there are 348 syscalls on ARM
and the existing change sets the symbol to 322.
Signed-off-by: Deepak Saxena <dsaxena@...sta.com>
---
Russell: Why isn't this in mainline? Other arches all seem to have
this symbol already defined.
Index: linux-2.6.21/include/asm-arm/unistd.h
===================================================================
--- linux-2.6.21.orig/include/asm-arm/unistd.h
+++ linux-2.6.21/include/asm-arm/unistd.h
@@ -375,7 +375,7 @@
#define __NR_kexec_load (__NR_SYSCALL_BASE+347)
#ifndef __ASSEMBLY__
-#define NR_syscalls (__NR_set_mempolicy + 1 - __NR_SYSCALL_BASE)
+#define NR_syscalls (__NR_kexec_load + 1 - __NR_SYSCALL_BASE)
#endif
/*
--
Deepak Saxena - dsaxena@...xity.net - http://www.plexity.net
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists