On 10/15/2011 05:19 AM, Aneesh Kumar K.V wrote:
The following changes since commit ebffe2afceb1a17b5d134b5debf553955fe5ea1a: Merge remote-tracking branch 'qmp/queue/qmp' into staging (2011-10-10 08:21:46 -0500) are available in the git repository at: git://repo.or.cz/qemu/v9fs.git for-upstream-6
Pulled. Thanks. Regards, Anthony Liguori
Aneesh Kumar K.V (7): hw/9pfs: Use ioeventfd for 9p hw/9pfs: Add new virtfs option writeout=immediate skip host page cache qemu-options.hx: Update virtfs command documentation hw/9pfs: Fix build error on platform that don't support futimens hw/9pfs: Use export_flag for indicating whether fs driver use path names. hw/9pfs: Rename fstype to fsdriver to make it consistent across VirtFS code hw/9pfs: Use export flag for indicating security model Daniel P. Berrange (1): hw/9pfs: Ensure an error is reported to user if 9pfs mount tag is too long Harsh Prateek Bora (5): hw/9pfs: Add st_gen support in getattr reply hw/9pfs: Add st_gen support for handle based fs driver hw/9pfs: Introduce tracing for 9p pdu handlers hw/9pfs: Remove virtio-9p-debug.* infra to be replaced by Qemu Tracing. scripts: Simpletrace log analysis script for pretty-printing 9p log. M. Mohan Kumar (4): virtio-9p: Use 9P specific Lock constants hw/9pfs: Add open flag mapping hw/9pfs: Use fs driver specific lstat hw/9pfs: Handle Security model parsing Makefile.objs | 2 +- configure | 33 ++ fsdev/file-op-9p.h | 51 ++-- fsdev/qemu-fsdev.c | 69 +++-- fsdev/qemu-fsdev.h | 20 +- hw/9pfs/cofile.c | 24 ++ hw/9pfs/cofs.c | 2 +- hw/9pfs/virtio-9p-coth.h | 3 + hw/9pfs/virtio-9p-debug.c | 646 ------------------------------------- hw/9pfs/virtio-9p-debug.h | 6 - hw/9pfs/virtio-9p-device.c | 70 ++-- hw/9pfs/virtio-9p-handle.c | 120 +++++-- hw/9pfs/virtio-9p-local.c | 126 ++++++-- hw/9pfs/virtio-9p.c | 170 +++++++++- hw/9pfs/virtio-9p.h | 35 ++- hw/virtio-pci.c | 5 - hw/virtio-pci.h | 5 + qemu-config.c | 14 +- qemu-options.hx | 122 +++++--- scripts/analyse-9p-simpletrace.py | 142 ++++++++ trace-events | 46 +++ vl.c | 24 +- 22 files changed, 852 insertions(+), 883 deletions(-) delete mode 100644 hw/9pfs/virtio-9p-debug.c delete mode 100644 hw/9pfs/virtio-9p-debug.h create mode 100755 scripts/analyse-9p-simpletrace.py