2020-09-24 18:54:10 +00:00
|
|
|
/*
|
|
|
|
* Block layer I/O functions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2022-05-06 13:49:08 +00:00
|
|
|
#ifndef BLOCK_COROUTINES_H
|
|
|
|
#define BLOCK_COROUTINES_H
|
2020-09-24 18:54:10 +00:00
|
|
|
|
|
|
|
#include "block/block_int.h"
|
|
|
|
|
2021-10-06 13:17:12 +00:00
|
|
|
/* For blk_bs() in generated block/block-gen.c */
|
|
|
|
#include "sysemu/block-backend.h"
|
|
|
|
|
2022-03-03 15:16:09 +00:00
|
|
|
/*
|
|
|
|
* I/O API functions. These functions are thread-safe.
|
|
|
|
*
|
|
|
|
* See include/block/block-io.h for more information about
|
|
|
|
* the I/O API.
|
|
|
|
*/
|
|
|
|
|
2022-12-07 13:18:38 +00:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix);
|
|
|
|
|
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp);
|
2020-09-24 18:54:10 +00:00
|
|
|
|
2023-02-03 15:21:43 +00:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
2020-09-24 18:54:10 +00:00
|
|
|
bdrv_co_common_block_status_above(BlockDriverState *bs,
|
|
|
|
BlockDriverState *base,
|
2020-09-24 19:40:00 +00:00
|
|
|
bool include_base,
|
2020-09-24 18:54:10 +00:00
|
|
|
bool want_zero,
|
|
|
|
int64_t offset,
|
|
|
|
int64_t bytes,
|
|
|
|
int64_t *pnum,
|
|
|
|
int64_t *map,
|
2020-10-27 05:05:53 +00:00
|
|
|
BlockDriverState **file,
|
|
|
|
int *depth);
|
2022-03-03 15:16:09 +00:00
|
|
|
|
2022-12-07 13:18:38 +00:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
|
|
|
|
|
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
|
|
|
bdrv_co_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
|
2022-03-03 15:16:09 +00:00
|
|
|
|
2023-05-04 11:57:40 +00:00
|
|
|
int coroutine_fn GRAPH_RDLOCK
|
2022-04-14 17:57:51 +00:00
|
|
|
nbd_co_do_establish_connection(BlockDriverState *bs, bool blocking,
|
|
|
|
Error **errp);
|
2022-03-03 15:16:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "I/O or GS" API functions. These functions can run without
|
|
|
|
* the BQL, but only in one specific iothread/main loop.
|
|
|
|
*
|
|
|
|
* See include/block/block-io.h for more information about
|
|
|
|
* the "I/O or GS" API.
|
|
|
|
*/
|
|
|
|
|
2022-12-07 13:18:37 +00:00
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
2020-09-24 18:54:10 +00:00
|
|
|
bdrv_common_block_status_above(BlockDriverState *bs,
|
|
|
|
BlockDriverState *base,
|
2020-09-24 19:40:00 +00:00
|
|
|
bool include_base,
|
2020-09-24 18:54:10 +00:00
|
|
|
bool want_zero,
|
|
|
|
int64_t offset,
|
|
|
|
int64_t bytes,
|
|
|
|
int64_t *pnum,
|
|
|
|
int64_t *map,
|
2020-10-27 05:05:53 +00:00
|
|
|
BlockDriverState **file,
|
|
|
|
int *depth);
|
2023-05-04 11:57:40 +00:00
|
|
|
|
|
|
|
int co_wrapper_mixed_bdrv_rdlock
|
2022-04-14 17:57:51 +00:00
|
|
|
nbd_do_establish_connection(BlockDriverState *bs, bool blocking, Error **errp);
|
2021-06-10 10:08:00 +00:00
|
|
|
|
2022-05-06 13:49:08 +00:00
|
|
|
#endif /* BLOCK_COROUTINES_H */
|