All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/6] QMP queue
@ 2013-03-27 18:46 Luiz Capitulino
  2013-03-27 18:46 ` [Qemu-devel] [PULL 1/6] oslib-posix: rename socket_set_nonblock() to qemu_set_nonblock() Luiz Capitulino
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Luiz Capitulino @ 2013-03-27 18:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori

One more pull this week. This one contains two series fixing two important
bugs.

The changes (since 404e7a4f4af753bd2aef649adf79e7434fb6dc31) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

Luiz Capitulino (2):
  qstring: add qobject_get_length()
  Monitor: Make output buffer dynamic

Stefan Hajnoczi (4):
  oslib-posix: rename socket_set_nonblock() to qemu_set_nonblock()
  net: ensure "socket" backend uses non-blocking fds
  qemu-socket: set passed fd non-blocking in socket_connect()
  chardev: clear O_NONBLOCK on SCM_RIGHTS file descriptors

 block/nbd.c                |  2 +-
 block/sheepdog.c           |  2 +-
 include/qapi/qmp/qstring.h |  1 +
 include/qemu/sockets.h     |  4 ++--
 migration.c                |  2 +-
 monitor.c                  | 42 +++++++++++++++++++++++++-----------------
 nbd.c                      |  8 ++++----
 net/socket.c               | 13 +++++++++----
 qemu-char.c                | 11 +++++++----
 qobject/qstring.c          |  8 ++++++++
 savevm.c                   |  2 +-
 slirp/misc.c               |  2 +-
 slirp/tcp_subr.c           |  4 ++--
 ui/vnc.c                   |  2 +-
 util/oslib-posix.c         |  4 ++--
 util/oslib-win32.c         |  4 ++--
 util/qemu-sockets.c        |  5 +++--
 17 files changed, 71 insertions(+), 45 deletions(-)

-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/6] QMP queue
@ 2013-07-10 17:52 Luiz Capitulino
  0 siblings, 0 replies; 14+ messages in thread
From: Luiz Capitulino @ 2013-07-10 17:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori

The following changes since commit 51455c59ddc370612f6e070d8eb0e594aaa7ef24:

  Merge remote-tracking branch 'afaerber/tags/qom-cpu-for-anthony' into staging (2013-07-10 10:54:16 -0500)

are available in the git repository at:


  git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

for you to fetch changes up to 5e2ac5191772dea782ff78e95edd395985273019:

  add timestamp to error_report() (2013-07-10 13:42:09 -0400)

----------------------------------------------------------------
Kevin Wolf (4):
      qapi.py: Avoid code duplication
      qapi.py: Allow top-level type reference for command definitions
      qapi-schema: Use BlockdevSnapshot type for blockdev-snapshot-sync
      qapi-schema: Use existing type for drive-backup arguments

Markus Armbruster (1):
      qemu-char: Fix ringbuf option size

Seiji Aguchi (1):
      add timestamp to error_report()

 include/qemu/error-report.h |  2 ++
 qapi-schema.json            | 46 ++++-----------------------------------------
 qemu-char.c                 |  2 +-
 qemu-options.hx             | 11 +++++++++++
 scripts/qapi.py             | 37 +++++++++++++++++++++++++++---------
 util/qemu-error.c           | 10 ++++++++++
 vl.c                        | 26 +++++++++++++++++++++++++
 7 files changed, 82 insertions(+), 52 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/6] QMP queue
@ 2013-09-18 13:03 Luiz Capitulino
  0 siblings, 0 replies; 14+ messages in thread
From: Luiz Capitulino @ 2013-09-18 13:03 UTC (permalink / raw)
  To: anthony; +Cc: qemu-devel

The following changes since commit 6c2679fc19560699679200fb42ab4659bcbe7f79:

  Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2013-09-17 10:01:24 -0500)

are available in the git repository at:


  git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

for you to fetch changes up to 7b5ce8db600a5d1842b9cb0cf8e8bb7af87fee10:

  QMP: qmp-events.txt: alphabetical order fix and other minor changes (2013-09-18 08:57:02 -0400)

----------------------------------------------------------------
Luiz Capitulino (6):
      QMP: add scripts/qmp
      QMP: fix qmp-commands.txt generation path
      QMP: QMP/ -> docs/qmp/
      QMP: Update README file
      QMP: Update qmp-spec.txt
      QMP: qmp-events.txt: alphabetical order fix and other minor changes

 Makefile                            |  6 +--
 QMP/README                          | 88 -------------------------------------
 docs/qmp/README                     | 87 ++++++++++++++++++++++++++++++++++++
 {QMP => docs/qmp}/qmp-events.txt    | 34 +++++++-------
 {QMP => docs/qmp}/qmp-spec.txt      | 65 ++++++++++++---------------
 {QMP => scripts/qmp}/qemu-ga-client |  0
 {QMP => scripts/qmp}/qmp            |  0
 {QMP => scripts/qmp}/qmp-shell      |  2 +-
 {QMP => scripts/qmp}/qmp.py         |  2 +-
 {QMP => scripts/qmp}/qom-fuse       |  0
 {QMP => scripts/qmp}/qom-get        |  0
 {QMP => scripts/qmp}/qom-list       |  0
 {QMP => scripts/qmp}/qom-set        |  0
 13 files changed, 137 insertions(+), 147 deletions(-)
 delete mode 100644 QMP/README
 create mode 100644 docs/qmp/README
 rename {QMP => docs/qmp}/qmp-events.txt (99%)
 rename {QMP => docs/qmp}/qmp-spec.txt (82%)
 rename {QMP => scripts/qmp}/qemu-ga-client (100%)
 rename {QMP => scripts/qmp}/qmp (100%)
 rename {QMP => scripts/qmp}/qmp-shell (99%)
 rename {QMP => scripts/qmp}/qmp.py (99%)
 rename {QMP => scripts/qmp}/qom-fuse (100%)
 rename {QMP => scripts/qmp}/qom-get (100%)
 rename {QMP => scripts/qmp}/qom-list (100%)
 rename {QMP => scripts/qmp}/qom-set (100%)

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

end of thread, other threads:[~2013-09-18 13:03 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-27 18:46 [Qemu-devel] [PULL 0/6] QMP queue Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 1/6] oslib-posix: rename socket_set_nonblock() to qemu_set_nonblock() Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 2/6] net: ensure "socket" backend uses non-blocking fds Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 3/6] qemu-socket: set passed fd non-blocking in socket_connect() Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 4/6] chardev: clear O_NONBLOCK on SCM_RIGHTS file descriptors Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 5/6] qstring: add qobject_get_length() Luiz Capitulino
2013-03-27 18:46 ` [Qemu-devel] [PULL 6/6] Monitor: Make output buffer dynamic Luiz Capitulino
2013-04-01 15:35   ` Anthony Liguori
2013-04-02 14:37     ` Luiz Capitulino
2013-04-02 14:45       ` Luiz Capitulino
2013-04-02 15:50         ` Anthony Liguori
2013-04-02 15:54           ` Luiz Capitulino
2013-07-10 17:52 [Qemu-devel] [PULL 0/6] QMP queue Luiz Capitulino
2013-09-18 13:03 Luiz Capitulino

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.