mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
virtio-devices: drop error message from notification BAR read
After writing to an address, Windows 11 on ARM64 unconditionally reads it back. It is harmless. Drop the error message to avoid spamming. Fixes: #3732 Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
@@ -974,7 +974,6 @@ impl PciDevice for VirtioPciDevice {
|
||||
.contains(&o) =>
|
||||
{
|
||||
// Handled with ioeventfds.
|
||||
error!("Unexpected read from notification BAR: offset = 0x{:x}", o);
|
||||
}
|
||||
o if (MSIX_TABLE_BAR_OFFSET..MSIX_TABLE_BAR_OFFSET + MSIX_TABLE_SIZE).contains(&o) => {
|
||||
if let Some(msix_config) = &self.msix_config {
|
||||
|
||||
Reference in New Issue
Block a user