mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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>
This commit is contained in:
parent
10479a8089
commit
da3dcefa64
2 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue