diff options
author | Paolo Bonzini | 2017-10-20 10:17:50 +0200 |
---|---|---|
committer | Paolo Bonzini | 2017-11-05 14:52:10 +0100 |
commit | ab37bfc7d64141e8fe4633744012140ee415648b (patch) | |
tree | e9a369bed5d0ff342b78ac35f31317a9165ee589 /scripts/device-crash-test | |
parent | Merge remote-tracking branch 'remotes/stsquad/tags/pull-ci-updates-for-softfr... (diff) | |
download | qemu-ab37bfc7d64141e8fe4633744012140ee415648b.tar.gz qemu-ab37bfc7d64141e8fe4633744012140ee415648b.tar.xz qemu-ab37bfc7d64141e8fe4633744012140ee415648b.zip |
pci-assign: Remove
Legacy PCI device assignment has been removed from Linux in 4.12,
and had been deprecated 2 years ago there. We can remove it from
QEMU as well.
The ROM loading code was shared with Xen PCI passthrough, so move
it to hw/xen.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/device-crash-test')
-rwxr-xr-x | scripts/device-crash-test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/device-crash-test b/scripts/device-crash-test index 043b24a4aa..c11fd81c52 100755 --- a/scripts/device-crash-test +++ b/scripts/device-crash-test @@ -102,7 +102,6 @@ ERROR_WHITELIST = [ {'device':'ivshmem', 'expected':True}, # You must specify either 'shm' or 'chardev' {'device':'ivshmem-doorbell', 'expected':True}, # You must specify a 'chardev' {'device':'ivshmem-plain', 'expected':True}, # You must specify a 'memdev' - {'device':'kvm-pci-assign', 'expected':True}, # no host device specified {'device':'loader', 'expected':True}, # please include valid arguments {'device':'nand', 'expected':True}, # Unsupported NAND block size 0x1 {'device':'nvdimm', 'expected':True}, # 'memdev' property is not set @@ -165,7 +164,6 @@ ERROR_WHITELIST = [ # KVM-specific devices shouldn't be tried without accel=kvm: {'accel':'(?!kvm).*', 'device':'kvmclock', 'expected':True}, - {'accel':'(?!kvm).*', 'device':'kvm-pci-assign', 'expected':True}, # xen-specific machines and devices: {'accel':'(?!xen).*', 'machine':'xen.*', 'expected':True}, |