mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
block: remove 'dirty-bitmaps' field from 'BlockInfo' struct
The same data is available in the 'BlockDeviceInfo' struct. Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
81cbfd5088
commit
e67d8e2928
10 changed files with 23 additions and 37 deletions
|
@ -539,9 +539,6 @@
|
|||
# @tray_open: True if the device's tray is open
|
||||
# (only present if it has a tray)
|
||||
#
|
||||
# @dirty-bitmaps: dirty bitmaps information (only present if the
|
||||
# driver has one or more dirty bitmaps) (Since 2.0)
|
||||
#
|
||||
# @io-status: @BlockDeviceIoStatus. Only present if the device
|
||||
# supports it and the VM is configured to stop on errors
|
||||
# (supported device models: virtio-blk, IDE, SCSI except
|
||||
|
@ -550,18 +547,12 @@
|
|||
# @inserted: @BlockDeviceInfo describing the device if media is
|
||||
# present
|
||||
#
|
||||
# Features:
|
||||
# @deprecated: Member @dirty-bitmaps is deprecated. Use @inserted
|
||||
# member @dirty-bitmaps instead.
|
||||
#
|
||||
# Since: 0.14
|
||||
##
|
||||
{ 'struct': 'BlockInfo',
|
||||
'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
|
||||
'locked': 'bool', '*inserted': 'BlockDeviceInfo',
|
||||
'*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
|
||||
'*dirty-bitmaps': { 'type': ['BlockDirtyInfo'],
|
||||
'features': [ 'deprecated' ] } } }
|
||||
'*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus' } }
|
||||
|
||||
##
|
||||
# @BlockMeasureInfo:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue