diff options
| author | Christoph Lameter <clameter@engr.sgi.com> | 2006-01-06 03:11:19 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:28 -0500 |
| commit | 070f80326a215d8e6c4fd6f175e28eb446c492bc (patch) | |
| tree | e759fa446e9ad101bc2c7f77979fc5a5514aff70 | |
| parent | 02a68a5ebc7dd823da7496116f42290103e1e4a9 (diff) | |
[PATCH] build_zonelists_node(): rename args
Give j and r meaningful names.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | mm/page_alloc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index ca978992c898..7f580779abdb 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
| @@ -1460,25 +1460,25 @@ void show_free_areas(void) | |||
| 1460 | * Add all populated zones of a node to the zonelist. | 1460 | * Add all populated zones of a node to the zonelist. |
| 1461 | */ | 1461 | */ |
| 1462 | static int __init build_zonelists_node(pg_data_t *pgdat, | 1462 | static int __init build_zonelists_node(pg_data_t *pgdat, |
| 1463 | struct zonelist *zonelist, int j, int k) | 1463 | struct zonelist *zonelist, int nr_zones, int zone_type) |
| 1464 | { | 1464 | { |
| 1465 | struct zone *zone; | 1465 | struct zone *zone; |
| 1466 | 1466 | ||
| 1467 | BUG_ON(k > ZONE_HIGHMEM); | 1467 | BUG_ON(zone_type > ZONE_HIGHMEM); |
| 1468 | 1468 | ||
| 1469 | do { | 1469 | do { |
| 1470 | zone = pgdat->node_zones + k; | 1470 | zone = pgdat->node_zones + zone_type; |
| 1471 | if (populated_zone(zone)) { | 1471 | if (populated_zone(zone)) { |
| 1472 | #ifndef CONFIG_HIGHMEM | 1472 | #ifndef CONFIG_HIGHMEM |
| 1473 | BUG_ON(k > ZONE_NORMAL); | 1473 | BUG_ON(zone_type > ZONE_NORMAL); |
| 1474 | #endif | 1474 | #endif |
| 1475 | zonelist->zones[j++] = zone; | 1475 | zonelist->zones[nr_zones++] = zone; |
| 1476 | check_highest_zone(k); | 1476 | check_highest_zone(zone_type); |
| 1477 | } | 1477 | } |
| 1478 | k--; | 1478 | zone_type--; |
| 1479 | 1479 | ||
| 1480 | } while (k >= 0); | 1480 | } while (zone_type >= 0); |
| 1481 | return j; | 1481 | return nr_zones; |
| 1482 | } | 1482 | } |
| 1483 | 1483 | ||
| 1484 | static inline int highest_zone(int zone_bits) | 1484 | static inline int highest_zone(int zone_bits) |
