linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
@ 2020-01-13  7:03 Wei Yang
  2020-01-13 13:22 ` Vlastimil Babka
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Wei Yang @ 2020-01-13  7:03 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, linux-kernel, Wei Yang

No functional change, just leverage the helper function to improve
readability as others.

Signed-off-by: Wei Yang <richardw.yang@linux.intel.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;
-- 
2.17.1



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

* Re: [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
  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
  2 siblings, 0 replies; 5+ messages in thread
From: Vlastimil Babka @ 2020-01-13 13:22 UTC (permalink / raw)
  To: Wei Yang, akpm; +Cc: linux-mm, linux-kernel

On 1/13/20 8:03 AM, 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>

Acked-by: Vlastimil Babka <vbabka@suse.cz>

> ---
>  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;
> 



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

* Re: [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
  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
  2 siblings, 0 replies; 5+ messages in thread
From: David Rientjes @ 2020-01-13 21:03 UTC (permalink / raw)
  To: Wei Yang; +Cc: akpm, linux-mm, linux-kernel

On Mon, 13 Jan 2020, 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>

Acked-by: David Rientjes <rientjes@google.com>


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

* Re: [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
  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
  2 siblings, 1 reply; 5+ messages in thread
From: Ralph Campbell @ 2020-01-14 19:07 UTC (permalink / raw)
  To: Wei Yang, akpm; +Cc: linux-mm, linux-kernel


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


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

* Re: [PATCH] mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
  2020-01-14 19:07 ` Ralph Campbell
@ 2020-01-15  1:52   ` Wei Yang
  0 siblings, 0 replies; 5+ messages in thread
From: Wei Yang @ 2020-01-15  1:52 UTC (permalink / raw)
  To: Ralph Campbell; +Cc: Wei Yang, akpm, linux-mm, linux-kernel

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


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

end of thread, other threads:[~2020-01-15  1:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 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).