From: Marc Zyngier Date: Tue, 20 Dec 2016 15:10:50 +0000 (+0000) Subject: irqchip/gic-v3-its: Add VPE invalidation hook X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5e2f764234bd0ef9542902fb608e525c41e0d7ee;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git irqchip/gic-v3-its: Add VPE invalidation hook When a guest issues a INVALL command targetting a collection, it must be translated into a VINVALL for the VPE that has this collection. This patch implements a hook that offers this functionallity to the hypervisor. Reviewed-by: Thomas Gleixner Signed-off-by: Marc Zyngier --- diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c index f4827040a788..21b728df7544 100644 --- a/drivers/irqchip/irq-gic-v3-its.c +++ b/drivers/irqchip/irq-gic-v3-its.c @@ -2232,6 +2232,10 @@ static int its_vpe_set_vcpu_affinity(struct irq_data *d, void *vcpu_info) its_vpe_deschedule(vpe); return 0; + case INVALL_VPE: + its_send_vinvall(vpe); + return 0; + default: return -EINVAL; }