Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186215
b: refs/heads/master
c: 72f0ba0
h: refs/heads/master
i:
  186213: 72c96e6
  186211: f2d58a1
  186207: efec01c
v: v3
  • Loading branch information
David Rientjes authored and Linus Torvalds committed Mar 6, 2010
1 parent 7488bbb commit 070807d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 452aa6999e6703ffbddd7f6ea124d3968915f3e3
refs/heads/master: 72f0ba0252e7177965255ed2c663be126b6b5f91
8 changes: 6 additions & 2 deletions trunk/mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -4392,8 +4392,12 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
for (i = 0; i < MAX_NR_ZONES; i++) {
if (i == ZONE_MOVABLE)
continue;
printk(" %-8s %0#10lx -> %0#10lx\n",
zone_names[i],
printk(" %-8s ", zone_names[i]);
if (arch_zone_lowest_possible_pfn[i] ==
arch_zone_highest_possible_pfn[i])
printk("empty\n");
else
printk("%0#10lx -> %0#10lx\n",
arch_zone_lowest_possible_pfn[i],
arch_zone_highest_possible_pfn[i]);
}
Expand Down

0 comments on commit 070807d

Please sign in to comment.