docs/system/devices/cxl.rst | 46 ++ hw/acpi/Kconfig | 1 + hw/acpi/cxl-stub.c | 2 +- hw/acpi/cxl.c | 4 +- hw/acpi/pci.c | 40 ++ hw/arm/smmu-common.c | 19 +- hw/i386/acpi-build.c | 2 +- hw/pci-bridge/pci_expander_bridge_stubs.c | 6 + hw/pci-host/gpex-acpi.c | 42 +- hw/vfio/pci.c | 742 ++++++++++++++++++++++ hw/vfio/pci.h | 24 + hw/vfio/region.c | 27 +- hw/vfio/vfio-region.h | 3 + include/hw/acpi/cxl.h | 2 +- include/hw/acpi/pci.h | 1 + linux-headers/linux/vfio.h | 22 + 16 files changed, 927 insertions(+), 56 deletions(-)
From: Manish Honap <mhonap@nvidia.com>
This series adds QEMU support for passing a CXL Type-2 device (an
accelerator with host-managed device memory, e.g. a GPU) to a guest via
vfio-pci. The guest drives its own virtual endpoint HDM decoder and QEMU
maps the device memory at the guest physical address the guest commits,
while the host owns the host physical placement.
It is a full rewrite of the RFC v1 series [1] on clean upstream master,
reworked to address Jonathan's review.
Base: master (post pull-9p-20260725), commit 6333226c2a.
Kernel dependency
-----------------
Pairs with the kernel vfio-cxl series "vfio/cxl: CXL Type-2 device
passthrough" [2].
- The kernel exposes the device memory as an HPA-backed VFIO region, traps
the HDM decoder block and runs its lock-on-commit FSM, handles the CXL
DVSEC (including guest-triggered reset), and reports two things through
VFIO:
- A device flag (VFIO_DEVICE_FLAGS_CXL) and
- The component-register geometry (VFIO_REGION_INFO_CAP_CXL_COMP_REGS).
Sample supported topology
-------------------------
Guest disk, network, and system-RAM lines are omitted:
-machine virt,accel=kvm,gic-version=3,hmat=on,cxl=on,ras=on, \
highmem-mmio-size=4T
-object iommufd,id=iommufd0
-device pxb-cxl,bus_nr=12,bus=pcie.0,id=cxl.1
-device cxl-rp,port=1,bus=cxl.1,id=rport0.1,chassis=4, \
pref64-reserve=2G,mem-reserve=1G
-M cxl-fmw.0.targets.0=cxl.1,cxl-fmw.0.size=256G
-device arm-smmuv3,primary-bus=cxl.1,id=smmuv3.0,accel=on,ats=on, \
ril=on,ssidsize=8,oas=48
-device vfio-pci-nohotplug,host=<BDF>,bus=rport0.1,id=dev0, \
iommufd=iommufd0
-object acpi-generic-initiator,id=gi0,pci-dev=dev0,node=2
... (one acpi-generic-initiator per guest NUMA node the HDM memory backs)
Address model
-------------
The kernel fixes device memory to a host physical range before the guest
sees the device, and hardware presents a firmware-committed, locked
endpoint HDM decoder whose registers hold that host physical base.
QEMU never exposes Host physical base. It virtualizes the decoder base registers
in the trapped component-register read and returns the base of the device's
CFMWS window, a guest physical address, so the guest only ever sees a GPA.
QEMU maps the RAM-device region (backed by the fixed HPA) at that CFMWS base.
The kernel never learns the GPA and the guest never learns the HPA.
Because the decoder is already committed at boot, no guest commit write
triggers the mapping. QEMU maps once the guest enables memory decoding
(the Command register Memory-Space bit) and re-checks on any decoder
control write, so the region enters the guest address space and the IOAS
while the device is live.
When the guest clears Memory-Space, QEMU withdraws the mapping, matching the
kernel's revoke of the backing PTEs on the same write, so a guest access during
the disabled interval cannot fault a zapped mapping and stop the VM; the enable
path re-installs it.
This also helps to keep the guest-visible base as the CFMWS base by
construction, and the host physical placement stays with the kernel.
The RFC added the pxb-cxl _DSM because OS may treat PCI configuration as
reassignable and a BAR move would break the CXL.mem mapping. This change keeps
it narrower than the RFC v1 _DSM: it applies only to the host bridge that
carries the passed-through CXL device.
Reset
-----
There is no QEMU reset patch. A guest CXL reset is a DVSEC write that
lands in vfio config space and is handled entirely by the host kernel,
which stamps the outcome into DVSEC STATUS2. The kernel re-commits this
firmware-fixed decoder across the reset, and the guest reaches its memory
through the mapping QEMU already installed.
Reviewer feedback addressed
---------------------------
The RFC [1] thread has the full discussion.
Jonathan Cameron
- The high-MMIO window and the cxl-fmws-base property are removed. The
guest-visible base is the CFMWS base by construction, so it equals the
decoder base and stays stable without a hack.
- The guest programs its virtual (GPA) decoder and QEMU maps the memory at
commit time.
- The host owns the HPA, resolved before the guest sees the device.
- The committed decoder is the fast path this series ships. The
guest-programmed uncommitted case is delivered by cxl-core resolving the
range at enumeration, not by a QEMU or vfio dynamic branch, so it is a
later cxl-core item this series does not depend on.
- FIRMWARE_COMMITTED is dropped; the cap is no longer exposed.
- The one-endpoint, non-interleaved, no-switch topology is enforced at
realize.
- PCI/BAR configuration and CXL.mem stay independent.
Validation
----------
- Every patch passes scripts/checkpatch.pl --codespell --strict
(patch 1 carries the expected imported-from-Linux warning)
- The series applies cleanly on the stated base.
- Ran couple of rounds of masoncl/review-prompts on this series before posting.
Pending items
-------------
Future enhancements for the multi-decoder, interleaved devices and switched
topologies.
Trapped CXL RAS registers are planned as a new VFIO region subtype that the same
region-by-subtype detection already handles, not as a change to the
component-register cap.
The bios-tables test refresh for the new _DSM is still to be added.
References
----------
[1] [RFC 0/9] QEMU: CXL Type-2 device passthrough via vfio-pci
https://lore.kernel.org/linux-cxl/20260427181235.3003865-1-mhonap@nvidia.com/
[2] [PATCH v4 00/27] vfio/pci: Add CXL Type-2 device passthrough support
https://lore.kernel.org/linux-cxl/20260813093631.2288172-1-mhonap@nvidia.com/
Manish Honap (10):
linux-headers: Update vfio.h for CXL Type-2 passthrough
hw/vfio/region: Add vfio_region_setup_with_ops()
hw/vfio/pci: Detect a CXL Type-2 device and read its geometry
hw/vfio/pci: Enforce the passthrough topology for a CXL device
hw/vfio/pci: Back the CXL memory with a RAM-device region
hw/vfio/pci: Bind a CXL device to its fixed memory window
hw/vfio/pci: Map the CXL memory on the guest decoder commit
docs/cxl: Document CXL Type-2 device passthrough
hw/arm/smmu-common: Allow pxb-cxl as an SMMUv3 primary bus
hw/pci-host: Emit a _DSM on pxb-cxl to preserve firmware PCI config
docs/system/devices/cxl.rst | 46 ++
hw/acpi/Kconfig | 1 +
hw/acpi/cxl-stub.c | 2 +-
hw/acpi/cxl.c | 4 +-
hw/acpi/pci.c | 40 ++
hw/arm/smmu-common.c | 19 +-
hw/i386/acpi-build.c | 2 +-
hw/pci-bridge/pci_expander_bridge_stubs.c | 6 +
hw/pci-host/gpex-acpi.c | 42 +-
hw/vfio/pci.c | 742 ++++++++++++++++++++++
hw/vfio/pci.h | 24 +
hw/vfio/region.c | 27 +-
hw/vfio/vfio-region.h | 3 +
include/hw/acpi/cxl.h | 2 +-
include/hw/acpi/pci.h | 1 +
linux-headers/linux/vfio.h | 22 +
16 files changed, 927 insertions(+), 56 deletions(-)
base-commit: 055952c0aa91ea7a00d135b73f78fc0b13442d6c
--
2.25.1
Hello Manish, On 8/13/26 15:06, mhonap@nvidia.com wrote: > From: Manish Honap <mhonap@nvidia.com> > > This series adds QEMU support for passing a CXL Type-2 device (an > accelerator with host-managed device memory, e.g. a GPU) to a guest via > vfio-pci. The guest drives its own virtual endpoint HDM decoder and QEMU > maps the device memory at the guest physical address the guest commits, > while the host owns the host physical placement. > > It is a full rewrite of the RFC v1 series [1] on clean upstream master, > reworked to address Jonathan's review. > > Base: master (post pull-9p-20260725), commit 6333226c2a. > > > Kernel dependency > ----------------- > > Pairs with the kernel vfio-cxl series "vfio/cxl: CXL Type-2 device > passthrough" [2]. > - The kernel exposes the device memory as an HPA-backed VFIO region, traps > the HDM decoder block and runs its lock-on-commit FSM, handles the CXL > DVSEC (including guest-triggered reset), and reports two things through > VFIO: > - A device flag (VFIO_DEVICE_FLAGS_CXL) and > - The component-register geometry (VFIO_REGION_INFO_CAP_CXL_COMP_REGS). > > > Sample supported topology > ------------------------- > > Guest disk, network, and system-RAM lines are omitted: > > -machine virt,accel=kvm,gic-version=3,hmat=on,cxl=on,ras=on, \ > highmem-mmio-size=4T > -object iommufd,id=iommufd0 > -device pxb-cxl,bus_nr=12,bus=pcie.0,id=cxl.1 > -device cxl-rp,port=1,bus=cxl.1,id=rport0.1,chassis=4, \ > pref64-reserve=2G,mem-reserve=1G > -M cxl-fmw.0.targets.0=cxl.1,cxl-fmw.0.size=256G > -device arm-smmuv3,primary-bus=cxl.1,id=smmuv3.0,accel=on,ats=on, \ > ril=on,ssidsize=8,oas=48 > -device vfio-pci-nohotplug,host=<BDF>,bus=rport0.1,id=dev0, \ > iommufd=iommufd0 > -object acpi-generic-initiator,id=gi0,pci-dev=dev0,node=2 > ... (one acpi-generic-initiator per guest NUMA node the HDM memory backs) > > > Address model > ------------- > > The kernel fixes device memory to a host physical range before the guest > sees the device, and hardware presents a firmware-committed, locked > endpoint HDM decoder whose registers hold that host physical base. > > QEMU never exposes Host physical base. It virtualizes the decoder base registers > in the trapped component-register read and returns the base of the device's > CFMWS window, a guest physical address, so the guest only ever sees a GPA. > > QEMU maps the RAM-device region (backed by the fixed HPA) at that CFMWS base. > > The kernel never learns the GPA and the guest never learns the HPA. > > Because the decoder is already committed at boot, no guest commit write > triggers the mapping. QEMU maps once the guest enables memory decoding > (the Command register Memory-Space bit) and re-checks on any decoder > control write, so the region enters the guest address space and the IOAS > while the device is live. > > When the guest clears Memory-Space, QEMU withdraws the mapping, matching the > kernel's revoke of the backing PTEs on the same write, so a guest access during > the disabled interval cannot fault a zapped mapping and stop the VM; the enable > path re-installs it. > > This also helps to keep the guest-visible base as the CFMWS base by > construction, and the host physical placement stays with the kernel. > > The RFC added the pxb-cxl _DSM because OS may treat PCI configuration as > reassignable and a BAR move would break the CXL.mem mapping. This change keeps > it narrower than the RFC v1 _DSM: it applies only to the host bridge that > carries the passed-through CXL device. > > > Reset > ----- > > There is no QEMU reset patch. A guest CXL reset is a DVSEC write that > lands in vfio config space and is handled entirely by the host kernel, > which stamps the outcome into DVSEC STATUS2. The kernel re-commits this > firmware-fixed decoder across the reset, and the guest reaches its memory > through the mapping QEMU already installed. > > > Reviewer feedback addressed > --------------------------- > > The RFC [1] thread has the full discussion. > > Jonathan Cameron > - The high-MMIO window and the cxl-fmws-base property are removed. The > guest-visible base is the CFMWS base by construction, so it equals the > decoder base and stays stable without a hack. > - The guest programs its virtual (GPA) decoder and QEMU maps the memory at > commit time. > - The host owns the HPA, resolved before the guest sees the device. > - The committed decoder is the fast path this series ships. The > guest-programmed uncommitted case is delivered by cxl-core resolving the > range at enumeration, not by a QEMU or vfio dynamic branch, so it is a > later cxl-core item this series does not depend on. > - FIRMWARE_COMMITTED is dropped; the cap is no longer exposed. > - The one-endpoint, non-interleaved, no-switch topology is enforced at > realize. > - PCI/BAR configuration and CXL.mem stay independent. > > > Validation > ---------- > > - Every patch passes scripts/checkpatch.pl --codespell --strict > (patch 1 carries the expected imported-from-Linux warning) > - The series applies cleanly on the stated base. > - Ran couple of rounds of masoncl/review-prompts on this series before posting. > > > Pending items > ------------- > > Future enhancements for the multi-decoder, interleaved devices and switched > topologies. > > Trapped CXL RAS registers are planned as a new VFIO region subtype that the same > region-by-subtype detection already handles, not as a change to the > component-register cap. > > The bios-tables test refresh for the new _DSM is still to be added. Before diving into CXL and doing a review of the QEMU patches, could you provide a status update on the kernel vfio-cxl series [2] ? The QEMU side is a consumer of the VFIO regions and capabilities the kernel exposes, and patch 1 notes the capability ID is still provisional. Knowing where the kernel series stands would help. That said, the UAPI looks simple enough. What has become of the CXL Type-2 device emulation effort from Zhi Wang? https://lore.kernel.org/qemu-devel/20241212130422.69380-1-zhiw@nvidia.com/ That series introduced a bare-minimum emulated CXL Type-2 device in QEMU, so kernel and QEMU developers could test the CXL Type-2 stack without real hardware. I liked the idea quite a lot. CXL is still new and complex, and hardware is scarce. Having an emulated device and passthrough support gives us a full environment to flush out design issues across the stack (Linux kernel, QEMU, libvirt) and in associated subsystems like IOMMU and ACPI, without needing physical devices. It is also useful for education and for running CI tests. Do you see both efforts as complementary, and is the emulation work still active? I will take a closer look at the series after some time off. Thanks, C.
> -----Original Message----- > From: Cédric Le Goater <clg@redhat.com> > Sent: 13 August 2026 23:13 > To: Manish Honap <mhonap@nvidia.com>; alex@shazbot.org; Ankit Agrawal > <ankita@nvidia.com>; jic23@kernel.org; dave.jiang@intel.com; > alejandro.lucero-palau@amd.com; Srirangan Madhavan <smadhavan@nvidia.com>; > pierrick.bouvier@oss.qualcomm.com; mst@redhat.com; imammedo@redhat.com; > anisinha@redhat.com; pbonzini@redhat.com; eric.auger@redhat.com; > peter.maydell@linaro.org; richard.henderson@linaro.org; cohuck@redhat.com > Cc: Krishnakant Jaju <kjaju@nvidia.com>; Vikram Sethi <vsethi@nvidia.com>; > Zhi Wang <zhiw@nvidia.com>; qemu-devel@nongnu.org; qemu-arm@nongnu.org > Subject: Re: [PATCH 00/10] QEMU: CXL Type-2 device passthrough via vfio- > pci > > External email: Use caution opening links or attachments > > > Hello Manish, > > On 8/13/26 15:06, mhonap@nvidia.com wrote: > > From: Manish Honap <mhonap@nvidia.com> > > > > This series adds QEMU support for passing a CXL Type-2 device (an > > accelerator with host-managed device memory, e.g. a GPU) to a guest > > via vfio-pci. The guest drives its own virtual endpoint HDM decoder > > and QEMU maps the device memory at the guest physical address the > > guest commits, while the host owns the host physical placement. > > > > It is a full rewrite of the RFC v1 series [1] on clean upstream > > master, reworked to address Jonathan's review. > > > > Base: master (post pull-9p-20260725), commit 6333226c2a. > > > > > > Kernel dependency > > ----------------- > > > > Pairs with the kernel vfio-cxl series "vfio/cxl: CXL Type-2 device > > passthrough" [2]. > > - The kernel exposes the device memory as an HPA-backed VFIO region, > traps > > the HDM decoder block and runs its lock-on-commit FSM, handles the > CXL > > DVSEC (including guest-triggered reset), and reports two things > through > > VFIO: > > - A device flag (VFIO_DEVICE_FLAGS_CXL) and > > - The component-register geometry > (VFIO_REGION_INFO_CAP_CXL_COMP_REGS). > > > > > > Sample supported topology > > ------------------------- > > > > Guest disk, network, and system-RAM lines are omitted: > > > > -machine virt,accel=kvm,gic-version=3,hmat=on,cxl=on,ras=on, \ > > highmem-mmio-size=4T > > -object iommufd,id=iommufd0 > > -device pxb-cxl,bus_nr=12,bus=pcie.0,id=cxl.1 > > -device cxl-rp,port=1,bus=cxl.1,id=rport0.1,chassis=4, \ > > pref64-reserve=2G,mem-reserve=1G > > -M cxl-fmw.0.targets.0=cxl.1,cxl-fmw.0.size=256G > > -device arm-smmuv3,primary-bus=cxl.1,id=smmuv3.0,accel=on,ats=on, \ > > ril=on,ssidsize=8,oas=48 > > -device vfio-pci-nohotplug,host=<BDF>,bus=rport0.1,id=dev0, \ > > iommufd=iommufd0 > > -object acpi-generic-initiator,id=gi0,pci-dev=dev0,node=2 > > ... (one acpi-generic-initiator per guest NUMA node the HDM memory > > backs) > > > > > > Address model > > ------------- > > > > The kernel fixes device memory to a host physical range before the > > guest sees the device, and hardware presents a firmware-committed, > > locked endpoint HDM decoder whose registers hold that host physical > base. > > > > QEMU never exposes Host physical base. It virtualizes the decoder base > > registers in the trapped component-register read and returns the base > > of the device's CFMWS window, a guest physical address, so the guest > only ever sees a GPA. > > > > QEMU maps the RAM-device region (backed by the fixed HPA) at that CFMWS > base. > > > > The kernel never learns the GPA and the guest never learns the HPA. > > > > Because the decoder is already committed at boot, no guest commit > > write triggers the mapping. QEMU maps once the guest enables memory > > decoding (the Command register Memory-Space bit) and re-checks on any > > decoder control write, so the region enters the guest address space > > and the IOAS while the device is live. > > > > When the guest clears Memory-Space, QEMU withdraws the mapping, > > matching the kernel's revoke of the backing PTEs on the same write, so > > a guest access during the disabled interval cannot fault a zapped > > mapping and stop the VM; the enable path re-installs it. > > > > This also helps to keep the guest-visible base as the CFMWS base by > > construction, and the host physical placement stays with the kernel. > > > > The RFC added the pxb-cxl _DSM because OS may treat PCI configuration > > as reassignable and a BAR move would break the CXL.mem mapping. This > > change keeps it narrower than the RFC v1 _DSM: it applies only to the > > host bridge that carries the passed-through CXL device. > > > > > > Reset > > ----- > > > > There is no QEMU reset patch. A guest CXL reset is a DVSEC write that > > lands in vfio config space and is handled entirely by the host kernel, > > which stamps the outcome into DVSEC STATUS2. The kernel re-commits > > this firmware-fixed decoder across the reset, and the guest reaches > > its memory through the mapping QEMU already installed. > > > > > > Reviewer feedback addressed > > --------------------------- > > > > The RFC [1] thread has the full discussion. > > > > Jonathan Cameron > > - The high-MMIO window and the cxl-fmws-base property are removed. > The > > guest-visible base is the CFMWS base by construction, so it equals > the > > decoder base and stays stable without a hack. > > - The guest programs its virtual (GPA) decoder and QEMU maps the > memory at > > commit time. > > - The host owns the HPA, resolved before the guest sees the device. > > - The committed decoder is the fast path this series ships. The > > guest-programmed uncommitted case is delivered by cxl-core > resolving the > > range at enumeration, not by a QEMU or vfio dynamic branch, so it > is a > > later cxl-core item this series does not depend on. > > - FIRMWARE_COMMITTED is dropped; the cap is no longer exposed. > > - The one-endpoint, non-interleaved, no-switch topology is enforced > at > > realize. > > - PCI/BAR configuration and CXL.mem stay independent. > > > > > > Validation > > ---------- > > > > - Every patch passes scripts/checkpatch.pl --codespell --strict > > (patch 1 carries the expected imported-from-Linux warning) > > - The series applies cleanly on the stated base. > > - Ran couple of rounds of masoncl/review-prompts on this series before > posting. > > > > > > Pending items > > ------------- > > > > Future enhancements for the multi-decoder, interleaved devices and > > switched topologies. > > > > Trapped CXL RAS registers are planned as a new VFIO region subtype > > that the same region-by-subtype detection already handles, not as a > > change to the component-register cap. > > > > The bios-tables test refresh for the new _DSM is still to be added. > > Before diving into CXL and doing a review of the QEMU patches, could you > provide a status update on the kernel vfio-cxl series [2] ? > > The QEMU side is a consumer of the VFIO regions and capabilities the > kernel exposes, and patch 1 notes the capability ID is still provisional. > Knowing where the kernel series stands would help. That said, the UAPI > looks simple enough. > > What has become of the CXL Type-2 device emulation effort from Zhi Wang? > > https://lore.kernel.org/qemu-devel/20241212130422.69380-1- > zhiw@nvidia.com/ > > That series introduced a bare-minimum emulated CXL Type-2 device in QEMU, > so kernel and QEMU developers could test the CXL Type-2 stack without real > hardware. I liked the idea quite a lot. > > CXL is still new and complex, and hardware is scarce. Having an emulated > device and passthrough support gives us a full environment to flush out > design issues across the stack (Linux kernel, QEMU, libvirt) and in > associated subsystems like IOMMU and ACPI, without needing physical > devices. It is also useful for education and for running CI tests. Do you > see both efforts as complementary, and is the emulation work still active? > > I will take a closer look at the series after some time off. > Hello Cédric, Thank you for your suggestion. Kernel status: Current posting of the vfio-cxl series takes the maintainer comments and refactors the code to what CXL core requires. The series adds a load-on-demand vfio-cxl provider to vfio-pci-core for a bound CXL Type-2 accelerator. The module exclusively claims the firmware-committed HDM host-physical range and exposes that coherent memory as an mmap-only VFIO region. DVSEC and HDM decoder registers are copied into a per-open shadow so the guest can program them without touching the host register space. The two UAPI values (FLAGS_CXL bit, COMP_REGS cap id) are settled for this posting. I will make sure to include the kernel status in the QEMU series cover letter from next time. I agree on emulated device support. Zhi's series had two parts: a bare-minimum emulated cxl-accel device, and an early passthrough stub. This series rewrites the passthrough side after Jonathan's review. I want a bit more time on your suggestion and will get back with how we can fold the emulated-device work in. > Thanks, > > > C. > > > > > >
Hi Manish, On Thu, 13 Aug 2026 18:36:13 +0530, Manish Honap wrote: > Base: master (post pull-9p-20260725), commit 6333226c2a. The footer's base-commit is 055952c0aa (the pull-hex-20260812v2-1 merge) and that is where the series applies; this line looks stale. On that base, cxl-test still passes 12/12 and bios-tables-test fails two cases from the new pxb-cxl _DSM -- details on patch 10. Comments on 6 and 7 as well. Many thanks, Junjie
> -----Original Message----- > From: Junjie Cao <junjie.cao@intel.com> > Sent: 18 August 2026 15:22 > To: Manish Honap <mhonap@nvidia.com> > Cc: alex@shazbot.org; Ankit Agrawal <ankita@nvidia.com>; jic23@kernel.org; > dave.jiang@intel.com; alejandro.lucero-palau@amd.com; Srirangan Madhavan > <smadhavan@nvidia.com>; pierrick.bouvier@oss.qualcomm.com; mst@redhat.com; > imammedo@redhat.com; anisinha@redhat.com; pbonzini@redhat.com; > eric.auger@redhat.com; peter.maydell@linaro.org; > richard.henderson@linaro.org; clg@redhat.com; cohuck@redhat.com; > Krishnakant Jaju <kjaju@nvidia.com>; Vikram Sethi <vsethi@nvidia.com>; Zhi > Wang <zhiw@nvidia.com>; qemu-devel@nongnu.org; qemu-arm@nongnu.org > Subject: Re: [PATCH 00/10] QEMU: CXL Type-2 device passthrough via vfio- > pci > > External email: Use caution opening links or attachments > > > Hi Manish, > > On Thu, 13 Aug 2026 18:36:13 +0530, Manish Honap wrote: > > Base: master (post pull-9p-20260725), commit 6333226c2a. > > The footer's base-commit is 055952c0aa (the pull-hex-20260812v2-1 > merge) and that is where the series applies; this line looks stale. > > On that base, cxl-test still passes 12/12 and bios-tables-test fails two > cases from the new pxb-cxl _DSM -- details on patch 10. Comments on 6 and > 7 as well. > > Many thanks, > Junjie Hello Junjie, Thank you for your review. I looked at the branch commit state and you are correct - the base commit at the footer is stale. I will rebase onto current master and regenerate the patch series with suggested fixes.
© 2016 - 2026 Red Hat, Inc.