All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/19] Misc changes for 2016-02-24
@ 2016-02-24 13:27 Paolo Bonzini
  2016-02-24 13:27 ` [Qemu-devel] [PULL 01/19] qemu-options.hx: Improve documentation of chardev multiplexing mode Paolo Bonzini
                   ` (19 more replies)
  0 siblings, 20 replies; 29+ messages in thread
From: Paolo Bonzini @ 2016-02-24 13:27 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit dd5e38b19d7cb07d317e1285941d8245c01da540:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160218-1' into staging (2016-02-18 15:20:35 +0000)

are available in the git repository at:

  git://github.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 38ec9d285196af55320f986dbf477ecf0d928ad6:

  target-i386: fix confusion in xcr0 bit position vs. mask (2016-02-24 14:20:40 +0100)

----------------------------------------------------------------
* Asynchronous dump-guest-memory from Peter
* improved logging with -D -daemonize from Dimitris
* more address_space_* optimization from Gonglei
* TCG xsave/xrstor thinko fix
* chardev bugfix and documentation patch

----------------------------------------------------------------
Dimitris Aragiorgis (1):
      log: Redirect stderr to logfile if deamonized

Eric Blake (1):
      chardev: Properly initialize ChardevCommon components

Fam Zheng (1):
      scripts/kvm/kvm_stat: Fix missing right parantheses and ".format(...)"

Gonglei (3):
      exec: store RAMBlock pointer into memory region
      memory: optimize qemu_get_ram_ptr and qemu_ram_ptr_length
      memory: Remove unreachable return statement

Paolo Bonzini (1):
      target-i386: fix confusion in xcr0 bit position vs. mask

Peter Maydell (1):
      qemu-options.hx: Improve documentation of chardev multiplexing mode

Peter Xu (11):
      dump-guest-memory: cleanup: removing dump_{error|cleanup}().
      dump-guest-memory: add "detach" flag for QMP/HMP interfaces.
      dump-guest-memory: using static DumpState, add DumpStatus
      dump-guest-memory: add dump_in_progress() helper function
      dump-guest-memory: introduce dump_process() helper function.
      dump-guest-memory: disable dump when in INMIGRATE state
      dump-guest-memory: add "detach" support
      DumpState: adding total_size and written_size fields
      Dump: add qmp command "query-dump"
      Dump: add hmp command "info dump"
      dump-guest-memory: add qmp event DUMP_COMPLETED

 docs/qmp-events.txt             |  18 ++++
 dump.c                          | 215 ++++++++++++++++++++++++++++++----------
 exec.c                          |  48 +++++----
 hmp-commands-info.hx            |  14 +++
 hmp-commands.hx                 |   5 +-
 hmp.c                           |  26 ++++-
 hmp.h                           |   1 +
 include/exec/memory.h           |   8 +-
 include/qemu-common.h           |   4 +
 include/qemu/log.h              |   6 --
 include/sysemu/char.h           |  10 ++
 include/sysemu/dump.h           |  15 +++
 include/sysemu/memory_mapping.h |   4 +
 memory.c                        |   3 +-
 memory_mapping.c                |   3 +
 os-posix.c                      |   6 +-
 qapi-schema.json                |  56 ++++++++++-
 qapi/event.json                 |  16 +++
 qemu-char.c                     |   2 +-
 qemu-doc.texi                   |  30 ++++--
 qemu-options.hx                 |  45 ++++++++-
 qmp-commands.hx                 |  31 +++++-
 qmp.c                           |  14 +++
 scripts/kvm/kvm_stat            |   5 +-
 spice-qemu-char.c               |  12 ++-
 target-i386/cpu.c               |  29 ++++--
 target-i386/cpu.h               |  29 ++++--
 target-i386/fpu_helper.c        |  41 ++++----
 target-i386/mpx_helper.c        |   2 +-
 ui/console.c                    |  20 ++--
 util/log.c                      |  11 +-
 31 files changed, 564 insertions(+), 165 deletions(-)
-- 
2.5.0

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

end of thread, other threads:[~2016-02-29 11:18 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-24 13:27 [Qemu-devel] [PULL 00/19] Misc changes for 2016-02-24 Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 01/19] qemu-options.hx: Improve documentation of chardev multiplexing mode Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 02/19] scripts/kvm/kvm_stat: Fix missing right parantheses and ".format(...)" Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 03/19] dump-guest-memory: cleanup: removing dump_{error|cleanup}() Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 04/19] dump-guest-memory: add "detach" flag for QMP/HMP interfaces Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 05/19] dump-guest-memory: using static DumpState, add DumpStatus Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 06/19] dump-guest-memory: add dump_in_progress() helper function Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 07/19] dump-guest-memory: introduce dump_process() " Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 08/19] dump-guest-memory: disable dump when in INMIGRATE state Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 09/19] dump-guest-memory: add "detach" support Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 10/19] DumpState: adding total_size and written_size fields Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 11/19] Dump: add qmp command "query-dump" Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 12/19] Dump: add hmp command "info dump" Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 13/19] dump-guest-memory: add qmp event DUMP_COMPLETED Paolo Bonzini
2016-02-24 15:54   ` Eric Blake
2016-02-24 13:27 ` [Qemu-devel] [PULL 14/19] log: Redirect stderr to logfile if deamonized Paolo Bonzini
2016-02-29  8:57   ` Ján Tomko
2016-02-29  9:07     ` Paolo Bonzini
2016-02-29 10:04       ` Ján Tomko
2016-02-29 10:17         ` Paolo Bonzini
2016-02-29 11:05           ` Ján Tomko
2016-02-29 11:17             ` Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 15/19] exec: store RAMBlock pointer into memory region Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 16/19] memory: optimize qemu_get_ram_ptr and qemu_ram_ptr_length Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 17/19] memory: Remove unreachable return statement Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 18/19] chardev: Properly initialize ChardevCommon components Paolo Bonzini
2016-02-24 13:27 ` [Qemu-devel] [PULL 19/19] target-i386: fix confusion in xcr0 bit position vs. mask Paolo Bonzini
2016-02-25 10:45 ` [Qemu-devel] [PULL 00/19] Misc changes for 2016-02-24 Peter Maydell
2016-02-25 11:10   ` Gonglei (Arei)

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.