linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mm/compaction: __compact_pgdat() code cleanuup
@ 2015-11-25  5:26 Joonsoo Kim
  2015-11-25 10:45 ` David Rientjes
  0 siblings, 1 reply; 3+ messages in thread
From: Joonsoo Kim @ 2015-11-25  5:26 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Vlastimil Babka, Mel Gorman, Yaowei Bai, linux-kernel, linux-mm,
	Joonsoo Kim

This patch uses is_via_compact_memory() to distinguish direct compaction.
And it also reduces indentation on compaction_defer_reset
by filtering failure case. There is no functional change.

Acked-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
---
 mm/compaction.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/mm/compaction.c b/mm/compaction.c
index de3e1e7..01b1e5e 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -1658,14 +1658,15 @@ static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
 				!compaction_deferred(zone, cc->order))
 			compact_zone(zone, cc);
 
-		if (cc->order > 0) {
-			if (zone_watermark_ok(zone, cc->order,
-						low_wmark_pages(zone), 0, 0))
-				compaction_defer_reset(zone, cc->order, false);
-		}
-
 		VM_BUG_ON(!list_empty(&cc->freepages));
 		VM_BUG_ON(!list_empty(&cc->migratepages));
+
+		if (is_via_compact_memory(cc->order))
+			continue;
+
+		if (zone_watermark_ok(zone, cc->order,
+				low_wmark_pages(zone), 0, 0))
+			compaction_defer_reset(zone, cc->order, false);
 	}
 }
 
-- 
1.9.1

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH v2] mm/compaction: __compact_pgdat() code cleanuup
  2015-11-25  5:26 [PATCH v2] mm/compaction: __compact_pgdat() code cleanuup Joonsoo Kim
@ 2015-11-25 10:45 ` David Rientjes
  2015-11-26  1:59   ` Joonsoo Kim
  0 siblings, 1 reply; 3+ messages in thread
From: David Rientjes @ 2015-11-25 10:45 UTC (permalink / raw)
  To: Joonsoo Kim
  Cc: Andrew Morton, Vlastimil Babka, Mel Gorman, Yaowei Bai,
	linux-kernel, linux-mm, Joonsoo Kim

On Wed, 25 Nov 2015, Joonsoo Kim wrote:

> This patch uses is_via_compact_memory() to distinguish direct compaction.

When I think of "direct compaction", I think of compaction triggered for 
high-order allocations from the page allocator before direct reclaim.  
This is the opposite of being triggered for is_via_compact_memory().

> And it also reduces indentation on compaction_defer_reset
> by filtering failure case. There is no functional change.
> 
> Acked-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
>  mm/compaction.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/mm/compaction.c b/mm/compaction.c
> index de3e1e7..01b1e5e 100644
> --- a/mm/compaction.c
> +++ b/mm/compaction.c
> @@ -1658,14 +1658,15 @@ static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
>  				!compaction_deferred(zone, cc->order))
>  			compact_zone(zone, cc);
>  
> -		if (cc->order > 0) {
> -			if (zone_watermark_ok(zone, cc->order,
> -						low_wmark_pages(zone), 0, 0))
> -				compaction_defer_reset(zone, cc->order, false);
> -		}
> -
>  		VM_BUG_ON(!list_empty(&cc->freepages));
>  		VM_BUG_ON(!list_empty(&cc->migratepages));
> +
> +		if (is_via_compact_memory(cc->order))
> +			continue;

This will be the third call to is_via_compact_memory() in this function.  
Maybe just do

	const bool sysctl = is_via_compact_memory(cc->order);

early in the function since it won't change during the iteration?  (And 
maybe get rid of that extra newline that already exists at the beginning 
of the iteration?

Otherwise:

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

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH v2] mm/compaction: __compact_pgdat() code cleanuup
  2015-11-25 10:45 ` David Rientjes
@ 2015-11-26  1:59   ` Joonsoo Kim
  0 siblings, 0 replies; 3+ messages in thread
From: Joonsoo Kim @ 2015-11-26  1:59 UTC (permalink / raw)
  To: David Rientjes
  Cc: Andrew Morton, Vlastimil Babka, Mel Gorman, Yaowei Bai,
	linux-kernel, linux-mm

On Wed, Nov 25, 2015 at 02:45:15AM -0800, David Rientjes wrote:
> On Wed, 25 Nov 2015, Joonsoo Kim wrote:
> 
> > This patch uses is_via_compact_memory() to distinguish direct compaction.
> 
> When I think of "direct compaction", I think of compaction triggered for 
> high-order allocations from the page allocator before direct reclaim.  
> This is the opposite of being triggered for is_via_compact_memory().

Okay. Will change it.

> 
> > And it also reduces indentation on compaction_defer_reset
> > by filtering failure case. There is no functional change.
> > 
> > Acked-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
> > Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> > ---
> >  mm/compaction.c | 13 +++++++------
> >  1 file changed, 7 insertions(+), 6 deletions(-)
> > 
> > diff --git a/mm/compaction.c b/mm/compaction.c
> > index de3e1e7..01b1e5e 100644
> > --- a/mm/compaction.c
> > +++ b/mm/compaction.c
> > @@ -1658,14 +1658,15 @@ static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
> >  				!compaction_deferred(zone, cc->order))
> >  			compact_zone(zone, cc);
> >  
> > -		if (cc->order > 0) {
> > -			if (zone_watermark_ok(zone, cc->order,
> > -						low_wmark_pages(zone), 0, 0))
> > -				compaction_defer_reset(zone, cc->order, false);
> > -		}
> > -
> >  		VM_BUG_ON(!list_empty(&cc->freepages));
> >  		VM_BUG_ON(!list_empty(&cc->migratepages));
> > +
> > +		if (is_via_compact_memory(cc->order))
> > +			continue;
> 
> This will be the third call to is_via_compact_memory() in this function.  
> Maybe just do
> 
> 	const bool sysctl = is_via_compact_memory(cc->order);
> 
> early in the function since it won't change during the iteration?  (And 
> maybe get rid of that extra newline that already exists at the beginning 
> of the iteration?

I don't it's better. is_via_compact_memory() already express it's
meaning perfectly and no overhead here. Introducing extra variable
would confuse reader more than commonly used is_via_compact_memory().

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

Thanks.


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2015-11-26  1:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-25  5:26 [PATCH v2] mm/compaction: __compact_pgdat() code cleanuup Joonsoo Kim
2015-11-25 10:45 ` David Rientjes
2015-11-26  1:59   ` Joonsoo Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox