mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
KVM: arm64: Extend unified RESx handling to runtime sanitisation
Add a new helper to retrieve the RESx values for a given system register, and use it for the runtime sanitisation. This results in slightly better code generation for a fairly hot path in the hypervisor, and additionally covers all sanitised registers in all conditions, not just the VNCR-based ones. Reviewed-by: Fuad Tabba <tabba@google.com> Tested-by: Fuad Tabba <tabba@google.com> Link: https://patch.msgid.link/20260202184329.2724080-6-maz@kernel.org Signed-off-by: Marc Zyngier <maz@kernel.org>
This commit is contained in:
@@ -635,6 +635,21 @@ struct kvm_sysreg_masks {
|
||||
struct resx mask[NR_SYS_REGS - __SANITISED_REG_START__];
|
||||
};
|
||||
|
||||
static inline struct resx __kvm_get_sysreg_resx(struct kvm_arch *arch,
|
||||
enum vcpu_sysreg sr)
|
||||
{
|
||||
struct kvm_sysreg_masks *masks;
|
||||
|
||||
masks = arch->sysreg_masks;
|
||||
if (likely(masks &&
|
||||
sr >= __SANITISED_REG_START__ && sr < NR_SYS_REGS))
|
||||
return masks->mask[sr - __SANITISED_REG_START__];
|
||||
|
||||
return (struct resx){};
|
||||
}
|
||||
|
||||
#define kvm_get_sysreg_resx(k, sr) __kvm_get_sysreg_resx(&(k)->arch, (sr))
|
||||
|
||||
static inline void __kvm_set_sysreg_resx(struct kvm_arch *arch,
|
||||
enum vcpu_sysreg sr, struct resx resx)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user