From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50214) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGu94-0003d7-Ca for qemu-devel@nongnu.org; Thu, 20 Oct 2011 11:03:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGu8y-00069G-H6 for qemu-devel@nongnu.org; Thu, 20 Oct 2011 11:02:58 -0400 Received: from e9.ny.us.ibm.com ([32.97.182.139]:48332) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGu8y-0005rs-ET for qemu-devel@nongnu.org; Thu, 20 Oct 2011 11:02:52 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e9.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p9KEPUQx018338 for ; Thu, 20 Oct 2011 10:25:30 -0400 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9KF1s9Q132376 for ; Thu, 20 Oct 2011 11:01:56 -0400 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9KF1VXW002191 for ; Thu, 20 Oct 2011 09:01:32 -0600 Message-ID: <4EA037C5.9010900@us.ibm.com> Date: Thu, 20 Oct 2011 10:01:25 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <874nza8sm9.fsf@linux.vnet.ibm.com> In-Reply-To: <874nza8sm9.fsf@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] VirtFS update 6 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Aneesh Kumar K.V" Cc: QEMU Developers 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 > > >