<?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 auxiliary.rs</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d3b402c5a2d47f51eb0581da1a7b142f82cb10d1 - Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#d3b402c5a2d47f51eb0581da1a7b142f82cb10d1</link>
        <description>Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-nextMerge with upstream to pick up fixes from perf-tools and from othertools/ parts that interact with tools/perf.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 26 Jan 2026 21:03:53 +0100</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>c6e62d002b7f0613f02d8707c80f2a7bd66808a0 - Merge tag &apos;driver-core-7.0-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/rust/kernel/auxiliary.rs#c6e62d002b7f0613f02d8707c80f2a7bd66808a0</link>
        <description>Merge tag &apos;driver-core-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-corePull driver core updates from Danilo Krummrich: &quot;Bus:   - Ensure bus-&gt;match() is consistently called with the device lock     held   - Improve type safety of bus_find_device_by_acpi_dev()  Devtmpfs:   - Parse &apos;devtmpfs.mount=&apos; boot parameter with kstrtoint() instead of     simple_strtoul()   - Avoid sparse warning by making devtmpfs_context_ops static  IOMMU:   - Do not register the qcom_smmu_tbu_driver in arm_smmu_device_probe()  MAINTAINERS:   - Add the new driver-core mailing list (driver-core@lists.linux.dev)     to all relevant entries   - Add missing tree location for &quot;FIRMWARE LOADER (request_firmware)&quot;   - Add driver-model documentation to the &quot;DRIVER CORE&quot; entry   - Add missing driver-core maintainers to the &quot;AUXILIARY BUS&quot; entry  Misc:   - Change return type of attribute_container_register() to void; it     has always been infallible   - Do not export sysfs_change_owner(), sysfs_file_change_owner() and     device_change_owner()   - Move devres_for_each_res() from the public devres header to     drivers/base/base.h   - Do not use a static struct device for the faux bus; allocate it     dynamically  Revocable:   - Patches for the revocable synchronization primitive have been     scheduled for v7.0-rc1, but have been reverted as they need some     more refinement  Rust:   - Device:      - Support dev_printk on all device types, not just the core Device        struct; remove now-redundant .as_ref() calls in dev_* print        calls   - Devres:      - Introduce an internal reference count in Devres&lt;T&gt; to avoid a        deadlock condition in case of (indirect) nesting   - DMA:      - Allow drivers to tune the maximum DMA segment size via        dma_set_max_seg_size()   - I/O:      - Introduce the concept of generic I/O backends to handle        different kinds of device shared memory through a common        interface.        This enables higher-level concepts such as register        abstractions, I/O slices, and field projections to be built        generically on top.        In a first step, introduce the Io, IoCapable&lt;T&gt;, and IoKnownSize        trait hierarchy for sharing a common interface supporting offset        validation and bound-checking logic between I/O backends.      - Refactor MMIO to use the common I/O backend infrastructure   - Misc:      - Add __rust_helper annotations to C helpers for inlining into        Rust code      - Use &quot;kernel vertical&quot; style for imports      - Replace kernel::c_str! with C string literals      - Update ARef imports to use sync::aref      - Use pin_init::zeroed() for struct auxiliary_device_id and        debugfs file_operations initialization      - Use LKMM atomic types in debugfs doc-tests      - Various minor comment and documentation fixes   - PCI:      - Implement PCI configuration space accessors using the common I/O        backend infrastructure      - Document pci::Bar device endianness assumptions   - SoC:      - Abstractions for struct soc_device and struct soc_device_attribute      - Sample driver for soc::Device&quot;* tag &apos;driver-core-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core: (79 commits)  rust: devres: fix race condition due to nesting  rust: dma: add missing __rust_helper annotations  samples: rust: pci: Remove some additional `.as_ref()` for `dev_*` print  Revert &quot;revocable: Revocable resource management&quot;  Revert &quot;revocable: Add Kunit test cases&quot;  Revert &quot;selftests: revocable: Add kselftest cases&quot;  driver core: remove device_change_owner() export  sysfs: remove exports of sysfs_*change_owner()  driver core: disable revocable code from build  revocable: Add KUnit test for concurrent access  revocable: fix SRCU index corruption by requiring caller-provided storage  revocable: Add KUnit test for provider lifetime races  revocable: Fix races in revocable_alloc() using RCU  driver core: fix inverted &quot;locked&quot; suffix of driver_match_device()  rust: io: move MIN_SIZE and io_addr_assert to IoKnownSize  rust: pci: re-export ConfigSpace  rust: dma: allow drivers to tune max segment size  gpu: tyr: remove redundant `.as_ref()` for `dev_*` print  rust: auxiliary: use `pin_init::zeroed()` for device ID  rust: debugfs: use pin_init::zeroed() for file_operations  ...

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Thu, 12 Feb 2026 02:43:59 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>dd03dd60e8cdd5ef0f0cbc18276c45009bcc51f4 - Merge tag &apos;asoc-v6.20&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/rust/kernel/auxiliary.rs#dd03dd60e8cdd5ef0f0cbc18276c45009bcc51f4</link>
        <description>Merge tag &apos;asoc-v6.20&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Updates for v7.0This release is almost all abut driers, there&apos;s very little core workhere, although some of that driver work is in more generic areas likeSDCA and SOF: - Generic SDCA support for reporting jack events. - Continuing platform support, cleanup and feature improements for the   AMD, Intel, Qualcomm and SOF code. - Platform description improvements for the Cirrus drivers. - Support for NXP i.MX952, Realtek RT1320 and RT5575, and Sophogo   CV1800B.We also pulled in one small SPI API update and some more substantialregmap work (cache description improvements) for use in drivers.

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 09 Feb 2026 17:39:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&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/rust/kernel/auxiliary.rs#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/rust/kernel/auxiliary.rs</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>3e4067169c573fba9dd8f77480f3a6e9c723b507 - Merge branch &apos;v6.19-rc8&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#3e4067169c573fba9dd8f77480f3a6e9c723b507</link>
        <description>Merge branch &apos;v6.19-rc8&apos;Update to avoid conflicts with /urgent patches.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Tue, 03 Feb 2026 12:04:13 +0100</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>a010fe8d869635fd15c1d5768ba6a2f48795fa36 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#a010fe8d869635fd15c1d5768ba6a2f48795fa36</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-6.19-rc8).No adjacent changes, conflicts:drivers/net/ethernet/spacemit/k1_emac.c  2c84959167d64 (&quot;net: spacemit: Check for netif_carrier_ok() in emac_stats_update()&quot;)  f66086798f91f (&quot;net: spacemit: Remove broken flow control support&quot;)https://lore.kernel.org/aXjAqZA3iEWD_DGM@sirena.org.ukSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Fri, 23 Jan 2026 05:13:25 +0100</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>751ec6dd6773237bf480291ca894a696a2991c62 - spi: aspeed: Improve handling of shared SPI</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#751ec6dd6773237bf480291ca894a696a2991c62</link>
        <description>spi: aspeed: Improve handling of shared SPIMerge series from Chin-Ting Kuo &lt;chin-ting_kuo@aspeedtech.com&gt;:This patch series improves handling of SPI controllers that areshared by spi-mem devices and other SPI peripherals.The primary goal of this series is to support non-spi-mem devices inthe ASPEED FMC/SPI controller driver. It also addresses an issue inthe spi-mem framework observed when different types of SPI devicesoperate concurrently on the same controller, ensuring that spi-memoperations are properly serialized.

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Wed, 28 Jan 2026 12:22:06 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4651c87b0083925540f6c3d26a6c5b4868d7b884 - regmap: reg_default_cb for flat cache defaults</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#4651c87b0083925540f6c3d26a6c5b4868d7b884</link>
        <description>regmap: reg_default_cb for flat cache defaultsMerge series from &quot;Sheetal .&quot; &lt;sheetal@nvidia.com&gt;:This series adds a reg_default_cb callback for REGCACHE_FLAT to providedefaults for registers not listed in reg_defaults. Defaults are loadedeagerly during regcache init and the callback can use writeable_reg tofilter valid addresses and avoid holes.

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Wed, 28 Jan 2026 04:48:12 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6704d98a4f48b7424edc0f7ae2a06c0a8af02e2f - BackMerge tag &apos;v6.19-rc7&apos; into drm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#6704d98a4f48b7424edc0f7ae2a06c0a8af02e2f</link>
        <description>BackMerge tag &apos;v6.19-rc7&apos; into drm-nextLinux 6.19-rc7This is needed for msm and rust trees.Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Wed, 28 Jan 2026 03:44:28 +0100</pubDate>
        <dc:creator>Dave Airlie &lt;airlied@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>1924bd68a0c06f9f2c06cf35e60dfc55cdc34a91 - ASoC: codec: Remove ak4641/pxa2xx-ac97 and convert to</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#1924bd68a0c06f9f2c06cf35e60dfc55cdc34a91</link>
        <description>ASoC: codec: Remove ak4641/pxa2xx-ac97 and convert toMerge series from &quot;Peng Fan (OSS)&quot; &lt;peng.fan@oss.nxp.com&gt;:The main goal is to convert drivers to use GPIO descriptors. While readingthe code, I think it is time to remove ak4641 and pxa2xx-ac97 driver,more info could be found in commit log of each patch.Then only need to convert sound/arm/pxa2xx-ac97-lib.c to use GPIOdescriptors. Not have hardware to test the pxa2xx ac97.

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Wed, 28 Jan 2026 01:37:49 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>eb3dad518e4da48ab6c6df16aa8895b8b0bd6ecf - Merge tag &apos;v6.19-rc7&apos; into driver-core-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#eb3dad518e4da48ab6c6df16aa8895b8b0bd6ecf</link>
        <description>Merge tag &apos;v6.19-rc7&apos; into driver-core-nextWe need the driver-core fixes in here as well to build on top of.Signed-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 26 Jan 2026 13:23:52 +0100</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>dbd91d4f55ac4917b0b7f48b02eb8539805d0c85 - Merge 6.19-rc7 into char-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#dbd91d4f55ac4917b0b7f48b02eb8539805d0c85</link>
        <description>Merge 6.19-rc7 into char-misc-nextWe need the char/misc/iio fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 26 Jan 2026 12:04:04 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1cab0874875a1c37f71edf1e1e3029b1cf31d81e - rust: auxiliary: use `pin_init::zeroed()` for device ID</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#1cab0874875a1c37f71edf1e1e3029b1cf31d81e</link>
        <description>rust: auxiliary: use `pin_init::zeroed()` for device IDReplace the previous `unsafe { core::mem::zeroed() }` initializationfor `bindings::auxillary_device_id` with `pin_init::zeroed()`. This removesthe explicit unsafe block and uses the safer pinned zero-initializationhelper.Suggested-by: Benno Lossin &lt;lossin@kernel.org&gt;Signed-off-by: Atharv Dubey &lt;atharvd440@gmail.com&gt;Link: https://github.com/Rust-for-Linux/linux/issues/1189Link: https://patch.msgid.link/20251129124706.26263-1-atharvd440@gmail.comSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Sat, 29 Nov 2025 13:47:06 +0100</pubDate>
        <dc:creator>Atharv Dubey &lt;atharvd440@gmail.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/rust/kernel/auxiliary.rs#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/rust/kernel/auxiliary.rs</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>601cd264a31d198d5710846c9b53dfa92f1c4268 - rust: auxiliary: fix remove_callback invariant comment</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#601cd264a31d198d5710846c9b53dfa92f1c4268</link>
        <description>rust: auxiliary: fix remove_callback invariant commentCorrect copy-paste errors where remove_callback safety invariantsincorrectly referenced probe_callback().Signed-off-by: Alok Tiwari &lt;alok.a.tiwari@oracle.com&gt;Reviewed-by: Alice Ryhl &lt;aliceryhl@google.com&gt;Link: https://patch.msgid.link/20260110114817.2312828-1-alok.a.tiwari@oracle.comSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Sat, 10 Jan 2026 12:48:13 +0100</pubDate>
        <dc:creator>Alok Tiwari &lt;alok.a.tiwari@oracle.com&gt;</dc:creator>
    </item>
<item>
        <title>6506b44e88da265688f786d379987e91b4826bf4 - rust: auxiliary: use &quot;kernel vertical&quot; style for imports</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#6506b44e88da265688f786d379987e91b4826bf4</link>
        <description>rust: auxiliary: use &quot;kernel vertical&quot; style for importsConvert all imports to use &quot;kernel vertical&quot; style.With this, subsequent patches neither introduce unrelated changes norleave an inconsistent import pattern.While at it, drop unnecessary imports covered by prelude::*.Link: https://docs.kernel.org/rust/coding-guidelines.html#importsReviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Link: https://patch.msgid.link/20260105142123.95030-1-dakr@kernel.orgSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 05 Jan 2026 15:19:42 +0100</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/rust/kernel/auxiliary.rs#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/rust/kernel/auxiliary.rs</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/rust/kernel/auxiliary.rs#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/rust/kernel/auxiliary.rs</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/rust/kernel/auxiliary.rs#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/rust/kernel/auxiliary.rs</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
