drivers/virtio-core: Reduce log verbosity

This commit is contained in:
bjorn3
2026-04-11 17:59:54 +02:00
parent 8d6017d799
commit 06af174ce6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -32,6 +32,6 @@ pub fn enable_msix(pcid_handle: &mut PciFunctionHandle) -> Result<File, Error> {
pcid_handle.enable_feature(PciFeature::MsiX);
log::info!("virtio: using MSI-X (interrupt_handle={interrupt_handle:?})");
log::debug!("virtio: using MSI-X (interrupt_handle={interrupt_handle:?})");
Ok(interrupt_handle)
}
+1 -1
View File
@@ -132,7 +132,7 @@ pub fn probe_device(pcid_handle: &mut PciFunctionHandle) -> Result<Device, Error
assert!(has_msix, "virtio: device does not support MSI-X");
let irq_handle = crate::arch::enable_msix(pcid_handle)?;
log::info!("virtio: using standard PCI transport");
log::debug!("virtio: using standard PCI transport");
let device = Device {
transport,
+1 -1
View File
@@ -650,7 +650,7 @@ impl Transport for StandardTransport<'_> {
&mut *(self.notify.add(offset as usize) as *mut AtomicU16)
};
log::info!("virtio-core: enabled queue #{queue_index} (size={queue_size})");
log::debug!("virtio-core: enabled queue #{queue_index} (size={queue_size})");
let queue = Queue::new(
descriptor,