qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/49] chardev, NBD, cpus, scripts/ changes for 2015-01-26
@ 2016-01-26 13:46 Paolo Bonzini
  2016-01-26 13:46 ` [Qemu-devel] [PULL 01/49] char: remove fixed length filename allocation Paolo Bonzini
                   ` (49 more replies)
  0 siblings, 50 replies; 55+ messages in thread
From: Paolo Bonzini @ 2016-01-26 13:46 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 3db34bf64ab4f8797565dd8750003156c32b301d:

  Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging (2016-01-18 17:40:50 +0000)

are available in the git repository at:


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

for you to fetch changes up to 0932a8ff6feec098a30191e8ae9c3d3aa759e844:

  scripts/dump-guest-memory.py: Fix module docstring (2016-01-26 13:55:19 +0100)

----------------------------------------------------------------
* chardev support for TLS and leak fix
* NBD fix from Denis
* condvar fix from Dave
* kvm_stat and dump-guest-memory almost rewrite
* mem-prealloc fix from Luiz
* manpage style improvement

----------------------------------------------------------------
Daniel P. Berrange (4):
      char: remove fixed length filename allocation
      char: convert from GIOChannel to QIOChannel
      char: don't assume telnet initialization will not block
      char: introduce support for TLS encrypted TCP chardev backend

Denis V. Lunev (1):
      nbd: add missed aio_context_acquire in nbd_export_new

Dr. David Alan Gilbert (1):
      cpus: use broadcast on qemu_pause_cond

Janosch Frank (40):
      scripts/kvm/kvm_stat: Cleanup of multiple imports
      scripts/kvm/kvm_stat: Replaced os.listdir with os.walk
      scripts/kvm/kvm_stat: Make constants uppercase
      scripts/kvm/kvm_stat: Removed unneeded PERF constants
      scripts/kvm/kvm_stat: Mark globals in functions
      scripts/kvm/kvm_stat: Invert dictionaries
      scripts/kvm/kvm_stat: Cleanup of path variables
      scripts/kvm/kvm_stat: Improve debugfs access checking
      scripts/kvm/kvm_stat: Introduce main function
      scripts/kvm/kvm_stat: Fix spaces around keyword assignments
      scripts/kvm/kvm_stat: Rename variables that redefine globals
      scripts/kvm/kvm_stat: Moved DebugfsProvider
      scripts/kvm/kvm_stat: Fixup syscall error reporting
      scripts/kvm/kvm_stat: Set sensible no. files rlimit
      scripts/kvm/kvm_stat: Cleanup of platform detection
      scripts/kvm/kvm_stat: Make cpu detection a function
      scripts/kvm/kvm_stat: Rename _perf_event_open
      scripts/kvm/kvm_stat: Introduce properties for providers
      scripts/kvm/kvm_stat: Cleanup of TracepointProvider
      scripts/kvm/kvm_stat: Cleanup cpu list retrieval
      scripts/kvm/kvm_stat: Encapsulate filters variable
      scripts/kvm/kvm_stat: Cleanup of Stats class
      scripts/kvm/kvm_stat: Cleanup of Groups class
      scripts/kvm/kvm_stat: Cleanup of Event class
      scripts/kvm/kvm_stat: Group arch specific data
      scripts/kvm/kvm_stat: Remove unneeded X86_EXIT_REASONS
      scripts/kvm/kvm_stat: Make tui function a class
      scripts/kvm/kvm_stat: Fix output formatting
      scripts/kvm/kvm_stat: Cleanup and pre-init perf_event_attr
      scripts/kvm/kvm_stat: Read event values as u64
      scripts/kvm/kvm_stat: Fix rlimit for unprivileged users
      scripts/kvm/kvm_stat: Fixup filtering
      scripts/kvm/kvm_stat: Add interactive filtering
      scripts/kvm/kvm_stat: Add optparse description
      scripts/dump-guest-memory.py: Move constants to the top
      scripts/dump-guest-memory.py: Make methods functions
      scripts/dump-guest-memory.py: Improve python 3 compatibility
      scripts/dump-guest-memory.py: Cleanup functions
      scripts/dump-guest-memory.py: Introduce multi-arch support
      scripts/dump-guest-memory.py: Fix module docstring

Luiz Capitulino (1):
      memory: exit when hugepage allocation fails if mem-prealloc

Paolo Bonzini (1):
      qemu-char: avoid leak in qemu_chr_open_pp_fd

Sitsofe Wheeler (1):
      docs: Style the command and its options in the synopsis

 cpus.c                         |    4 +-
 fsdev/virtfs-proxy-helper.texi |    2 +-
 nbd/server.c                   |    2 +
 numa.c                         |   11 +-
 qapi-schema.json               |    2 +
 qemu-char.c                    |  924 ++++++++++++++++---------------
 qemu-doc.texi                  |    8 +-
 qemu-ga.texi                   |    2 +-
 qemu-img.texi                  |    2 +-
 qemu-options.hx                |    9 +-
 scripts/dump-guest-memory.py   |  762 +++++++++++++++----------
 scripts/kvm/kvm_stat           | 1199 +++++++++++++++++++++++-----------------
 tests/Makefile                 |    2 +-
 13 files changed, 1662 insertions(+), 1267 deletions(-)
-- 
1.8.3.1

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

end of thread, other threads:[~2016-02-02 14:26 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-26 13:46 [Qemu-devel] [PULL 00/49] chardev, NBD, cpus, scripts/ changes for 2015-01-26 Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 01/49] char: remove fixed length filename allocation Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 02/49] char: convert from GIOChannel to QIOChannel Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 03/49] char: don't assume telnet initialization will not block Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 04/49] char: introduce support for TLS encrypted TCP chardev backend Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 05/49] docs: Style the command and its options in the synopsis Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 06/49] qemu-char: avoid leak in qemu_chr_open_pp_fd Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 07/49] scripts/kvm/kvm_stat: Cleanup of multiple imports Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 08/49] scripts/kvm/kvm_stat: Replaced os.listdir with os.walk Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 09/49] scripts/kvm/kvm_stat: Make constants uppercase Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 10/49] scripts/kvm/kvm_stat: Removed unneeded PERF constants Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 11/49] scripts/kvm/kvm_stat: Mark globals in functions Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 12/49] scripts/kvm/kvm_stat: Invert dictionaries Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 13/49] scripts/kvm/kvm_stat: Cleanup of path variables Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 14/49] scripts/kvm/kvm_stat: Improve debugfs access checking Paolo Bonzini
2016-02-02 14:02   ` Christian Borntraeger
2016-02-02 14:25     ` Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 15/49] scripts/kvm/kvm_stat: Introduce main function Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 16/49] scripts/kvm/kvm_stat: Fix spaces around keyword assignments Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 17/49] scripts/kvm/kvm_stat: Rename variables that redefine globals Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 18/49] scripts/kvm/kvm_stat: Moved DebugfsProvider Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 19/49] scripts/kvm/kvm_stat: Fixup syscall error reporting Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 20/49] scripts/kvm/kvm_stat: Set sensible no. files rlimit Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 21/49] scripts/kvm/kvm_stat: Cleanup of platform detection Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 22/49] scripts/kvm/kvm_stat: Make cpu detection a function Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 23/49] scripts/kvm/kvm_stat: Rename _perf_event_open Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 24/49] scripts/kvm/kvm_stat: Introduce properties for providers Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 25/49] scripts/kvm/kvm_stat: Cleanup of TracepointProvider Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 26/49] scripts/kvm/kvm_stat: Cleanup cpu list retrieval Paolo Bonzini
2016-01-26 13:46 ` [Qemu-devel] [PULL 27/49] scripts/kvm/kvm_stat: Encapsulate filters variable Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 28/49] scripts/kvm/kvm_stat: Cleanup of Stats class Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 29/49] scripts/kvm/kvm_stat: Cleanup of Groups class Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 30/49] scripts/kvm/kvm_stat: Cleanup of Event class Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 31/49] scripts/kvm/kvm_stat: Group arch specific data Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 32/49] scripts/kvm/kvm_stat: Remove unneeded X86_EXIT_REASONS Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 33/49] scripts/kvm/kvm_stat: Make tui function a class Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 34/49] scripts/kvm/kvm_stat: Fix output formatting Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 35/49] scripts/kvm/kvm_stat: Cleanup and pre-init perf_event_attr Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 36/49] scripts/kvm/kvm_stat: Read event values as u64 Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 37/49] scripts/kvm/kvm_stat: Fix rlimit for unprivileged users Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 38/49] scripts/kvm/kvm_stat: Fixup filtering Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 39/49] scripts/kvm/kvm_stat: Add interactive filtering Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 40/49] scripts/kvm/kvm_stat: Add optparse description Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 41/49] cpus: use broadcast on qemu_pause_cond Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 42/49] memory: exit when hugepage allocation fails if mem-prealloc Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 43/49] nbd: add missed aio_context_acquire in nbd_export_new Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 44/49] scripts/dump-guest-memory.py: Move constants to the top Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 45/49] scripts/dump-guest-memory.py: Make methods functions Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 46/49] scripts/dump-guest-memory.py: Improve python 3 compatibility Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 47/49] scripts/dump-guest-memory.py: Cleanup functions Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 48/49] scripts/dump-guest-memory.py: Introduce multi-arch support Paolo Bonzini
2016-01-26 13:47 ` [Qemu-devel] [PULL 49/49] scripts/dump-guest-memory.py: Fix module docstring Paolo Bonzini
2016-01-26 14:38 ` [Qemu-devel] [PULL 00/49] chardev, NBD, cpus, scripts/ changes for 2015-01-26 Peter Maydell
2016-01-26 15:29   ` Daniel P. Berrange
2016-01-26 16:06   ` [Qemu-devel] [PATCH] char: make io_channel_send be used unconditionally Daniel P. Berrange

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).