From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=57675 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P7xDA-0007hG-68 for qemu-devel@nongnu.org; Mon, 18 Oct 2010 17:25:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P7xD8-0004y0-D8 for qemu-devel@nongnu.org; Mon, 18 Oct 2010 17:25:40 -0400 Received: from e6.ny.us.ibm.com ([32.97.182.146]:42768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P7xD8-0004xw-A1 for qemu-devel@nongnu.org; Mon, 18 Oct 2010 17:25:38 -0400 Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by e6.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id o9ILQ8ca010936 for ; Mon, 18 Oct 2010 17:26:08 -0400 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o9ILPZwA438950 for ; Mon, 18 Oct 2010 17:25:36 -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 o9ILPZux027565 for ; Mon, 18 Oct 2010 15:25:35 -0600 Message-ID: <4CBCBB4E.8000705@linux.vnet.ibm.com> Date: Mon, 18 Oct 2010 14:25:34 -0700 From: "Venkateswararao Jujjuri (JV)" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PULL] virtio-9p patches - Request for pull List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori , Qemu-development List The following changes since commit 38cc9b607f85017b095793cab6c129bc9844f441: Jindrich Makovicka (1): issue snd_pcm_start() when capturing audio are available in the git repository at: git://repo.or.cz/qemu/aliguori/jvrao.git for-anthony Aneesh Kumar K.V (2): virtio-9p: Use layered xattr approach virtio-9p: Support mapped posix acl Harsh Prateek Bora (1): [virtio-9p] Qemu 9p commandline options validity checks M. Mohan Kumar (3): [virto-9p] Implement TLOCK qemu-virtio9p: Implement TGETLOCK qemu-virtio-9p: Implement TREADLINK operation for 9p2000.L Sanchit Garg (1): [virtio-9p] Use preadv/pwritev instead of readv/writev Sripathi Kodi (1): [virtio-9p] open should not return EBADF Venkateswararao Jujjuri (JV) (3): [virtio-9p] Introduce server side TFSYNC/RFSYNC for dotl [virtio-9p] Ignore O_DIRECT hint from client. [virtio-9p] Add support to v9fs_string_alloc_printf() for handling %lu. Makefile.objs | 3 +- fsdev/qemu-fsdev.c | 48 +++++--- hw/file-op-9p.h | 16 ++- hw/virtio-9p-debug.c | 46 +++++++ hw/virtio-9p-local.c | 135 +++++--------------- hw/virtio-9p-posix-acl.c | 140 ++++++++++++++++++++ hw/virtio-9p-xattr-user.c | 109 ++++++++++++++++ hw/virtio-9p-xattr.c | 156 ++++++++++++++++++++++ hw/virtio-9p-xattr.h | 103 +++++++++++++++ hw/virtio-9p.c | 314 +++++++++++++++++++++++++++++++++------------ hw/virtio-9p.h | 61 +++++++++ 11 files changed, 925 insertions(+), 206 deletions(-) create mode 100644 hw/virtio-9p-posix-acl.c create mode 100644 hw/virtio-9p-xattr-user.c create mode 100644 hw/virtio-9p-xattr.c