diff options
| author | Markus Armbruster <armbru@redhat.com> | 2011-07-20 18:23:41 +0200 |
|---|---|---|
| committer | Kevin Wolf <kwolf@redhat.com> | 2011-08-01 12:10:28 +0200 |
| commit | 7bf37feddcfa527304cfdc02bd2db8912ee9bf8c (patch) | |
| tree | 2e7084c75e2a1cbd4a512d80db5638ab80b8bcf7 /block_int.h | |
| parent | 02266d547a6c7b10e1ac1574ec69b92f4e28f817 (diff) | |
| download | focaccia-qemu-7bf37feddcfa527304cfdc02bd2db8912ee9bf8c.tar.gz focaccia-qemu-7bf37feddcfa527304cfdc02bd2db8912ee9bf8c.zip | |
block: Make BlockDriver method bdrv_set_locked() return void
The only caller is bdrv_set_locked(), and it ignores the value. Callees always return 0, except for FreeBSD's cdrom_set_locked(), which returns -ENOTSUP when the device is in a terminally wedged state. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block_int.h')
| -rw-r--r-- | block_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block_int.h b/block_int.h index efb68038c4..e0b638c116 100644 --- a/block_int.h +++ b/block_int.h @@ -113,7 +113,7 @@ struct BlockDriver { int (*bdrv_is_inserted)(BlockDriverState *bs); int (*bdrv_media_changed)(BlockDriverState *bs); int (*bdrv_eject)(BlockDriverState *bs, int eject_flag); - int (*bdrv_set_locked)(BlockDriverState *bs, int locked); + void (*bdrv_set_locked)(BlockDriverState *bs, int locked); /* to control generic scsi devices */ int (*bdrv_ioctl)(BlockDriverState *bs, unsigned long int req, void *buf); |