From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVgur-0005MI-DE for qemu-devel@nongnu.org; Wed, 11 Mar 2015 09:43:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVguq-0005dp-HB for qemu-devel@nongnu.org; Wed, 11 Mar 2015 09:43:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57829) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVguq-0005da-4Q for qemu-devel@nongnu.org; Wed, 11 Mar 2015 09:43:16 -0400 Date: Wed, 11 Mar 2015 14:43:02 +0100 From: "Michael S. Tsirkin" Message-ID: <20150311144302-mutt-send-email-mst@redhat.com> References: <1426081233-7801-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426081233-7801-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 1/4] 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: Fam Zheng , Nikunj A Dadhania , Alexey Kardashevskiy , Ming Lei , Cornelia Huck , 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