fuzz: fix the pro100 generic-fuzzer config
authorAlexander Bulekov <alxndr@bu.edu>
Sun, 21 Feb 2021 00:47:17 +0000 (19:47 -0500)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 16 Mar 2021 18:19:54 +0000 (14:19 -0400)
The device-type names for the pro100 network cards, are i8255.. We were
matching "eepro", which catches the PCI PIO/MMIO regions for those
devices, however misses the actual PCI device, which we use to map the
BARs, before fuzzing. Fix that

Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tests/qtest/fuzz/generic_fuzz_configs.h

index 5d599765c4bfe06adf30f5dbad5d653f5af9c69d..2454c627ff8c3382faa2e8850b64d8016bb13b8a 100644 (file)
@@ -177,7 +177,7 @@ const generic_fuzz_config predefined_configs[] = {
         .name = "i82550",
         .args = "-machine q35 -nodefaults "
         "-device i82550,netdev=net0 -netdev user,id=net0",
-        .objects = "eepro*"
+        .objects = "i8255*"
     },{
         .name = "sdhci-v3",
         .args = "-nodefaults -device sdhci-pci,sd-spec-version=3 "