Statistics
| Branch: | Revision:

root / hw / 9p.h @ 3d78499a

History | View | Annotate | Download (424 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
#include <stdbool.h>
18 9f107513 Anthony Liguori
19 9f107513 Anthony Liguori
typedef struct V9fsConf
20 9f107513 Anthony Liguori
{
21 9f107513 Anthony Liguori
    /* tag name for the device */
22 9f107513 Anthony Liguori
    char *tag;
23 9f107513 Anthony Liguori
    char *fsdev_id;
24 9f107513 Anthony Liguori
} V9fsConf;
25 9f107513 Anthony Liguori
26 9f107513 Anthony Liguori
#endif