Linux PCI subsystem development
 help / color / mirror / Atom feed
* [PATCH] PCI: hv: Use nested hypercall for retargeting interrupts
@ 2023-04-04 11:35 Jinank Jain
  2023-04-04 17:00 ` Nuno Das Neves
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Jinank Jain @ 2023-04-04 11:35 UTC (permalink / raw)
  To: jinankjain, kys, haiyangz, wei.liu, decui, lpieralisi, kw, robh,
	bhelgaas
  Cc: linux-hyperv, linux-pci, linux-kernel, nunodasneves

In case of nested MSHV, retargeting interrupt hypercall should be sent
to L0 hypervisor instead of L1 hypervisor.

Signed-off-by: Jinank Jain <jinankjain@linux.microsoft.com>
---
 drivers/pci/controller/pci-hyperv.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/controller/pci-hyperv.c b/drivers/pci/controller/pci-hyperv.c
index f33370b75628..2123f632ecf7 100644
--- a/drivers/pci/controller/pci-hyperv.c
+++ b/drivers/pci/controller/pci-hyperv.c
@@ -704,8 +704,14 @@ static void hv_arch_irq_unmask(struct irq_data *data)
 		}
 	}
 
-	res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT | (var_size << 17),
-			      params, NULL);
+	if (hv_nested)
+		res = hv_do_nested_hypercall(HVCALL_RETARGET_INTERRUPT |
+					     (var_size << 17),
+					     params, NULL);
+	else
+		res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT |
+				      (var_size << 17),
+				      params, NULL);
 
 exit_unlock:
 	spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags);
-- 
2.34.1


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

end of thread, other threads:[~2023-04-13 15:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-04 11:35 [PATCH] PCI: hv: Use nested hypercall for retargeting interrupts Jinank Jain
2023-04-04 17:00 ` Nuno Das Neves
2023-04-05 23:17 ` Wei Liu
2023-04-06  6:11   ` Jinank Jain
2023-04-13  1:22 ` Wei Liu
2023-04-13  3:05   ` Michael Kelley (LINUX)
2023-04-13 15:34     ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox