(&self)
| 1149 | } |
| 1150 | |
| 1151 | pub(crate) fn disable_msix(&self) { |
| 1152 | if let Err(e) = self.vfio_wrapper.disable_msix() { |
| 1153 | error!("Could not disable MSI-X: {e}"); |
| 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | fn initialize_legacy_interrupt(&mut self) -> Result<(), VfioPciError> { |
| 1158 | if let Some(irq_info) = self.vfio_wrapper.get_irq_info(VFIO_PCI_INTX_IRQ_INDEX) |
no outgoing calls
no test coverage detected