From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RF1Lb-0008W0-7B for qemu-devel@nongnu.org; Sat, 15 Oct 2011 06:20:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RF1LY-0003Bu-Nr for qemu-devel@nongnu.org; Sat, 15 Oct 2011 06:20:06 -0400 Received: from e5.ny.us.ibm.com ([32.97.182.145]:54900) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RF1LY-0003B5-K3 for qemu-devel@nongnu.org; Sat, 15 Oct 2011 06:20:04 -0400 Received: from /spool/local by e5.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 15 Oct 2011 06:19:59 -0400 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay05.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9FAJuQo217928 for ; Sat, 15 Oct 2011 06:19:56 -0400 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9FAJul2006559 for ; Sat, 15 Oct 2011 06:19:56 -0400 From: "Aneesh Kumar K.V" Date: Sat, 15 Oct 2011 15:49:10 +0530 Message-ID: <874nza8sm9.fsf@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: [Qemu-devel] [PULL] VirtFS update 6 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori , QEMU Developers 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 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