]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mm: compaction: do not accidentally skip pageblocks in the migrate scanner
authorMel Gorman <mgorman@suse.de>
Wed, 20 Feb 2013 02:14:03 +0000 (13:14 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 20 Feb 2013 05:52:22 +0000 (16:52 +1100)
commit90e6cd7931101aa3b79873386a77fb7483ac096b
treeb6d9500b5da1f58c96a6cce65b85f32ebf0ef155
parentfe1a558f835b64fd398308e3c22a8526af4e8a43
mm: compaction: do not accidentally skip pageblocks in the migrate scanner

Compaction uses the ALIGN macro incorrectly with the migrate scanner by
adding pageblock_nr_pages to a PFN.  It happened to work when initially
implemented as the starting PFN was also aligned but with caching restarts
and isolating in smaller chunks this is no longer always true.

The impact is that the migrate scanner scans outside its current
pageblock.  As pfn_valid() is still checked properly it does not cause any
failure and the impact of the bug is that in some cases it will scan more
than necessary when it crosses a page boundary but by no more than
COMPACT_CLUSTER_MAX.  It is highly unlikely this is even measurable but
it's still wrong so this patch addresses the problem.

Signed-off-by: Mel Gorman <mgorman@suse.de>
Reviewed-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/compaction.c