mirror of https://gitee.com/openkylin/qemu.git
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>
This commit is contained in:
parent
8e1da77e6e
commit
f4c8a43be0
|
@ -42,8 +42,8 @@ static void bdrv_parent_cb_resize(BlockDriverState *bs);
|
||||||
static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
|
static int coroutine_fn bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
|
||||||
int64_t offset, int bytes, BdrvRequestFlags flags);
|
int64_t offset, int bytes, BdrvRequestFlags flags);
|
||||||
|
|
||||||
void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
|
static void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
|
||||||
bool ignore_bds_parents)
|
bool ignore_bds_parents)
|
||||||
{
|
{
|
||||||
BdrvChild *c, *next;
|
BdrvChild *c, *next;
|
||||||
|
|
||||||
|
@ -64,8 +64,8 @@ void bdrv_parent_drained_end_single(BdrvChild *c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
|
static void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
|
||||||
bool ignore_bds_parents)
|
bool ignore_bds_parents)
|
||||||
{
|
{
|
||||||
BdrvChild *c, *next;
|
BdrvChild *c, *next;
|
||||||
|
|
||||||
|
|
|
@ -600,15 +600,6 @@ int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo);
|
||||||
void bdrv_io_plug(BlockDriverState *bs);
|
void bdrv_io_plug(BlockDriverState *bs);
|
||||||
void bdrv_io_unplug(BlockDriverState *bs);
|
void bdrv_io_unplug(BlockDriverState *bs);
|
||||||
|
|
||||||
/**
|
|
||||||
* bdrv_parent_drained_begin:
|
|
||||||
*
|
|
||||||
* Begin a quiesced section of all users of @bs. This is part of
|
|
||||||
* bdrv_drained_begin.
|
|
||||||
*/
|
|
||||||
void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore,
|
|
||||||
bool ignore_bds_parents);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* bdrv_parent_drained_begin_single:
|
* bdrv_parent_drained_begin_single:
|
||||||
*
|
*
|
||||||
|
@ -624,15 +615,6 @@ void bdrv_parent_drained_begin_single(BdrvChild *c, bool poll);
|
||||||
*/
|
*/
|
||||||
void bdrv_parent_drained_end_single(BdrvChild *c);
|
void bdrv_parent_drained_end_single(BdrvChild *c);
|
||||||
|
|
||||||
/**
|
|
||||||
* bdrv_parent_drained_end:
|
|
||||||
*
|
|
||||||
* End a quiesced section of all users of @bs. This is part of
|
|
||||||
* bdrv_drained_end.
|
|
||||||
*/
|
|
||||||
void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore,
|
|
||||||
bool ignore_bds_parents);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* bdrv_drain_poll:
|
* bdrv_drain_poll:
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue