qemu-patch-raspberry4/stubs/blk-commit-all.c
Max Reitz fe1a9cbc33 block: Move some bdrv_*_all() functions to BB
Move bdrv_commit_all() and bdrv_flush_all() to the BlockBackend level.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2016-03-17 15:47:56 +01:00

9 lines
127 B
C

#include "qemu/osdep.h"
#include "qemu-common.h"
#include "sysemu/block-backend.h"
int blk_commit_all(void)
{
return 0;
}