Add #ifdef CONFIG_HMP around all hmp_* function implementations and their HMP-only helpers across subsystems.
This covers monitor_register_hmp* callers, hmp_info_* handlers, and HMP-only helper functions like slirp_lookup. Signed-off-by: Marc-André Lureau <[email protected]> --- accel/accel-system.c | 2 ++ accel/tcg/monitor.c | 2 ++ hw/i386/kvm/xen-stubs.c | 2 ++ hw/i386/kvm/xen_evtchn.c | 3 ++- hw/i386/sgx.c | 2 ++ hw/misc/mos6522-stub.c | 2 ++ hw/misc/mos6522.c | 2 ++ hw/pci/pci-stub.c | 2 ++ hw/s390x/s390-skeys.c | 2 ++ hw/s390x/s390-stattrib.c | 4 ++++ hw/uefi/ovmf-log.c | 2 ++ hw/usb/host-libusb.c | 6 ++++++ migration/dirtyrate.c | 2 ++ net/slirp.c | 7 ++++++- replay/replay-debugging.c | 8 ++++++++ replay/stubs-system.c | 6 ++++++ system/dirtylimit.c | 6 ++++++ system/qdev-monitor.c | 2 ++ target/i386/cpu-apic.c | 2 ++ target/i386/monitor.c | 3 +++ target/i386/sev.c | 2 ++ target/m68k/monitor.c | 2 ++ target/ppc/monitor.c | 2 ++ target/riscv/monitor.c | 3 +++ target/sh4/monitor.c | 2 ++ target/sparc/monitor.c | 2 ++ target/xtensa/monitor.c | 2 ++ 27 files changed, 80 insertions(+), 2 deletions(-) diff --git a/accel/accel-system.c b/accel/accel-system.c index 9176665202d..a8715924729 100644 --- a/accel/accel-system.c +++ b/accel/accel-system.c @@ -108,7 +108,9 @@ void accel_init_ops_interfaces(AccelClass *ac) static void accel_ops_class_init(ObjectClass *oc, const void *data) { +#ifdef CONFIG_HMP monitor_register_hmp_info_hrt("accel", qmp_x_accel_stats); +#endif } static const TypeInfo accel_ops_type_info = { diff --git a/accel/tcg/monitor.c b/accel/tcg/monitor.c index be5c1950177..c860744536b 100644 --- a/accel/tcg/monitor.c +++ b/accel/tcg/monitor.c @@ -29,9 +29,11 @@ HumanReadableText *qmp_x_query_jit(Error **errp) return human_readable_text_from_str(buf); } +#ifdef CONFIG_HMP static void hmp_tcg_register(void) { monitor_register_hmp_info_hrt("jit", qmp_x_query_jit); } type_init(hmp_tcg_register); +#endif diff --git a/hw/i386/kvm/xen-stubs.c b/hw/i386/kvm/xen-stubs.c index bf6ac28bef4..df36c84a4f4 100644 --- a/hw/i386/kvm/xen-stubs.c +++ b/hw/i386/kvm/xen-stubs.c @@ -40,6 +40,7 @@ void xen_primary_console_set_be_port(uint16_t port) { } +#ifdef CONFIG_HMP void hmp_xen_event_list(Monitor *mon, const QDict *qdict) { monitor_printf(mon, "XEN emulation is not available in this QEMU\n"); @@ -49,3 +50,4 @@ void hmp_xen_event_inject(Monitor *mon, const QDict *qdict) { monitor_printf(mon, "XEN emulation is not available in this QEMU\n"); } +#endif diff --git a/hw/i386/kvm/xen_evtchn.c b/hw/i386/kvm/xen_evtchn.c index 8b243984e41..cb7b4c7a81b 100644 --- a/hw/i386/kvm/xen_evtchn.c +++ b/hw/i386/kvm/xen_evtchn.c @@ -2344,6 +2344,7 @@ void qmp_xen_event_inject(uint32_t port, Error **errp) } } +#ifdef CONFIG_HMP void hmp_xen_event_list(Monitor *mon, const QDict *qdict) { EvtchnInfoList *iter, *info_list; @@ -2391,4 +2392,4 @@ void hmp_xen_event_inject(Monitor *mon, const QDict *qdict) monitor_printf(mon, "Delivered port %d\n", port); } } - +#endif diff --git a/hw/i386/sgx.c b/hw/i386/sgx.c index 7e4c509f5a4..4ac8ea75aa7 100644 --- a/hw/i386/sgx.c +++ b/hw/i386/sgx.c @@ -234,6 +234,7 @@ SgxInfo *qmp_query_sgx(Error **errp) return info; } +#ifdef CONFIG_HMP void hmp_info_sgx(Monitor *mon, const QDict *qdict) { Error *err = NULL; @@ -265,6 +266,7 @@ void hmp_info_sgx(Monitor *mon, const QDict *qdict) monitor_printf(mon, "total size=%" PRIu64 "\n", size); } +#endif bool check_sgx_support(void) { diff --git a/hw/misc/mos6522-stub.c b/hw/misc/mos6522-stub.c index 85eb0ee36ee..03fea6985a9 100644 --- a/hw/misc/mos6522-stub.c +++ b/hw/misc/mos6522-stub.c @@ -10,7 +10,9 @@ #include "monitor/monitor.h" #include "monitor/hmp.h" +#ifdef CONFIG_HMP void hmp_info_via(Monitor *mon, const QDict *qdict) { monitor_printf(mon, "MOS6522 VIA is not available in this QEMU\n"); } +#endif diff --git a/hw/misc/mos6522.c b/hw/misc/mos6522.c index bae766ef178..6be7ed3ff30 100644 --- a/hw/misc/mos6522.c +++ b/hw/misc/mos6522.c @@ -497,6 +497,7 @@ void mos6522_write(void *opaque, hwaddr addr, uint64_t val, unsigned size) } } +#ifdef CONFIG_HMP static int qmp_x_query_via_foreach(Object *obj, void *opaque) { GString *buf = opaque; @@ -596,6 +597,7 @@ void hmp_info_via(Monitor *mon, const QDict *qdict) } monitor_puts(mon, info->human_readable_text); } +#endif /* CONFIG_HMP */ static const MemoryRegionOps mos6522_ops = { .read = mos6522_read, diff --git a/hw/pci/pci-stub.c b/hw/pci/pci-stub.c index 3397d0c82ea..f217373ef03 100644 --- a/hw/pci/pci-stub.c +++ b/hw/pci/pci-stub.c @@ -34,6 +34,7 @@ PciInfoList *qmp_query_pci(Error **errp) return NULL; } +#ifdef CONFIG_HMP void hmp_info_pci(Monitor *mon, const QDict *qdict) { } @@ -42,6 +43,7 @@ void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict) { monitor_printf(mon, "PCI devices not supported\n"); } +#endif /* kvm-all wants this */ MSIMessage pci_get_msi_message(PCIDevice *dev, int vector) diff --git a/hw/s390x/s390-skeys.c b/hw/s390x/s390-skeys.c index 7dca67d6618..81885a1640c 100644 --- a/hw/s390x/s390-skeys.c +++ b/hw/s390x/s390-skeys.c @@ -104,6 +104,7 @@ static void write_keys(FILE *f, uint8_t *keys, uint64_t startgfn, } } +#ifdef CONFIG_HMP void hmp_info_skeys(Monitor *mon, const QDict *qdict) { S390SKeysState *ss = s390_get_skeys_device(); @@ -144,6 +145,7 @@ void hmp_dump_skeys(Monitor *mon, const QDict *qdict) error_report_err(err); } } +#endif void s390_qmp_dump_skeys(const char *filename, Error **errp) { diff --git a/hw/s390x/s390-stattrib.c b/hw/s390x/s390-stattrib.c index c334714b31a..2fdf70bf2ed 100644 --- a/hw/s390x/s390-stattrib.c +++ b/hw/s390x/s390-stattrib.c @@ -32,6 +32,7 @@ #define STATTR_FLAG_ERROR 0x04ULL #define STATTR_FLAG_DONE 0x08ULL +#ifdef CONFIG_HMP static S390StAttribState *s390_get_stattrib_device(void) { S390StAttribState *sas; @@ -40,6 +41,7 @@ static S390StAttribState *s390_get_stattrib_device(void) assert(sas); return sas; } +#endif void s390_stattrib_init(void) { @@ -59,6 +61,7 @@ void s390_stattrib_init(void) /* Console commands: */ +#ifdef CONFIG_HMP void hmp_migrationmode(Monitor *mon, const QDict *qdict) { S390StAttribState *sas = s390_get_stattrib_device(); @@ -110,6 +113,7 @@ void hmp_info_cmma(Monitor *mon, const QDict *qdict) out: g_free(vals); } +#endif /* Migration support: */ diff --git a/hw/uefi/ovmf-log.c b/hw/uefi/ovmf-log.c index 3a24afd9417..395a2d10a37 100644 --- a/hw/uefi/ovmf-log.c +++ b/hw/uefi/ovmf-log.c @@ -256,6 +256,7 @@ FirmwareLog *qmp_query_firmware_log(bool have_max_size, uint64_t max_size, return ret; } +#ifdef CONFIG_HMP void hmp_info_firmware_log(Monitor *mon, const QDict *qdict) { g_autofree gchar *log_esc = NULL; @@ -284,3 +285,4 @@ void hmp_info_firmware_log(Monitor *mon, const QDict *qdict) log_esc = g_strescape((gchar *)log_out, "\r\n"); monitor_printf(mon, "%s\n", log_esc); } +#endif diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c index b9f3ad3f66d..121fd817e82 100644 --- a/hw/usb/host-libusb.c +++ b/hw/usb/host-libusb.c @@ -183,6 +183,7 @@ static void usb_host_attach_kernel(USBHostDevice *s); # define HAVE_SUPER_PLUS 1 #endif +#ifdef CONFIG_HMP static const char *speed_name[] = { [LIBUSB_SPEED_UNKNOWN] = "?", [LIBUSB_SPEED_LOW] = "1.5", @@ -193,6 +194,7 @@ static const char *speed_name[] = { [LIBUSB_SPEED_SUPER_PLUS] = "5000+", #endif }; +#endif static const unsigned int speed_map[] = { [LIBUSB_SPEED_LOW] = USB_SPEED_LOW, @@ -1814,7 +1816,9 @@ module_kconfig(USB); static void usb_host_register_types(void) { type_register_static(&usb_host_dev_info); +#ifdef CONFIG_HMP monitor_register_hmp("usbhost", true, hmp_info_usbhost); +#endif } type_init(usb_host_register_types) @@ -1919,6 +1923,7 @@ static void usb_host_auto_check(void *unused) timer_mod(usb_auto_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 2000); } +#ifdef CONFIG_HMP void hmp_info_usbhost(Monitor *mon, const QDict *qdict) { libusb_device **devs = NULL; @@ -1962,3 +1967,4 @@ void hmp_info_usbhost(Monitor *mon, const QDict *qdict) } libusb_free_device_list(devs, 1); } +#endif diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c index b360f49efea..8808f20f1b9 100644 --- a/migration/dirtyrate.c +++ b/migration/dirtyrate.c @@ -856,6 +856,7 @@ struct DirtyRateInfo *qmp_query_dirty_rate(bool has_calc_time_unit, has_calc_time_unit ? calc_time_unit : TIME_UNIT_SECOND); } +#ifdef CONFIG_HMP void hmp_info_dirty_rate(Monitor *mon, const QDict *qdict) { DirtyRateInfo *info = query_dirty_rate_info(TIME_UNIT_SECOND); @@ -932,3 +933,4 @@ void hmp_calc_dirty_rate(Monitor *mon, const QDict *qdict) " seconds\n", sec); monitor_printf(mon, "[Please use 'info dirty_rate' to check results]\n"); } +#endif diff --git a/net/slirp.c b/net/slirp.c index d3ed5ec9cb8..0d41370e345 100644 --- a/net/slirp.c +++ b/net/slirp.c @@ -709,6 +709,7 @@ error: return -1; } +#ifdef CONFIG_HMP static SlirpState *slirp_lookup(Monitor *mon, const char *id) { if (id) { @@ -799,6 +800,7 @@ void hmp_hostfwd_remove(Monitor *mon, const QDict *qdict) fail_syntax: monitor_printf(mon, "invalid format\n"); } +#endif static int slirp_hostfwd(SlirpState *s, const char *redir_str, Error **errp) { @@ -955,6 +957,7 @@ static int slirp_hostfwd(SlirpState *s, const char *redir_str, Error **errp) return -1; } +#ifdef CONFIG_HMP void hmp_hostfwd_add(Monitor *mon, const QDict *qdict) { const char *redir_str; @@ -975,8 +978,8 @@ void hmp_hostfwd_add(Monitor *mon, const QDict *qdict) error_report_err(err); } } - } +#endif #if defined(CONFIG_SMBD_COMMAND) @@ -1222,6 +1225,7 @@ UsernetInfoList *qmp_x_query_usernet(Error **errp) return head; } +#ifdef CONFIG_HMP void hmp_info_usernet(Monitor *mon, const QDict *qdict) { g_autoptr(UsernetInfoList) list = NULL; @@ -1235,6 +1239,7 @@ void hmp_info_usernet(Monitor *mon, const QDict *qdict) ui->hub_name, ui->info); } } +#endif static void net_init_slirp_configs(const StringList *fwd, int flags) diff --git a/replay/replay-debugging.c b/replay/replay-debugging.c index 11053640021..1adf7422e36 100644 --- a/replay/replay-debugging.c +++ b/replay/replay-debugging.c @@ -31,6 +31,7 @@ bool replay_running_debug(void) return replay_is_debugging; } +#ifdef CONFIG_HMP void hmp_info_replay(Monitor *mon, const QDict *qdict) { if (replay_mode == REPLAY_MODE_NONE) { @@ -42,6 +43,7 @@ void hmp_info_replay(Monitor *mon, const QDict *qdict) replay_get_filename(), replay_get_current_icount()); } } +#endif ReplayInfo *qmp_query_replay(Error **errp) { @@ -103,6 +105,7 @@ void qmp_replay_break(int64_t icount, Error **errp) } } +#ifdef CONFIG_HMP void hmp_replay_break(Monitor *mon, const QDict *qdict) { int64_t icount = qdict_get_try_int(qdict, "icount", -1LL); @@ -114,6 +117,7 @@ void hmp_replay_break(Monitor *mon, const QDict *qdict) return; } } +#endif void qmp_replay_delete_break(Error **errp) { @@ -124,6 +128,7 @@ void qmp_replay_delete_break(Error **errp) } } +#ifdef CONFIG_HMP void hmp_replay_delete_break(Monitor *mon, const QDict *qdict) { Error *err = NULL; @@ -134,6 +139,7 @@ void hmp_replay_delete_break(Monitor *mon, const QDict *qdict) return; } } +#endif static char *replay_find_nearest_snapshot(int64_t icount, int64_t *snapshot_icount) @@ -208,6 +214,7 @@ void qmp_replay_seek(int64_t icount, Error **errp) replay_seek(icount, replay_stop_vm, errp); } +#ifdef CONFIG_HMP void hmp_replay_seek(Monitor *mon, const QDict *qdict) { int64_t icount = qdict_get_try_int(qdict, "icount", -1LL); @@ -219,6 +226,7 @@ void hmp_replay_seek(Monitor *mon, const QDict *qdict) return; } } +#endif static void replay_stop_vm_debug(void *opaque) { diff --git a/replay/stubs-system.c b/replay/stubs-system.c index b2c52bc4043..f253875bab4 100644 --- a/replay/stubs-system.c +++ b/replay/stubs-system.c @@ -63,22 +63,28 @@ void replay_vmstate_init(void) #include "qapi/error.h" #include "qemu/error-report.h" +#ifdef CONFIG_HMP void hmp_info_replay(Monitor *mon, const QDict *qdict) { error_report("replay support not available"); } + void hmp_replay_break(Monitor *mon, const QDict *qdict) { error_report("replay support not available"); } + void hmp_replay_delete_break(Monitor *mon, const QDict *qdict) { error_report("replay support not available"); } + void hmp_replay_seek(Monitor *mon, const QDict *qdict) { error_report("replay support not available"); } +#endif + ReplayInfo *qmp_query_replay(Error **errp) { error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND, diff --git a/system/dirtylimit.c b/system/dirtylimit.c index 50fa67f3d6a..8992c45a509 100644 --- a/system/dirtylimit.c +++ b/system/dirtylimit.c @@ -491,6 +491,7 @@ void qmp_cancel_vcpu_dirty_limit(bool has_cpu_index, dirtylimit_state_unlock(); } +#ifdef CONFIG_HMP void hmp_cancel_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) { int64_t cpu_index = qdict_get_try_int(qdict, "cpu_index", -1); @@ -505,6 +506,7 @@ void hmp_cancel_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) monitor_printf(mon, "[Please use 'info vcpu_dirty_limit' to query " "dirty limit for virtual CPU]\n"); } +#endif void qmp_set_vcpu_dirty_limit(bool has_cpu_index, int64_t cpu_index, @@ -548,6 +550,7 @@ void qmp_set_vcpu_dirty_limit(bool has_cpu_index, dirtylimit_state_unlock(); } +#ifdef CONFIG_HMP void hmp_set_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) { int64_t dirty_rate = qdict_get_int(qdict, "dirty_rate"); @@ -564,6 +567,7 @@ void hmp_set_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) out: hmp_handle_error(mon, err); } +#endif /* Return the max throttle time of each virtual CPU */ uint64_t dirtylimit_throttle_time_per_round(void) @@ -647,6 +651,7 @@ struct DirtyLimitInfoList *qmp_query_vcpu_dirty_limit(Error **errp) return dirtylimit_query_all(); } +#ifdef CONFIG_HMP void hmp_info_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) { DirtyLimitInfoList *info; @@ -672,3 +677,4 @@ void hmp_info_vcpu_dirty_limit(Monitor *mon, const QDict *qdict) info->value->current_rate); } } +#endif diff --git a/system/qdev-monitor.c b/system/qdev-monitor.c index 7ed2008d81f..86afb14a6dd 100644 --- a/system/qdev-monitor.c +++ b/system/qdev-monitor.c @@ -1003,6 +1003,7 @@ void qmp_device_sync_config(const char *id, Error **errp) qdev_sync_config(dev, errp); } +#ifdef CONFIG_HMP void hmp_device_add(Monitor *mon, const QDict *qdict) { Error *err = NULL; @@ -1045,6 +1046,7 @@ void hmp_device_del(Monitor *mon, const QDict *qdict) qmp_device_del(id, &err); hmp_handle_error(mon, err); } +#endif void device_add_completion(ReadLineState *rs, int nb_args, const char *str) { diff --git a/target/i386/cpu-apic.c b/target/i386/cpu-apic.c index 5599a4675c5..0ceb5536328 100644 --- a/target/i386/cpu-apic.c +++ b/target/i386/cpu-apic.c @@ -84,6 +84,7 @@ void x86_cpu_apic_realize(X86CPU *cpu, Error **errp) } } +#ifdef CONFIG_HMP void hmp_info_local_apic(Monitor *mon, const QDict *qdict) { CPUState *cs; @@ -106,3 +107,4 @@ void hmp_info_local_apic(Monitor *mon, const QDict *qdict) } x86_cpu_dump_local_apic_state(cs, CPU_DUMP_FPU); } +#endif diff --git a/target/i386/monitor.c b/target/i386/monitor.c index 785a13dd710..c9d1e2b14f2 100644 --- a/target/i386/monitor.c +++ b/target/i386/monitor.c @@ -31,6 +31,8 @@ #include "qapi/qapi-commands-misc.h" #include "system/memory.h" +#ifdef CONFIG_HMP + /* Perform linear address sign extension */ static hwaddr addr_canonical(CPUArchState *env, hwaddr addr) { @@ -593,3 +595,4 @@ void hmp_mce(Monitor *mon, const QDict *qdict) hmp_handle_error(mon, err); } } +#endif diff --git a/target/i386/sev.c b/target/i386/sev.c index b44b5a1c2b9..4d636c90ee0 100644 --- a/target/i386/sev.c +++ b/target/i386/sev.c @@ -758,6 +758,7 @@ SevInfo *qmp_query_sev(Error **errp) return info; } +#ifdef CONFIG_HMP void hmp_info_sev(Monitor *mon, const QDict *qdict) { SevInfo *info = sev_get_info(); @@ -791,6 +792,7 @@ void hmp_info_sev(Monitor *mon, const QDict *qdict) out: qapi_free_SevInfo(info); } +#endif static int sev_get_pdh_info(int fd, guchar **pdh, size_t *pdh_len, guchar **cert_chain, diff --git a/target/m68k/monitor.c b/target/m68k/monitor.c index 3e0df40a6b8..27f65d556e5 100644 --- a/target/m68k/monitor.c +++ b/target/m68k/monitor.c @@ -10,6 +10,7 @@ #include "monitor/hmp.h" #include "monitor/monitor.h" +#ifdef CONFIG_HMP void hmp_info_tlb(Monitor *mon, const QDict *qdict) { CPUArchState *env1 = mon_get_cpu_env(mon); @@ -21,3 +22,4 @@ void hmp_info_tlb(Monitor *mon, const QDict *qdict) dump_mmu(env1); } +#endif diff --git a/target/ppc/monitor.c b/target/ppc/monitor.c index 7c88e0e2bda..2fa27105a34 100644 --- a/target/ppc/monitor.c +++ b/target/ppc/monitor.c @@ -11,6 +11,7 @@ #include "monitor/hmp.h" #include "cpu.h" +#ifdef CONFIG_HMP void hmp_info_tlb(Monitor *mon, const QDict *qdict) { CPUArchState *env1 = mon_get_cpu_env(mon); @@ -21,3 +22,4 @@ void hmp_info_tlb(Monitor *mon, const QDict *qdict) } dump_mmu(env1); } +#endif diff --git a/target/riscv/monitor.c b/target/riscv/monitor.c index 63806002417..bf4f9fdfc77 100644 --- a/target/riscv/monitor.c +++ b/target/riscv/monitor.c @@ -38,6 +38,8 @@ #define PTE_HEADER_DELIMITER "-------- ---------------- -------- -------\n" #endif +#ifdef CONFIG_HMP + /* Perform linear address sign extension */ static target_ulong addr_canonical(int va_bits, target_ulong addr) { @@ -243,6 +245,7 @@ void hmp_info_mem(Monitor *mon, const QDict *qdict) mem_info_svxx(mon, env); } +#endif /* CONFIG_HMP */ static bool reg_is_ulong_integer(CPURISCVState *env, const char *name, target_ulong *val, bool is_gprh) diff --git a/target/sh4/monitor.c b/target/sh4/monitor.c index 50324d3600c..619d2678d0a 100644 --- a/target/sh4/monitor.c +++ b/target/sh4/monitor.c @@ -26,6 +26,7 @@ #include "monitor/monitor.h" #include "monitor/hmp.h" +#ifdef CONFIG_HMP static void print_tlb(Monitor *mon, int idx, tlb_t *tlb) { monitor_printf(mon, " tlb%i:\t" @@ -55,3 +56,4 @@ void hmp_info_tlb(Monitor *mon, const QDict *qdict) for (i = 0 ; i < UTLB_SIZE ; i++) print_tlb (mon, i, &env->utlb[i]); } +#endif diff --git a/target/sparc/monitor.c b/target/sparc/monitor.c index 36f3d8d58e9..ed7e3b4b8b2 100644 --- a/target/sparc/monitor.c +++ b/target/sparc/monitor.c @@ -27,6 +27,7 @@ #include "monitor/hmp.h" +#ifdef CONFIG_HMP void hmp_info_tlb(Monitor *mon, const QDict *qdict) { CPUArchState *env1 = mon_get_cpu_env(mon); @@ -37,3 +38,4 @@ void hmp_info_tlb(Monitor *mon, const QDict *qdict) } dump_mmu(env1); } +#endif diff --git a/target/xtensa/monitor.c b/target/xtensa/monitor.c index 2af84934f83..3f8a93ed724 100644 --- a/target/xtensa/monitor.c +++ b/target/xtensa/monitor.c @@ -26,6 +26,7 @@ #include "monitor/monitor.h" #include "monitor/hmp.h" +#ifdef CONFIG_HMP void hmp_info_tlb(Monitor *mon, const QDict *qdict) { CPUArchState *env1 = mon_get_cpu_env(mon); @@ -36,3 +37,4 @@ void hmp_info_tlb(Monitor *mon, const QDict *qdict) } dump_mmu(env1); } +#endif -- 2.54.0
