mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00
block: add flush callback
This patch adds callback for flush request. This callback is responsible for flushing whole block devices stack. bdrv_flush function does not proceed to underlying devices. It should be performed by this callback function, if needed. Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
6278ae035f
commit
c32b82afaf
2 changed files with 14 additions and 0 deletions
|
@ -175,6 +175,13 @@ struct BlockDriver {
|
|||
void (*bdrv_invalidate_cache)(BlockDriverState *bs, Error **errp);
|
||||
int (*bdrv_inactivate)(BlockDriverState *bs);
|
||||
|
||||
/*
|
||||
* Flushes all data for all layers by calling bdrv_co_flush for underlying
|
||||
* layers, if needed. This function is needed for deterministic
|
||||
* synchronization of the flush finishing callback.
|
||||
*/
|
||||
int coroutine_fn (*bdrv_co_flush)(BlockDriverState *bs);
|
||||
|
||||
/*
|
||||
* Flushes all data that was already written to the OS all the way down to
|
||||
* the disk (for example raw-posix calls fsync()).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue