mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
pseries: Stubs for HPT resizing
This introduces stub implementations of the H_RESIZE_HPT_PREPARE and H_RESIZE_HPT_COMMIT hypercalls which we hope to add in a PAPR extension to allow run time resizing of a guest's hash page table. It also adds a new machine property for controlling whether this new facility is available. For now we only allow resizing with TCG, allowing it with KVM will require kernel changes as well. Finally, it adds a new string to the hypertas property in the device tree, advertising to the guest the availability of the HPT resizing hypercalls. This is a tentative suggested value, and would need to be standardized by PAPR before being merged. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com> Reviewed-by: Laurent Vivier <lvivier@redhat.com>
This commit is contained in:
parent
2ee77040f5
commit
30f4b05bd0
6 changed files with 142 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
#include <linux/kvm.h>
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "cpu.h"
|
||||
#include "cpu-models.h"
|
||||
|
@ -2709,3 +2710,15 @@ int kvmppc_enable_hwrng(void)
|
|||
|
||||
return kvmppc_enable_hcall(kvm_state, H_RANDOM);
|
||||
}
|
||||
|
||||
void kvmppc_check_papr_resize_hpt(Error **errp)
|
||||
{
|
||||
if (!kvm_enabled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* TODO: Check for resize-capable KVM implementations */
|
||||
|
||||
error_setg(errp,
|
||||
"Hash page table resizing not available with this KVM version");
|
||||
}
|
||||
|
|
|
@ -63,6 +63,7 @@ bool kvmppc_has_cap_mmu_hash_v3(void);
|
|||
int kvmppc_enable_hwrng(void);
|
||||
int kvmppc_put_books_sregs(PowerPCCPU *cpu);
|
||||
PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
|
||||
void kvmppc_check_papr_resize_hpt(Error **errp);
|
||||
|
||||
bool kvmppc_is_mem_backend_page_size_ok(const char *obj_path);
|
||||
|
||||
|
@ -297,6 +298,10 @@ static inline PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static inline void kvmppc_check_papr_resize_hpt(Error **errp)
|
||||
{
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_KVM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue