Skip to content
Snippets Groups Projects
Commit e1dbeda6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

[PATCH] balance_pdgat() cleanup


Despaghettify balance_pdgat() a bit.

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cc102509
No related branches found
No related tags found
No related merge requests found
...@@ -1172,11 +1172,12 @@ loop_again: ...@@ -1172,11 +1172,12 @@ loop_again:
if (!zone_watermark_ok(zone, order, zone->pages_high, if (!zone_watermark_ok(zone, order, zone->pages_high,
0, 0)) { 0, 0)) {
end_zone = i; end_zone = i;
goto scan; break;
} }
} }
goto out; if (i < 0)
scan: goto out;
for (i = 0; i <= end_zone; i++) { for (i = 0; i <= end_zone; i++) {
struct zone *zone = pgdat->node_zones + i; struct zone *zone = pgdat->node_zones + i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment