aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/libfdt-wrapper.c
diff options
context:
space:
mode:
authorSebastian Siewior <bigeasy@linutronix.de>2008-11-01 10:00:56 +0000
committerPaul Mackerras <paulus@samba.org>2008-11-06 09:49:43 +1100
commit5b4d2189446fd31cd618bbd1c24566b8d0ab11c8 (patch)
tree4306cedd8875f48c95ae7224705128b56b86f466 /arch/powerpc/boot/libfdt-wrapper.c
parentpowerpc: Hugetlb pgtable cache access cleanup (diff)
downloadlinux-dev-5b4d2189446fd31cd618bbd1c24566b8d0ab11c8.tar.xz
linux-dev-5b4d2189446fd31cd618bbd1c24566b8d0ab11c8.zip
powerpc/boot: Allocate more memory for dtb
David Gibson suggested that since we are now unconditionally copying the dtb into a malloc()ed buffer, it would be sensible to add a little padding to the buffer at that point, so that further device tree manipulations won't need to reallocate it. This implements that suggestion. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/libfdt-wrapper.c')
-rw-r--r--arch/powerpc/boot/libfdt-wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/libfdt-wrapper.c b/arch/powerpc/boot/libfdt-wrapper.c
index 9276327bc2bb..bb8b9b3505ee 100644
--- a/arch/powerpc/boot/libfdt-wrapper.c
+++ b/arch/powerpc/boot/libfdt-wrapper.c
@@ -185,7 +185,7 @@ void fdt_init(void *blob)
/* Make sure the dt blob is the right version and so forth */
fdt = blob;
- bufsize = fdt_totalsize(fdt) + 4;
+ bufsize = fdt_totalsize(fdt) + EXPAND_GRANULARITY;
buf = malloc(bufsize);
if(!buf)
fatal("malloc failed. can't relocate the device tree\n\r");