Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1718908 > unrolled thread
| Started by | js1304@gmail.com |
|---|---|
| First post | 2017-08-24 09:30 +0200 |
| Last post | 2017-08-25 10:50 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] mm/mlock: use page_zone() instead of page_zone_id() js1304@gmail.com - 2017-08-24 09:30 +0200
Re: [PATCH] mm/mlock: use page_zone() instead of page_zone_id() Vlastimil Babka <vbabka@suse.cz> - 2017-08-24 13:10 +0200
Re: [PATCH] mm/mlock: use page_zone() instead of page_zone_id() Joonsoo Kim <iamjoonsoo.kim@lge.com> - 2017-08-25 02:00 +0200
Re: [PATCH] mm/mlock: use page_zone() instead of page_zone_id() Vlastimil Babka <vbabka@suse.cz> - 2017-08-25 10:50 +0200
| From | js1304@gmail.com |
|---|---|
| Date | 2017-08-24 09:30 +0200 |
| Subject | [PATCH] mm/mlock: use page_zone() instead of page_zone_id() |
| Message-ID | <uhUKv-3oy-33@gated-at.bofh.it> |
From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
page_zone_id() is a specialized function to compare the zone for the pages
that are within the section range. If the section of the pages are
different, page_zone_id() can be different even if their zone is the same.
This wrong usage doesn't cause any actual problem since
__munlock_pagevec_fill() would be called again with failed index. However,
it's better to use more appropriate function here.
This patch is also preparation for futher change about page_zone_id().
Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
---
mm/mlock.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/mm/mlock.c b/mm/mlock.c
index b562b55..dfc6f19 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -365,8 +365,8 @@ static void __munlock_pagevec(struct pagevec *pvec, struct zone *zone)
* @start + PAGE_SIZE when no page could be added by the pte walk.
*/
static unsigned long __munlock_pagevec_fill(struct pagevec *pvec,
- struct vm_area_struct *vma, int zoneid, unsigned long start,
- unsigned long end)
+ struct vm_area_struct *vma, struct zone *zone,
+ unsigned long start, unsigned long end)
{
pte_t *pte;
spinlock_t *ptl;
@@ -394,7 +394,7 @@ static unsigned long __munlock_pagevec_fill(struct pagevec *pvec,
* Break if page could not be obtained or the page's node+zone does not
* match
*/
- if (!page || page_zone_id(page) != zoneid)
+ if (!page || page_zone(page) != zone)
break;
/*
@@ -446,7 +446,6 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
unsigned long page_increm;
struct pagevec pvec;
struct zone *zone;
- int zoneid;
pagevec_init(&pvec, 0);
/*
@@ -481,7 +480,6 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
*/
pagevec_add(&pvec, page);
zone = page_zone(page);
- zoneid = page_zone_id(page);
/*
* Try to fill the rest of pagevec using fast
@@ -490,7 +488,7 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
* pagevec.
*/
start = __munlock_pagevec_fill(&pvec, vma,
- zoneid, start, end);
+ zone, start, end);
__munlock_pagevec(&pvec, zone);
goto next;
}
--
2.7.4
[toc] | [next] | [standalone]
| From | Vlastimil Babka <vbabka@suse.cz> |
|---|---|
| Date | 2017-08-24 13:10 +0200 |
| Message-ID | <uhYbn-5DS-3@gated-at.bofh.it> |
| In reply to | #1718908 |
+CC Mel
On 08/24/2017 09:20 AM, js1304@gmail.com wrote:
> From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
>
> page_zone_id() is a specialized function to compare the zone for the pages
> that are within the section range. If the section of the pages are
> different, page_zone_id() can be different even if their zone is the same.
> This wrong usage doesn't cause any actual problem since
> __munlock_pagevec_fill() would be called again with failed index. However,
> it's better to use more appropriate function here.
Hmm using zone id was part of the series making munlock faster. Too bad
it's doing the wrong thing on some memory models. Looks like it wasn't
evaluated in isolation, but only as part of the pagevec usage (commit
7a8010cd36273) but most likely it wasn't contributing too much to the
14% speedup.
> This patch is also preparation for futher change about page_zone_id().
Out of curiosity, what kind of change?
Vlastimil
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
> mm/mlock.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/mm/mlock.c b/mm/mlock.c
> index b562b55..dfc6f19 100644
> --- a/mm/mlock.c
> +++ b/mm/mlock.c
> @@ -365,8 +365,8 @@ static void __munlock_pagevec(struct pagevec *pvec, struct zone *zone)
> * @start + PAGE_SIZE when no page could be added by the pte walk.
> */
> static unsigned long __munlock_pagevec_fill(struct pagevec *pvec,
> - struct vm_area_struct *vma, int zoneid, unsigned long start,
> - unsigned long end)
> + struct vm_area_struct *vma, struct zone *zone,
> + unsigned long start, unsigned long end)
> {
> pte_t *pte;
> spinlock_t *ptl;
> @@ -394,7 +394,7 @@ static unsigned long __munlock_pagevec_fill(struct pagevec *pvec,
> * Break if page could not be obtained or the page's node+zone does not
> * match
> */
> - if (!page || page_zone_id(page) != zoneid)
> + if (!page || page_zone(page) != zone)
> break;
>
> /*
> @@ -446,7 +446,6 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
> unsigned long page_increm;
> struct pagevec pvec;
> struct zone *zone;
> - int zoneid;
>
> pagevec_init(&pvec, 0);
> /*
> @@ -481,7 +480,6 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
> */
> pagevec_add(&pvec, page);
> zone = page_zone(page);
> - zoneid = page_zone_id(page);
>
> /*
> * Try to fill the rest of pagevec using fast
> @@ -490,7 +488,7 @@ void munlock_vma_pages_range(struct vm_area_struct *vma,
> * pagevec.
> */
> start = __munlock_pagevec_fill(&pvec, vma,
> - zoneid, start, end);
> + zone, start, end);
> __munlock_pagevec(&pvec, zone);
> goto next;
> }
>
[toc] | [prev] | [next] | [standalone]
| From | Joonsoo Kim <iamjoonsoo.kim@lge.com> |
|---|---|
| Date | 2017-08-25 02:00 +0200 |
| Message-ID | <uiacx-4T8-15@gated-at.bofh.it> |
| In reply to | #1719157 |
On Thu, Aug 24, 2017 at 01:05:15PM +0200, Vlastimil Babka wrote: > +CC Mel > > On 08/24/2017 09:20 AM, js1304@gmail.com wrote: > > From: Joonsoo Kim <iamjoonsoo.kim@lge.com> > > > > page_zone_id() is a specialized function to compare the zone for the pages > > that are within the section range. If the section of the pages are > > different, page_zone_id() can be different even if their zone is the same. > > This wrong usage doesn't cause any actual problem since > > __munlock_pagevec_fill() would be called again with failed index. However, > > it's better to use more appropriate function here. > > Hmm using zone id was part of the series making munlock faster. Too bad > it's doing the wrong thing on some memory models. Looks like it wasn't > evaluated in isolation, but only as part of the pagevec usage (commit > 7a8010cd36273) but most likely it wasn't contributing too much to the > 14% speedup. I roughly checked that patch and it seems that performance improvement of that commit isn't related to page_zone_id() usage. With page_zone(), we would have more chance that do a job as a batch. > > > This patch is also preparation for futher change about page_zone_id(). > > Out of curiosity, what kind of change? > I prepared one more patch that prevent another user of page_zone_id() since it is too tricky. However, I don't submit it. That description should be removed. :/ Thanks.
[toc] | [prev] | [next] | [standalone]
| From | Vlastimil Babka <vbabka@suse.cz> |
|---|---|
| Date | 2017-08-25 10:50 +0200 |
| Message-ID | <uiitr-1L5-9@gated-at.bofh.it> |
| In reply to | #1719652 |
On 08/25/2017 01:59 AM, Joonsoo Kim wrote: > On Thu, Aug 24, 2017 at 01:05:15PM +0200, Vlastimil Babka wrote: >> +CC Mel >> >> On 08/24/2017 09:20 AM, js1304@gmail.com wrote: >>> From: Joonsoo Kim <iamjoonsoo.kim@lge.com> >>> >>> page_zone_id() is a specialized function to compare the zone for the pages >>> that are within the section range. If the section of the pages are >>> different, page_zone_id() can be different even if their zone is the same. >>> This wrong usage doesn't cause any actual problem since >>> __munlock_pagevec_fill() would be called again with failed index. However, >>> it's better to use more appropriate function here. >> >> Hmm using zone id was part of the series making munlock faster. Too bad >> it's doing the wrong thing on some memory models. Looks like it wasn't >> evaluated in isolation, but only as part of the pagevec usage (commit >> 7a8010cd36273) but most likely it wasn't contributing too much to the >> 14% speedup. > > I roughly checked that patch and it seems that performance improvement > of that commit isn't related to page_zone_id() usage. With > page_zone(), we would have more chance that do a job as a batch. > >> >>> This patch is also preparation for futher change about page_zone_id(). >> >> Out of curiosity, what kind of change? >> > > I prepared one more patch that prevent another user of page_zone_id() > since it is too tricky. However, I don't submit it. That description > should be removed. :/ OK. You can add Acked-by: Vlastimil Babka <vbabka@suse.cz> > Thanks. >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web