diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-14 17:11:23 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-10-27 11:48:47 -0200 |
commit | d6bf279e7a949ad49a48a215f9ec28cb6ceb28aa (patch) | |
tree | 1dd1a3912113b2a12aa0bf295df8404c334627e8 /block_int.h | |
parent | de0b36b67ea3e1ab3aa1b6625c4fd5cb29fa0ada (diff) |
block: iostatus: Drop BDRV_IOS_INVAL
A future commit will convert bdrv_info() to the QAPI and it won't
provide IOS_INVAL.
Luckily all we have to do is to add a new 'iostatus_enabled'
member to BlockDriverState and use it instead.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'block_int.h')
-rw-r--r-- | block_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/block_int.h b/block_int.h index dac00f504f..3929ec90a5 100644 --- a/block_int.h +++ b/block_int.h @@ -202,6 +202,7 @@ struct BlockDriverState { drivers. They are not used by the block driver */ int cyls, heads, secs, translation; BlockErrorAction on_read_error, on_write_error; + bool iostatus_enabled; BlockIOStatus iostatus; char device_name[32]; unsigned long *dirty_bitmap; |