4 * Copyright IBM, Corp. 2010
7 * Gautham R Shenoy <ego@in.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.
15 #include "qemu-option.h"
16 #include "file-op-9p.h"
20 * A table to store the various file systems and their callback operations.
32 typedef struct FsTypeTable
{
38 * Structure to store the various fsdev's passed through command line.
40 typedef struct FsTypeEntry
{
47 typedef struct FsTypeListEntry
{
49 QTAILQ_ENTRY(FsTypeListEntry
) next
;
52 int qemu_fsdev_add(QemuOpts
*opts
);
53 FsTypeEntry
*get_fsdev_fsentry(char *id
);
54 extern FileOperations local_ops
;