docs, tests: do not specify scsi=off
This has been the default forever. Acked-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
3ab42e46ac
commit
993e38020f
@ -25,7 +25,7 @@ A detailed command line would be:
|
|||||||
-object memory-backend-ram,size=1024M,policy=bind,host-nodes=1,id=ram-node1 -numa node,nodeid=1,cpus=1,memdev=ram-node1
|
-object memory-backend-ram,size=1024M,policy=bind,host-nodes=1,id=ram-node1 -numa node,nodeid=1,cpus=1,memdev=ram-node1
|
||||||
-device pxb,id=bridge1,bus=pci.0,numa_node=1,bus_nr=4 -netdev user,id=nd -device e1000,bus=bridge1,addr=0x4,netdev=nd
|
-device pxb,id=bridge1,bus=pci.0,numa_node=1,bus_nr=4 -netdev user,id=nd -device e1000,bus=bridge1,addr=0x4,netdev=nd
|
||||||
-device pxb,id=bridge2,bus=pci.0,numa_node=0,bus_nr=8 -device e1000,bus=bridge2,addr=0x3
|
-device pxb,id=bridge2,bus=pci.0,numa_node=0,bus_nr=8 -device e1000,bus=bridge2,addr=0x3
|
||||||
-device pxb,id=bridge3,bus=pci.0,bus_nr=40 -drive if=none,id=drive0,file=[img] -device virtio-blk-pci,drive=drive0,scsi=off,bus=bridge3,addr=1
|
-device pxb,id=bridge3,bus=pci.0,bus_nr=40 -drive if=none,id=drive0,file=[img] -device virtio-blk-pci,drive=drive0,bus=bridge3,addr=1
|
||||||
|
|
||||||
Here you have:
|
Here you have:
|
||||||
- 2 NUMA nodes for the guest, 0 and 1. (both mapped to the same NUMA node in host, but you can and should put it in different host NUMA nodes)
|
- 2 NUMA nodes for the guest, 0 and 1. (both mapped to the same NUMA node in host, but you can and should put it in different host NUMA nodes)
|
||||||
|
@ -336,7 +336,7 @@ In case a pSeries machine is emulated, use the following command line:
|
|||||||
-tpmdev emulator,id=tpm0,chardev=chrtpm \
|
-tpmdev emulator,id=tpm0,chardev=chrtpm \
|
||||||
-device tpm-spapr,tpmdev=tpm0 \
|
-device tpm-spapr,tpmdev=tpm0 \
|
||||||
-device spapr-vscsi,id=scsi0,reg=0x00002000 \
|
-device spapr-vscsi,id=scsi0,reg=0x00002000 \
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x3,drive=drive-virtio-disk0,id=virtio-disk0 \
|
-device virtio-blk-pci,bus=pci.0,addr=0x3,drive=drive-virtio-disk0,id=virtio-disk0 \
|
||||||
-drive file=test.img,format=raw,if=none,id=drive-virtio-disk0
|
-drive file=test.img,format=raw,if=none,id=drive-virtio-disk0
|
||||||
|
|
||||||
In case an Arm virt machine is emulated, use the following command line:
|
In case an Arm virt machine is emulated, use the following command line:
|
||||||
|
@ -32,7 +32,7 @@ class IntelIOMMU(LinuxTest):
|
|||||||
|
|
||||||
def set_up_boot(self):
|
def set_up_boot(self):
|
||||||
path = self.download_boot()
|
path = self.download_boot()
|
||||||
self.vm.add_args('-device', 'virtio-blk-pci,bus=pcie.0,scsi=off,' +
|
self.vm.add_args('-device', 'virtio-blk-pci,bus=pcie.0,' +
|
||||||
'drive=drv0,id=virtio-disk0,bootindex=1,'
|
'drive=drv0,id=virtio-disk0,bootindex=1,'
|
||||||
'werror=stop,rerror=stop' + self.IOMMU_ADDON)
|
'werror=stop,rerror=stop' + self.IOMMU_ADDON)
|
||||||
self.vm.add_args('-device', 'virtio-gpu-pci' + self.IOMMU_ADDON)
|
self.vm.add_args('-device', 'virtio-gpu-pci' + self.IOMMU_ADDON)
|
||||||
|
@ -32,7 +32,7 @@ class SMMU(LinuxTest):
|
|||||||
|
|
||||||
def set_up_boot(self):
|
def set_up_boot(self):
|
||||||
path = self.download_boot()
|
path = self.download_boot()
|
||||||
self.vm.add_args('-device', 'virtio-blk-pci,bus=pcie.0,scsi=off,' +
|
self.vm.add_args('-device', 'virtio-blk-pci,bus=pcie.0,' +
|
||||||
'drive=drv0,id=virtio-disk0,bootindex=1,'
|
'drive=drv0,id=virtio-disk0,bootindex=1,'
|
||||||
'werror=stop,rerror=stop' + self.IOMMU_ADDON)
|
'werror=stop,rerror=stop' + self.IOMMU_ADDON)
|
||||||
self.vm.add_args('-drive',
|
self.vm.add_args('-drive',
|
||||||
|
@ -235,7 +235,7 @@ class TuxRunBaselineTest(QemuSystemTest):
|
|||||||
self.vm.add_args('-drive', 'file=' + qcow2.name +
|
self.vm.add_args('-drive', 'file=' + qcow2.name +
|
||||||
',format=qcow2,if=none,id='
|
',format=qcow2,if=none,id='
|
||||||
'drive-virtio-disk1',
|
'drive-virtio-disk1',
|
||||||
'-device', 'virtio-blk-pci,scsi=off,bus=pci.0,'
|
'-device', 'virtio-blk-pci,bus=pci.0,'
|
||||||
'addr=0xb,drive=drive-virtio-disk1,id=virtio-disk1'
|
'addr=0xb,drive=drive-virtio-disk1,id=virtio-disk1'
|
||||||
',bootindex=2')
|
',bootindex=2')
|
||||||
self.common_tuxrun(csums=sums, drive="scsi-hd")
|
self.common_tuxrun(csums=sums, drive="scsi-hd")
|
||||||
|
Loading…
Reference in New Issue
Block a user