qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] Misc patches for 2015-09-16
@ 2015-09-16 12:29 Paolo Bonzini
  2015-09-16 12:29 ` [Qemu-devel] [PULL 01/24] pci: remove Link Training error from AER error list Paolo Bonzini
                   ` (25 more replies)
  0 siblings, 26 replies; 34+ messages in thread
From: Paolo Bonzini @ 2015-09-16 12:29 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 007e620a7576e4ce2ea6955541e87d8ae8ed32ae:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2015-09-14 18:51:09 +0100)

are available in the git repository at:

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

for you to fetch changes up to 54ac801d5d1d5618344f65132f0d707c8c620df4:

  Revert "rcu: init rcu_registry_lock after fork" (2015-09-16 14:27:59 +0200)

----------------------------------------------------------------
* Linux header update and cleanup
* Support for HyperV crash report
* Cleanup of target-specific HMP commands
* Multiarch batch
* Checkpatch fix for Perl 5.22
* NBD fix
* Revert incorrect commit 5243722376

----------------------------------------------------------------
Andrey Smetanin (3):
      cpu: Add crash_occurred flag into CPUState
      kvm: Add kvm system event crash handler
      i386/kvm: Hyper-v crash msrs set/get'ers and migration

Fam Zheng (1):
      checkpatch: Escape left braces in regex

Markus Armbruster (1):
      qemu-char: Use g_new() & friends where that makes obvious sense

Paolo Bonzini (5):
      pci: remove Link Training error from AER error list
      update Linux headers to 4.3-rc1
      update-linux-headers: copy standard-headers files one by one
      target-i386: move asm-x86/hyperv.h to standard-headers
      Revert "rcu: init rcu_registry_lock after fork"

Pavel Butsykin (4):
      hmp-commands-info: move info_cmds content out of monitor.c
      monitor: remove target-specific code from monitor.c
      hmp-commands.hx: fix end of table info
      monitor: added generation of documentation for hmp-commands-info.hx

Peter Crosthwaite (9):
      cpu-exec: Migrate some generic fns to cpu-exec-common
      translate-all: Move tcg_handle_interrupt() to -common
      tcg: split tcg_op_defs to -common
      tcg: Move tci_tb_ptr to -common
      translate: move real_host_page setting to -common
      cputlb: move CPU_LOOP() for tlb_reset() to exec.c
      cputlb: Change tlb_set_dirty() arg to cpu
      include/exec: Move cputlb exec.c defs out
      monitor: uninclude cpu_ldst

Wen Congyang (1):
      nbd: release exp->blk after all clients are closed

 .gitignore                                   |    1 +
 Makefile                                     |   10 +-
 Makefile.target                              |    8 +-
 backends/testdev.c                           |    4 +-
 cpu-exec-common.c                            |   81 ++
 cpu-exec.c                                   |   59 --
 cputlb.c                                     |   30 +-
 exec.c                                       |   28 +-
 hmp-commands-info.hx                         |  749 +++++++++++++++
 hmp-commands.hx                              |  120 ---
 hw/pci/pcie_aer.c                            |    4 -
 include/exec/cputlb.h                        |   16 -
 include/exec/exec-all.h                      |   18 +
 include/monitor/monitor-common.h             |   45 +
 include/qemu/typedefs.h                      |    1 +
 include/qom/cpu.h                            |    2 +
 include/standard-headers/asm-x86/hyperv.h    |  254 ++++++
 include/standard-headers/linux/pci_regs.h    |  381 ++++++--
 include/standard-headers/linux/virtio_ring.h |    3 +-
 kvm-all.c                                    |    6 +
 linux-headers/asm-x86/hyperv.h               |  251 +-----
 linux-headers/asm-x86/kvm.h                  |    4 +-
 linux-headers/linux/kvm.h                    |    2 +
 monitor.c                                    | 1250 +-------------------------
 nbd.c                                        |   21 +-
 qemu-char.c                                  |   22 +-
 qemu-doc.texi                                |    2 +
 qom/cpu.c                                    |    1 +
 scripts/checkpatch.pl                        |   22 +-
 scripts/update-linux-headers.sh              |   77 +-
 stubs/Makefile.objs                          |    1 +
 stubs/target-monitor-defs.c                  |    9 +
 target-i386/Makefile.objs                    |    2 +-
 target-i386/cpu-qom.h                        |    1 +
 target-i386/cpu.c                            |    1 +
 target-i386/cpu.h                            |    2 +
 target-i386/kvm.c                            |   34 +-
 target-i386/machine.c                        |   27 +
 target-i386/monitor.c                        |  494 ++++++++++
 target-ppc/Makefile.objs                     |    2 +-
 target-ppc/monitor.c                         |  255 ++++++
 target-sh4/Makefile.objs                     |    1 +
 target-sh4/monitor.c                         |   52 ++
 target-sparc/Makefile.objs                   |    2 +-
 target-sparc/monitor.c                       |  158 ++++
 target-xtensa/Makefile.objs                  |    1 +
 target-xtensa/monitor.c                      |   34 +
 tcg/tcg-common.c                             |   37 +
 tcg/tcg.c                                    |    8 +-
 tcg/tci/tcg-target.c                         |    2 +-
 tci.c                                        |    6 -
 translate-all.c                              |   32 -
 translate-common.c                           |   56 ++
 util/rcu.c                                   |    7 +-
 vl.c                                         |    3 +
 55 files changed, 2765 insertions(+), 1934 deletions(-)
 create mode 100644 cpu-exec-common.c
 create mode 100644 hmp-commands-info.hx
 create mode 100644 include/monitor/monitor-common.h
 create mode 100644 include/standard-headers/asm-x86/hyperv.h
 create mode 100644 stubs/target-monitor-defs.c
 create mode 100644 target-i386/monitor.c
 create mode 100644 target-ppc/monitor.c
 create mode 100644 target-sh4/monitor.c
 create mode 100644 target-sparc/monitor.c
 create mode 100644 target-xtensa/monitor.c
 create mode 100644 tcg/tcg-common.c
 create mode 100644 translate-common.c
-- 
2.5.0

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

end of thread, other threads:[~2015-09-18 20:38 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-16 12:29 [Qemu-devel] [PULL 00/24] Misc patches for 2015-09-16 Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 01/24] pci: remove Link Training error from AER error list Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 02/24] update Linux headers to 4.3-rc1 Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 03/24] update-linux-headers: copy standard-headers files one by one Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 04/24] target-i386: move asm-x86/hyperv.h to standard-headers Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 05/24] cpu: Add crash_occurred flag into CPUState Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 06/24] kvm: Add kvm system event crash handler Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 07/24] i386/kvm: Hyper-v crash msrs set/get'ers and migration Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 08/24] hmp-commands-info: move info_cmds content out of monitor.c Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 09/24] monitor: remove target-specific code from monitor.c Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 10/24] hmp-commands.hx: fix end of table info Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 11/24] monitor: added generation of documentation for hmp-commands-info.hx Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 12/24] qemu-char: Use g_new() & friends where that makes obvious sense Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 13/24] cpu-exec: Migrate some generic fns to cpu-exec-common Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 14/24] translate-all: Move tcg_handle_interrupt() to -common Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 15/24] tcg: split tcg_op_defs " Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 16/24] tcg: Move tci_tb_ptr " Paolo Bonzini
2015-09-16 17:50   ` Stefan Weil
2015-09-16 19:14     ` Peter Crosthwaite
2015-09-16 19:58       ` Stefan Weil
2015-09-17  1:04         ` Peter Crosthwaite
2015-09-16 12:29 ` [Qemu-devel] [PULL 17/24] translate: move real_host_page setting " Paolo Bonzini
2015-09-18 18:52   ` Dr. David Alan Gilbert
2015-09-18 20:38     ` Peter Crosthwaite
2015-09-16 12:29 ` [Qemu-devel] [PULL 18/24] cputlb: move CPU_LOOP() for tlb_reset() to exec.c Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 19/24] cputlb: Change tlb_set_dirty() arg to cpu Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 20/24] include/exec: Move cputlb exec.c defs out Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 21/24] monitor: uninclude cpu_ldst Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 22/24] checkpatch: Escape left braces in regex Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 23/24] nbd: release exp->blk after all clients are closed Paolo Bonzini
2015-09-16 12:29 ` [Qemu-devel] [PULL 24/24] Revert "rcu: init rcu_registry_lock after fork" Paolo Bonzini
2015-09-16 14:28 ` [Qemu-devel] [PULL 00/24] Misc patches for 2015-09-16 Eric Blake
2015-09-16 15:08 ` Peter Maydell
2015-09-16 15:41   ` Paolo Bonzini

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