Skip to content

Commit

Permalink
[PATCH] mm: simplify build_zonelists_node by removing the case statem…
Browse files Browse the repository at this point in the history
…ent.

Simplify build_zonelists_node by removing the case statement.

Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Christoph Lameter authored and Linus Torvalds committed Jan 6, 2006
1 parent f3fe651 commit 1a93205
Showing 1 changed file with 11 additions and 23 deletions.
34 changes: 11 additions & 23 deletions mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1455,35 +1455,23 @@ void show_free_areas(void)

/*
* Builds allocation fallback zone lists.
*
* Add all populated zones of a node to the zonelist.
*/
static int __init build_zonelists_node(pg_data_t *pgdat, struct zonelist *zonelist, int j, int k)
{
switch (k) {
struct zone *zone;
default:
BUG();
case ZONE_HIGHMEM:
zone = pgdat->node_zones + ZONE_HIGHMEM;
if (zone->present_pages) {
static int __init build_zonelists_node(pg_data_t *pgdat,
struct zonelist *zonelist, int j, int k)
{
struct zone *zone;

BUG_ON(k > ZONE_HIGHMEM);
for (zone = pgdat->node_zones + k; zone >= pgdat->node_zones; zone--) {
if (populated_zone(zone)) {
#ifndef CONFIG_HIGHMEM
BUG();
BUG_ON(zone - pgdat->node_zones > ZONE_NORMAL);
#endif
zonelist->zones[j++] = zone;
}
case ZONE_NORMAL:
zone = pgdat->node_zones + ZONE_NORMAL;
if (zone->present_pages)
zonelist->zones[j++] = zone;
case ZONE_DMA32:
zone = pgdat->node_zones + ZONE_DMA32;
if (zone->present_pages)
zonelist->zones[j++] = zone;
case ZONE_DMA:
zone = pgdat->node_zones + ZONE_DMA;
if (zone->present_pages)
zonelist->zones[j++] = zone;
}

return j;
}

Expand Down

0 comments on commit 1a93205

Please sign in to comment.