virtio-devices, vmm: Enhance debugging around virtio device activation

Sometimes when running under the CI tests fail due to a barrier not
being released and the guest blocks on an MMIO write. Add further
debugging to try and identify the issue.

See: #2118

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2021-01-07 06:57:17 +00:00
parent a286e960ed
commit e0d79196c8
2 changed files with 12 additions and 2 deletions

View File

@@ -673,6 +673,8 @@ impl VirtioPciDevice {
info!("{}: Barrier released", self.id);
}
}
} else {
info!("{}: Device does not need activation", self.id)
}
}
@@ -1018,8 +1020,12 @@ impl PciDevice for VirtioPciDevice {
// Try and activate the device if the driver status has changed
if self.needs_activation() {
info!("{}: Needs activation; returning barrier", self.id);
info!(
"{}: Needs activation; writing to activate event fd",
self.id
);
self.activate_evt.write(1).ok();
info!("{}: Needs activation; returning barrier", self.id);
return Some(self.activate_barrier.clone());
}