Home
last modified time | relevance | path

Searched refs:bdrv_co_ioctl (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/block/
H A Draw-format.c454 return bdrv_co_ioctl(bs->file->bs, req, buf); in raw_co_ioctl()
669 .bdrv_co_ioctl = &raw_co_ioctl,
H A Dio.c3193 int coroutine_fn bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf) in bdrv_co_ioctl() function
3204 if (!drv || (!drv->bdrv_aio_ioctl && !drv->bdrv_co_ioctl)) { in bdrv_co_ioctl()
3209 if (drv->bdrv_co_ioctl) { in bdrv_co_ioctl()
3210 co.ret = drv->bdrv_co_ioctl(bs, req, buf); in bdrv_co_ioctl()
H A Dfile-posix.c4288 .bdrv_co_ioctl = hdev_co_ioctl,
4419 .bdrv_co_ioctl = hdev_co_ioctl,
H A Dblock-backend.c1737 return bdrv_co_ioctl(blk_bs(blk), req, buf); in blk_co_do_ioctl()
/openbmc/qemu/include/block/
H A Dblock-io.h107 bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf);
H A Dblock_int-common.h763 int coroutine_fn GRAPH_RDLOCK_PTR (*bdrv_co_ioctl)( member