diff options
Diffstat (limited to 'src/block.c')
-rw-r--r-- | src/block.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/block.c b/src/block.c index 422e2a29..8e5bdad5 100644 --- a/src/block.c +++ b/src/block.c @@ -14,6 +14,7 @@ #include "hw/lsi-scsi.h" // lsi_scsi_process_op #include "hw/megasas.h" // megasas_process_op #include "hw/pci.h" // pci_bdf_to_bus +#include "hw/pvscsi.h" // pvscsi_process_op #include "hw/rtc.h" // rtc_read #include "hw/usb-msc.h" // usb_process_op #include "hw/usb-uas.h" // uas_process_op @@ -538,7 +539,7 @@ process_op_32(struct disk_op_s *op) case DTYPE_VIRTIO_SCSI: return virtio_scsi_process_op(op); case DTYPE_PVSCSI: - return scsi_process_op(op); + return pvscsi_process_op(op); default: return process_op_both(op); } |