qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/13] Miscellaneous bugfixes for 2.4.0-rc3
@ 2015-07-24 10:16 Paolo Bonzini
  2015-07-24 10:16 ` [Qemu-devel] [PULL 01/13] exec.c: Use atomic_rcu_read() to access dispatch in memory_region_section_get_iotlb() Paolo Bonzini
                   ` (13 more replies)
  0 siblings, 14 replies; 20+ messages in thread
From: Paolo Bonzini @ 2015-07-24 10:16 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit dc94bd9166af5236a56bd5bb06845911915a925c:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2015-07-22 12:52:34 +0100)

are available in the git repository at:

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

for you to fetch changes up to 56496b77d7f9f5600caff6e5437a44b489e48c6f:

  target-i386/FPU: a misprint in helper_fistll_ST0 (2015-07-24 11:43:19 +0200)

----------------------------------------------------------------
* qemu-char fixes
* SCSI fixes (including CVE-2015-5158)
* RCU fixes
* Framebuffer logic to set DIRTY_MEMORY_VGA
* crypto unit test improvements
* Fix compiler warning for --disable-vnc
* qemu-doc fixes
* x86 TCG pasto fix

----------------------------------------------------------------
Daniel P. Berrange (1):
      crypto: extend unit tests to cover decryption too

Dmitry Poletaev (1):
      target-i386/FPU: a misprint in helper_fistll_ST0

Gonglei (2):
      vnc: fix memory leak
      qemu-doc: fix typos

Matthew Rosato (1):
      scsi: Handle no media case for scsi_get_configuration

Nils Carlson (1):
      qemu-char: Fix missed data on unix socket

Paolo Bonzini (5):
      qemu-char: handle EINTR for TCP character devices
      scsi: fix buffer overflow in scsi_req_parse_cdb (CVE-2015-5158)
      rcu: actually register threads that have RCU read-side critical sections
      memory: count number of active VGA logging clients
      framebuffer: set DIRTY_MEMORY_VGA on RAM that is used for the framebuffer

Peter Maydell (1):
      exec.c: Use atomic_rcu_read() to access dispatch in memory_region_section_get_iotlb()

Stefan Weil (1):
      vl: Fix compiler warning for builds without VNC

 cpus.c                       |  6 ++++
 exec.c                       |  5 ++-
 hw/display/framebuffer.c     | 75 ++++++++++++++++++++++++--------------------
 hw/display/framebuffer.h     | 44 ++++++++++++++++++++++++--
 hw/display/milkymist-vgafb.c | 15 +++++++--
 hw/display/omap_lcdc.c       | 12 +++++--
 hw/display/pl110.c           | 13 ++++++--
 hw/display/pxa2xx_lcd.c      | 29 ++++++++++++-----
 hw/scsi/scsi-bus.c           |  7 ++++-
 hw/scsi/scsi-disk.c          | 16 +++++++++-
 include/exec/memory.h        |  1 +
 iothread.c                   |  5 +++
 memory.c                     |  7 +++++
 migration/migration.c        |  4 +++
 qemu-char.c                  | 26 +++++++++------
 qemu-doc.texi                |  2 +-
 qemu-options.hx              |  2 +-
 qemu-tech.texi               |  2 +-
 target-i386/fpu_helper.c     |  2 +-
 tests/test-crypto-cipher.c   | 28 ++++++++++++-----
 tests/test-rcu-list.c        |  4 +++
 ui/vnc.c                     |  5 ++-
 util/rcu.c                   |  2 ++
 vl.c                         |  2 +-
 24 files changed, 236 insertions(+), 78 deletions(-)
-- 
2.4.3

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

end of thread, other threads:[~2015-07-24 12:36 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-24 10:16 [Qemu-devel] [PULL 00/13] Miscellaneous bugfixes for 2.4.0-rc3 Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 01/13] exec.c: Use atomic_rcu_read() to access dispatch in memory_region_section_get_iotlb() Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 02/13] qemu-char: handle EINTR for TCP character devices Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 03/13] qemu-char: Fix missed data on unix socket Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 04/13] crypto: extend unit tests to cover decryption too Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 05/13] vnc: fix memory leak Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 06/13] scsi: fix buffer overflow in scsi_req_parse_cdb (CVE-2015-5158) Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 07/13] rcu: actually register threads that have RCU read-side critical sections Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 08/13] scsi: Handle no media case for scsi_get_configuration Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 09/13] vl: Fix compiler warning for builds without VNC Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 10/13] memory: count number of active VGA logging clients Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 11/13] framebuffer: set DIRTY_MEMORY_VGA on RAM that is used for the framebuffer Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 12/13] qemu-doc: fix typos Paolo Bonzini
2015-07-24 10:16 ` [Qemu-devel] [PULL 13/13] target-i386/FPU: a misprint in helper_fistll_ST0 Paolo Bonzini
2015-07-24 11:56 ` [Qemu-devel] [PULL 00/13] Miscellaneous bugfixes for 2.4.0-rc3 Peter Maydell
2015-07-24 12:02   ` Paolo Bonzini
2015-07-24 12:07     ` Daniel P. Berrange
2015-07-24 12:24     ` Daniel P. Berrange
2015-07-24 12:30       ` Paolo Bonzini
2015-07-24 12:35         ` 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).