mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
virtio-scsi: fix cdb/sense size
Commit "virtio-scsi: use standard-headers" added cdb and sense into req/rep structures, which breaks uses of sizeof for these structures, since qemu adds its own arrays on top. To fix, redefine CDB/sense field size to 0. Reported-by: Fam Zheng <famz@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
2106ba3010
commit
03325525c3
2 changed files with 8 additions and 5 deletions
|
@ -14,6 +14,9 @@
|
|||
#ifndef _QEMU_VIRTIO_SCSI_H
|
||||
#define _QEMU_VIRTIO_SCSI_H
|
||||
|
||||
/* Override CDB/sense data size: they are dynamic (guest controlled) in QEMU */
|
||||
#define VIRTIO_SCSI_CDB_SIZE 0
|
||||
#define VIRTIO_SCSI_SENSE_SIZE 0
|
||||
#include "standard-headers/linux/virtio_scsi.h"
|
||||
#include "hw/virtio/virtio.h"
|
||||
#include "hw/pci/pci.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue