From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9MuK-0001Er-Bz for qemu-devel@nongnu.org; Thu, 29 Sep 2011 16:08:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R9MuI-0001h8-VA for qemu-devel@nongnu.org; Thu, 29 Sep 2011 16:08:36 -0400 Received: from e1.ny.us.ibm.com ([32.97.182.141]:59184) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9MuI-0001gx-QP for qemu-devel@nongnu.org; Thu, 29 Sep 2011 16:08:34 -0400 Received: from /spool/local by us.ibm.com with XMail ESMTP for from ; Thu, 29 Sep 2011 16:05:34 -0400 Received: from d01av01.pok.ibm.com (d01av01.pok.ibm.com [9.56.224.215]) by d01relay06.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8TK5T8E1306658 for ; Thu, 29 Sep 2011 16:05:29 -0400 Received: from d01av01.pok.ibm.com (loopback [127.0.0.1]) by d01av01.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p8TK5SCg009199 for ; Thu, 29 Sep 2011 16:05:29 -0400 Message-ID: <4E84CF88.4030007@us.ibm.com> Date: Thu, 29 Sep 2011 15:05:28 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <87aa9qs62u.fsf@skywalker.in.ibm.com> In-Reply-To: <87aa9qs62u.fsf@skywalker.in.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] VirtFS update List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Aneesh Kumar K.V" Cc: QEMU Developers On 09/27/2011 04:11 AM, Aneesh Kumar K.V wrote: > > The following changes since commit d85a1302a91912c52cdc3fe459b313848a8a0792: > > Merge remote-tracking branch 'kwolf/for-anthony' into staging (2011-09-22 10:31:26 -0500) > > are available in the git repository at: > > git://repo.or.cz/qemu/v9fs.git for-upstream-5 Pulled. Thanks. Regards, Anthony Liguori > > Aneesh Kumar K.V (8): > hw/9pfs: Make v9fs_string* functions non-static > hw/9pfs: Use read-write lock for protecting fid path. > hw/9pfs: Move fid pathname tracking to seperate data type. > hw/9pfs: Add init callback to fs driver > hw/9pfs: Add fs driver specific details to fscontext > hw/9pfs: Avoid unnecessary get_fid in v9fs_clunk > hw/9pfs: Implement TFLUSH operation > hw/9pfs: Add handle based fs driver > > Makefile.objs | 8 +- > fsdev/file-op-9p.h | 54 ++- > fsdev/qemu-fsdev.c | 1 + > fsdev/qemu-fsdev.h | 1 + > hw/9pfs/codir.c | 64 +++- > hw/9pfs/cofile.c | 110 +++++-- > hw/9pfs/cofs.c | 195 ++++++++++-- > hw/9pfs/coxattr.c | 41 ++- > hw/9pfs/virtio-9p-coth.h | 72 +++-- > hw/9pfs/virtio-9p-device.c | 10 +- > hw/9pfs/virtio-9p-handle.c | 611 +++++++++++++++++++++++++++++++++ > hw/9pfs/virtio-9p-local.c | 213 +++++++++--- > hw/9pfs/virtio-9p.c | 820 ++++++++++++++++++++++++-------------------- > hw/9pfs/virtio-9p.h | 50 +++- > 14 files changed, 1712 insertions(+), 538 deletions(-) > create mode 100644 hw/9pfs/virtio-9p-handle.c > > >