From: Chen Gang <chengang@emindsoft.com.cn>
To: Michael Ellerman <mpe@ellerman.id.au>,
Dave Hansen <dave.hansen@linux.intel.com>,
akpm@linux-foundation.org, benh@kernel.crashing.org,
paulus@samba.org
Cc: tglx@linutronix.de, mingo@kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
Chen Gang <gang.chen.5i5j@gmail.com>
Subject: Re: [PATCH] include: mman: Use bool instead of int for the return value of arch_validate_prot
Date: Wed, 13 Jul 2016 00:53:39 +0800 [thread overview]
Message-ID: <57852093.1090909@emindsoft.com.cn> (raw)
In-Reply-To: <878tx7cwsn.fsf@@concordia.ellerman.id.au>
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.
prev parent reply other threads:[~2016-07-12 16:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
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
2016-07-11 19:01 ` Chen Gang
2016-07-12 4:20 ` Michael Ellerman
2016-07-12 16:53 ` Chen Gang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=57852093.1090909@emindsoft.com.cn \
--to=chengang@emindsoft.com.cn \
--cc=akpm@linux-foundation.org \
--cc=benh@kernel.crashing.org \
--cc=dave.hansen@linux.intel.com \
--cc=gang.chen.5i5j@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mingo@kernel.org \
--cc=mpe@ellerman.id.au \
--cc=paulus@samba.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.