1. 02 2月, 2018 2 次提交
  2. 17 10月, 2016 1 次提交
  3. 12 7月, 2016 1 次提交
  4. 06 6月, 2016 1 次提交
  5. 23 2月, 2016 1 次提交
  6. 08 1月, 2016 1 次提交
  7. 19 12月, 2012 1 次提交
  8. 31 10月, 2011 1 次提交
    • A
      hw/9pfs: Add synthetic file system support using 9p · 9db221ae
      Aneesh Kumar K.V 提交于
      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: NAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
      9db221ae