Commit 01ecadbe09b6 for kernel

commit 01ecadbe09b6c685de413ada8ba6688e9467c4b3
Merge: a1b5bd45d4ee aae0594a7053
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Wed Apr 2 20:04:43 2025 -0700

    Merge tag 'cxl-for-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl

    Pull Compute Express Link (CXL)  updates from Dave Jiang:

     - Add support for Global Persistent Flush (GPF)

     - Cleanup of DPA partition metadata handling:
         - Remove the CXL_DECODER_MIXED enum that's not needed anymore
         - Introduce helpers to access resource and perf meta data
         - Introduce 'struct cxl_dpa_partition' and 'struct cxl_range_info'
         - Make cxl_dpa_alloc() DPA partition number agnostic
         - Remove cxl_decoder_mode
         - Cleanup partition size and perf helpers

     - Remove unused CXL partition values

     - Add logging support for CXL CPER endpoint and port protocol errors:
         - Prefix protocol error struct and function names with cxl_
         - Move protocol error definitions and structures to a common location
         - Remove drivers/firmware/efi/cper_cxl.h to include/linux/cper.h
         - Add support in GHES to process CXL CPER protocol errors
         - Process CXL CPER protocol errors
         - Add trace logging for CXL PCIe port RAS errors

     - Remove redundant gp_port init

     - Add validation of cxl device serial number

     - CXL ABI documentation updates/fixups

     - A series that uses guard() to clean up open coded mutex lockings and
       remove gotos for error handling.

     - Some followup patches to support dirty shutdown accounting:
         - Add helper to retrieve DVSEC offset for dirty shutdown registers
         - Rename cxl_get_dirty_shutdown() to cxl_arm_dirty_shutdown()
         - Add support for dirty shutdown count via sysfs
         - cxl_test support for dirty shutdown

     - A series to support CXL mailbox Features commands.

       Mostly in preparation for CXL EDAC code to utilize the Features
       commands. It's also in preparation for CXL fwctl support to utilize
       the CXL Features. The commands include "Get Supported Features", "Get
       Feature", and "Set Feature".

     - A series to support extended linear cache support described by the
       ACPI HMAT table.

       The addition helps enumerate the cache and also provides additional
       RAS reporting support for configuration with extended linear cache.
       (and related fixes for the series).

     - An update to cxl_test to support a 3-way capable CFMWS

     - A documentation fix to remove unused "mixed mode"

    * tag 'cxl-for-6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl: (39 commits)
      cxl/region: Fix the first aliased address miscalculation
      cxl/region: Quiet some dev_warn()s in extended linear cache setup
      cxl/Documentation: Remove 'mixed' from sysfs mode doc
      cxl: Fix warning from emitting resource_size_t as long long int on 32bit systems
      cxl/test: Define a CFMWS capable of a 3 way HB interleave
      cxl/mem: Do not return error if CONFIG_CXL_MCE unset
      tools/testing/cxl: Set Shutdown State support
      cxl/pmem: Export dirty shutdown count via sysfs
      cxl/pmem: Rename cxl_dirty_shutdown_state()
      cxl/pci: Introduce cxl_gpf_get_dvsec()
      cxl/pci: Support Global Persistent Flush (GPF)
      cxl: Document missing sysfs files
      cxl: Plug typos in ABI doc
      cxl/pmem: debug invalid serial number data
      cxl/cdat: Remove redundant gp_port initialization
      cxl/memdev: Remove unused partition values
      cxl/region: Drop goto pattern of construct_region()
      cxl/region: Drop goto pattern in cxl_dax_region_alloc()
      cxl/core: Use guard() to drop goto pattern of cxl_dpa_alloc()
      cxl/core: Use guard() to drop the goto pattern of cxl_dpa_free()
      ...

diff --cc tools/testing/cxl/test/mem.c
index 9495dbcc03a7,0ceba8aa6eec..f2957a3e36fe
--- a/tools/testing/cxl/test/mem.c
+++ b/tools/testing/cxl/test/mem.c
@@@ -177,7 -169,7 +181,8 @@@ struct cxl_mockmem_data
  	u8 event_buf[SZ_4K];
  	u64 timestamp;
  	unsigned long sanitize_timeout;
 +	struct vendor_test_feat test_feat;
+ 	u8 shutdown_state;
  };

  static struct mock_event_log *event_find_log(struct device *dev, int log_type)