From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44559) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJlxt-00049O-3A for qemu-devel@nongnu.org; Fri, 06 Feb 2015 11:41:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJlxs-0000hK-8X for qemu-devel@nongnu.org; Fri, 06 Feb 2015 11:41:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJlxs-0000hB-2J for qemu-devel@nongnu.org; Fri, 06 Feb 2015 11:41:08 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t16Gf7nH012535 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 6 Feb 2015 11:41:07 -0500 From: Kevin Wolf Date: Fri, 6 Feb 2015 17:40:18 +0100 Message-Id: <1423240849-15499-12-git-send-email-kwolf@redhat.com> In-Reply-To: <1423240849-15499-1-git-send-email-kwolf@redhat.com> References: <1423240849-15499-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 11/42] qed: Really remove unused field QEDAIOCB.finished List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com From: Fam Zheng The commit 533ffb17a that removed qed_aiocb_info.cancel said to remove this but didn't do it. Signed-off-by: Fam Zheng Signed-off-by: Kevin Wolf --- block/qed.h | 1 - 1 file changed, 1 deletion(-) diff --git a/block/qed.h b/block/qed.h index d3934a0..615e676 100644 --- a/block/qed.h +++ b/block/qed.h @@ -133,7 +133,6 @@ typedef struct QEDAIOCB { int bh_ret; /* final return status for completion bh */ QSIMPLEQ_ENTRY(QEDAIOCB) next; /* next request */ int flags; /* QED_AIOCB_* bits ORed together */ - bool *finished; /* signal for cancel completion */ uint64_t end_pos; /* request end on block device, in bytes */ /* User scatter-gather list */ -- 1.8.3.1