virtio-blk: move x-data-plane qdev property to virtio-blk.h
[qemu/qmp-unstable.git] / include / hw / virtio / virtio-9p.h
blob65789db1317fc81f6f31d21b0abae699d51c7e9d
1 /*
2 * Virtio 9p
4 * Copyright IBM, Corp. 2010
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef QEMU_VIRTIO_9P_DEVICE_H
15 #define QEMU_VIRTIO_9P_DEVICE_H
17 typedef struct V9fsConf
19 /* tag name for the device */
20 char *tag;
21 char *fsdev_id;
22 } V9fsConf;
24 #endif