All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wei Yang <richardw.yang@linux.intel.com>
To: Ralph Campbell <rcampbell@nvidia.com>
Cc: Wei Yang <richardw.yang@linux.intel.com>,
	akpm@linux-foundation.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
Date: Wed, 15 Jan 2020 09:52:21 +0800	[thread overview]
Message-ID: <20200115015221.GA8430@richard> (raw)
In-Reply-To: <3ec77382-900c-56b9-dcad-f8b24117b097@nvidia.com>

On Tue, Jan 14, 2020 at 11:07:03AM -0800, Ralph Campbell wrote:
>
>On 1/12/20 11:03 PM, Wei Yang wrote:
>> No functional change, just leverage the helper function to improve
>> readability as others.
>> 
>> Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
>
>I had thought about doing this same thing. :-)

Ah, in Chinese, there is a saying: Heroes see the same :-)

>Reviewed-by: Ralph Campbell <rcampbell@nvidia.com>
>
>> ---
>>   mm/gup.c | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/mm/gup.c b/mm/gup.c
>> index 7646bf993b25..7705929cc920 100644
>> --- a/mm/gup.c
>> +++ b/mm/gup.c
>> @@ -323,7 +323,7 @@ static struct page *follow_pmd_mask(struct vm_area_struct *vma,
>>   	pmdval = READ_ONCE(*pmd);
>>   	if (pmd_none(pmdval))
>>   		return no_page_table(vma, flags);
>> -	if (pmd_huge(pmdval) && vma->vm_flags & VM_HUGETLB) {
>> +	if (pmd_huge(pmdval) && is_vm_hugetlb_page(vma)) {
>>   		page = follow_huge_pmd(mm, address, pmd, flags);
>>   		if (page)
>>   			return page;
>> @@ -433,7 +433,7 @@ static struct page *follow_pud_mask(struct vm_area_struct *vma,
>>   	pud = pud_offset(p4dp, address);
>>   	if (pud_none(*pud))
>>   		return no_page_table(vma, flags);
>> -	if (pud_huge(*pud) && vma->vm_flags & VM_HUGETLB) {
>> +	if (pud_huge(*pud) && is_vm_hugetlb_page(vma)) {
>>   		page = follow_huge_pud(mm, address, pud, flags);
>>   		if (page)
>>   			return page;
>> 

-- 
Wei Yang
Help you, Help me


      reply	other threads:[~2020-01-15  1:52 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-13  7:03 [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge Wei Yang
2020-01-13 13:22 ` Vlastimil Babka
2020-01-13 21:03 ` David Rientjes
2020-01-14 19:07 ` Ralph Campbell
2020-01-15  1:52   ` Wei Yang [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=20200115015221.GA8430@richard \
    --to=richardw.yang@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=rcampbell@nvidia.com \
    /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.