KVM/ARM Fixes for v4.13-rc4
- Yet another race with VM destruction plugged - A set of small vgic fixes -----BEGIN PGP SIGNATURE----- iQJJBAABCAAzFiEEn9UcU+C1Yxj9lZw9I9DQutE9ekMFAlmDOZ4VHG1hcmMuenlu Z2llckBhcm0uY29tAAoJECPQ0LrRPXpDnwQP/ji7d7bbWybmeuWKXm8TYt6CNPBr JC57OQHytU1+ccagjeUPaAgUAqWSQWOwfbqPuS1afshJu1ZZsN851QNmcr5W6bXQ EwjICGWcAdKSMLnhRDdf+uXQbFSkkcaxsXnJWjmD0EE8ylaXCCkdV278xhTx0hVO yiov/xWNzLMa3O3W/l4SIKQ4UNyeQ7f+Od1Vkf7iUpaaFcz6s3RNsPAOwc7Thq7L eLk4SgXMLDNHz5HwdLoOp3RwQsNe9A7uh05z9VOav0YAyLG5vf29JhMroCO/4P/x 1HgWvpGwzxAUqUcHbW4FSOsbydEltlWMdfSoAF7BtPCLudmmsxfMJJlK3FKLvV+P MsO2FdXiz6/ZLI9/ds7YJDOfc1cGSVK07Efx+SLXD5FAnkFYq4SElmI4sK8BWc5U Dugw3j8u9M6jTiVKBioFo7yRT5iHG9O0A+6DtsMQ0iREfLolC7EEzpfGB/vWpKk5 BbdwDUiu6JxXEBJJqyP948iGfuIrikAx2mcf3dmEHVKhEnKi+MN/H5c9BKGAJ3sf Fm1xF99IG+m3L3zXiukQ11OqsCx32kqLiXaejVttscFg/C33OYmGOhsk066hHCzx LtoxrHUl7rwF+ssnKHq4Az2mYzZtquEq13O5tgleQcVwH/2+6EgWDf3mDSy1em0h 5IXgqk+PsaQ5n0jL =TMR9 -----END PGP SIGNATURE----- Merge tag 'kvm-arm-for-v4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm KVM/ARM Fixes for v4.13-rc4 - Yet another race with VM destruction plugged - A set of small vgic fixes
This commit is contained in:
commit
53a5abd839
|
@ -764,7 +764,7 @@ static bool access_pmovs(struct kvm_vcpu *vcpu, struct sys_reg_params *p,
|
||||||
if (p->is_write) {
|
if (p->is_write) {
|
||||||
if (r->CRm & 0x2)
|
if (r->CRm & 0x2)
|
||||||
/* accessing PMOVSSET_EL0 */
|
/* accessing PMOVSSET_EL0 */
|
||||||
kvm_pmu_overflow_set(vcpu, p->regval & mask);
|
vcpu_sys_reg(vcpu, PMOVSSET_EL0) |= (p->regval & mask);
|
||||||
else
|
else
|
||||||
/* accessing PMOVSCLR_EL0 */
|
/* accessing PMOVSCLR_EL0 */
|
||||||
vcpu_sys_reg(vcpu, PMOVSSET_EL0) &= ~(p->regval & mask);
|
vcpu_sys_reg(vcpu, PMOVSSET_EL0) &= ~(p->regval & mask);
|
||||||
|
|
|
@ -48,7 +48,6 @@ void kvm_pmu_vcpu_reset(struct kvm_vcpu *vcpu);
|
||||||
void kvm_pmu_vcpu_destroy(struct kvm_vcpu *vcpu);
|
void kvm_pmu_vcpu_destroy(struct kvm_vcpu *vcpu);
|
||||||
void kvm_pmu_disable_counter(struct kvm_vcpu *vcpu, u64 val);
|
void kvm_pmu_disable_counter(struct kvm_vcpu *vcpu, u64 val);
|
||||||
void kvm_pmu_enable_counter(struct kvm_vcpu *vcpu, u64 val);
|
void kvm_pmu_enable_counter(struct kvm_vcpu *vcpu, u64 val);
|
||||||
void kvm_pmu_overflow_set(struct kvm_vcpu *vcpu, u64 val);
|
|
||||||
void kvm_pmu_flush_hwstate(struct kvm_vcpu *vcpu);
|
void kvm_pmu_flush_hwstate(struct kvm_vcpu *vcpu);
|
||||||
void kvm_pmu_sync_hwstate(struct kvm_vcpu *vcpu);
|
void kvm_pmu_sync_hwstate(struct kvm_vcpu *vcpu);
|
||||||
bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu);
|
bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu);
|
||||||
|
@ -86,7 +85,6 @@ static inline void kvm_pmu_vcpu_reset(struct kvm_vcpu *vcpu) {}
|
||||||
static inline void kvm_pmu_vcpu_destroy(struct kvm_vcpu *vcpu) {}
|
static inline void kvm_pmu_vcpu_destroy(struct kvm_vcpu *vcpu) {}
|
||||||
static inline void kvm_pmu_disable_counter(struct kvm_vcpu *vcpu, u64 val) {}
|
static inline void kvm_pmu_disable_counter(struct kvm_vcpu *vcpu, u64 val) {}
|
||||||
static inline void kvm_pmu_enable_counter(struct kvm_vcpu *vcpu, u64 val) {}
|
static inline void kvm_pmu_enable_counter(struct kvm_vcpu *vcpu, u64 val) {}
|
||||||
static inline void kvm_pmu_overflow_set(struct kvm_vcpu *vcpu, u64 val) {}
|
|
||||||
static inline void kvm_pmu_flush_hwstate(struct kvm_vcpu *vcpu) {}
|
static inline void kvm_pmu_flush_hwstate(struct kvm_vcpu *vcpu) {}
|
||||||
static inline void kvm_pmu_sync_hwstate(struct kvm_vcpu *vcpu) {}
|
static inline void kvm_pmu_sync_hwstate(struct kvm_vcpu *vcpu) {}
|
||||||
static inline bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu)
|
static inline bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu)
|
||||||
|
|
|
@ -1718,12 +1718,16 @@ static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *
|
||||||
|
|
||||||
int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
|
int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
|
||||||
{
|
{
|
||||||
|
if (!kvm->arch.pgd)
|
||||||
|
return 0;
|
||||||
trace_kvm_age_hva(start, end);
|
trace_kvm_age_hva(start, end);
|
||||||
return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
|
return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
|
int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
|
||||||
{
|
{
|
||||||
|
if (!kvm->arch.pgd)
|
||||||
|
return 0;
|
||||||
trace_kvm_test_age_hva(hva);
|
trace_kvm_test_age_hva(hva);
|
||||||
return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
|
return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,11 +203,15 @@ static u64 kvm_pmu_overflow_status(struct kvm_vcpu *vcpu)
|
||||||
return reg;
|
return reg;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void kvm_pmu_check_overflow(struct kvm_vcpu *vcpu)
|
static void kvm_pmu_update_state(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
struct kvm_pmu *pmu = &vcpu->arch.pmu;
|
struct kvm_pmu *pmu = &vcpu->arch.pmu;
|
||||||
bool overflow = !!kvm_pmu_overflow_status(vcpu);
|
bool overflow;
|
||||||
|
|
||||||
|
if (!kvm_arm_pmu_v3_ready(vcpu))
|
||||||
|
return;
|
||||||
|
|
||||||
|
overflow = !!kvm_pmu_overflow_status(vcpu);
|
||||||
if (pmu->irq_level == overflow)
|
if (pmu->irq_level == overflow)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -215,33 +219,11 @@ static void kvm_pmu_check_overflow(struct kvm_vcpu *vcpu)
|
||||||
|
|
||||||
if (likely(irqchip_in_kernel(vcpu->kvm))) {
|
if (likely(irqchip_in_kernel(vcpu->kvm))) {
|
||||||
int ret = kvm_vgic_inject_irq(vcpu->kvm, vcpu->vcpu_id,
|
int ret = kvm_vgic_inject_irq(vcpu->kvm, vcpu->vcpu_id,
|
||||||
pmu->irq_num, overflow,
|
pmu->irq_num, overflow, pmu);
|
||||||
&vcpu->arch.pmu);
|
|
||||||
WARN_ON(ret);
|
WARN_ON(ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* kvm_pmu_overflow_set - set PMU overflow interrupt
|
|
||||||
* @vcpu: The vcpu pointer
|
|
||||||
* @val: the value guest writes to PMOVSSET register
|
|
||||||
*/
|
|
||||||
void kvm_pmu_overflow_set(struct kvm_vcpu *vcpu, u64 val)
|
|
||||||
{
|
|
||||||
if (val == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
vcpu_sys_reg(vcpu, PMOVSSET_EL0) |= val;
|
|
||||||
kvm_pmu_check_overflow(vcpu);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void kvm_pmu_update_state(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
if (!kvm_arm_pmu_v3_ready(vcpu))
|
|
||||||
return;
|
|
||||||
kvm_pmu_check_overflow(vcpu);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu)
|
bool kvm_pmu_should_notify_user(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
struct kvm_pmu *pmu = &vcpu->arch.pmu;
|
struct kvm_pmu *pmu = &vcpu->arch.pmu;
|
||||||
|
@ -303,7 +285,7 @@ static inline struct kvm_vcpu *kvm_pmc_to_vcpu(struct kvm_pmc *pmc)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When perf event overflows, call kvm_pmu_overflow_set to set overflow status.
|
* When the perf event overflows, set the overflow status and inform the vcpu.
|
||||||
*/
|
*/
|
||||||
static void kvm_pmu_perf_overflow(struct perf_event *perf_event,
|
static void kvm_pmu_perf_overflow(struct perf_event *perf_event,
|
||||||
struct perf_sample_data *data,
|
struct perf_sample_data *data,
|
||||||
|
@ -313,7 +295,12 @@ static void kvm_pmu_perf_overflow(struct perf_event *perf_event,
|
||||||
struct kvm_vcpu *vcpu = kvm_pmc_to_vcpu(pmc);
|
struct kvm_vcpu *vcpu = kvm_pmc_to_vcpu(pmc);
|
||||||
int idx = pmc->idx;
|
int idx = pmc->idx;
|
||||||
|
|
||||||
kvm_pmu_overflow_set(vcpu, BIT(idx));
|
vcpu_sys_reg(vcpu, PMOVSSET_EL0) |= BIT(idx);
|
||||||
|
|
||||||
|
if (kvm_pmu_overflow_status(vcpu)) {
|
||||||
|
kvm_make_request(KVM_REQ_IRQ_PENDING, vcpu);
|
||||||
|
kvm_vcpu_kick(vcpu);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -341,7 +328,7 @@ void kvm_pmu_software_increment(struct kvm_vcpu *vcpu, u64 val)
|
||||||
reg = lower_32_bits(reg);
|
reg = lower_32_bits(reg);
|
||||||
vcpu_sys_reg(vcpu, PMEVCNTR0_EL0 + i) = reg;
|
vcpu_sys_reg(vcpu, PMEVCNTR0_EL0 + i) = reg;
|
||||||
if (!reg)
|
if (!reg)
|
||||||
kvm_pmu_overflow_set(vcpu, BIT(i));
|
vcpu_sys_reg(vcpu, PMOVSSET_EL0) |= BIT(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -285,9 +285,6 @@ int vgic_init(struct kvm *kvm)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (vgic_has_its(kvm))
|
|
||||||
dist->msis_require_devid = true;
|
|
||||||
|
|
||||||
kvm_for_each_vcpu(i, vcpu, kvm)
|
kvm_for_each_vcpu(i, vcpu, kvm)
|
||||||
kvm_vgic_vcpu_enable(vcpu);
|
kvm_vgic_vcpu_enable(vcpu);
|
||||||
|
|
||||||
|
|
|
@ -1598,6 +1598,7 @@ static int vgic_its_create(struct kvm_device *dev, u32 type)
|
||||||
INIT_LIST_HEAD(&its->device_list);
|
INIT_LIST_HEAD(&its->device_list);
|
||||||
INIT_LIST_HEAD(&its->collection_list);
|
INIT_LIST_HEAD(&its->collection_list);
|
||||||
|
|
||||||
|
dev->kvm->arch.vgic.msis_require_devid = true;
|
||||||
dev->kvm->arch.vgic.has_its = true;
|
dev->kvm->arch.vgic.has_its = true;
|
||||||
its->enabled = false;
|
its->enabled = false;
|
||||||
its->dev = dev;
|
its->dev = dev;
|
||||||
|
|
|
@ -369,7 +369,7 @@ static void vgic_mmio_write_propbase(struct kvm_vcpu *vcpu,
|
||||||
return;
|
return;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
old_propbaser = dist->propbaser;
|
old_propbaser = READ_ONCE(dist->propbaser);
|
||||||
propbaser = old_propbaser;
|
propbaser = old_propbaser;
|
||||||
propbaser = update_64bit_reg(propbaser, addr & 4, len, val);
|
propbaser = update_64bit_reg(propbaser, addr & 4, len, val);
|
||||||
propbaser = vgic_sanitise_propbaser(propbaser);
|
propbaser = vgic_sanitise_propbaser(propbaser);
|
||||||
|
@ -397,7 +397,7 @@ static void vgic_mmio_write_pendbase(struct kvm_vcpu *vcpu,
|
||||||
return;
|
return;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
old_pendbaser = vgic_cpu->pendbaser;
|
old_pendbaser = READ_ONCE(vgic_cpu->pendbaser);
|
||||||
pendbaser = old_pendbaser;
|
pendbaser = old_pendbaser;
|
||||||
pendbaser = update_64bit_reg(pendbaser, addr & 4, len, val);
|
pendbaser = update_64bit_reg(pendbaser, addr & 4, len, val);
|
||||||
pendbaser = vgic_sanitise_pendbaser(pendbaser);
|
pendbaser = vgic_sanitise_pendbaser(pendbaser);
|
||||||
|
|
Loading…
Reference in New Issue