From: Marc-André Lureau Date: Sun, 1 Dec 2013 21:23:47 +0000 (+0100) Subject: coroutine: remove unused CoQueue AioContext X-Git-Tag: v2.0.0-rc0~195^2~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b6b145dbc62162df818dc2c5153defd0417c688;p=thirdparty%2Fqemu.git coroutine: remove unused CoQueue AioContext The AioContext ctx field is apparently unused in qemu codebase since 02ffb504485. Signed-off-by: Marc-André Lureau Signed-off-by: Stefan Hajnoczi --- diff --git a/include/block/coroutine.h b/include/block/coroutine.h index b122c0c4fb5..a1797ae3d85 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; /**