From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoyOt-0006k1-9n for qemu-devel@nongnu.org; Fri, 06 Dec 2013 11:37:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VoyOm-00035q-1q for qemu-devel@nongnu.org; Fri, 06 Dec 2013 11:37:11 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27022) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoyOl-00035m-Pw for qemu-devel@nongnu.org; Fri, 06 Dec 2013 11:37:03 -0500 From: Stefan Hajnoczi Date: Fri, 6 Dec 2013 17:36:01 +0100 Message-Id: <1386347807-27359-3-git-send-email-stefanha@redhat.com> In-Reply-To: <1386347807-27359-1-git-send-email-stefanha@redhat.com> References: <1386347807-27359-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 02/48] coroutine: remove unused CoQueue AioContext List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Stefan Hajnoczi , Anthony Liguori From: Marc-Andr=C3=A9 Lureau The AioContext ctx field is apparently unused in qemu codebase since 02ffb504485. Signed-off-by: Marc-Andr=C3=A9 Lureau Signed-off-by: Stefan Hajnoczi --- 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; =20 /** --=20 1.8.4.2