qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com
Subject: [Qemu-devel] [PULL 00/29]: QMP queue
Date: Tue,  5 Jun 2012 14:24:39 -0300	[thread overview]
Message-ID: <1338917108-3965-1-git-send-email-lcapitulino@redhat.com> (raw)

Contains the new commands dump-guest-memory and query-events; and the
netdev_add/netdev_del conversion to the QAPI.

The changes (since 8cc9b43f7c5f826b39af4b012ad89bb55faac29c) are available
in the following repository:

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

Daniel P. Berrange (1):
      Add 'query-events' command to QMP to query async events

Luiz Capitulino (16):
      qemu-option: qemu_opts_create(): use error_set()
      qemu-option: parse_option_number(): use error_set()
      qemu-option: parse_option_bool(): use error_set()
      qemu-option: parse_option_size(): use error_set()
      qemu-option: qemu_opt_parse(): use error_set()
      qemu-option: qemu_opts_validate(): use error_set()
      qemu-option: opt_set(): use error_set()
      qemu-option: introduce qemu_opt_set_err()
      qemu-option: qemu_opts_from_qdict(): use error_set()
      qerror: introduce QERR_INVALID_OPTION_GROUP
      qemu-config: find_list(): use error_set()
      qemu-config: introduce qemu_find_opts_err()
      net: purge the monitor object from all init functions
      net: net_client_init(): use error_set()
      qapi: convert netdev_add
      qapi: convert netdev_del

Wen Congyang (12):
      Add API to create memory mapping list
      Add API to check whether a physical address is I/O address
      implement cpu_get_memory_mapping()
      Add API to check whether paging mode is enabled
      Add API to get memory mapping
      Add API to get memory mapping without do paging
      target-i386: Add API to write elf notes to core file
      target-i386: Add API to write cpu status to core file
      target-i386: add API to get dump info
      target-i386: Add API to get note's size
      make gdb_id() generally avialable and rename it to cpu_index()
      introduce a new monitor command 'dump-guest-memory' to dump guest's memory

 Makefile.target                   |   5 +
 blockdev.c                        |   2 +-
 configure                         |   8 +
 cpu-all.h                         |  70 +++
 cpu-common.h                      |   4 +
 dump.c                            | 883 ++++++++++++++++++++++++++++++++++++++
 dump.h                            |  23 +
 elf.h                             |   5 +
 exec.c                            |  12 +
 gdbstub.c                         |  19 +-
 gdbstub.h                         |   9 +
 hmp-commands.hx                   |  34 +-
 hmp.c                             |  52 +++
 hmp.h                             |   3 +
 hw/pci-hotplug.c                  |   8 +-
 hw/qdev-monitor.c                 |   7 +-
 hw/usb/dev-network.c              |   7 +-
 hw/usb/dev-storage.c              |   2 +-
 hw/watchdog.c                     |   2 +-
 memory_mapping.c                  | 249 +++++++++++
 memory_mapping.h                  |  74 ++++
 monitor.c                         | 107 ++---
 monitor.h                         |   4 +
 net.c                             | 104 +++--
 net.h                             |   6 +-
 net/dump.c                        |   2 +-
 net/dump.h                        |   3 +-
 net/slirp.c                       |   5 +-
 net/slirp.h                       |   5 +-
 net/socket.c                      |   8 +-
 net/socket.h                      |   3 +-
 net/tap-win32.c                   |   2 +-
 net/tap.c                         |   9 +-
 net/tap.h                         |   5 +-
 net/vde.c                         |   2 +-
 net/vde.h                         |   2 +-
 qapi-schema.json                  | 107 +++++
 qemu-char.c                       |   8 +-
 qemu-config.c                     |  43 +-
 qemu-config.h                     |   3 +
 qemu-option.c                     | 175 +++++---
 qemu-option.h                     |  11 +-
 qemu-sockets.c                    |   8 +-
 qerror.c                          |   4 +
 qerror.h                          |   3 +
 qmp-commands.hx                   |  83 +++-
 target-i386/arch_dump.c           | 449 +++++++++++++++++++
 target-i386/arch_memory_mapping.c | 271 ++++++++++++
 vl.c                              |  22 +-
 49 files changed, 2685 insertions(+), 247 deletions(-)

             reply	other threads:[~2012-06-05 17:25 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-05 17:24 Luiz Capitulino [this message]
2012-06-05 17:24 ` [Qemu-devel] [PATCH 01/29] Add API to create memory mapping list Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 02/29] Add API to check whether a physical address is I/O address Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 03/29] implement cpu_get_memory_mapping() Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 04/29] Add API to check whether paging mode is enabled Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 05/29] Add API to get memory mapping Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 06/29] Add API to get memory mapping without do paging Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 07/29] target-i386: Add API to write elf notes to core file Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 08/29] target-i386: Add API to write cpu status " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 09/29] target-i386: add API to get dump info Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 10/29] target-i386: Add API to get note's size Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 11/29] make gdb_id() generally avialable and rename it to cpu_index() Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 12/29] introduce a new monitor command 'dump-guest-memory' to dump guest's memory Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 13/29] qemu-option: qemu_opts_create(): use error_set() Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 14/29] qemu-option: parse_option_number(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 15/29] qemu-option: parse_option_bool(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 16/29] qemu-option: parse_option_size(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 17/29] qemu-option: qemu_opt_parse(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 18/29] qemu-option: qemu_opts_validate(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 19/29] qemu-option: opt_set(): " Luiz Capitulino
2012-06-05 17:24 ` [Qemu-devel] [PATCH 20/29] qemu-option: introduce qemu_opt_set_err() Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 21/29] qemu-option: qemu_opts_from_qdict(): use error_set() Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 22/29] qerror: introduce QERR_INVALID_OPTION_GROUP Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 23/29] qemu-config: find_list(): use error_set() Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 24/29] qemu-config: introduce qemu_find_opts_err() Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 25/29] net: purge the monitor object from all init functions Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 26/29] net: net_client_init(): use error_set() Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 27/29] qapi: convert netdev_add Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 28/29] qapi: convert netdev_del Luiz Capitulino
2012-06-05 17:25 ` [Qemu-devel] [PATCH 29/29] Add 'query-events' command to QMP to query async events Luiz Capitulino
2012-06-07  1:17 ` [Qemu-devel] [PULL 00/29]: QMP queue Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1338917108-3965-1-git-send-email-lcapitulino@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).