From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGHmw-0004hC-9u for qemu-devel@nongnu.org; Tue, 27 Jan 2015 20:51:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGHmq-0003gt-0K for qemu-devel@nongnu.org; Tue, 27 Jan 2015 20:51:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53330) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGHmp-0003ge-Q1 for qemu-devel@nongnu.org; Tue, 27 Jan 2015 20:51:19 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t0S1pICb015418 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 27 Jan 2015 20:51:18 -0500 From: Fam Zheng Date: Wed, 28 Jan 2015 09:51:13 +0800 Message-Id: <1422409873-23149-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH] 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: Kevin Wolf , Stefan Hajnoczi The commit 533ffb17a that removed qed_aiocb_info.cancel said to remove this but didn't do it. Signed-off-by: Fam Zheng --- 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.9.3