linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros
@ 2024-12-09 15:14 Madhavan Srinivasan
  2024-12-09 15:14 ` [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: " Madhavan Srinivasan
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-09 15:14 UTC (permalink / raw)
  To: mpe, npiggin, christophe.leroy, naveen, shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

core-pkey.c test has couple of macros defined which
are part of "pkeys.h" header file. Remove those
duplicates and include "pkeys.h"

Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
---
 .../selftests/powerpc/ptrace/core-pkey.c      | 19 +------------------
 1 file changed, 1 insertion(+), 18 deletions(-)

diff --git a/tools/testing/selftests/powerpc/ptrace/core-pkey.c b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
index f6da4cb30cd6..31c9bf6d95db 100644
--- a/tools/testing/selftests/powerpc/ptrace/core-pkey.c
+++ b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
@@ -16,14 +16,7 @@
 #include <unistd.h>
 #include "ptrace.h"
 #include "child.h"
-
-#ifndef __NR_pkey_alloc
-#define __NR_pkey_alloc		384
-#endif
-
-#ifndef __NR_pkey_free
-#define __NR_pkey_free		385
-#endif
+#include "pkeys.h"
 
 #ifndef NT_PPC_PKEY
 #define NT_PPC_PKEY		0x110
@@ -61,16 +54,6 @@ struct shared_info {
 	time_t core_time;
 };
 
-static int sys_pkey_alloc(unsigned long flags, unsigned long init_access_rights)
-{
-	return syscall(__NR_pkey_alloc, flags, init_access_rights);
-}
-
-static int sys_pkey_free(int pkey)
-{
-	return syscall(__NR_pkey_free, pkey);
-}
-
 static int increase_core_file_limit(void)
 {
 	struct rlimit rlim;
-- 
2.47.0



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

* [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: Remove duplicate macros
  2024-12-09 15:14 [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Madhavan Srinivasan
@ 2024-12-09 15:14 ` Madhavan Srinivasan
  2024-12-16 10:54   ` Ritesh Harjani
  2024-12-09 15:14 ` [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions Madhavan Srinivasan
  2024-12-16 10:47 ` [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Ritesh Harjani (IBM)
  2 siblings, 1 reply; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-09 15:14 UTC (permalink / raw)
  To: mpe, npiggin, christophe.leroy, naveen, shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

ptrace-pkey.c test has macros defined which
are part of "pkeys.h" header file. Remove those
duplicates and include "pkeys.h"

Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
---
 .../testing/selftests/powerpc/ptrace/ptrace-pkey.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
index d89474377f11..6893ed096457 100644
--- a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
+++ b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
@@ -7,14 +7,7 @@
  */
 #include "ptrace.h"
 #include "child.h"
-
-#ifndef __NR_pkey_alloc
-#define __NR_pkey_alloc		384
-#endif
-
-#ifndef __NR_pkey_free
-#define __NR_pkey_free		385
-#endif
+#include "pkeys.h"
 
 #ifndef NT_PPC_PKEY
 #define NT_PPC_PKEY		0x110
@@ -61,11 +54,6 @@ struct shared_info {
 	unsigned long invalid_uamor;
 };
 
-static int sys_pkey_alloc(unsigned long flags, unsigned long init_access_rights)
-{
-	return syscall(__NR_pkey_alloc, flags, init_access_rights);
-}
-
 static int child(struct shared_info *info)
 {
 	unsigned long reg;
-- 
2.47.0



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

* [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions
  2024-12-09 15:14 [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Madhavan Srinivasan
  2024-12-09 15:14 ` [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: " Madhavan Srinivasan
@ 2024-12-09 15:14 ` Madhavan Srinivasan
  2024-12-16 10:57   ` Ritesh Harjani
  2024-12-16 10:47 ` [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Ritesh Harjani (IBM)
  2 siblings, 1 reply; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-09 15:14 UTC (permalink / raw)
  To: mpe, npiggin, christophe.leroy, naveen, shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

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.

Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
---
 tools/testing/selftests/powerpc/include/pkeys.h      | 8 ++++++++
 tools/testing/selftests/powerpc/ptrace/core-pkey.c   | 8 --------
 tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c | 8 --------
 3 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/tools/testing/selftests/powerpc/include/pkeys.h b/tools/testing/selftests/powerpc/include/pkeys.h
index 51729d9a7111..3a0129467de6 100644
--- a/tools/testing/selftests/powerpc/include/pkeys.h
+++ b/tools/testing/selftests/powerpc/include/pkeys.h
@@ -35,10 +35,18 @@
 #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);
diff --git a/tools/testing/selftests/powerpc/ptrace/core-pkey.c b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
index 31c9bf6d95db..f8ff05e5bf6e 100644
--- a/tools/testing/selftests/powerpc/ptrace/core-pkey.c
+++ b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
@@ -18,18 +18,10 @@
 #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";
diff --git a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
index 6893ed096457..5d528d0ea9d1 100644
--- a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
+++ b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
@@ -9,18 +9,10 @@
 #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)]";
-- 
2.47.0



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

* Re: [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros
  2024-12-09 15:14 [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Madhavan Srinivasan
  2024-12-09 15:14 ` [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: " Madhavan Srinivasan
  2024-12-09 15:14 ` [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions Madhavan Srinivasan
@ 2024-12-16 10:47 ` Ritesh Harjani (IBM)
  2024-12-16 12:10   ` Madhavan Srinivasan
  2 siblings, 1 reply; 9+ messages in thread
From: Ritesh Harjani (IBM) @ 2024-12-16 10:47 UTC (permalink / raw)
  To: Madhavan Srinivasan, mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

Madhavan Srinivasan <maddy@linux.ibm.com> writes:

> core-pkey.c test has couple of macros defined which
> are part of "pkeys.h" header file. Remove those
> duplicates and include "pkeys.h"
>
> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
> ---
>  .../selftests/powerpc/ptrace/core-pkey.c      | 19 +------------------
>  1 file changed, 1 insertion(+), 18 deletions(-)

.../powerpc/ptrace/Makefile includes flags.mk. In
.../powerpc/flags.mk we anyways add -I$(selfdir)/powerpc/include in
CFLAGS - so it will pick up the header files defined in powerpc/include.

It make sense to clean this up and consolidate the common header definitions
into pkeys.h header file. The changes looks good to me. Please feel free
to add - 

Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>

-ritesh


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

* Re: [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: Remove duplicate macros
  2024-12-09 15:14 ` [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: " Madhavan Srinivasan
@ 2024-12-16 10:54   ` Ritesh Harjani
  2024-12-16 12:09     ` Madhavan Srinivasan
  0 siblings, 1 reply; 9+ messages in thread
From: Ritesh Harjani @ 2024-12-16 10:54 UTC (permalink / raw)
  To: Madhavan Srinivasan, mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

Madhavan Srinivasan <maddy@linux.ibm.com> writes:

> ptrace-pkey.c test has macros defined which
> are part of "pkeys.h" header file. Remove those
> duplicates and include "pkeys.h"
>
> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
> ---
>  .../testing/selftests/powerpc/ptrace/ptrace-pkey.c | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
>

Similar to previous patch. Cleanup looks good to me. 

Please feel free to add - 
Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com> 

-ritesh


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

* Re: [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions
  2024-12-09 15:14 ` [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions Madhavan Srinivasan
@ 2024-12-16 10:57   ` Ritesh Harjani
  2024-12-16 12:09     ` Madhavan Srinivasan
  0 siblings, 1 reply; 9+ messages in thread
From: Ritesh Harjani @ 2024-12-16 10:57 UTC (permalink / raw)
  To: Madhavan Srinivasan, mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest, Madhavan Srinivasan

Madhavan Srinivasan <maddy@linux.ibm.com> writes:

> 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.
>
> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
> ---
>  tools/testing/selftests/powerpc/include/pkeys.h      | 8 ++++++++
>  tools/testing/selftests/powerpc/ptrace/core-pkey.c   | 8 --------
>  tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c | 8 --------
>  3 files changed, 8 insertions(+), 16 deletions(-)
>
> diff --git a/tools/testing/selftests/powerpc/include/pkeys.h b/tools/testing/selftests/powerpc/include/pkeys.h
> index 51729d9a7111..3a0129467de6 100644
> --- a/tools/testing/selftests/powerpc/include/pkeys.h
> +++ b/tools/testing/selftests/powerpc/include/pkeys.h
> @@ -35,10 +35,18 @@
>  #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);
> diff --git a/tools/testing/selftests/powerpc/ptrace/core-pkey.c b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
> index 31c9bf6d95db..f8ff05e5bf6e 100644
> --- a/tools/testing/selftests/powerpc/ptrace/core-pkey.c
> +++ b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
> @@ -18,18 +18,10 @@
>  #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

We could remove this as well right. Since pkeys.h already has this
permission defines i.e.
PKEY_DISABLE_[ACCESS|WRITE|EXECUTE] 

>  
> -#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";
> diff --git a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
> index 6893ed096457..5d528d0ea9d1 100644
> --- a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
> +++ b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
> @@ -9,18 +9,10 @@
>  #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
>  

Same here. This can be cleaned up, no? Since pkeys already has this defined.


-ritesh

> -#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)]";
> -- 
> 2.47.0


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

* Re: [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions
  2024-12-16 10:57   ` Ritesh Harjani
@ 2024-12-16 12:09     ` Madhavan Srinivasan
  0 siblings, 0 replies; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-16 12:09 UTC (permalink / raw)
  To: Ritesh Harjani (IBM), mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest



On 12/16/24 4:27 PM, Ritesh Harjani (IBM) wrote:
> Madhavan Srinivasan <maddy@linux.ibm.com> writes:
> 
>> 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.
>>
>> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
>> ---
>>  tools/testing/selftests/powerpc/include/pkeys.h      | 8 ++++++++
>>  tools/testing/selftests/powerpc/ptrace/core-pkey.c   | 8 --------
>>  tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c | 8 --------
>>  3 files changed, 8 insertions(+), 16 deletions(-)
>>
>> diff --git a/tools/testing/selftests/powerpc/include/pkeys.h b/tools/testing/selftests/powerpc/include/pkeys.h
>> index 51729d9a7111..3a0129467de6 100644
>> --- a/tools/testing/selftests/powerpc/include/pkeys.h
>> +++ b/tools/testing/selftests/powerpc/include/pkeys.h
>> @@ -35,10 +35,18 @@
>>  #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);
>> diff --git a/tools/testing/selftests/powerpc/ptrace/core-pkey.c b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
>> index 31c9bf6d95db..f8ff05e5bf6e 100644
>> --- a/tools/testing/selftests/powerpc/ptrace/core-pkey.c
>> +++ b/tools/testing/selftests/powerpc/ptrace/core-pkey.c
>> @@ -18,18 +18,10 @@
>>  #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
> 
> We could remove this as well right. Since pkeys.h already has this
> permission defines i.e.
> PKEY_DISABLE_[ACCESS|WRITE|EXECUTE] 
> 

Nice catch. Yes we can drop these too.
Will fix and send a v2
 

>>  
>> -#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";
>> diff --git a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
>> index 6893ed096457..5d528d0ea9d1 100644
>> --- a/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
>> +++ b/tools/testing/selftests/powerpc/ptrace/ptrace-pkey.c
>> @@ -9,18 +9,10 @@
>>  #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
>>  
> 
> Same here. This can be cleaned up, no? Since pkeys already has this defined.
> 
> 
> -ritesh
> 
>> -#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)]";
>> -- 
>> 2.47.0



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

* Re: [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: Remove duplicate macros
  2024-12-16 10:54   ` Ritesh Harjani
@ 2024-12-16 12:09     ` Madhavan Srinivasan
  0 siblings, 0 replies; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-16 12:09 UTC (permalink / raw)
  To: Ritesh Harjani (IBM), mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest



On 12/16/24 4:24 PM, Ritesh Harjani (IBM) wrote:
> Madhavan Srinivasan <maddy@linux.ibm.com> writes:
> 
>> ptrace-pkey.c test has macros defined which
>> are part of "pkeys.h" header file. Remove those
>> duplicates and include "pkeys.h"
>>
>> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
>> ---
>>  .../testing/selftests/powerpc/ptrace/ptrace-pkey.c | 14 +-------------
>>  1 file changed, 1 insertion(+), 13 deletions(-)
>>
> 
> Similar to previous patch. Cleanup looks good to me. 
> 
> Please feel free to add - 
> Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com> 
> 

Thanks

> -ritesh



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

* Re: [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros
  2024-12-16 10:47 ` [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Ritesh Harjani (IBM)
@ 2024-12-16 12:10   ` Madhavan Srinivasan
  0 siblings, 0 replies; 9+ messages in thread
From: Madhavan Srinivasan @ 2024-12-16 12:10 UTC (permalink / raw)
  To: Ritesh Harjani (IBM), mpe, npiggin, christophe.leroy, naveen,
	shuah
  Cc: linuxppc-dev, linux-kselftest



On 12/16/24 4:17 PM, Ritesh Harjani (IBM) wrote:
> Madhavan Srinivasan <maddy@linux.ibm.com> writes:
> 
>> core-pkey.c test has couple of macros defined which
>> are part of "pkeys.h" header file. Remove those
>> duplicates and include "pkeys.h"
>>
>> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
>> ---
>>  .../selftests/powerpc/ptrace/core-pkey.c      | 19 +------------------
>>  1 file changed, 1 insertion(+), 18 deletions(-)
> 
> .../powerpc/ptrace/Makefile includes flags.mk. In
> .../powerpc/flags.mk we anyways add -I$(selfdir)/powerpc/include in
> CFLAGS - so it will pick up the header files defined in powerpc/include.
> 
> It make sense to clean this up and consolidate the common header definitions
> into pkeys.h header file. The changes looks good to me. Please feel free
> to add - 
> 
> Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>

Thanks

> 
> -ritesh



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

end of thread, other threads:[~2024-12-16 12:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-09 15:14 [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Madhavan Srinivasan
2024-12-09 15:14 ` [PATCH 2/3] selftest/powerpc/ptrace/ptrace-pkey: " Madhavan Srinivasan
2024-12-16 10:54   ` Ritesh Harjani
2024-12-16 12:09     ` Madhavan Srinivasan
2024-12-09 15:14 ` [PATCH 3/3] selftest/powerpc/ptrace: Cleanup duplicate macro definitions Madhavan Srinivasan
2024-12-16 10:57   ` Ritesh Harjani
2024-12-16 12:09     ` Madhavan Srinivasan
2024-12-16 10:47 ` [PATCH 1/3] selftest/powerpc/ptrace/core-pkey: Remove duplicate macros Ritesh Harjani (IBM)
2024-12-16 12:10   ` Madhavan Srinivasan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).