4 * Copyright IBM, Corp. 2010
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 FsDriverTable {
37 typedef struct FsDriverListEntry {
39 QTAILQ_ENTRY(FsDriverListEntry) next;
42 int qemu_fsdev_add(QemuOpts *opts);
43 FsDriverEntry *get_fsdev_fsentry(char *id);
44 extern FileOperations local_ops;
45 extern FileOperations handle_ops;
46 extern FileOperations synth_ops;
47 extern FileOperations proxy_ops;