diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-06-02 18:55:17 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-06-15 09:41:59 +0200 |
commit | abd7f68d081ef5adb425f659c7449149987bf89e (patch) | |
tree | 0bb8f33deaa33cc945b69ef7ba549b07babacb06 /block.c | |
parent | 2063392ae5d00a9ea13039f971e2b9e61bd68dbc (diff) |
block: Move error actions from DriveInfo to BlockDriverState
That's where they belong semantically (block device host part), even
though the actions are actually executed by guest device code.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1206,6 +1206,18 @@ int bdrv_get_translation_hint(BlockDriverState *bs) return bs->translation; } +void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error, + BlockErrorAction on_write_error) +{ + bs->on_read_error = on_read_error; + bs->on_write_error = on_write_error; +} + +BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read) +{ + return is_read ? bs->on_read_error : bs->on_write_error; +} + int bdrv_is_removable(BlockDriverState *bs) { return bs->removable; |