From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVmfc-0004Cc-3T for qemu-devel@nongnu.org; Wed, 11 Mar 2015 15:52:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVmfa-0005Sa-Tx for qemu-devel@nongnu.org; Wed, 11 Mar 2015 15:51:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVmfa-0005SU-Ld for qemu-devel@nongnu.org; Wed, 11 Mar 2015 15:51:54 -0400 Date: Wed, 11 Mar 2015 20:51:44 +0100 From: "Michael S. Tsirkin" Message-ID: <20150311205144-mutt-send-email-mst@redhat.com> References: <1426096767-30494-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426096767-30494-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 21/25] virtio-scsi: drop duplicate CDB/SENSE SIZE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Cornelia Huck , Peter Maydell , Ming Lei , Fam Zheng , Paolo Bonzini This is duplicated from the kernel header, drop our copy. Signed-off-by: Michael S. Tsirkin --- include/hw/virtio/virtio-scsi.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h index de2c739..e4b531e 100644 --- a/include/hw/virtio/virtio-scsi.h +++ b/include/hw/virtio/virtio-scsi.h @@ -30,8 +30,6 @@ OBJECT_CHECK(VirtIOSCSI, (obj), TYPE_VIRTIO_SCSI) #define VIRTIO_SCSI_VQ_SIZE 128 -#define VIRTIO_SCSI_CDB_SIZE 32 -#define VIRTIO_SCSI_SENSE_SIZE 96 #define VIRTIO_SCSI_MAX_CHANNEL 0 #define VIRTIO_SCSI_MAX_TARGET 255 #define VIRTIO_SCSI_MAX_LUN 16383 -- MST