diff options
author | Thomas Huth <thuth@redhat.com> | 2017-07-12 14:49:49 +0200 |
---|---|---|
committer | Christian Borntraeger <borntraeger@de.ibm.com> | 2017-07-14 12:29:48 +0200 |
commit | 59efbff1cb9dab4b02cadd639474ce1fee19277d (patch) | |
tree | fc1111840b2140958815cb925bb6185a18e2728f /pc-bios/s390-ccw/virtio.h | |
parent | ac7bec7cf9a203607b96935519457086e53b6b1f (diff) | |
download | qemu-59efbff1cb9dab4b02cadd639474ce1fee19277d.zip qemu-59efbff1cb9dab4b02cadd639474ce1fee19277d.tar.gz qemu-59efbff1cb9dab4b02cadd639474ce1fee19277d.tar.bz2 |
pc-bios/s390-ccw: Add code for virtio feature negotiation
The upcoming virtio-net driver needs to negotiate some features,
so we need the possibility to do this in the core virtio code.
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1499863793-18627-8-git-send-email-thuth@redhat.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'pc-bios/s390-ccw/virtio.h')
-rw-r--r-- | pc-bios/s390-ccw/virtio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pc-bios/s390-ccw/virtio.h b/pc-bios/s390-ccw/virtio.h index d733780..a00a320 100644 --- a/pc-bios/s390-ccw/virtio.h +++ b/pc-bios/s390-ccw/virtio.h @@ -251,6 +251,7 @@ struct VDev { ScsiDevice selected_scsi_device; uint64_t netboot_start_addr; uint32_t max_transfer; + uint32_t guest_features[2]; }; typedef struct VDev VDev; |