From 18bbc71b5948a246203ea9ed7b5bf1846bb3626e Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 6 May 2026 14:36:01 +0200 Subject: [PATCH] hypervisor: fix typo On-behalf-of: SAP philipp.schuster@sap.com Signed-off-by: Philipp Schuster xxx ci --- hypervisor/src/vm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/src/vm.rs b/hypervisor/src/vm.rs index 03e0dd691..f671204c0 100644 --- a/hypervisor/src/vm.rs +++ b/hypervisor/src/vm.rs @@ -339,7 +339,7 @@ pub trait Vm: Send + Sync + Any { ) -> Result<()>; /// Unregister an event from a certain address it has been previously registered to. fn unregister_ioevent(&self, fd: &EventFd, addr: &IoEventAddress) -> Result<()>; - // Construct a routing entry + /// Construct a routing entry fn make_routing_entry(&self, gsi: u32, config: &InterruptSourceConfig) -> IrqRoutingEntry; /// Sets the GSI routing table entries, overwriting any previously set fn set_gsi_routing(&self, entries: &[IrqRoutingEntry]) -> Result<()>;