qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Michael S. Tsirkin" <mst@redhat.com>, qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [PULL 00/16] pc,virtio: fixes
Date: Tue, 26 Jul 2022 14:51:32 -0700	[thread overview]
Message-ID: <dfa73e9a-9e2f-3b4b-b370-8ff40126eb32@linaro.org> (raw)
In-Reply-To: <20220726193858.177462-1-mst@redhat.com>

On 7/26/22 12:40, Michael S. Tsirkin wrote:
> The following changes since commit d1c912b816844aa045082595eba796b5a025dbc4:
> 
>    Merge tag 'linux-user-for-7.1-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-07-26 13:29:26 +0100)
> 
> are available in the Git repository at:
> 
>    git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
> 
> for you to fetch changes up to 0522be9a0c0094088ccef7aab352c57f483ca250:
> 
>    hw/virtio/virtio-iommu: Enforce power-of-two notify for both MAP and UNMAP (2022-07-26 15:33:29 -0400)
> 
> ----------------------------------------------------------------
> pc,virtio: fixes
> 
> Several fixes. From now on, regression fixes only.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Jean-Philippe Brucker (1):
>        hw/virtio/virtio-iommu: Enforce power-of-two notify for both MAP and UNMAP
> 
> Joao Martins (11):
>        hw/i386: add 4g boundary start to X86MachineState
>        i386/pc: create pci-host qdev prior to pc_memory_init()
>        i386/pc: pass pci_hole64_size to pc_memory_init()
>        i386/pc: factor out above-4g end to an helper
>        i386/pc: factor out cxl range end to helper
>        i386/pc: factor out cxl range start to helper
>        i386/pc: handle unitialized mr in pc_get_cxl_range_end()
>        i386/pc: factor out device_memory base/size to helper
>        i386/pc: bounds check phys-bits against max used GPA
>        i386/pc: relocate 4g start to 1T where applicable
>        i386/pc: restrict AMD only enforcing of 1Tb hole to new machine type
> 
> Jonathan Cameron (3):
>        hw/machine: Clear out left over CXL related pointer from move of state handling to machines.
>        hw/i386/pc: Always place CXL Memory Regions after device_memory
>        hw/cxl: Fix size of constant in interleave granularity function.
> 
> Robert Hoo (1):
>        acpi/nvdimm: Define trace events for NVDIMM and substitute nvdimm_debug()
> 
>   include/hw/boards.h            |   1 -
>   include/hw/cxl/cxl_component.h |   2 +-
>   include/hw/i386/pc.h           |   4 +-
>   include/hw/i386/x86.h          |   3 +
>   include/hw/mem/nvdimm.h        |   8 --
>   include/hw/pci-host/i440fx.h   |   3 +-
>   hw/acpi/nvdimm.c               |  35 ++++---
>   hw/i386/acpi-build.c           |   2 +-
>   hw/i386/pc.c                   | 209 ++++++++++++++++++++++++++++++++---------
>   hw/i386/pc_piix.c              |  15 ++-
>   hw/i386/pc_q35.c               |  15 ++-
>   hw/i386/sgx.c                  |   2 +-
>   hw/i386/x86.c                  |   1 +
>   hw/pci-host/i440fx.c           |   5 +-
>   hw/virtio/virtio-iommu.c       |  47 +++++----
>   hw/acpi/trace-events           |  13 +++
>   16 files changed, 258 insertions(+), 107 deletions(-)
> 
> 



      parent reply	other threads:[~2022-07-26 21:56 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-26 19:40 [PULL 00/16] pc,virtio: fixes Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 01/16] acpi/nvdimm: Define trace events for NVDIMM and substitute nvdimm_debug() Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 02/16] hw/machine: Clear out left over CXL related pointer from move of state handling to machines Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 03/16] hw/i386/pc: Always place CXL Memory Regions after device_memory Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 04/16] hw/cxl: Fix size of constant in interleave granularity function Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 05/16] hw/i386: add 4g boundary start to X86MachineState Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 06/16] i386/pc: create pci-host qdev prior to pc_memory_init() Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 07/16] i386/pc: pass pci_hole64_size " Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 08/16] i386/pc: factor out above-4g end to an helper Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 09/16] i386/pc: factor out cxl range end to helper Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 10/16] i386/pc: factor out cxl range start " Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 11/16] i386/pc: handle unitialized mr in pc_get_cxl_range_end() Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 12/16] i386/pc: factor out device_memory base/size to helper Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 13/16] i386/pc: bounds check phys-bits against max used GPA Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 14/16] i386/pc: relocate 4g start to 1T where applicable Michael S. Tsirkin
2022-07-26 19:40 ` [PULL 15/16] i386/pc: restrict AMD only enforcing of 1Tb hole to new machine type Michael S. Tsirkin
2022-07-26 19:41 ` [PULL 16/16] hw/virtio/virtio-iommu: Enforce power-of-two notify for both MAP and UNMAP Michael S. Tsirkin
2022-07-26 21:51 ` Richard Henderson [this message]

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=dfa73e9a-9e2f-3b4b-b370-8ff40126eb32@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --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).