[PATCH RT] Fix NR_syscalls in ARM

From: Deepak Saxena
Date: Fri Jun 01 2007 - 19:14:50 EST



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@xxxxxxxxxx>

---

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@xxxxxxxxxxx - http://www.plexity.net
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/