<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in sysfs-devices-system-cpu</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2e31b16101834bdc0b720967845d6a0a309cf27b - Merge tag &apos;acpi-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#2e31b16101834bdc0b720967845d6a0a309cf27b</link>
        <description>Merge tag &apos;acpi-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pmPull ACPI support updates from Rafael Wysocki: &quot;These include an update of the CMOS RTC driver and the related ACPI  and x86 code that, among other things, switches it over to using the  platform device interface for device binding on x86 instead of the PNP  device driver interface (which allows the code in question to be  simplified quite a bit), a major update of the ACPI Time and Alarm  Device (TAD) driver adding an RTC class device interface to it, and  updates of core ACPI drivers that remove some unnecessary and not  really useful code from them.  Apart from that, two drivers are converted to using the platform  driver interface for device binding instead of the ACPI driver one,  which is slated for removal, support for the Performance Limited  register is added to the ACPI CPPC library and there are some  janitorial updates of it and the related cpufreq CPPC driver, the ACPI  processor driver is fixed and cleaned up, and NVIDIA vendor CPER  record handler is added to the APEI GHES code.  Also, the interface for obtaining a CPU UID from ACPI is consolidated  across architectures and used for fixing a problem with the PCI TPH  Steering Tag on ARM64, there are two updates related to ACPICA, a  minor ACPI OS Services Layer (OSL) update, and a few assorted updates  related to ACPI tables parsing.  Specifics:   - Update maintainers information regarding ACPICA (Rafael Wysocki)   - Replace strncpy() with strscpy_pad() in acpi_ut_safe_strncpy()     (Kees Cook)   - Trigger an ordered system power off after encountering a fatal     error operator in AML (Armin Wolf)   - Enable ACPI FPDT parsing on LoongArch (Xi Ruoyao)   - Remove the temporary stop-gap acpi_pptt_cache_v1_full structure     from the ACPI PPTT parser (Ben Horgan)   - Add support for exposing ACPI FPDT subtables FBPT and S3PT (Nate     DeSimone)   - Address multiple assorted issues and clean up the code in the ACPI     processor idle driver (Huisong Li)   - Replace strlcat() in the ACPI processor idle drive with a better     alternative (Andy Shevchenko)   - Rearrange and clean up acpi_processor_errata_piix4() (Rafael     Wysocki)   - Move reference performance to capabilities and fix an uninitialized     variable in the ACPI CPPC library (Pengjie Zhang)   - Add support for the Performance Limited Register to the ACPI CPPC     library (Sumit Gupta)   - Add cppc_get_perf() API to read performance controls, extend     cppc_set_epp_perf() for FFH/SystemMemory, and make the ACPI CPPC     library warn on missing mandatory DESIRED_PERF register (Sumit     Gupta)   - Modify the cpufreq CPPC driver to update MIN_PERF/MAX_PERF in     target callbacks to allow it to control performance bounds via     standard scaling_min_freq and scaling_max_freq sysfs attributes and     add sysfs documentation for the Performance Limited Register to it     (Sumit Gupta)   - Add ACPI support to the platform device interface in the CMOS RTC     driver, make the ACPI core device enumeration code create a     platform device for the CMOS RTC, and drop CMOS RTC PNP device     support (Rafael Wysocki)   - Consolidate the x86-specific CMOS RTC handling with the ACPI TAD     driver and clean up the CMOS RTC ACPI address space handler (Rafael     Wysocki)   - Enable ACPI alarm in the CMOS RTC driver if advertised in ACPI FADT     and allow that driver to work without a dedicated IRQ if the ACPI     alarm is used (Rafael Wysocki)   - Clean up the ACPI TAD driver in various ways and add an RTC class     device interface, including both the RTC setting/reading and alarm     timer support, to it (Rafael Wysocki)   - Clean up the ACPI AC and ACPI PAD (processor aggregator device)     drivers (Rafael Wysocki)   - Rework checking for duplicate video bus devices and consolidate     pnp.bus_id workarounds handling in the ACPI video bus driver     (Rafael Wysocki)   - Update the ACPI core device drivers to stop setting     acpi_device_name() unnecessarily (Rafael Wysocki)   - Rearrange code using acpi_device_class() in the ACPI core device     drivers and update them to stop setting acpi_device_class()     unnecessarily (Rafael Wysocki)   - Define ACPI_AC_CLASS in one place (Rafael Wysocki)   - Convert the ni903x_wdt watchdog driver and the xen ACPI PAD driver     to bind to platform devices instead of ACPI devices (Rafael     Wysocki)   - Add devm_ghes_register_vendor_record_notifier(), use it in the PCI     hisi driver, and Add NVIDIA vendor CPER record handler (Kai-Heng     Feng)   - Consolidate the interface for obtaining a CPU UID from ACPI across     architectures and use it to address incorrect PCI TPH Steering Tag     on ARM64 resulting from the invalid assumption that the ACPI     Processor UID would always be the same as the corresponding logical     CPU ID in Linux (Chengwen Feng)&quot;* tag &apos;acpi-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (73 commits)  ACPICA: Update maintainers information  watchdog: ni903x_wdt: Convert to a platform driver  ACPI: PAD: xen: Convert to a platform driver  ACPI: processor: idle: Reset cpuidle on C-state list changes  cpuidle: Extract and export no-lock variants of cpuidle_unregister_device()  PCI/TPH: Pass ACPI Processor UID to Cache Locality _DSM  ACPI: PPTT: Use acpi_get_cpu_uid() and remove get_acpi_id_for_cpu()  perf: arm_cspmu: Switch to acpi_get_cpu_uid() from get_acpi_id_for_cpu()  ACPI: Centralize acpi_get_cpu_uid() declaration in include/linux/acpi.h  x86/acpi: Add acpi_get_cpu_uid() for unified ACPI CPU UID retrieval  RISC-V: ACPI: Add acpi_get_cpu_uid() for unified ACPI CPU UID retrieval  LoongArch: Add acpi_get_cpu_uid() for unified ACPI CPU UID retrieval  arm64: acpi: Add acpi_get_cpu_uid() for unified ACPI CPU UID retrieval  ACPI: APEI: GHES: Add NVIDIA vendor CPER record handler  PCI: hisi: Use devm_ghes_register_vendor_record_notifier()  ACPI: APEI: GHES: Add devm_ghes_register_vendor_record_notifier()  ACPI: tables: Enable FPDT on LoongArch  ACPI: processor: idle: Fix NULL pointer dereference in hotplug path  ACPI: processor: idle: Reset power_setup_done flag on initialization failure  ACPI: TAD: Add alarm support to the RTC class device interface  ...

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Tue, 14 Apr 2026 04:25:07 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bfb0315a2dc89a2f3b353b3b82efe8eeeac629b2 - Merge branches &apos;acpi-processor&apos; and &apos;acpi-cppc&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#bfb0315a2dc89a2f3b353b3b82efe8eeeac629b2</link>
        <description>Merge branches &apos;acpi-processor&apos; and &apos;acpi-cppc&apos;Merge ACPI processor driver updates and ACPI CPPC library updates for7.1-rc1: - Address multiple assorted issues and clean up the code in the ACPI   processor idle driver (Huisong Li) - Replace strlcat() in the ACPI processor idle drive with a better   alternative (Andy Shevchenko) - Rearrange and clean up acpi_processor_errata_piix4() (Rafael Wysocki) - Move reference performance to capabilities and fix an uninitialized   variable in the ACPI CPPC library (Pengjie Zhang) - Add support for the Performance Limited Register to the ACPI CPPC   library (Sumit Gupta) - Add cppc_get_perf() API to read performance controls, extend   cppc_set_epp_perf() for FFH/SystemMemory, and make the ACPI CPPC   library warn on missing mandatory DESIRED_PERF register (Sumit Gupta) - Modify the cpufreq CPPC driver to update MIN_PERF/MAX_PERF in target   callbacks to allow it to control performance bounds via standard   scaling_min_freq and scaling_max_freq sysfs attributes and add sysfs   documentation for the Performance Limited Register to it (Sumit Gupta)* acpi-processor:  ACPI: processor: idle: Reset cpuidle on C-state list changes  cpuidle: Extract and export no-lock variants of cpuidle_unregister_device()  ACPI: processor: idle: Fix NULL pointer dereference in hotplug path  ACPI: processor: idle: Reset power_setup_done flag on initialization failure  ACPI: processor: Rearrange and clean up acpi_processor_errata_piix4()  ACPI: processor: idle: Replace strlcat() with better alternative  ACPI: processor: idle: Remove redundant static variable and rename cstate check function  ACPI: processor: idle: Move max_cstate update out of the loop  ACPI: processor: idle: Remove redundant cstate check in acpi_processor_power_init  ACPI: processor: idle: Add missing bounds check in flatten_lpi_states()* acpi-cppc:  ACPI: CPPC: Check cpc_read() return values consistently  ACPI: CPPC: Fix uninitialized ref variable in cppc_get_perf_caps()  ACPI: CPPC: Move reference performance to capabilities  cpufreq: CPPC: Add sysfs documentation for perf_limited  ACPI: CPPC: add APIs and sysfs interface for perf_limited  cpufreq: cppc: Update MIN_PERF/MAX_PERF in target callbacks  cpufreq: CPPC: Update cached perf_ctrls on sysfs write  ACPI: CPPC: Extend cppc_set_epp_perf() for FFH/SystemMemory  ACPI: CPPC: Warn on missing mandatory DESIRED_PERF register  ACPI: CPPC: Add cppc_get_perf() API to read performance controls

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Thu, 09 Apr 2026 21:26:06 +0200</pubDate>
        <dc:creator>Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>856250ba2e810e772dc95b3234ebf0d6393a51d9 - cpufreq: CPPC: Add sysfs documentation for perf_limited</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#856250ba2e810e772dc95b3234ebf0d6393a51d9</link>
        <description>cpufreq: CPPC: Add sysfs documentation for perf_limitedAdd ABI documentation for the Performance Limited Register sysfsinterface in the cppc_cpufreq driver.Signed-off-by: Sumit Gupta &lt;sumitg@nvidia.com&gt;Reviewed-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: Pierre Gondois &lt;pierre.gondois@arm.com&gt;Reviewed-by: Lifeng Zheng &lt;zhenglifeng1@huawei.com&gt;Link: https://patch.msgid.link/20260206142658.72583-8-sumitg@nvidia.comSigned-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Fri, 06 Feb 2026 15:26:58 +0100</pubDate>
        <dc:creator>Sumit Gupta &lt;sumitg@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>ec496f77b4c11036cc835d6f045fb5e5ef1e6530 - Merge branch &apos;for-6.20/sony&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#ec496f77b4c11036cc835d6f045fb5e5ef1e6530</link>
        <description>Merge branch &apos;for-6.20/sony&apos; into for-linus- Support for Rock band 4 PS4 and PS5 guitars (Rosalie Wanders)

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 09 Feb 2026 17:33:26 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#5add3c3c280a35f7e258e9cef7607db5a2e56fdc</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.19-rc1. An important upstream bugfix andto help unblock PTL CI.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Fri, 19 Dec 2025 11:51:22 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ec439c38013550420aecc15988ae6acb670838c1 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#ec439c38013550420aecc15988ae6acb670838c1</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1Cross-merge BPF and other fixes after downstream PR.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Wed, 17 Dec 2025 06:29:38 +0100</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7f790dd21a931c61167f7bdc327aecf2cebad327 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#7f790dd21a931c61167f7bdc327aecf2cebad327</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s kickstart the v6.20 (7.0?) release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>24f171c7e145f43b9f187578e89b0982ce87e54c - Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#24f171c7e145f43b9f187578e89b0982ce87e54c</link>
        <description>Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.19We&apos;ve been quite busy with fixes since the merge window, though not inany particularly exciting ways - the standout thing is the fix for _SXcontrols which were broken by a change to how we do clamping, otherwiseit&apos;s all fairly run of the mill fixes and quirks.

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Sun, 21 Dec 2025 11:11:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84318277d6334c6981ab326d4acc87c6a6ddc9b8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#84318277d6334c6981ab326d4acc87c6a6ddc9b8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesPull in rc1 to include all changes since the merge window closed,and grab all fixes and changes from drm/drm-next.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 15 Dec 2025 12:53:27 +0100</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>416f99c3b16f582a3fc6d64a1f77f39d94b76de5 - Merge tag &apos;driver-core-6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#416f99c3b16f582a3fc6d64a1f77f39d94b76de5</link>
        <description>Merge tag &apos;driver-core-6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-corePull driver core updates from Danilo Krummrich: &quot;Arch Topology:   - Move parse_acpi_topology() from arm64 to common code for reuse in     RISC-V  CPU:   - Expose housekeeping CPUs through /sys/devices/system/cpu/housekeeping   - Print a newline (or 0x0A) instead of &apos;(null)&apos; reading     /sys/devices/system/cpu/nohz_full when nohz_full= is not set  debugfs   - Remove (broken) &apos;no-mount&apos; mode   - Remove redundant access mode checks in debugfs_get_tree() and     debugfs_create_*() functions  Devres:   - Remove unused devm_free_percpu() helper   - Move devm_alloc_percpu() from device.h to devres.h  Firmware Loader:   - Replace simple_strtol() with kstrtoint()   - Do not call cancel_store() when no upload is in progress  kernfs:   - Increase struct super_block::maxbytes to MAX_LFS_FILESIZE   - Fix a missing unwind path in __kernfs_new_node()  Misc:   - Increase the name size in struct auxiliary_device_id to 40     characters   - Replace system_unbound_wq with system_dfl_wq and add WQ_PERCPU to     alloc_workqueue()  Platform:   - Replace ERR_PTR() with IOMEM_ERR_PTR() in platform ioremap     functions  Rust:   - Auxiliary:      - Unregister auxiliary device on parent device unbind      - Move parent() to impl Device; implement device context aware        parent() for Device&lt;Bound&gt;      - Illustrate how to safely obtain a driver&apos;s device private data        when calling from an auxiliary driver into the parant device        driver   - DebugFs:      - Implement support for binary large objects   - Device:      - Let probe() return the driver&apos;s device private data as pinned        initializer, i.e. impl PinInit&lt;Self, Error&gt;      - Implement safe accessor for a driver&apos;s device private data for        Device&lt;Bound&gt; (returned reference can&apos;t out-live driver binding        and guarantees the correct private data type)      - Implement AsBusDevice trait, to be used by class device        abstractions to derive the bus device type of the parent device   - DMA:      - Store raw pointer of allocation as NonNull      - Use start_ptr() and start_ptr_mut() to inherit correct        mutability of self   - FS:      - Add file::Offset type alias   - I2C:      - Add abstractions for I2C device / driver infrastructure      - Implement abstractions for manual I2C device registrations   - I/O:      - Use &quot;kernel vertical&quot; style for imports      - Define ResourceSize as resource_size_t      - Move ResourceSize to top-level I/O module      - Add type alias for phys_addr_t      - Implement Rust version of read_poll_timeout_atomic()   - PCI:      - Use &quot;kernel vertical&quot; style for imports      - Move I/O and IRQ infrastructure to separate files      - Add support for PCI interrupt vectors      - Implement TryInto&lt;IrqRequest&lt;&apos;a&gt;&gt; for IrqVector&lt;&apos;a&gt; to convert        an IrqVector bound to specific pci::Device into an IrqRequest        bound to the same pci::Device&apos;s parent Device      - Leverage pin_init_scope() to get rid of redundant Result in IRQ        methods   - PinInit:      - Add {pin_}init_scope() to execute code before creating an        initializer   - Platform:      - Leverage pin_init_scope() to get rid of redundant Result in IRQ        methods   - Timekeeping:      - Implement abstraction of udelay()   - Uaccess:      - Implement read_slice_partial() and read_slice_file() for        UserSliceReader      - Implement write_slice_partial() and write_slice_file() for        UserSliceWriter  sysfs:   - Prepare the constification of struct attribute&quot;* tag &apos;driver-core-6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core: (75 commits)  rust: pci: fix build failure when CONFIG_PCI_MSI is disabled  debugfs: Fix default access mode config check  debugfs: Remove broken no-mount mode  debugfs: Remove redundant access mode checks  driver core: Check drivers_autoprobe for all added devices  driver core: WQ_PERCPU added to alloc_workqueue users  driver core: replace use of system_unbound_wq with system_dfl_wq  tick/nohz: Expose housekeeping CPUs in sysfs  tick/nohz: avoid showing &apos;(null)&apos; if nohz_full= not set  sysfs/cpu: Use DEVICE_ATTR_RO for nohz_full attribute  kernfs: fix memory leak of kernfs_iattrs in __kernfs_new_node  fs/kernfs: raise sb-&gt;maxbytes to MAX_LFS_FILESIZE  mod_devicetable: Bump auxiliary_device_id name size  sysfs: simplify attribute definition macros  samples/kobject: constify &apos;struct foo_attribute&apos;  samples/kobject: add is_visible() callback to attribute group  sysfs: attribute_group: enable const variants of is_visible()  sysfs: introduce __SYSFS_FUNCTION_ALTERNATIVE()  sysfs: transparently handle const pointers in ATTRIBUTE_GROUPS()  sysfs: attribute_group: allow registration of const attribute  ...

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Sat, 06 Dec 2025 06:29:02 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cd22926af45400093738c758b6749de8035ed5a8 - tick/nohz: Expose housekeeping CPUs in sysfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#cd22926af45400093738c758b6749de8035ed5a8</link>
        <description>tick/nohz: Expose housekeeping CPUs in sysfsExpose the current system-defined list of housekeeping CPUs in a newsysfs file: /sys/devices/system/cpu/housekeeping.This provides userspace performance tuning tools and resource managerswith a canonical, reliable method to accurately identify the coresresponsible for essential kernel maintenance workloads (RCU, timercallbacks, and unbound workqueues). Currently, tooling must manuallycalculate the housekeeping set by parsing complex kernel boot parameters(like isolcpus= and nohz_full=) and system topology, which is prone toerror. This dedicated file simplifies the configuration of low-latencyworkloads.Signed-off-by: Aaron Tomlin &lt;atomlin@atomlin.com&gt;Link: https://patch.msgid.link/20251011012853.7539-2-atomlin@atomlin.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Sat, 11 Oct 2025 03:28:53 +0200</pubDate>
        <dc:creator>Aaron Tomlin &lt;atomlin@atomlin.com&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>996ad9cd3e1eee1183aba9c7c4d1ada4a62c6f9a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#996ad9cd3e1eee1183aba9c7c4d1ada4a62c6f9a</link>
        <description>Merge drm/drm-next into drm-intel-nextBackmerge to sync with drm/xe changes.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 29 Sep 2025 11:13:00 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6372843af46edfd84d7145f4cb9f2b87dd9fdc62 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/Documentation/ABI/testing/sysfs-devices-system-cpu#6372843af46edfd84d7145f4cb9f2b87dd9fdc62</link>
        <description>Merge drm/drm-next into drm-xe-nextInitial backmerge for 6.19 development.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/Documentation/ABI/testing/sysfs-devices-system-cpu</description>
        <pubDate>Mon, 22 Sep 2025 10:15:27 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
