diff options
author | KONRAD Frederic <fred.konrad@greensocs.com> | 2013-03-18 17:37:21 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-18 13:08:39 -0500 |
commit | da3dcefa648f92bfef2f99351fb6ec6a86da4695 (patch) | |
tree | 320dd326271af866823acacf00776bac3bd91699 /hw/virtio-blk.h | |
parent | 10479a80893fb2666026ce0fea2251be3070b6e2 (diff) | |
download | qemu-da3dcefa648f92bfef2f99351fb6ec6a86da4695.zip qemu-da3dcefa648f92bfef2f99351fb6ec6a86da4695.tar.gz qemu-da3dcefa648f92bfef2f99351fb6ec6a86da4695.tar.bz2 |
virtio-blk: don't use pointer for configuration.
The configuration field must not be a pointer as it will be used for virtio-blk
properties. So *blk is replaced by blk in VirtIOBlock structure.
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1363624648-16906-5-git-send-email-fred.konrad@greensocs.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/virtio-blk.h')
-rw-r--r-- | hw/virtio-blk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio-blk.h b/hw/virtio-blk.h index 19ec569..b704d50 100644 --- a/hw/virtio-blk.h +++ b/hw/virtio-blk.h @@ -118,7 +118,7 @@ typedef struct VirtIOBlock { void *rq; QEMUBH *bh; BlockConf *conf; - VirtIOBlkConf *blk; + VirtIOBlkConf blk; unsigned short sector_mask; DeviceState *qdev; VMChangeStateEntry *change; |