From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMxXZ-00051r-ML for qemu-devel@nongnu.org; Sun, 15 Feb 2015 06:39:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMxXV-0007qE-2O for qemu-devel@nongnu.org; Sun, 15 Feb 2015 06:39:09 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56765) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMxXU-0007q0-Py for qemu-devel@nongnu.org; Sun, 15 Feb 2015 06:39:04 -0500 Date: Sun, 15 Feb 2015 12:38:52 +0100 From: "Michael S. Tsirkin" Message-ID: <1423999136-17320-7-git-send-email-mst@redhat.com> References: <1423999136-17320-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1423999136-17320-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH v2 06/17] virtio-9p: use standard headers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Stefan Hajnoczi , Alexander Graf , "Aneesh Kumar K.V" , Anthony Liguori , Cornelia Huck , "Chen, Tiejun" Drop code duplicated from standard headers. Signed-off-by: Michael S. Tsirkin --- hw/9pfs/virtio-9p.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h index 0776424..2b1fbdd 100644 --- a/hw/9pfs/virtio-9p.h +++ b/hw/9pfs/virtio-9p.h @@ -7,6 +7,7 @@ #include #include #include +#include "standard-headers/sys/virtio_9p.h" #include "hw/virtio/virtio.h" #include "hw/virtio/virtio-9p.h" #include "fsdev/file-op-9p.h" @@ -14,10 +15,6 @@ #include "qemu/thread.h" #include "block/coroutine.h" -/* The feature bitmap for virtio 9P */ -/* The mount point is specified in a config variable */ -#define VIRTIO_9P_MOUNT_TAG 0 - enum { P9_TLERROR = 6, P9_RLERROR, @@ -145,10 +142,6 @@ struct V9fsPDU * 1) change user needs to set groups and stuff */ -/* from Linux's linux/virtio_9p.h */ - -/* The ID for virtio console */ -#define VIRTIO_ID_9P 9 #define MAX_REQ 128 #define MAX_TAG_LEN 32 @@ -278,14 +271,6 @@ typedef struct V9fsWriteState { int cnt; } V9fsWriteState; -struct virtio_9p_config -{ - /* number of characters in tag */ - uint16_t tag_len; - /* Variable size tag name */ - uint8_t tag[0]; -} QEMU_PACKED; - typedef struct V9fsMkState { V9fsPDU *pdu; size_t offset; -- MST