powerpc: Standardise on NR_syscalls rather than __NR_syscalls.
authorRashmica Gupta <rashmicy@gmail.com>
Thu, 19 Nov 2015 06:04:53 +0000 (17:04 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 26 Nov 2015 11:11:17 +0000 (22:11 +1100)
Most architectures use NR_syscalls as the #define for the number of syscalls.

We use __NR_syscalls, and then define NR_syscalls as __NR_syscalls.

__NR_syscalls is not used outside arch code, whereas NR_syscalls is. So as
NR_syscalls must be defined and __NR_syscalls does not, replace __NR_syscalls
with NR_syscalls.

Signed-off-by: Rashmica Gupta <rashmicy@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/unistd.h
arch/powerpc/include/asm/vdso_datapage.h
arch/powerpc/kernel/systbl_chk.c
arch/powerpc/kernel/systbl_chk.sh
arch/powerpc/kernel/vdso.c
arch/powerpc/kernel/vdso32/datapage.S
arch/powerpc/kernel/vdso64/datapage.S
arch/powerpc/platforms/cell/spufs/run.c

index 4b6b8ac..6a5ace5 100644 (file)
 #include <uapi/asm/unistd.h>
 
 
-#define __NR_syscalls          379
+#define NR_syscalls            379
 
 #define __NR__exit __NR_exit
-#define NR_syscalls    __NR_syscalls
 
 #ifndef __ASSEMBLY__
 
index b73a819..1afe90a 100644 (file)
@@ -41,7 +41,7 @@
 #include <linux/unistd.h>
 #include <linux/time.h>
 
-#define SYSCALL_MAP_SIZE      ((__NR_syscalls + 31) / 32)
+#define SYSCALL_MAP_SIZE      ((NR_syscalls + 31) / 32)
 
 /*
  * So here is the ppc64 backward compatible version
index 2384129..55323a6 100644 (file)
@@ -57,4 +57,4 @@
 
 START_TABLE
 #include <asm/systbl.h>
-END_TABLE __NR_syscalls
+END_TABLE NR_syscalls
index 19415e7..31b6e7c 100644 (file)
@@ -16,7 +16,7 @@ awk   'BEGIN { num = -1; }    # Ignore the beginning of the file
        /^START_TABLE/ { num = 0; next; }
        /^END_TABLE/ {
                if (num != $2) {
-                       printf "__NR_syscalls (%s) is not one more than the last syscall (%s)\n",
+                       printf "NR_syscalls (%s) is not one more than the last syscall (%s)\n",
                                $2, num - 1;
                        exit(1);
                }
index b457bfa..def1b8b 100644 (file)
@@ -671,7 +671,7 @@ static void __init vdso_setup_syscall_map(void)
        extern unsigned long sys_ni_syscall;
 
 
-       for (i = 0; i < __NR_syscalls; i++) {
+       for (i = 0; i < NR_syscalls; i++) {
 #ifdef CONFIG_PPC64
                if (sys_call_table[i*2] != sys_ni_syscall)
                        vdso_data->syscall_map_64[i >> 5] |=
index 59cf5f4..3745113 100644 (file)
@@ -61,7 +61,7 @@ V_FUNCTION_BEGIN(__kernel_get_syscall_map)
        addi    r3,r3,CFG_SYSCALL_MAP32
        cmpli   cr0,r4,0
        beqlr
-       li      r0,__NR_syscalls
+       li      r0,NR_syscalls
        stw     r0,0(r4)
        crclr   cr0*4+so
        blr
index 2f01c4a..184a6ba 100644 (file)
@@ -62,7 +62,7 @@ V_FUNCTION_BEGIN(__kernel_get_syscall_map)
        cmpli   cr0,r4,0
        crclr   cr0*4+so
        beqlr
-       li      r0,__NR_syscalls
+       li      r0,NR_syscalls
        stw     r0,0(r4)
        blr
   .cfi_endproc
index 4ddf769..9f79004 100644 (file)
@@ -326,7 +326,7 @@ static int spu_process_callback(struct spu_context *ctx)
        spu_ret = -ENOSYS;
        npc += 4;
 
-       if (s.nr_ret < __NR_syscalls) {
+       if (s.nr_ret < NR_syscalls) {
                spu_release(ctx);
                /* do actual system call from here */
                spu_ret = spu_sys_callback(&s);