diff options
author | Cornelia Huck | 2017-07-17 11:07:57 +0200 |
---|---|---|
committer | Cornelia Huck | 2017-08-30 18:23:25 +0200 |
commit | 21eb052cf2934fcf94e671f0a84d596874538459 (patch) | |
tree | 8e1750be3e6fffcd6d3a362aa9a0bc6d5727ac07 /target | |
parent | s390x: chsc nt2 events are pci-only (diff) | |
download | qemu-21eb052cf2934fcf94e671f0a84d596874538459.tar.gz qemu-21eb052cf2934fcf94e671f0a84d596874538459.tar.xz qemu-21eb052cf2934fcf94e671f0a84d596874538459.zip |
s390x/pci: do not advertise pci on non-pci builds
Only set the zpci feature bit on builds that actually support pci.
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/s390x/kvm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c index c4c5791d27..bc62bba5b7 100644 --- a/target/s390x/kvm.c +++ b/target/s390x/kvm.c @@ -2662,7 +2662,9 @@ void kvm_s390_get_host_cpu_model(S390CPUModel *model, Error **errp) } /* We emulate a zPCI bus and AEN, therefore we don't need HW support */ - set_bit(S390_FEAT_ZPCI, model->features); + if (pci_available) { + set_bit(S390_FEAT_ZPCI, model->features); + } set_bit(S390_FEAT_ADAPTER_EVENT_NOTIFICATION, model->features); if (s390_known_cpu_type(cpu_type)) { |