From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnEVe-0007RC-1U for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:25:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VnEVU-00085V-Ez for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:24:57 -0500 Received: from mail-qe0-x236.google.com ([2607:f8b0:400d:c02::236]:58013) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnEVU-00085O-8I for qemu-devel@nongnu.org; Sun, 01 Dec 2013 16:24:48 -0500 Received: by mail-qe0-f54.google.com with SMTP id cy11so10833440qeb.27 for ; Sun, 01 Dec 2013 13:24:47 -0800 (PST) From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Sun, 1 Dec 2013 22:23:47 +0100 Message-Id: <1385933027-21261-15-git-send-email-marcandre.lureau@gmail.com> In-Reply-To: <1385933027-21261-1-git-send-email-marcandre.lureau@gmail.com> References: <1385933027-21261-1-git-send-email-marcandre.lureau@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCHv2 14/14] coroutine: remove unused CoQueue AioContext List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , kraxel@redhat.com The AioContext ctx field is apparently unused in qemu codebase since 02ffb504485. Signed-off-by: Marc-André Lureau --- include/block/coroutine.h | 1 - 1 file changed, 1 deletion(-) 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; /** -- 1.8.4.2