diff mbox

[PULL,02/48] coroutine: remove unused CoQueue AioContext

Message ID 1386347807-27359-3-git-send-email-stefanha@redhat.com
State New
Headers show

Commit Message

Stefan Hajnoczi Dec. 6, 2013, 4:36 p.m. UTC
From: Marc-André Lureau <marcandre.lureau@gmail.com>

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 | 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;
 
 /**