summaryrefslogtreecommitdiff
path: root/include/block
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-12-01 22:23:47 +0100
committerStefan Hajnoczi <stefanha@redhat.com>2013-12-02 17:11:49 +0100
commit7b6b145dbc62162df818dc2c5153defd0417c688 (patch)
tree530e940f7a6e193881f00518f7d6cb7c24b58eac /include/block
parentf287c41381efe172ff5dc62498e2afc83a9ab995 (diff)
downloadqemu-7b6b145dbc62162df818dc2c5153defd0417c688.tar.gz
coroutine: remove unused CoQueue AioContext
The AioContext ctx field is apparently unused in qemu codebase since 02ffb504485. Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r--include/block/coroutine.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/block/coroutine.h b/include/block/coroutine.h
index b122c0c4fb..a1797ae3d8 100644
--- a/include/block/coroutine.h
+++ b/include/block/coroutine.h
@@ -105,7 +105,6 @@ bool qemu_in_coroutine(void);
*/
typedef struct CoQueue {
QTAILQ_HEAD(, Coroutine) entries;
- AioContext *ctx;
} CoQueue;
/**