aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64/mm/init.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2006-06-22 00:00:00 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-06-23 23:15:19 -0700
commit486ad10a7e1b2bb61ea9e48c4d9510f50cd74fc5 (patch)
treeeac1b6fe80626767f7bea620b9e06aedc6600b95 /arch/sparc64/mm/init.c
parent[SPARC64]: Convert cpu_find_by_*() interface to in-kernel PROM device tree. (diff)
downloadlinux-dev-486ad10a7e1b2bb61ea9e48c4d9510f50cd74fc5.tar.xz
linux-dev-486ad10a7e1b2bb61ea9e48c4d9510f50cd74fc5.zip
[SPARC64]: Minor bug fix to obp_read_memory().
If we end up zero'ing out the size of one of the entries, pop it out of the array completely because some code that examines these things cannot handle a zero length element properly. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/mm/init.c')
-rw-r--r--arch/sparc64/mm/init.c21
1 files changed, 19 insertions, 2 deletions
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c
index 45a70d677d8b..9d2b0da590af 100644
--- a/arch/sparc64/mm/init.c
+++ b/arch/sparc64/mm/init.c
@@ -102,8 +102,6 @@ static void __init read_obp_memory(const char *property,
prom_halt();
}
- *num_ents = ents;
-
/* Sanitize what we got from the firmware, by page aligning
* everything.
*/
@@ -125,6 +123,25 @@ static void __init read_obp_memory(const char *property,
regs[i].phys_addr = base;
regs[i].reg_size = size;
}
+
+ for (i = 0; i < ents; i++) {
+ if (regs[i].reg_size == 0UL) {
+ int j;
+
+ for (j = i; j < ents - 1; j++) {
+ regs[j].phys_addr =
+ regs[j+1].phys_addr;
+ regs[j].reg_size =
+ regs[j+1].reg_size;
+ }
+
+ ents--;
+ i--;
+ }
+ }
+
+ *num_ents = ents;
+
sort(regs, ents, sizeof(struct linux_prom64_registers),
cmp_p64, NULL);
}