Thread (69 messages) 69 messages, 5 authors, 2015-10-07
STALE3932d

[PATCH v2 01/15] KVM: arm/arm64: VGIC: don't track used LRs in the distributor

From: andre.przywara@arm.com (Andre Przywara)
Date: 2015-09-02 09:00:02
Also in: kvm, kvmarm

On 31/08/15 09:42, Eric Auger wrote:
On 08/24/2015 06:33 PM, Andre Przywara wrote:
Salut Eric,

...
quoted
quoted
quoted
@@ -1126,9 +1124,9 @@ static void vgic_queue_irq_to_lr(struct kvm_vcpu *vcpu, int irq,
  */
 bool vgic_queue_irq(struct kvm_vcpu *vcpu, u8 sgi_source_id, int irq)
 {
-   struct vgic_cpu *vgic_cpu = &vcpu->arch.vgic_cpu;
    struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
-   struct vgic_lr vlr;
+   u64 elrsr = vgic_get_elrsr(vcpu);
+   unsigned long *elrsr_ptr = u64_to_bitmask(&elrsr);
    int lr;

    /* Sanitize the input... */
@@ -1138,42 +1136,20 @@ bool vgic_queue_irq(struct kvm_vcpu *vcpu, u8 sgi_source_id, int irq)

    kvm_debug("Queue IRQ%d\n", irq);

-   lr = vgic_cpu->vgic_irq_lr_map[irq];
-
-   /* Do we have an active interrupt for the same CPUID? */
-   if (lr != LR_EMPTY) {
-           vlr = vgic_get_lr(vcpu, lr);
-           if (vlr.source == sgi_source_id) {
-                   kvm_debug("LR%d piggyback for IRQ%d\n", lr, vlr.irq);
-                   BUG_ON(!test_bit(lr, vgic_cpu->lr_used));
-                   vgic_queue_irq_to_lr(vcpu, irq, lr, vlr);
-                   return true;
-           }
-   }
+   lr = find_first_bit(elrsr_ptr, vgic->nr_lr);

-   /* Try to use another LR for this interrupt */
-   lr = find_first_zero_bit((unsigned long *)vgic_cpu->lr_used,
-                          vgic->nr_lr);
    if (lr >= vgic->nr_lr)
            return false;

    kvm_debug("LR%d allocated for IRQ%d %x\n", lr, irq, sgi_source_id);
-   vgic_cpu->vgic_irq_lr_map[irq] = lr;
-   set_bit(lr, vgic_cpu->lr_used);

-   vlr.irq = irq;
-   vlr.source = sgi_source_id;
-   vlr.state = 0;
-   vgic_queue_irq_to_lr(vcpu, irq, lr, vlr);
+   vgic_queue_irq_to_lr(vcpu, irq, lr, sgi_source_id);

    return true;
 }

 static bool vgic_queue_hwirq(struct kvm_vcpu *vcpu, int irq)
 {
-   if (!vgic_can_sample_irq(vcpu, irq))
-           return true; /* level interrupt, already queued */
-
I think that change needs to be introduced in a separate patch as the
other one mentioned above and justified since it affects the state machine.
But this change is dependent on this patch: it will not work without
this patch and this patch will not work without that change.
So the idea is that on returning from the guest we now harvest all
_used_ LRs by copying their state back into the distributor. The
previous behaviour was to just check _unused_ LRs for completed IRQs.
So now all IRQs need to be re-inserted into the LRs before the next
guest run, that's why we have to remove the test which skipped this for
IRQs where the code knew that they were still in the LRs.
Does that make sense?
In level sensitive case, what if the IRQ'LR state was active. LR was
kept intact. IRQ is queued. With previous code we wouldn't inject a new
IRQ. Here aren't we going to inject it?
Effectively we only inject _pending_ IRQs: I was going forth and back
through the current code and couldn't find a place where we actually
make use of any active-only interrupt - the only exception being
migration, where we explicitly iterate through all LRs again and pick up
active-only IRQs as well. We never set the active state except there.

So I decided to keep only-active IRQs in the LRs and do not propagate
them back into the emulated distributor state. One reason is that we
don't use it, which makes the code look silly and secondly we avoid the
issue you described above.
In the sync when you move the IRQ from the LR reg to the state variable,
shouldn't you reset the queued state for level sensitive case? In such a
case I think you could keep that check.
We keep them as "queued" in our emulation until they become inactive and
we clear the queued bit in the EOI handler.

Admittedly this whole approach is not obvious and it's perfectly
possible that I missed something. So please can you check and confirm my
assumptions above?

Merci,
Andr?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help