Skip to content

Commit

Permalink
block: Drop bdrv_em_aiocb_info.cancel
Browse files Browse the repository at this point in the history
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
  • Loading branch information
Fam Zheng authored and stefanhaRH committed Sep 22, 2014
1 parent 3acabd6 commit f600ac1
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions block.c
Expand Up @@ -4681,18 +4681,8 @@ typedef struct BlockDriverAIOCBSync {
int is_write;
} BlockDriverAIOCBSync;

static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
{
BlockDriverAIOCBSync *acb =
container_of(blockacb, BlockDriverAIOCBSync, common);
qemu_bh_delete(acb->bh);
acb->bh = NULL;
qemu_aio_release(acb);
}

static const AIOCBInfo bdrv_em_aiocb_info = {
.aiocb_size = sizeof(BlockDriverAIOCBSync),
.cancel = bdrv_aio_cancel_em,
};

static void bdrv_aio_bh_cb(void *opaque)
Expand Down

0 comments on commit f600ac1

Please sign in to comment.