Message ID | 20180502044449.5825-1-joel@jms.id.au |
---|---|
State | Accepted |
Headers | show |
Series | init: Fix trailing bracket in "Starting kernel" | expand |
Joel Stanley <joel@jms.id.au> writes: > We were getting: > > [ 0.047155847,5] INIT: Starting kernel at 0x0, fdt at 0x30409d70 10390 bytes) > > Now it says: > > [ 0.048059045,5] INIT: Starting kernel at 0x0, fdt at 0x30409d80 10406 bytes > > Fixes: 293ca03683bf ("init: print the FDT blob size in decimal") > Signed-off-by: Joel Stanley <joel@jms.id.au> thank you for this critical bug fix. Merged to master as of 1d724fa588bc5bd05eed92690f73653a49207fb6.
diff --git a/core/init.c b/core/init.c index 9df634c9dea1..3b887a24d11c 100644 --- a/core/init.c +++ b/core/init.c @@ -572,7 +572,7 @@ void __noreturn load_and_boot_kernel(bool is_reboot) prlog(PR_DEBUG, "INIT: stdout-path: %s\n", stdoutp ? stdoutp : ""); - printf("INIT: Starting kernel at 0x%llx, fdt at %p %u bytes)\n", + printf("INIT: Starting kernel at 0x%llx, fdt at %p %u bytes\n", kernel_entry, fdt, fdt_totalsize(fdt)); debug_descriptor.state_flags |= OPAL_BOOT_COMPLETE;
We were getting: [ 0.047155847,5] INIT: Starting kernel at 0x0, fdt at 0x30409d70 10390 bytes) Now it says: [ 0.048059045,5] INIT: Starting kernel at 0x0, fdt at 0x30409d80 10406 bytes Fixes: 293ca03683bf ("init: print the FDT blob size in decimal") Signed-off-by: Joel Stanley <joel@jms.id.au> --- core/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)