diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-01-12 11:47:00 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-09 15:45:26 +0100 |
commit | 2ecab4084fa8b418f62d28bd310936d38ef6879b (patch) | |
tree | 97f023e980f1dcbf91db52bf87ceb8a496d150d4 /include/hw/scsi | |
parent | a0aa44b488b3601415d55041e4619aef5f3a4ba8 (diff) | |
download | qemu-2ecab4084fa8b418f62d28bd310936d38ef6879b.zip |
scsi: push WWN fields up to SCSIDevice
SAS adapters need to access them in order to publish the SAS addresses
of the end devices connected to them.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/scsi')
-rw-r--r-- | include/hw/scsi/scsi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/scsi/scsi.h b/include/hw/scsi/scsi.h index 1915a7342e..bbabba22da 100644 --- a/include/hw/scsi/scsi.h +++ b/include/hw/scsi/scsi.h @@ -108,6 +108,8 @@ struct SCSIDevice int blocksize; int type; uint64_t max_lba; + uint64_t wwn; + uint64_t port_wwn; }; extern const VMStateDescription vmstate_scsi_device; |