From: Philippe Mathieu-Daudé Date: Mon, 30 Sep 2024 10:33:28 +0000 (+0200) Subject: hw/core/machine: Add missing 'units.h' and 'error-report.h' headers X-Git-Tag: v9.2.0-rc0~10^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e64c8ef8c15e459ef2423bc0214537bbca6c50f;p=thirdparty%2Fqemu.git hw/core/machine: Add missing 'units.h' and 'error-report.h' headers Include the missing "qemu/units.h" to fix when refactoring code: ../hw/core/machine.c:743:34: error: use of undeclared identifier 'MiB' 743 | mc->default_ram_size = 128 * MiB; | ^ ../hw/core/machine.c:750:44: error: use of undeclared identifier 'TiB' 750 | mc->smbios_memory_device_size = 2047 * TiB; | ^ and "qemu/error-report.h" to fix: ../hw/core/machine.c:1029:13: error: call to undeclared function 'error_report' [-Wimplicit-function-declaration] 1029 | error_report("NUMA node %" PRIu16 " is missing, use " | ^ ../hw/core/machine.c:1240:9: error: call to undeclared function 'warn_report' [-Wimplicit-function-declaration] 1240 | warn_report("CPU model %s is deprecated -- %s", | ^ Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Zhao Liu Message-Id: <20240930221900.59525-2-philmd@linaro.org> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/hw/core/machine.c b/hw/core/machine.c index 901c64b042d..fd3716b7dfd 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -11,10 +11,12 @@ */ #include "qemu/osdep.h" +#include "qemu/units.h" #include "qemu/accel.h" #include "sysemu/replay.h" #include "hw/boards.h" #include "hw/loader.h" +#include "qemu/error-report.h" #include "qapi/error.h" #include "qapi/qapi-visit-machine.h" #include "qemu/madvise.h"