aboutsummaryrefslogtreecommitdiff
path: root/block/io.c
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2019-07-19 11:26:12 +0200
committerKevin Wolf <kwolf@redhat.com>2019-07-19 13:19:16 +0200
commitf4c8a43be080fc919bc1ba18e70d83eb0e5be7ec (patch)
tree86b12767969f07578637f5b9e9e70d88dd00e0da /block/io.c
parent8e1da77e6e4866876236d0f0c7b02dea87efd2a4 (diff)
downloadqemu-f4c8a43be080fc919bc1ba18e70d83eb0e5be7ec.zip
qemu-f4c8a43be080fc919bc1ba18e70d83eb0e5be7ec.tar.gz
qemu-f4c8a43be080fc919bc1ba18e70d83eb0e5be7ec.tar.bz2
block: Make bdrv_parent_drained_[^_]*() static
These functions are not used outside of block/io.c, there is no reason why they should be globally available. Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/io.c')
-rw-r--r--block/io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/block/io.c b/block/io.c
index c42e18b..b0b3317 100644
--- a/block/io.c
+++ b/block/io.c
@@ -42,8 +42,8 @@ static void bdrv_parent_cb_resize(BlockDriverState *bs);
static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
int64_t offset, int bytes, BdrvRequestFlags flags);
-void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
- bool ignore_bds_parents)
+static void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
+ bool ignore_bds_parents)
{
BdrvChild *c, *next;
@@ -64,8 +64,8 @@ void bdrv_parent_drained_end_single(BdrvChild *c)
}
}
-void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
- bool ignore_bds_parents)
+static void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
+ bool ignore_bds_parents)
{
BdrvChild *c, *next;