From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46850) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Ti6-0002iX-2U for qemu-devel@nongnu.org; Tue, 27 Sep 2011 05:12:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8Ti5-00063g-3X for qemu-devel@nongnu.org; Tue, 27 Sep 2011 05:12:18 -0400 Received: from e1.ny.us.ibm.com ([32.97.182.141]:55419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Ti4-00063I-VO for qemu-devel@nongnu.org; Tue, 27 Sep 2011 05:12:17 -0400 Received: from /spool/local by us.ibm.com with XMail ESMTP for from ; Tue, 27 Sep 2011 05:12:10 -0400 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay06.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p8R9BOct1642536 for ; Tue, 27 Sep 2011 05:11:24 -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 p8R9BOn3011146 for ; Tue, 27 Sep 2011 05:11:24 -0400 From: "Aneesh Kumar K.V" Date: Tue, 27 Sep 2011 14:41:20 +0530 Message-ID: <87aa9qs62u.fsf@skywalker.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: [Qemu-devel] [PULL] VirtFS update List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: QEMU Developers 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 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