blob: d9951d6bcc1847fd641edf615ab8867e495deb73 [file] [log] [blame]
Anthony Liguori9f107512010-04-29 17:44:44 +05301/*
2 * Virtio 9p
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef QEMU_9P_H
15#define QEMU_9P_H
16
Anthony Liguori9f107512010-04-29 17:44:44 +053017typedef struct V9fsConf
18{
19 /* tag name for the device */
20 char *tag;
21 char *fsdev_id;
22} V9fsConf;
23
24#endif