qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] Misc patches for 2016-05-23
@ 2016-05-23 15:09 Paolo Bonzini
  2016-05-23 15:09 ` [Qemu-devel] [PULL 01/24] exec.c: Ensure right alignment also for file backed ram Paolo Bonzini
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Paolo Bonzini @ 2016-05-23 15:09 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit e081c24d30c1e7b29eb4450aa16d6a0da5782797:

  Merge remote-tracking branch 'remotes/ehabkost/tags/machine-pull-request' into staging (2016-05-23 10:30:41 +0100)

are available in the git repository at:


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

for you to fetch changes up to 1453e6627d19a8d6d54480c6980f5cef5dfc6833:

  cpus: call the core nmi injection function (2016-05-23 16:53:47 +0200)

----------------------------------------------------------------
* NMI cleanups (Bandan)
* RAMBlock/Memory cleanups and fixes (Dominik, Gonglei, Fam, me)
* first part of linuxboot support for fw_cfg DMA (Richard)
* IOAPIC fix (Peter Xu)
* iSCSI SG_IO fix (Vadim)
* Various infrastructure bug fixes (Zhijian, Peter M., Stefan)
* CVE fixes (Prasad)

----------------------------------------------------------------
Bandan Das (3):
      target-i386: add a generic x86 nmi handler
      nmi: remove x86 specific nmi handling
      cpus: call the core nmi injection function

Dominik Dingel (1):
      exec.c: Ensure right alignment also for file backed ram

Fam Zheng (2):
      memory: Remove code for mr->may_overlap
      memory: Drop FlatRange.romd_mode

Gonglei (2):
      memory: drop find_ram_block()
      exec: adjust rcu_read_lock requirement

Li Zhijian (1):
      vl: change runstate only if new state is different from current state

Paolo Bonzini (3):
      target-i386: key sfence availability on CPUID_SSE, not CPUID_SSE2
      memory: remove unnecessary masking of MemoryRegion ram_addr
      coccinelle: add g_assert_cmp* to macro file

Peter Maydell (2):
      cpus.c: Use pthread_sigmask() rather than sigprocmask()
      Remove config-devices.mak on 'make clean'

Peter Xu (2):
      ioapic: keep RO bits for IOAPIC entry
      ioapic: clear remote irr bit for edge-triggered interrupts

Pranith Kumar (1):
      docs/atomics.txt: Update pointer to linux macro

Prasad J Pandit (3):
      i386: kvmvapic: initialise imm32 variable
      esp: check command buffer length before write(CVE-2016-4439)
      esp: check dma length before reading scsi command(CVE-2016-4441)

Richard W.M. Jones (2):
      scripts/signrom.py: Allow option ROM checksum script to write the size header.
      scripts/signrom.py: Check for magic in option ROMs.

Stefan Weil (1):
      configure: Allow builds with extra warnings

Vadim Rozenfeld (1):
      iscsi: pass SCSI status back for SG_IO

 Makefile                          |  1 +
 block/iscsi.c                     |  1 +
 configure                         |  2 +-
 cpus.c                            | 16 +---------
 docs/atomics.txt                  |  4 +--
 exec.c                            | 64 +++++++++++----------------------------
 hw/core/nmi.c                     | 24 ---------------
 hw/i386/kvmvapic.c                |  2 +-
 hw/i386/pc.c                      | 20 ++++++++++++
 hw/intc/ioapic.c                  | 33 ++++++++++++++++++++
 hw/scsi/esp.c                     | 17 ++++++++---
 hw/watchdog/watchdog.c            |  2 +-
 include/exec/cpu-common.h         |  4 +--
 include/exec/memory.h             |  1 -
 include/exec/ram_addr.h           |  2 +-
 include/hw/i386/ioapic_internal.h |  5 +++
 include/hw/nmi.h                  |  1 -
 include/qemu/osdep.h              | 13 ++++++++
 memory.c                          | 46 ++--------------------------
 migration/ram.c                   |  2 +-
 migration/savevm.c                |  4 +--
 scripts/cocci-macro-file.h        |  6 ++++
 scripts/signrom.py                | 28 +++++++++++++++--
 target-i386/translate.c           |  5 +++
 translate-all.c                   |  3 +-
 util/oslib-posix.c                | 13 --------
 vl.c                              |  4 +++
 27 files changed, 158 insertions(+), 165 deletions(-)
-- 
1.8.3.1

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

end of thread, other threads:[~2016-05-23 16:17 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-23 15:09 [Qemu-devel] [PULL 00/24] Misc patches for 2016-05-23 Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 01/24] exec.c: Ensure right alignment also for file backed ram Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 02/24] docs/atomics.txt: Update pointer to linux macro Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 03/24] i386: kvmvapic: initialise imm32 variable Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 04/24] configure: Allow builds with extra warnings Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 05/24] target-i386: key sfence availability on CPUID_SSE, not CPUID_SSE2 Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 06/24] ioapic: keep RO bits for IOAPIC entry Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 07/24] ioapic: clear remote irr bit for edge-triggered interrupts Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 08/24] vl: change runstate only if new state is different from current state Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 09/24] memory: drop find_ram_block() Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 10/24] exec: adjust rcu_read_lock requirement Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 11/24] memory: Remove code for mr->may_overlap Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 12/24] memory: Drop FlatRange.romd_mode Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 13/24] memory: remove unnecessary masking of MemoryRegion ram_addr Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 14/24] cpus.c: Use pthread_sigmask() rather than sigprocmask() Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 15/24] Remove config-devices.mak on 'make clean' Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 16/24] scripts/signrom.py: Allow option ROM checksum script to write the size header Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 17/24] scripts/signrom.py: Check for magic in option ROMs Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 18/24] esp: check command buffer length before write(CVE-2016-4439) Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 19/24] esp: check dma length before reading scsi command(CVE-2016-4441) Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 20/24] iscsi: pass SCSI status back for SG_IO Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 21/24] coccinelle: add g_assert_cmp* to macro file Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 22/24] target-i386: add a generic x86 nmi handler Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 23/24] nmi: remove x86 specific nmi handling Paolo Bonzini
2016-05-23 15:09 ` [Qemu-devel] [PULL 24/24] cpus: call the core nmi injection function Paolo Bonzini
2016-05-23 16:16 ` [Qemu-devel] [PULL 00/24] Misc patches for 2016-05-23 Peter Maydell

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