coroutine: remove unused CoQueue AioContext
authorMarc-André Lureau <marcandre.lureau@gmail.com>
Sun, 1 Dec 2013 21:23:47 +0000 (22:23 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Mon, 2 Dec 2013 16:11:49 +0000 (17:11 +0100)
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>
include/block/coroutine.h

index b122c0c4fb59b39485eb4af4f59706c3ffbaadaf..a1797ae3d858e329f437620e2e6ad21381dbe57b 100644 (file)
@@ -105,7 +105,6 @@ bool qemu_in_coroutine(void);
  */
 typedef struct CoQueue {
     QTAILQ_HEAD(, Coroutine) entries;
-    AioContext *ctx;
 } CoQueue;
 
 /**