All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]  kvm: arm/arm64 : fix vm's hanging at startup time
@ 2018-11-15 15:14 ` Peng Hao
  0 siblings, 0 replies; 40+ messages in thread
From: Peng Hao @ 2018-11-15 15:14 UTC (permalink / raw)
  To: christoffer.dall, marc.zyngier
  Cc: linux-arm-kernel, kvmarm, linux-kernel, Peng Hao

When virtual machine starts, hang up. The kernel version of guest
is 4.16. Host support vgic_v3.
It was mainly due to the incorrect vgic_irq's(intid=27) group value
during injection interruption. when kvm_vgic_vcpu_init is called,
dist is not initialized at this time. Unable to get vgic V3 or V2
correctly, so group is not set.
group is setted to 1 when vgic_mmio_write_group is invoked at some
time.
when irq->group=0 (intid=27), No ICH_LR_GROUP flag was set and
interrupt injection failed.

Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
---
 virt/kvm/arm/vgic/vgic-v3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virt/kvm/arm/vgic/vgic-v3.c b/virt/kvm/arm/vgic/vgic-v3.c
index 9c0dd23..d101000 100644
--- a/virt/kvm/arm/vgic/vgic-v3.c
+++ b/virt/kvm/arm/vgic/vgic-v3.c
@@ -198,7 +198,7 @@ void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr)
 	if (vgic_irq_is_mapped_level(irq) && (val & ICH_LR_PENDING_BIT))
 		irq->line_level = false;
 
-	if (irq->group)
+	if (model == KVM_DEV_TYPE_ARM_VGIC_V3)
 		val |= ICH_LR_GROUP;
 
 	val |= (u64)irq->priority << ICH_LR_PRIORITY_SHIFT;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2018-11-24  4:15 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-15 15:14 [PATCH] kvm: arm/arm64 : fix vm's hanging at startup time Peng Hao
2018-11-15 15:14 ` Peng Hao
2018-11-15  9:42 ` Julien Thierry
2018-11-15  9:42   ` Julien Thierry
2018-11-15 10:22   ` peng.hao2
2018-11-15 11:10     ` Julien Thierry
2018-11-15 11:10       ` Julien Thierry
2018-11-15 14:39 ` Andre Przywara
2018-11-15 14:39   ` Andre Przywara
2018-11-16  0:23   ` peng.hao2
2018-11-16 10:03     ` Julien Thierry
2018-11-16 10:03       ` Julien Thierry
2018-11-17  2:58       ` peng.hao2
2018-11-19  9:10         ` Mark Rutland
2018-11-19  9:10           ` Mark Rutland
2018-11-19  9:26           ` Marc Zyngier
2018-11-19  9:26             ` Marc Zyngier
2018-11-19  9:26             ` Marc Zyngier
2018-11-19 12:49           ` Marc Zyngier
2018-11-19 12:49             ` Marc Zyngier
2018-11-19 13:08             ` peng.hao2
2018-11-21  8:56             ` peng.hao2
2018-11-21 11:06               ` Christoffer Dall
2018-11-21 11:06                 ` Christoffer Dall
2018-11-21 12:17                 ` Julien Thierry
2018-11-21 12:17                   ` Julien Thierry
2018-11-21 15:24                   ` Christoffer Dall
2018-11-21 15:24                     ` Christoffer Dall
2018-11-21 15:53                     ` Julien Thierry
2018-11-21 15:53                       ` Julien Thierry
2018-11-22 10:45                       ` Christoffer Dall
2018-11-22 10:45                         ` Christoffer Dall
2018-11-23  6:01                 ` peng.hao2
2018-11-23 10:03                   ` Christoffer Dall
2018-11-23 10:03                     ` Christoffer Dall
2018-11-24  4:15                     ` peng.hao2
2018-11-15 15:06 ` Marc Zyngier
2018-11-15 15:06   ` Marc Zyngier
2018-11-15 15:06   ` Marc Zyngier
2018-11-16  0:55   ` peng.hao2

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.