diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-11-18 17:16:24 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-06-26 14:51:14 +0200 |
commit | 29470d11bf310de58e05ceadd61f25e6ed9ea8de (patch) | |
tree | a9ed7e2a68effae8082f911c82dd5bd6373fcbd5 /block/qed.h | |
parent | 602b57fba48e3fcbda82112275c86d0f1873bbd3 (diff) |
qed: Remove GenericCB
The GenericCB infrastructure isn't used any more. Remove it.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block/qed.h')
-rw-r--r-- | block/qed.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/block/qed.h b/block/qed.h index 6ab57025e1..46843c463b 100644 --- a/block/qed.h +++ b/block/qed.h @@ -202,17 +202,6 @@ void qed_acquire(BDRVQEDState *s); void qed_release(BDRVQEDState *s); /** - * Generic callback for chaining async callbacks - */ -typedef struct { - BlockCompletionFunc *cb; - void *opaque; -} GenericCB; - -void *gencb_alloc(size_t len, BlockCompletionFunc *cb, void *opaque); -void gencb_complete(void *opaque, int ret); - -/** * Header functions */ int qed_write_header_sync(BDRVQEDState *s); |