From: Jiaxun Yang Date: Tue, 30 Nov 2021 21:17:29 +0000 (+0000) Subject: hw/mips/boston: Fix load_elf() error detection X-Git-Tag: v6.2.0-rc4~4^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d77c462bf25001cc2ae03824a547ed761cd0c5bc;p=thirdparty%2Fqemu.git hw/mips/boston: Fix load_elf() error detection load_elf() gives negative return in case of error, not zero. Fixes: 10e3f30ff73 ("hw/mips/boston: Allow loading elf kernel and dtb") Signed-off-by: Jiaxun Yang Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20211130211729.7116-3-jiaxun.yang@flygoat.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/hw/mips/boston.c b/hw/mips/boston.c index 0e3cca55118..59ca08b93a9 100644 --- a/hw/mips/boston.c +++ b/hw/mips/boston.c @@ -777,14 +777,15 @@ static void boston_mach_init(MachineState *machine) exit(1); } } else if (machine->kernel_filename) { - uint64_t kernel_entry, kernel_high, kernel_size; + uint64_t kernel_entry, kernel_high; + ssize_t kernel_size; kernel_size = load_elf(machine->kernel_filename, NULL, cpu_mips_kseg0_to_phys, NULL, &kernel_entry, NULL, &kernel_high, NULL, 0, EM_MIPS, 1, 0); - if (kernel_size) { + if (kernel_size > 0) { int dt_size; g_autofree const void *dtb_file_data, *dtb_load_data; hwaddr dtb_paddr = QEMU_ALIGN_UP(kernel_high, 64 * KiB);