From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsMwy-0000Y8-I1 for qemu-devel@nongnu.org; Wed, 04 Jun 2014 21:58:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsMwt-0007u4-2Q for qemu-devel@nongnu.org; Wed, 04 Jun 2014 21:58:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsMws-0007tz-QY for qemu-devel@nongnu.org; Wed, 04 Jun 2014 21:58:34 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s551wXHA004309 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 4 Jun 2014 21:58:33 -0400 From: Fam Zheng Date: Thu, 5 Jun 2014 09:58:38 +0800 Message-Id: <1401933526-22436-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/8] virtio-blk: Converge VirtIOBlockRequest into VirtIOBlockReq List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Paolo Bonzini , Stefan Hajnoczi This unifies the request structure used by dataplane and non-dataplane code, while dropping unnessary fields for bounce buffer and read flag. Applies on top of Stefan's block tree. v2: Address Paolo's comments. Thanks for reviewing! [03/08] virtio-blk: Drop bounce buffer from dataplane code Moved to front. [04/08] virtio-blk: Drop VirtIOBlockRequest.read Moved to front. [05/08] virtio-blk: Replace VirtIOBlockRequest with VirtIOBlockReq Also drop ->s with ->dev->dataplane. Fill in ->dev in dataplane code. [06/08] virtio-blk: Use VirtIOBlockReq.in to drop VirtIOBlockReq.inhdr New. [07/08] virtio-blk: Convert VirtIOBlockReq.out to structrue New. [08/08] virtio-blk: Fill in VirtIOBlockReq.out in dataplane code New. Fam Zheng (8): virtio-blk: Move VirtIOBlockReq to header virtio-blk: Convert VirtIOBlockReq.elem to pointer virtio-blk: Drop bounce buffer from dataplane code virtio-blk: Drop VirtIOBlockRequest.read virtio-blk: Replace VirtIOBlockRequest with VirtIOBlockReq virtio-blk: Use VirtIOBlockReq.in to drop VirtIOBlockReq.inhdr virtio-blk: Convert VirtIOBlockReq.out to structrue virtio-blk: Fill in VirtIOBlockReq.out in dataplane code hw/block/dataplane/virtio-blk.c | 118 ++++++++++++---------------------------- hw/block/virtio-blk.c | 108 ++++++++++++++++++------------------ include/hw/virtio/virtio-blk.h | 11 ++++ 3 files changed, 103 insertions(+), 134 deletions(-) -- 2.0.0