summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/fadump.c
diff options
context:
space:
mode:
authorSuzuki Poulose <suzuki@in.ibm.com>2012-08-21 01:42:33 +0000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2012-09-07 11:44:30 +1000
commita84fcd46870113e92523e1ebb9a0ec75f66e03a2 (patch)
tree9d0616762fbd33f0ac448a5303c134b87d1c1aa2 /arch/powerpc/kernel/fadump.c
parent0090e02b947c5de1cf978f52ac12c7b532e61154 (diff)
downloadlinux-a84fcd46870113e92523e1ebb9a0ec75f66e03a2.tar.gz
linux-a84fcd46870113e92523e1ebb9a0ec75f66e03a2.tar.bz2
linux-a84fcd46870113e92523e1ebb9a0ec75f66e03a2.zip
powerpc: Change memory_limit from phys_addr_t to unsigned long long
There are some device-tree nodes, whose values are of type phys_addr_t. The phys_addr_t is variable sized based on the CONFIG_PHSY_T_64BIT. Change these to a fixed unsigned long long for consistency. This patch does the change only for memory_limit. The following is a list of such variables which need the change: 1) kernel_end, crashk_size - in arch/powerpc/kernel/machine_kexec.c 2) (struct resource *)crashk_res.start - We could export a local static variable from machine_kexec.c. Changing the above values might break the kexec-tools. So, I will fix kexec-tools first to handle the different sized values and then change the above. Suggested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Suzuki K. Poulose <suzuki@in.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/fadump.c')
-rw-r--r--arch/powerpc/kernel/fadump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/fadump.c b/arch/powerpc/kernel/fadump.c
index 18bdf74fa164..06c8202a69cf 100644
--- a/arch/powerpc/kernel/fadump.c
+++ b/arch/powerpc/kernel/fadump.c
@@ -289,8 +289,7 @@ int __init fadump_reserve_mem(void)
else
memory_limit = memblock_end_of_DRAM();
printk(KERN_INFO "Adjusted memory_limit for firmware-assisted"
- " dump, now %#016llx\n",
- (unsigned long long)memory_limit);
+ " dump, now %#016llx\n", memory_limit);
}
if (memory_limit)
memory_boundary = memory_limit;