[Qemu-devel] [PULL 00/23] Misc patches for QEMU 4.0-rc, mostly Kconfig refinements

Paolo Bonzini posted 23 patches 5 years ago
Failed in applying to current master (apply log)
Kconfig.host                            |  3 ++
Makefile                                |  7 +--
default-configs/mips-softmmu-common.mak |  1 +
default-configs/mips64el-softmmu.mak    |  2 +
hw/Kconfig                              |  1 +
hw/alpha/Kconfig                        |  1 +
hw/char/Makefile.objs                   |  2 +-
hw/char/parallel-isa.c                  |  3 ++
hw/display/Kconfig                      |  2 +-
hw/hppa/Kconfig                         |  2 +
hw/i386/Kconfig                         |  8 +--
hw/i386/intel_iommu.c                   | 91 +++++++++++++++++++++------------
hw/intc/Kconfig                         |  3 ++
hw/isa/Kconfig                          |  2 +
hw/misc/Kconfig                         |  4 +-
hw/net/Kconfig                          |  4 +-
hw/pci-bridge/Kconfig                   |  6 +--
hw/pci-host/Kconfig                     |  1 +
hw/pci/Kconfig                          |  6 +++
hw/ppc/Kconfig                          |  5 +-
hw/rdma/Kconfig                         |  3 ++
hw/rdma/Makefile.objs                   |  6 +--
hw/riscv/Kconfig                        |  1 +
hw/riscv/sifive_plic.c                  |  3 ++
hw/s390x/Kconfig                        |  1 +
hw/sh4/Kconfig                          |  1 +
hw/sparc64/Kconfig                      |  2 +-
include/hw/i386/intel_iommu.h           |  7 ++-
memory.c                                |  9 +++-
scripts/minikconf.py                    |  2 +-
target/i386/sev.c                       | 11 ++++
tests/Makefile.include                  |  3 --
tests/test-announce-self.c              | 73 --------------------------
tests/virtio-net-test.c                 | 30 +++++++++++
34 files changed, 172 insertions(+), 134 deletions(-)
create mode 100644 hw/rdma/Kconfig
delete mode 100644 tests/test-announce-self.c
[Qemu-devel] [PULL 00/23] Misc patches for QEMU 4.0-rc, mostly Kconfig refinements
Posted by Paolo Bonzini 5 years ago
The following changes since commit 9164add701788075f229b560bc3e92f6562ff857:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-gitdm-next-120319-1' into staging (2019-03-14 13:48:48 +0000)

are available in the git repository at:


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

for you to fetch changes up to 938912a866114deb5660c93907a80635b16e5807:

  virtio-vga: only enable for specific boards (2019-03-21 17:42:18 +0100)

----------------------------------------------------------------
* Kconfig improvements (msi_nonbroken, imply for default PCI devices)
* intel-iommu: sharing passthrough FlatViews (Peter)
* Fix for SEV with VFIO (Brijesh)
* Allow compilation without CONFIG_PARALLEL (Thomas)

----------------------------------------------------------------
Alistair Francis (1):
      riscv: plic: Set msi_nonbroken as true

Paolo Bonzini (8):
      kconfig: add CONFIG_MSI_NONBROKEN
      kconfig: add dependencies on CONFIG_MSI_NONBROKEN
      hw/i386/Kconfig: PC uses I8257, not I82374
      prep: do not select I82374
      test-announce-self: convert to qgraph
      minikconf: fix parser typo
      config-all-devices.mak: rebuild on reconfigure
      virtio-vga: only enable for specific boards

Peter Xu (1):
      intel-iommu: optimize nodmar memory regions

Philippe Mathieu-Daudé (10):
      hw/isa/Kconfig: i82378 SuperIO requires PC speaker device
      hw/isa/Kconfig: PIIX4 southbridge requires USB UHCI
      hw/i386/Kconfig: enable devices that can be created by default
      hw/mips/Kconfig: Malta machine requires the pcnet network card
      hw/mips/Kconfig: Fulong 2e board requires ati-vga/rtl8139 PCI devices
      hw/ppc/Kconfig: Bamboo machine requires e1000 network card
      hw/ppc/Kconfig: e500 based machines require virtio-net-pci device
      hw/sh4/Kconfig: r2d machine requires the rtl8139 network card
      hw/hppa/Kconfig: Dino board requires e1000 network card
      hw/alpha/Kconfig: DP264 hardware requires e1000 network card

Singh, Brijesh (2):
      memory: Fix the memory region type assignment order
      target/i386: sev: Do not pin the ram device memory region

Thomas Huth (1):
      hw/char/parallel: Make it possible to compile also without CONFIG_PARALLEL

 Kconfig.host                            |  3 ++
 Makefile                                |  7 +--
 default-configs/mips-softmmu-common.mak |  1 +
 default-configs/mips64el-softmmu.mak    |  2 +
 hw/Kconfig                              |  1 +
 hw/alpha/Kconfig                        |  1 +
 hw/char/Makefile.objs                   |  2 +-
 hw/char/parallel-isa.c                  |  3 ++
 hw/display/Kconfig                      |  2 +-
 hw/hppa/Kconfig                         |  2 +
 hw/i386/Kconfig                         |  8 +--
 hw/i386/intel_iommu.c                   | 91 +++++++++++++++++++++------------
 hw/intc/Kconfig                         |  3 ++
 hw/isa/Kconfig                          |  2 +
 hw/misc/Kconfig                         |  4 +-
 hw/net/Kconfig                          |  4 +-
 hw/pci-bridge/Kconfig                   |  6 +--
 hw/pci-host/Kconfig                     |  1 +
 hw/pci/Kconfig                          |  6 +++
 hw/ppc/Kconfig                          |  5 +-
 hw/rdma/Kconfig                         |  3 ++
 hw/rdma/Makefile.objs                   |  6 +--
 hw/riscv/Kconfig                        |  1 +
 hw/riscv/sifive_plic.c                  |  3 ++
 hw/s390x/Kconfig                        |  1 +
 hw/sh4/Kconfig                          |  1 +
 hw/sparc64/Kconfig                      |  2 +-
 include/hw/i386/intel_iommu.h           |  7 ++-
 memory.c                                |  9 +++-
 scripts/minikconf.py                    |  2 +-
 target/i386/sev.c                       | 11 ++++
 tests/Makefile.include                  |  3 --
 tests/test-announce-self.c              | 73 --------------------------
 tests/virtio-net-test.c                 | 30 +++++++++++
 34 files changed, 172 insertions(+), 134 deletions(-)
 create mode 100644 hw/rdma/Kconfig
 delete mode 100644 tests/test-announce-self.c
-- 
1.8.3.1


Re: [Qemu-devel] [PULL 00/23] Misc patches for QEMU 4.0-rc, mostly Kconfig refinements
Posted by Peter Maydell 5 years ago
On Wed, 27 Mar 2019 at 12:39, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 9164add701788075f229b560bc3e92f6562ff857:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-gitdm-next-120319-1' into staging (2019-03-14 13:48:48 +0000)
>
> are available in the git repository at:
>
>
>   git://github.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 938912a866114deb5660c93907a80635b16e5807:
>
>   virtio-vga: only enable for specific boards (2019-03-21 17:42:18 +0100)
>
> ----------------------------------------------------------------
> * Kconfig improvements (msi_nonbroken, imply for default PCI devices)
> * intel-iommu: sharing passthrough FlatViews (Peter)
> * Fix for SEV with VFIO (Brijesh)
> * Allow compilation without CONFIG_PARALLEL (Thomas)
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM