9db221ae73
This patch create a synthetic file system with mount tag v_synth when -virtfs_synth command line option is specified in qemu. The synthetic file system can be mounted in guest using 9p using the below command line mount -t 9p -oversion=9p2000.L,trans=virtio v_synth <mountpint> Synthetic file system enabled different qemu subsystem to register callbacks for read and write events from guest. The subsystem can create directories and files in the synthetic file system as show in ex below qemu_v9fs_synth_mkdir(NULL, 0777, "test2", &node); qemu_v9fs_synth_add_file(node, 0777, "testfile", my_test_read, NULL, NULL); Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/*
|
|
* Virtio 9p
|
|
*
|
|
* Copyright IBM, Corp. 2010
|
|
*
|
|
* Authors:
|
|
* Gautham R Shenoy <ego@in.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
#ifndef QEMU_FSDEV_H
|
|
#define QEMU_FSDEV_H
|
|
#include "qemu-option.h"
|
|
#include "file-op-9p.h"
|
|
|
|
|
|
/*
|
|
* A table to store the various file systems and their callback operations.
|
|
* -----------------
|
|
* fstype | ops
|
|
* -----------------
|
|
* local | local_ops
|
|
* . |
|
|
* . |
|
|
* . |
|
|
* . |
|
|
* -----------------
|
|
* etc
|
|
*/
|
|
typedef struct FsDriverTable {
|
|
const char *name;
|
|
FileOperations *ops;
|
|
} FsDriverTable;
|
|
|
|
/*
|
|
* Structure to store the various fsdev's passed through command line.
|
|
*/
|
|
typedef struct FsDriverEntry {
|
|
char *fsdev_id;
|
|
char *path;
|
|
int export_flags;
|
|
FileOperations *ops;
|
|
} FsDriverEntry;
|
|
|
|
typedef struct FsDriverListEntry {
|
|
FsDriverEntry fse;
|
|
QTAILQ_ENTRY(FsDriverListEntry) next;
|
|
} FsDriverListEntry;
|
|
|
|
int qemu_fsdev_add(QemuOpts *opts);
|
|
FsDriverEntry *get_fsdev_fsentry(char *id);
|
|
extern FileOperations local_ops;
|
|
extern FileOperations handle_ops;
|
|
extern FileOperations synth_ops;
|
|
#endif
|