qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/32] Misc patches for QEMU soft freeze
Date: Tue, 28 Jun 2016 19:33:30 +0200	[thread overview]
Message-ID: <1467135242-874-1-git-send-email-pbonzini@redhat.com> (raw)

The following changes since commit 7dd929dfdc5c52ce79b21bf557ff506e89acbf63:

  configure: Make AVX2 test robust to non-ELF systems (2016-06-28 15:40:40 +0100)

are available in the git repository at:

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

for you to fetch changes up to ea74c50f48100860ef4d27f4a1b2aa3f5cb9a766:

  vl: smp_parse: fix regression (2016-06-28 19:19:29 +0200)

----------------------------------------------------------------
* serial port fixes (Paolo)
* Q35 modeling improvements (Paolo, Vasily)
* chardev cleanup improvements (Marc-André)
* iscsi bugfix (Peter L.)
* cpu_exec patch from multi-arch patches (Peter C.)
* pci-assign tweak (Lin Ma)

----------------------------------------------------------------
Andrew Jones (1):
      vl: smp_parse: fix regression

Efimov Vasily (13):
      ide: move headers to include folder
      pcspk: convert "pit" property type from ptr to link
      vmport: identify vmport type by macro TYPE_VMPORT
      pflash: make TYPE_CFI_PFLASH0{1,2} macros public
      Q35: implement property interfece to several parameters
      pc_q35: configure Q35 instance using properties
      pckbd: handle A20 IRQ as GPIO
      port92: handle A20 IRQ as GPIO
      ICH9 SMB: make TYPE_ICH9_SMB_DEVICE macro public
      ICH9 LPC: handle GSI as qdev GPIO
      ICH9 LPC: move call of isa_bus_irqs to 'realize' method
      isa: introduce wrapper isa_connect_gpio_out
      MC146818 RTC: add GPIO access to output IRQ

Lin Ma (1):
      pci-assign: Move "Invalid ROM" error message to pci-assign-load-rom.c

Marc-André Lureau (3):
      char: clean up remaining chardevs when leaving
      socket: add listen feature
      socket: unlink unix socket on remove

Paolo Bonzini (13):
      ich9: call ich9_lpc_update_pic for disabled pirqs
      ich9: clean up ich9_lpc_update_pic/ich9_lpc_update_apic and callers
      ich9: unify pic and ioapic IRQ vectors
      scsi: esp: fix migration
      vnc: generalize "VNC server running on ..." message
      serial: make tsr_retry unsigned
      serial: simplify tsr_retry reset
      serial: separate serial_xmit and serial_watch_cb
      char: change qemu_chr_fe_add_watch to return unsigned
      serial: remove watch on reset
      serial: reinstate watch after migration
      ich9: implement ACPI_EN register
      ich9: implement SCI_IRQ_SEL register

Peter Crosthwaite (1):
      target-*: Don't redefine cpu_exec()

Peter Lieven (1):
      iscsi: fix assertion in is_sector_request_lun_aligned

 block/iscsi.c                     |  5 ++-
 hw/audio/pcspk.c                  |  9 +++-
 hw/block/pflash_cfi01.c           |  1 -
 hw/block/pflash_cfi02.c           |  1 -
 hw/char/cadence_uart.c            |  9 ++--
 hw/char/serial.c                  | 67 ++++++++++++++++++++++-------
 hw/i2c/smbus_ich9.c               |  1 -
 hw/i386/kvm/pci-assign.c          |  4 --
 hw/i386/pc.c                      | 10 ++---
 hw/i386/pc_q35.c                  | 28 +++++++-----
 hw/i386/pci-assign-load-rom.c     |  3 ++
 hw/ide/ahci.c                     |  2 +-
 hw/input/pckbd.c                  | 21 +++------
 hw/isa/isa-bus.c                  |  7 +++
 hw/isa/lpc_ich9.c                 | 89 ++++++++++++++++++++++-----------------
 hw/misc/vmport.c                  |  1 -
 hw/pci-host/q35.c                 | 20 +++++++++
 hw/scsi/esp.c                     |  5 ++-
 hw/timer/mc146818rtc.c            |  6 ++-
 include/exec/cpu-all.h            |  2 +
 include/hw/audio/pcspk.h          |  2 +-
 include/hw/block/flash.h          |  3 ++
 include/hw/char/serial.h          |  3 +-
 include/hw/i386/ich9.h            |  8 +++-
 include/hw/i386/pc.h              |  8 +++-
 {hw => include/hw}/ide/ahci.h     |  0
 {hw => include/hw}/ide/internal.h |  0
 {hw => include/hw}/ide/pci.h      |  0
 include/hw/isa/isa.h              |  1 +
 include/hw/pci-host/q35.h         |  9 +++-
 include/io/channel.h              |  1 +
 include/migration/vmstate.h       |  5 ++-
 include/qemu/sockets.h            |  3 +-
 include/sysemu/char.h             | 16 ++++++-
 include/ui/console.h              |  7 ---
 io/channel-socket.c               | 17 ++++++++
 linux-user/main.c                 | 32 +++++++-------
 net/vhost-user.c                  |  2 +-
 qemu-char.c                       | 19 +++++++--
 target-alpha/cpu.h                |  2 -
 target-arm/cpu.h                  |  2 -
 target-cris/cpu.h                 |  2 -
 target-i386/cpu.h                 |  2 -
 target-lm32/cpu.h                 |  2 -
 target-m68k/cpu.h                 |  2 -
 target-microblaze/cpu.h           |  2 -
 target-mips/cpu.h                 |  2 -
 target-moxie/cpu.h                |  2 -
 target-openrisc/cpu.h             |  2 -
 target-ppc/cpu.h                  |  2 -
 target-s390x/cpu.h                |  2 -
 target-sh4/cpu.h                  |  2 -
 target-sparc/cpu.h                |  2 -
 target-tilegx/cpu.h               |  2 -
 target-tricore/cpu.h              |  2 -
 target-unicore32/cpu.h            |  3 --
 target-xtensa/cpu.h               |  2 -
 tests/test-io-channel-socket.c    |  2 +-
 ui/vnc.c                          | 23 +++++-----
 util/qemu-sockets.c               | 18 ++++++++
 vl.c                              |  9 +---
 61 files changed, 317 insertions(+), 199 deletions(-)
 rename {hw => include/hw}/ide/ahci.h (100%)
 rename {hw => include/hw}/ide/internal.h (100%)
 rename {hw => include/hw}/ide/pci.h (100%)
-- 
2.7.4

             reply	other threads:[~2016-06-28 17:34 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-28 17:33 Paolo Bonzini [this message]
2016-06-28 17:33 ` [Qemu-devel] [PULL 01/32] ide: move headers to include folder Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 02/32] pcspk: convert "pit" property type from ptr to link Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 03/32] vmport: identify vmport type by macro TYPE_VMPORT Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 04/32] pflash: make TYPE_CFI_PFLASH0{1, 2} macros public Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 05/32] Q35: implement property interfece to several parameters Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 06/32] pc_q35: configure Q35 instance using properties Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 07/32] pckbd: handle A20 IRQ as GPIO Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 08/32] port92: " Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 09/32] ICH9 SMB: make TYPE_ICH9_SMB_DEVICE macro public Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 10/32] ich9: call ich9_lpc_update_pic for disabled pirqs Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 11/32] ich9: clean up ich9_lpc_update_pic/ich9_lpc_update_apic and callers Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 12/32] ich9: unify pic and ioapic IRQ vectors Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 13/32] ICH9 LPC: handle GSI as qdev GPIO Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 14/32] ICH9 LPC: move call of isa_bus_irqs to 'realize' method Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 15/32] isa: introduce wrapper isa_connect_gpio_out Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 16/32] MC146818 RTC: add GPIO access to output IRQ Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 17/32] scsi: esp: fix migration Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 18/32] vnc: generalize "VNC server running on ..." message Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 19/32] pci-assign: Move "Invalid ROM" error message to pci-assign-load-rom.c Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 20/32] target-*: Don't redefine cpu_exec() Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 21/32] char: clean up remaining chardevs when leaving Paolo Bonzini
2016-07-01 12:34   ` Andrew Jones
2016-07-01 15:18     ` Paolo Bonzini
2016-07-01 15:29       ` Laszlo Ersek
2016-06-28 17:33 ` [Qemu-devel] [PULL 22/32] socket: add listen feature Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 23/32] socket: unlink unix socket on remove Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 24/32] iscsi: fix assertion in is_sector_request_lun_aligned Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 25/32] serial: make tsr_retry unsigned Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 26/32] serial: simplify tsr_retry reset Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 27/32] serial: separate serial_xmit and serial_watch_cb Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 28/32] char: change qemu_chr_fe_add_watch to return unsigned Paolo Bonzini
2016-06-28 17:33 ` [Qemu-devel] [PULL 29/32] serial: remove watch on reset Paolo Bonzini
2016-06-28 17:34 ` [Qemu-devel] [PULL 30/32] serial: reinstate watch after migration Paolo Bonzini
2016-06-28 17:34 ` [Qemu-devel] [PULL 31/32] ich9: implement ACPI_EN register Paolo Bonzini
2016-06-28 17:34 ` [Qemu-devel] [PULL 32/32] ich9: implement SCI_IRQ_SEL register Paolo Bonzini
2016-06-29  9:42 ` [Qemu-devel] [PULL 00/32] Misc patches for QEMU soft freeze Peter Maydell
2016-06-29 10:42   ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1467135242-874-1-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).