]> git.baikalelectronics.ru Git - kernel.git/commit
mm, compaction: determine isolation mode only once
authorDavid Rientjes <rientjes@google.com>
Mon, 7 Apr 2014 22:37:34 +0000 (15:37 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 7 Apr 2014 23:35:55 +0000 (16:35 -0700)
commited0a4a20bb33763a5c0e8214d35ee6822224f7a8
tree573c8ad7aeeb67e0e368510b95ef1d660adec1d3
parent1a385d9afe98c15af32ef5da53a9c6680171aa66
mm, compaction: determine isolation mode only once

The conditions that control the isolation mode in
isolate_migratepages_range() do not change during the iteration, so
extract them out and only define the value once.

This actually does have an effect, gcc doesn't optimize it itself because
of cc->sync.

Signed-off-by: David Rientjes <rientjes@google.com>
Cc: Mel Gorman <mgorman@suse.de>
Acked-by: Rik van Riel <riel@redhat.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/compaction.c