From: Marc-André Lureau Date: Sun, 1 Dec 2013 21:23:47 +0000 (+0100) Subject: coroutine: remove unused CoQueue AioContext X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7b6b145dbc62162df818dc2c5153defd0417c688;p=qemu.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 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; /**