linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot
@ 2016-07-09 16:29 chengang
  2016-07-10 23:47 ` Dave Hansen
  0 siblings, 1 reply; 4+ messages in thread
From: chengang @ 2016-07-09 16:29 UTC (permalink / raw)
  To: akpm, benh, paulus
  Cc: mpe, dave.hansen, tglx, mingo, linuxppc-dev, linux-kernel,
	Chen Gang, Chen Gang

From: Chen Gang <chengang@emindsoft.com.cn>

For pure bool function's return value, bool is a little better more or
less than int.

And return boolean result directly. Since 'if' statement is also for
boolean checking, and return boolean result, too.

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 arch/powerpc/include/asm/mman.h | 8 +++-----
 include/linux/mman.h            | 2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/arch/powerpc/include/asm/mman.h b/arch/powerpc/include/asm/mman.h
index 2563c43..62e1f47 100644
--- a/arch/powerpc/include/asm/mman.h
+++ b/arch/powerpc/include/asm/mman.h
@@ -31,13 +31,11 @@ static inline pgprot_t arch_vm_get_page_prot(unsigned long vm_flags)
 }
 #define arch_vm_get_page_prot(vm_flags) arch_vm_get_page_prot(vm_flags)
 
-static inline int arch_validate_prot(unsigned long prot)
+static inline bool arch_validate_prot(unsigned long prot)
 {
 	if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM | PROT_SAO))
-		return 0;
-	if ((prot & PROT_SAO) && !cpu_has_feature(CPU_FTR_SAO))
-		return 0;
-	return 1;
+		return false;
+	return (prot & PROT_SAO) == 0 || cpu_has_feature(CPU_FTR_SAO);
 }
 #define arch_validate_prot(prot) arch_validate_prot(prot)
 
diff --git a/include/linux/mman.h b/include/linux/mman.h
index 33e17f6..634c4c5 100644
--- a/include/linux/mman.h
+++ b/include/linux/mman.h
@@ -49,7 +49,7 @@ static inline void vm_unacct_memory(long pages)
  *
  * Returns true if the prot flags are valid
  */
-static inline int arch_validate_prot(unsigned long prot)
+static inline bool arch_validate_prot(unsigned long prot)
 {
 	return (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM)) == 0;
 }
-- 
1.9.3

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

* Re: [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot
  2016-07-09 16:29 [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot chengang
@ 2016-07-10 23:47 ` Dave Hansen
       [not found]   ` <5783ED17.9010805@emindsoft.com.cn>
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Hansen @ 2016-07-10 23:47 UTC (permalink / raw)
  To: chengang, akpm, benh, paulus
  Cc: mpe, tglx, mingo, linuxppc-dev, linux-kernel, Chen Gang

On 07/09/2016 09:29 AM, chengang@emindsoft.com.cn wrote:
> -static inline int arch_validate_prot(unsigned long prot)
> +static inline bool arch_validate_prot(unsigned long prot)
>  {
>  	if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM | PROT_SAO))
> -		return 0;
> -	if ((prot & PROT_SAO) && !cpu_has_feature(CPU_FTR_SAO))
> -		return 0;
> -	return 1;
> +		return false;
> +	return (prot & PROT_SAO) == 0 || cpu_has_feature(CPU_FTR_SAO);
>  }
>  #define arch_validate_prot(prot) arch_validate_prot(prot)

Please don't do things like this.  They're not obviously correct and
also have no obvious benefit.  You also don't mention why you bothered
to alter the logical structure of these checks.

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

* Re: [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot
       [not found]   ` <5783ED17.9010805@emindsoft.com.cn>
@ 2016-07-12  4:20     ` Michael Ellerman
  2016-07-12 16:53       ` Chen Gang
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Ellerman @ 2016-07-12  4:20 UTC (permalink / raw)
  To: Chen Gang, Dave Hansen, akpm, benh, paulus
  Cc: tglx, mingo, linuxppc-dev, linux-kernel, Chen Gang

Chen Gang <chengang@emindsoft.com.cn> writes:

> On 7/11/16 07:47, Dave Hansen wrote:
>> On 07/09/2016 09:29 AM, chengang@emindsoft.com.cn wrote:
>>> -static inline int arch_validate_prot(unsigned long prot)
>>> +static inline bool arch_validate_prot(unsigned long prot)
>>>  {
>>>  	if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM | PROT_SAO))
>>> -		return 0;
>>> -	if ((prot & PROT_SAO) && !cpu_has_feature(CPU_FTR_SAO))
>>> -		return 0;
>>> -	return 1;
>>> +		return false;
>>> +	return (prot & PROT_SAO) == 0 || cpu_has_feature(CPU_FTR_SAO);
>>>  }
>>>  #define arch_validate_prot(prot) arch_validate_prot(prot)
>> 
>> Please don't do things like this.  They're not obviously correct and
>> also have no obvious benefit.  You also don't mention why you bothered
>> to alter the logical structure of these checks.
>> 
>
> For all cases, bool is equal or a little better than int, and they are
> equal in our case (2 final outputs are same). So for me, it may belong
> to trivial patch, which can be skipped by the normal patch maintainers.
>
> As a 'trivial' patch:
>
>  - For a pure Boolean function, bool return value is more readable than
>    int.

Agreed.

Please send a patch that does that and only that.

cheers

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

* Re: [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot
  2016-07-12  4:20     ` Michael Ellerman
@ 2016-07-12 16:53       ` Chen Gang
  0 siblings, 0 replies; 4+ messages in thread
From: Chen Gang @ 2016-07-12 16:53 UTC (permalink / raw)
  To: Michael Ellerman, Dave Hansen, akpm, benh, paulus
  Cc: tglx, mingo, linuxppc-dev, linux-kernel, Chen Gang

On 7/12/16 12:20, Michael Ellerman wrote:
> Chen Gang <chengang@emindsoft.com.cn> writes:
> 
>> On 7/11/16 07:47, Dave Hansen wrote:
>>> On 07/09/2016 09:29 AM, chengang@emindsoft.com.cn wrote:
>>>> -static inline int arch_validate_prot(unsigned long prot)
>>>> +static inline bool arch_validate_prot(unsigned long prot)
>>>>  {
>>>>  	if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC | PROT_SEM | PROT_SAO))
>>>> -		return 0;
>>>> -	if ((prot & PROT_SAO) && !cpu_has_feature(CPU_FTR_SAO))
>>>> -		return 0;
>>>> -	return 1;
>>>> +		return false;
>>>> +	return (prot & PROT_SAO) == 0 || cpu_has_feature(CPU_FTR_SAO);
>>>>  }
>>>>  #define arch_validate_prot(prot) arch_validate_prot(prot)
>>>
>>> Please don't do things like this.  They're not obviously correct and
>>> also have no obvious benefit.  You also don't mention why you bothered
>>> to alter the logical structure of these checks.
>>>
>>
>> For all cases, bool is equal or a little better than int, and they are
>> equal in our case (2 final outputs are same). So for me, it may belong
>> to trivial patch, which can be skipped by the normal patch maintainers.
>>
>> As a 'trivial' patch:
>>
>>  - For a pure Boolean function, bool return value is more readable than
>>    int.
> 
> Agreed.
> 
> Please send a patch that does that and only that.
> 

OK, thanks.

After check the assembly output, for some cases, merging 3 lines to 1
line may be a little more readable, but compiler will generate a little
bad output code.

I shall send patch v2 for it within this weekend.

Thanks.
-- 
Chen Gang (陈刚)

Managing Natural Environments is the Duty of Human Beings.

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

end of thread, other threads:[~2016-07-12 16:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-09 16:29 [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot chengang
2016-07-10 23:47 ` Dave Hansen
     [not found]   ` <5783ED17.9010805@emindsoft.com.cn>
2016-07-12  4:20     ` Michael Ellerman
2016-07-12 16:53       ` Chen Gang

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).