diff options
author | Gautham R Shenoy <ego@in.ibm.com> | 2010-04-29 17:45:03 +0530 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-05-03 12:17:39 -0500 |
commit | 3d54abc7b7f234685ea48bdd1743ed631cf02ba0 (patch) | |
tree | 7a3d7f19b6a924bbed402bf9cce07a78eb38e601 /qemu-config.h | |
parent | 9c5e9d8970d1822246f73be441c363a17ff1cc2c (diff) |
virtio-9p: Create a syntactic shortcut for the file-system pass-thru
Currently the commandline to create a virtual-filesystem pass-through between
the guest and the host is as follows:
#qemu -fsdev fstype,id=ID,path=path/to/share \
-device virtio-9p-pci,fsdev=ID,mount_tag=tag \
This patch provides a syntactic short-cut to achieve the same as follows:
#qemu -virtfs fstype,path=path/to/share,mount_tag=tag
This will be internally expanded as:
#qemu -fsdev fstype,id=tag,path=path/to/share, \
-device virtio-9p-pci,fsdev=tag,mount_tag=tag \
Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-config.h')
-rw-r--r-- | qemu-config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-config.h b/qemu-config.h index 5f3480333e..dca69d454b 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -5,6 +5,7 @@ extern QemuOptsList qemu_drive_opts; extern QemuOptsList qemu_chardev_opts; #ifdef CONFIG_LINUX extern QemuOptsList qemu_fsdev_opts; +extern QemuOptsList qemu_virtfs_opts; #endif extern QemuOptsList qemu_device_opts; extern QemuOptsList qemu_netdev_opts; |