Statistics
| Branch: | Revision:

root / hw / 9p.h @ ff753bb9

History | View | Annotate | Download (402 Bytes)

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