]> git.baikalelectronics.ru Git - kernel.git/commit
bootmem: micro optimize freeing pages in bulk
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 10 Jan 2012 23:08:00 +0000 (15:08 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Jan 2012 00:30:44 +0000 (16:30 -0800)
commit4807a3bffe628d4ca6de62abebae47976ed09666
tree6a426c81c23cc4e5e81388c52ff37ed33a1187ac
parent26f655511760b28be72268408bd9d55b65c96600
bootmem: micro optimize freeing pages in bulk

The first entry of bdata->node_bootmem_map holds the data for
bdata->node_min_pfn up to bdata->node_min_pfn + BITS_PER_LONG - 1.  So the
test for freeing all pages of a single map entry can be slightly relaxed.

Moreover use DIV_ROUND_UP in another place instead of open coding it.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Johannes Weiner <hannes@saeurebad.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/bootmem.c