linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]compaction: checks correct fragmentation index
@ 2011-06-07  8:36 Shaohua Li
  2011-06-07  9:32 ` Mel Gorman
  0 siblings, 1 reply; 2+ messages in thread
From: Shaohua Li @ 2011-06-07  8:36 UTC (permalink / raw)
  To: linux-mm; +Cc: Andrew Morton, mel

fragmentation_index() returns -1000 when the allocation might succeed
This doesn't match the comment and code in compaction_suitable(). I
thought compaction_suitable should return COMPACT_PARTIAL in -1000
case, because in this case allocation could succeed depending on
watermarks.

Signed-off-by: Shaohua Li <shaohua.li@intel.com>

diff --git a/mm/compaction.c b/mm/compaction.c
index 021a296..59b0c4b 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -480,7 +480,8 @@ unsigned long compaction_suitable(struct zone *zone, int order)
 	 * fragmentation index determines if allocation failures are due to
 	 * low memory or external fragmentation
 	 *
-	 * index of -1 implies allocations might succeed dependingon watermarks
+	 * index of -1000 implies allocations might succeed depending on
+	 * watermarks
 	 * index towards 0 implies failure is due to lack of memory
 	 * index towards 1000 implies failure is due to fragmentation
 	 *
@@ -490,7 +491,8 @@ unsigned long compaction_suitable(struct zone *zone, int order)
 	if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
 		return COMPACT_SKIPPED;
 
-	if (fragindex == -1 && zone_watermark_ok(zone, order, watermark, 0, 0))
+	if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark,
+	    0, 0))
 		return COMPACT_PARTIAL;
 
 	return COMPACT_CONTINUE;


--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH]compaction: checks correct fragmentation index
  2011-06-07  8:36 [PATCH]compaction: checks correct fragmentation index Shaohua Li
@ 2011-06-07  9:32 ` Mel Gorman
  0 siblings, 0 replies; 2+ messages in thread
From: Mel Gorman @ 2011-06-07  9:32 UTC (permalink / raw)
  To: Shaohua Li; +Cc: linux-mm, Andrew Morton

On Tue, Jun 07, 2011 at 04:36:41PM +0800, Shaohua Li wrote:
> fragmentation_index() returns -1000 when the allocation might succeed
> This doesn't match the comment and code in compaction_suitable(). I
> thought compaction_suitable should return COMPACT_PARTIAL in -1000
> case, because in this case allocation could succeed depending on
> watermarks.
> 
> Signed-off-by: Shaohua Li <shaohua.li@intel.com>

Well spotted. The impact of this is that compaction starts and
compact_finished() is called which rechecks the watermarks and the
free lists. It should have the same result in that compaction should
not start but is more expensive.

Acked-by: Mel Gorman <mel@csn.ul.ie>

-- 
Mel Gorman
SUSE Labs

--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2011-06-07  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-07  8:36 [PATCH]compaction: checks correct fragmentation index Shaohua Li
2011-06-07  9:32 ` Mel Gorman

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