]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
mm: page_alloc: Make paranoid check in move_freepages a VM_BUG_ON
authorMel Gorman <mgorman@suse.de>
Thu, 9 Oct 2014 22:28:28 +0000 (15:28 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 10 Oct 2014 02:25:58 +0000 (22:25 -0400)
commit97ee4ba7cbd30f1858f0d16911e042737c53f2ef
treeac1ebf4b9622c2ae3cdd3010945c73b8147761e3
parentb246d3d11e9c04f76a4fd6aae9c61da82bba0afb
mm: page_alloc: Make paranoid check in move_freepages a VM_BUG_ON

Since 2.6.24 there has been a paranoid check in move_freepages that looks
up the zone of two pages.  This is a very slow path and the only time I've
seen this bug trigger recently is when memory initialisation was broken
during patch development.  Despite the fact it's a slow path, this patch
converts the check to a VM_BUG_ON anyway as it has served its purpose by
now.

Signed-off-by: Mel Gorman <mgorman@suse.de>
Acked-by: David Rientjes <rientjes@google.com>
Acked-by: Rik van Riel <riel@redhat.com>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/page_alloc.c