1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

kernel/vfio_device: add logging output when pciMsiDeInit is called

Signed-off-by: Niklas Eiling <niklas.eiling@eonerc.rwth-aachen.de>
This commit is contained in:
Niklas Eiling 2024-02-10 16:15:47 +01:00 committed by Steffen Vogel
parent 15df59b395
commit 3935688977

View file

@ -293,6 +293,8 @@ int Device::pciMsiInit(int efds[]) {
}
int Device::pciMsiDeinit(int efds[]) {
logging.get("Device")->debug("Deinitializing MSI interrupts for device {}",
name);
// Check if this is really a vfio-pci device
if (not isVfioPciDevice())
return -1;