]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
selftest/powerpc/ptrace: Cleanup duplicate macro definitions
authorMadhavan Srinivasan <maddy@linux.ibm.com>
Mon, 16 Dec 2024 16:02:57 +0000 (21:32 +0530)
committerMadhavan Srinivasan <maddy@linux.ibm.com>
Wed, 18 Dec 2024 08:10:12 +0000 (13:40 +0530)
Both core-pkey.c and ptrace-pkey.c tests have
similar macro definitions, move them to "pkeys.h"
and remove the macro definitions from the C file.

Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/20241216160257.87252-3-maddy@linux.ibm.com
tools/testing/selftests/powerpc/include/pkeys.h
tools/testing/selftests/powerpc/ptrace/core-pkey.c
tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c

index 51729d9a711109b11252730eed4e855045124fe5..3a0129467de6497f2be5549872b2a26222210540 100644 (file)
 #define __NR_pkey_alloc                384
 #define __NR_pkey_free         385
 
+#ifndef NT_PPC_PKEY
+#define NT_PPC_PKEY            0x110
+#endif
+
 #define PKEY_BITS_PER_PKEY     2
 #define NR_PKEYS               32
 #define PKEY_BITS_MASK         ((1UL << PKEY_BITS_PER_PKEY) - 1)
 
+#define AMR_BITS_PER_PKEY 2
+#define PKEY_REG_BITS (sizeof(u64) * 8)
+#define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey + 1) * AMR_BITS_PER_PKEY))
+
 inline unsigned long pkeyreg_get(void)
 {
        return mfspr(SPRN_AMR);
index 31c9bf6d95dba37a88b4a7e8df7c974e4919b2ad..f061434af452b4fb57cf02953f613c44d2fa9d43 100644 (file)
 #include "child.h"
 #include "pkeys.h"
 
-#ifndef NT_PPC_PKEY
-#define NT_PPC_PKEY            0x110
-#endif
-
-#ifndef PKEY_DISABLE_EXECUTE
-#define PKEY_DISABLE_EXECUTE   0x4
-#endif
-
-#define AMR_BITS_PER_PKEY 2
-#define PKEY_REG_BITS (sizeof(u64) * 8)
-#define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey + 1) * AMR_BITS_PER_PKEY))
-
 #define CORE_FILE_LIMIT        (5 * 1024 * 1024)       /* 5 MB should be enough */
 
 static const char core_pattern_file[] = "/proc/sys/kernel/core_pattern";
index 6893ed0964573139700066a2a2c8372edc1f2e44..fc633014424f767049f4d7b6c0b2c9dd8fac9ea5 100644 (file)
@@ -9,18 +9,6 @@
 #include "child.h"
 #include "pkeys.h"
 
-#ifndef NT_PPC_PKEY
-#define NT_PPC_PKEY            0x110
-#endif
-
-#ifndef PKEY_DISABLE_EXECUTE
-#define PKEY_DISABLE_EXECUTE   0x4
-#endif
-
-#define AMR_BITS_PER_PKEY 2
-#define PKEY_REG_BITS (sizeof(u64) * 8)
-#define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey + 1) * AMR_BITS_PER_PKEY))
-
 static const char user_read[] = "[User Read (Running)]";
 static const char user_write[] = "[User Write (Running)]";
 static const char ptrace_read_running[] = "[Ptrace Read (Running)]";