]> Git Repo - qemu.git/commitdiff
hw/core: Restrict CpuClass::get_crash_info() to system-mode
authorPhilippe Mathieu-Daudé <[email protected]>
Fri, 22 May 2020 17:25:09 +0000 (19:25 +0200)
committerLaurent Vivier <[email protected]>
Fri, 5 Jun 2020 19:23:22 +0000 (21:23 +0200)
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Laurent Vivier <[email protected]>
Tested-by: Laurent Vivier <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <20200522172510[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
hw/core/cpu.c
include/hw/core/cpu.h

index 5284d384fb6b4f8618a1efd5390df525d8ed2130..f31ec48ee61e953859e67e69db421315baa9b0fe 100644 (file)
@@ -209,6 +209,7 @@ static bool cpu_common_exec_interrupt(CPUState *cpu, int int_req)
     return false;
 }
 
+#if !defined(CONFIG_USER_ONLY)
 GuestPanicInformation *cpu_get_crash_info(CPUState *cpu)
 {
     CPUClass *cc = CPU_GET_CLASS(cpu);
@@ -219,6 +220,7 @@ GuestPanicInformation *cpu_get_crash_info(CPUState *cpu)
     }
     return res;
 }
+#endif
 
 void cpu_dump_state(CPUState *cpu, FILE *f, int flags)
 {
index 07f7698155022fe5496f9cc0559a1f4a3e1aea7c..497600c49efa842ff75f7e239715f186deddbeef 100644 (file)
@@ -490,6 +490,8 @@ bool cpu_paging_enabled(const CPUState *cpu);
 void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list,
                             Error **errp);
 
+#if !defined(CONFIG_USER_ONLY)
+
 /**
  * cpu_write_elf64_note:
  * @f: pointer to a function that writes memory to a file
@@ -539,6 +541,8 @@ int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
  */
 GuestPanicInformation *cpu_get_crash_info(CPUState *cpu);
 
+#endif /* !CONFIG_USER_ONLY */
+
 /**
  * CPUDumpFlags:
  * @CPU_DUMP_CODE:
@@ -632,7 +636,8 @@ static inline int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs)
     }
     return ret;
 }
-#endif
+
+#endif /* CONFIG_USER_ONLY */
 
 /**
  * cpu_list_add:
This page took 0.028213 seconds and 4 git commands to generate.