<?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 Kconfig</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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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/arch/arm64/crypto/Kconfig#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/arch/arm64/crypto/Kconfig</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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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>370c3883195566ee3e7d79e0146c3d735a406573 - Merge tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#370c3883195566ee3e7d79e0146c3d735a406573</link>
        <description>Merge tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linuxPull crypto library updates from Eric Biggers: - Migrate more hash algorithms from the traditional crypto subsystem to   lib/crypto/   Like the algorithms migrated earlier (e.g. SHA-*), this simplifies   the implementations, improves performance, enables further   simplifications in calling code, and solves various other issues:     - AES CBC-based MACs (AES-CMAC, AES-XCBC-MAC, and AES-CBC-MAC)         - Support these algorithms in lib/crypto/ using the AES library           and the existing arm64 assembly code         - Reimplement the traditional crypto API&apos;s &quot;cmac(aes)&quot;,           &quot;xcbc(aes)&quot;, and &quot;cbcmac(aes)&quot; on top of the library         - Convert mac80211 to use the AES-CMAC library. Note: several           other subsystems can use it too and will be converted later         - Drop the broken, nonstandard, and likely unused support for           &quot;xcbc(aes)&quot; with key lengths other than 128 bits         - Enable optimizations by default     - GHASH         - Migrate the standalone GHASH code into lib/crypto/         - Integrate the GHASH code more closely with the very similar           POLYVAL code, and improve the generic GHASH implementation to           resist cache-timing attacks and use much less memory         - Reimplement the AES-GCM library and the &quot;gcm&quot; crypto_aead           template on top of the GHASH library. Remove &quot;ghash&quot; from the           crypto_shash API, as it&apos;s no longer needed         - Enable optimizations by default     - SM3         - Migrate the kernel&apos;s existing SM3 code into lib/crypto/, and           reimplement the traditional crypto API&apos;s &quot;sm3&quot; on top of it         - I don&apos;t recommend using SM3, but this cleanup is worthwhile           to organize the code the same way as other algorithms - Testing improvements:     - Add a KUnit test suite for each of the new library APIs     - Migrate the existing ChaCha20Poly1305 test to KUnit     - Make the KUnit all_tests.config enable all crypto library tests     - Move the test kconfig options to the Runtime Testing menu - Other updates to arch-optimized crypto code:     - Optimize SHA-256 for Zhaoxin CPUs using the Padlock Hash Engine     - Remove some MD5 implementations that are no longer worth keeping     - Drop big endian and voluntary preemption support from the arm64       code, as those configurations are no longer supported on arm64 - Make jitterentropy and samples/tsm-mr use the crypto library APIs* tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux: (66 commits)  lib/crypto: arm64: Assume a little-endian kernel  arm64: fpsimd: Remove obsolete cond_yield macro  lib/crypto: arm64/sha3: Remove obsolete chunking logic  lib/crypto: arm64/sha512: Remove obsolete chunking logic  lib/crypto: arm64/sha256: Remove obsolete chunking logic  lib/crypto: arm64/sha1: Remove obsolete chunking logic  lib/crypto: arm64/poly1305: Remove obsolete chunking logic  lib/crypto: arm64/gf128hash: Remove obsolete chunking logic  lib/crypto: arm64/chacha: Remove obsolete chunking logic  lib/crypto: arm64/aes: Remove obsolete chunking logic  lib/crypto: Include &lt;crypto/utils.h&gt; instead of &lt;crypto/algapi.h&gt;  lib/crypto: aesgcm: Don&apos;t disable IRQs during AES block encryption  lib/crypto: aescfb: Don&apos;t disable IRQs during AES block encryption  lib/crypto: tests: Migrate ChaCha20Poly1305 self-test to KUnit  lib/crypto: sparc: Drop optimized MD5 code  lib/crypto: mips: Drop optimized MD5 code  lib: Move crypto library tests to Runtime Testing menu  crypto: sm3 - Remove &apos;struct sm3_state&apos;  crypto: sm3 - Remove the original &quot;sm3_block_generic()&quot;  crypto: sm3 - Remove sm3_base.h  ...

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Tue, 14 Apr 2026 02:31:39 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>9f69f52b462cdaed83b782d0408ce9286f054f92 - lib/crypto: arm64/sm3: Migrate optimized code into library</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#9f69f52b462cdaed83b782d0408ce9286f054f92</link>
        <description>lib/crypto: arm64/sm3: Migrate optimized code into libraryInstead of exposing the arm64-optimized SM3 code via arm64-specificcrypto_shash algorithms, instead just implement the sm3_blocks() libraryfunction.  This is much simpler, it makes the SM3 library functions bearm64-optimized, and it fixes the longstanding issue where thearm64-optimized SM3 code was disabled by default.  SM3 still remainsavailable through crypto_shash, but individual architectures no longerneed to handle it.Tweak the SM3 assembly function prototypes to match what the libraryexpects, including changing the block count from &apos;int&apos; to &apos;size_t&apos;.sm3_ce_transform() had to be updated to access &apos;x2&apos; instead of &apos;w2&apos;,while sm3_neon_transform() already used &apos;x2&apos;.Remove the CFI stubs which are no longer needed because the SM3 assemblyfunctions are no longer ever indirectly called.Remove the dependency on KERNEL_MODE_NEON.  It was unnecessary, becauseKERNEL_MODE_NEON is always enabled on arm64.Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20260321040935.410034-8-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Sat, 21 Mar 2026 05:09:30 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a336c01f5b11cc158150d051d612a2f7ad9fd6a8 - lib/crypto: arm64/ghash: Migrate optimized code into library</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#a336c01f5b11cc158150d051d612a2f7ad9fd6a8</link>
        <description>lib/crypto: arm64/ghash: Migrate optimized code into libraryRemove the &quot;ghash-neon&quot; crypto_shash algorithm.  Move the correspondingassembly code into lib/crypto/, and wire it up to the GHASH library.This makes the GHASH library be optimized on arm64 (though only withNEON, not PMULL; for now the goal is just parity with crypto_shash).  Itgreatly reduces the amount of arm64-specific glue code that is needed,and it fixes the issue where this optimization was disabled by default.To integrate the assembly code correctly with the library, make thefollowing tweaks:- Change the type of &apos;blocks&apos; from int to size_t- Change the types of &apos;dg&apos; and &apos;h&apos; to polyval_elem.  Note that this  simply reflects the format that the code was already using.- Remove the &apos;head&apos; argument, which is no longer needed.- Remove the CFI stubs, as indirect calls are no longer used.Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20260319061723.1140720-10-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Thu, 19 Mar 2026 07:17:10 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>42d3b66d4cdbacfc9d120d2301b8de89cc29a914 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#42d3b66d4cdbacfc9d120d2301b8de89cc29a914</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 7.00-rc3. Important ahead GPU SVM merging THPsupport.Signed-off-by: Matthew Brost &lt;matthew.brost@intel.com&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Thu, 12 Mar 2026 15:17:56 +0100</pubDate>
        <dc:creator>Matthew Brost &lt;matthew.brost@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>58286738b159ca93d41438a6ddcc2ea5333191b4 - lib/crypto: arm64/aes: Migrate optimized CBC-based MACs into library</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#58286738b159ca93d41438a6ddcc2ea5333191b4</link>
        <description>lib/crypto: arm64/aes: Migrate optimized CBC-based MACs into libraryInstead of exposing the arm64-optimized CMAC, XCBC-MAC, and CBC-MAC codevia arm64-specific crypto_shash algorithms, instead just implement theaes_cbcmac_blocks_arch() library function.  This is much simpler, itmakes the corresponding library functions be arm64-optimized, and itfixes the longstanding issue where this optimized code was disabled bydefault.  The corresponding algorithms still remain available throughcrypto_shash, but individual architectures no longer need to handle it.Note that to be compatible with the library using &apos;size_t&apos; lengths, thetype of the return value and &apos;blocks&apos; parameter to the assemblyfunctions had to be changed to &apos;size_t&apos;, and the assembly code had to beupdated accordingly to use the corresponding 64-bit registers.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20260218213501.136844-6-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Wed, 18 Feb 2026 22:34:51 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Wed, 25 Feb 2026 12:23:04 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8b85987d3cf50178f67618122d9f3bb202f62f42 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#8b85987d3cf50178f67618122d9f3bb202f62f42</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s merge 7.0-rc1 to start the new drm-misc-next windowSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Mon, 23 Feb 2026 11:48:20 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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>13d83ea9d81ddcb08b46377dcc9de6e5df1248d1 - Merge tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#13d83ea9d81ddcb08b46377dcc9de6e5df1248d1</link>
        <description>Merge tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linuxPull crypto library updates from Eric Biggers: - Add support for verifying ML-DSA signatures.   ML-DSA (Module-Lattice-Based Digital Signature Algorithm) is a   recently-standardized post-quantum (quantum-resistant) signature   algorithm. It was known as Dilithium pre-standardization.   The first use case in the kernel will be module signing. But there   are also other users of RSA and ECDSA signatures in the kernel that   might want to upgrade to ML-DSA eventually. - Improve the AES library:     - Make the AES key expansion and single block encryption and       decryption functions use the architecture-optimized AES code.       Enable these optimizations by default.     - Support preparing an AES key for encryption-only, using about       half as much memory as a bidirectional key.     - Replace the existing two generic implementations of AES with a       single one. - Simplify how Adiantum message hashing is implemented. Remove the   &quot;nhpoly1305&quot; crypto_shash in favor of direct lib/crypto/ support for   NH hashing, and enable optimizations by default.* tag &apos;libcrypto-for-linus&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux: (53 commits)  lib/crypto: mldsa: Clarify the documentation for mldsa_verify() slightly  lib/crypto: aes: Drop &apos;volatile&apos; from aes_sbox and aes_inv_sbox  lib/crypto: aes: Remove old AES en/decryption functions  lib/crypto: aesgcm: Use new AES library API  lib/crypto: aescfb: Use new AES library API  crypto: omap - Use new AES library API  crypto: inside-secure - Use new AES library API  crypto: drbg - Use new AES library API  crypto: crypto4xx - Use new AES library API  crypto: chelsio - Use new AES library API  crypto: ccp - Use new AES library API  crypto: x86/aes-gcm - Use new AES library API  crypto: arm64/ghash - Use new AES library API  crypto: arm/ghash - Use new AES library API  staging: rtl8723bs: core: Use new AES library API  net: phy: mscc: macsec: Use new AES library API  chelsio: Use new AES library API  Bluetooth: SMP: Use new AES library API  crypto: x86/aes - Remove the superseded AES-NI crypto_cipher  lib/crypto: x86/aes: Add AES-NI optimization  ...

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Tue, 10 Feb 2026 17:31:09 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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>2b1ef7aeeb184ee78523f3d24e221296574c6f2d - lib/crypto: arm64/aes: Migrate optimized code into library</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#2b1ef7aeeb184ee78523f3d24e221296574c6f2d</link>
        <description>lib/crypto: arm64/aes: Migrate optimized code into libraryMove the ARM64 optimized AES key expansion and single-block AESen/decryption code into lib/crypto/, wire it up to the AES library API,and remove the superseded crypto_cipher algorithms.The result is that both the AES library and crypto_cipher APIs are nowoptimized for ARM64, whereas previously only crypto_cipher was (and theoptimizations weren&apos;t enabled by default, which this fixes as well).Note: to see the diff from arch/arm64/crypto/aes-ce-glue.c tolib/crypto/arm64/aes.h, view this commit with &apos;git show -M10&apos;.Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20260112192035.10427-12-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Mon, 12 Jan 2026 20:20:09 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5be8dcc1d0dd5b4bd431d1d052e79f01dd2e33c4 - crypto: arm64/aes - Select CRYPTO_LIB_SHA256 from correct places</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#5be8dcc1d0dd5b4bd431d1d052e79f01dd2e33c4</link>
        <description>crypto: arm64/aes - Select CRYPTO_LIB_SHA256 from correct placesThe call to sha256() occurs in code that is built when eitherCRYPTO_AES_ARM64_CE_BLK or CRYPTO_AES_ARM64_NEON_BLK.  The optionCRYPTO_AES_ARM64 is unrelated, notwithstanding its documentation.  I&apos;llbe removing CRYPTO_AES_ARM64 soon anyway, but before doing that, fixwhere CRYPTO_LIB_SHA256 is selected from.Fixes: 01834444d972 (&quot;crypto: arm64/aes - use SHA-256 library instead of crypto_shash&quot;)Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20260112192035.10427-7-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Mon, 12 Jan 2026 20:20:04 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4a8528d17fbcd9027290c168efd6ba7ac4d4cd2 - lib/crypto: arm64/nh: Migrate optimized code into library</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#b4a8528d17fbcd9027290c168efd6ba7ac4d4cd2</link>
        <description>lib/crypto: arm64/nh: Migrate optimized code into libraryMigrate the arm64 NEON implementation of NH into lib/crypto/.  Thismakes the nh() function be optimized on arm64 kernels.Note: this temporarily makes the adiantum template not utilize the arm64optimized NH code.  This is resolved in a later commit that converts theadiantum template to use nh() instead of &quot;nhpoly1305&quot;.Link: https://lore.kernel.org/r/20251211011846.8179-5-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@kernel.org&gt;

            List of files:
            /linux/arch/arm64/crypto/Kconfig</description>
        <pubDate>Thu, 11 Dec 2025 02:18:36 +0100</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</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/arch/arm64/crypto/Kconfig#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/arch/arm64/crypto/Kconfig</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
