From: Gonglei <arei.gong...@huawei.com> Remove bootindex form qdev property to qom, things will continue to work just fine, and we can use qom features which are not supported by qdev property.
Meanwhile set the initial value of bootindex to -1. Signed-off-by: Gonglei <arei.gong...@huawei.com> --- hw/block/virtio-blk.c | 1 + hw/ide/qdev.c | 1 + hw/scsi/scsi-disk.c | 2 +- hw/scsi/scsi-generic.c | 1 - include/hw/block/block.h | 1 - 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c index ccc1e1f..4fdae36 100644 --- a/hw/block/virtio-blk.c +++ b/hw/block/virtio-blk.c @@ -824,6 +824,7 @@ static void virtio_blk_instance_init(Object *obj) object_property_add(obj, "bootindex", "int", virtio_blk_get_bootindex, virtio_blk_set_bootindex, NULL, NULL, NULL); + object_property_set_int(obj, -1, "bootindex", NULL); } static Property virtio_blk_properties[] = { diff --git a/hw/ide/qdev.c b/hw/ide/qdev.c index 67ee098..af63b0a 100644 --- a/hw/ide/qdev.c +++ b/hw/ide/qdev.c @@ -219,6 +219,7 @@ static void ide_dev_instance_init(Object *obj) object_property_add(obj, "bootindex", "int", ide_dev_get_bootindex, ide_dev_set_bootindex, NULL, NULL, NULL); + object_property_set_int(obj, -1, "bootindex", NULL); } static int ide_hd_initfn(IDEDevice *dev) diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c index bc2deb9..cd236cb 100644 --- a/hw/scsi/scsi-disk.c +++ b/hw/scsi/scsi-disk.c @@ -2355,6 +2355,7 @@ void scsi_dev_instance_init(Object *obj) object_property_add(obj, "bootindex", "int", scsi_dev_get_bootindex, scsi_dev_set_bootindex, NULL, NULL, NULL); + object_property_set_int(obj, -1, "bootindex", NULL); } static const SCSIReqOps scsi_disk_emulate_reqops = { @@ -2708,7 +2709,6 @@ static const TypeInfo scsi_cd_info = { #ifdef __linux__ static Property scsi_block_properties[] = { DEFINE_PROP_DRIVE("drive", SCSIDiskState, qdev.conf.bs), - DEFINE_PROP_INT32("bootindex", SCSIDiskState, qdev.conf.bootindex, -1), DEFINE_PROP_END_OF_LIST(), }; diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c index 34f192b..4e3164f 100644 --- a/hw/scsi/scsi-generic.c +++ b/hw/scsi/scsi-generic.c @@ -483,7 +483,6 @@ static SCSIRequest *scsi_new_request(SCSIDevice *d, uint32_t tag, uint32_t lun, static Property scsi_generic_properties[] = { DEFINE_PROP_DRIVE("drive", SCSIDevice, conf.bs), - DEFINE_PROP_INT32("bootindex", SCSIDevice, conf.bootindex, -1), DEFINE_PROP_END_OF_LIST(), }; diff --git a/include/hw/block/block.h b/include/hw/block/block.h index 3a01488..867a226 100644 --- a/include/hw/block/block.h +++ b/include/hw/block/block.h @@ -49,7 +49,6 @@ static inline unsigned int get_physical_block_exp(BlockConf *conf) _conf.physical_block_size, 512), \ DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0), \ DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0), \ - DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1), \ DEFINE_PROP_UINT32("discard_granularity", _state, \ _conf.discard_granularity, -1) -- 1.7.12.4