diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-08-03 10:49:12 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-12 08:29:01 -0500 |
commit | 87dcd1b2c27e88a47be5036e9cf4c2767054eb31 (patch) | |
tree | e0d478e3e96e3851442d3e1ebd3cd34f7ed6bb21 /hw/scsi-bus.c | |
parent | 2599aece1b222ad4f9714275b38bf1d3e9424b54 (diff) | |
download | qemu-87dcd1b2c27e88a47be5036e9cf4c2767054eb31.zip qemu-87dcd1b2c27e88a47be5036e9cf4c2767054eb31.tar.gz qemu-87dcd1b2c27e88a47be5036e9cf4c2767054eb31.tar.bz2 |
scsi: push lun field to SCSIDevice
This will let SCSIBus detect requests sent to an invalid LUN, and
handle them itself. However, there will be still support for only one
LUN per target
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/scsi-bus.c')
-rw-r--r-- | hw/scsi-bus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c index b52b9d2..3ae6762 100644 --- a/hw/scsi-bus.c +++ b/hw/scsi-bus.c @@ -16,6 +16,7 @@ static struct BusInfo scsi_bus_info = { .get_fw_dev_path = scsibus_get_fw_dev_path, .props = (Property[]) { DEFINE_PROP_UINT32("scsi-id", SCSIDevice, id, -1), + DEFINE_PROP_UINT32("lun", SCSIDevice, lun, 0), DEFINE_PROP_END_OF_LIST(), }, }; |