qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] VirtFS update 7
@ 2011-10-25  9:32 Aneesh Kumar K.V
  2011-10-31  7:59 ` Aneesh Kumar K.V
  2011-10-31 16:52 ` Anthony Liguori
  0 siblings, 2 replies; 3+ messages in thread
From: Aneesh Kumar K.V @ 2011-10-25  9:32 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: QEMU Developers


Hi,

This include all the pending patches for 1.0

The following changes since commit 952e849c150b4f1b89f8728cba00f925c1d6e75b:

  Merge remote-tracking branch 'bonzini/split-main-loop-for-anthony' into staging (2011-10-24 10:51:12 -0500)

are available in the git repository at:

  git://repo.or.cz/qemu/v9fs.git for-upstream-7

Aneesh Kumar K.V (5):
      hw/9pfs: Make VirtFS tracing work correctly
      hw/9pfs: Fix error handling in local_mknod
      configure: Update configure so that open_by_handle_at check returns correct value
      hw/9pfs: Abstract open state of fid to V9fsFidOpenState
      hw/9pfs: Add synthetic file system support using 9p

Harsh Prateek Bora (2):
      qemu-queue: Introduce QLIST_INSERT_HEAD_RCU and dummy RCU wrappers.
      hw/9pfs: Replace rwlocks with RCU variants of interfaces.

M. Mohan Kumar (2):
      qemu: Add opt_set_bool functionality
      hw/9pfs: Read-only support for 9p export

 Makefile.objs                     |    1 +
 configure                         |    2 +-
 fsdev/file-op-9p.h                |   36 ++-
 fsdev/qemu-fsdev.c                |    8 +-
 fsdev/qemu-fsdev.h                |    1 +
 hw/9pfs/codir.c                   |   16 +-
 hw/9pfs/cofile.c                  |   37 ++--
 hw/9pfs/virtio-9p-coth.h          |    6 +-
 hw/9pfs/virtio-9p-handle.c        |   96 ++++---
 hw/9pfs/virtio-9p-local.c         |  113 ++++----
 hw/9pfs/virtio-9p-synth.c         |  571 +++++++++++++++++++++++++++++++++++++
 hw/9pfs/virtio-9p-synth.h         |   50 ++++
 hw/9pfs/virtio-9p.c               |  122 ++++++---
 hw/9pfs/virtio-9p.h               |   27 ++-
 qemu-config.c                     |    7 +
 qemu-option.c                     |   39 +++-
 qemu-option.h                     |    3 +-
 qemu-options.hx                   |   23 ++-
 qemu-queue.h                      |   13 +
 qemu-thread.h                     |    3 +
 scripts/analyse-9p-simpletrace.py |  164 ++++++------
 trace-events                      |    2 +-
 vl.c                              |   20 ++
 23 files changed, 1085 insertions(+), 275 deletions(-)
 create mode 100644 hw/9pfs/virtio-9p-synth.c
 create mode 100644 hw/9pfs/virtio-9p-synth.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PULL] VirtFS update 7
  2011-10-25  9:32 [Qemu-devel] [PULL] VirtFS update 7 Aneesh Kumar K.V
@ 2011-10-31  7:59 ` Aneesh Kumar K.V
  2011-10-31 16:52 ` Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Aneesh Kumar K.V @ 2011-10-31  7:59 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: QEMU Developers

On Tue, 25 Oct 2011 15:02:44 +0530, Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> wrote:
> 
> Hi,
> 
> This include all the pending patches for 1.0
> 
> The following changes since commit 952e849c150b4f1b89f8728cba00f925c1d6e75b:
> 
>   Merge remote-tracking branch 'bonzini/split-main-loop-for-anthony' into staging (2011-10-24 10:51:12 -0500)
> 
> are available in the git repository at:
> 
>   git://repo.or.cz/qemu/v9fs.git for-upstream-7
> 
> Aneesh Kumar K.V (5):
>       hw/9pfs: Make VirtFS tracing work correctly
>       hw/9pfs: Fix error handling in local_mknod
>       configure: Update configure so that open_by_handle_at check returns correct value
>       hw/9pfs: Abstract open state of fid to V9fsFidOpenState
>       hw/9pfs: Add synthetic file system support using 9p
> 
> Harsh Prateek Bora (2):
>       qemu-queue: Introduce QLIST_INSERT_HEAD_RCU and dummy RCU wrappers.
>       hw/9pfs: Replace rwlocks with RCU variants of interfaces.
> 
> M. Mohan Kumar (2):
>       qemu: Add opt_set_bool functionality
>       hw/9pfs: Read-only support for 9p export
> 
>  Makefile.objs                     |    1 +
>  configure                         |    2 +-
>  fsdev/file-op-9p.h                |   36 ++-
>  fsdev/qemu-fsdev.c                |    8 +-
>  fsdev/qemu-fsdev.h                |    1 +
>  hw/9pfs/codir.c                   |   16 +-
>  hw/9pfs/cofile.c                  |   37 ++--
>  hw/9pfs/virtio-9p-coth.h          |    6 +-
>  hw/9pfs/virtio-9p-handle.c        |   96 ++++---
>  hw/9pfs/virtio-9p-local.c         |  113 ++++----
>  hw/9pfs/virtio-9p-synth.c         |  571 +++++++++++++++++++++++++++++++++++++
>  hw/9pfs/virtio-9p-synth.h         |   50 ++++
>  hw/9pfs/virtio-9p.c               |  122 ++++++---
>  hw/9pfs/virtio-9p.h               |   27 ++-
>  qemu-config.c                     |    7 +
>  qemu-option.c                     |   39 +++-
>  qemu-option.h                     |    3 +-
>  qemu-options.hx                   |   23 ++-
>  qemu-queue.h                      |   13 +
>  qemu-thread.h                     |    3 +
>  scripts/analyse-9p-simpletrace.py |  164 ++++++------
>  trace-events                      |    2 +-
>  vl.c                              |   20 ++
>  23 files changed, 1085 insertions(+), 275 deletions(-)
>  create mode 100644 hw/9pfs/virtio-9p-synth.c
>  create mode 100644 hw/9pfs/virtio-9p-synth.h

The first patch of this pull request got applied to qemu master directly
from the list. I have rebased the branch to avoid merge conflict. 
Here is the updated diffstat.

The following changes since commit 375847a6c0330e3de0fd1589eeb5a364692b791e:

  MAINTAINERS: update wiki URL and machine names for target-xtensa (2011-10-30 10:58:08 +0000)

are available in the git repository at:
  git://repo.or.cz/qemu/v9fs.git for-upstream-7

Aneesh Kumar K.V (4):
      hw/9pfs: Fix error handling in local_mknod
      configure: Update configure so that open_by_handle_at check returns correct value
      hw/9pfs: Abstract open state of fid to V9fsFidOpenState
      hw/9pfs: Add synthetic file system support using 9p

Harsh Prateek Bora (2):
      qemu-queue: Introduce QLIST_INSERT_HEAD_RCU and dummy RCU wrappers.
      hw/9pfs: Replace rwlocks with RCU variants of interfaces.

M. Mohan Kumar (2):
      qemu: Add opt_set_bool functionality
      hw/9pfs: Read-only support for 9p export

 Makefile.objs              |    1 +
 configure                  |    2 +-
 fsdev/file-op-9p.h         |   36 ++-
 fsdev/qemu-fsdev.c         |    8 +-
 fsdev/qemu-fsdev.h         |    1 +
 hw/9pfs/codir.c            |   16 +-
 hw/9pfs/cofile.c           |   37 ++--
 hw/9pfs/virtio-9p-coth.h   |    6 +-
 hw/9pfs/virtio-9p-handle.c |   96 +++++----
 hw/9pfs/virtio-9p-local.c  |  113 +++++----
 hw/9pfs/virtio-9p-synth.c  |  571 ++++++++++++++++++++++++++++++++++++++++++++
 hw/9pfs/virtio-9p-synth.h  |   50 ++++
 hw/9pfs/virtio-9p.c        |   62 +++++-
 hw/9pfs/virtio-9p.h        |   27 ++-
 qemu-config.c              |    7 +
 qemu-option.c              |   39 +++-
 qemu-option.h              |    3 +-
 qemu-options.hx            |   23 ++-
 qemu-queue.h               |   13 +
 qemu-thread.h              |    3 +
 vl.c                       |   20 ++
 21 files changed, 973 insertions(+), 161 deletions(-)
 create mode 100644 hw/9pfs/virtio-9p-synth.c
 create mode 100644 hw/9pfs/virtio-9p-synth.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PULL] VirtFS update 7
  2011-10-25  9:32 [Qemu-devel] [PULL] VirtFS update 7 Aneesh Kumar K.V
  2011-10-31  7:59 ` Aneesh Kumar K.V
@ 2011-10-31 16:52 ` Anthony Liguori
  1 sibling, 0 replies; 3+ messages in thread
From: Anthony Liguori @ 2011-10-31 16:52 UTC (permalink / raw)
  To: Aneesh Kumar K.V; +Cc: QEMU Developers

On 10/25/2011 04:32 AM, Aneesh Kumar K.V wrote:
>
> Hi,
>
> This include all the pending patches for 1.0
>
> The following changes since commit 952e849c150b4f1b89f8728cba00f925c1d6e75b:
>
>    Merge remote-tracking branch 'bonzini/split-main-loop-for-anthony' into staging (2011-10-24 10:51:12 -0500)
>
> are available in the git repository at:
>
>    git://repo.or.cz/qemu/v9fs.git for-upstream-7

Pulled.  Thanks.

Regards,

Anthony Liguori

>
> Aneesh Kumar K.V (5):
>        hw/9pfs: Make VirtFS tracing work correctly
>        hw/9pfs: Fix error handling in local_mknod
>        configure: Update configure so that open_by_handle_at check returns correct value
>        hw/9pfs: Abstract open state of fid to V9fsFidOpenState
>        hw/9pfs: Add synthetic file system support using 9p
>
> Harsh Prateek Bora (2):
>        qemu-queue: Introduce QLIST_INSERT_HEAD_RCU and dummy RCU wrappers.
>        hw/9pfs: Replace rwlocks with RCU variants of interfaces.
>
> M. Mohan Kumar (2):
>        qemu: Add opt_set_bool functionality
>        hw/9pfs: Read-only support for 9p export
>
>   Makefile.objs                     |    1 +
>   configure                         |    2 +-
>   fsdev/file-op-9p.h                |   36 ++-
>   fsdev/qemu-fsdev.c                |    8 +-
>   fsdev/qemu-fsdev.h                |    1 +
>   hw/9pfs/codir.c                   |   16 +-
>   hw/9pfs/cofile.c                  |   37 ++--
>   hw/9pfs/virtio-9p-coth.h          |    6 +-
>   hw/9pfs/virtio-9p-handle.c        |   96 ++++---
>   hw/9pfs/virtio-9p-local.c         |  113 ++++----
>   hw/9pfs/virtio-9p-synth.c         |  571 +++++++++++++++++++++++++++++++++++++
>   hw/9pfs/virtio-9p-synth.h         |   50 ++++
>   hw/9pfs/virtio-9p.c               |  122 ++++++---
>   hw/9pfs/virtio-9p.h               |   27 ++-
>   qemu-config.c                     |    7 +
>   qemu-option.c                     |   39 +++-
>   qemu-option.h                     |    3 +-
>   qemu-options.hx                   |   23 ++-
>   qemu-queue.h                      |   13 +
>   qemu-thread.h                     |    3 +
>   scripts/analyse-9p-simpletrace.py |  164 ++++++------
>   trace-events                      |    2 +-
>   vl.c                              |   20 ++
>   23 files changed, 1085 insertions(+), 275 deletions(-)
>   create mode 100644 hw/9pfs/virtio-9p-synth.c
>   create mode 100644 hw/9pfs/virtio-9p-synth.h
>
>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-10-31 16:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-25  9:32 [Qemu-devel] [PULL] VirtFS update 7 Aneesh Kumar K.V
2011-10-31  7:59 ` Aneesh Kumar K.V
2011-10-31 16:52 ` 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).