QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
694 B
32 lines
694 B
/*
|
|
* QEMU Enhanced Disk Format
|
|
*
|
|
* Copyright IBM, Corp. 2010
|
|
*
|
|
* Authors:
|
|
* Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU LGPL, version 2 or later.
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#include "qed.h"
|
|
|
|
void *gencb_alloc(size_t len, BlockDriverCompletionFunc *cb, void *opaque)
|
|
{
|
|
GenericCB *gencb = qemu_malloc(len);
|
|
gencb->cb = cb;
|
|
gencb->opaque = opaque;
|
|
return gencb;
|
|
}
|
|
|
|
void gencb_complete(void *opaque, int ret)
|
|
{
|
|
GenericCB *gencb = opaque;
|
|
BlockDriverCompletionFunc *cb = gencb->cb;
|
|
void *user_opaque = gencb->opaque;
|
|
|
|
qemu_free(gencb);
|
|
cb(user_opaque, ret);
|
|
}
|
|
|