* [Qemu-devel] [PULL] virtio-9p patches - Request for pull
@ 2010-10-18 21:25 Venkateswararao Jujjuri (JV)
2010-10-20 19:03 ` Anthony Liguori
0 siblings, 1 reply; 5+ messages in thread
From: Venkateswararao Jujjuri (JV) @ 2010-10-18 21:25 UTC (permalink / raw)
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PULL] virtio-9p patches - Request for pull
2010-10-18 21:25 Venkateswararao Jujjuri (JV)
@ 2010-10-20 19:03 ` Anthony Liguori
0 siblings, 0 replies; 5+ messages in thread
From: Anthony Liguori @ 2010-10-20 19:03 UTC (permalink / raw)
To: Venkateswararao Jujjuri (JV); +Cc: Qemu-development List
On 10/18/2010 04:25 PM, Venkateswararao Jujjuri (JV) wrote:
> 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
>
Pulled. Thanks.
Regards,
Anthony Liguori
> 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
>
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PULL] virtio-9p patches - Request for pull
@ 2010-12-03 0:05 Venkateswararao Jujjuri (JV)
2010-12-17 14:48 ` Anthony Liguori
0 siblings, 1 reply; 5+ messages in thread
From: Venkateswararao Jujjuri (JV) @ 2010-12-03 0:05 UTC (permalink / raw)
To: Anthony Liguori, Qemu-development List
The following changes since commit 6a8657528d94fa1be78d1be0821a01a251fa2de9:
Anthony Liguori (1):
Fix build
are available in the git repository at:
git://repo.or.cz/qemu/aliguori/jvrao.git for-anthony
Harsh Prateek Bora (1):
hw/virtio9p: Use appropriate debug print functions in TLINK path
Hidetoshi Seto (1):
virtio-9p: fix build on !CONFIG_UTIMENSAT
Kusanagi Kouichi (1):
virtio-9p: Check the return value of llistxattr.
Venkateswararao Jujjuri (JV) (1):
[virtio-9p] Add datasync to server side TFSYNC/RFSYNC for dotl
hw/file-op-9p.h | 2 +-
hw/virtio-9p-debug.c | 4 ++--
hw/virtio-9p-local.c | 12 ++++++++----
hw/virtio-9p-xattr.c | 3 +++
hw/virtio-9p.c | 11 ++++++-----
oslib-posix.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
qemu-os-posix.h | 12 ++++++++++++
7 files changed, 80 insertions(+), 12 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PULL] virtio-9p patches - Request for pull
2010-12-03 0:05 [Qemu-devel] [PULL] virtio-9p patches - Request for pull Venkateswararao Jujjuri (JV)
@ 2010-12-17 14:48 ` Anthony Liguori
0 siblings, 0 replies; 5+ messages in thread
From: Anthony Liguori @ 2010-12-17 14:48 UTC (permalink / raw)
To: Venkateswararao Jujjuri (JV); +Cc: Qemu-development List
On 12/02/2010 06:05 PM, Venkateswararao Jujjuri (JV) wrote:
> The following changes since commit 6a8657528d94fa1be78d1be0821a01a251fa2de9:
> Anthony Liguori (1):
> Fix build
>
> are available in the git repository at:
>
> git://repo.or.cz/qemu/aliguori/jvrao.git for-anthony
>
Pulled. Thanks.
Regards,
Anthony Liguori
> Harsh Prateek Bora (1):
> hw/virtio9p: Use appropriate debug print functions in TLINK path
>
> Hidetoshi Seto (1):
> virtio-9p: fix build on !CONFIG_UTIMENSAT
>
> Kusanagi Kouichi (1):
> virtio-9p: Check the return value of llistxattr.
>
> Venkateswararao Jujjuri (JV) (1):
> [virtio-9p] Add datasync to server side TFSYNC/RFSYNC for dotl
>
> hw/file-op-9p.h | 2 +-
> hw/virtio-9p-debug.c | 4 ++--
> hw/virtio-9p-local.c | 12 ++++++++----
> hw/virtio-9p-xattr.c | 3 +++
> hw/virtio-9p.c | 11 ++++++-----
> oslib-posix.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
> qemu-os-posix.h | 12 ++++++++++++
> 7 files changed, 80 insertions(+), 12 deletions(-)
>
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PULL] virtio-9p patches - Request for pull
@ 2011-02-18 0:34 Venkateswararao Jujjuri (JV)
0 siblings, 0 replies; 5+ messages in thread
From: Venkateswararao Jujjuri (JV) @ 2011-02-18 0:34 UTC (permalink / raw)
To: Anthony Liguori, Qemu-development List
The following changes since commit e14da0af640e4255b15d81907a93a2637e14e478:
Marcelo Tosatti (1):
Fix vmport segfault (v2)
are available in the git repository at:
git://repo.or.cz/qemu/aliguori/jvrao.git for-anthony
Aneesh Kumar K.V (3):
virtio-9p: move 9p files around
virtio-9p: Print the pdu details on return
virtio-9p: removexattr on default acl should return 0
Harsh Prateek Bora (1):
hw/virtio-9p-local.c: Remove unnecessary null char in symlink file
M. Mohan Kumar (1):
virtio-9p: Bugfix to send correct iounit
Makefile.objs | 10 +++++++---
Makefile.target | 6 ++++--
configure | 2 ++
hw/{ => 9pfs}/virtio-9p-debug.c | 0
hw/{ => 9pfs}/virtio-9p-debug.h | 0
hw/{ => 9pfs}/virtio-9p-local.c | 2 +-
hw/{ => 9pfs}/virtio-9p-posix-acl.c | 15 +++++++++++++--
hw/{ => 9pfs}/virtio-9p-xattr-user.c | 0
hw/{ => 9pfs}/virtio-9p-xattr.c | 0
hw/{ => 9pfs}/virtio-9p-xattr.h | 0
hw/{ => 9pfs}/virtio-9p.c | 7 +++++--
hw/{ => 9pfs}/virtio-9p.h | 0
12 files changed, 32 insertions(+), 10 deletions(-)
rename hw/{ => 9pfs}/virtio-9p-debug.c (100%)
rename hw/{ => 9pfs}/virtio-9p-debug.h (100%)
rename hw/{ => 9pfs}/virtio-9p-local.c (99%)
rename hw/{ => 9pfs}/virtio-9p-posix-acl.c (89%)
rename hw/{ => 9pfs}/virtio-9p-xattr-user.c (100%)
rename hw/{ => 9pfs}/virtio-9p-xattr.c (100%)
rename hw/{ => 9pfs}/virtio-9p-xattr.h (100%)
rename hw/{ => 9pfs}/virtio-9p.c (99%)
rename hw/{ => 9pfs}/virtio-9p.h (100%)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-02-18 0:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-03 0:05 [Qemu-devel] [PULL] virtio-9p patches - Request for pull Venkateswararao Jujjuri (JV)
2010-12-17 14:48 ` Anthony Liguori
-- strict thread matches above, loose matches on Subject: below --
2011-02-18 0:34 Venkateswararao Jujjuri (JV)
2010-10-18 21:25 Venkateswararao Jujjuri (JV)
2010-10-20 19:03 ` Anthony Liguori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).