mirror of https://github.com/xemu-project/xemu.git
KVM: Move hwpoison page related functions into kvm-all.c
kvm_hwpoison_page_add() and kvm_unpoison_all() will both be used by X86 and ARM platforms, so moving them into "accel/kvm/kvm-all.c" to avoid duplicate code. For architectures that don't use the poison-list functionality the reset handler will harmlessly do nothing, so let's register the kvm_unpoison_all() function in the generic kvm_init() function. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com> Signed-off-by: Xiang Zheng <zhengxiang9@huawei.com> Acked-by: Xiang Zheng <zhengxiang9@huawei.com> Message-id: 20200512030609.19593-8-gengdongjiu@huawei.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
a08a64627b
commit
6b552b9bc8
|
@ -44,6 +44,7 @@
|
||||||
#include "qapi/visitor.h"
|
#include "qapi/visitor.h"
|
||||||
#include "qapi/qapi-types-common.h"
|
#include "qapi/qapi-types-common.h"
|
||||||
#include "qapi/qapi-visit-common.h"
|
#include "qapi/qapi-visit-common.h"
|
||||||
|
#include "sysemu/reset.h"
|
||||||
|
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
|
|
||||||
|
@ -883,6 +884,39 @@ int kvm_vm_check_extension(KVMState *s, unsigned int extension)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef struct HWPoisonPage {
|
||||||
|
ram_addr_t ram_addr;
|
||||||
|
QLIST_ENTRY(HWPoisonPage) list;
|
||||||
|
} HWPoisonPage;
|
||||||
|
|
||||||
|
static QLIST_HEAD(, HWPoisonPage) hwpoison_page_list =
|
||||||
|
QLIST_HEAD_INITIALIZER(hwpoison_page_list);
|
||||||
|
|
||||||
|
static void kvm_unpoison_all(void *param)
|
||||||
|
{
|
||||||
|
HWPoisonPage *page, *next_page;
|
||||||
|
|
||||||
|
QLIST_FOREACH_SAFE(page, &hwpoison_page_list, list, next_page) {
|
||||||
|
QLIST_REMOVE(page, list);
|
||||||
|
qemu_ram_remap(page->ram_addr, TARGET_PAGE_SIZE);
|
||||||
|
g_free(page);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void kvm_hwpoison_page_add(ram_addr_t ram_addr)
|
||||||
|
{
|
||||||
|
HWPoisonPage *page;
|
||||||
|
|
||||||
|
QLIST_FOREACH(page, &hwpoison_page_list, list) {
|
||||||
|
if (page->ram_addr == ram_addr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
page = g_new(HWPoisonPage, 1);
|
||||||
|
page->ram_addr = ram_addr;
|
||||||
|
QLIST_INSERT_HEAD(&hwpoison_page_list, page, list);
|
||||||
|
}
|
||||||
|
|
||||||
static uint32_t adjust_ioeventfd_endianness(uint32_t val, uint32_t size)
|
static uint32_t adjust_ioeventfd_endianness(uint32_t val, uint32_t size)
|
||||||
{
|
{
|
||||||
#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
|
#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
|
||||||
|
@ -2085,6 +2119,8 @@ static int kvm_init(MachineState *ms)
|
||||||
s->kernel_irqchip_split = mc->default_kernel_irqchip_split ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF;
|
s->kernel_irqchip_split = mc->default_kernel_irqchip_split ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qemu_register_reset(kvm_unpoison_all, NULL);
|
||||||
|
|
||||||
if (s->kernel_irqchip_allowed) {
|
if (s->kernel_irqchip_allowed) {
|
||||||
kvm_irqchip_create(s);
|
kvm_irqchip_create(s);
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,4 +42,16 @@ void kvm_memory_listener_register(KVMState *s, KVMMemoryListener *kml,
|
||||||
AddressSpace *as, int as_id);
|
AddressSpace *as, int as_id);
|
||||||
|
|
||||||
void kvm_set_max_memslot_size(hwaddr max_slot_size);
|
void kvm_set_max_memslot_size(hwaddr max_slot_size);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* kvm_hwpoison_page_add:
|
||||||
|
*
|
||||||
|
* Parameters:
|
||||||
|
* @ram_addr: the address in the RAM for the poisoned page
|
||||||
|
*
|
||||||
|
* Add a poisoned page to the list
|
||||||
|
*
|
||||||
|
* Return: None.
|
||||||
|
*/
|
||||||
|
void kvm_hwpoison_page_add(ram_addr_t ram_addr);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include "sysemu/sysemu.h"
|
#include "sysemu/sysemu.h"
|
||||||
#include "sysemu/hw_accel.h"
|
#include "sysemu/hw_accel.h"
|
||||||
#include "sysemu/kvm_int.h"
|
#include "sysemu/kvm_int.h"
|
||||||
#include "sysemu/reset.h"
|
|
||||||
#include "sysemu/runstate.h"
|
#include "sysemu/runstate.h"
|
||||||
#include "kvm_i386.h"
|
#include "kvm_i386.h"
|
||||||
#include "hyperv.h"
|
#include "hyperv.h"
|
||||||
|
@ -533,40 +532,6 @@ uint64_t kvm_arch_get_supported_msr_feature(KVMState *s, uint32_t index)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
typedef struct HWPoisonPage {
|
|
||||||
ram_addr_t ram_addr;
|
|
||||||
QLIST_ENTRY(HWPoisonPage) list;
|
|
||||||
} HWPoisonPage;
|
|
||||||
|
|
||||||
static QLIST_HEAD(, HWPoisonPage) hwpoison_page_list =
|
|
||||||
QLIST_HEAD_INITIALIZER(hwpoison_page_list);
|
|
||||||
|
|
||||||
static void kvm_unpoison_all(void *param)
|
|
||||||
{
|
|
||||||
HWPoisonPage *page, *next_page;
|
|
||||||
|
|
||||||
QLIST_FOREACH_SAFE(page, &hwpoison_page_list, list, next_page) {
|
|
||||||
QLIST_REMOVE(page, list);
|
|
||||||
qemu_ram_remap(page->ram_addr, TARGET_PAGE_SIZE);
|
|
||||||
g_free(page);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void kvm_hwpoison_page_add(ram_addr_t ram_addr)
|
|
||||||
{
|
|
||||||
HWPoisonPage *page;
|
|
||||||
|
|
||||||
QLIST_FOREACH(page, &hwpoison_page_list, list) {
|
|
||||||
if (page->ram_addr == ram_addr) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
page = g_new(HWPoisonPage, 1);
|
|
||||||
page->ram_addr = ram_addr;
|
|
||||||
QLIST_INSERT_HEAD(&hwpoison_page_list, page, list);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int kvm_get_mce_cap_supported(KVMState *s, uint64_t *mce_cap,
|
static int kvm_get_mce_cap_supported(KVMState *s, uint64_t *mce_cap,
|
||||||
int *max_banks)
|
int *max_banks)
|
||||||
{
|
{
|
||||||
|
@ -2180,7 +2145,6 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
||||||
fprintf(stderr, "e820_add_entry() table is full\n");
|
fprintf(stderr, "e820_add_entry() table is full\n");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
qemu_register_reset(kvm_unpoison_all, NULL);
|
|
||||||
|
|
||||||
shadow_mem = object_property_get_int(OBJECT(s), "kvm-shadow-mem", &error_abort);
|
shadow_mem = object_property_get_int(OBJECT(s), "kvm-shadow-mem", &error_abort);
|
||||||
if (shadow_mem != -1) {
|
if (shadow_mem != -1) {
|
||||||
|
|
Loading…
Reference in New Issue