From eddb102e86f61d4b71877f8ac268ebc4bf7265bf Mon Sep 17 00:00:00 2001 From: Fam Zheng Date: Wed, 11 Jun 2014 12:11:47 +0800 Subject: virtio-blk: Use VirtIOBlockReq.in to drop VirtIOBlockReq.inhdr In current virtio spec, inhdr is a single byte, and is unlikely to change for both functionality and compatibility considerations. Non-dataplane uses .in, and we are on the way to converge them. So let's unify it to get cleaner code. Remove .inhdr and use .in. Signed-off-by: Fam Zheng Reviewed-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- include/hw/virtio/virtio-blk.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include') diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h index 4211cd645f..b495e42d6d 100644 --- a/include/hw/virtio/virtio-blk.h +++ b/include/hw/virtio/virtio-blk.h @@ -142,10 +142,6 @@ typedef struct VirtIOBlockReq { QEMUIOVector qiov; struct VirtIOBlockReq *next; BlockAcctCookie acct; - -#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE - QEMUIOVector *inhdr; /* iovecs for virtio_blk_inhdr */ -#endif } VirtIOBlockReq; #define DEFINE_VIRTIO_BLK_FEATURES(_state, _field) \ -- cgit v1.2.3