mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-07 05:49:59 +00:00
4acab37f56
Extend tests to cover all SCSI controller types and document the new type. The lsisas1068 SCSI controller type was added in ESX 4.0. The VMX parser reports an error when this controller type is present. This makes virsh dumpxml fail for every domain that uses this controller type. This patch fixes this and adds lsisas1068 to the list of accepted SCSI controller types. Reported by Jonathan Kelley.
26 lines
736 B
XML
26 lines
736 B
XML
<domain type='vmware'>
|
|
<name>scsi-buslogic</name>
|
|
<uuid>564d9bef-acd9-b4e0-c8f0-aea8b9103515</uuid>
|
|
<memory>4096</memory>
|
|
<os>
|
|
<type>hvm</type>
|
|
</os>
|
|
<devices>
|
|
<disk type='file' device='disk'>
|
|
<driver name='buslogic'/>
|
|
<source file='[datastore] directory/harddisk1.vmdk'/>
|
|
<target dev='sda' bus='scsi'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<driver name='lsilogic'/>
|
|
<source file='[datastore] directory/harddisk2.vmdk'/>
|
|
<target dev='sdp' bus='scsi'/>
|
|
</disk>
|
|
<disk type='file' device='disk'>
|
|
<driver name='lsisas1068'/>
|
|
<source file='[datastore] directory/harddisk3.vmdk'/>
|
|
<target dev='sdae' bus='scsi'/>
|
|
</disk>
|
|
</devices>
|
|
</domain>
|