diff mbox

[PATCHv2,14/14] coroutine: remove unused CoQueue AioContext

Message ID 1385933027-21261-15-git-send-email-marcandre.lureau@gmail.com
State New
Headers show

Commit Message

Marc-André Lureau Dec. 1, 2013, 9:23 p.m. UTC
The AioContext ctx field is apparently unused in qemu codebase since
02ffb504485.

Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com>
---
 include/block/coroutine.h | 1 -
 1 file changed, 1 deletion(-)
diff mbox

Patch

diff --git a/include/block/coroutine.h b/include/block/coroutine.h
index b122c0c..a1797ae 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;
 
 /**