#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description Summary of the changes and new features merged in the Linux kernel during the 7.2 development cycle Linux 7.2 changelog. Summary: <> = Prominent features = == Faster performance and less cache misses with cache-aware task scheduling == This release introduces cache-aware load balancing of tasks, with the goal of co-locating tasks that share data (ie. threads of the same process) within the same Last Level Cache domain. By improving cache locality, the scheduler can reduce cache bouncing and cache misses, ultimately improving data access efficiency. Recommended LWN article: [[https://lwn.net/Articles/1018334/|Cache awareness for the CPU scheduler]] == Better memory reclaiming, for better performance == Memory reclaiming, which is the part of the kernel that decides which parts of the memory should be sent to the swap or evicted from memory, has been improved. This release cleans up and slightly improve [[https://kernelnewbies.org/Linux_6.1#Multi-generational_LRU_for_better_memory_management|MGLRU]]'s reclaim loop and dirty writeback handling. As a result, we can see an up to ~30% increase in some workloads like MongoDB with YCSB and a huge decrease in file refault, no swap involved. Other common benchmarks have no regression, and LOC is reduced, with less unexpected OOM, too. == Swap table phase IV == Phase IV of the swap table work (phase [[https://kernelnewbies.org/Linux_6.18#Better_swapping_performance|I]], [[https://kernelnewbies.org/Linux_7.0#Better_swapping_performance_with_swap_table.2C_phase_II|II]], [[https://kernelnewbies.org/Linux_7.1#Swap_table_phase_III:_remove_swap_map|III]]) This release unifies the allocation and charging of anonymous and shmem swap in folios, provides better synchronization, consolidates the metadata management, hence dropping the static array and map, and improves the performance. The static metadata overhead is now close to zero, and workload performance is slightly improved. For example, mounting a 1TB swap device saves about 512MB of memory. Recommended LWN article: [[https://lwn.net/Articles/1072657/|Swap tables, flash-friendly swap, swap_ops, and more]] == Various Btrfs improvements == This release brings various improvements for the Btrfs file system: * Enable large folios by default (they were experimental since 6.17), with no feature limitations * Experimental support for huge folios (up to 2M) * New {{{GET_CSUMS}}} ioctl to return raw checksums to userspace, can be used for mkfs and deduplication optimizations * Performance improvements on sequential writes and direct IO == New dm-inlinecrypt target for inline block device encryption == This release introduces a new dm target, dm-inlinecrypt, to support inline block-device encryption. The implementation builds on the work previously done in Android’s dm-default-key, but intentionally drops passthrough support, as that functionality does not appear likely to be accepted upstream in the near future. With this limitation, dm-inlinecrypt is positioned as a practical replacement for dm-crypt, rather than a general passthrough mechanism. == openat(2) extensions == This release adds a couple of flags to the {{{openat(2)}}} system calls: * {{{OPENAT2_REGULAR}}} flag, which refuses to open anything but regular files, protecting services from being redirected to fifos, device nodes, and friends * Add {{{O_EMPTYPATH}}} flag to {{{openat(2)}}}/{{{openat2(2)}}}. If passed, an empty path string is accepted and {{{LOOKUP_EMPTY}}} is set at path resolution time, allowing to reopen the file behind the file descriptor directly == Speedup reading /proc/filesystems and /proc/interrupts == Performance when reading these two procfs files is not relevant for most applications, however some extreme users benefit from optimizing these files as much as possible, or are even used more often that you would expect ({{{/proc/filesystems}} is read by libselinux and is linked into numerous frequently used programs, even simple ones like sed). This release optimizes the generation of these files. = Core (various) = * exec: relocate the dumpable mode and the user_namespace captured at execve() from mm_struct onto a new per-task task_exec_state structure that stays attached to the task for its full lifetime [[https://lore.kernel.org/linux-mm/20260520-work-task_exec_state-v3-0-69f895bc1385@kernel.org//|(cover)]], [[https://git.kernel.org/linus/4f365e7a5d448dab7e0bb56ed32ff2bfddd134bd|commit]], [[https://git.kernel.org/linus/b092062cb6d799fa3504c5975cbb1b05c8b67d6d|commit]], [[https://git.kernel.org/linus/92f829f6b2faad37a5582df73df01c93d4429821|commit]], [[https://git.kernel.org/linus/6b1c66c9cca99bf00386481c7b2aa7394c26d8b8|commit]] * futex: Address the robust futex unlock race for real [[https://lore.kernel.org/linux-kernel/20260602084648.462672743@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/c06cd66387da92e6cdac44e16c7b5ef9219c53ac|commit]], [[https://git.kernel.org/linus/c1ffc9c6e4f8a13dd68e97920c9a24d095c6e41a|commit]], [[https://git.kernel.org/linus/d7b3f52c861f54ba2fff15696d3798277fb4c19f|commit]], [[https://git.kernel.org/linus/1f7f4816b9b05e5110bc1c8a05c3c478e2dae11b|commit]], [[https://git.kernel.org/linus/2cb5251d3d64d57c172185b9b608f704b3015f26|commit]], [[https://git.kernel.org/linus/6149fc36c09b91050b62e8e68a91027df8df7345|commit]], [[https://git.kernel.org/linus/7b125c44d0b7f617ee81dffd14ce116149d03cb6|commit]], [[https://git.kernel.org/linus/1fd053d26f0333485cdbaa9d6e7b8cb53f54de95|commit]], [[https://git.kernel.org/linus/3ca9595d9fb6cce6633a5b03d98c2aecb5499838|commit]], [[https://git.kernel.org/linus/042df0c1d48609a85580dcbaff498c95ced20a5f|commit]], [[https://git.kernel.org/linus/7010c39d8fc5063af69ee63f905e592e046f8e5d|commit]], [[https://git.kernel.org/linus/61cfc8e372d1971e0a96d3f1f8b5ee29916b3385|commit]], [[https://git.kernel.org/linus/a2274cc0091ed4fdce10fad68d08c529b8d3e7dd|commit]], [[https://git.kernel.org/linus/3f63e2545978abda58f2cf7ff0d7a2942965e8cb|commit]], [[https://git.kernel.org/linus/608323bf7bb85bbb647eca4373acef247f105e67|commit]] * Task scheduler * (FEATURED) Cache aware scheduling, with the goal of co-locating tasks that share data within the same Last Level Cache (LLC) domain. By improving cache locality, the scheduler can reduce cache bouncing and cache misses [[https://lore.kernel.org/linux-kernel/cover.1775065312.git.tim.c.chen@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/df0d98475954d655571979aa061ecb07d7e00392|commit]], [[https://git.kernel.org/linus/b4606faab3188beeacc2287b8a369cca943cc8eb|commit]], [[https://git.kernel.org/linus/f025ef275388742643a2c33f00a0d9c0af3112ee|commit]], [[https://git.kernel.org/linus/23b2b5ccc45ce2a38b9336a916088fffdc4cdfb1|commit]], [[https://git.kernel.org/linus/b5ea300a17e37eada7a98561fbd34a3054578713|commit]], [[https://git.kernel.org/linus/47d8696b95f7397fe7cad2d194d550ffe82efc15|commit]], [[https://git.kernel.org/linus/46afe3af7ead57190b6d362e214814ec804e3b7b|commit]], [[https://git.kernel.org/linus/a8d0ca0b7f2f7b53565d1e30e509d3d74d1f5460|commit]], [[https://git.kernel.org/linus/82c960aee304bf286552046b66d5b0b3933b2418|commit]], [[https://git.kernel.org/linus/15ad45fb80ca7fe67faf6b51dffce125a801cc5a|commit]], [[https://git.kernel.org/linus/9a5e22fbb0c88bff33458ede98b0fa922fab3831|commit]], [[https://git.kernel.org/linus/f38cc2f0d8a354551d219e7fd95fce3e96868105|commit]], [[https://git.kernel.org/linus/e4c9a4cb244a273c58e8fd86d7c04e2502822e64|commit]], [[https://git.kernel.org/linus/714059f79ff0ba976cb75360064583c78bbc6f8e|commit]], [[https://git.kernel.org/linus/5b1d5e6db20a6c64ffb95d04578db8c4b0228eea|commit]], [[https://git.kernel.org/linus/deee5e27d5b608323c04dc99979e55f944016a13|commit]], [[https://git.kernel.org/linus/808915f982c2a52f5d148510ecfab52284de67cf|commit]], [[https://git.kernel.org/linus/d59f4fd1d303987f434bcf0b8191e89ca1d6a67c|commit]], [[https://git.kernel.org/linus/067a3135814334a8ea7241faef364cc48c6340bc|commit]], [[https://git.kernel.org/linus/c1e7fe5e75ed11fa85368e5a186472afd3858f3a|commit]] and Cache aware scheduling enhancements [[https://lore.kernel.org/linux-kernel/cover.1778703694.git.tim.c.chen@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/a2b4cf39d9d333bfeb9262dbaafe3d24d405a5c0|commit]], [[https://git.kernel.org/linus/deee5e27d5b608323c04dc99979e55f944016a13|commit]], [[https://git.kernel.org/linus/7b34bb1ca324451c84c0a69136ce92e7928cf72b|commit]], [[https://git.kernel.org/linus/7030513a08776b2ca70fccd5dfddf7bb5c5c88ba|commit]], [[https://git.kernel.org/linus/808915f982c2a52f5d148510ecfab52284de67cf|commit]], [[https://git.kernel.org/linus/c1e7fe5e75ed11fa85368e5a186472afd3858f3a|commit]], [[https://git.kernel.org/linus/d943b86dfbf4e9b76be30cf90b1b3f82ff9abbac|commit]], [[https://git.kernel.org/linus/9f23469401b04cfd9a5d0a8b61760a48cce35dc1|commit]], [[https://git.kernel.org/linus/91d07324c9305c0e4afff0cc859cac96594daa88|commit]], [[https://git.kernel.org/linus/03755348b8e74421f92ffed9da159175a698290b|commit]], [[https://git.kernel.org/linus/d6b9afab44e23d537fb85ecf50330baaf9ec82e9|commit]], [[https://git.kernel.org/linus/9f7c745850b4b1b7e4706ae81f04c43f204a6a8d|commit]], [[https://git.kernel.org/linus/5beff4f087277901444787d4b7af6b3a93c34c54|commit]], [[https://git.kernel.org/linus/a7660ce1590fc1316a44cc2af53a07a21dfc25da|commit]], [[https://git.kernel.org/linus/c99b8593b060931c5a0a4b701689f8d6a2c00dbf|commit]] * Optimized Donor Migration for Proxy Execution [[https://lore.kernel.org/linux-kernel/20260512025635.2840817-1-jstultz@google.com/T/|(cover)]], [[https://git.kernel.org/linus/96a6988fb595ab1d77f60b33ea392b2e15b68605|commit]], [[https://git.kernel.org/linus/cd8e62c85861bcfbbefedce11a6f8eb00c774312|commit]], [[https://git.kernel.org/linus/f0c1ecde6447079505f1d4557d30401136218ae0|commit]], [[https://git.kernel.org/linus/f13beb010e4ab0735c9e46802cbcc820a8bd6467|commit]], [[https://git.kernel.org/linus/4c2a20413d7fb3fc3dd7adf233a4f82bb203fb58|commit]], [[https://git.kernel.org/linus/1628b25248d0742b2ce9c7cfa59cd183e35f37e1|commit]] * tick: Refactor idle cputime accounting [[https://lore.kernel.org/all/20260508131647.43868-1-frederic@kernel.org/|(cover)]], [[https://git.kernel.org/linus/0236aaf07b406100c8c3a6b78dba211f32449f49|commit]], [[https://git.kernel.org/linus/080b5c6d95034e46f5ed1abe98c06218a1386aef|commit]], [[https://git.kernel.org/linus/650a59805a9baeff76379ea9309df1395eb15a46|commit]], [[https://git.kernel.org/linus/c8ba971cf8567d49eb5f43ee90c4e50424331c18|commit]], [[https://git.kernel.org/linus/ad5a9e14ec8b4a868fea13a9dfa1fb38b2c35354|commit]], [[https://git.kernel.org/linus/cf6444c3e1bb7dd5974441bbd74840e9821d36f9|commit]], [[https://git.kernel.org/linus/bd0c77cd46c63d02bc33dacdba56133ec1fe44a0|commit]], [[https://git.kernel.org/linus/a5fe724e206ec7ff3ceb15b285d94316c7fe6c41|commit]], [[https://git.kernel.org/linus/29807c524d66e27762cdc8992c2cac89b4c3fda9|commit]], [[https://git.kernel.org/linus/6a1f6a9dd0736257f5e5af32dd955d186cdc075d|commit]], [[https://git.kernel.org/linus/127b2eb44f36d5d7059f1af425b5800cb27440f9|commit]], [[https://git.kernel.org/linus/3b45b4f188f3a0ebd16ab71efd2ffcc7a16ad861|commit]], [[https://git.kernel.org/linus/7198e3927a14535475a24cce559f41f97e6c0b66|commit]], [[https://git.kernel.org/linus/6199f9999a9b62b2b84a1bf5b52a9fd0bb8de5af|commit]] * sched_ext: Topological CPU IDs (cids): a dense, topology-ordered CPU numbering where the CPUs of a core, LLC, or NUMA node form contiguous ranges, so a topology unit becomes a (start, length) slice [[https://lore.kernel.org/all/20260429182131.1780125-1-tj@kernel.org/|(cover)]], [[https://git.kernel.org/linus/0e781a7853785989553f8a4e658145623ef695ac|commit]], [[https://git.kernel.org/linus/93292808b24355126620d814fff7cc076f262855|commit]], [[https://git.kernel.org/linus/7f19c089cc4da60c6084fd5f92f13637c20f92ad|commit]], [[https://git.kernel.org/linus/017ec7d5fe178acbd3c9488843b800d3a32be295|commit]], [[https://git.kernel.org/linus/1e315c44aa91b4475e445d007151c13429ce7bce|commit]], [[https://git.kernel.org/linus/c97ce728bcc43adcc861375f48433ac7adfd4e2e|commit]], [[https://git.kernel.org/linus/e9b55af47edf6e60c9a47b5604c3e15c5162ec86|commit]], [[https://git.kernel.org/linus/df7b5ae038d6f2707ec0f81c257a55b4062f77c7|commit]], [[https://git.kernel.org/linus/32a54807c9a56a161f29f6640f9f4ef88380398c|commit]], [[https://git.kernel.org/linus/a58e6b79b432f2f08e6a2bbe638a60e4424a7cba|commit]], [[https://git.kernel.org/linus/5ba0a42423335f76d3e0513df42416c69dc6b742|commit]], [[https://git.kernel.org/linus/7e655ed7b953d194265837978ca21bb17985d4aa|commit]], [[https://git.kernel.org/linus/67edfa9eefe693bcc48e615241a89240006551ce|commit]], [[https://git.kernel.org/linus/89ddcc0bfda1a2bf2b38949c9c0b6984b7af6bd2|commit]], [[https://git.kernel.org/linus/6434e95f25898ebcc0e5d9d9bed7180f910393be|commit]], [[https://git.kernel.org/linus/5ea59a3af5abe142dc57691306caac03453cbb0a|commit]], [[https://git.kernel.org/linus/97f86c38abe62c911ff20bc3e00b0937842f79c0|commit]] * sched_ext: Improve exit-time diagnostics [[https://lore.kernel.org/linux-kernel/20260429082318.420146-1-changwoo@igalia.com/T/|(cover)]], [[https://git.kernel.org/linus/3f63ddda0b969410585757309cc95add4f256f45|commit]], [[https://git.kernel.org/linus/78683079ca6d91392e84ed313e15bb330d7da851|commit]], [[https://git.kernel.org/linus/ee8391ba11644fd3dce6e22ece54725a1bb5b50e|commit]] * sched_ext: bitmaps windowed over a slice of cid space, so a sub-scheduler can track, for example, the idle cids of its shard without a full NR_CPUS cpumask [[https://lore.kernel.org/lkml/20260519075838.2706712-1-tj@kernel.org/|(cover)]], [[https://git.kernel.org/linus/d6236d5b2391cfdfa14d8acf7e29cc48068adc2a|commit]], [[https://git.kernel.org/linus/a0b48fd7fe2854211eadb5056e72bce3946140c1|commit]], [[https://git.kernel.org/linus/f31e89a8f583cb8b1b68002cedb77ce444d6f7d2|commit]] * scx_qmap: Convert to BPF arena [[https://lore.kernel.org/lkml/20260416172030.1417417-1-tj@kernel.org/|(cover)]], [[https://git.kernel.org/linus/ac660979dfc43d84f703a566533edb8014b24f7b|commit]], [[https://git.kernel.org/linus/60a59eaca71b0a8db299830da72d4c3effa78e79|commit]], [[https://git.kernel.org/linus/a6628db4f6af2e61922b3b4a5640e03924b26a8e|commit]], [[https://git.kernel.org/linus/1d2c5353152d2e937a24b08261591c198996d13d|commit]] * fair: attempts to improve SD_ASYM_CPUCAPACITY scheduling by introducing SMT awareness [[https://lore.kernel.org/all/20260509180955.1840064-1-arighi@nvidia.com/|(cover)]], [[https://git.kernel.org/linus/c9d93a73ce871ca32caf9308562501290b64b955|commit]], [[https://git.kernel.org/linus/fdfe5a8cd8731dd81840f26abfb6527edd27b0cb|commit]], [[https://git.kernel.org/linus/25a32e400a14009601c0a727643057f5515152df|commit]], [[https://git.kernel.org/linus/bf6aa722198d3c06e4236e8c5a480f30a64e1513|commit]], [[https://git.kernel.org/linus/61ea17a63719bac51e1bc50eb39fc637f0fdc06e|commit]] * io_uring * zcrx: Add a mechanism to communicate conditions back to userspace via a dedicated CQE, with the initial users being notification on running out of buffers and on a frag copy fallback, plus shared-memory notification statistics [[https://lore.kernel.org/io-uring/20260518153532.2835502-1-cleger@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/8503f2de11f7fe78a7fdb87746255c8d02897279|commit]], [[https://git.kernel.org/linus/0719e10d826aa0ba4840917d0261986eaead9a51|commit]], [[https://git.kernel.org/linus/255180f7034f48aa5b0c8df70228307394bddbb9|commit]], [[https://git.kernel.org/linus/6935f631465f5f60205978a59228a26db4723d51|commit]] * net: support registered buffer for plain send and recv [[https://git.kernel.org/linus/57ed21fad4022d595c6654d3b4d2b2083a79ee25|commit]] * net: allow filtering on {{{IORING_OP_CONNECT}}} [[https://git.kernel.org/linus/899bea8248cee35d54760a5e7d61a76af8e64411|commit]] * pipe: reduce pipe->mutex contention by pre-allocating outside the lock. On a writers x readers sweep with 64KB writes against a 1 MB pipe throughput improves 6-28% and average write latency drops 5-22%; under memory pressure - when the cost of holding the mutex across reclaim is highest - throughput improves 21-48% and latency drops 17-33% [[https://lore.kernel.org/linux-fsdevel/20260524-fix_pipe-v3-0-bb4a75d23a90@debian.org/T/|(cover)]], [[https://git.kernel.org/linus/212ed884a1aeefda22d87c270d082e4b0a95821f|commit]], [[https://git.kernel.org/linus/d29bd8efe16239608b60173a7e8d842bcbfcd9e9|commit]] * Improve write performance with {{{RWF_DONTCACHE}}} [[https://lore.kernel.org/linux-fsdevel/20260511-dontcache-v7-0-2848ddce8090@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0ad186cf167fdbeb6b29a8005c71973781036bd3|commit]], [[https://git.kernel.org/linus/88d6f128d06d492b6d178c8e8c53db8c82305ae1|commit]], [[https://git.kernel.org/linus/e1bf79628453e6afac81ffa57f4f40f28e5512ff|commit]] * proc: {{{subset=pid}}}: Relax check of mount visibility [[https://lore.kernel.org/linux-fsdevel/cover.1777278334.git.legion@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/672697c37c9dfe05aabfd44ccb51c2877deb524e|commit]], [[https://git.kernel.org/linus/dc4edae7f41dceb236553b61cda0383895293c90|commit]], [[https://git.kernel.org/linus/78d797520f6a74ed402cb98c6bf74d96b4937965|commit]], [[https://git.kernel.org/linus/a2a5eb6323a7b1987fd8048d94b9ffc7f87e3064|commit]], [[https://git.kernel.org/linus/1991a8f6932124d880e847885da20a98948b6fed|commit]], [[https://git.kernel.org/linus/05dab768fc2dc7eb9b827201bb39bb5be54bce49|commit]], [[https://git.kernel.org/linus/c5dffafb426f927db1630140552dc11d6f76e1a6|commit]] * Simple xattr improvements [[https://lore.kernel.org/linux-fsdevel/20260605135322.2632068-1-mszeredi@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/6a07814ff643b5c8e1353d8c6229f52fde205cde|commit]], [[https://git.kernel.org/linus/832f4de4c8ba4f19e5df1d016a09917204b17834|commit]], [[https://git.kernel.org/linus/076e5cef28e27febfc09b5f72544d2b857c75201|commit]], [[https://git.kernel.org/linus/1e7cd8a53b72a58a44c4d282aed95f6ce0e76db0|commit]] * (FEATURED) Add {{{O_EMPTYPATH}}} to {{{openat(2)}}}/{{{openat2(2)}}}. If passed, {{{LOOKUP_EMPTY}}} is set at path resolution time [[https://lore.kernel.org/linux-fsdevel/20260424114611.1678641-1-jkoolstra@xs4all.nl/T/|(cover)]], [[https://git.kernel.org/linus/31cf44efa6df72a524b40adefb80539f3a4e13ba|commit]], [[https://git.kernel.org/linus/c0329020da211b41afce4d1c8a1c2494c6d97883|commit]] * (FEATURED) {{{openat(2)}}}: {{{OPENAT2_REGULAR}}} flag support, which refuses to open anything but regular files, protecting services from being redirected to fifos, device nodes, and friends [[https://lore.kernel.org/linux-fsdevel/20260328172314.45807-1-dorjoychy111@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/8b82cacad92ebae9619872a5a69c570eba30140b|commit]], [[https://git.kernel.org/linus/6045a75399b45f6805f07a03020abf384b9f53c3|commit]] * writeback: fix race between cgroup_writeback_umount() and inode_switch_wbs() [[https://lore.kernel.org/linux-fsdevel/20260521095016.2791354-1-libaokun@linux.alibaba.com/T/|(cover)]], [[https://git.kernel.org/linus/cba38ec4cbd3a7b8b942a8d52531a05be8a9ff0d|commit]], [[https://git.kernel.org/linus/e90a6d668e26e00a72df2d09c173b563468f09c9|commit]], [[https://git.kernel.org/linus/31c1d19ead2c26a63859a2757d8b786765ba9cdd|commit]] * fanotify: lift pidfd reporting restrictions and allow fanotify to report pidfds referring to the event-generating thread [[https://lore.kernel.org/linux-fsdevel/20260607003343.425939-1-anonymemeow@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/17171128513b2e06aa68f8e889dc35f785e800ab|commit]], [[https://git.kernel.org/linus/82c6dd20479bb6a9625e1d63a650c3be8865e2db|commit]] * procfs * (FEATURED Speedup reading {{{/proc/filesystems}}} (it is read frequently because libselinux reads it and is linked into numerous frequently used programs, even simple ones like sed) [[https://lore.kernel.org/linux-kernel/20260529171840.2576445-1-mjguzik@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/912289ee831d92b377309dc832c0c3ce5906deae|commit]], [[https://git.kernel.org/linus/dc651e25a6d289bc08cfde032427fa17b3d1b22e|commit]], [[https://git.kernel.org/linus/36b3306779ea58f994a614b3663a196707a66ce2|commit]] * (FEATURED Improve {{{/proc/interrupts}}} [[https://lore.kernel.org/linux-kernel/20260517194421.705253664@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/115bbf0c1b60cb7bed348c64694eb88e21e7d458|commit]], [[https://git.kernel.org/linus/95c33a64f203be444954a1e1d855a4820c4f0efa|commit]], [[https://git.kernel.org/linus/0179464391af9a01b911f441d2dda42ea253dfbd|commit]], [[https://git.kernel.org/linus/2b57c69917eeba3ee657f252257e37f31916ba2a|commit]], [[https://git.kernel.org/linus/8713f2e596a134ed5c41e96bb9714251a5e6d56a|commit]], [[https://git.kernel.org/linus/d6b70b16b4e7035d230ef97ac6927f40e6aefcce|commit]], [[https://git.kernel.org/linus/cca5e6fa791bdf84f716ae92604d8330a6b6411a|commit]], [[https://git.kernel.org/linus/b99dc723b12ea587fc8b2e07bd8401433eec58d8|commit]], [[https://git.kernel.org/linus/3ba92f6a28203e30d0b2c7d75b59f48d5ff9fbcc|commit]], [[https://git.kernel.org/linus/4892e5e71ec9c942293cea7fd26e0c76179211ed|commit]], [[https://git.kernel.org/linus/2d62735f1d4a2832af367c9e3de04bfb280a945c|commit]], [[https://git.kernel.org/linus/34594da7650d3ea67f96c0f4034ff6b2453f67c3|commit]], [[https://git.kernel.org/linus/1d9c4745bfb6773712751f5068c23ebad9cd30a0|commit]], [[https://git.kernel.org/linus/7603e0575d8a92318bd4695917fce7ec2c5825a1|commit]], [[https://git.kernel.org/linus/61b51a167c524b65a59b1342e70c2008d514a796|commit]], [[https://git.kernel.org/linus/171cc0d9eed1cad5de7ce6a212efbeda390edb0f|commit]] * VFS * Add the vfs infrastructure required to implement fs-verity support with a post-EOF merkle tree: fsverity generates and stores a zero-block hash, and iomap learns to verify data on buffered reads [[https://git.kernel.org/linus/07d09774e2bfa21dedcee3ef45892bb20827b12c|commit]], [[https://git.kernel.org/linus/63e242afa4661632786a2129cf297a135a6995ba|commit]], [[https://git.kernel.org/linus/1d140731753a277be36637300a0f3faa396edec1|commit]], [[https://git.kernel.org/linus/36a36c4cac914510123071fb58270f6380faed1b|commit]], [[https://git.kernel.org/linus/95ae251fe82838b85c6d37e5a1775006e2a42ae0|commit]] * iomap: Skip the memset in iomap_iter() once the iteration is done. In high-IOPS scenarios (4k randread NVMe polling via io_uring) the pointless memset wasted memory write bandwidth; this improves IOPS by about 5% on ext4 and xfs [[https://git.kernel.org/linus/bd6a1379a41acfc38edf15e2c15aecb0694a7fba|commit]] * Prerequisites for supporting directory delegations in nfsd via CB_NOTIFY callbacks [[https://lore.kernel.org/linux-fsdevel/20260428-dir-deleg-v3-0-5a0780ba9def@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/89330d3a60f7ddb9cf42873bb5249d6a736a0eab|commit]], [[https://git.kernel.org/linus/24cbf43337f46329ddda5983bc3c585174a020ee|commit]], [[https://git.kernel.org/linus/e39026a86b485b052ddff1145f5601fc0d04305f|commit]], [[https://git.kernel.org/linus/95825fdcc0b0e868571d1c755f6a6971caf9b7cb|commit]], [[https://git.kernel.org/linus/ad4489dcd08dcfbc32ea6e6a4f558cdd459bd80c|commit]], [[https://git.kernel.org/linus/12ffbb117b64d9f4b1b02521010a5f2953a1972a|commit]], [[https://git.kernel.org/linus/010043003c0c81c0cedde267076cbe1e0911db49|commit]] * Introduce {{{IOMAP_F_ZERO_TAIL}}} for filesystems that maintain a separate valid data length (exFAT, NTFS) [[https://git.kernel.org/linus/5a78a15537d4f260275d404edf7da1dd2d7157db|commit]], [[https://git.kernel.org/linus/47f28b493daf9049307494689e515205f1c377af|commit]], [[https://git.kernel.org/linus/198c3b90e600d442f8333d254a23c5da989c5cb4|commit]], [[https://git.kernel.org/linus/b7bae6880e8de2a5f693c18d87ad5cc26f157eb2|commit]] * Assorted dcache cleanups and fixes [[https://lore.kernel.org/linux-fsdevel/20260605050910.1306432-1-viro@zeniv.linux.org.uk/T/|(cover)]], [[https://git.kernel.org/linus/0e0e490f5d5ec2f91209b77a95f9c7185d97cfc6|commit]], [[https://git.kernel.org/linus/4a810147a07535e63a7c1fbb90975012e8d57f60|commit]], [[https://git.kernel.org/linus/1a967a7ec70ff951716e84739f79b6e167ac1e0b|commit]], [[https://git.kernel.org/linus/87e801e1678342fc23b1eb92c0eecedf5dca79cb|commit]], [[https://git.kernel.org/linus/f601ede8fd166f8f2c84db427b94f80f1b0cbab1|commit]], [[https://git.kernel.org/linus/20aa45a87c308552781bc33dfb89a933ba5e8f43|commit]], [[https://git.kernel.org/linus/67132b5e5de8a01493ddbb217e936415ca4e09af|commit]], [[https://git.kernel.org/linus/b9c505cbf4acd6f9fa5ebe183f434b72ac3199f7|commit]], [[https://git.kernel.org/linus/cb2ae3c99214013bde780a5e4c575588cf301eba|commit]], [[https://git.kernel.org/linus/500590a897d9edadfffaed09f25f67ed7cd1813b|commit]], [[https://git.kernel.org/linus/d60ac70f3f261529a52ac70b514a02651ebd5dc3|commit]], [[https://git.kernel.org/linus/0954b4b558f7f582615b071b686f42a5a3ce2e53|commit]], [[https://git.kernel.org/linus/b4143e0e71cd660d05de8d2861e980e7c840eb39|commit]], [[https://git.kernel.org/linus/a5beeb64f22662a53facd71ca2843f9d649597d6|commit]], [[https://git.kernel.org/linus/d197a9a6d44f23944d9096c5d955a7b1f75b0c89|commit]], [[https://git.kernel.org/linus/4af0cdb5765ad15f4175bc94ca20b8deb2c7ebde|commit]], [[https://git.kernel.org/linus/3ef89feb387f2da13df290ce3e38fe8284160a86|commit]], [[https://git.kernel.org/linus/92cba84470632f3b75487171ca86b351a212c3f4|commit]], [[https://git.kernel.org/linus/58b366c2f5de1d5c5687f6ae049ca4639ce05eb4|commit]], [[https://git.kernel.org/linus/e9895609cb7f9d9712c5b20044edff5f196eec1b|commit]], [[https://git.kernel.org/linus/144bef84e1cfadfe100c6728593ea9838853f347|commit]], [[https://git.kernel.org/linus/3df5153c5f123d6018c82a24341ccd99c79d64a0|commit]] * Assorted ->i_count changes + extension of lockless handling [[https://lore.kernel.org/linux-kernel/20260421182538.1215894-1-mjguzik@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/769e143b115a4af75ecbc6d4e39d58b3e6fe2099|commit]], [[https://git.kernel.org/linus/ac8bcfc07d0ba68721a4ff750e7df12d203ae6ac|commit]], [[https://git.kernel.org/linus/c678577e8896829f9da08635d6075dddefbaf684|commit]] * locking: * rtmutex: Annotate API and implementation [[https://git.kernel.org/linus/a9e4e50519e99e5be2d69fa4eebec6a4848ae201|commit]] * RCU: Latch normal synchronize_rcu() path on flood [[https://git.kernel.org/linus/eceb65975256d7f7a5e5a5a2f4b7865eb32eaaf7|commit]] * liveupdate * Remove limits on sessions and files [[https://lore.kernel.org/linux-kselftest/20260603154402.468928-1-pasha.tatashin@soleen.com/T/|(cover)]], [[https://git.kernel.org/linus/81fbb909ec07868415f6b2269922c8d1cc6a215a|commit]], [[https://git.kernel.org/linus/6af06e11bd48bdefaf9381f6ff0bd65b1e5d98ab|commit]], [[https://git.kernel.org/linus/d376e4b55c9a0adb3e701c7eaff21d9ba655a1c6|commit]], [[https://git.kernel.org/linus/cf071b3536df76a2a75b83ca1fe8c043824352c3|commit]], [[https://git.kernel.org/linus/51b71af922a7145e63fdc0cab075d681ecd89e4a|commit]], [[https://git.kernel.org/linus/be9d10d167652e11283cd07c7daf187222808db1|commit]], [[https://git.kernel.org/linus/0349ff2887059112ce06831ab29aec47a2a7285a|commit]], [[https://git.kernel.org/linus/b5a58a922e6f2f9f40faddd8e0e1fe3ce0ea9c56|commit]], [[https://git.kernel.org/linus/2a441a14c2c03b39d1c89438dd28cef9d8fa57d5|commit]], [[https://git.kernel.org/linus/1d1153097f4dd417e2ea00404edec9fbd1d88f28|commit]], [[https://git.kernel.org/linus/5ba3f30643cbdd79fb82e525aa1ca55b62fcc7ac|commit]], [[https://git.kernel.org/linus/3432292fb9130191dca57953941f7ae3888d52d8|commit]], [[https://git.kernel.org/linus/46429a15a6dfe522880d5085f1f6999357758872|commit]] * Add LIVEUPDATE_SESSION_GET_NAME ioctl and parameter verification for LIVEUPDATE_IOCTL_CREATE_SESSION ioctl [[https://lore.kernel.org/linux-kernel/20260429212221.814107-1-luca.boccassi@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/e947433cd0d2b95a277757451b9b9c2714136dc2|commit]], [[https://git.kernel.org/linus/dab2b4c66aa0f44ccb6a0096906e5680c604fe39|commit]], [[https://git.kernel.org/linus/4c08a9f38c50c0df7091b5567be7a3bbac92de0b|commit]], [[https://git.kernel.org/linus/a1f8ed3451ff64f6907fbbd6eb5ca4dff1e2a503|commit]] * build * objtool/klp: Calculate object checksums [[https://lore.kernel.org/linux-kernel/084424751bed439249657e1aef6a3d5c4e199680.1776916871.git.jpoimboe@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/6016dd33a10a89d7db9509124d678d38916ab337|commit]], [[https://git.kernel.org/linus/5d6a03eeb7173179ef3c64e31806d21966a99875|commit]], [[https://git.kernel.org/linus/3ee67629b2b7fbe270f6c21d9a95219bbd214630|commit]], [[https://git.kernel.org/linus/cca84cb12908f1cfcecaef80a7692017e2d6a945|commit]], [[https://git.kernel.org/linus/fe6a87e0abac45b20664377545760901d4537ea8|commit]], [[https://git.kernel.org/linus/2d3bb398861ad3ddbf87959cc2e34a7001f0b3ad|commit]] * Distributed build support for clang thinlto [[https://lore.kernel.org/linux-kernel/20260529185347.2418373-1-xur@google.com/T/|(cover)]], [[https://git.kernel.org/linus/9c72d26e9fe3be79dd1d8a2ba00a033503ffd27d|commit]], [[https://git.kernel.org/linus/9f2aee8f7d1842be08da860e45265d30dba0d1f7|commit]] * rust: Add support for software tag-based kasan [[https://lore.kernel.org/linux-kernel/20260408-kasan-rust-sw-tags-v3-0-e07964d14363@google.com/T/|(cover)]], [[https://git.kernel.org/linus/5b271543d0f08e9733d4732721e960e285f6448f|commit]], [[https://git.kernel.org/linus/72d33b8bfeacbfdccf2cda4650e8e002def036f8|commit]] * rust: add AutoFDO support [[https://git.kernel.org/linus/a960c2cdb19e237f284a3b96eb8a0359abcf0e63|commit]] * Rust gpuvm immediate mode [[https://lore.kernel.org/linux-kernel/20260409-gpuvm-rust-v6-0-b16e6ada7261@google.com/T/|(cover)]], [[https://git.kernel.org/linus/82b78182eacf82c1847c6f1fd93d91c15efb69cf|commit]], [[https://git.kernel.org/linus/71a3921111bd05298988fad1c58241db13384ea7|commit]], [[https://git.kernel.org/linus/5540a9c747b3e1914ae68ae89f71c0a779bee5d1|commit]], [[https://git.kernel.org/linus/dc3846045f694eef0606697e2304099cba403691|commit]], [[https://git.kernel.org/linus/0b715b1e382b3d2e15d71c03a23be5f4333e7894|commit]] * Remove the architecture specific config for autofdo and propeller [[https://lore.kernel.org/lkml/20260604195612.3757860-1-xur@google.com/T/|(cover)]], [[https://git.kernel.org/linus/e88b2fe8b9993c9cae856019b1c31c14b63cad7a|commit]], [[https://git.kernel.org/linus/2566fa7b2f2402a77dae6a5e9b28a1bae1c20793|commit]] * kcov: Allow simultaneous kcov_enable/kcov_remote_enable [[https://git.kernel.org/linus/1d9c9493692eccd16b47610f1d21cc7a100199e9|commit]] * rust: zerocopy-derive: import crate [[https://git.kernel.org/linus/8b1549eee9c7f27b4f4f7c7f575c3c50065b89ff|commit]], [[https://git.kernel.org/linus/70a8d5ada9fabf4a34732b718f9c992195eed2ea|commit]], [[https://git.kernel.org/linus/34ea644acaf4ed85b14493ffd4284d1c9059372c|commit]], [[https://git.kernel.org/linus/50f3637a459a420ec84e73fa93c0ea469c7acdec|commit]], [[https://git.kernel.org/linus/2846ebc836bbb3c09211ff298de74ee7dd6b0f28|commit]], [[https://git.kernel.org/linus/0ba60f71440fc5ff73a4ce650c2ea96c3942112b|commit]], [[https://git.kernel.org/linus/be43b5d9c26c1f46a89766ec59feb9dffee4c797|commit]], [[https://git.kernel.org/linus/c37398010a05055e78cf0c75defb90df06c4e999|commit]], [[https://git.kernel.org/linus/499dc02cd545258b8ebd6f52fac226c6263768e9|commit]], [[https://git.kernel.org/linus/f81ccaecda51babc43b13c98d4d353a7c559cfc8|commit]], [[https://git.kernel.org/linus/b0d90bdcaa969d2ccd8d5e3104653a7f92583e60|commit]], [[https://git.kernel.org/linus/567621523ab7a2bc4a923757cba30bde8900447a|commit]], [[https://git.kernel.org/linus/b437b3832874d4df88195d31b9052417674ffaed|commit]], [[https://git.kernel.org/linus/5f85604cf0877b0369dfd68cd50cf61c0f134819|commit]], [[https://git.kernel.org/linus/29b2a2b99a4dbb9849769162754ed53abbfd40c2|commit]], [[https://git.kernel.org/linus/ca06116d62bf78e420a528ee4febc8451b9f12e8|commit]], [[https://git.kernel.org/linus/506054980429497d106261568bd39c22a40e0fdd|commit]], [[https://git.kernel.org/linus/54e792604436e78e124cbde4fc5bf4bbf68fa5ef|commit]], [[https://git.kernel.org/linus/506bb8742ea52da13f9f281c5cb2b603ac1931e7|commit]] * tools/nolibc * Large file support [[https://git.kernel.org/linus/f38a0bb74576f418f264b8d407be8de7aac1f42a|commit]], [[https://git.kernel.org/linus/32db83195f75bda670ca9282d9868ad02b1d6185|commit]], [[https://git.kernel.org/linus/c503c3deb9b56645413d8f8560dcc24efe7cea59|commit]], [[https://git.kernel.org/linus/7070421c9f3324446805e9ab3883deb40ba47c10|commit]], [[https://git.kernel.org/linus/02937a241c811cd31e052a16c0ea036b5071d052|commit]], [[https://git.kernel.org/linus/ce7677458e680d0742fb7f86c0e27272e4c56205|commit]], [[https://git.kernel.org/linus/266df86c4893fed1a7f027e767fe1c7f6456b100|commit]] * Add support for OpenRISC / or1k [[https://git.kernel.org/linus/97d6655082757fe9ce39e110e7853127a0840542|commit]] * Add alloca() [[https://git.kernel.org/linus/80e5de852e3a619ff83e0347a5766b34fdc8aa78|commit]] * Add assert() and assert.h [[https://git.kernel.org/linus/f94da2b42bc84bbcdb5d1f41551295fc946c7f7e|commit]] * Add err.h [[https://git.kernel.org/linus/e2900176327bb2fb1e8f831ba76b1b16264bc27a|commit]], [[https://git.kernel.org/linus/5662ec000d97d7a84ad4e3f34768ef08c869d0e3|commit]], [[https://git.kernel.org/linus/b74be922745989573eedee2a91d987711ef968bd|commit]], [[https://git.kernel.org/linus/9da0f529c089f00e6ab8b552d7407e612b7245a8|commit]] * Add support for 32-bit parisc [[https://lore.kernel.org/linux-kernel/20260428-nolibc-hppa-v5-0-d843d573111a@weissschuh.net/T/|(cover)]], [[https://git.kernel.org/linus/d4534e087311523bafd164eb5437cefa1d6097d0|commit]], [[https://git.kernel.org/linus/d4fe68aea3d9fa66534dc2485b8ab998514ca0fc|commit]] * Bump required Clang version to 23 [[https://git.kernel.org/linus/f45c5c4adb27540d43302155e2fbaeca6c3c6d03|commit]] * Remove strncpy() from the kernel [[https://git.kernel.org/linus/079a028d6327e68cfa5d38b36123637b321c19a7|commit]] = File systems = * BTRFS (FEATURED) * Enable large folios by default (they were experimental since 6.17), no feature limitations [[https://git.kernel.org/linus/9bce95edb1b4d2802de9273b5170bfcff3090d24|commit]] * Support huge data folios for 4K page size [[https://lore.kernel.org/linux-btrfs/cover.1777019132.git.wqu@suse.com/|(cover)]], [[https://git.kernel.org/linus/a93a87780d6a9d665a16418026ceb8f56b9c7fb4|commit]], [[https://git.kernel.org/linus/eb6915bb86438a7370c84ef666a06b45c4f48627|commit]], [[https://git.kernel.org/linus/ea1ab09df95c44ba1738237eb3360bdd59c566eb|commit]], [[https://git.kernel.org/linus/0eded739d8127d5a8c5cf370d3156b142383c6ed|commit]], [[https://git.kernel.org/linus/bac3c2910c0c37f2e504994eeb1d2102ec8a0d23|commit]] * Add ioctl {{{GET_CSUMS}}} to read raw checksums from file range. It can be used for mkfs and deduplication optimizations [[https://git.kernel.org/linus/c6153ed23ed6a2bb8a5891382c06134674610f86|commit]] * Limit size of bios submitted from writeback (reported improvement 15% on sequential writes) [[https://git.kernel.org/linus/d8d89ba2e556d1ed8648262fceadc91834cb5ffd|commit]] * Don't force dio writes to be serialized (~59% improvement in DIO throughput) [[https://git.kernel.org/linus/14f9161e872072075284b8afa4c3f929e199a0f6|commit]] * Lockless calculation of number of shrinkable extent maps, improve performance with many memcg allocated objects [[https://git.kernel.org/linus/1ba72d847c7aa3c0887f749115af5232fd61b598|commit]] * Properly enable compressed readahead for bs < ps and large folio cases [[https://git.kernel.org/linus/796ad9c3432ea5bf96811564680dae668d1a4880|commit]], [[https://git.kernel.org/linus/a48d9a6a1ed2166b5a69161aaf63b3e70d223fbd|commit]] * Optimize fill_holes() to merge a new hole with both adjacent items: an benefit workloads with heavily fragmented hole patterns [[https://git.kernel.org/linus/022568f8d529e93a46c65cd52427cc61c22ac4aa|commit]] * Provide stable UUID for e.g. overlayfs and temp_fsid, also reflected in statvfs() field f_fsid, internal dev_t is hashed in to allow cloning [[https://lore.kernel.org/linux-btrfs/cover.1777281686.git.asj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/df84f6c773771fa7b78fe06931709df1aca5907f|commit]] * Add 32-bit compat ioctl for {{{BTRFS_IOC_GET_SUBVOL_INFO}}} [[https://git.kernel.org/linus/538e5bdbc8996d3f6ce65565dda7df58e6e97e04|commit]] * Remove 32bit compat code for vfs inode number [[https://git.kernel.org/linus/5127e497bdddbc7a47832e6f4ca7598d15c13744|commit]] * cleanup: remove cow fixup mechanism and checked folio flag [[https://lore.kernel.org/linux-btrfs/cover.1776137603.git.wqu@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/b2a9f217ad3fa8012940744059956b20a3971135|commit]], [[https://git.kernel.org/linus/115421e29b845d521e3dc24b67d83e8695f621f6|commit]] * cleanup: reduce memory consumption for block groups [[https://lore.kernel.org/linux-btrfs/cover.1776278490.git.fdmanana@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/d293344c2249dc716d26d3d55a9261989da32c50|commit]], [[https://git.kernel.org/linus/a8d1f0b5392473102f08d6f91f4dcdfaf9e29b0f|commit]], [[https://git.kernel.org/linus/66fd877b13c7e7285ec607e4433efec3c2b2dd6a|commit]], [[https://git.kernel.org/linus/5e4b57f77ca3e39bde9681e4d79ea564bbd4fece|commit]], [[https://git.kernel.org/linus/acef2bf43aa222e7d5396ba889789e2ce14f2062|commit]], [[https://git.kernel.org/linus/08d9e2162ca2825565e21422f95caa9f5f4b900b|commit]], [[https://git.kernel.org/linus/2a1ed20f0dc2219b68adf9b2781233f1da5c518c|commit]], [[https://git.kernel.org/linus/81b86e6afe2a0ed63737d3f654ecb2acd69b9a6a|commit]], [[https://git.kernel.org/linus/5580c972e50d1c694cf9c399e9e25ec3145c9cd2|commit]], [[https://git.kernel.org/linus/4b01341133e5bd304b22ff0db4a532e1c49bf2ac|commit]] * tree-checker: enhanced fst extent/bitmap checks [[https://git.kernel.org/linus/6e4fe45f21ea741f90b5dfeea6b2e763d5642b18|commit]], [[https://git.kernel.org/linus/c37d09450c2e6d646d6dfc248e6c94f8669264d9|commit]], [[https://git.kernel.org/linus/dfd70996e5894214ac49255131a2def1b8b9c19f|commit]] * EXT4 * A major rework of the fast commit mechanism to avoid lock contention and deadlocks. We also export snapshot statistics in /proc/fs/ext4/*/fc_info [[https://git.kernel.org/linus/e9c6e0b8e096255feb71ec996c77bdfbe9c36e91|commit]], [[https://git.kernel.org/linus/7f473f971382d73a58e386afa7efdaac294b89f0|commit]], [[https://git.kernel.org/linus/b3060e96533dc3157fc6d3d45dc19927c566977b|commit]], [[https://git.kernel.org/linus/2b9b216628fd9352f9c791701c8990d05736aa90|commit]], [[https://git.kernel.org/linus/22d887e06a57261df58404c8dce50c4ef37549ed|commit]], [[https://git.kernel.org/linus/d2f6e83bbbef31169ea363af4277f5c09c914eda|commit]], [[https://git.kernel.org/linus/56bb0b64f4b198bad5ce674509c10793d471148f|commit]] * Performance optimization for directory hash computation by processing input in 4-byte chunks and removing function pointers [[https://lore.kernel.org/linux-ext4/20260531080019.3794809-1-409411716@gms.tku.edu.tw/T/|(cover)]], [[https://git.kernel.org/linus/3147cac6c1929f26b4687993b8c7af5b7b34496d|commit]], [[https://git.kernel.org/linus/3ca1d19c1971ac4f25478eafb741e726bf2d5954|commit]] * XFS * Drop the experimental warning for the zoned allocator [[https://git.kernel.org/linus/610c08cbe79bb9d86f82c5834075b4719280dd8d|commit]] * F2FS * Reduce the time spent in interrupt context [[https://lore.kernel.org/linux-f2fs-devel/cover.1781119949.git.bvanassche@acm.org/|(cover)]], [[https://git.kernel.org/linus/41b7928813b5db9f61bf55e0ce395f69eb0473eb|commit]], [[https://git.kernel.org/linus/7ba36a9ea81c018c828138e8071c3658620e2f0f|commit]], [[https://git.kernel.org/linus/bdc7cfd780c79228099674d419de93be25971ff9|commit]] * Add iostat latency tracking for direct IO [[https://git.kernel.org/linus/caac757a3d2dddeb88d79a7524ca0033fc337b3d|commit]] * Honor per-i/o write streams for direct writes [[https://git.kernel.org/linus/28ebb922b99d415e8bf51bf8b065a14fd7672167|commit]] * Map data writes to FDP streams [[https://git.kernel.org/linus/e6c8140bd06d7dd8ee1e3c690445d3cfcaf1d892|commit]] * Support to report fserror [[https://git.kernel.org/linus/ccc6436abb847352b8ed2de7a8ab2df45bb06622|commit]] * NFSD * Implement directory delegations [[https://lore.kernel.org/linux-fsdevel/20250924-dir-deleg-v3-0-9f3af8bc5c40@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/e6d28ebc17eb5e011b80c42a5196af0570c12240|commit]], [[https://git.kernel.org/linus/b46ebf9a768d39cd69012e15f99b057b52850dbd|commit]], [[https://git.kernel.org/linus/e12d203b8c880061c0bf0339cad51e5851a33442|commit]], [[https://git.kernel.org/linus/4fa76319cd0cc97ca54ff71c94814dc5b1983ad2|commit]], [[https://git.kernel.org/linus/134796f43a5e6542546841ebecc7465e6f6a96d2|commit]], [[https://git.kernel.org/linus/c826229c6a82fe1fe7b7752692f87a881eb4b545|commit]], [[https://git.kernel.org/linus/e8960c1b2ee9ba75d65492b8e90e851d11e5f215|commit]], [[https://git.kernel.org/linus/d0eab9fc104730982a9ef5eff5989b7c871cd104|commit]], [[https://git.kernel.org/linus/544a0ee152f0591dc689927007306fb9f09a175f|commit]], [[https://git.kernel.org/linus/80c8afddc8b17bf9b6cfe3af0d0b41b42f308961|commit]], [[https://git.kernel.org/linus/8b99f6a8c116f664a6788737705f6da2772cc96a|commit]], [[https://git.kernel.org/linus/4be9f3cc582a24b08f6580f65fa48a4d70332ab5|commit]], [[https://git.kernel.org/linus/6976ed2dd0d59086d16d853ac9b21776be68aaad|commit]], [[https://git.kernel.org/linus/24cbf43337f46329ddda5983bc3c585174a020ee|commit]], [[https://git.kernel.org/linus/e39026a86b485b052ddff1145f5601fc0d04305f|commit]], [[https://git.kernel.org/linus/95825fdcc0b0e868571d1c755f6a6971caf9b7cb|commit]], [[https://git.kernel.org/linus/12ffbb117b64d9f4b1b02521010a5f2953a1972a|commit]] * Automatic NFSv4 state revocation on filesystem unmount [[https://lore.kernel.org/linux-nfs/20260419-umount-kills-nfsv4-state-v9-0-0660bd06d2b6@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/4f8ef58c10bfe5f86a643c7c8331b37e69e3dae1|commit]], [[https://git.kernel.org/linus/86b9898920a6d02b4149f4fef9efd77b8aa3b9ca|commit]], [[https://git.kernel.org/linus/0a7c2aa5844c9ad57bee914d46bc1f84b2fd96a0|commit]], [[https://git.kernel.org/linus/978cda83de411fcbff22ac5b2b0024cae7df806f|commit]], [[https://git.kernel.org/linus/327c5168eff2e7f1760ca67fcb0f9053019fbfee|commit]], [[https://git.kernel.org/linus/8fc274883530a9f2c9f69d96e0255df584b5ff61|commit]], [[https://git.kernel.org/linus/ba0cde5dc81d214684b8ea0bd87414ba2f48fe02|commit]], [[https://git.kernel.org/linus/2eac189bb059d31a29937b29ee0f477394198610|commit]], [[https://git.kernel.org/linus/9870b5cb9218a445d6c28662ae401819db6c4301|commit]] * Expose the case folding behavior of local filesystems so that file servers - nfsd, ksmbd, and user space file servers - can report the actual behavior to clients instead of guessing [[https://lore.kernel.org/linux-cifs/20260507-case-sensitivity-v14-0-e62cc8200435@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/14c3197ecf074549429b12b60e2a0a3fb875f75f|commit]], [[https://git.kernel.org/linus/3035e4454142327ec5faee2ff57ab7cb1e9fc712|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/a6469a15eefe10e8c5e49eb80cc38dbe94803ea9|commit]], [[https://git.kernel.org/linus/a6469a15eefe10e8c5e49eb80cc38dbe94803ea9|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/c92db2ca726fe61a66580d30ecff8c192a791935|commit]], [[https://git.kernel.org/linus/7bbd51b1d7488fb4586ee7d67dc19f103313a8ba|commit]], [[https://git.kernel.org/linus/211cb2ba487706a55c1bb4e572a89d7e7835930a|commit]], [[https://git.kernel.org/linus/01ee7c3d2e23b41cc3f285e69b474f4e0890cce9|commit]], [[https://git.kernel.org/linus/0164df1d1de7602f27d359031a780e9caae80d3d|commit]] * Add support for netlink upcalls for the auth.unix.ip and auth.unix.gid caches in SunRPC for mountd/exportd [[https://lore.kernel.org/linux-nfs/20260325-exportd-netlink-v2-0-067df016ea95@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/1ed3df33bdbda5fd639571afe9c7cd282ff82cd9|commit]], [[https://git.kernel.org/linus/55a000fa1d0ebc20b8690ca0d869522712f82c19|commit]], [[https://git.kernel.org/linus/b2c217ee4f779334cff979a3c11a4ec59162f78b|commit]], [[https://git.kernel.org/linus/8bfc7e13ee7c94edb5f9938985e58f5c14bac91c|commit]], [[https://git.kernel.org/linus/d52db76f2d3559292b7af7c43ad9a635e017cac8|commit]], [[https://git.kernel.org/linus/c13ecd47648cc98e9f324ce4bcaa3d0654c3c91c|commit]], [[https://git.kernel.org/linus/af81cb247ca94e4bcfea31ea862cf3aaf955a503|commit]], [[https://git.kernel.org/linus/712bdbb2153bdb99d4a9d0cdcae24b484610147f|commit]], [[https://git.kernel.org/linus/0850e8603cd7a3a17e2888391937154a54b93e02|commit]], [[https://git.kernel.org/linus/912fc994b920a24543725d981e9cd082d1376ed7|commit]], [[https://git.kernel.org/linus/01c2305795a3b6b164df48e72b12022a68fd60c1|commit]], [[https://git.kernel.org/linus/565ee23ea2374a0ec42bb70227447baa81fcd196|commit]], [[https://git.kernel.org/linus/70b7e3526c53d9dd7caccdbeff5b0485640d8cf1|commit]] * The default NFS r/w block size rises to 4MB on hosts with at least 16GB of RAM, reducing per-RPC overhead on fast networks. Smaller machines keep their previously computed default, and the value remains tunable through /proc/fs/nfsd/max_block_size [[https://git.kernel.org/linus/ae9a0cce07574baf259fbc3f0e34583167db0de1|commit]] * Expose {{{FMODE_NOWAIT}}} for read-only files [[https://git.kernel.org/linus/ef74e4453856716dbdaba06eaee5251e37e6882e|commit]] * NTFS * Support windows native symbolic links [[https://lore.kernel.org/linux-fsdevel/20260615-topic-symlink-v2-0-648a769d01f8@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/05a5ff86a7f12c861e3516d3dc4d092ce620742d|commit]], [[https://git.kernel.org/linus/517cd625ad79b8bfa429092ad1536ee2dd477e68|commit]], [[https://git.kernel.org/linus/2b58f93a131373117cfea02843f69a02b67a6664|commit]], [[https://git.kernel.org/linus/115446b06fb725ba04e0f2ae5174029d2c60cad6|commit]], [[https://git.kernel.org/linus/7266767f67e0fbf343b4ce67cb437fe4024fc55f|commit]], [[https://git.kernel.org/linus/d8f1df2e133f203cae3f458cba44efa327b093d9|commit]], [[https://git.kernel.org/linus/3802a666f37255cc8ddc5647390e6c590b947065|commit]] * SMB * ksmbd: validate SMB2 lease create contexts [[https://lore.kernel.org/linux-cifs/20260618141739.9029-10-linkinjeon@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/dc2264a9efe7b56040b018024d1dfe0b3839d5ae|commit]], [[https://git.kernel.org/linus/1f1083c36fa11c5d9011451c7b9ab380545c72ea|commit]], [[https://git.kernel.org/linus/2145945feb2c27d8e20f113ef81dc373631c4f05|commit]], [[https://git.kernel.org/linus/411398c9a1414094f4e52c8893ef55ae3c61bf2a|commit]] * server: implement compression fattr handler [[https://lore.kernel.org/linux-cifs/20260608140128.387844-1-chenxiaosong@chenxiaosong.com/T/|(cover)]], [[https://git.kernel.org/linus/31c09ce67a8177c2660844b129013e2934b13091|commit]], [[https://git.kernel.org/linus/9d357903ec9b0da60cccc4d311f99763ba0924a2|commit]], [[https://git.kernel.org/linus/e48b687221f4e5215c9b8d2ae2c319d88a65809c|commit]], [[https://git.kernel.org/linus/c91f4543ddecc49c96c175a90f51c991957f72e3|commit]], [[https://git.kernel.org/linus/7eeb7b6772f02772b92c39146603005d0a1cb324|commit]], [[https://git.kernel.org/linus/5560f971645ce357ac0d2859376cf4205d44a5bf|commit]], [[https://git.kernel.org/linus/f4d556008fd443c05dc599ae3b1bd56c56c93741|commit]] * Compress smb2 read responses [[https://git.kernel.org/linus/08f641e2e2e092cbda5ce7f7b5280e327e46823d|commit]] * CEPH * Manual client session reset [[https://lore.kernel.org/ceph-devel/20260507122737.2804094-1-amarkuze@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/e120e2b666851c4c0c7bffd315ff69a09f9fe4ac|commit]], [[https://git.kernel.org/linus/248e514000d552095025de0473165becfe8e810d|commit]], [[https://git.kernel.org/linus/39fe3031589386ae7ce3fd7132beb6bb229e22ce|commit]], [[https://git.kernel.org/linus/ebbbab66bd74dbd213d51afc3b029dc8b109ee47|commit]], [[https://git.kernel.org/linus/b52861897be8a7ba563077ae62cd48158d16a5d9|commit]], [[https://git.kernel.org/linus/7e1f9e2cd2d0e780c394a4402c40e125109fec72|commit]] * EROFS * Add sparse support to pcluster layout [[https://git.kernel.org/linus/e87827da8c351db0de504534e6aa17be3014bc25|commit]] * Remove fscache backend entirely [[https://git.kernel.org/linus/c37460cd9b2fcb61ec66b7eb4fde737e65ec2a56|commit]] * EXFAT * Convert buffered and direct I/O to the iomap infrastructure. Also supports SEEK_HOLE/SEEK_DATA and swapfile activation [[https://lore.kernel.org/linux-fsdevel/20260518114705.9601-1-linkinjeon@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/198c3b90e600d442f8333d254a23c5da989c5cb4|commit]], [[https://git.kernel.org/linus/f07db38084dc45162d5fe2871ed72674ddc0f9ae|commit]], [[https://git.kernel.org/linus/3474416bb9abafca2e79b7ff700a100b7e8bc766|commit]], [[https://git.kernel.org/linus/a095c12ef13156cc86de858c8d127f24895e2d6e|commit]], [[https://git.kernel.org/linus/286ae368871d2a93b68148c7684b8cff63c9ba80|commit]], [[https://git.kernel.org/linus/3b9450beeb961c7ddf4cccddba37fcfa6d1fcb7a|commit]], [[https://git.kernel.org/linus/f0d1b2e1e02c11e29c953f22a485449e3da2a575|commit]], [[https://git.kernel.org/linus/82a81a7352bcf5f2756ac33d47ee0582737e9a85|commit]], [[https://git.kernel.org/linus/867b9c96dc837e09ef125a79dc151fa2fc7a5d32|commit]], [[https://git.kernel.org/linus/b4b7fe2c7cbf519ab5e7edc6625c71608805fb1d|commit]] * EXT2 * Remove deprecated dax support [[https://git.kernel.org/linus/f6fce9f17d9cfde8a88beda1527600d6daacc49b|commit]] * 9P * Performance improvements for build workloads [[https://lore.kernel.org/linux-fsdevel/cover.1779355927.git.repk@triplefau.lt/T/|(cover)]], [[https://git.kernel.org/linus/f00e6c1d282578b077b87b88f42e701bc40f2fff|commit]], [[https://git.kernel.org/linus/5670a84b5cda6b82016282accfd61ef36aceafbf|commit]], [[https://git.kernel.org/linus/15bbf82857fa61de9bad9faa7a3cf3a95b1b292a|commit]], [[https://git.kernel.org/linus/712da38d134b6681946368dd5c9400b43eb772b0|commit]] = Memory management = * MGLRU * (FEATURED) Clean up and slightly improve MGLRU's reclaim loop and dirty writeback handling. As a result, we can see an up to ~30% increase in some workloads like MongoDB with YCSB and a huge decrease in file refault, no swap involved. Other common benchmarks have no regression, and LOC is reduced, with less unexpected OOM, too [[https://lore.kernel.org/linux-kernel/20260428-mglru-reclaim-v7-0-02fabb92dc43@tencent.com/T/|(cover)]], [[https://git.kernel.org/linus/0491e9f75c1515ecff3dfb7d7bd4243e6f47027d|commit]], [[https://git.kernel.org/linus/790d3abeca092523621bd358f2d3362a95c571bf|commit]], [[https://git.kernel.org/linus/aa6ef5b159dcc646d3add48c1580ba8e70df6c64|commit]], [[https://git.kernel.org/linus/163bc3d68c9f373a96827ecefe370ff989f26747|commit]], [[https://git.kernel.org/linus/3a72e078b4a32ffd88f416d278882034b3321481|commit]], [[https://git.kernel.org/linus/16b475d2ac3c7994370254644015ae2e5dd5210b|commit]], [[https://git.kernel.org/linus/6e9be217a3cecbd8e8a5beec2aeba4ae9ebd2af9|commit]], [[https://git.kernel.org/linus/12316f7902f850e2770d26a91fb13728b5ade065|commit]], [[https://git.kernel.org/linus/acd22fbb9f4714d9beb1796aa27ac7e92d6ab9b3|commit]], [[https://git.kernel.org/linus/75d4c3f5fb980de1b620adede47e43dff4d6a5f3|commit]], [[https://git.kernel.org/linus/f37d3708b676574379a00f8dafe6c89d92f166e9|commit]], [[https://git.kernel.org/linus/32d87083ee973adf44c11f61c3eb1440d275f314|commit]], [[https://git.kernel.org/linus/e621a24e10bb07998dab930009eadbd220253d4e|commit]], [[https://git.kernel.org/linus/183ff2f9ec4875e010c00984374e51a545f6b169|commit]], [[https://git.kernel.org/linus/39376b9cac1cef505e1fa9a0a6105cf0de7c6734|commit]] * Use folio_mark_accessed to replace folio_set_active [[https://git.kernel.org/linus/6cbdd9726fb50d749b06ab45a8ef81dff02e69b8|commit]] * (FEATURED) Swap table phase IV: unify allocation and reduce static metadata: Unify the allocation and charging of anon and shmem swap in folios, provides better synchronization, consolidates the metadata management, hence dropping the static array and map, and improves performance [[https://lore.kernel.org/linux-kernel/20260517-swap-table-p4-v5-0-88ae43e064c7@tencent.com/T/|(cover)]], [[https://git.kernel.org/linus/a2e61ffb47493ff009b24105792318b3b62e18e2|commit]], [[https://git.kernel.org/linus/bebee474c1c1a3e9db2e1079639da1cd6e3ab0ba|commit]], [[https://git.kernel.org/linus/1dfbe92e702675964da45847ffe022a41bf4045e|commit]], [[https://git.kernel.org/linus/e1e6750df3b47380a5c1ba9f517e634a8328283f|commit]], [[https://git.kernel.org/linus/02d733a7ec1d751ddb624cf5d1eb953d0bf2f704|commit]], [[https://git.kernel.org/linus/945578fee2ec17bebdec067371214d3cbed48822|commit]], [[https://git.kernel.org/linus/c1fd92589c0dc15f4daa798c3a83d190a1ce674a|commit]], [[https://git.kernel.org/linus/bc34e87a51d9e51d398ef6d8c2c35cf1a4ff38b9|commit]], [[https://git.kernel.org/linus/cdd77f84d96675c9e8c776073df8d58d2af10607|commit]], [[https://git.kernel.org/linus/b197d41462c2076bc88c79fead7f400e48881c19|commit]], [[https://git.kernel.org/linus/4e8e1c498de9f97628207d1ef84506058b06bb51|commit]], [[https://git.kernel.org/linus/d9ceded101a142cd56f1e88fc7e893560ee59f4d|commit]] * khugepaged: support the ability to collapse anonymous memory regions to mTHPs [[https://lore.kernel.org/linux-doc/20260605161422.213817-1-npache@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/472ebd691d979c9f3545c469ac79d6575709bbdf|commit]], [[https://git.kernel.org/linus/d04fa025671ea49e6950b3261af115eff1e6a608|commit]], [[https://git.kernel.org/linus/45b310faeefaea811291bef934ccc11e81761326|commit]], [[https://git.kernel.org/linus/5a9c05d86683db5449b7fefd278c461cffb55234|commit]], [[https://git.kernel.org/linus/da98790891a4fefba89f831ae77dc2d34275da3c|commit]], [[https://git.kernel.org/linus/e22f2fe72c74e99f419ba2a8adf33461d0b8330d|commit]], [[https://git.kernel.org/linus/3a460f245f000c6fbd07fd94e572268e4a7a420d|commit]], [[https://git.kernel.org/linus/b5b8b329c4b456806e3bcc6bf3490fbc508e9080|commit]], [[https://git.kernel.org/linus/ceaa0b641311e6279722b03acfbcd173d166518f|commit]], [[https://git.kernel.org/linus/2c7d0fa84dcfd9080181bd92e18aacbc4abbe4f5|commit]], [[https://git.kernel.org/linus/90ed32d00054496ff763e8f97c49f422a4682fd3|commit]], [[https://git.kernel.org/linus/5fea7eb1a33154a94ae7be3cd062fec8adfe2fad|commit]], [[https://git.kernel.org/linus/b7f16963efe73502dc3e27c4ca15c8e687fd37bc|commit]], [[https://git.kernel.org/linus/cae43f22de82130a8fc1afa7b9b26fa8c08665f5|commit]] * Speed up the freeing of a batch of 0-order pages by first scanning them for coalescing opportunities. This is applicable to vfree() and to the releasing of frozen pages [[https://lore.kernel.org/lkml/20260401101634.2868165-1-usama.anjum@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/4aa4abf1f14bd6d0748b7d35a803cc2376a8e20b|commit]], [[https://git.kernel.org/linus/60ced5818f64ac356620d1ad3e0d473c457dbf5b|commit]], [[https://git.kernel.org/linus/b971e47fd98f97d66ab3b1c0864916d844fa0104|commit]] * filemap: tighten mmap_miss hit accounting. This fixes a flaw where the mmap_miss counter over-credited page cache hits during fault-arounds and page-fault retries. This results in significant reduction of redundant synchronous mmap readahead I/O, drastically cutting down execution time and gigabytes read for sparse random or strided memory access workloads [[https://lore.kernel.org/linux-fsdevel/tencent_AA501E9A238337BD167E5C2ACF948A1AF308@qq.com/T/|(cover)]], [[https://git.kernel.org/linus/0b9c0aeba938aad9964f855df00bf929b83a484d|commit]], [[https://git.kernel.org/linus/9b0fcac3cfe7ffeb3da78bfee765072861c81ce2|commit]] * Remove {{{CONFIG_READ_ONLY_THP_FOR_FS}}} and enable file THP for writable files [[https://lore.kernel.org/linux-btrfs/20260517135416.1434539-1-ziy@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/cd2d3d1f26c27eace8c70bd481889afd3c34a42c|commit]], [[https://git.kernel.org/linus/4e3d769bf0fc13f2b44c9e693e587176b15200b8|commit]], [[https://git.kernel.org/linus/8a088263a097d567c212159d3a7bc747348e31fd|commit]], [[https://git.kernel.org/linus/efc36a715383439d7987b2d592b7549144fb5aad|commit]], [[https://git.kernel.org/linus/e4df0f37bd95bff5eb64e2a28eba378d64f4c01e|commit]], [[https://git.kernel.org/linus/044925f9b56501f893bbfb7f4acfdbe0f5fba0d1|commit]], [[https://git.kernel.org/linus/27e7918905ee918d8ca268afc98234e8c8450641|commit]], [[https://git.kernel.org/linus/7c16f524f20c0fe7d694ef889e51a89872846931|commit]], [[https://git.kernel.org/linus/15e2258e255525ddae5c78c1ffdc88fe8a1116e6|commit]], [[https://git.kernel.org/linus/14a357d028990fc4b2b163963e9232c1eb1da5f8|commit]], [[https://git.kernel.org/linus/a2f8f73636cb9b35231c0b721b6327f6efe811d1|commit]], [[https://git.kernel.org/linus/a8b43cadbe32632ce3a1e73a7301dd0dbf92a114|commit]], [[https://git.kernel.org/linus/1b6444331bebb4e586dab30b1fa0612ef482bab4|commit]], [[https://git.kernel.org/linus/366aaad86239cac580c922be0e3336d9c38a6f41|commit]] * Shrink obj_stock_pcp and cache multiple objcgs: Resolve a 68% performance regression caused by NUMA-node cache thrashing [[https://lore.kernel.org/cgroups/20260526033931.1760588-1-shakeel.butt@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/e0d4e7405f267ae31ffafd5673ce14d0d9e4cbe0|commit]], [[https://git.kernel.org/linus/37a7f91e44f41f1b4cd60d1f89a4de7cf871d158|commit]], [[https://git.kernel.org/linus/7a09fb91c285ba1b253f7c72f86cf37b373afb10|commit]], [[https://git.kernel.org/linus/29a1ea41456b79d657e5f5deced1239477d03af1|commit]] * Remove b_end_io from struct buffer_head [[https://lore.kernel.org/linux-fsdevel/20260525171931.4144395-31-willy@infradead.org/T/|(cover)]], [[https://git.kernel.org/linus/6b1a162ba1a2dfd1ceac24029e4d0c2443173ed2|commit]], [[https://git.kernel.org/linus/4b7381326424809577eb43bf635ea1d43a095d89|commit]], [[https://git.kernel.org/linus/df21e33ff9c4ab20eb2a98273c2d9fed300aba26|commit]], [[https://git.kernel.org/linus/86ecf5704ed3c731284b9c60e46dcc5d115ebe7c|commit]], [[https://git.kernel.org/linus/b50e811b8fc9b1f28cfba1b74d5c1ad54e521107|commit]], [[https://git.kernel.org/linus/8b7846fe5b27c11d883a05afe3481f39252a9e65|commit]], [[https://git.kernel.org/linus/ac13eb47988fa871abcc3f34df946b5c039b3481|commit]], [[https://git.kernel.org/linus/a70db2d6f0bb9a3cf5b49a4bb30d34da955f051c|commit]], [[https://git.kernel.org/linus/44d325ebba175e73711a4bd90f30e1bc192242d9|commit]], [[https://git.kernel.org/linus/5059fb945ca895af80506c7a90d46b7308d6f6c5|commit]], [[https://git.kernel.org/linus/cc81507980f2d482ed5a0e9e3483306158f06665|commit]], [[https://git.kernel.org/linus/576c783cc0d6395feaa56d4a89f2b7b4933a5a3d|commit]], [[https://git.kernel.org/linus/cf3c71eed0b7c089f96905fdfe3cec994737f24f|commit]], [[https://git.kernel.org/linus/786a9941c727d5cebdc40557bb28117c9d0c21ad|commit]], [[https://git.kernel.org/linus/aa17449d60c7f088d4ffb77044d88c4692fc76bb|commit]], [[https://git.kernel.org/linus/e4b09ba06e6f884dbbfc6f43ecc079ef6864c4e2|commit]], [[https://git.kernel.org/linus/8a30f324e2cd93605038ee20ff25d0dec58839b6|commit]], [[https://git.kernel.org/linus/36ec1a90fe117ff2255a497eb3b73e6587b2ed70|commit]], [[https://git.kernel.org/linus/4b08d56b09d75efb0788dbaea619cf0f5d509576|commit]], [[https://git.kernel.org/linus/4416bb661b1cb40d78837f630755d2b8440cf4f3|commit]], [[https://git.kernel.org/linus/184dec3146911b923a7eff11545f85797c2b9f81|commit]], [[https://git.kernel.org/linus/f8ff032ce5f0c08348b55468330a67c93b58848b|commit]], [[https://git.kernel.org/linus/6390838da4901e4a332c11b1d6ddc20f167005f9|commit]], [[https://git.kernel.org/linus/037f3833ba9f893d2a84c9a9fd74d78201bb2b35|commit]], [[https://git.kernel.org/linus/d755b0a9949b46f207ed079378c40e0181f398b1|commit]], [[https://git.kernel.org/linus/e6eff926482d0f6ebe038a15348158682f5711a0|commit]], [[https://git.kernel.org/linus/673c1546cdd73728bc353bdadbbeea6e2dbef42a|commit]], [[https://git.kernel.org/linus/143a7cea4280562a0cdc3ca43e6e1ced4f8ec61d|commit]], [[https://git.kernel.org/linus/b9fa6916b1141e3648779e99039b02d4c57225f6|commit]], [[https://git.kernel.org/linus/2dc07082e3f5d51ae3bf293f9c39c192a1227242|commit]], [[https://git.kernel.org/linus/2911b935825523a71a71eecfe908902d181c041e|commit]], [[https://git.kernel.org/linus/ac75b922bb67cc8edb52006c9346dc0ca91d04c8|commit]], [[https://git.kernel.org/linus/15dfe154126743baaf3be669cdec893f3f174118|commit]], [[https://git.kernel.org/linus/b20f15420f786a029be09b1d9b81695581d1a122|commit]] * {{{/proc/meminfo}}}: expose per-node balloon pages in node meminfo [[https://git.kernel.org/linus/a1e6b0968833c2dd6193d05daf5700f9e0492126|commit]] * Improve large-folio readahead on systems like 64K-page arm64 by preventing the mmap_miss check from permanently disabling target-oriented VM_EXEC readahead, and by generalizing the force_thp_readahead gate to support mappings with any usefully large maximum folio order under the cache cap [[https://lore.kernel.org/linux-fsdevel/20260601102205.3985788-1-usama.arif@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/2f5e0477276bb87a407edc75f3d65012e6f63c68|commit]], [[https://git.kernel.org/linus/8732e14b719129b77e24d9003a506ec949d9427c|commit]] * lruvec: preemptively free dead folios during lru_add drain [[https://git.kernel.org/linus/9669b87065a6fe96198f3df2c3d125c5f5c1f210|commit]] * Use per-vma locks for /proc/pid/maps reads [[https://lore.kernel.org/linux-kernel/20250719182854.3166724-1-surenb@google.com/T/|(cover)]], [[https://git.kernel.org/linus/beb69e81724634063b9dbae4bc79e2e011fdeeb1|commit]], [[https://git.kernel.org/linus/b11d9e2d7883031afb570545cb9657a5c457349a|commit]], [[https://git.kernel.org/linus/6a45336b9b6fcc1d9ef3c6fe9a43252f9a20084b|commit]], [[https://git.kernel.org/linus/aadc099c480f98817849cd44585904402160fe21|commit]], [[https://git.kernel.org/linus/03d98703f7e172778786ebd7c5f2471d0f65d3a6|commit]], [[https://git.kernel.org/linus/5631da56c9a87ea41d69d1bbbc1cee327eb9354b|commit]] * page_alloc: replace kernel_init_pages() with batch page clearing [[https://git.kernel.org/linus/b001cf7d16dd18f14bd372a8018ecbf48197289d|commit]] * sparse: Remove sparse buffer pre-allocation mechanism [[https://git.kernel.org/linus/ffe55393137c01aa01940b528afcea8c5a108ed7|commit]] * vmalloc: free unused pages on vrealloc() shrink when shrinking across a page boundary [[https://lore.kernel.org/linux-kernel/20260519-vmalloc-shrink-v14-0-70b96ee3e9c9@zohomail.in/T/|(cover)]], [[https://git.kernel.org/linus/4f1839e22527f1621767721a90fa00425fbb0877|commit]], [[https://git.kernel.org/linus/d57ac904ffdce6c06e9a113fce603420c041b48c|commit]], [[https://git.kernel.org/linus/0bca23804632cc7275fc5f67191b6be58993cd28|commit]], [[https://git.kernel.org/linus/5ea8ec74c57c0c920c26530ba586391a9a3f3e5f|commit]], [[https://git.kernel.org/linus/3c3daeafcdb60e182554679fc32d2c912d1b0b6a|commit]] * vmpressure: skip socket pressure for costly order reclaim [[https://git.kernel.org/linus/f2a950170f7a78761c2b2e5e535716fb0f8c0813|commit]] * Switch THP shrinker to list_lru [[https://lore.kernel.org/cgroups/20260527204757.2544958-1-hannes@cmpxchg.org/T/|(cover)]], [[https://git.kernel.org/linus/79a031583ca5bb3d5484178f579fea97706f1ed6|commit]], [[https://git.kernel.org/linus/1923b1d76b964adc055b5a4bd877dda50550298f|commit]], [[https://git.kernel.org/linus/82d8bca1c715e9ed31eaeb5197a0ba00bf8be597|commit]], [[https://git.kernel.org/linus/8b98cfe2c52d7492a024b655e0978545845646cb|commit]], [[https://git.kernel.org/linus/bc7adb3b3f6ad3f1cf8a030be0034f61e7580fe4|commit]], [[https://git.kernel.org/linus/1479b44c7203b2cad3393533c64aa16d42056310|commit]], [[https://git.kernel.org/linus/ae64f07a6a4018c73111b3cd4e1c5598ce5cfa84|commit]], [[https://git.kernel.org/linus/65180e9663c782e45ed1c76276dc64d96615da9d|commit]], [[https://git.kernel.org/linus/fafaeceb89a5e2e856ff04c2cacb6cae4a2ecb67|commit]] * slab: support for compiler-assisted type-based slab cache partitioning [[https://lore.kernel.org/all/20260511200136.3201646-1-elver@google.com/|(cover)]], [[https://git.kernel.org/linus/feb662d9168b63e1d4c02671ec96005410c6f3ce|commit]], [[https://git.kernel.org/linus/0fc1bd38a19c108395d8338fb034f90c2d3fbe55|commit]], [[https://git.kernel.org/linus/e0f54249a491c62ef8196b9f13bd7d95dba47c6f|commit]] * slab: introduce alloc_flags and slab_alloc_context [[https://lore.kernel.org/linux-kernel/20260615-slab_alloc_flags-v3-0-ce1146d140fb@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/f09b59ae4414b0dc0929cf04cd8243157e0feab6|commit]], [[https://git.kernel.org/linus/5fd1c77e97decf78573843f4ad1ea3ddcc1ea102|commit]], [[https://git.kernel.org/linus/203890bbd29266cfff412cab607d2027bd2951c5|commit]], [[https://git.kernel.org/linus/74d224ac9288f58a1bc15e86203011d5d806db10|commit]], [[https://git.kernel.org/linus/c90a004a9372a907c3ac57dd2499172a0a2a8f3d|commit]], [[https://git.kernel.org/linus/574d3961d37ed25cac4fe3c5d497827d0384a0fd|commit]], [[https://git.kernel.org/linus/f39062e83cd52efd3e2a6773b8f5dfe3a8df9c9f|commit]], [[https://git.kernel.org/linus/ef7f97aa2ce8d59eda0faa9bb40f6263f0d80d5f|commit]], [[https://git.kernel.org/linus/b5ecc070d1962a130ca5acc3a40b515035e5d21f|commit]], [[https://git.kernel.org/linus/1a787779fe2a9b5d042b5b54f3580eb3802404c4|commit]], [[https://git.kernel.org/linus/d659903674af9d29b6bbde1768004da9cb99d676|commit]], [[https://git.kernel.org/linus/6dbded46e447113da97bed4a68b02b8aaaffa995|commit]], [[https://git.kernel.org/linus/f6d50ab29afd7502f5f74d9814908b93f96f47dd|commit]], [[https://git.kernel.org/linus/30222639602c89ddc52208ac6c9d7baed376c84a|commit]], [[https://git.kernel.org/linus/71553a60675994a79575567f6d56e214f9030dc4|commit]] * slub: defer freelist construction until after bulk allocation from a new slab. This reduces per-object overhead in bulk allocation paths and improves allocation throughput significantly [[https://git.kernel.org/linus/dc795d4c0282a4fbfbcd76a70c09ca0888678443|commit]] * slub: batch partial slab list operations [[https://lore.kernel.org/lkml/20260529035120.81304-1-hao.li@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/7e230738746ce9a7a57c55cbde0c48668a891334|commit]], [[https://git.kernel.org/linus/0fc52deec1068ea3cc8eaa6e045c96fbf73f20e2|commit]] * damon * Let DAMON be paused and resumed [[https://lore.kernel.org/linux-doc/20260427151231.113429-1-sj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/3b9e3cc0405b422db884054ea2417b7b85220c56|commit]], [[https://git.kernel.org/linus/3375284944ead898236652bd68a8dac66b65792d|commit]], [[https://git.kernel.org/linus/60bee40e30d047356a118bd637ba4960baadcd46|commit]], [[https://git.kernel.org/linus/ade1a22a8bf612c4e9fd8fabd5b103dae4d6a0c6|commit]], [[https://git.kernel.org/linus/f0cefc367686a5fb1de0b9b0a3bcd179ef5e67ee|commit]], [[https://git.kernel.org/linus/eb1ae61075f3c9e4e395f23993b5f3593a2e8ff1|commit]], [[https://git.kernel.org/linus/5d8585a1d7f689a6fee5a497d83017c5a8a4acfc|commit]], [[https://git.kernel.org/linus/d0e3f902aef881dab99111b59897dd045d932e47|commit]], [[https://git.kernel.org/linus/e88be73275e9bff727977499066606e35fa8db13|commit]], [[https://git.kernel.org/linus/cb1a7622c90c169b1dabdd680711f85b6fde7319|commit]] * repost non-hotfix reviewed patches in damon/next tree [[https://lore.kernel.org/linux-doc/20260426231619.107231-1-sj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/58996503b631adc6a268a42f4624a34513c16199|commit]], [[https://git.kernel.org/linus/abdca14655fe4ec821791c031d5764fdd1e9484d|commit]], [[https://git.kernel.org/linus/de3c60e1c8314f3408a72836483772e17f279aca|commit]], [[https://git.kernel.org/linus/58996503b631adc6a268a42f4624a34513c16199|commit]] * Introduce DAMOS failed region quota charge ratio [[https://git.kernel.org/linus/c7ec7d5f6b3d1fc36d04baaabd8d2756a5e937b1|commit]], [[https://git.kernel.org/linus/2423bb5fbe81f842cef10e076aeeb04004a6e15f|commit]], [[https://git.kernel.org/linus/4ee4fb3214a8aadf5e8d253f8a34b76baff7f37d|commit]], [[https://git.kernel.org/linus/fad1124120d61d2c6781c9d0fcace0fdb6e24df4|commit]], [[https://git.kernel.org/linus/776270536d9d2111aec3db54cfccae4ed5a3c5f6|commit]], [[https://git.kernel.org/linus/59ebdeedb595116bc2d2d0bcc408994908cb3b9d|commit]], [[https://git.kernel.org/linus/1d6b8e92da39413b7780908ea3d896c4a75b9bed|commit]], [[https://git.kernel.org/linus/0a605b4b673b46c78b43b5f5e557cfdd06856267|commit]], [[https://git.kernel.org/linus/588f08518fa2bb3b9ef20b5fbb20e27b39e5a257|commit]], [[https://git.kernel.org/linus/bcd8d68c6ba1ef918294d96ab64726eeef00b37c|commit]], [[https://git.kernel.org/linus/8d21446a6c7feb2d93b3ea4f54ffd7f4eb64f2bc|commit]] * Introduce data attributes monitoring [[https://git.kernel.org/linus/45c49d9fd6089e344663176b8488c97d905ca3ac|commit]], [[https://git.kernel.org/linus/18c777859f28d5e9b65d94c4fdc64f240250df3a|commit]], [[https://git.kernel.org/linus/f557693dd8ac9cd87d2a1ae1025ee9f568e916e6|commit]], [[https://git.kernel.org/linus/d0de4b29c722d903e3b82dfc035cb78c015b46e0|commit]], [[https://git.kernel.org/linus/57c6332f2548d94f137f51bd18111e4316fd1ba4|commit]], [[https://git.kernel.org/linus/1a9e847589180359be4198c7d2a3d2ea15b2ddd0|commit]], [[https://git.kernel.org/linus/9b1f8c8d015bc92cab358f1395ee053fd01d7b89|commit]], [[https://git.kernel.org/linus/09acfaced2d45b4f6d70e3999783d6e8ccec0ea7|commit]], [[https://git.kernel.org/linus/90a8322934ae8ab4b3e9418ed006e81df0d33dfc|commit]], [[https://git.kernel.org/linus/7d49f5aaee63bddded9e8f2fd15949596f69ae6b|commit]], [[https://git.kernel.org/linus/af7cb41af9a9310a6e654942199d2bb29f4f0021|commit]], [[https://git.kernel.org/linus/956bf44e4576121a7aa2d9c7f4a9e065edd293f8|commit]], [[https://git.kernel.org/linus/8caba144827849293a65169c9e138b6353156285|commit]], [[https://git.kernel.org/linus/24e969aa296c1b02b797420a428315a525540420|commit]], [[https://git.kernel.org/linus/b574a82d10de9c32ddc005c6a5d92e037f35ed43|commit]], [[https://git.kernel.org/linus/a1536db4dc8b9045e4ab13da4fe44b3d2b68f8ed|commit]], [[https://git.kernel.org/linus/5b0de1bc3325c34e341fe0f5314292c57b4616b9|commit]], [[https://git.kernel.org/linus/b9b7bad279de29294c4d3314fe90fca345c38ea6|commit]], [[https://git.kernel.org/linus/14885da09b0f3350004c80202fbe533d50336c8c|commit]], [[https://git.kernel.org/linus/f4e98954234b104c23902ee5bb4e59be6f9904a7|commit]], [[https://git.kernel.org/linus/69a743520114b2a9c47db37059d25abe2a84e8f5|commit]], [[https://git.kernel.org/linus/d9f23f2f822a59771fdc3cab648785d4f651e1b2|commit]], [[https://git.kernel.org/linus/ba3be5430ffa7e5debec2e0fe61518a2db0489ca|commit]], [[https://git.kernel.org/linus/c71f8e13462d6eab9928f579c15c0a4b16abab84|commit]], [[https://git.kernel.org/linus/b2025ce0662b186b3158c25f7f9c25b4e6931acc|commit]], [[https://git.kernel.org/linus/543ab01db7ace5bb28972ac70f321d55cc4f0214|commit]] * Docs/mm/damon/design: document data attributes monitoring [[https://lore.kernel.org/linux-doc/20260518234119.97569-21-sj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/69a743520114b2a9c47db37059d25abe2a84e8f5|commit]], [[https://git.kernel.org/linus/d9f23f2f822a59771fdc3cab648785d4f651e1b2|commit]], [[https://git.kernel.org/linus/ba3be5430ffa7e5debec2e0fe61518a2db0489ca|commit]], [[https://git.kernel.org/linus/c71f8e13462d6eab9928f579c15c0a4b16abab84|commit]], [[https://git.kernel.org/linus/b2025ce0662b186b3158c25f7f9c25b4e6931acc|commit]], [[https://git.kernel.org/linus/543ab01db7ace5bb28972ac70f321d55cc4f0214|commit]], [[https://git.kernel.org/linus/2fd777ebdfaafaead833a04882cbe8b1cdc5bdf1|commit]], [[https://git.kernel.org/linus/9d3678808a3e575088f22db306a000c4f4458dfe|commit]] * reclaim: add autotune_monitoring_intervals parameter [[https://git.kernel.org/linus/0453f857eb32c11d8cc48988911fc5905d054319|commit]], [[https://git.kernel.org/linus/1794454a3bf66974f806301fa2952aed719780fb|commit]] * stat: add kdamond_pid parameter [[https://git.kernel.org/linus/3a0bc9568c354357546557d8b969785bc27fd260|commit]], [[https://git.kernel.org/linus/f27d56b4f2aa0ffeda7113df3443448bc907acaf|commit]] * Add node_eligible_mem_bp goal metric [[https://git.kernel.org/linus/9138e27a3bc380cd88475546688f23d5eda1ad23|commit]] * hw_tags: Disable tagging for stack and page-tables [[https://lore.kernel.org/linux-kernel/20260429102704.680174-1-dev.jain@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/b56ca146a2b2750172f91f6db960a37a1a546efd|commit]], [[https://git.kernel.org/linus/6ae51adb084a9d87a8b9501d2231e20271dece87|commit]], [[https://git.kernel.org/linus/d46644af7636c4cb876110c8ff7f1efbbb815bfe|commit]] * dma-buf: heaps: Turn heaps into modules [[https://lore.kernel.org/linux-media/20260427-dma-buf-heaps-as-modules-v5-0-b6f5678feefc@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/f78a0607c8bf6912943527175db61996436d5792|commit]], [[https://git.kernel.org/linus/10bb37fc624cfcc1d10e0ebfc1b829401abba91e|commit]], [[https://git.kernel.org/linus/fd55edff8a0abe1b198af9a4280bfb208b9d2ab7|commit]], [[https://git.kernel.org/linus/4e3099285a644d0ef64f1d50b682c305284d7c40|commit]] = Block layer = * Enable lock context analysis for the block layer core [[https://lore.kernel.org/linux-block/cover.1780682325.git.bvanassche@acm.org/T/|(cover)]], [[https://git.kernel.org/linus/08d912bc44dab63f2637677712d2a0b86922389a|commit]], [[https://git.kernel.org/linus/3033c86fa1a8bb31d0a13738fe8c5f9e5bbaf98a|commit]], [[https://git.kernel.org/linus/ea4f575e72df0fa9e4b3f57a6f48c1ae81fac7b4|commit]], [[https://git.kernel.org/linus/c574c3cc368d68fff465e5fc811f874d9235b940|commit]], [[https://git.kernel.org/linus/9865e416644292124865dfc8a4ffd2b8e6764242|commit]], [[https://git.kernel.org/linus/6a7717a2df6c01b2158979f311ddf4cb35b8987f|commit]], [[https://git.kernel.org/linus/998cda78d4e364f75e576ba715a2533462990aee|commit]], [[https://git.kernel.org/linus/73bb2480e3eccc6cb2419691c9e60dea9dc6d719|commit]], [[https://git.kernel.org/linus/1ff85a387947890938c05cfe22041dfeef3098dd|commit]], [[https://git.kernel.org/linus/a255026594e9b7eea24c12d2bd4acae0c11eea94|commit]], [[https://git.kernel.org/linus/131f14125a1840d393c3dec8910483e3fc3daf18|commit]], [[https://git.kernel.org/linus/b4591b91526ef53eedefc124221ec1a060bfbe54|commit]], [[https://git.kernel.org/linus/f10b2de2af28f90c9d1a0774a474e5c4e4d222da|commit]], [[https://git.kernel.org/linus/5f0777166e3eaefc02ec0e381658f510f4d068ce|commit]] * dm cache: make smq background work limit configurable [[https://git.kernel.org/linus/af8ce933295b2ac18c744a9fc837f52a29737b51|commit]] * (FEATURED) dm-inlinecrypt: add target for inline block device encryption [[https://lore.kernel.org/linux-block/20260430095244.3352446-1-linlin.zhang@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/623463c8db708cfadad4f29400eada0d3cff111a|commit]], [[https://git.kernel.org/linus/e7f57d2c47e265ef64e1dab84fc8f70dae2dd150|commit]], [[https://git.kernel.org/linus/5256a62f163cf50d7a4c0d2eb76be023576db506|commit]] * dm-inlinecrypt: add support for hardware-wrapped keys [[https://lore.kernel.org/linux-kernel/20260525121348.1321282-1-linlin.zhang@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f9f57971da38afbcfa82a9502fb3eb5f1f100e73|commit]] = Tracing, perf and BPF = * BPF * arena: Recover from BPF arena page faults using a scratch page and add ptep_try_set() for lockless empty-slot installs on x86 and arm64 [[https://git.kernel.org/linus/258df8fce42fecc23cd04242de3d39f1fe836433|commit]], [[https://git.kernel.org/linus/dc11a4dba2464e5144c318ffaf7fb16b1a5c74d6|commit]], [[https://git.kernel.org/linus/f211c81ddc368e5cc6ad69d171bca0fa52e71ad7|commit]], [[https://git.kernel.org/linus/7c48a28c1bbe26e272bc978a42adb757fc6aa639|commit]], [[https://git.kernel.org/linus/53cc12a2dc88c2c6f62f507548640885a70a56a8|commit]], [[https://git.kernel.org/linus/0e2819cba977f910c7eeaf77c705e28787c3385d|commit]], [[https://git.kernel.org/linus/9eca087deb0b35f3170109a9630a6c5c06c2e222|commit]], [[https://git.kernel.org/linus/abdc2516f100d8f9e637a49e4fdfd2d09a318680|commit]] * Raise maximum call chain depth to 16 frames [[https://git.kernel.org/linus/2148794eeaf2a898adc791e9472eb80ea55984da|commit]] * Support stack arguments for BPF functions and kfuncs [[https://lore.kernel.org/bpf/20260513044949.2382019-1-yonghong.song@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/ede2dc5c6b571ce6d3aacf5a81933f8c5d5e6c7d|commit]], [[https://git.kernel.org/linus/1cb229a54af1e36f19f7e8359692fa0d76fbc360|commit]], [[https://git.kernel.org/linus/78bbe61632f11b1091c03259f92b6559489222ae|commit]], [[https://git.kernel.org/linus/3ab5bd317ee280b198b00ea2114adaad7a458ef8|commit]], [[https://git.kernel.org/linus/0f6bd5e7a804af27e7f34b8306afde7a6b269318|commit]], [[https://git.kernel.org/linus/3a656670fd6da624f6241038ca4cf350f24fd5e8|commit]], [[https://git.kernel.org/linus/0a0fdc64b68c28dab40f9deb0cffdf544e04b0ba|commit]], [[https://git.kernel.org/linus/84dd7df76efef9fecb6f3e0defe2ea3ad89cd3cb|commit]], [[https://git.kernel.org/linus/f44e815e65a30f465fe4dd793df8cb98f1f9c0b1|commit]], [[https://git.kernel.org/linus/2af4e792773f9fc05e5dbd5f297707cfe15cd817|commit]], [[https://git.kernel.org/linus/dc8f1cf6787c4bb1d8cabfac1e44d2d0ab435caa|commit]], [[https://git.kernel.org/linus/848d624acf668ae0d71b128f163d1d18d2ac6b90|commit]], [[https://git.kernel.org/linus/9fae4cba3bfd583198afe15ed4b4433eafafd11c|commit]], [[https://git.kernel.org/linus/e0b7b91c72db6dae0392dd90db3b866218a7870b|commit]], [[https://git.kernel.org/linus/35b78733160c120767332d924a0447a87109bbde|commit]], [[https://git.kernel.org/linus/cb6af5314056cb06456cfa8774aa158d61929bcd|commit]], [[https://git.kernel.org/linus/324c3ca6eed6fb7ec4e50f31d537953038b13c5f|commit]], [[https://git.kernel.org/linus/79e7ec00634e95e20217ba922906574041b9bbf0|commit]], [[https://git.kernel.org/linus/9f42204c62d51d666df0acb83af8d154c7580ace|commit]], [[https://git.kernel.org/linus/5b31de88920b867edcbcd8d6d77b8be5b822b3dd|commit]], [[https://git.kernel.org/linus/00c3ac4292a6bc3039008cdb45bd423087acb98e|commit]], [[https://git.kernel.org/linus/6e277efbb19dd1a536cbffd9ea5c049a427dc7cb|commit]], [[https://git.kernel.org/linus/68e5627579d788d9e992cc06a69760f20b6841d6|commit]], [[https://git.kernel.org/linus/235b2fe772f559416a5dfda33cf141ee07ce78d6|commit]], [[https://git.kernel.org/linus/90e43f1b47535cc7aceef3add1a61ba3260b7aee|commit]] * Adding tracing_multi link support that allows fast attachment of tracing program to many functions [[https://git.kernel.org/linus/e57f13eaab259ece7c9e8d81ba2c40c4f057ca2c|commit]], [[https://git.kernel.org/linus/af7c32365090a1a8ff981f85d7c24b344a2eaa75|commit]], [[https://git.kernel.org/linus/2cd298c106e00ba1d8799b022594f131703f32fa|commit]], [[https://git.kernel.org/linus/e6abd4cd157bf63cd89c74f8f10abae76e7b0359|commit]], [[https://git.kernel.org/linus/8a35e8db740f96ec17b85db5a0f83c028c707a3e|commit]], [[https://git.kernel.org/linus/bf4bc3e11c4195123055780b84dccfb8d2569535|commit]], [[https://git.kernel.org/linus/e6cc9ed677e622265bbd015892be58a1eece6238|commit]], [[https://git.kernel.org/linus/65499074efaf574fef6365ac63b785a3ec98913d|commit]], [[https://git.kernel.org/linus/880db5d4abb29e931d82b9feefb4382f76fcf9e5|commit]], [[https://git.kernel.org/linus/d14e6b4346bf397eca7cb5f4b7b0b8054be632d8|commit]], [[https://git.kernel.org/linus/bd06659d3b8abe7a79ae473209ee89bf3a23af36|commit]], [[https://git.kernel.org/linus/aef4dfa790b22d8052cfb78044eadbe03c876c39|commit]], [[https://git.kernel.org/linus/c1d32dea5d4694c1a6c14d1d1c3192d0e18ffc7b|commit]], [[https://git.kernel.org/linus/46b42af27d40021a97c147d23de8cb29eb5020df|commit]], [[https://git.kernel.org/linus/ba042ed6446fc524c1d804227765b45616f9cba3|commit]], [[https://git.kernel.org/linus/8abecdafd57553c053bb68db47ed32a54972d5f4|commit]], [[https://git.kernel.org/linus/fe9c8cb2b52b455149d363bbca0fc3648ba0cea6|commit]], [[https://git.kernel.org/linus/630e85a9f0056a7534601ed1ec2532d6ac85b7d7|commit]], [[https://git.kernel.org/linus/616a93b473a6ab33494db27057f8a413f375ac4f|commit]], [[https://git.kernel.org/linus/f2aa370dfe571abf51631c1ac27bb58d5d0e3466|commit]], [[https://git.kernel.org/linus/2922dd58413cd9a7d9cbe029e7d60f3bc432c553|commit]], [[https://git.kernel.org/linus/2863f074f146adf7f63bd567de05ae03fad64a01|commit]], [[https://git.kernel.org/linus/4309f580a0a6608bd0c0fe090ef5283173ff4f1a|commit]], [[https://git.kernel.org/linus/1b938f42f5fa1789d0dcc2b9aa6262edba3a7f51|commit]], [[https://git.kernel.org/linus/69f25d4b0c17cc947ce26391cac0015182b07dc0|commit]], [[https://git.kernel.org/linus/1fd8328549979d96540252fa826481df93885a5a|commit]], [[https://git.kernel.org/linus/443c91d08c4bf48caeab6243edaca4e987573d8a|commit]], [[https://git.kernel.org/linus/4db8f60b6baf64f4f405bc8eb92a36315b353481|commit]], [[https://git.kernel.org/linus/b349efe49a123f032e54d7e894d708ea5daa10d2|commit]] * Introduce resizable hash map [[https://lore.kernel.org/bpf/20260605-rhash-v7-0-5b8e05f8630d@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/8f4fa9f89b72845fa8ac956bff2e1d2ba5722f2e|commit]], [[https://git.kernel.org/linus/e673eee0f49ea41bf1af7aab08682ef98876c792|commit]], [[https://git.kernel.org/linus/46730ee6e884be667365e4d3a380ac504697559a|commit]], [[https://git.kernel.org/linus/16b4d3e2fb24aac3e68a8d86e3bc5e302e1b5cb7|commit]], [[https://git.kernel.org/linus/818e0084822742fc00eacbf5df3476a5e72c7d0e|commit]], [[https://git.kernel.org/linus/6905f8601298ecd2d1932a4b4849bf265201118e|commit]], [[https://git.kernel.org/linus/9dcbb5045fe5a00f04c99aede5a10726f8bb937b|commit]], [[https://git.kernel.org/linus/6e46ff0abefde32c2341ca2c61ab1f8855e8cac9|commit]], [[https://git.kernel.org/linus/249996365b66d09db31bbf3a86c07715f47ea133|commit]], [[https://git.kernel.org/linus/a996794fda8463afbc2bc70fbc7f6a2a9c1547ef|commit]], [[https://git.kernel.org/linus/2bea44ea3c4ef6cee3a7c8b6bd74ace093632bef|commit]], [[https://git.kernel.org/linus/84f7a49e76ec8e0a1e18f3758e89800f8cf8cfc6|commit]] * Maximum combined stack depth [[https://lore.kernel.org/bpf/cover.1778700777.git.paul.chaignon@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/f41f34ec64748e16e5a90ab391cec39e30942f32|commit]], [[https://git.kernel.org/linus/2a5b22e87ba5aeb5cad8acb1c7d9866981c37d1b|commit]], [[https://git.kernel.org/linus/f0015ffbf40c7c6db148163bd6f8c53f14933b53|commit]] * Minimize annotations for arena programs [[https://lore.kernel.org/bpf/20260602004120.17087-1-emil@etsalapatis.com/T/|(cover)]], [[https://git.kernel.org/linus/a0fa68d8ce759dbf6aaf19a043ddd77a2128c26c|commit]], [[https://git.kernel.org/linus/5ab4bc67d818ba27388d64cb9c52cb0c3bdac254|commit]], [[https://git.kernel.org/linus/3e924e9272c80939677aa6902aced311c85fe48c|commit]], [[https://git.kernel.org/linus/b9b23fe1761117f4a0109a25d16d337c900437ad|commit]], [[https://git.kernel.org/linus/367e6e4a8173d47b4c57181cdd9dcbfc291755f0|commit]], [[https://git.kernel.org/linus/9fd5bf96ac4be2ec784598c818f672422182042c|commit]] * Add bpf_real_inode() kfunc [[https://git.kernel.org/linus/9af8c8a54f6ef1ec8e97836e456827dd5161b355|commit]] * Support BPF traversal of wakeup sources [[https://lore.kernel.org/linux-kernel/20260511174559.659782-1-wusamuel@google.com/T/|(cover)]], [[https://git.kernel.org/linus/5ff44955447eb04f77161736ff5729c8c0994f7f|commit]], [[https://git.kernel.org/linus/9ef647114201b50b60a43054506af893f74ae8b8|commit]] * Add simple xattr support to bpffs [[https://git.kernel.org/linus/9722955b54307e9070994f2382ec06af3d7405e0|commit]] * Add support for sleepable tracepoint programs [[https://lore.kernel.org/bpf/20260422-sleepable_tracepoints-v13-0-99005dff21ef@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/439ebd5b5708f236f7a4a9784194f7ecb77cd814|commit]], [[https://git.kernel.org/linus/12628ffaf98b708a80857a462613119b9e16de4c|commit]], [[https://git.kernel.org/linus/57918341dd19e5ca8a77622ffae3db19e5ba4cc7|commit]], [[https://git.kernel.org/linus/8cfb77d3092052b52582e804e644202e2b10167a|commit]], [[https://git.kernel.org/linus/0cd420a6f40c7ee4e58c5277df6bf66efcfcdf1a|commit]], [[https://git.kernel.org/linus/8a20655749c625dcc4debdfdeeaa0cf8bb85c203|commit]] * Extend bpf syscall with common attributes support [[https://lore.kernel.org/bpf/20260512153157.28382-1-leon.hwang@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/f28771c0691bcb7f477a0f35550b17b88c32dea8|commit]], [[https://git.kernel.org/linus/b1bff40809429bcf80c201255a2bcdf1c5eec06e|commit]], [[https://git.kernel.org/linus/503c039ffeca7530ce9d6446a07b4bb776180b45|commit]], [[https://git.kernel.org/linus/ac89d33fdd8183df39fe92ffa525be7af6feb9d1|commit]], [[https://git.kernel.org/linus/ceeb7eda94a3548958b30818495ef7eb12898727|commit]], [[https://git.kernel.org/linus/49f9b2b2a18c5ce06b21fc2b3399352d80dee0c6|commit]], [[https://git.kernel.org/linus/702259006f9303c8773f99a06d1b698f05f082ac|commit]], [[https://git.kernel.org/linus/f675483cac1d762e11f134be1bbd80f876bf2e2f|commit]] * Expose signature verdict via bpf_prog_aux [[https://git.kernel.org/linus/63a673e8a4112af267106264f50584947786845a|commit]], [[https://git.kernel.org/linus/8ddce416797b7454ba1df855821b02c6e43b5a0e|commit]] * cBPF JIT spray hardening [[https://git.kernel.org/linus/96cce16e26dd02a8678f1e87f88a4b5cdb63b995|commit]], [[https://git.kernel.org/linus/a3af84b0fa00ead01fcd0e28b5d773ff25990a0d|commit]], [[https://git.kernel.org/linus/0bb99f2cfaae6822d734d69722de30af823efdf3|commit]], [[https://git.kernel.org/linus/a23c1c5396a91680703360d1ee28a44657c503c4|commit]], [[https://git.kernel.org/linus/a9b1f19a6a673ba06820898d0f1ad02883ea1639|commit]], [[https://git.kernel.org/linus/b72e29e0f7ee329d89f86db8700c8ea99b4a370a|commit]] * Extend the bpf_list family of apis [[https://lore.kernel.org/bpf/20260521032306.97118-1-kaitao.cheng@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/cb339ac61d72f7fb7f57bfc0516b7b2b65bc1bad|commit]], [[https://git.kernel.org/linus/cfa6afa4b931aed08288454943e5077f114fd7f3|commit]], [[https://git.kernel.org/linus/7c8c71591b768284caa81e92cb47a6912952d3f2|commit]], [[https://git.kernel.org/linus/187baa10963ac9f1db5123fa2ab761ab34ea06b9|commit]], [[https://git.kernel.org/linus/e6919ff67c1e612ec1ce3be51dba6e7ffc47997a|commit]], [[https://git.kernel.org/linus/a3493ca504f16877bf29a123f27835c3f841a05f|commit]], [[https://git.kernel.org/linus/745515d386eb5e6891d9f91a92ad15dace3a33ef|commit]], [[https://git.kernel.org/linus/ba3dc064f4065471487a8cc93c47efda4fe358dd|commit]] * tracing/eprobes: Allow use of BTF names to dereference pointers. Add syntax to the parsing of eprobes to be able to typecast a trace event field that is a pointer to a structure [[https://git.kernel.org/linus/69efd863a78584b9416ed6be0e1e7349124b4a00|commit]] * perf * Allow perf to read synthetic events [[https://git.kernel.org/linus/bb4613842e8033a714bacf3b62cc70638926cdcf|commit]] * perf tools: Add inject {{{--aslr}}} feature, to remap ASLR-randomized addresses in perf.data files, enabling reproducible analysis across runs with different address space layouts [[https://lore.kernel.org/linux-kernel/20260611164122.3974068-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/75a4888b7029a1f98613aef91f517b2ee1f03d43|commit]], [[https://git.kernel.org/linus/febea9ec382f5616954c1e3578e70308f4762e59|commit]], [[https://git.kernel.org/linus/575c6d2bc470ec809d6c803ec0db9e61762cfa32|commit]], [[https://git.kernel.org/linus/d6dbf2d4a9009a9cec1b33325308fa5b3a7b6ba9|commit]], [[https://git.kernel.org/linus/190c4546384461f3dee70a649b438aa41c24d01e|commit]] * perf bench: add {{{--write-size}}} option to sched pipe [[https://git.kernel.org/linus/b52ba22c7078e1987ce0cc0a8385654cb36296e3|commit]] * perf lock contention: Allow 'mmap_lock' in {{{-L}}}/{{{--lock-filter}}} [[https://git.kernel.org/linus/b72ab69175157aac2f3ff1ebc0765e3899ba295b|commit]] * perf test: Parallel harness optimizations, summary, JUnit XML & PMU fixes [[https://git.kernel.org/linus/bded0398ac19bc808984f50023bb482ce41f7bdd|commit]], [[https://git.kernel.org/linus/2c43c0c78668a7026967ab8280f0f9ffc04e65f4|commit]], [[https://git.kernel.org/linus/53247b207bd02116cefd3409494382e7adf32849|commit]], [[https://git.kernel.org/linus/744af598719776b2ca8b0f5388b51d2493cc94b7|commit]], [[https://git.kernel.org/linus/8c8d61c38d8e1755a4325f8acb396137bbd5371a|commit]], [[https://git.kernel.org/linus/8ae26f6ae7013f0ba753feed723eb0613796cb67|commit]], [[https://git.kernel.org/linus/c7dacfb87beed63ffe360c73c2a284d9e334f135|commit]], [[https://git.kernel.org/linus/f35450738e789b80b540f41487b9053defd0bb8d|commit]], [[https://git.kernel.org/linus/b5a4a361f5cfb8f6f6f0a59536fd5fad11ed9f5f|commit]], [[https://git.kernel.org/linus/33f20342ba525ef75fd9734db71e9823fe65e769|commit]], [[https://git.kernel.org/linus/94ac3ce427c8f80d699909c85a7cb70a589c562d|commit]], [[https://git.kernel.org/linus/85fe2fdb2726e8e85b0dc1217260d7b5bf0a5dca|commit]], [[https://git.kernel.org/linus/a540f031bbbceb6e390a71eb9f7f8d65363356ba|commit]], [[https://git.kernel.org/linus/e2c545737bf4387d1217d3608274823421e1dbf2|commit]], [[https://git.kernel.org/linus/0dd6025171436822e54ae556dc48aed89c42b6a9|commit]], [[https://git.kernel.org/linus/a77ecea7ced2fef7cc0a8ad0323542f781ad9788|commit]] * perf trace: Introduce {{{--show-cpu}}} option to display cpu id [[https://git.kernel.org/linus/e445b78ffb8d43440b9f417d6701826746114a0d|commit]] * Perf libunwind multiple remote support [[https://lore.kernel.org/linux-kernel/20260513233151.572332-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/4248ae6e799605b3e62855be6085935d89de50d1|commit]], [[https://git.kernel.org/linus/6d13d53be9ddab1425e0c2789788adc4d6f05d74|commit]], [[https://git.kernel.org/linus/444508cd7c7b4f052553af204cc73d5ac4d19901|commit]], [[https://git.kernel.org/linus/fdf08e4b5a33e840b6c2a988cd4392b4443ca51b|commit]], [[https://git.kernel.org/linus/2723e9f8b5cf36b8c49b9798fdbe326cf2b70785|commit]], [[https://git.kernel.org/linus/88b4275ff542510fa80c32c863571c71d60f8766|commit]], [[https://git.kernel.org/linus/834c557167a9236d8d8fe858b7b2d71ce6df7545|commit]] * perf: Reveal PMU type in fdinfo [[https://git.kernel.org/linus/2369ce0f16b89e3d85c9683c06eb104545999378|commit]] = Virtualization = * virtio * Extend blob UAPI with deferred-mapping hinting [[https://git.kernel.org/linus/4c26e162947f91aa78ba57dd4fddd38fc80e7d60|commit]] * drm: Introduce {{{F_BLOB_ALIGNMENT}}} support [[https://lore.kernel.org/lkml/20260428194450.518296-1-slp@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/7b5121c3374e24c8f6490b54f347eb06ee16028c|commit]], [[https://git.kernel.org/linus/47248e0d8264452762bd47a8b3c89665b8235e93|commit]], [[https://git.kernel.org/linus/6bd7e82e26531541a6023f060ba749547b9868ac|commit]] * SR-IOV Virtual Function support for AIE4 platform [[https://lore.kernel.org/linux-kernel/20260505160936.3917732-1-lizhi.hou@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/7b1a245b180579a844e506193f1f714edaf24bc1|commit]], [[https://git.kernel.org/linus/ce9414d0c0be7377aab5a6d3a30da5b6c032a720|commit]], [[https://git.kernel.org/linus/193612791eea3648e6647ad74cacb191f9d0ef33|commit]], [[https://git.kernel.org/linus/91f4da826c082f7dca4a1f90fa3f032255f69c18|commit]], [[https://git.kernel.org/linus/0b087e0636245f7393610cef0f45333effcdd86a|commit]], [[https://git.kernel.org/linus/c006978163fd001fbca55e5fa57bddcf49f47ad9|commit]] = Cryptography = * AF_ALG: Remove support for AIO and old-style drivers [[https://git.kernel.org/linus/fcc77d33a34cf271702e8daafb6c593e4626776d|commit]], [[https://git.kernel.org/linus/7524070f26d8d347c26787dc297fb844baa26abf|commit]], [[https://git.kernel.org/linus/5624ea54f3ba5c83d2e5503411a31a8be0278c1e|commit]] * AF_ALG: remove zero-copy support from skcipher and aead [[https://git.kernel.org/linus/ffdd2bc378953b525aca61902534e753f1f8e734|commit]] * Fix and simplify the NIST DRBG implementation [[https://lore.kernel.org/linux-crypto/20260420063422.324906-31-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/ad8883374f34809f04d6839b9e7efe0afa5e92cd|commit]], [[https://git.kernel.org/linus/2b30c567603b6e12f153dc7f584d3be87a96be35|commit]], [[https://git.kernel.org/linus/b87c8286bfe63c176b9af59b5ca1c98005312bd8|commit]], [[https://git.kernel.org/linus/ca659874af31c6c6e1c5992475b88be8cb65d484|commit]], [[https://git.kernel.org/linus/005b19f18ea9fc51fc35fbcb27759ae83c7c89f8|commit]], [[https://git.kernel.org/linus/a918c3680d2ea1d3c2df589397c0ffd4dac2ceaa|commit]], [[https://git.kernel.org/linus/7cca456c3e6a0fefc752e9e93634aa63545d6a68|commit]], [[https://git.kernel.org/linus/58d0b2b90796d603b01afb8eeaeb14c58131ad57|commit]] * Consolidate FCrypt and PCBC code into net/rxrpc/ [[https://lore.kernel.org/netdev/20260522050740.84561-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/f10e73dffd2abf51c5ba6f5dc724a0df690cd783|commit]], [[https://git.kernel.org/linus/97b768514a6eb5aa8c2806df07aa1d37c5f3b1d2|commit]], [[https://git.kernel.org/linus/432042e25e33d0db9c12bbe4ee3fa234d3b061af|commit]], [[https://git.kernel.org/linus/374efbdc85d027814f6b26a8d641dc062f9017c0|commit]], [[https://git.kernel.org/linus/1967bfaf7ba15dc179a7e3325e880736efbcdf62|commit]] = Security = * integrity: Add support for ML-DSA signature for EVM and IMA [[https://lore.kernel.org/linux-integrity/20260416154039.1648083-1-stefanb@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/c93a5f038ccc11ed8558ce642f62d5ede701a348|commit]], [[https://git.kernel.org/linus/474c78c26744b6921549f0c679b7507a57cfcbb9|commit]], [[https://git.kernel.org/linus/33aa0c8cf0657b9588f835645cbbcebe44a2a1ee|commit]], [[https://git.kernel.org/linus/489d7e2e7e9a31faa38ca25be0e6cbe3eea2960f|commit]] * ima: support for removing IMA measurement list records stored in kernel memory [[https://lore.kernel.org/linux-doc/20260605172236.2042045-1-roberto.sassu@huaweicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/a01183bd6fc66910e2837830aa21dd8da2b7795e|commit]], [[https://git.kernel.org/linus/7bc01800a7739972626e366766f54c3e76cc3e69|commit]], [[https://git.kernel.org/linus/2fcebcd2aad24c13c27a6881a0866629f3ec57b2|commit]], [[https://git.kernel.org/linus/8f19da70f794f380a4b5aacfec681315a0a325c5|commit]], [[https://git.kernel.org/linus/cb431ff6a92fc62d91ba64f04c7af3bb54017a1d|commit]], [[https://git.kernel.org/linus/51bedcd803e0f140ee39e70a930d01223e1afb58|commit]], [[https://git.kernel.org/linus/56275ec7667adda1eea102911f76fb822dbfebc4|commit]], [[https://git.kernel.org/linus/292bc492f3d31ffd858600a331d599f1956bf612|commit]], [[https://git.kernel.org/linus/e9b491e27bf6b9401e2e521955787a7a6e2bf808|commit]], [[https://git.kernel.org/linus/c26d9d9246cc66e3472a2bbd186152d0572d7aab|commit]], [[https://git.kernel.org/linus/fcb0318a29696c13c9f8af0109855793a34371e6|commit]], [[https://git.kernel.org/linus/35d6f5e788dae0dcc4c42d1280360f19aef9ab52|commit]] * landlock: Account all audit data allocations to user space [[https://git.kernel.org/linus/b232bd12789fa57405b5092f28788be97aae9999|commit]] * landlock: Implement LANDLOCK_ADD_RULE_QUIET to mute specific specific audit logs (and other future observability events) [[https://lore.kernel.org/linux-security-module/cover.1781228815.git.m@maowtm.org/T/|(cover)]], [[https://git.kernel.org/linus/a260c0055665fc38804400b3dbdca165d5e0aa15|commit]], [[https://git.kernel.org/linus/29752205db5ff1793437b352c9e343b8e41fb184|commit]], [[https://git.kernel.org/linus/5f12f8effb5acb38a8b554ea39bd30d43d54f9f0|commit]], [[https://git.kernel.org/linus/8faab14922b75c3c0bbc0769eedef85d4609a85a|commit]], [[https://git.kernel.org/linus/73c2f82b3253bb5448d7e26170feaa03189c436a|commit]], [[https://git.kernel.org/linus/c7d1c54edfd530d86cce798d46a1f058cc473e65|commit]], [[https://git.kernel.org/linus/624c96268bb3402bb21d889069bb4aff5d4d7aec|commit]], [[https://git.kernel.org/linus/149367545331dbadb4940540f2a43e726aab046d|commit]], [[https://git.kernel.org/linus/1c236e7fe740a009ad8dd40a5ee0602ec402fffe|commit]] * landlock: add new Landlock access rights to control UDP bind and connect/send operations [[https://lore.kernel.org/linux-security-module/20260611162107.49278-1-matthieu@buffet.re/T/|(cover)]], [[https://git.kernel.org/linus/9a8ed15ce22472fe0363e33738b4317d06b13c3a|commit]], [[https://git.kernel.org/linus/e61247a2e694d17236149135b2d22f0f7d19578c|commit]], [[https://git.kernel.org/linus/42afa5c467239642ca34efd7d76d034609abbaf6|commit]], [[https://git.kernel.org/linus/cf393de90f93bcc962436062e0a6d3afc0285d03|commit]], [[https://git.kernel.org/linus/a1b0b278455a70e2567bdf77e6fda23438280987|commit]], [[https://git.kernel.org/linus/299eccf996681273da0290f47db710de8d61c163|commit]] * KEYS: trusted: Debugging as a feature [[https://git.kernel.org/linus/4d05e948cebe03974ab9927daee55273207fdc22|commit]] * apparmor: Enable differential encoding [[https://git.kernel.org/linus/e7501736405a39fa513625ba1f81909c847e4e70|commit]] = Networking = * IPv4: nexthop removal performance optimization [[https://git.kernel.org/linus/31c777be2a2efd8980a660724955ba795ef751de|commit]], [[https://git.kernel.org/linus/35ce55100c61270eb8234bcc8ac87fec1d8e4ff9|commit]], [[https://git.kernel.org/linus/5dcbd64e66ba36fc7abd433d9bbba660dc0c473d|commit]] * TCP: rehash onto different local ECMP path on retransmit timeout [[https://lore.kernel.org/netdev/20260615042158.1600746-3-ntspring@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/658eb696544cc0e39ef1d60795546e64f542604a|commit]], [[https://git.kernel.org/linus/658eb696544cc0e39ef1d60795546e64f542604a|commit]] * IPv6: Honor oif when choosing nexthop for locally generated traffic [[https://lore.kernel.org/netdev/20260611154605.992528-1-idosch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/484bb9d164df397a53e0f533b262b27b1590efcb|commit]], [[https://git.kernel.org/linus/d25e7e9d8a6c1e2afb854613e417c6aa1a28ce6f|commit]], [[https://git.kernel.org/linus/707c1f866c68de8ab741444f0973276ad06e53ce|commit]] * IPv6: don't use rtnl_lock for multicast routing configuration [[https://lore.kernel.org/all/20260604224712.3209821-1-kuniyu@google.com/|(cover)]], [[https://git.kernel.org/linus/e02bf5e7aa4af4e5e063d6a1bf1de6dded69fe5b|commit]], [[https://git.kernel.org/linus/364568de4e7f8a5a0f0e12a0ba8812377f53c07a|commit]], [[https://git.kernel.org/linus/36be7d7c5ded0d70c3384e4730664e25b8d076fc|commit]], [[https://git.kernel.org/linus/c2f5fd21aca4c7d002bbf264da4464509674ee78|commit]], [[https://git.kernel.org/linus/76ea2ba2297e0bbd9ddecc971edff93039def6f2|commit]], [[https://git.kernel.org/linus/3bcf206012b27737ececc40096f18423dffabd43|commit]], [[https://git.kernel.org/linus/a543cb49e603f88917e3258bbcb59a60d9c3c2fa|commit]], [[https://git.kernel.org/linus/2c309a863dd6e609b10caa55a362dc48d2e04564|commit]], [[https://git.kernel.org/linus/4becf012467511e9f3e21b641054f85711f4e187|commit]], [[https://git.kernel.org/linus/7395fccf6b4c2a351f2d29ff905ae71bf644cc60|commit]], [[https://git.kernel.org/linus/33e6984fe5d49eecba404141b0ef0f305ad0a3b3|commit]], [[https://git.kernel.org/linus/2a798e8c71b569b3adca009ceb558ff2a936c4d9|commit]], [[https://git.kernel.org/linus/2290727b2fdb9f56f6fa2e06b4c5061c4f28e2df|commit]], [[https://git.kernel.org/linus/a4c98421720a79587ad6c528f81fe7976a45976b|commit]], [[https://git.kernel.org/linus/5499868699eebf14ff143495766264964b3a2e9e|commit]] * {{{SO_TXTIME}}} improvements [[https://lore.kernel.org/netdev/20260604194221.3319080-1-willemdebruijn.kernel@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/73f1a618b064884410e7f772467a5f515d6751af|commit]], [[https://git.kernel.org/linus/c4f796c4f16ba375b43c608d6bd0f72e20168312|commit]], [[https://git.kernel.org/linus/b016022b127fc2949f79c350817c458a060314e4|commit]] * mptcp: pm: drop TCP TS with ADD_ADDRv6 + port [[https://lore.kernel.org/lkml/20260529-mptcp-add-addr6-port-ts-v4-0-cea393fa33a2@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/f4a58ffbd4cf6e51b252ab64054584cad2750160|commit]], [[https://git.kernel.org/linus/a8bffec089d5b9d02f08db738eaaff695f77b6b3|commit]], [[https://git.kernel.org/linus/06c62385be856bc96acc0f49465a85fd047c77ad|commit]], [[https://git.kernel.org/linus/30ff28fdc4da4e45ec1d35be864d416e18d969cc|commit]], [[https://git.kernel.org/linus/1c3e7e0439773357e25d13d9cd56e5138593e5bd|commit]], [[https://git.kernel.org/linus/23eeaad0d89d7fd64e6164dde48e661ad237772e|commit]], [[https://git.kernel.org/linus/dd7fb53c21c31fa06128784a9d8a153597f10372|commit]], [[https://git.kernel.org/linus/5558517b0001751c666e4b2b8c956d31ed5c7c8a|commit]], [[https://git.kernel.org/linus/f81689172429885d6c2c7c3dd4926ec626e794bb|commit]], [[https://git.kernel.org/linus/350d76dd6e79468ac85767f2d236299a135572df|commit]], [[https://git.kernel.org/linus/7d4dacc8ccca8e40fcb5f2ece9ea3e502da1bd3f|commit]], [[https://git.kernel.org/linus/938490767e370d9d7353a61f674fe1b1bac1025e|commit]], [[https://git.kernel.org/linus/d0f866e64897a217d4fa8fabef04341f010032c3|commit]], [[https://git.kernel.org/linus/6ea199a938daa1827e333104c5aa07ae3209eac5|commit]] * Reimplement TCP-AO using crypto library [[https://lore.kernel.org/netdev/20260427172727.9310-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/5eb0cfedb2588650b63f0a65963ad64272df938d|commit]], [[https://git.kernel.org/linus/068f5a00955675f10348986d4809edc4dbc0cae0|commit]], [[https://git.kernel.org/linus/48168799896c58d3132822ba8513b10f8d6fe039|commit]], [[https://git.kernel.org/linus/8e4f61e431634730af2244312c783f746575905d|commit]], [[https://git.kernel.org/linus/4baf2415992e3051cb39b831191d12cb7e85ab60|commit]] * Expose page pool order via netlink [[https://lore.kernel.org/netdev/20260612211709.1456966-2-dtatulea@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/5c4adb7fb46fac348197c5a15c676a066dd1f88e|commit]], [[https://git.kernel.org/linus/18f65355e112dfc87d5e2e8a299119afd2e65e7e|commit]] * pppoe: implement GRO/GSO support [[https://git.kernel.org/linus/55a5d8fca8365312ed53bc93ae1af67ee35c2915|commit]], [[https://git.kernel.org/linus/6160ec9d03d7af5aa345b8b994de80fa8454274b|commit]] * geneve: Allow binding UDP socket to a specific address [[https://git.kernel.org/linus/c7f83b9de269f38d439fca14e1d049831ab89c01|commit]], [[https://git.kernel.org/linus/0429413cc7811ae29ff07e4173544c5112d2ac81|commit]], [[https://git.kernel.org/linus/2e5feb257ec50874772962bca578207d9a9b5f5a|commit]], [[https://git.kernel.org/linus/afabbb56a7262979a75259e2710019aa8ced3e8a|commit]] * RDMA: Introduce generic buffer descriptor infrastructure for umem [[https://lore.kernel.org/linux-rdma/20260529134312.2836341-1-jiri@resnulli.us/T/|(cover)]], [[https://git.kernel.org/linus/af841056860d2dc2754a122fb79abbe92f3752f3|commit]], [[https://git.kernel.org/linus/28fb701c642b8ff73e08fabef9265b508509d820|commit]], [[https://git.kernel.org/linus/3cfdff484d84f04716ae56063a8dac3773bd3f29|commit]], [[https://git.kernel.org/linus/df67f15c447475b81f77de2eaf22732bc11d6bae|commit]], [[https://git.kernel.org/linus/057bb70f531c3e33c18c067716f39f8413b252aa|commit]], [[https://git.kernel.org/linus/f6d2e53ca53ad2e847e5eb64c56c426ee2fd8bdd|commit]], [[https://git.kernel.org/linus/e3433474db923168babdb5c83abb9e1af11a9e91|commit]], [[https://git.kernel.org/linus/ffdc91c993e4d56b110757fa06532c35a2d5c798|commit]], [[https://git.kernel.org/linus/c1837879e4443c89805569778d82a3693d278696|commit]], [[https://git.kernel.org/linus/c0a94fecec37765fb7e5c31d4e7986a1a23ce697|commit]], [[https://git.kernel.org/linus/7c5bbaaf4441558a5b7ab0e4db3f153b18a4ec19|commit]], [[https://git.kernel.org/linus/cd767d980cb9d808a6811fa043f06480e30e0cd8|commit]], [[https://git.kernel.org/linus/38fc5bab6c62dd39f4d0b0f270657024f5f07b1e|commit]], [[https://git.kernel.org/linus/2cc10972f5f4f123e5a7658824db4f7b5abfc410|commit]], [[https://git.kernel.org/linus/d6ab1d243973acb046aab8f6daea90005041070a|commit]], [[https://git.kernel.org/linus/93ce776a5b0453314a5d1d6068762c9d646f5754|commit]] * Add ovs packet family ynl spec and unicast notification support [[https://lore.kernel.org/netdev/20260522174154.720293-1-houminxi@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/b82bfddc46e20d3ebb57c23bc8b8c831b7ca9f88|commit]], [[https://git.kernel.org/linus/b74e71b6a986650ea04d99ef443c6b3b18da52c5|commit]] * Remove tls_toe [[https://lore.kernel.org/netdev/cover.1781165969.git.sd@queasysnail.net/T/|(cover)]], [[https://git.kernel.org/linus/cdae65fc43f28b6508d85fa242264f3bc5c9a5c7|commit]], [[https://git.kernel.org/linus/f51a442dc15ade43fd2120519ed6b06bf89258ff|commit]] * bridge * mcast: support exponential field encoding [[https://lore.kernel.org/netdev/20260502131907.987-1-royujjal@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/726fa7da2d8c9c021eefad178097448b0356a284|commit]], [[https://git.kernel.org/linus/12cfb4ecc471652890cae362b8609d9f71b46ee9|commit]], [[https://git.kernel.org/linus/95bfd196f0dc6ccf8ef02356cf7088778b84416b|commit]], [[https://git.kernel.org/linus/e51560f4220a5c2185dc1abbfc3aa0eb543139c2|commit]], [[https://git.kernel.org/linus/529dbe762de03dc9bea343a9b5313bd9c8c3a697|commit]] * Add selective forwarding of gratuitous neighbor announcements [[https://lore.kernel.org/netdev/20260511065936.4173106-1-danieller@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/0c32db0761fef3d98d6e4d6d8ce02c40e914f4d8|commit]], [[https://git.kernel.org/linus/3a28ccb9dd47d1b6f64c64a94c958a968299aa1d|commit]], [[https://git.kernel.org/linus/27c082c600b1df749cafa57edf5815e951655a3c|commit]], [[https://git.kernel.org/linus/2c75c438b9d9db40d4c64b6437eaca67d57a0ee1|commit]], [[https://git.kernel.org/linus/e65cf8815932c4c06f30cd34db213f45ba2f2a60|commit]], [[https://git.kernel.org/linus/4620aa6527d3ef452b7b3eb1123cbdf2fa7d82e2|commit]] * Avoid nested UP notifier events [[https://git.kernel.org/linus/129cdce9da9e44c52d38889e0411be9817bca114|commit]], [[https://git.kernel.org/linus/cd1c188db1091991fc1d7f565824d077d659425b|commit]], [[https://git.kernel.org/linus/e83d0a2472617327e04b74272a61fca06f6f84ff|commit]] * sched: tc_dump_qdisc() optimizations [[https://lore.kernel.org/all/20260430023628.3216283-1-edumazet@google.com/|(cover)]], [[https://git.kernel.org/linus/db6ac77b0433d18248280592940849357d4f6dbd|commit]], [[https://git.kernel.org/linus/304427709ab8b751d37a5157245d8ec6cd8b1c52|commit]], [[https://git.kernel.org/linus/748bbef5fc6a6f5931103b68b67d345c67d0850b|commit]], [[https://git.kernel.org/linus/6f63b829632cbb4e7c4b6c55c79f5bb6652c06a8|commit]] * wifi * Introduce Fine Timing Measurement (FTM) enhancements and Proximity Detection (PD) capabilities. The implementation follows the Wi-Fi Alliance "PR Implementation Consideration Draft 1.9 Rev 1" specification and extends the existing peer measurement framework with advanced ranging features [[https://lore.kernel.org/linux-wireless/20260420090856.2152905-1-peddolla.reddy@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/bef9d5e378f07ccdf967b929897de84a9931d1e3|commit]], [[https://git.kernel.org/linus/4dbd1829045ee4146ae16b0e1ad122d855a694cb|commit]], [[https://git.kernel.org/linus/55f23d68f93a4cce394885886cdcd4015c35e951|commit]], [[https://git.kernel.org/linus/b47a6e4d662976efbe53518cb22cf7df86d19c75|commit]], [[https://git.kernel.org/linus/18709c618d3b4b2990f202a436784f4c36e2c193|commit]], [[https://git.kernel.org/linus/8823a9b0e7af5395cbfa06bf23806197d59cd124|commit]], [[https://git.kernel.org/linus/4e901e99edd2c289e6917cb79027e39c98d711e2|commit]], [[https://git.kernel.org/linus/ea996c2c036df21fbd3b195e6c5c42c11eadb6c4|commit]], [[https://git.kernel.org/linus/99529edd28df505576366753e204ba78a406659b|commit]], [[https://git.kernel.org/linus/5733daa670dc1e1464be59dfcacaa76597201b3e|commit]], [[https://git.kernel.org/linus/410aa47fd9d308029f3520e97eec71a8eb508622|commit]], [[https://git.kernel.org/linus/4bb6e58bc29ab772c26c5eb471ab255fe2e044d8|commit]], [[https://git.kernel.org/linus/3acaadfe91a3c7afb52b2eb7f7995767b819a47e|commit]] * Indicate (Re)Association frame encryption in SME-in-driver mode [[https://lore.kernel.org/linux-wireless/20260504123624.529218-1-kavita.kavita@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/829b815e910b8cc7bf36c85005abc3e66b59303b|commit]], [[https://git.kernel.org/linus/e2ae5b19ac56afb00ca40b4a1768d7fe182f18c8|commit]] * mlme: advertise driver's extended MLD capa/ops [[https://git.kernel.org/linus/b22aa70212364ffe54316b7ddcf0e98be1325873|commit]] * UHR non-primary channel access [[https://git.kernel.org/linus/c5254002ca4bd9f80c35fc521c6f577bb044844e|commit]], [[https://git.kernel.org/linus/f6ced3745ad1a0e5691b9323651e39e05371fe2f|commit]], [[https://git.kernel.org/linus/881b246709db5129fa81daf7301dcf04306e4be9|commit]], [[https://git.kernel.org/linus/1cf1d06e956dfbb05a7f69f64ab3c8938117eabe|commit]], [[https://git.kernel.org/linus/3ca884399be1bcb04baec264a75133cf7a422b52|commit]], [[https://git.kernel.org/linus/ee52966a00a902cdc62ceeabf728b9a661e4805c|commit]], [[https://git.kernel.org/linus/8d66c383ed6c1ec9cdffb77dbd4fc350b6c41efb|commit]], [[https://git.kernel.org/linus/30c7b3ed15941aa00dd139647b255e6b2228fd5e|commit]], [[https://git.kernel.org/linus/a731e2fc26b68c0af61de7138e4b468091668a55|commit]], [[https://git.kernel.org/linus/5af8f06349d85824a32aa15949cb66b174e0f713|commit]], [[https://git.kernel.org/linus/12efcd79d6db52fd75fafada75f6505be529f65b|commit]], [[https://git.kernel.org/linus/07f3e2174606202f7954e3a0454dd59064148610|commit]], [[https://git.kernel.org/linus/0a621df46d5544f1b4f1c0572f07e1286b68c66a|commit]], [[https://git.kernel.org/linus/d2ffdadd4aca41d120e25f6a675dd6a4d77ce360|commit]] * Add 802.3 multicast encapsulation offload support [[https://lore.kernel.org/linux-wireless/20260604162403.1563729-1-tamizh.raja@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/303f11fda2fa4c6f7aa86b8fa54aaee5e1ef181b|commit]], [[https://git.kernel.org/linus/2307b36ce34fd2166509ea2aeef0de5768ed03b7|commit]], [[https://git.kernel.org/linus/4cc0cc0b297c17c2b106d6892bd13d9c32fe66ce|commit]] * mac80211_hwsim: split NAN handling into separate file [[https://lore.kernel.org/linux-wireless/20260412150826.79f4c8f8214e.I9484d746286eb2ab71ac987dfb907497d213c2bb@changeid/T/|(cover)]], [[https://git.kernel.org/linus/1926f4e06dcebe2d220d1a80a7cc88fd8a82a0c8|commit]], [[https://git.kernel.org/linus/e75129031f1ca727b029bf33afdc544f0e81d5ac|commit]], [[https://git.kernel.org/linus/933f5bec98a123be286825e27e1186f829883519|commit]], [[https://git.kernel.org/linus/df0cb6e2446f55472260af6463e9ec4cd25a2cfa|commit]], [[https://git.kernel.org/linus/efaadc1ae36f8312e1893aad7c1fa15f58f54521|commit]] * More NAN patches [[https://git.kernel.org/linus/43ef5856bdab300acc90ea2c3c437f5535a5f66f|commit]], [[https://git.kernel.org/linus/5f244f17eceba1522948702ab5e4ca160982c672|commit]], [[https://git.kernel.org/linus/fe553d240df608feb629890c71b84bfb7e3ba30a|commit]], [[https://git.kernel.org/linus/4bcf276e4a508db76671451def7e723ccc9c689c|commit]], [[https://git.kernel.org/linus/ad3d4d3d897f4013b4c050aa2b2aac27edd37420|commit]], [[https://git.kernel.org/linus/03c41203ee5a833a9d7a7630be190830cede29d8|commit]], [[https://git.kernel.org/linus/42c9de58d990337a8848671591252f71d0db18c8|commit]], [[https://git.kernel.org/linus/2d9dd73bb57e67eca827dd596c14e5eb628baafc|commit]], [[https://git.kernel.org/linus/183683f8dcb1dca605450ae0ae4b14a56edbad04|commit]], [[https://git.kernel.org/linus/340f2ab83a5c9fc76a045cac737a1533d19188ef|commit]], [[https://git.kernel.org/linus/1926f4e06dcebe2d220d1a80a7cc88fd8a82a0c8|commit]], [[https://git.kernel.org/linus/e75129031f1ca727b029bf33afdc544f0e81d5ac|commit]], [[https://git.kernel.org/linus/933f5bec98a123be286825e27e1186f829883519|commit]], [[https://git.kernel.org/linus/df0cb6e2446f55472260af6463e9ec4cd25a2cfa|commit]], [[https://git.kernel.org/linus/efaadc1ae36f8312e1893aad7c1fa15f58f54521|commit]] * Basic S1G rx rate reporting support [[https://git.kernel.org/linus/b3d519330554b0b9e662cefebba854e0a7c1a592|commit]] * cfg80211: remove 5/10 MHz channel support [[https://git.kernel.org/linus/1a15bf9708ba3bf80410065e113aa17cd6a18dcf|commit]] * SUNRPC: Switch MIC token verification to crypto/krb5 [[https://lore.kernel.org/linux-nfs/20260427-crypto-krb5-api-v1-10-1fc1253b64c0@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/0308f694276ea8943bde3cc5848669ea828f0c22|commit]], [[https://git.kernel.org/linus/5fc7721223cff64e2a6740f97ef8db7cd05c9552|commit]], [[https://git.kernel.org/linus/5f02e760614238dd826268429f340cfb80074f32|commit]], [[https://git.kernel.org/linus/218c56ddf687e8d243826343831c6e734857fb51|commit]], [[https://git.kernel.org/linus/979accbc6bcb551b095b678a6f0c41899080ccd1|commit]], [[https://git.kernel.org/linus/c331c8eaa20211d99181f1a1cf8d5a83b119dcb6|commit]], [[https://git.kernel.org/linus/bb9f4c49500306793eb83e4435107332db6925f0|commit]], [[https://git.kernel.org/linus/2804a16b9e51f803a32ac2e9a014f5851a7cc3f4|commit]] * appletalk: move the protocol out of tree [[https://git.kernel.org/linus/8a398a0c189ead8bbce98f5be70b8ea0e30b21f8|commit]], [[https://git.kernel.org/linus/023f9b0f2f4ffbf78ce9dfb8fbacb767c8e97162|commit]] * atm: Remove more dead code [[https://lore.kernel.org/netdev/20260615194416.752559-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/c1468145ce756e7bd8d814728af19f4261939876|commit]], [[https://git.kernel.org/linus/b20aa9eded107bc78b7e54e64ccf79fbaeda9ecd|commit]], [[https://git.kernel.org/linus/277fb497d1011d3a195610047e7ad9ce94a03410|commit]], [[https://git.kernel.org/linus/a5a12d76d2cb23b3f2150ed3a5d674b0eba6a8b7|commit]], [[https://git.kernel.org/linus/aa582dc25ace8951ad595c71fb93d21ed2ec4624|commit]], [[https://git.kernel.org/linus/6719d57ee047cba211e8684eef46d5486a3295bb|commit]], [[https://git.kernel.org/linus/ae6e653514d156f0cc2327fe9e7db731ecb35a76|commit]], [[https://git.kernel.org/linus/e44e224e2f44c9ad3ab422b513d5ee2f0f45e416|commit]], [[https://git.kernel.org/linus/8f9616500c59bb85a06a9d1c52e59d1bf4a194c2|commit]] * hsr: Broadcast netlink notifications in the device's net namespace [[https://git.kernel.org/linus/a762fabd7ef9a6cc07258684138f9c3f078d0326|commit]] * netfilter * nf_conntrack_pptp: move GRE specific cleanup to GRE tracker [[https://lore.kernel.org/netfilter-devel/20260607094954.48892-11-pablo@netfilter.org/T/|(cover)]], [[https://git.kernel.org/linus/ac46f3f35b6e68fb062ae7cf780d516c0cf4c00a|commit]], [[https://git.kernel.org/linus/35e21a4dccc5c255ba59ccfbfeb4629ed21da972|commit]], [[https://git.kernel.org/linus/b0f02608fbcd607b5131cceb91fc0a035264e61c|commit]], [[https://git.kernel.org/linus/e052f920773b73be49eb4d8702a9f85de7464363|commit]], [[https://git.kernel.org/linus/d3bf9eae486490832bd08fd62ab0ac601f346bd4|commit]] * nft_set_pipapo_avx2: restore performance optimization [[https://lore.kernel.org/netdev/20260525182924.28456-11-fw@strlen.de/T/|(cover)]], [[https://git.kernel.org/linus/2b413fc689ba890348db13a4daa5adf42846ebca|commit]] * Add option for gcov profiling [[https://git.kernel.org/linus/403cec8ab6d002ee26b8345cfd83e58ca3b0606d|commit]] * sched: netem: enhancements [[https://lore.kernel.org/netdev/20260509171123.307549-1-stephen@networkplumber.org/T/|(cover)]], [[https://git.kernel.org/linus/9371b229a1ced41ab6372f8a2fc33fe6af21efe9|commit]], [[https://git.kernel.org/linus/4398429a5ff4bc8b38c6c57e78debc565a089672|commit]], [[https://git.kernel.org/linus/675f6f1968a6710f357ac2ab65b0cf6180b8f400|commit]], [[https://git.kernel.org/linus/e8be7cdedc41ff28876d66b566770929d03acbb8|commit]], [[https://git.kernel.org/linus/a2f6ed7b4873288d9e90e69199012857bed4bfa4|commit]] * devmem: support devmem with netkit devices [[https://lore.kernel.org/netdev/20260514-tcp-dm-netkit-v5-0-408c59b91e66@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/7d3ab852dcd853692197a830d20052127754a087|commit]], [[https://git.kernel.org/linus/6ce2bb048055ee599c0f35f1a90ff5db29ba5d65|commit]], [[https://git.kernel.org/linus/1abe839b34aea45051d08ccf99229e74e18abdf3|commit]], [[https://git.kernel.org/linus/ecbdf3da7813db00014ff8b091bb66303bba29a0|commit]], [[https://git.kernel.org/linus/28357ac667d4c08ca6bb98707c9ccd0d410cb0ef|commit]], [[https://git.kernel.org/linus/6cac32fc3f1f8e5c6698b8eb88ae541d3c332584|commit]], [[https://git.kernel.org/linus/886a790b59f9a5bbeb0e0a5636f002ea0ba6726b|commit]], [[https://git.kernel.org/linus/28c1cc999fbb882745130e450e5109bc4b8869a4|commit]] * flowtable fixes for ipip tunnels [[https://git.kernel.org/linus/c328b90c17fc5fa7786503695152880b2afb9326|commit]], [[https://git.kernel.org/linus/6c5dcab95f4cd42a1648739ec9300fbb4b1a021f|commit]], [[https://git.kernel.org/linus/fa7395c02d95e51bad2952325d2d6503bfbad437|commit]] * psp: Add support for dev-assoc/disassoc [[https://git.kernel.org/linus/1c88a4664779fb4e9d7377ae96463f08abdb48c6|commit]], [[https://git.kernel.org/linus/06c2dce2d0f69727144443664182052f56d1da35|commit]], [[https://git.kernel.org/linus/0ddb69e2406eba0c2f6bee0d6084e7dd17333c2b|commit]], [[https://git.kernel.org/linus/89ed478a6c90ac53476ab60609ef5bc3b8b8e3f8|commit]], [[https://git.kernel.org/linus/b9d51f2e133cd70c4f685c10cb9d029f83027595|commit]], [[https://git.kernel.org/linus/593e22f6524bff02f4999c60a12eb4b9edb02319|commit]], [[https://git.kernel.org/linus/1c1c2e5b1fe95d310d1ce7507d0183f9561bd22f|commit]], [[https://git.kernel.org/linus/43cf629700fa85f680f22a9c9d675acbc5c2b718|commit]], [[https://git.kernel.org/linus/5280303605bc950a87b23e0e75c286092180a8b5|commit]], [[https://git.kernel.org/linus/50d3bdfb84c88408934f75430d0e3d2baa4f5d7a|commit]] * xfrm: XFRM_MSG_MIGRATE_STATE new netlink message [[https://lore.kernel.org/netdev/migrate-state-v9-0-ad9947e4ae74@secunet.com/T/|(cover)]], [[https://git.kernel.org/linus/440bf355d32e14115b16d2869fc4e8e98e4a012a|commit]], [[https://git.kernel.org/linus/231a1744dc433e8f39871a8fd0f5eab78202e136|commit]], [[https://git.kernel.org/linus/b8addb8884f2dc1b13cf3e4fa0265ecd0bc58b69|commit]], [[https://git.kernel.org/linus/364e165e0b63e8142e76de83e96ae8e36c3b955a|commit]], [[https://git.kernel.org/linus/e2e92714d08117d18f0e560673206717d10edbd4|commit]], [[https://git.kernel.org/linus/8de53883a4bf807a628f0d150a7ca7ddf56a5cc3|commit]], [[https://git.kernel.org/linus/b2cb192b95e591b7c14af94aa0763b99149a3742|commit]], [[https://git.kernel.org/linus/bac7a60e267831471ecdf54881fc62a2c80c446c|commit]], [[https://git.kernel.org/linus/15e5d32de6bf008eff2b6f60db0c7c3e2cef5a3b|commit]], [[https://git.kernel.org/linus/1d97daee303847bd9f0ff97dc257380fc156206d|commit]], [[https://git.kernel.org/linus/92550d30c69b22e34653a03c142433980688465b|commit]], [[https://git.kernel.org/linus/38d400e5d0fd8d8ef394b8ebea3088e6482528f8|commit]], [[https://git.kernel.org/linus/8eed5ba25734bfeec766f9518515be7cf6d1de2a|commit]], [[https://git.kernel.org/linus/a9d155ea9b44d9b979796506bec518222f10b9e6|commit]], [[https://git.kernel.org/linus/c4460171d78a75282a760c0b5f39f59bb044e61d|commit]], [[https://git.kernel.org/linus/c13c0cc6f52e491186f6521dc80031c35737162d|commit]] * xprtrdma: Decouple req recycling from RPC completion [[https://lore.kernel.org/linux-rdma/20260526141405.39877-1-cel@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/2797ae7c929610fb2d2303a996a08173fa096730|commit]], [[https://git.kernel.org/linus/e786233d2e0bbff9a82e43f02ae3a46ab4b08ec3|commit]], [[https://git.kernel.org/linus/64bf6892057b746c55bcc045b9492741b72d8d27|commit]], [[https://git.kernel.org/linus/2ae8e7afbc63bf84243367f89eb43571f0345a74|commit]], [[https://git.kernel.org/linus/797943e8bd1ffcc63bfe79d24faad9a77054ec40|commit]] * cgroup/rdma: add rdma.peak and rdma.events[.local] [[https://lore.kernel.org/lkml/20260514065034.387197-1-cuitao@kylinos.cn/T/|(cover)]], [[https://git.kernel.org/linus/c68095c4a4c919cbd7de016fdfa25d19fa918a74|commit]], [[https://git.kernel.org/linus/009bcbd0b201d4dc125eb960a61cb6d4d9fdfc72|commit]], [[https://git.kernel.org/linus/aefe4847f0891e2e71bedf5478d1cf350f86fc61|commit]], [[https://git.kernel.org/linus/4376352f2c651ed5308a46caf21d2ccb53c240eb|commit]] * ethtool: let ops locked drivers run without rtnl_lock [[https://lore.kernel.org/netdev/20260605002912.3456868-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/8845484367dade6811bbc3c0c1d66a2a0721c3c0|commit]], [[https://git.kernel.org/linus/ded86da4bbb78cad74cecc368fee3ae3a296e2ca|commit]], [[https://git.kernel.org/linus/97f51bf91b3afa8819fa10e9282e3f2328bb78e4|commit]], [[https://git.kernel.org/linus/45079e00133ee78fd216ccc4285534044ea69173|commit]], [[https://git.kernel.org/linus/f9a3e05114b85d63452e7f9c172b53d6a1736fe0|commit]], [[https://git.kernel.org/linus/f16013fde46d38e1a79216976445e1cd79922a72|commit]], [[https://git.kernel.org/linus/0c334c21f5a599b593a3495031cfcefb9fc47b96|commit]], [[https://git.kernel.org/linus/2526717624ab477fb7df2bf1af6e1f257c72ee0f|commit]], [[https://git.kernel.org/linus/732fa5ced1cc82bbdae3d05e5b364c7b6ecf04c3|commit]], [[https://git.kernel.org/linus/f58a40d07be39823abf2fa1f73b6a839580404f0|commit]], [[https://git.kernel.org/linus/f994752b11273ded7ec6b49ae5c1d319eef21743|commit]], [[https://git.kernel.org/linus/b5125db8d0205048a3b9dafec7f8e2b0a702101f|commit]] * Bluetooth * Use AES-CMAC library API [[https://lore.kernel.org/linux-bluetooth/20260421230917.7057-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/73e44a7d605ba7385476633996174f690c2e9a90|commit]], [[https://git.kernel.org/linus/48788c8de7c8cb36afcf8daa2be4b5160398af40|commit]] * hci_sync: Add support for HCI_LE_Set_Host_Feature [v2] [[https://git.kernel.org/linus/eb87bf6fcae6a2dc25d7f2c977d2cbca2113fb1e|commit]] * ARCnet: remove outdated drivers and information and unused code [[https://lore.kernel.org/netdev/20260521001631.45434-1-enelsonmoore@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ced9c8cf5768802d511e186e5fa9400b91e55f83|commit]], [[https://git.kernel.org/linus/5bc0c090bcad2424f13692ba1d1b4a7e80c08c7a|commit]], [[https://git.kernel.org/linus/910394c74c5aa75a2e627812eca1fd37242aec5c|commit]], [[https://git.kernel.org/linus/c1125f6d4843e49bbbf7127b4b48a57fef50cc06|commit]], [[https://git.kernel.org/linus/e859db8ac490832d25122ca90db1d14ef8c78283|commit]], [[https://git.kernel.org/linus/19d554d3296cafdcd95000b166370cdf60c6ea73|commit]], [[https://git.kernel.org/linus/eb8ffe14a554808eb68cf050ba5343dbbe15bb54|commit]] = Architectures = * ARM * Device Tree Sources * New SoC Qualcomm Dragonwing IPQ9650, is a new wireless networking SoC using four Cortex-A55 and one Cortex-A78 core, which is a significant upgrade from older generations [[https://lore.kernel.org/linux-arm-msm/20260512-ipq9650_boot_to_shell-v4-0-1e87c8326e59@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f92b778251ada37dc433a7f9547c5d2e5ebcdf7d|commit]], [[https://git.kernel.org/linus/76fc060df67c7d3c0ca9613ebcc1e5c257c325d9|commit]], [[https://git.kernel.org/linus/5bfa2c53c675610110c797e1f17c87ce25424407|commit]], [[https://git.kernel.org/linus/8cef25a0044d3e7caef56a43bf316336fe39b5d8|commit]] * New SoC ZTE zx297520v3, an older low-end wireless SoC using a single Cortex-A53 core, which so far can only run 32-bit kernels. This brings back the ZX family of chips that was removed in 2021 after support for the original zx296702 and zx296718 chips was never completed [[https://lore.kernel.org/linux-doc/20260506-send-v8-0-f1bdf3243b34@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/765958cd82321740b908c89783bccd4b094a1d05|commit]], [[https://git.kernel.org/linus/220ae5d36dba278003d265aabd080ffa78553f5a|commit]], [[https://git.kernel.org/linus/d9ee199c0fef5e4074e241ed328e5c18a790454b|commit]], [[https://git.kernel.org/linus/7d1f68e87b7302d0bd22c001e6c0511d0e827875|commit]] * New SoC Renesas R-Car !M3Le (R8A779MD), a variant of the R-Car M3-N (!R8A77965) automotive SoC [[https://git.kernel.org/linus/71e900344ada84fc55fb103950a0d4819f6c6e1c|commit]] * New SoC Apple t8122 (M3), the 2023 generation of their laptop !SoCs, which has now been reverse-engineered to the point of having initial kernel support for five laptop models [[https://lore.kernel.org/devicetree/20260507-apple-m3-initial-devicetrees-v3-0-ca07c81b5dc7@jannau.net/T/|(cover)]], [[https://git.kernel.org/linus/161cd94f5b28301d1997f5341328a7cbcf9c95ee|commit]], [[https://git.kernel.org/linus/cb0c1fd6e64d53d29f449fd149defc94aee37af4|commit]], [[https://git.kernel.org/linus/dfb9cf11f8282b6497164d5ee4542f469396c5ff|commit]], [[https://git.kernel.org/linus/01f38c14423eefcbb764541b03006316ecd6a42f|commit]], [[https://git.kernel.org/linus/c65ab4905e5874a1a489c72da4d6e78a6c9b5943|commit]] * New SoC ASPEED AST27xx, their first baseboard managment controller using a 64-bit core, the Cortex-A35, following earlier generations using ARMv5/v6/v7 CPUs [[https://lore.kernel.org/devicetree/20260609-upstream_ast2700-v9-0-f631752f0cb1@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/34efd73379ff9f36ed598ade7406a1aaddd03d7b|commit]], [[https://git.kernel.org/linus/df6f379eb4ac78e51d582aa7e8683bf8d5468dfe|commit]], [[https://git.kernel.org/linus/e77bb5dc57593a4698aaacd57a776728cf552e73|commit]], [[https://git.kernel.org/linus/512cef2af615cf0a4c9b0529a2aa36390240ecb7|commit]] * Two NAS boxes using the old Cortina Systems Gemini SoC based on an ARMv4 FA526 CPU core [[https://lore.kernel.org/devicetree/20260303-gemini-dts-fixes-v2-0-5b92ced841ce@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/c26a3fb47ff7c312808dc6267355aeb165434c54|commit]], [[https://git.kernel.org/linus/04ff9bcbc5d05921d7a4cc5477a7d40948841ec7|commit]], [[https://git.kernel.org/linus/14535431a5a25311a0d434745a8edc56a84c3fd7|commit]], [[https://git.kernel.org/linus/4b8c63c6a2811c23995c5d8cc8bb63d26caab299|commit]], [[https://git.kernel.org/linus/ccd7118d30488d69561e4c7a7e2062a367825719|commit]], [[https://git.kernel.org/linus/0b6084ebde381d808c80bf42364298e2ae326175|commit]], [[https://git.kernel.org/linus/dce8e0cb88fb12d068459b75f299ff2242172257|commit]] * 18 industrial embedded boards using NXP i.MX6/8/9 and LX2160A ([[https://lore.kernel.org/devicetree/20260524-lx2160-pci-v7-0-09370c23b952@solid-run.com/T/|(cover)]], [[https://git.kernel.org/linus/13a37b30e464503515625ba891018aec0264c7d2|commit]], [[https://git.kernel.org/linus/c1cd1923fe565957aa06ae60178fac5392bef91b|commit]], [[https://git.kernel.org/linus/78dc1c1c1941223fc16ccd80e1402e3273321e30|commit]], [[https://git.kernel.org/linus/86036ee1aa7b5590fd586d0f34611289bea2f2ea|commit]], [[https://git.kernel.org/linus/abe655d446a54d3d8ba6a278510d0b358d3f9e24|commit]], [[https://git.kernel.org/linus/4ff4d6f348d0bf650ec8c319178825b81ec3f99a|commit]], [[https://git.kernel.org/linus/76eeabd859b9fbae843dccd44596c03d82c01e5d|commit]], [[https://git.kernel.org/linus/df70a90b032f641643312aaf32442a2018b4bc3d|commit]]) !SoCs from Variscite ([[https://lore.kernel.org/linux-kernel/cover.1774601806.git.stefano.r@variscite.com/T/|(cover)]], [[https://git.kernel.org/linus/1eb192d84674c387d50f926ca5da017d7a158de5|commit]], [[https://git.kernel.org/linus/5d8ca6456690ee511d56f0d7373c9a93c01068c5|commit]], [[https://git.kernel.org/linus/3bfec2d4747452e130f25e8422c59a1415aca815|commit]]), , Toradex ([[https://lore.kernel.org/devicetree/20260521-add-aquila-imx95-v4-0-5a7f86c824f5@toradex.com/T/|(cover)]], [[https://git.kernel.org/linus/7858ac80e277ea28cb21313d396bea15e25ef53d|commit]], [[https://git.kernel.org/linus/d5c082ba23db712b1f3f28bee7de34d6b9a05d91|commit]], [[https://git.kernel.org/linus/3f519121e120a5264fb5638afd6a2aab44db11a3|commit]]) and !SolidRun ([[https://lore.kernel.org/devicetree/20260524-imx8dxl-sr-som-v6-0-37932c6eb7e4@solid-run.com/T/|(cover)]], [[https://git.kernel.org/linus/40c28b9c9fa6ac39f89265b0d9cae10bd85610fb|commit]], [[https://git.kernel.org/linus/ef873f01a1b18820734b00bffa00d878de0e0bb0|commit]]), plus a number of overlays for combinations with additional boards [[https://lore.kernel.org/linux-kernel/cover.1775669847.git.stefano.r@variscite.com/T/|(cover)]], [[https://git.kernel.org/linus/05bee22e1af95f9de50b6873690952808c0ae54b|commit]], [[https://git.kernel.org/linus/92e5a1654ebcaa5d03f26e924932ad954207f9d1|commit]], [[https://git.kernel.org/linus/b3292129dcef91ce4a4df878a9286a39fed0c811|commit]] * One new carrier board and SoM using TI K3 AM62x, in addition to new overlays for older !SoMs [[https://lore.kernel.org/devicetree/cover.1772443991.git.nora.schiffer@ew.tq-group.com/T/|(cover)]], [[https://git.kernel.org/linus/d8961140aecdd68a57ac1ca11327964a709d5ae5|commit]], [[https://git.kernel.org/linus/5b36d8c72c91d0f213c712472caf03192e373c0a|commit]] * Three phones from Google ([[https://lore.kernel.org/lkml/20260513172549.1345-1-mailingradian@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/fe9f4a46895dc3062cedcdd38772dd578de9e62f|commit]], [[https://git.kernel.org/linus/f3919fa784a3e6dd557dfe2c41072f55742e013f|commit]]), Nothing ([[https://lore.kernel.org/linux-arm-msm/20260323-asteroids-v2-0-1a35fa9e178a@pm.me/T/|(cover)]], [[https://git.kernel.org/linus/1f820571ca7c64d3fd5bd9bf653b571cb3350703|commit]], [[https://git.kernel.org/linus/93be926a7f6dc89657d3e8488f353893841039ce|commit]], [[https://git.kernel.org/linus/edbf03c9fb5ff72f8e7974b35f7ee2d9ae7cb371|commit]]) and Motorola ([[https://git.kernel.org/linus/839d20f9f3da93f65c000187ee68387598bdecb5|commit]], [[https://git.kernel.org/linus/dd1316efdbc5a998b901b1c5f27da73d45060795|commit]]), all using Qualcomm Snapdragon !SoCs * AST26xx BMC support for two server boards, [[https://lore.kernel.org/devicetree/20260323-sanmiguel_init_dts-v4-0-caaa48a7f7be@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a8af0f311dceec20eb359aded2d30743549af9a2|commit]], [[https://git.kernel.org/linus/68b44988df9a5c25c1dbd92e898b25c4b19d924d|commit]], [[https://lore.kernel.org/devicetree/cover.1779157117.git.neilcheng0417@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/10499d3e358364604eb9d7dd6adbc76b3b2078a6|commit]], [[https://git.kernel.org/linus/12b7b2bff1d18b72fb965cd5e0a0f8c7787a21b4|commit]] * Add initial support for rk3528 [[https://lore.kernel.org/lkml/20250407224743.2423921-1-jonas@kwiboo.se/T/|(cover)]], [[https://git.kernel.org/linus/e0c0a97bc308f71b0934e3637ac545ce65195df0|commit]], [[https://git.kernel.org/linus/858cdcdd11cf9913756297d3869e4de0f01329ea|commit]], [[https://git.kernel.org/linus/b9454434d0349223418f74fbfa7b902104da9bc5|commit]], [[https://git.kernel.org/linus/a31fad19ae39ea27b5068e3b02bcbf30a905339b|commit]], [[https://git.kernel.org/linus/61a05d8ca3030a544175671f5fab7a8f29c24085|commit]], [[https://git.kernel.org/linus/fbcbc1fb93e14729bd87ab386b7f62694dcc8b51|commit]], [[https://git.kernel.org/linus/6e58302c84ce90aadbecd41efe1f69098a6f91e5|commit]], [[https://git.kernel.org/linus/a98cc47f79ab5b8059b748bf0bd59335edfff7d9|commit]], [[https://git.kernel.org/linus/0d2312f0d3e4ce74af0977c1519a07dfc71a82ac|commit]], [[https://git.kernel.org/linus/6a709e003492e9878d5f1357be0b2e1162e1e6a6|commit]], [[https://git.kernel.org/linus/ad8afc8813567994164f2720189c819da8c22b99|commit]], [[https://git.kernel.org/linus/3a2819ee9c71d1c6388e456cc4eb042914d15d7e|commit]], [[https://git.kernel.org/linus/3a01b5f14a8ae2d45aea5aeed30001ac1655de86|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/83e7b35c7879497b51fd3fcd3a17b0b07f89e81b|commit]], [[https://git.kernel.org/linus/83e7b35c7879497b51fd3fcd3a17b0b07f89e81b|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/a5e4cde647851ed67f19a5cb54a99282f32aae99|commit]], [[https://git.kernel.org/linus/b9c31f1c0e15b16390d0f350011ab1b80e0cfa29|commit]] * Add interconnect support for qualcomm nord soc [[https://lore.kernel.org/linux-arm-msm/20260510020607.1129773-1-shengchao.guo@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8d315860b5cce17559151d04b1d85022f0bb15a2|commit]], [[https://git.kernel.org/linus/010f4d24cc61fd03c61bbdcce15b7a2033956bc7|commit]] * qcom: Add support for upcoming Hawi SoC [[https://lore.kernel.org/linux-arm-msm/20260506-icc-hawi-v4-0-35447fdc482b@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/07548b04dc36678898f1d1274c2e1731ce264701|commit]], [[https://git.kernel.org/linus/ffaa88a08486f6703434fd5ad81da6775f5c984f|commit]] * qcom: Add support for the microsoft surface pro 12in 1st edition (snapdragon), [[https://lore.kernel.org/linux-arm-msm/cover.1778822464.git.harrison.vanderbyl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/69442723f38a338962bee877243e7c1ff86039b8|commit]], [[https://git.kernel.org/linus/a167ae8eace52dd6c80438b77d92450fe12cd4be|commit]], [[https://git.kernel.org/linus/3a1e4e77e3eea841f58b48086d6ee5bd7c1da87e|commit]], [[https://git.kernel.org/linus/02f48ffdf96c83ca3e6600fe5dec872b34b68775|commit]], [[https://git.kernel.org/linus/69442723f38a338962bee877243e7c1ff86039b8|commit]] * qcom: pd-mapper: Add support for Hawi SoC [[https://git.kernel.org/linus/b758be0232407c760e46466625a7ed6e32c78978|commit]] * Add initial device trees for nord SA8797P [[https://lore.kernel.org/devicetree/20260519063505.883379-1-shengchao.guo@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/0670a10b7c22bef36d9e1ca5a75b832db4508a1b|commit]], [[https://git.kernel.org/linus/b0bc160c311a0e7163c00a7e66116d28ce9771df|commit]], [[https://git.kernel.org/linus/a92d3fdb44c2b9d2b8dc463e287030e03ea00699|commit]] * Enable new features for flipkart-rimob [[https://lore.kernel.org/all/20260701-rimob-new-features-v6-0-be7d5d1e007f@protonmail.com/|(cover)]], [[https://git.kernel.org/linus/4b494c72555f6249331b16add879c40e920d3f1e|commit]], [[https://git.kernel.org/linus/7a0dd1b5c55f73b962dfa807e726f7214def6065|commit]] * Basic devicetree support for amlogic a9 [[https://lore.kernel.org/devicetree/20260423-a9-baisc-dts-v4-0-c26b480a068c@amlogic.com/T/|(cover)]], [[https://git.kernel.org/linus/52f203f9a8c7e57322e79577d1a8d50a5e3a5ef2|commit]], [[https://git.kernel.org/linus/ab5eadfea17e9aae0760eec8f730a71a4be9ba5e|commit]] * Add i.mx91 9x9 qsb basic support [[https://lore.kernel.org/devicetree/20260326-b4-imx91-qsb-dts-v2-0-b991b81639e6@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/78efc82d617fe7164e142c399cc20f7270ceeb82|commit]], [[https://git.kernel.org/linus/644f6a8f1fb368dbf017688c47b2f913c8d2d35b|commit]], [[https://git.kernel.org/linus/dd4d83f8a6dfce2b21a4b81c837ad3fe941c9996|commit]], [[https://git.kernel.org/linus/88b82b5d2c066271a0e8ecb4ab7e38d56b19f059|commit]], [[https://git.kernel.org/linus/c64e79096d225454a56830ec1fb5e5a464939073|commit]] * Add nxp frdm-imx95-pro board support [[https://lore.kernel.org/devicetree/20260602-imx95_frdm_pro-v5-0-44ca5dc30a14@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/91793f1429d26bf84dbbd7480d5c791703c0f9be|commit]], [[https://git.kernel.org/linus/815fe2e0e65b42569f8c68dfa256c89db72e0b18|commit]] * Support tqma8qm [[https://lore.kernel.org/devicetree/20260326130225.1406806-1-alexander.stein@ew.tq-group.com/T/|(cover)]], [[https://git.kernel.org/linus/71363a485ad0ceacf9ad40b90bbfc67ab83afad2|commit]], [[https://git.kernel.org/linus/5d20f1ccb3393a2ccb3f3505891066ddff39167a|commit]] * Add verdin imx8m[mp] and imx95 zinnia board [[https://lore.kernel.org/devicetree/20260409095855.61252-1-francesco@dolcini.it/T/|(cover)]], [[https://git.kernel.org/linus/ca6371cdd9cf3c0d40f05a3ea6494646eaefb15c|commit]], [[https://git.kernel.org/linus/64819436679b7991d17fe498539b41eb2aacd05b|commit]], [[https://git.kernel.org/linus/de2e5e6c695a6fe5cfa780cd63ade651a6508d00|commit]], [[https://git.kernel.org/linus/097418652e6ab85d4c737c01f3e024fb2399b289|commit]], [[https://git.kernel.org/linus/e3177171b6e90850623436e9eb3bcbf9915dcc1a|commit]], [[https://git.kernel.org/linus/13d4890ca951d8aa6b43e1f03d5f44fe5451d6ec|commit]], [[https://git.kernel.org/linus/828a9ac30954667fe3053a0ead51a97023c37829|commit]] * imx8mp: Add DT overlays for DH i.MX8M Plus DHCOM SoM and boards [[https://git.kernel.org/linus/bb020f383caa2c824594a57e54aaa2835bbfb22f|commit]] * socfpga: agilex7m: Add SoCFPGA Agilex7-M devkit [[https://git.kernel.org/linus/6a1405b315166dd282a78025e0ea2fc9a9a7b619|commit]], [[https://git.kernel.org/linus/66764673e09b3b9c0e9dc1f785ac9cb7b0e0183a|commit]] * Add interconnect support for qualcomm shikra soc [[https://lore.kernel.org/linux-arm-msm/20260505-shikra_icc-v3-0-8e03ff27c007@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/0f90f883b340402e44ee2a9fa9f75ecb7c075a4f|commit]], [[https://git.kernel.org/linus/24761ddafd5c045fb3ba825cffa39e132af4ff55|commit]] * amlogic: T7 thermal support [[https://lore.kernel.org/linux-pm/20260424-add-thermal-t7-vim4-v5-0-9040ca36afe2@aliel.fr/T/|(cover)]], [[https://git.kernel.org/linus/b1c8ccdbd4e92db05548bd3ad2a866bacec07490|commit]], [[https://git.kernel.org/linus/d0bf38194bc908468e06c0ae7fba7281046c12d8|commit]], [[https://git.kernel.org/linus/1c5cb7391ef5f869ef333c04d6422c0e0859a870|commit]], [[https://git.kernel.org/linus/18d65de8157c93666b2d42f1d46330ee4cb030b7|commit]] * samsung: Add support for Google GS101 TMU [[https://lore.kernel.org/linux-samsung-soc/20260423-acpm-tmu-v4-0-8b59f8548634@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/d5cfe2a96d723b6962c5e38bc81cc9994347d326|commit]], [[https://git.kernel.org/linus/447f406568c153819d6bfce994e422db4e95bb6f|commit]], [[https://git.kernel.org/linus/9d7a681915245e0e191abfd4b31d010c7037573c|commit]], [[https://git.kernel.org/linus/50b400214abaec9122558e3f9c6fdd6295914c3c|commit]], [[https://git.kernel.org/linus/4ba23dfc49b4a3cefb4fdaa406172dfb8350098d|commit]], [[https://git.kernel.org/linus/fc13a4b9b9c8cb0b8e5ba54b21712d00f810496c|commit]] * stratix10-svc: Add support to query Arm Trusted Firmware (ATF) version [[https://git.kernel.org/linus/71e6a19fe2669faf7dcb96ba8a4fde927485e60e|commit]] * tegra: bpmp: Add support for multi-socket platforms [[https://git.kernel.org/linus/7ba53a3d1c4dae0124b2c141ae551ab9d9d7f1f9|commit]], [[https://git.kernel.org/linus/040eeafee0146b9d046caef501f387e107a59960|commit]] * Add efinix fpga configuration support [[https://lore.kernel.org/linux-fpga/20260416144237.373852-1-iansdannapel@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/39696ecb8dfd0f18f0f651c001bd669eff91920f|commit]], [[https://git.kernel.org/linus/7fd0138b1a6a455cd498fe0f471fdf103dd0ca64|commit]], [[https://git.kernel.org/linus/d4d5ad6c6039a4921bd9f708bd0539258d60e55e|commit]] * gpib: Add support for ines pci_xl board [[https://git.kernel.org/linus/63625f43d1cd2c966e49da2ad4a28b4771b2df0c|commit]], [[https://git.kernel.org/linus/3be376ac8f020f0c9bed8e7aa2cc2757087b4352|commit]], [[https://git.kernel.org/linus/1b2bfb7ac25bca1b184a525bdac77ab51fabb295|commit]], [[https://git.kernel.org/linus/1d0e413791b89e64b6bea976866863751e46f5ad|commit]], [[https://git.kernel.org/linus/b9e4f6e9b256da27744d99b5ad81ae5b75e4861a|commit]], [[https://git.kernel.org/linus/4f2d31d243b465a5ee7750356e956bf479e5603f|commit]], [[https://git.kernel.org/linus/7c19b47f5a1839817e5ddc5ba589224fcfb6255d|commit]] * mtk: add support for hw access via SMCC [[https://git.kernel.org/linus/7e04a638dee0313db8b8ecd38be5d36ead22cbf5|commit]], [[https://git.kernel.org/linus/20f43e30b3f56cc757b2576364d07a4ddb324ab4|commit]], [[https://git.kernel.org/linus/066d65adf83db97361fe73745715336c503d1aa9|commit]] * Ast2700-a2 interrupt controller hierarchy and route support [[https://lore.kernel.org/linux-kernel/20260407-irqchip-v5-0-c0b0a300a057@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/51561ad8c89cfdd90314ce78c63553632d95bfd2|commit]], [[https://git.kernel.org/linus/07825e41519abb8ac13d6d1c553af47f57775f6b|commit]], [[https://git.kernel.org/linus/46e39ee92d14bf2248d6404119b816047144de4e|commit]], [[https://git.kernel.org/linus/d3587cc4a5e691539c46f327f8d510c1bc482b7e|commit]] * Add support for the ti bq25792 battery charger [[https://lore.kernel.org/devicetree/20260331-bq25792-v6-0-0278fba33eb9@flipper.net/T/|(cover)]], [[https://git.kernel.org/linus/583003fe5e6e9ffc4a4edc6a1527890965d2c95c|commit]], [[https://git.kernel.org/linus/aef4d87f2c1fdb87e55ea2cbe3ea47b01b256f57|commit]], [[https://git.kernel.org/linus/de76a763805d0051242b3862823b34d894ec81f9|commit]], [[https://git.kernel.org/linus/b6c6b9260a92dacef6edef8e93bc2767b86b1dfe|commit]], [[https://git.kernel.org/linus/759aa7d62b55f5910d916b63b88b092395a8c2c9|commit]], [[https://git.kernel.org/linus/528058841022e1bbe468b2246d4fc318881cf1cb|commit]], [[https://git.kernel.org/linus/5d543bf02965d1c04064acfd5e97d1529268d86f|commit]], [[https://git.kernel.org/linus/9adbe53e32cdf3785cf71e27962282c628e97f5c|commit]] * tegra: pmc: Add Tegra238 support [[https://git.kernel.org/linus/1f1471284e9b5c2317b4dd8710270aa33c2fd2fe|commit]], [[https://git.kernel.org/linus/2cee7da9743396aff1fd13124109c78975c92ad8|commit]] * renesas: Add R-Car X5H PRR support [[https://git.kernel.org/linus/39abbc2f7a7036af4a59d00e7748961683845c6f|commit]] * soc: renesas: add MFIS driver [[https://lore.kernel.org/linux-renesas-soc/20260402112709.13002-1-wsa+renesas@sang-engineering.com/T/|(cover)]], [[https://git.kernel.org/linus/0f63ba15dde8748ed3818fa6553c81b5296318f1|commit]] * renesas: rcar-mfis: Add R-Car V4H/V4M support [[https://git.kernel.org/linus/b4d41ffa750fc3403a4076d17090589d000f13ff|commit]] * sunxi: sram: Add H616 SRAM regions [[https://git.kernel.org/linus/b708294322745ce30035d960a1118b4b8d857120|commit]] * Add am62p silicon revision detection via nvmem [[https://lore.kernel.org/devicetree/20260209172330.53623-1-jm@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/b0ea5175358f0872ffdc9c6073585637dc01815a|commit]], [[https://git.kernel.org/linus/97cfbd30525ef0df3de0681a4ca04a80a06d4f16|commit]] * pmic-arb: Add spmi-pmic-arb support for Qualcomm Hawi SoC [[https://lore.kernel.org/linux-arm-msm/20260419-hawi-spmi-v3-0-b04ee909cb87@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/9ac747ebc893a9c58099e60de8cd82cbeefede99|commit]], [[https://git.kernel.org/linus/e08ee0e3b521aeffefcb0438a48e17e81af66eae|commit]] * Add cpucp mailbox support for qualcomm nord soc [[https://lore.kernel.org/linux-arm-msm/20260427005236.230106-1-shengchao.guo@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/388f16c9372d15585b594998f34542ed00fddebf|commit]], [[https://git.kernel.org/linus/0edda639ba13d9da37447586b5480582a2581e2b|commit]] * rkisp1: Add support for CAC [[https://git.kernel.org/linus/27caa94f4d13d16f7f63eec879ea7d4d79699415|commit]] * Tegra114: implement EMC support [[https://lore.kernel.org/linux-kernel/20251125120559.158860-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/cd905830ea6184d6678386ce2d652bec324034d1|commit]], [[https://git.kernel.org/linus/8577a898af63d2ecfa121bd7270aecf5b65dd23d|commit]], [[https://git.kernel.org/linus/b0822a883408f32d494ce9cdc26f4266774cf3f1|commit]], [[https://git.kernel.org/linus/750fed9230ede9e43e234fbbc0d9b23c524a6c6a|commit]], [[https://git.kernel.org/linus/a4f97f9467661602bd6bf614bcee884502794d43|commit]], [[https://git.kernel.org/linus/656275069fad4bd90b39d5fc163cc5757986900d|commit]], [[https://git.kernel.org/linus/dce208b5405f40c36320bb0ee07e9df8f7f2bea4|commit]], [[https://git.kernel.org/linus/48170e7e39f8b165c2ef2e5056994623a78e3ee8|commit]], [[https://git.kernel.org/linus/bdc80b3246f18f8f9f94af78c3c9f3c22c62fad3|commit]], [[https://git.kernel.org/linus/88627b26bad4a4486f75fbcf6fb5ee99ded27704|commit]] * tegra: Add Tegra238 MC support [[https://git.kernel.org/linus/907ef6a1baf0ad61f64d31a3f5040feb82f48929|commit]] * Add support for verisilicon iommu used by media codec blocks [[https://lore.kernel.org/devicetree/20260415072349.44237-1-benjamin.gaignard@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/c131d78840d7487e41c3afdc52bb74fd3f8861ef|commit]], [[https://git.kernel.org/linus/90d50734815a227fa26563ec6ee3388a69d35843|commit]], [[https://git.kernel.org/linus/917ace84b7702ab067572e3e9bff03a4e4dce7b9|commit]], [[https://git.kernel.org/linus/6ddfbec80077eca7b7e5a4298750d3dac82997ff|commit]] * Add driver for ec found on qualcomm reference devices [[https://lore.kernel.org/linux-arm-msm/20260511-add-driver-for-ec-v9-0-e5437c39b7f8@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/030e2f5b9260c29ce85c21c004714742fa9f8d55|commit]], [[https://git.kernel.org/linus/5c44f48e91deefdd42e567a2779d331937c97cd0|commit]] * qcom: rpmpd: Add support for Shikra [[https://lore.kernel.org/linux-arm-msm/20260522-add_rpmpd_shikra-v3-0-632838e2428a@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/d8985743dcf86245cd4583a7855e248955d42c2b|commit]], [[https://git.kernel.org/linus/b3677645c72686a7e707aff233de5aa4888cb8fd|commit]] * Add ufs support for exynosautov920 soc [[https://lore.kernel.org/linux-scsi/20260417121452.827054-1-alim.akhtar@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/14b0c168c7038f1d9e50f27e47d8e285f52cd2a3|commit]], [[https://git.kernel.org/linus/50349bd5d0ab6d6f7e106a6cb1cdbf2bcfb75e08|commit]], [[https://git.kernel.org/linus/ae326b14b2a5a5e426bea0210b984ee8dc5ed0bb|commit]] * xor: Replace vectorized version with intrinsics [[https://lore.kernel.org/linux-raid/20260331074940.55502-7-ardb+git@google.com/T/|(cover)]], [[https://git.kernel.org/linus/4156e65624f8a1816cad423ec005b336e280999d|commit]], [[https://git.kernel.org/linus/cbe44c389ae80362e72696ac08f7c55a83f2a050|commit]], [[https://git.kernel.org/linus/a967b1f51c83b65372a93d652a888e3addd9c5a3|commit]], [[https://git.kernel.org/linus/4d3c5cbfe2b55c12ad1d866ddf0928d13d775816|commit]] * cpufeature: Add WORKAROUND_DISABLE_CNP capability [[https://lore.kernel.org/linux-kernel/20260603062025.1504083-1-zengheng@huaweicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/25996982ebcf8242c9e44589f8dd1ed760df8ac0|commit]], [[https://git.kernel.org/linus/f64328ecf4bf354d1ddf88542dc21a151ce5a2c4|commit]] * Add support for the mpam v0.1 architecture version [[https://lore.kernel.org/linux-kernel/20260508162341.3762549-1-james.morse@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/f1caff3335ea6eab88cdc84ec8f2e3c45ca05486|commit]], [[https://git.kernel.org/linus/6ccbb613b42a1f1ba7bfd547a148f644a902a25c|commit]], [[https://git.kernel.org/linus/5302bc1493be7e00367bd9aab0cdcb40bf073011|commit]], [[https://git.kernel.org/linus/50a42e03cdbd77d93366d301db3d367dce78eda6|commit]] * errata: Mitigate TLBI errata on Microsoft Azure Cobalt 100 CPU [[https://lore.kernel.org/stable/20260616052543.112176-11-mark.rutland@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/00633c4683828acd5256fa8d5163f440d74bbe71|commit]], [[https://git.kernel.org/linus/580a795105dae2ef1622df72a27a8fb0605e2f6b|commit]], [[https://git.kernel.org/linus/36f35b8df6972167102a1c3d4361e0afb6a84534|commit]], [[https://git.kernel.org/linus/60349e64a6c65f9f0aa118af711b3c7e137f07ff|commit]], [[https://git.kernel.org/linus/d28413bfc5a255957241f1df5d7fd0c2cd74fe18|commit]], [[https://git.kernel.org/linus/cfd391e74134db664feb499d43af286380b10ba8|commit]], [[https://git.kernel.org/linus/ec7216f92e4ebd485b1c6dc6aa3f6064b71a5768|commit]], [[https://git.kernel.org/linus/1940e70a8144bf75e6df26bf6f600862ea7f7ea1|commit]] * Unmap linear alias of kernel data/bss [[https://lore.kernel.org/linux-kernel/20260529150150.1670604-17-ardb+git@google.com/T/|(cover)]], [[https://git.kernel.org/linus/36ca7f4be8094d1441fc35e00dd581467badf298|commit]], [[https://git.kernel.org/linus/2e527667a3b9b17833ea82c81bb9da649eb3e50e|commit]], [[https://git.kernel.org/linus/8dd640d9233dd1fdd649920fe1f7fce78a8b40fa|commit]], [[https://git.kernel.org/linus/a64293e993f6ee6b5dcf107d3a7aa8c6ccca029c|commit]], [[https://git.kernel.org/linus/ecda73ae92cab57611037cec8d29dd6f2ca68fe2|commit]], [[https://git.kernel.org/linus/05c5c31e9d8d3930d3852018de154bcdb9eeb817|commit]], [[https://git.kernel.org/linus/dfd73e574d389f3df4e6e39157b22e71a978db34|commit]], [[https://git.kernel.org/linus/28becb2c1d741259b2f12737e0a3828fe59700d9|commit]], [[https://git.kernel.org/linus/382a03e12ebad387fad616da78b99720ea3ee683|commit]], [[https://git.kernel.org/linus/d672a4b72c9542911244b0bc5d5c14c77251159c|commit]], [[https://git.kernel.org/linus/c0693153fb17069f536548396c5a7946692b8948|commit]], [[https://git.kernel.org/linus/99bad3e992e26addd2a7d779cfbe42c048abd808|commit]], [[https://git.kernel.org/linus/0aae825f1ed7ce3eedfadc54684aa86bbbe188b0|commit]], [[https://git.kernel.org/linus/f2ba877402e5f74b27d9dbc2c8d059e7e9daf500|commit]], [[https://git.kernel.org/linus/63e0b6a5b6934d6a919d1c65ea185303200a1874|commit]] * arm64+KVM: FPSIMD/SVE/SME cleanups [[https://lore.kernel.org/stable/20260603110630.1027435-1-mark.rutland@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/ae24f6b06e90681ec36b9c21c3f5c09618350f5a|commit]], [[https://git.kernel.org/linus/247bd153905085c18ff9006cca1ccb96dfd18e7f|commit]], [[https://git.kernel.org/linus/79e66bb7e8b48f953c97022998b25734a5d09651|commit]], [[https://git.kernel.org/linus/dc233762588051bfd28f03e848aa2015c9b1dbd2|commit]], [[https://git.kernel.org/linus/da20bb4bc5e6cc2028d61ba5dceaf9147348f617|commit]], [[https://git.kernel.org/linus/afd7af2b56ec7553e4bdc6387bb923b01d2ad2b6|commit]], [[https://git.kernel.org/linus/3efb6c7f22c60a1440a80ddfa3d30b9406f01ccc|commit]], [[https://git.kernel.org/linus/e0cde2d2bb1bced57079fb45a323b65759a78962|commit]], [[https://git.kernel.org/linus/f27fe9aa2d06e01687c3871fb28492ccbab11e4c|commit]], [[https://git.kernel.org/linus/db9d63eafebac4712ef2602599965caa66c74228|commit]], [[https://git.kernel.org/linus/3f26d7c6544cae590d8aa380aac62fe455dac2c3|commit]], [[https://git.kernel.org/linus/36a1d1726634f2e53eefaec32e116fad465b89cb|commit]], [[https://git.kernel.org/linus/1277531fca43de81962812d28fb126775a5a509e|commit]], [[https://git.kernel.org/linus/890712d4507b8950bd5fa005077a9178ddde95e6|commit]], [[https://git.kernel.org/linus/e1b163e405534bcec5026596d90aecd21b766004|commit]], [[https://git.kernel.org/linus/eb1a68a00c0afc88ec60bc96b45d4bfb478ab716|commit]], [[https://git.kernel.org/linus/2768101b397658352f2aade711135528c3568fb4|commit]], [[https://git.kernel.org/linus/18618d9ea1fbc251970fe8a072f6fe10266320e0|commit]], [[https://git.kernel.org/linus/bfdfafd907204dd1ca7c59e175c2d636ff2361c4|commit]], [[https://git.kernel.org/linus/987ec51e18419cc0ebf6f6fa1cfbfd149eca443d|commit]] * X86 * Remove support for TSC-less and CX8-less CPUs [[https://git.kernel.org/linus/aaa3c14d11345f330f32ef4e837923d0932a809d|commit]], [[https://git.kernel.org/linus/7d328c5de43a9e29dc6cd1ba3e578c1a32ebc486|commit]], [[https://git.kernel.org/linus/dbafa16ec2b6be40055db181c99f2529b20dd951|commit]], [[https://git.kernel.org/linus/db1931e39ba15827eb1889594916b80227b7956c|commit]], [[https://git.kernel.org/linus/2ed46bccac394fd960c20dd9dc4c5fe0a9d7c0ef|commit]], [[https://git.kernel.org/linus/7b49a3fb69e785a2425c8dc7dbd0779a0a4c0eb2|commit]], [[https://git.kernel.org/linus/ab05214025ee2af262591cd48df17883648bdb1a|commit]], [[https://git.kernel.org/linus/d8b55ce0c9958243c0b69211b12185287750d81a|commit]], [[https://git.kernel.org/linus/823caa17388451d1ca9238f26472509c8bbda117|commit]], [[https://git.kernel.org/linus/435ef16e69b9d7f9cdf460a4c2edd20bb47d51fa|commit]], [[https://git.kernel.org/linus/21ff606db9c57bdd670708d5e08f5a6b98841c9a|commit]], [[https://git.kernel.org/linus/55cbcb6731bbea264716ad57eeedc0f98ec176c5|commit]], [[https://git.kernel.org/linus/5fbe09ebb4dc7e0fa54f7a26d6be72a33d7e6035|commit]], [[https://git.kernel.org/linus/202311a754d4208ef156bc23b7ac310feccdea3b|commit]], [[https://git.kernel.org/linus/3aa8f9fce8602d722948df641c7ca2828ee0a2f5|commit]], [[https://git.kernel.org/linus/fa6dcbc69ad495eeea315870278100a554a4ca18|commit]], [[https://git.kernel.org/linus/dedcf8e104414f2e5517c2f9abad4bd31fd5d8e2|commit]], [[https://git.kernel.org/linus/87a451161f36a34307ca09aaa66f233d68642b5f|commit]], [[https://git.kernel.org/linus/b04472e131016c5e4022f94db82b8d15a1e93db9|commit]], [[https://git.kernel.org/linus/111cbb4596e336373ab93e202918f4cdbf78a4c3|commit]], [[https://git.kernel.org/linus/bdf4d8280616308b5bb42babad1432ff4575cb8b|commit]], [[https://git.kernel.org/linus/eabf869d795173a107ad8965e4fb1711d82544b6|commit]], [[https://git.kernel.org/linus/5c75b98aa9cd5b1725b76999d794dc72ebd7a54a|commit]], [[https://git.kernel.org/linus/2bebd986eddb31f9ff1e02e9245a318036280759|commit]] * platform * amd pmc: Delay s2idle suspend for some devices [[https://lore.kernel.org/lkml/20260611150426.3683372-1-daniel@gibson.sh/T/|(cover)]], [[https://git.kernel.org/linus/3bdd6fc11fbfa8249483f4b716ead51e43e3a0cd|commit]], [[https://git.kernel.org/linus/9b9e60dd31da054a37d601e9fcabdfd8a2bff354|commit]], [[https://git.kernel.org/linus/428b9fd2dce50b4dc5cd9ade10b92efcf57ce7aa|commit]], [[https://git.kernel.org/linus/037f0b03c663a247366673a807834389107995b7|commit]] * amd/pmc: Add support for AMD 1Ah Family 80h SoC [[https://lore.kernel.org/platform-driver-x86/20260609143952.2999707-1-Shyam-sundar.S-k@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/c3a2521bcc8e4913a246132f276e5ce1251dd1cd|commit]], [[https://git.kernel.org/linus/043af31c8d3031bbeb77dfdc6373005ef3b8a23b|commit]] * intel-uncore-freq: Expose instance ID in the sysfs [[https://lore.kernel.org/linux-kernel/cover.1775665057.git.m.wieczorretman@pm.me/T/|(cover)]], [[https://git.kernel.org/linus/d8e484a452ca195b7c099373f3c7901bd405b623|commit]], [[https://git.kernel.org/linus/6cf1c1e9f21ba2e44e05e691d5241290c7d6c41a|commit]] * asus-armoury: more ppt data [[https://lore.kernel.org/linux-kernel/20260612121008.970269-1-denis.benato@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/0b38a42bf59fc3ba97dd6f02bfc257dffa0e1d6d|commit]], [[https://git.kernel.org/linus/a0bb64f3170adccb5780cf8778e601392d94f244|commit]], [[https://git.kernel.org/linus/72dd918bbe008d64a2c2352bdf14671f1ac068c7|commit]] * asus-wmi: add keystone dongle support [[https://git.kernel.org/linus/711104ab5ed500f155e4a53c56571b9b24a9a9b9|commit]] * dell-dw5826e: Add reset driver for DW5826e [[https://git.kernel.org/linus/1ab843135a7795b0ef37bd7eaf01056276873fd4|commit]] * dell-laptop: add Inspiron N5110 to touchpad LED quirk table [[https://git.kernel.org/linus/bfe91a80b13f8068f6fa07aa8c468d284150d4ad|commit]] * hp-wmi: Add support for Omen 16-ap0xxx (8D26) [[https://git.kernel.org/linus/0aab31d47c2e857ca05028d718d1e0d239e683ad|commit]] * hp-wmi: Add support for Omen 16-ap0xxx (8E35) [[https://git.kernel.org/linus/56b7981c6f21670c0a1a62e6d2f9afb380e2596d|commit]] * hp-wmi: Add thermal support for board 8B2F [[https://git.kernel.org/linus/abefbbfc71f5ee50f9e549a2d143f23694d65fc2|commit]] * intel-hid: Add HP !ProBook x360 440 G1 to button_array_table [[https://git.kernel.org/linus/c39023ca9a447f09c072080efc84d6874c2275c9|commit]], [[https://lore.kernel.org/platform-driver-x86/20260609213309.445019-1-nikolaymetchev@gmail.com/T/|(cover)]] * lenovo-wmi: Add fixes and enhancement [[https://lore.kernel.org/platform-driver-x86/20260520060740.119554-1-derekjohn.clark@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a2a893d5757a0d43c0a2ed351eb1e34ab718f2fe|commit]], [[https://git.kernel.org/linus/b51fa3b00e0339bebeac7d0c1beb13f494f6fe41|commit]], [[https://git.kernel.org/linus/891d43749445fed6725acf9ee1c37e052dba8288|commit]], [[https://git.kernel.org/linus/9ca8fc065b88b327acbfdc33454efea391639716|commit]], [[https://git.kernel.org/linus/fb8e9629efbab67135f801f5ec5e91307e7693c2|commit]], [[https://git.kernel.org/linus/229e575451e4e65db47bb1873be0ccab764d9f3d|commit]], [[https://git.kernel.org/linus/18a166d29aa12d361907a3aa724c8892d834592b|commit]] * msi-ec: Add support for MSI Pulse GL66 12th Gen [[https://git.kernel.org/linus/ab7be7ed913086e076bfd8aba79f614f415cd6dc|commit]] * oxpec: add support for OneXPlayer Super X [[https://git.kernel.org/linus/0b6573e23acc7bca808e539e3edea49683f106de|commit]] * thinkpad_acpi: Add debugfs entry to display HWDD raw [[https://git.kernel.org/linus/165e81354eefd5551358112773f24027aac59d5a|commit]] * uniwill-laptop: Charging-related improvements [[https://lore.kernel.org/platform-driver-x86/20260512232145.329260-1-W_Armin@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/c12cc42dadd85dea210d5699d4f21def827382eb|commit]], [[https://git.kernel.org/linus/c16a4823cc60a32b891f7a148bb30c0f51d12cf4|commit]], [[https://git.kernel.org/linus/fb4b67c44557cb4cbb15900083d4e1af22320339|commit]], [[https://git.kernel.org/linus/26cbe119f99c86dcb4a0136d2bc73c0c716d80e4|commit]], [[https://git.kernel.org/linus/4d86e384c164abeee17da09fe6cd24a37973e628|commit]], [[https://git.kernel.org/linus/f7bcba269143230923e40cd88b9169ed27f178ae|commit]], [[https://git.kernel.org/linus/73fa957a05e9fd43f204225497d4c98d7c0d0490|commit]], [[https://git.kernel.org/linus/2c5d91f35d0d564c8b4c062b67526e0d2d27fae9|commit]] * Add acpi-based pmt discovery support for intel pmc [[https://lore.kernel.org/linux-kernel/cover.1781294741.git.david.e.box@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/acd3b94f8604aeee2b62f8fd18e95a0474546288|commit]], [[https://git.kernel.org/linus/b3de79d932bdcee4b2b9c8f9a058516699cf1c50|commit]], [[https://git.kernel.org/linus/521460e6699557f2aa0e4818110e082b76809e98|commit]], [[https://git.kernel.org/linus/4a87492cd137d158779923a034d7e742f7358952|commit]], [[https://git.kernel.org/linus/4dfc7dca6e934ca414d8d3c70a84e79d13d9e750|commit]], [[https://git.kernel.org/linus/13793c7f9e9ff30042a54bb680662b5cfa0f58fa|commit]], [[https://git.kernel.org/linus/8ba4cf60c5ce4a3073126a6cbb09475010f8fa52|commit]], [[https://git.kernel.org/linus/adc5d98d9ff8b5d37e89e11a2ac5512595541329|commit]], [[https://git.kernel.org/linus/90fd47d0d8109ef1301a60a44a7f85581a1e6efe|commit]], [[https://git.kernel.org/linus/d936dd2c605a17ab41826c1e7f738424d3d0bbfd|commit]], [[https://git.kernel.org/linus/f79e57e2677c7641e94d5a38d4b2c2165f5c385c|commit]], [[https://git.kernel.org/linus/e3c9200a9c0e05532c495956883ba11fe23a3df0|commit]], [[https://git.kernel.org/linus/08b94937c78aaa144e3afff659c6112bffea6bf0|commit]], [[https://git.kernel.org/linus/8a3607ece59fcf84cf4129bdf683cb09122e6b51|commit]], [[https://git.kernel.org/linus/50022e56dc89fbf1ec22826edf03dc2e5b9076cc|commit]] * Enable nvl support in intel_pmc_core [[https://lore.kernel.org/lkml/20260505043342.2573556-1-xi.pardee@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/dfe614f82e445a65cb2afd01859b06b01fce8889|commit]], [[https://git.kernel.org/linus/38c79dd63b72e36919ef097d4e5025ca0fa17f34|commit]], [[https://git.kernel.org/linus/d727eb1c3ede7c21f885ded1f1ad65b47434a9b9|commit]], [[https://git.kernel.org/linus/11de0586ecf40aa747972f1b0bf88bac192d7b06|commit]], [[https://git.kernel.org/linus/ebbf33380896cc489e870d88004ad3750e908a6c|commit]], [[https://git.kernel.org/linus/a7d5916d132300b1ff6ac0c5f6d7a7cb7817a7fc|commit]], [[https://git.kernel.org/linus/41354f4c8a791d3059f4355945e550693ac87ce8|commit]] * Add tps68470 power supply support for ov13b10 sensor [[https://lore.kernel.org/platform-driver-x86/20260515174514.3752028-1-arun.t@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/d5a047e957a754462706fc10c0e648bcc4dcc8e6|commit]], [[https://git.kernel.org/linus/cbc6cd55ae5fb6e15bd761f588d7a3057b0c54f8|commit]], [[https://git.kernel.org/linus/03529c85f4e94950b8de3df7336c253b587febe9|commit]] * Add support for hygon dhyana family 18h processor [[https://lore.kernel.org/linux-kernel/cover.1535459012.git.puwen@hygon.cn/T/|(cover)]], [[https://git.kernel.org/linus/c3fecca457c1aa1c1a2f81bfe68393af244a263e|commit]] * KVM * Combined patchset for MBEC/GMET support. Both MBEC and GMET allow more granular control over execute permissions, with different levels of separation between supervisor and user mode. MBEC provides support for separate supervisor and user-mode bits in the PTEs; GMET instead lacks supervisor-mode only execution [[https://git.kernel.org/linus/9a67ab74021b4bfb2ad3c9f30af9dbab1127eb99|commit]], [[https://git.kernel.org/linus/be4e45f360a2963ff4a1e17312ccbb273fa79bab|commit]], [[https://git.kernel.org/linus/6896bc190ed247ab8613362aa218f682bdab31ce|commit]], [[https://git.kernel.org/linus/0c768fa0aeb882fb5fbe75f4dcf0eb6ed23b9e8b|commit]], [[https://git.kernel.org/linus/296b29597db1cf96b955da0f1bcb34d2759dd9d7|commit]], [[https://git.kernel.org/linus/949aa12e030eac4424f4832eb93e96c20719ae7b|commit]], [[https://git.kernel.org/linus/a8827c19614629ee51f2355ceeea36b96d77eb60|commit]], [[https://git.kernel.org/linus/bd1c40114b02cf63ba33da8e7df71ed0fc2a3019|commit]], [[https://git.kernel.org/linus/2c89d577548e5a74d417415014a14d8d7fb3518d|commit]], [[https://git.kernel.org/linus/b95b398d2e6d13ed47d4ab25bce499c7240923a1|commit]], [[https://git.kernel.org/linus/2e111d932d1d7d5bbe2ecb5f0557a81281527cb7|commit]], [[https://git.kernel.org/linus/f603854a1b42486ae6303675fcb47377c1396c80|commit]], [[https://git.kernel.org/linus/a6b7b6b2050c7e9e350563775431d9c7c0a684b9|commit]], [[https://git.kernel.org/linus/a0efd8cb221fff20f511ecf759c42c076a513ebb|commit]], [[https://git.kernel.org/linus/9c167cb3c14c486e683fe4248a8309eb4dd3042b|commit]], [[https://git.kernel.org/linus/d220bcf026f0a4bc450744e427ad8fc08855f752|commit]], [[https://git.kernel.org/linus/606ddbfb4c02219cd2499085b38d97a213d35479|commit]], [[https://git.kernel.org/linus/55a71224bd90aa485c72cc55c446a26b485a8e36|commit]], [[https://git.kernel.org/linus/4ae0a67231b424d86384621f370730edb8c94c0e|commit]], [[https://git.kernel.org/linus/978598a230c16d40b7c8a262bd13c70d433c71bf|commit]], [[https://git.kernel.org/linus/7658b9343a8f65e5fe742301a083db1018320c1d|commit]], [[https://git.kernel.org/linus/ec65797ce341e26563a9cb25943035bd2431a6c8|commit]], [[https://git.kernel.org/linus/3129c6b81cabf18f597497213e3130a948fc1bb9|commit]], [[https://git.kernel.org/linus/fe080f58dec24049b4e5ecfaab28ba0881c67abe|commit]], [[https://git.kernel.org/linus/878fffd76c22b8afb53e4b9409f355a99b9f3ee1|commit]], [[https://git.kernel.org/linus/687ee95c1b6d7509a25bbc661e62801aa06cc2ae|commit]] * pmu: Add support for AMD's Host-Only and Guest-Only performance counter eventsel bits in KVM's mediated PMU passthrough implementation [[https://lore.kernel.org/kvm/20260527234711.4175166-1-yosry@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/8862376260c4a19329c8ba8b31d2e12510d2401d|commit]], [[https://git.kernel.org/linus/42ff88db18a5a42f619eab1d862e04e6505e8ee6|commit]], [[https://git.kernel.org/linus/0a35c2a051f34890f39befb5dc4f1cf41ec12b2a|commit]], [[https://git.kernel.org/linus/9be579d2265185ec92d75e4540fc6c4e621f1667|commit]], [[https://git.kernel.org/linus/277eb65b6cc3442a9cde58291d3f7b21ba79b770|commit]], [[https://git.kernel.org/linus/103cd7deda589c47f10cdf0f65cae21dbca35b9c|commit]], [[https://git.kernel.org/linus/e48810e06f45251a56bc007485854112e6cfc430|commit]], [[https://git.kernel.org/linus/232eadc3110b6b00eda84fb8670ddb20a64e1726|commit]], [[https://git.kernel.org/linus/f98ef41a5af4c71a699df69399c9d932c8c1bf69|commit]], [[https://git.kernel.org/linus/2ed72677a5c1025edb1398bbfda0f558ee19b4df|commit]], [[https://git.kernel.org/linus/c0d4c9c54c256cea13e3bea82127cc34b833ff08|commit]], [[https://git.kernel.org/linus/a02a25a652468efb5f3d19426352484d77b6b4d4|commit]], [[https://git.kernel.org/linus/f4805dcf2d2107b83329b56f62204e3a846ff7d2|commit]] * Extend {{{KVM_HC_MAP_GPA_RANGE}}} api to allow retry [[https://lore.kernel.org/kvm/20260305222627.4193305-1-sagis@google.com/T/|(cover)]], [[https://git.kernel.org/linus/3e2dec1ede0a772c4d7cebd4130a7c4a12de2789|commit]], [[https://git.kernel.org/linus/5d40e5b49442437fe9dfd2577f7b17c07dbefb92|commit]] * Virtualize AMD's "disable CPUID in usermode" [[https://lore.kernel.org/lkml/20260527174347.2356165-1-jmattson@google.com/T/|(cover)]], [[https://git.kernel.org/linus/cf7d65d1d6f50daadfe7c475f0c2b1bfdc288b56|commit]], [[https://git.kernel.org/linus/be7fd7c3e8bcfd3a1804567ce5cf9ca3b254c1ba|commit]], [[https://git.kernel.org/linus/d1bc99885a59d89e408f52f4c147b07bca9a686f|commit]], [[https://git.kernel.org/linus/e93a93f11490992a477546d38d3a37b9b8dc6a5f|commit]], [[https://git.kernel.org/linus/b16c2aca369d180dc94275343b34966194317528|commit]] * Runtime TDX module update support [[https://lore.kernel.org/kvm/20260520133909.409394-1-chao.gao@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/1ffa6a10253c417b281aff3cbd02bdf43b2b159d|commit]], [[https://git.kernel.org/linus/9c0c68708dc48e8ae4f9043c96b387a0173361f1|commit]], [[https://git.kernel.org/linus/451735bf90bfb294bb542cb2fa39ed01822aab86|commit]], [[https://git.kernel.org/linus/77525820de70afd11ad7652bda005ce0ec1343af|commit]], [[https://git.kernel.org/linus/2e41297bfa035fa1cf1530d5ceecf58c527b6277|commit]], [[https://git.kernel.org/linus/59783353467958517a3e511394d7ab3aed03bc6a|commit]], [[https://git.kernel.org/linus/6fe8a33fdb93911934cd1c77624c1e02af45047c|commit]], [[https://git.kernel.org/linus/9bc3ce2c5d3ddcbf569e573c1c65775c09a4fb75|commit]], [[https://git.kernel.org/linus/0988bf698a80056638f771179158059c60874ab4|commit]], [[https://git.kernel.org/linus/885afcf7c859729d0d7884d0abe5343ee8f742a3|commit]], [[https://git.kernel.org/linus/5ce9cc5a232b992806cf31027e6281727a2040fc|commit]], [[https://git.kernel.org/linus/c3e70c5ee53f1a5e1df2e83f846185154d58111f|commit]], [[https://git.kernel.org/linus/23a81e6cce154950ad203fd8bc5a016038c173b3|commit]], [[https://git.kernel.org/linus/ab6be1168cf963630335a6f08938fd510a9225bf|commit]], [[https://git.kernel.org/linus/be4efe63c050be48961a5430c91e69f95af08b81|commit]], [[https://git.kernel.org/linus/9ea06080a680a2aa521795432396d2c27f9bb9f9|commit]], [[https://git.kernel.org/linus/65a6542a8144cb88ffccae386e38d61933d575c8|commit]], [[https://git.kernel.org/linus/2bfb2ef877f510bc6ebe8a74ce0877d290dc8bcd|commit]], [[https://git.kernel.org/linus/b344c50a1ad4230c86bcc080a08ee65e8c944627|commit]], [[https://git.kernel.org/linus/856bc8bb990e21546fadff83502cdad33660a18e|commit]], [[https://git.kernel.org/linus/1e35f5945db9630c0602d9a9a7bbd146a96d13cc|commit]], [[https://git.kernel.org/linus/2b9ad7a6154e0938b9458691536296dd0224942d|commit]] * cpuid: Introduce a centralized CPUID parser [[https://git.kernel.org/linus/7b49a3fb69e785a2425c8dc7dbd0779a0a4c0eb2|commit]], [[https://git.kernel.org/linus/ab05214025ee2af262591cd48df17883648bdb1a|commit]], [[https://git.kernel.org/linus/d8b55ce0c9958243c0b69211b12185287750d81a|commit]], [[https://git.kernel.org/linus/823caa17388451d1ca9238f26472509c8bbda117|commit]], [[https://git.kernel.org/linus/435ef16e69b9d7f9cdf460a4c2edd20bb47d51fa|commit]], [[https://git.kernel.org/linus/21ff606db9c57bdd670708d5e08f5a6b98841c9a|commit]], [[https://git.kernel.org/linus/55cbcb6731bbea264716ad57eeedc0f98ec176c5|commit]], [[https://git.kernel.org/linus/5fbe09ebb4dc7e0fa54f7a26d6be72a33d7e6035|commit]], [[https://git.kernel.org/linus/202311a754d4208ef156bc23b7ac310feccdea3b|commit]], [[https://git.kernel.org/linus/3aa8f9fce8602d722948df641c7ca2828ee0a2f5|commit]], [[https://git.kernel.org/linus/fa6dcbc69ad495eeea315870278100a554a4ca18|commit]] * topology: Add paramter to split LLC [[https://git.kernel.org/linus/abb12b9b52cfe272c03a859b43a658f0d9cbf285|commit]] * cpu: Add Intel CPU model number for rugged Panther Lake [[https://git.kernel.org/linus/dedcf8e104414f2e5517c2f9abad4bd31fd5d8e2|commit]] * Add IOMMU TLB and interrupt metrics [[https://lore.kernel.org/linux-perf-users/20260528234455.434027-1-ctshao@google.com/T/|(cover)]], [[https://git.kernel.org/linus/a43581b5dd1f05dd42f9a7b43e3bdfa09daed440|commit]], [[https://git.kernel.org/linus/3dfaf02e554f63f9b4e68b69deda9617a1948993|commit]] * perf vendor events intel: update [[https://lore.kernel.org/lkml/20260529045155.311805-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/e1620c2add523868f3655feb5e4727ddeee83c59|commit]], [[https://git.kernel.org/linus/9996a23d319dd5db39bb8f89debeead52658b70c|commit]], [[https://git.kernel.org/linus/8a990b123bf524205484516339e469fbe887a000|commit]], [[https://git.kernel.org/linus/1a5c515eae7c2234b86b35b3b0f2ab94887f43d7|commit]], [[https://git.kernel.org/linus/91a914e8b9bf937d7a700005dc9c0b83b7dfbc2f|commit]], [[https://git.kernel.org/linus/409c04ab6b94ce0380034f416c515b19dee54b19|commit]], [[https://git.kernel.org/linus/8036f156851c4f35e180ecd27d56bdb8144bc1e8|commit]], [[https://git.kernel.org/linus/988e264ae93f3e1a6059c13e6036c1fd73a585e2|commit]], [[https://git.kernel.org/linus/8dee02f7397e7725f7a6e3f0f74349333af8a832|commit]], [[https://git.kernel.org/linus/4aa006c38dca636519241667175f9125ff630838|commit]], [[https://git.kernel.org/linus/ab85585e388caf9556f70bf9361b7cbe15af85ac|commit]], [[https://git.kernel.org/linus/33518bdc96c49c7d213f081feefbcb62bc956035|commit]] * S390 * Add support for 2G hugepages [[https://lore.kernel.org/linux-kernel/20260609150930.665370-1-imbrenda@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/782fec4ab945e1f3b9f0ba383fc00c67641d9767|commit]], [[https://git.kernel.org/linus/103ff3a50e3a50a97e2b123d4dccbc8665eb1552|commit]], [[https://git.kernel.org/linus/46756c086310057c92cf17c8d07e0c63a7ba687d|commit]], [[https://git.kernel.org/linus/9030da050c9fe7d10150c9f93765e464f6c7da3c|commit]] * Introducing kvm_arch_set_irq_inatomic Fast Inject [[https://lore.kernel.org/lkml/20260604192755.203143-1-freimuth@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/c9a5688380865b968f7aef6534de632857ab5be0|commit]], [[https://git.kernel.org/linus/1e95e3bc6b0572e60a98c7dde52e27259a802d4d|commit]], [[https://git.kernel.org/linus/a868b30492c59f398359b7891293bbde8d126a51|commit]] * Implement KVM_PRE_FAULT_MEMORY [[https://lore.kernel.org/linux-kernel/20260527144358.186359-1-imbrenda@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/499d2e4b75c44365a40a5fe623f3bd5bc1844197|commit]], [[https://git.kernel.org/linus/bea77e83c0b9e1d98482a0c24f9ee9eb8dd61edc|commit]], [[https://git.kernel.org/linus/a5aa761e73074266fef95fd3ee2ff75ea0372f16|commit]], [[https://git.kernel.org/linus/c847704619da45d5a161887afcfc3701ae18f971|commit]], [[https://git.kernel.org/linus/68f8c9565c4391343aa3b77f7af642a366991405|commit]] * vsie: Implement ASTFLEIE facility 2 [[https://lore.kernel.org/linux-s390/20260612-vsie-alter-stfle-fac-v4-0-74f0e1559929@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/20dcfaf2d3261ef84631114ae37213f5ebd3eb37|commit]], [[https://git.kernel.org/linus/a8ceca7d8c00479a650bc5fb1372d40dd5e535a2|commit]], [[https://git.kernel.org/linus/bf8f3cec939db68e6dc32705327acfabdbcf9e69|commit]], [[https://git.kernel.org/linus/0e9704f1bca006ea09cab4a73dbcbeec8c77573e|commit]] * Enable rust support and add required arch glue [[https://lore.kernel.org/linux-s390/20260608181451.3734956-1-japo@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/184b8dc8798987ffc889b5927c67b358f769a414|commit]], [[https://git.kernel.org/linus/6900bec59d0f54dbb94d0799d204bcd44fbdb623|commit]], [[https://git.kernel.org/linus/fc1118cdc3618bef1433040bf5fa09b438ec3428|commit]], [[https://git.kernel.org/linus/71247e71a41fb79ff3612961957b05153fed2862|commit]], [[https://git.kernel.org/linus/a423d94fa1167c709718f58913953f18b45a9904|commit]], [[https://git.kernel.org/linus/3f70ebe638581e73c8df6b3fa7eed9b45d90b083|commit]] * Convert various functions to C [[https://lore.kernel.org/linux-s390/20260609103343.107325-1-hca@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/bd9a200717fb15bcbf666b1a8c6758887215b0fb|commit]], [[https://git.kernel.org/linus/1e3e4dc332f3ee3f3ec9da5c7eaf147460841843|commit]], [[https://git.kernel.org/linus/78016b6da77e9d3a5ed11f7366cac385eb50a058|commit]], [[https://git.kernel.org/linus/c3e4b7eb1b981712ebd128825d4ef3b4e9e0ee8b|commit]], [[https://git.kernel.org/linus/0a8be1f9c7100fff7ef13ad0a82d41b3b18996f9|commit]], [[https://git.kernel.org/linus/611b5c1f60f90f2cbe4d328cbd4d4a625abc32b4|commit]], [[https://git.kernel.org/linus/90d7412cd1ca82528adaf79abffaf12c36ba1b19|commit]], [[https://git.kernel.org/linus/661fd726e0ea8ee6b5ab4b719629cd51a2b836b0|commit]], [[https://git.kernel.org/linus/51746fc082260b0d91fd39315e77cb0863a00136|commit]] * Improve this_cpu operations [[https://lore.kernel.org/linux-kernel/20260526055702.1429061-1-hca@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/a737737cdb9c94e40a9926cdc2320f874c05d709|commit]], [[https://git.kernel.org/linus/b50403d4f3ea4dbdef758f21d4e11d40d9f61d7b|commit]], [[https://git.kernel.org/linus/18ec6c5d7ec6c73ccff616041d75b6ea30a9a36e|commit]], [[https://git.kernel.org/linus/593f1aac976d9bb4681746bfc4b90e1b73821411|commit]], [[https://git.kernel.org/linus/ee8cefbfb0718bfe1460cf2ba72722c51f6789eb|commit]], [[https://git.kernel.org/linus/9858c19a66386cb2553480643f2d4565993d1cd8|commit]], [[https://git.kernel.org/linus/4a9d66c6704d43124dc064dc36fbc3f32953c5b4|commit]] * ap: Implement SE bind and associate uevents [[https://git.kernel.org/linus/4179c39842273d3452db062ef73f850327bfd638|commit]] * debug: Add s390dbf kernel parameter [[https://git.kernel.org/linus/a2cec6863709d6673a025acc066c962b85a75842|commit]] * sclp: Allow user-space to provide PCI reports for NVMe SMART data [[https://git.kernel.org/linus/1f5ea7ade1bfb315ddec17814be31d21bfa28bc3|commit]] * tracing: Add s390-tod clock [[https://git.kernel.org/linus/29eb8a7b6e3bfca74a9077304b08d42274cbb4d6|commit]] * RISCV * Support non-leaf and range invalidation features in risc-v [[https://lore.kernel.org/lkml/0-v2-b5156f657dc1+25f-iommu_riscv_inv_jgg@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/74c9d82c7e3fe9e5845103fe83d711d89b169ab1|commit]], [[https://git.kernel.org/linus/f0e4b7f5f87578cdd2d0f1e866183adc10d33b85|commit]], [[https://git.kernel.org/linus/89792629d4b260104555f9719ac84c1afc9a2012|commit]], [[https://git.kernel.org/linus/db1aad42ca8b37437846078dfc405abda7868261|commit]], [[https://git.kernel.org/linus/bb62adcf451336301f75763d3a4851febf1dd9ba|commit]], [[https://git.kernel.org/linus/e4084c6bbb42b0ef2dbfceca70513cc1f49aff61|commit]], [[https://git.kernel.org/linus/835d06ee7ef0c2fc2adcf5bae5355c8bad900c21|commit]], [[https://git.kernel.org/linus/082ad5ed078516972571060b54643a0777486071|commit]] * k3: Add support for !CoM260-IFX board [[https://lore.kernel.org/devicetree/20260520-02-k3-com260-ifx-v2-0-d55095457cf0@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/3abf3f5c84fd32a95132a403e0209c8010b227f8|commit]], [[https://git.kernel.org/linus/cfe5c91cb73c87f9021e446ec9d323c483851c46|commit]] * Add deepcomputing fml13v05 board dts [[https://lore.kernel.org/devicetree/20260421064021.1580094-1-sandie.cao@deepcomputing.io/T/|(cover)]], [[https://git.kernel.org/linus/a17be027dc5ccd51b99b5bc7b487ba9fbdc554e8|commit]], [[https://git.kernel.org/linus/448fedd56cdfa68c2e661b16a8dfc8f3c40a1bcf|commit]] * KVM: Batch stage-2 TLB flushes [[https://git.kernel.org/linus/60aa6734f542a6c4b63cfbaabc544c3e67412ce9|commit]] * Implement ARCH_HAS_CC_CAN_LINK [[https://git.kernel.org/linus/84894ceb3c2ef5c5404359efd4edc6c438aa6d0c|commit]] * LOONGARCH * Loongarch irq-redirect support [[https://lore.kernel.org/linux-doc/20260513012839.2856463-1-zhangtianyang@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/4b522d3cf4777531023c6d18679ab5a5d3552c04|commit]], [[https://git.kernel.org/linus/d9ba741cd168649a768e9f95fe9db3d3596a6ae6|commit]], [[https://git.kernel.org/linus/71619266e0a272ef5ef137a661e8e3f1711c2aba|commit]] * Add thread_info_in_task implementation [[https://git.kernel.org/linus/7b5944d6ed369e43aeaf37beba9f89f7fb6c633b|commit]] * KVM: Set max VM supported FPU type with FPU exception [[https://lore.kernel.org/kvm/20260608013222.375257-1-maobibo@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/22e36941b54c33a3c45e14b1d016866c801832ed|commit]], [[https://git.kernel.org/linus/db5d2b8f5249bad43d607b550365f80bc7cad831|commit]], [[https://git.kernel.org/linus/f1d9dda01aacfae22044c5cb07b50556cfa75eb1|commit]] * Remove broken and unused loongson-rng [[https://git.kernel.org/linus/af3d1bb9a09daf928fc3f173689fb7904d6a6d4f|commit]] * POWERPC * bpf: Add powerpc64 JIT support for timed may_goto [[https://git.kernel.org/linus/b55b6b9ad76cdb82123c62a15c6a4ebe4abb8bfa|commit]] * Generic irq entry/exit support for powerpc [[https://lore.kernel.org/lkml/20260427122742.210074-1-mkchauras@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/baa590018fbfc3e7384b604c7a7951eecf10a523|commit]], [[https://git.kernel.org/linus/dec63ea6fafffb91811381d9a4686d4bc39f01ae|commit]], [[https://git.kernel.org/linus/09a9d3a8499db606563eb5e75a993419f4d1901e|commit]], [[https://git.kernel.org/linus/02565a782c1ee7e8ada38ad24a698e01d6ea9ff8|commit]], [[https://git.kernel.org/linus/d7a6797e0bc1ee7bddb8a298f2d1acddb300efb3|commit]], [[https://git.kernel.org/linus/893082ac769ba92a1338e7552d97de769f352a3e|commit]], [[https://git.kernel.org/linus/bee25f97ad24641df55cb3887eb5bfcb2b9d8fbc|commit]], [[https://git.kernel.org/linus/6ed60999d33d49251b42976a5511f1bb089797ed|commit]] * SH * sh: ecovec24: remove FSI/DA7210/Simple-Audio-Card support [[https://git.kernel.org/linus/9cc93ebc85e71577e8ab560620a81a3c4887c286|commit]] = Drivers = == Graphics == * Fair(er) DRM scheduler [[https://git.kernel.org/linus/4eadf3fe47602706f7b85bdf05ef60ddad8de0c2|commit]], [[https://git.kernel.org/linus/97ef806a53146837f6ca84a1b36763fb3bb67eaa|commit]], [[https://git.kernel.org/linus/df5ff8b62a47bb6a378c81ce8aff267f6e5c9e3f|commit]], [[https://git.kernel.org/linus/94e18404007d3d4c3438ca31d1430a7cf562bd59|commit]], [[https://git.kernel.org/linus/a58f317c1ca06d213f49612730206ff90eeaacd8|commit]], [[https://git.kernel.org/linus/fd177135f0e62344f5d0ad3b12d40f8f7e5cdaab|commit]], [[https://git.kernel.org/linus/8637ddeeb4bbd48dafa1be316d8296e8d49e7521|commit]], [[https://git.kernel.org/linus/2fa4d8e2c1091189064c5b93222a23ded2d881ba|commit]], [[https://git.kernel.org/linus/af85fa14ad7c4adf4276c65bb640843c6d210927|commit]], [[https://git.kernel.org/linus/45c211ddf92a1f9b4214ffadaf70d9037f53aaf6|commit]], [[https://git.kernel.org/linus/77a6809f1dc39376116f8d769a0d2630dc95ad79|commit]], [[https://git.kernel.org/linus/16e7698bc04d3dd19d95a688e4b0297a0e28a93b|commit]], [[https://git.kernel.org/linus/ac58121339db0178186d256a956bb65feb8b6e45|commit]], [[https://git.kernel.org/linus/4f335bba019958e59c2a02c4d71b72a8457cc595|commit]], [[https://git.kernel.org/linus/06879a9ad55bc4a7aa2e1bb7ee9fa658cdddee79|commit]], [[https://git.kernel.org/linus/2462a0ce23b0ba1c2195beccf39bc8608cdbd84e|commit]], [[https://git.kernel.org/linus/adfb5deba567045d74bfd75482b8d4f89d073004|commit]], [[https://git.kernel.org/linus/f84d73d2a08498174d950ba5935930dd94df7d3c|commit]], [[https://git.kernel.org/linus/098fe077ec029a1c8ded65af3c2b2a4190d93e9d|commit]], [[https://git.kernel.org/linus/9c44ff055965f2f75eee2ac95a7692600cf026a8|commit]], [[https://git.kernel.org/linus/79005e34bdcbb4a0b7f512bc32981fb60041767b|commit]], [[https://git.kernel.org/linus/285eab7f55ae3d961bfa4e759c3d2d0033e72294|commit]], [[https://git.kernel.org/linus/30c4a19cf71f040462254dcb8b2d3c3e7232b99b|commit]], [[https://git.kernel.org/linus/2833a0512b4cd55d9fea7ec18be85ef82e69ad3b|commit]], [[https://git.kernel.org/linus/a1bf9381fc62f3c4e26a2caedb8317046383a559|commit]], [[https://git.kernel.org/linus/4ca491d6ccf2daea813e67ed4b42e7b272f0687d|commit]], [[https://git.kernel.org/linus/d09339388b778f04dd9e638befa2594c9cb4290b|commit]] * xe * Add initial CRI platform support [[https://git.kernel.org/linus/e68a60f9e6a602684f335ede8af1170c13998b37|commit]] * xe3p: add gt tuning TileY 2x2 walk pattern [[https://git.kernel.org/linus/36acdfbc2cad67f550021725d6550bb0d4973217|commit]] * xe_sysctrl: Add system controller component for Xe3p dGPU platforms [[https://lore.kernel.org/intel-xe/20260327131837.2192929-9-anoop.c.vijay@intel.com/|(cover)]], [[https://git.kernel.org/linus/bb2447ef6aee314f303b1a8e0ede6b98c8f6a529|commit]], [[https://git.kernel.org/linus/281a79f78dfedf10f6c7de4334434c38eb5459dd|commit]], [[https://git.kernel.org/linus/37ace5254a2b1520753762527365ecad7fad797a|commit]], [[https://git.kernel.org/linus/5ea3f0dc8f9d33adf72532b366d0b7b91dae4d7f|commit]], [[https://git.kernel.org/linus/1f95f618182b5c99d46378141e0fb84f09bf914b|commit]], [[https://git.kernel.org/linus/02eca6edcb324bc37495930c344e235a90f42d72|commit]], [[https://git.kernel.org/linus/a902767f91ba9818b792f1137d3a835310c7d265|commit]] * Expose multi_lrc_mask in debugfs info [[https://lore.kernel.org/lkml/20260402162958.16924-1-x.wang@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/72d0c064564192d4fba2bf00f78ae303206fa2cc|commit]], [[https://git.kernel.org/linus/cc708deedf686c68e84851e89a2f7844dc0536ae|commit]] * PF fair scheduling auto provisioning [[https://git.kernel.org/linus/afc480ff55c5244f3a1941096f232b57c354cc68|commit]] * amdgpu * Initial HDMI 2.1 FRL support [[https://lore.kernel.org/lkml/20260520202929.555119-1-harry.wentland@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/d18ecfee5187e3b2dbff7e67dda8b2f54ff5231c|commit]], [[https://git.kernel.org/linus/08d4acb07f6c51ab09ade4a6685260eaf21f1cdc|commit]], [[https://git.kernel.org/linus/a7c7b927c8304a2d3bf18f744e3f265e3b8127ba|commit]], [[https://git.kernel.org/linus/8812fae1294ff7e749e0c33c18ffa7696cd2c784|commit]], [[https://git.kernel.org/linus/d36771a03412454a0c7f1c81746426958008a2bb|commit]], [[https://git.kernel.org/linus/76a2db58e95e328007043f54ac3c7336ccbee440|commit]], [[https://git.kernel.org/linus/6cb49315791ec281fda07519708dd88ff072b0bf|commit]], [[https://git.kernel.org/linus/70ed4679c5129b3a404116dfafa3ddb23a7cfa7a|commit]], [[https://git.kernel.org/linus/fdaf63d9a83aeff2f165b45e7073767bbe62f2fc|commit]], [[https://git.kernel.org/linus/952df08d5b2d39d841da69ff5e58be924886abf8|commit]], [[https://git.kernel.org/linus/5c9b8b27a883822fe5812bed23bca7ffeb4301f7|commit]], [[https://git.kernel.org/linus/7e5760f084d06ca57e46e4dbf7ef08f03f857be8|commit]], [[https://git.kernel.org/linus/547cc004c3c180cbf9da2089ddbde5bc430663eb|commit]], [[https://git.kernel.org/linus/c3778921bf0d582b8d22457834a10e98e0bf9eab|commit]] * Initial DCN 4.2.1 support [[https://git.kernel.org/linus/6f6483dbfacd2269da68cb97db996c0f31f650f2|commit]], [[https://git.kernel.org/linus/2332eaeb0b6cc5b00894e41d545a72758f5de8e9|commit]], [[https://git.kernel.org/linus/6352e6027307d6bc67f1a9c67db5586f51fee243|commit]], [[https://git.kernel.org/linus/7d5668d634667d961e264409a43eefff812f8570|commit]], [[https://git.kernel.org/linus/51e6668ab4baf55b082c376318d51ef965757196|commit]], [[https://git.kernel.org/linus/29480acd8f95d4267702cefc48e216b31de03cf9|commit]], [[https://git.kernel.org/linus/16e3e5aaa9a57a0f29f46f6663ca8c9cc8ee0bcc|commit]], [[https://git.kernel.org/linus/ee87d401f54a732d654192a6f48b39a8fc1f25ca|commit]], [[https://git.kernel.org/linus/4d8cfd570386eb0b6cb8aa0ca9e9db60a0404337|commit]], [[https://git.kernel.org/linus/95bb92e33e99cc89bc9975e7c934a81e806c14dc|commit]], [[https://git.kernel.org/linus/a55a458a8df37a65ffda5cf721d554a8f74f6b04|commit]], [[https://git.kernel.org/linus/c9affedcb8ef80eb8673cee8c88d368ab3bd58fc|commit]], [[https://git.kernel.org/linus/5a7f0ef90195940c54b0f5bb85b87da55f038c69|commit]], [[https://git.kernel.org/linus/10f5f9c0ef32d08b228bfee3684b62f36f395852|commit]], [[https://git.kernel.org/linus/6ab4c36a522842ff70474a1c0af2e40e50fc8300|commit]], [[https://git.kernel.org/linus/37668568641ccc4cc1dbca4923d0a16609dd5707|commit]], [[https://git.kernel.org/linus/eadf438ab8d370b9d19acee9359918c85afeb80d|commit]], [[https://git.kernel.org/linus/229212219e4247d9486f8ba41ef087358490be09|commit]], [[https://git.kernel.org/linus/95700a3d660287ed657d6892f7be9ffc0e294a93|commit]], [[https://git.kernel.org/linus/c2572d535be4847f8caba58b4ee8446b4ee15b57|commit]], [[https://git.kernel.org/linus/f602089acd9c55bdf4e04cf25462307c26eb9c8c|commit]], [[https://git.kernel.org/linus/d63cc4ca21f89a37c7cad8246fe38e8c0987d88d|commit]], [[https://git.kernel.org/linus/b640830f1a6f1b5705c2865ef48e066f36fed419|commit]], [[https://git.kernel.org/linus/52c2bc3097153b4c06c209e32d604b085602d69d|commit]], [[https://git.kernel.org/linus/533de2d4d5879704cfe83f3b7929e6528fbfa95b|commit]], [[https://git.kernel.org/linus/2da6b0b28f87c16305771d5d4b5d1699c3c6a799|commit]], [[https://git.kernel.org/linus/a3142b13fe9fdbc3738026cc1cfeb7b2ab38a382|commit]], [[https://git.kernel.org/linus/f84c48048b491941af8caaa65d4260123cab7257|commit]], [[https://git.kernel.org/linus/64aa07084a0d44541d022ac1dd2d8c03ba5b222c|commit]], [[https://git.kernel.org/linus/34f281489976fb20fe8be12f084055b5560a3190|commit]], [[https://git.kernel.org/linus/bb3ab95ac78671b128314b3515aa007439b7b58d|commit]], [[https://git.kernel.org/linus/9aef3d167a1c0f1a59ef043ee7b0f525936fbfc6|commit]], [[https://git.kernel.org/linus/6750a2316f3f3b34016bcc425a0e99af1efb1c58|commit]], [[https://git.kernel.org/linus/7d447370678c4c4d335fd0422341b76f8cf8f3b3|commit]], [[https://git.kernel.org/linus/1a1751507e39cd6388257ae93af45a8e5a0d3e97|commit]], [[https://git.kernel.org/linus/a3d3758b2ee159a0985bc2f973a892200c2ab62b|commit]], [[https://git.kernel.org/linus/eb778d928b7b619b7076ef73dcb06947c202947a|commit]], [[https://git.kernel.org/linus/0a5e0416e191571de9362b769feb31b3e87a705e|commit]], [[https://git.kernel.org/linus/827d94e61320ed350705fc1024059f0e74bcc214|commit]], [[https://git.kernel.org/linus/14b7d1291d7c7fed911c61e82bfd7bceabf3034e|commit]], [[https://git.kernel.org/linus/c2630fdd65d806a1bccee1a2ebbe9bf2aa742d46|commit]] * GC 11.5.6/SDMA 6.4.0/and other new IPs [[https://git.kernel.org/linus/51f6a4c758227687a598d81f5541907435ef0433|commit]], [[https://git.kernel.org/linus/6db5cbbaa6e92f2a76b19f06b62841d60d5ffe9f|commit]], [[https://git.kernel.org/linus/5d2ce32351545e46deb4c6c597585254432a21d0|commit]], [[https://git.kernel.org/linus/6a7dbff3254d799603949c822e72d286b7838c0c|commit]], [[https://git.kernel.org/linus/654662c29a5ba304331e6a527705c704aeb780a5|commit]], [[https://git.kernel.org/linus/3d706d61d9ab65c6d59696aed3f038b621465168|commit]], [[https://git.kernel.org/linus/7e9a8506a857bbdd99759b0ede03a0c805893920|commit]] * Enable DC power module [[https://git.kernel.org/linus/4aebe73f44bb57ccc8bcdba15a2d56ebfe452d4d|commit]], [[https://git.kernel.org/linus/35e86e6a54e82e3624e9abdad61c8d4b0f764396|commit]], [[https://git.kernel.org/linus/5e5ef50cd84aa8f3421c26ae59c4e8de574d09e1|commit]], [[https://git.kernel.org/linus/a182e08d271c8ebbbc91d08f87a6d88315fcb1fa|commit]], [[https://git.kernel.org/linus/866f716b17dac225a1c5c608fc3760935b0a3893|commit]], [[https://git.kernel.org/linus/f4cdbb5d54057838b14a9b537309df24f20232c2|commit]], [[https://git.kernel.org/linus/f67790a0715edd292d64a104e6e294290243d16d|commit]], [[https://git.kernel.org/linus/4cef2ac4c795e4fffd6d35ea110f1273e3cb74bf|commit]], [[https://git.kernel.org/linus/3c108046e1d6fa550ccdd8fc3396fc5e561f2de2|commit]], [[https://git.kernel.org/linus/32c542fdedc2e3bf61b4147c0ea41de0505d72d0|commit]], [[https://git.kernel.org/linus/200e20cfa542eeab6324eb6b73f9f43d6bd94f8f|commit]], [[https://git.kernel.org/linus/a7a2cbc6b08654ffa6f1e15fa6ff0e058d4fcbd9|commit]], [[https://git.kernel.org/linus/a4702db211806757fdd53fc79b753f30439a2f49|commit]], [[https://git.kernel.org/linus/11236ac905e70c217d76e333f8d4fdbcab6f05b4|commit]], [[https://git.kernel.org/linus/544780573cfdc9afe9620e6f7329fe9fb7f14c24|commit]], [[https://git.kernel.org/linus/6fd45b5d8955bbc362ac3dfe181529f7b1cfd224|commit]], [[https://git.kernel.org/linus/06e7f7aa7ab7193615332fa83b5bdd98baefb76b|commit]] * Finish support for using multiple SDMA queues for TTM operations [[https://git.kernel.org/linus/01c836788b373329cd6dfea6508d80314eb9bae5|commit]], [[https://git.kernel.org/linus/e4029f7a9474319114d07caa90cff3ec534ef0d9|commit]], [[https://git.kernel.org/linus/897ee11ec0209aa90184b5a69d0e172d007dce3a|commit]], [[https://git.kernel.org/linus/3a6f6eeb3db51f0f8153636280edee00720c3986|commit]], [[https://git.kernel.org/linus/23bd7e67961ee531386246e98021273bb45b0a84|commit]], [[https://git.kernel.org/linus/5bd8aab55bc18a744577bff79a8c58b031e3c05d|commit]] * Add amdgpu.ptl module parameter for PTL control [[https://lore.kernel.org/lkml/20260205065130.654921-20-perry.yuan@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/d31098cb31ef6052ae1ac51e7e78bfcbe7ac90ea|commit]], [[https://git.kernel.org/linus/8ce9c73104e34f1fbb8d7f50468e4a62905331f2|commit]], [[https://git.kernel.org/linus/f9f9fe3a7efba665e1c17fb5186d616c4f0a350f|commit]], [[https://git.kernel.org/linus/c2396ee6143a364b013588af2e60759f449f2b60|commit]], [[https://git.kernel.org/linus/aa86e750d0ff79c179772b9d3a95375c02a7d191|commit]], [[https://git.kernel.org/linus/d51a0439358d4eacd8beb39df619998d8340d232|commit]], [[https://git.kernel.org/linus/dd61e27535a6f5cfb32a847b282d2e3d5aebf46f|commit]], [[https://git.kernel.org/linus/022f071db5eb4434824e52790542e648c9bcd77d|commit]], [[https://git.kernel.org/linus/950688d2417085f30feb6ec48c85eeda53841ea2|commit]], [[https://git.kernel.org/linus/b6dc8f753670e3833150482c1b7640b1fd3b30a3|commit]], [[https://git.kernel.org/linus/d31098cb31ef6052ae1ac51e7e78bfcbe7ac90ea|commit]], [[https://git.kernel.org/linus/82cfe59ba4679647c776367dd6914c6310c1888e|commit]] * Auxless ALPM support [[https://lore.kernel.org/amd-gfx/20260513143213.1852892-22-IVAN.LIPSKI@amd.com/|(cover)]], [[https://git.kernel.org/linus/d7e41c6f513ef59e890d9fb34a2631fdf6d87789|commit]], [[https://git.kernel.org/linus/d40fb392af659c4a02b560319f226842f6ec1a95|commit]], [[https://git.kernel.org/linus/ba5e95b43b773ae1bf1f66ee6b31eb774e65afe3|commit]], [[https://git.kernel.org/linus/3bfb08576cdd6b1aa228772d82b0ddc1f1b3cf86|commit]], [[https://git.kernel.org/linus/775054e27e2e033b7544896eb526af7d196f1587|commit]], [[https://git.kernel.org/linus/ba4caa9fecdf7a38f98c878ad05a8a64148b6881|commit]], [[https://git.kernel.org/linus/468b02d3f212b5e528d8a40d06bf26e7f3fb4a64|commit]], [[https://git.kernel.org/linus/633d6d808d56b73c5455f17f3b082f4c26b38d5f|commit]] * Add guest driver CUID support [[https://git.kernel.org/linus/3635e1104aa21a01c2e6e7dde02a5b3641f4c46c|commit]] * amdkfd: Add kfd_ioctl_profiler to contain profiler kernel driver changes [[https://git.kernel.org/linus/a789761de3053d25f03787ac40897dbea14ee368|commit]] * i915 * Introduce pin_params.needs_low_address [[https://git.kernel.org/linus/19fa21941c00107cefa0cbe962412977e3f9530a|commit]] * Add support for pipe background color [[https://git.kernel.org/linus/e2d57ceaa72d074273b42fbe0d03b74f87d8b583|commit]] * panels * Panel replay bw optimization [[https://lore.kernel.org/intel-gfx/20260330133620.3750559-1-animesh.manna@intel.com/|(cover)]], [[https://git.kernel.org/linus/3d353d6c535319894c3e1b9349cae0531159f087|commit]], [[https://git.kernel.org/linus/aa46f5470cb1c62740dc8e7125b8ae53d151066f|commit]], [[https://git.kernel.org/linus/ff1b43b7db95650976f9568bb0d62e59ec66e605|commit]] * simple: add Waveshare LCD panels [[https://lore.kernel.org/devicetree/20260412-ws-lcd-v3-0-db22c2631828@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/7fd2875a932276926052652aaa44fd29a950b015|commit]], [[https://git.kernel.org/linus/17394e05b295e4936e0ed50d2f02ed7f08fd4f7d|commit]] * Add panel driver for !ChipWealth CH13726A based panels [[https://lore.kernel.org/devicetree/20260426-ch13726a-v7-0-554247c569e5@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/889898e011b281e77f2ae03c32246000daa3ef26|commit]], [[https://git.kernel.org/linus/3ee01b8647b5ed894c8a18aafb4ea51b4fa05ccf|commit]] * Support Waveshare DSI TOUCH kits [[https://lore.kernel.org/devicetree/20260413-waveshare-dsi-touch-v3-0-3aeb53022c32@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/0eb86d3622d20679a4c64606df4e8cd6af5398e6|commit]], [[https://git.kernel.org/linus/4a70ba67ee5f8ba3a563611eed6ff41eac2b41ed|commit]], [[https://git.kernel.org/linus/d13d9306acac0a71c567154a4e1b3ca9d5c58cc0|commit]], [[https://git.kernel.org/linus/7ae674a399b6d83ab9b463adb61cc0b64e298eaf|commit]], [[https://git.kernel.org/linus/17b2ab777384d04cae0e5c1e19287d16369e745d|commit]], [[https://git.kernel.org/linus/a8c56e00c608d5c70eb89464676ea0b3cdcb1ce6|commit]], [[https://git.kernel.org/linus/1af0feaca130e7fef016184f85f803385de13ba0|commit]], [[https://git.kernel.org/linus/dd0d0a487172bbe9626efc59a43d5dfbea64cdd4|commit]], [[https://git.kernel.org/linus/917e888d38fa1e81781da39daceffad41e9d2109|commit]], [[https://git.kernel.org/linus/c3b595b16cd2830bf755b4385b19db41f2c238a8|commit]], [[https://git.kernel.org/linus/0a26b74898a5d385fa9226475d7d2d3afef1716b|commit]], [[https://git.kernel.org/linus/eb019688f2a97bb95384853072de3a88b981f1f3|commit]], [[https://git.kernel.org/linus/b55a4b5d4769a650f52ea3f1ae680610169d125e|commit]], [[https://git.kernel.org/linus/ba362fb2e7fe5676b388da4fd976c993046e3611|commit]], [[https://git.kernel.org/linus/5a7770a06f38152e50e3fa8d1acd77d0ef259c3d|commit]], [[https://git.kernel.org/linus/13414cfd4839804b924ad9cdf0337d3c335a1943|commit]], [[https://git.kernel.org/linus/4c95b2b7d49edc5846730970cef322a6d8d967ba|commit]], [[https://git.kernel.org/linus/e43a8e3ad8fa3c2c2220a06fa46545c7ff82a9b7|commit]], [[https://git.kernel.org/linus/07853e95424869059d7ce1cd25c800f88ee03e95|commit]], [[https://git.kernel.org/linus/8cd19f5560218bf263b8ffc622ceb4bc329b3bf5|commit]], [[https://git.kernel.org/linus/79f44c8acfe66ff8cbed5626e2535245cfcf43cf|commit]] * simple: Add AM-1280800W8TZQW-T00H [[https://git.kernel.org/linus/adcea8fcedb67cbd2f8a164393526f26c36c3dbd|commit]], [[https://git.kernel.org/linus/6acb810ebc5d8dea5c250326c14dc44e32dc8e92|commit]] * panel-edp: Add AUO B133HAN06.6 and BOE NV133FHM-N4F V8.0 [[https://git.kernel.org/linus/5dd1ff95c623b8118ccaae3242119b8552f7b98f|commit]] * panel-edp: Add and update multiple AUO, BOE, CMN, and IVO panels [[https://lore.kernel.org/linux-kernel/20260506170607.10813-1-terry_hsiao@compal.corp-partner.google.com/T/|(cover)]], [[https://git.kernel.org/linus/4c34cdb93ea187b46d287a77a8946268a7d24286|commit]], [[https://git.kernel.org/linus/a58ff7da4835e76a5ffc078ecfd2773de90e5d8c|commit]], [[https://git.kernel.org/linus/0333bfa70852b153e5f59a447abdfc6352dbb11d|commit]], [[https://git.kernel.org/linus/9abe13a0598a8dae9a24c1cfea5643f8e12b49ed|commit]] * panel-edp: Add CSW PNB601LS1-2 and LGD LP116WHA-SPB1 [[https://git.kernel.org/linus/e88b5cc6d6e5b1ba257f00e5c186ba137e6e8bc3|commit]] * simple: Add Displaytech DT050BTFT-PTS panel [[https://git.kernel.org/linus/b70c6922072f20898d5d0ec7931afd2384e567e5|commit]] * simple: Displaytech DT050BTFT-PTS panel [[https://git.kernel.org/linus/b70c6922072f20898d5d0ec7931afd2384e567e5|commit]] * simple: Add Startek KD070HDFLD092 panel [[https://git.kernel.org/linus/247e7480c13e77079b71e783c478fc7027974161|commit]] * Add support for TSD TST070WSBE-196C 8" MIPI-DSI panel [[https://lore.kernel.org/devicetree/20260428-imdt-dsi-display-v2-0-cf7294b5d7d6@imd-tec.com/T/|(cover)]], [[https://git.kernel.org/linus/9f5beca48f1a70a730c05bd62fe70295a1a36839|commit]], [[https://git.kernel.org/linus/a0732f5d5803385d8eef16b049f5cdded45bfebb|commit]] * Add nec lcd technologies nl6448bc33-70c panel support [[https://lore.kernel.org/devicetree/20260518-v7-1-topic-panel-simple-nl6448bc33-v3-0-21ea14a6e835@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/7a1d12f6f9305578641d3fd0ab01777e511f1785|commit]], [[https://git.kernel.org/linus/23c8c2cd3d4a2b65c21d31cf91e81d5e0b81ecd5|commit]] * bridge * Add support for Triple 10-BIT [[https://lore.kernel.org/devicetree/20260303082038.11352-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/f7e677a23701a95e71569be88759bf195fd9a42d|commit]], [[https://git.kernel.org/linus/147782489b48e7bda472151cee48985d6704a919|commit]], [[https://git.kernel.org/linus/7dbca56a79fedf40106baffbc8b0e15f1e54098b|commit]] * tc358768: Long command support [[https://lore.kernel.org/linux-kernel/20260311-tc358768-v2-0-e75a99131bd5@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/47d758a5849490d0e6376e384af29dba2934b41b|commit]], [[https://git.kernel.org/linus/6b2bb5438bcfd7bad868665cd2aed1caf9ba3f2b|commit]], [[https://git.kernel.org/linus/ff5578789084e7ca2be8c2e628f8bfe1327d6e1b|commit]], [[https://git.kernel.org/linus/b8eed179f08f57de15ad681b294adc422663d455|commit]], [[https://git.kernel.org/linus/2c7d48c75c90b42facdeaa9e06a21220fcdc8809|commit]], [[https://git.kernel.org/linus/9b6eefdc8c21ac1527c934a19d0e1f3fa79537be|commit]], [[https://git.kernel.org/linus/921578cf373981eba92774a27f7644a11282cf89|commit]] * msm * Add PERFCNTR_CONFIG ioctl [[https://lore.kernel.org/linux-arm-msm/20260526145137.160554-1-robin.clark@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/6477bd5ef0f696484fc12ae7a3902e038df1f71d|commit]], [[https://git.kernel.org/linus/e8c4d60f5372a7b5d4f74cc71685cd185c3e8de0|commit]], [[https://git.kernel.org/linus/9f860dbf0bb691604d7da612148c390ae9bdaa26|commit]], [[https://git.kernel.org/linus/90528176204b7ae003477e0b37a24d540f26531d|commit]], [[https://git.kernel.org/linus/5442bafd7de590aba13ae4fe6ae3b8a8b9106d86|commit]], [[https://git.kernel.org/linus/c897d550f0b4efdb19e71622dc9ec0c5d1b4df70|commit]], [[https://git.kernel.org/linus/4250923945d05311f41411e8e9d3cffc72a9c523|commit]], [[https://git.kernel.org/linus/90f2b0461b0cf41b1553d9ec51fba0d6bb1695b2|commit]], [[https://git.kernel.org/linus/8766dbc37d7caac76785fd3dc1d8a8f87355bf35|commit]], [[https://git.kernel.org/linus/02195633635c42db9ca29f3c9fa3a758bc1a2cee|commit]], [[https://git.kernel.org/linus/5eedc8c2d0b52a44cecbd12641524b3616070c0c|commit]], [[https://git.kernel.org/linus/5ef26a2a4b2e55b07984e17baec179b849b52bcc|commit]], [[https://git.kernel.org/linus/a7b378c949373b6bb4c5a89ffc53085736959dcf|commit]], [[https://git.kernel.org/linus/d4939b77c118dc3ed78334a897b4bb1c98311c53|commit]], [[https://git.kernel.org/linus/45d4a295b307b67c8a05d5d31a31385d0893553c|commit]], [[https://git.kernel.org/linus/632ad5510114eb3866bc519bd216860d48ccf77c|commit]] * Add support for adreno 810 gpu [[https://lore.kernel.org/linux-arm-msm/20260528-adreno-810-v7-0-7fe7fdd97fc2@pm.me/T/|(cover)]], [[https://git.kernel.org/linus/2baf19c14ea342ad6f943148f5e9605340928008|commit]], [[https://git.kernel.org/linus/b780f888d9fc2303b666d30f5078c069e496fc71|commit]], [[https://git.kernel.org/linus/d8bf2eddd6520c5806334a22d817f58df8c8c018|commit]], [[https://git.kernel.org/linus/b150b562ec0607f068ed75eddfc31553976a874f|commit]], [[https://git.kernel.org/linus/c2c083bbe07bd65f376d1ce7e136838427f494b1|commit]], [[https://git.kernel.org/linus/9a967125427e03c7ebc24d7ad26e9307e8403d4e|commit]] * Mdss / dpu bringup for milos [[https://lore.kernel.org/phone-devel/20260501-milos-mdss-v3-0-58bfc58c0e13@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/41abd39cd1396aa1ad9c2bece6443baed3a01d18|commit]], [[https://git.kernel.org/linus/e0e560c56b6c488c30a445632bb2053a85af62f5|commit]], [[https://git.kernel.org/linus/d55d6176f3b5f458a26d095cbe3b75a2c6836383|commit]], [[https://git.kernel.org/linus/1bfae9f58318bb8cf921d806df8c5a420021ec41|commit]], [[https://git.kernel.org/linus/11afc9eb680df36823a3d958f44f1d18f5370edf|commit]], [[https://git.kernel.org/linus/0203d3cc77b1584a7a601b413df3e027f85c049c|commit]], [[https://git.kernel.org/linus/ccb0472a54a5d2152ce2e494d8a8cdc53a54d8f5|commit]] * nouveau * fix GA100 issues [[https://lore.kernel.org/lkml/20260430223838.2530778-1-ttabi@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/c9e3878ae2f57fd6786279cf5d9dc6e6e1b52f5a|commit]], [[https://git.kernel.org/linus/604d0efb17cc0dd197e089134736ac2698d5fca7|commit]], [[https://git.kernel.org/linus/3cee1a10b8a65af38826e8a57caa6bf613706c48|commit]], [[https://git.kernel.org/linus/0094a7a95d52ba86cf66ff42bf5482091364d5c7|commit]], [[https://git.kernel.org/linus/0ae50100b228029e8a71dea1d5891ad2f04ddae6|commit]], [[https://git.kernel.org/linus/16d4747cd152861fef8d5323c6c1d3ed96c3d102|commit]], [[https://git.kernel.org/linus/c1cf2d5db80ce91a85855bbaf4da85ff603e089a|commit]], [[https://git.kernel.org/linus/4beeac5d2015df1017732ce4c57d634f557dd304|commit]], [[https://git.kernel.org/linus/f0de0f89cc1e086157958c296b09caeb74072111|commit]], [[https://git.kernel.org/linus/61de054a772a1feda6364931ab1baf9038abf1c8|commit]] * nouveau: expose VBIOS via debugfs on GSP-RM systems [[https://git.kernel.org/linus/a5640267d6d35b89ebe6418da90a952a247215a5|commit]] * Add rz/g3l gfx support [[https://lore.kernel.org/devicetree/20260320164158.487406-1-biju.das.jz@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/53b67da5f043d6d76de025cb1b7efd4a5151c697|commit]], [[https://git.kernel.org/linus/1a14d961660eaa17f21918d0cdf75a00b613ee05|commit]], [[https://git.kernel.org/linus/20ba3318eb19da7907ceb461ef3b5d65204070e6|commit]], [[https://git.kernel.org/linus/45046f8718586376b00d3755352cd3e9992b3630|commit]] * panthor * Add a GEM shrinker [[https://lore.kernel.org/lkml/20260401134854.2275433-1-boris.brezillon@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/71c8224a18825102ee1e5e70498f96f6c2d2a81d|commit]], [[https://git.kernel.org/linus/83d4d8eac73ffe9d9fefe7429b75b314569ae02d|commit]], [[https://git.kernel.org/linus/cf91128f3d5fd99a333ca4ecc0f13049a7024b0c|commit]], [[https://git.kernel.org/linus/f36adaaf3d0cd8423086ad2ee332970bab0dacd3|commit]], [[https://git.kernel.org/linus/2b207c47c9cfcdfbaff1be61d09c71b1edc3f0ce|commit]], [[https://git.kernel.org/linus/68cbf96b1e9b96af3ad866b96b5c2092cb915c6c|commit]], [[https://git.kernel.org/linus/f80c3886ed7b297518e375dbbfb69ceb7b9e7610|commit]], [[https://git.kernel.org/linus/1013bf53650ecabaf36433be6e178322095270af|commit]], [[https://git.kernel.org/linus/3218aae54542f7f079bc9777c71b052de2208819|commit]], [[https://git.kernel.org/linus/fb42964e2a76f68a5fb581d382b5d2be2d5bda9b|commit]] * sysfb: Support basic power management [[https://git.kernel.org/linus/54068b05c85d75746034ef75721b240823cc872d|commit]], [[https://git.kernel.org/linus/38699486318e5b6b423aabd35476c37580f2a0ec|commit]], [[https://git.kernel.org/linus/41820323cc0f22d6e6b0385c22b4cb85ec0cb722|commit]], [[https://git.kernel.org/linus/03069f19eefb44c9a75ae84ddadc8970111b3bfd|commit]], [[https://git.kernel.org/linus/c813bdae379f95145c77be0ef075e28efd082af7|commit]] * tyr * firmware loading and MCU boot support [[https://lore.kernel.org/linux-kernel/20260424-b4-fw-boot-v4-v4-0-a5d91050789d@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/6c82e66e5e61331f72f1c25170ce7306e880067c|commit]], [[https://git.kernel.org/linus/6f3096c427e71cdacdfd5cf02907357d5f68cd0e|commit]], [[https://git.kernel.org/linus/09a796e7069f435d488545910eb1dc7135d30d75|commit]], [[https://git.kernel.org/linus/a9bc67761db8cb3207c977210c81be63a539b135|commit]], [[https://git.kernel.org/linus/610e892bdb57043c7769982c2bff0260b6007b75|commit]] * v3d * Power management for raspberry pi v3d gpu [[https://lore.kernel.org/linux-arm-kernel/20260331-v3d-power-management-v9-0-f52ff87bfd36@igalia.com/|(cover)]], [[https://git.kernel.org/linus/de1e32ef1d625ee4d717bcf10c23df2722324f62|commit]], [[https://git.kernel.org/linus/ffd7371ed4179827dcf401543b37b69e5781f924|commit]], [[https://git.kernel.org/linus/458f2a712ab42b7d3615208862922dc35fe90ef9|commit]] * verisilicon * Add hardware cursor support [[https://lore.kernel.org/linux-kernel/20260506175610.2542888-1-zhengxingda@iscas.ac.cn/T/|(cover)]], [[https://git.kernel.org/linus/9637867d78a7bc5e76b17fe6cb0be5e054fce973|commit]], [[https://git.kernel.org/linus/8c4ae218912554ef427440293cdb97319d17ca5d|commit]] * nova-core * firmware: Hopper/Blackwell support [[https://lore.kernel.org/rust-for-linux/20260411024953.473149-1-jhubbard@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/777123bf2be607701b397f07198370700d2bfbdd|commit]], [[https://git.kernel.org/linus/b3bdb42619c8fce6d6d5feb36ad33d184aaa4e3d|commit]], [[https://git.kernel.org/linus/a47e2cd4b1a9184330d43a4dba21e67548eda232|commit]], [[https://git.kernel.org/linus/46d455853da6aa20ce07a23cb053bcf5a87098eb|commit]], [[https://git.kernel.org/linus/3411e9aac6a63e000b10a6a65afb624194e92be3|commit]], [[https://git.kernel.org/linus/8ff326fa0aa19babae405b5fadeaa49b57b9a75f|commit]], [[https://git.kernel.org/linus/11a63a5335eb7b5da4ca38014fa83be5d437144d|commit]], [[https://git.kernel.org/linus/ee9414e6055bf3249f535bfe0f7d4e3c5a3e4b13|commit]], [[https://git.kernel.org/linus/c852faa9817981eb3fccd69e9a650d729e17d24a|commit]], [[https://git.kernel.org/linus/bd581ff381443db71c86d5be56f3f70b0030058f|commit]], [[https://git.kernel.org/linus/258a6f9ab13b809726d2f42da54b8d830e57f1dd|commit]], [[https://git.kernel.org/linus/ad5f9977a9a0070526d3d7f8f18e4652877a9def|commit]], [[https://git.kernel.org/linus/34599e07389fb3f44a79d5a4a4b64a04f4304271|commit]], [[https://git.kernel.org/linus/82eaa14e7efcbb3933083b4c27fd5496fbb1a4be|commit]], [[https://git.kernel.org/linus/4d789488d3bec3e2c6b7f282e29cfb1bec6b2c25|commit]], [[https://git.kernel.org/linus/6d6c3189f9b2b143efe1f536e8ea8b082e054a01|commit]], [[https://git.kernel.org/linus/ab42c32347ef1229b4ebeae6a10d4202a61c4463|commit]], [[https://git.kernel.org/linus/944a0fedca7ed226685d3b965dd1371ff34b3017|commit]], [[https://git.kernel.org/linus/e9e2a24d9493f50a3cc73e112b0dbdf91f319851|commit]], [[https://git.kernel.org/linus/fcdd74aa8ca6ca7f4922d92da932891996734d15|commit]], [[https://git.kernel.org/linus/d317e4585fa39bcee4d075f5c485494b0f238713|commit]], [[https://git.kernel.org/linus/a5bf742bc28a4e064059c8d137970e56669a21a0|commit]], [[https://git.kernel.org/linus/f66287cf155e47b604118ee1e7731ff634d8dbe9|commit]], [[https://git.kernel.org/linus/a69a9e23dce95a1b7315f73b29200a58e0f54830|commit]] * Add GA100 support [[https://lore.kernel.org/lkml/20260417191359.1307434-1-ttabi@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/c1dca0cb0e761568c448a6007855fe5879ad4d37|commit]], [[https://git.kernel.org/linus/44dc8bd6b5b9af46eafa552fb9631e62e8bbf3ac|commit]], [[https://git.kernel.org/linus/cedbbc383ab3e21331ef36f90e0dfab89b58934d|commit]], [[https://git.kernel.org/linus/21decd6324902503692529a13523969599755a13|commit]], [[https://git.kernel.org/linus/1a5a3f20501574f843c3b77ae1581dc431826762|commit]], [[https://git.kernel.org/linus/a4c6d5d146157228bc03429cf7926d8a14072c84|commit]] * Run unload sequence upon unbinding [[https://lore.kernel.org/linux-kernel/20260529-nova-unload-v7-0-678f39209e00@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/a355d2dd381d129135d1199d66a7f96490551bac|commit]], [[https://git.kernel.org/linus/96c377e999737cddbfbf1de975b5285fa047c4bc|commit]], [[https://git.kernel.org/linus/adb99ce3cc78d277a719f15a8131eafc60162f22|commit]], [[https://git.kernel.org/linus/75d59327367dc6e2141cf4e11cdf57c55851b5c2|commit]] * drm_ras * Add clear-error-counter command to drm_ras [[https://lore.kernel.org/lkml/20260409073318.2909379-4-riana.tauro@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/ee18d39a087792d7c11e6e87b546aff435a3cc58|commit]], [[https://git.kernel.org/linus/e12be2535cca2e0b457175a0ee25d1c0d1fb909f|commit]] * gud * Add RCade Display Adapter VID/PID pair [[https://git.kernel.org/linus/ac5ac0acf11df04295eb1811066097b7022d6c7f|commit]] * console: mdacon: remove this obsolete driver [[https://git.kernel.org/linus/1795dc528c13c4cb731c6db2322d0c995c997fa4|commit]] * fbdev: remove Hercules monochrome ISA graphics adapter driver [[https://git.kernel.org/linus/37a91b995952a556a6eb90c31736ee773b86999c|commit]] * Add new max25014 backlight driver [[https://lore.kernel.org/linux-leds/20260407-max25014-v8-0-14eac7ed673a@gocontroll.com/T/|(cover)]], [[https://git.kernel.org/linus/5fcbbedec9dfce78044eee922bf2030e1bd03faa|commit]], [[https://git.kernel.org/linus/3014ad47cfaf454cb0bbee353272beacd1e7c4bc|commit]], [[https://git.kernel.org/linus/3c862bdf2e2ecd30683fe0b1e8871194845fc171|commit]], [[https://git.kernel.org/linus/85794a56afe9c580136424c375e46e40c7326dce|commit]] * Add new pixel formats for xilinx zynqmp [[https://lore.kernel.org/linux-kernel/20260423-xilinx-formats-v10-0-c690c2b8ea89@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/7e688812395eec7871ca4437f9bd817ee98398f0|commit]], [[https://git.kernel.org/linus/b718f041842071b8c09faf658e3adca7b506e1bb|commit]], [[https://git.kernel.org/linus/c0f8aaa7dcecee19a773a5454665998cdc848fda|commit]], [[https://git.kernel.org/linus/e8e388c301809378f8a4789192dd965eb085dddb|commit]], [[https://git.kernel.org/linus/7db42b1718dac7aa67ec68acad177164516af71d|commit]], [[https://git.kernel.org/linus/3c8ed384503f42b985b48310fbe611418b3d5370|commit]], [[https://git.kernel.org/linus/f5e096f0f494fbab20f0879395f0d3f2033b0ca1|commit]], [[https://git.kernel.org/linus/33822407c406e822ca969c3d52479e8be70d208d|commit]], [[https://git.kernel.org/linus/ed920c2abb421ed137f9104daad7a2cadaeb1711|commit]], [[https://git.kernel.org/linus/620e989e66c295e75cfd5875da70a7f6327d62d1|commit]], [[https://git.kernel.org/linus/b7e96821520f641e43aa788da5e011ac35e262bd|commit]] * Add du support for rz/t2h and rz/n2h socs [[https://lore.kernel.org/linux-renesas-soc/20260519160825.4082566-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/62ca607fcb1f442e909e6729fa9e1e7a18e6ae5d|commit]], [[https://git.kernel.org/linus/332d72b9513cee25682108b5b37fe9fe9468ba73|commit]], [[https://git.kernel.org/linus/4f2e625f3d5d27242f0f18ba106b9442d29a51ad|commit]] == Power Management == * CPPC: Add CPPC v4 support (ACPI 6.6) [[https://lore.kernel.org/lkml/20260527194626.185286-1-sumitg@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/71e1815113f7e37e7e39ed69526cd7d399e5a0c9|commit]] * Add lecarc acpi ids for designware gpio, spi, i2c [[https://lore.kernel.org/linux-acpi/20260520081140.637637-1-thomas_lin@lecomputing.com/T/|(cover)]], [[https://git.kernel.org/linus/d01bf517cbbd5a4b0c16ba2d5107bda0e361b00c|commit]], [[https://git.kernel.org/linus/019947c495850461242fdcc0780258805595036c|commit]], [[https://git.kernel.org/linus/fae5e96bb646e7a4f588973cd94f6b1947377d58|commit]] * thermal/drivers/amlogic: Add support for secure monitor calibration readout [[https://git.kernel.org/linus/18d65de8157c93666b2d42f1d46330ee4cb030b7|commit]] * thermal/drivers/qcom/tsens: Atomic temperature read with hardware-guided retries [[https://git.kernel.org/linus/e28ef2f3ccea276436bd0f30c93f99e764ba492b|commit]] * thermal/drivers/qoriq: Add i.MX93 tmu support [[https://git.kernel.org/linus/e058b025906ee13b1cb3755073abe6ac3b297de1|commit]] * thermal/drivers/samsung: Enable TMU by default [[https://git.kernel.org/linus/de4483d4447981292c68d45ea643158bb8ca92b9|commit]] * thermal/drivers/spacemit/k1: Add thermal sensor support [[https://git.kernel.org/linus/296a977f2bac45759a427dc57a21edb628f5c86c|commit]] * Support cooling device with ID in the OF [[https://git.kernel.org/linus/298a2d461f1ffd75e4ac06774f42e1f018c3a840|commit]], [[https://git.kernel.org/linus/876bb45f36939307c1e376243d862ad1b1a5f0cd|commit]], [[https://git.kernel.org/linus/61e7550fe8b26c2b132eff2ced57c6b2dd93ca7f|commit]], [[https://git.kernel.org/linus/5fa8b4225bec1fde0862a2d19964429662841384|commit]], [[https://git.kernel.org/linus/27559121b2e3ffbdfdbb77b528ba1015e2617daa|commit]], [[https://git.kernel.org/linus/8e1529e79385608002e126730d32bd91d7427795|commit]], [[https://git.kernel.org/linus/37324803f049bee0d2b97941e3fbdf35db9a66b3|commit]], [[https://git.kernel.org/linus/3570cb58e3171c8a65d2cedc0371ed412e0caff6|commit]], [[https://git.kernel.org/linus/2baee1cc03c65a35f0d053e5c5e646a3bdf6ed85|commit]], [[https://git.kernel.org/linus/6d0c207c0a95bc4832fe0189973f64734ef5bfc0|commit]] * intel: intel_tcc_cooling: Add Arrow Lake CPU models [[https://git.kernel.org/linus/f2f2ebd675c5518115286969d6daa3ff45306d83|commit]] == Storage == * nvme: Enable PCI P2PDMA support for RAID0 and NVMe Multipath [[https://lore.kernel.org/linux-block/20260513185153.95552-1-kch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/7882834048f110931275357db60dccff906dc96a|commit]], [[https://git.kernel.org/linus/02666132403aec8fc5de315002894f713ef17dbc|commit]], [[https://git.kernel.org/linus/fb0eeeed91f3236133383445fee5cc8f20330e6e|commit]] * nvme: export additional diagnostic counters via sysfs [[https://lore.kernel.org/linux-nvme/20260516183709.269937-1-nilay@linux.ibm.com/|(cover)]], [[https://git.kernel.org/linus/37afebc79a11bd889fe8e0a98c9ae034c3cff323|commit]], [[https://git.kernel.org/linus/ab5af2903baa472930c94a421efdd22a49036213|commit]], [[https://git.kernel.org/linus/66ee95b3d490d78283b6e92cb4230d4a04c99817|commit]], [[https://git.kernel.org/linus/30ab37a128000600dcaae2b35d4a594e304dfe7e|commit]], [[https://git.kernel.org/linus/76b5e1591e8cfa986971d177b5de27ce20ca056a|commit]], [[https://git.kernel.org/linus/a8e434cb033817b29e7ad03e8df43071a1c7e90e|commit]], [[https://git.kernel.org/linus/29aafaaf582b342ef3e2182cefd0c2aac6e9f3a8|commit]], [[https://git.kernel.org/linus/3c8c284dfcdfce81a02fe3c911196d9876468ae4|commit]] * nvme: enable passthrough iostats [[https://lore.kernel.org/linux-block/20260528010041.1533124-1-kbusch@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/b7f40ab50190e2500c3c297d15e00040dca47feb|commit]], [[https://git.kernel.org/linus/7d6eb455ecf0f95c54257ae372ac1272cff834e3|commit]] * nvme: Refactor and expose per-controller timeout configuration [[https://lore.kernel.org/linux-nvme/20260514083255.41109-1-mlombard@redhat.com/|(cover)]], [[https://git.kernel.org/linus/165a5d4fbe5c9e09d7cf82ff431dd74a8d6c0b75|commit]], [[https://git.kernel.org/linus/23b6d2cbf75ff15647efbb7c0e5c03bd7ed1fe1a|commit]], [[https://git.kernel.org/linus/61b99f24f0d56867d83b49f890790dd01ddd7675|commit]], [[https://git.kernel.org/linus/97960b93d32a0230362c2f4dce021e98421c5a91|commit]], [[https://git.kernel.org/linus/f702badaf7d31dc3dea6c66da92b5f35fadd89dc|commit]], [[https://git.kernel.org/linus/233bbeb4a47cbead8c0471c0b8daec141033eae4|commit]], [[https://git.kernel.org/linus/00d7b33351aac0ea55d17167561e12bbeca73138|commit]] * scsi: ufs: Add persistent TX Equalization settings support [[https://lore.kernel.org/linux-scsi/20260424151420.111675-1-can.guo@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f2cb7c01f48caffb38e12481949dea4f9beb65dc|commit]], [[https://git.kernel.org/linus/949af038b6d2a41c54502179c5a8ddfb3d57dd17|commit]] == Drivers in the Staging area == * atmel-isc: Remove driver [[https://git.kernel.org/linus/ffdb7c4ecaed0325cbc20d78f601fec235c49487|commit]] == Networking == * Bluetooth * btmtk: add event filter to filter specific event [[https://git.kernel.org/linus/47f4bf27eb5ab006b0022091c1ec1682acb7e800|commit]] * btusb: Add Realtek RTL8922AE VID/PID 0bda/d922 [[https://git.kernel.org/linus/480dcc68f2826a9768e6fc9e81f02078c1ed0e01|commit]] * btusb: Add Realtek RTL8922AE VID/PID 0bda/d923 [[https://git.kernel.org/linus/5612ee230a33c450976c3bcaea174f1d816a2697|commit]] * btusb: Add TP-Link UB600 for Realtek 8761BUV [[https://git.kernel.org/linus/bc597f0cc44f0b173c50ee986a047219cd559ee9|commit]] * btusb: Add USB ID 2c4e:0128 for Mercusys MA60XNB [[https://git.kernel.org/linus/88b4d528eda4ac71c2952b3458f2abbc80a91cd2|commit]] * btusb: Add support for Intel Lizard Peak 2 (0x8087:0x0040) [[https://git.kernel.org/linus/5269f7231c2b78774c39ae3a27ce2c497cd5aff4|commit]] * btusb: Add support for TP-Link TL-UB250 [[https://git.kernel.org/linus/ea77debfe443f505a4edbb7f21340a583a8a143f|commit]], [[https://lore.kernel.org/linux-bluetooth/20260603035818.926654-1-cxs1494089474@gmail.com/T/|(cover)]] * btusb: MT7922: Add VID/PID 0e8d/223c [[https://lore.kernel.org/linux-bluetooth/20260309025850.3329543-1-chris.lu@mediatek.com/T/|(cover)]], [[https://git.kernel.org/linus/fd5dc066b43eb8ae63f713aef704385c686b16e3|commit]], [[https://git.kernel.org/linus/69b2f05df3ee63e1273608cdb81a7d664e9de2b8|commit]] * btusb: MT7925: Add VID/PID 13d3/3609 [[https://git.kernel.org/linus/a55ef87b61b26097373fe8cbd2ead36582a8df4f|commit]] * RDMA/efa: Add checksum support for admin responses [[https://git.kernel.org/linus/7de165740ce8d006cbe80bca9d8207ba05a4cfc5|commit]] * RDMA/efa: Implement the query port speed verb [[https://git.kernel.org/linus/20ff9350862468af21b46cae2c22d17d6ec637f9|commit]] * RDMA/efa: Report 800 and 1600 Gbps link speed [[https://git.kernel.org/linus/7d4f515b66ebce2bb2ba09e8be4ff615a1579031|commit]] * RDMA/hns: Add write support to debugfs [[https://git.kernel.org/linus/bb50659745fa978784571e1402b89fb5f02ff875|commit]] * RDMA: Extend packet pacing support to UD and UC QPs [[https://git.kernel.org/linus/e1008f19fa977d5b7c3912420e3b46b0a33e5316|commit]], [[https://git.kernel.org/linus/29e0a014ddfbdbd6b02684304dddbcf9161034ae|commit]], [[https://git.kernel.org/linus/915bbc8578e3f784b35bd9e5fa06a3b0720eb292|commit]], [[https://git.kernel.org/linus/1f307090e9575005ae3fc5cbb9d9520dcaf5086d|commit]], [[https://git.kernel.org/linus/8cca27313636c3e2cfc5f8071abfbbfdcf3138f8|commit]] * Support perf mgmt for rxe [[https://lore.kernel.org/linux-kernel/ba50cde9-b26c-4dac-a494-0caa00603928@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/dd677609753c847a433cfbc90a6ce9c18281e6a3|commit]], [[https://git.kernel.org/linus/ed7e5e4a932a05aba0fd8c27859c829882ac0b01|commit]], [[https://git.kernel.org/linus/1648bcf1ed5cc32c6d93f9f4fcd3876e789b1f8f|commit]], [[https://git.kernel.org/linus/c67bd973695c33f448a2789de5da765c04a78c71|commit]] * b43: Complete n-phy rev 8 + radio 2057 rev 8 support [[https://lore.kernel.org/linux-wireless/20260528-b43_complete_n_phy_rev_8_radio_2057_rev_8_support-v4-0-464566194d47@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/682edc28b91c2f1bba32e1c6815c33ef799ec538|commit]], [[https://git.kernel.org/linus/ee81dc7636fb808a5f480d2767130a7cf3554f9a|commit]], [[https://git.kernel.org/linus/2691a1ae6bcc7c8a12ba10af99d1283a0bf69e9d|commit]], [[https://git.kernel.org/linus/454518d95d07ce0ea3d9f16cef33fd17e3d8a1f0|commit]], [[https://git.kernel.org/linus/894f1482b2f9476d23b803c284fa06af31ecd018|commit]], [[https://git.kernel.org/linus/631c004e5f4549519f29d1acdb1dd92ac843392d|commit]], [[https://git.kernel.org/linus/21352612198c83a8441482abbf3bd45e4f128dd0|commit]] * virtio: Add virtio CAN driver [[https://git.kernel.org/linus/083082a4e6d8311c91ac7e1d59426514c5e1c04b|commit]] * Add basic driver framework for alibaba elastic ethernet adaptor [[https://lore.kernel.org/netdev/20260514095138.80680-1-xuanzhuo@linux.alibaba.com/T/|(cover)]], [[https://git.kernel.org/linus/4f68ffc45e94d20cc5b97f4d62f2f04e429b536a|commit]], [[https://git.kernel.org/linus/039ce329dfe6fb74f6394dcb59607425af8d0601|commit]], [[https://git.kernel.org/linus/4c45a51e5bf520a0e6189bce1825d44029a4ea32|commit]], [[https://git.kernel.org/linus/aa8bca4cf20027d5dd59a5de207ecb4720d910c8|commit]], [[https://git.kernel.org/linus/df9cad6baf43961ae5d069a58eb49365f2aae55e|commit]], [[https://git.kernel.org/linus/aef5055e9764a4b105ec5044150382be1bf62a87|commit]], [[https://git.kernel.org/linus/5f4f7bc0ed1180a1bff423c39e05256172805b5d|commit]], [[https://git.kernel.org/linus/4e88fb3234c864b67338ca8d48ca515cf9992ab6|commit]] * gve: Add support for ptp gettimex64 [[https://lore.kernel.org/netdev/20260514225842.110706-1-hramamurthy@google.com/T/|(cover)]], [[https://git.kernel.org/linus/55687124a86fb6a747ba099b1257f416faaeb143|commit]], [[https://git.kernel.org/linus/4bbcd7e24aaaf6870b0b0d65c7b683f0019aabbe|commit]], [[https://git.kernel.org/linus/22b2aae747f78366f117ded13f3c9de34a568baf|commit]] * ice: Add tx reference clock index handling to an restart command [[https://lore.kernel.org/netdev/20260605152030.891570-11-grzegorz.nitka@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/e075d7768386235f4a08d7e04d02c90ce51fd64e|commit]], [[https://git.kernel.org/linus/4128bda8fc1d6c845a5259328193aaec4529b345|commit]], [[https://git.kernel.org/linus/e075d7768386235f4a08d7e04d02c90ce51fd64e|commit]] * dpll/ice: Add generic DPLL type and full TX reference clock control for E825 [[https://git.kernel.org/linus/9375487c0c78817b3651e2621d648c6198757c41|commit]], [[https://git.kernel.org/linus/c191b319f20873cd62320cf738a53875827cd89d|commit]], [[https://git.kernel.org/linus/32239d600236a986c8e6d16aa814d3d91066b244|commit]], [[https://git.kernel.org/linus/e83b403eb142be18d223fc599c0ac45519053671|commit]], [[https://git.kernel.org/linus/df0ba51ccf873e533669578104981109217d8201|commit]], [[https://git.kernel.org/linus/0a5c720a7d57d2287d5566c4ad93ee26b7c06845|commit]], [[https://git.kernel.org/linus/1a2292101c0dc422466c673031de03d2e871adbe|commit]], [[https://git.kernel.org/linus/0bf47f722fa9e4ecdab7497afc1af64330540bed|commit]], [[https://git.kernel.org/linus/521b6d5de08d506f0e3e1bf0a9b14766140107fc|commit]], [[https://git.kernel.org/linus/5db36ee62849eb084e345e5559c8fd5fe98159a3|commit]] * Enable eee for e610 devices [[https://lore.kernel.org/netdev/20260120134434.1931602-1-jedrzej.jagielski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/54f63d24ce2025db818dc4bcf602593f0cf81d5d|commit]], [[https://git.kernel.org/linus/d904eb0f2d52e917881410fece9c4d9c9306755f|commit]], [[https://git.kernel.org/linus/c5f1ee0c6a7b5d54bd13e158490e960824dd6e10|commit]], [[https://git.kernel.org/linus/01502a9d054280412c0cfd63157422600104b92b|commit]], [[https://git.kernel.org/linus/e4607a52723fb97ae2b5cbfaa108f99be8a82af1|commit]], [[https://git.kernel.org/linus/52b02d04c801fff51ca49ad033210846d1713253|commit]] * spectrum_ethtool: expose per-PG rx_discards [[https://git.kernel.org/linus/a2b5e31b668fbd59b3d5bff634d923fe9d1ac8b4|commit]] * mv88e6xxx: SERDES on mv88e6321 [[https://lore.kernel.org/netdev/20260528210310.1365858-1-fidan.aliyeva.ext@ericsson.com/T/|(cover)]], [[https://git.kernel.org/linus/1a79978dd271859c98bd91aa733f224702ca0355|commit]], [[https://git.kernel.org/linus/348a46c93e53d4f352cde724062599237dfd5098|commit]], [[https://git.kernel.org/linus/f456c9b936b62d755719acd929c8de57c2f1affe|commit]] * mlx5: Support state get/set for satellite PF ports [[https://lore.kernel.org/netdev/20260521110843.367329-11-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/652be53b37d87313adaf255943e00e770d8708f5|commit]], [[https://git.kernel.org/linus/ea0dada7194e02ff9d2c785cc83949bd51496bf3|commit]] * mlx5: ICM page management in VHCA_ID mode [[https://lore.kernel.org/netdev/20260506133239.276237-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/8ca32460815f6876095be8798adcf5ab982e94de|commit]], [[https://git.kernel.org/linus/5796d9fe0b883327d629f675894c47a1c7108d41|commit]], [[https://git.kernel.org/linus/1fba57c91416d8e06aae9f36382f6be2513c2c0f|commit]] * mlx5: Add satellite PF support [[https://git.kernel.org/linus/ed9671b8bd4f084b9b2798d3892c3c83f3c1010c|commit]], [[https://git.kernel.org/linus/69978da9bb7101911ff0f17d922914af701f092b|commit]], [[https://git.kernel.org/linus/171b7fb59f8da88f560323f46f810f404d768721|commit]], [[https://git.kernel.org/linus/7aed78522df2231cf7ad7c6ed4488479570c42e8|commit]], [[https://git.kernel.org/linus/beca1cd919e0d602b16d2ced91255e41de2dc0b8|commit]], [[https://git.kernel.org/linus/0b43d2b76cc2001cc619a59024648e6c1fedcba8|commit]], [[https://git.kernel.org/linus/90a6aabb74a4451cd72243a28f322dc28f158294|commit]], [[https://git.kernel.org/linus/e020a70672956b9d793ab7634f12f7d1ed122a59|commit]], [[https://git.kernel.org/linus/ac338d8011c0c8ad2d3b54b1ed5fc3cc5fee683b|commit]], [[https://git.kernel.org/linus/425ac0e7a6a00fb274eb237301075d5ec9acf83c|commit]], [[https://git.kernel.org/linus/652be53b37d87313adaf255943e00e770d8708f5|commit]], [[https://git.kernel.org/linus/ea0dada7194e02ff9d2c785cc83949bd51496bf3|commit]] * mlx5: Add vhca_id_type support to IPsec alias creation [[https://git.kernel.org/linus/c8300af614b2c48a67e13f6f481f42ee668d5526|commit]] * mlx5: Add switchdev mode support for Socket Direct single netdev, part 1/2 [[https://lore.kernel.org/linux-kernel/20260531113954.395443-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/cf6c4c0508a9a3858203b726bd3a3f9557449f67|commit]], [[https://git.kernel.org/linus/b48b6308dfaeae49fcda61b4066773cb5e8a9ce8|commit]], [[https://git.kernel.org/linus/2b1ba02c379f136efadcaad92ade8fa5c3068252|commit]], [[https://git.kernel.org/linus/2ca494dad9676301ecde1c9e214bfbf83d4c6326|commit]], [[https://git.kernel.org/linus/14a47f55c8def9d677a4307bdce88b40255e8505|commit]], [[https://git.kernel.org/linus/3cbce590b7f2e9f056ed803a05f9ee09ac4a49a7|commit]], [[https://git.kernel.org/linus/3c103110835d269aa50c6569c57ae230c893c756|commit]], [[https://git.kernel.org/linus/8b9fffb6d38b48a0900dbf72fce1dbc5336924de|commit]], [[https://git.kernel.org/linus/c3933a7a7f64e4f7b5ce2eea79d0e6950e833db7|commit]], [[https://git.kernel.org/linus/8698ddb07f874b01211885814c712b40563c9e95|commit]], [[https://git.kernel.org/linus/786b1d7486b0e635bd2466e466fd3e27796b8b42|commit]], [[https://git.kernel.org/linus/9f062b931daa63c4b53baa20d5487d5f7f8cee04|commit]], [[https://git.kernel.org/linus/0b1c4495aa007932e9cbd7b45a8037e7b4fe34b0|commit]] * mlx5: Add switchdev mode support for Socket Direct single netdev, part 2/2 [[https://lore.kernel.org/netdev/20260612113904.537595-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/597baeb467d8892e3804d3b33397187a49731a98|commit]], [[https://git.kernel.org/linus/95e26588c84b7fb0e91c0c544ea29168ffd3de70|commit]], [[https://git.kernel.org/linus/d5e77e4d3023c4d986d2aa5260c5212d8cc3027d|commit]], [[https://git.kernel.org/linus/4b918a19838994f5c946d249d03e24e8075c29cb|commit]], [[https://git.kernel.org/linus/13158554a3023ef36d6bc71c0ad8be20be2c67ff|commit]], [[https://git.kernel.org/linus/a1bfe9f1da8387f88c67d4ea1caf374357139621|commit]], [[https://git.kernel.org/linus/2a3fb8b2f450acc68a392d75afbac9c9ee636e71|commit]], [[https://git.kernel.org/linus/232de72bdea27c8ceada056bb3de21546441b202|commit]], [[https://git.kernel.org/linus/eaaf1ff178a0f95fb6c16c7fa8f76e6325c95277|commit]], [[https://git.kernel.org/linus/ebd629e700454bab4cc11762f73b87a9e4968a8a|commit]], [[https://git.kernel.org/linus/98d56915eef540f7bb9458fefc3019d5f53bc149|commit]], [[https://git.kernel.org/linus/de464720489c065d48c2a79f92b134df25355f98|commit]], [[https://git.kernel.org/linus/68c2dd59a6c784637d53d0bba22b4e118be7e225|commit]], [[https://git.kernel.org/linus/e3a02f3ecb13b3482315afb171df85651f0f8734|commit]], [[https://git.kernel.org/linus/7bcfb19465fca99efd09ecb5d3ef8f91179d7ff1|commit]] * mlx5: enable sub-page allocations for mlx5_frag_buf [[https://lore.kernel.org/netdev/20260429201429.223809-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/3796df7645e5f173b6d1812597057dfeb9a62eb9|commit]], [[https://git.kernel.org/linus/3b16155425af46ac89c6cc676db0ca1ec4c4ab85|commit]], [[https://git.kernel.org/linus/fbf6f64a4322cfeb0d98f39baf8ce18246dd12c0|commit]] * mlx5e: Report more netdev stats [[https://lore.kernel.org/netdev/20260504183704.272322-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/de58db5f0d950c56f2fe488d04fdf376dd5ad2a6|commit]], [[https://git.kernel.org/linus/38e7e4a209c250cff438ee9ac7607515555eeb3f|commit]], [[https://git.kernel.org/linus/97b96c3b47d12a99a81187d544ae0a3a6dedacb7|commit]], [[https://git.kernel.org/linus/d8e5b2f7a5c314fc9ff3a342d667a42165845c21|commit]], [[https://git.kernel.org/linus/32b7e50e284a816389831bef142de4f7d2d691ee|commit]] * mlx5e: improve RSS indirection table sizing and resizing [[https://git.kernel.org/linus/f7c35c668576b454f458352411a10f0dabddb12d|commit]], [[https://git.kernel.org/linus/05ebdbaded052595fc1718128b52f0199c570aa6|commit]], [[https://git.kernel.org/linus/6bf1c27586b641eca081ebf04f34085679789f83|commit]], [[https://git.kernel.org/linus/4f59c22f26f7723ab2ca6d787d7997b1314ff4f2|commit]], [[https://git.kernel.org/linus/c75e7e599c62c57d210eebb91140802dd81f2b70|commit]] * devlink, mlx5: Add new parameters for link management and SRIOV/eSwitch configurations [[https://lore.kernel.org/netdev/20250709030456.1290841-1-saeed@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/ce0b015e2619ae64b7d33fb24a6b6cadcd70c317|commit]], [[https://git.kernel.org/linus/bf2da4799fdb6eb58d9c9541b7dc1096c260499d|commit]], [[https://git.kernel.org/linus/95a0af146dff5437acb4ea27eacc05aa22c7bb54|commit]], [[https://git.kernel.org/linus/a4c49611cf4f7018ee80f02bded12fd4002ef95c|commit]], [[https://git.kernel.org/linus/eb7b4d458e0d6833ffbb717edf4282f5ca6a7b57|commit]] * airoha: Support multiple net_devices connected to the same GDM port [[https://lore.kernel.org/netdev/20260603-airoha-eth-multi-serdes-v9-0-5d476bc2f426@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/a4597204b681396c0e5414854ba846ebfe6248e3|commit]], [[https://git.kernel.org/linus/4408f520680990042a1e6bfdf3cef217a1abf152|commit]], [[https://git.kernel.org/linus/a9c2ca61fec7706574c009d8f1898ca392368f89|commit]], [[https://git.kernel.org/linus/99b9d095d71e5cb84121dacce2ac217aad9b174f|commit]], [[https://git.kernel.org/linus/7758cb462ff72b10d71e72bca8cf65179a1264e8|commit]], [[https://git.kernel.org/linus/ef2aee987174b51573645b4bdacedf610e89ce1a|commit]] * atlantic: add PTP support for AQC113 (Antigua) [[https://lore.kernel.org/netdev/20260610115448.272-1-sukhdeeps@marvell.com/T/|(cover)]], [[https://git.kernel.org/linus/9ed479cd9fd38f1e71da2eaff6fd949a765ac2ae|commit]], [[https://git.kernel.org/linus/dfb7a7468b94d9dec7744938b03e742dda41ca02|commit]], [[https://git.kernel.org/linus/7bd18209741f54c1b10e0ab172673945ebab8a88|commit]], [[https://git.kernel.org/linus/228c40913220aa2ee3ea3bea739482b79dcfa3cd|commit]], [[https://git.kernel.org/linus/4428d3b99414e1402d4b4351c05e7a0d969bafa1|commit]], [[https://git.kernel.org/linus/6c1ca112a6e4e62706477b06ea94fa0fd8ff2e66|commit]], [[https://git.kernel.org/linus/ddce0b1bc00249dc42470884a02c0a41d8f64a86|commit]], [[https://git.kernel.org/linus/f6a7a4bcc5d3402a44ef3344157ba4e0420317d1|commit]], [[https://git.kernel.org/linus/da8222888659610f2faf050dea02b8c9bebf4c40|commit]], [[https://git.kernel.org/linus/0384ba23186859fe3871d1071ed769d23d0d773d|commit]] * atlantic: add AQC113 PTP traffic class and TX path setup [[https://git.kernel.org/linus/5e7c8f8e96b4b352ccf168e06df46aa40ee0b715|commit]] * ksz87xx: add support for low-loss cable equalizer errata [[https://lore.kernel.org/netdev/20260609-ksz87xx_errata_low_loss_connections-v10-0-9ba4418cf3db@exotec.com/T/|(cover)]], [[https://git.kernel.org/linus/014f0c98cf1d9dd82c3b322fd77fa124aca03c21|commit]], [[https://git.kernel.org/linus/13655144ddcad532c4e9338788041654a54e5c2f|commit]], [[https://git.kernel.org/linus/a1ee1b9beb7dbbc1cd52b08471ccaf4b8399d9eb|commit]] * dsa: mv88e6xxx: enable devlink ATU hash param for 6320 family [[https://lore.kernel.org/lkml/20250313134146.27087-11-kabel@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/1428a6109b20e356188c3fb027bdb7998cc2fb98|commit]], [[https://git.kernel.org/linus/52fdc41c3278c981066a461d03d5477ebfcf270c|commit]], [[https://git.kernel.org/linus/1ebc8e1ef906db9c08e9abe9776d85ddec837725|commit]] * dsa: netc: introduce NXP NETC switch driver for i.MX94 [[https://lore.kernel.org/netdev/20260316094152.1558671-11-wei.fang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/bbe97e34721984b5d58ad343f0e6c3441d9c8c4a|commit]], [[https://git.kernel.org/linus/25049d8b6e6b87f7ffcf53ce5ea1b51528b8677f|commit]], [[https://git.kernel.org/linus/beb0e54f3806cf01a24740b23ec01c4fab186b5c|commit]] * dsa: mv88e6xxx: enable devlink ATU hash param for 6320 family [[https://git.kernel.org/linus/1010deac776a88770dc5c59ffbf7d6ab9fa7abfb|commit]] * dsa: mxl862xx: !SerDes ports [[https://lore.kernel.org/lkml/cover.1781319534.git.daniel@makrotopia.org/T/|(cover)]], [[https://git.kernel.org/linus/937137db7914ed332ce455cdac94a218e6ae2693|commit]], [[https://git.kernel.org/linus/c1034332003fc3f9dc99f0c45f7c0e31c695adb8|commit]], [[https://git.kernel.org/linus/7dab839724ed4b02f89b90fa88e7bc820f299948|commit]], [[https://git.kernel.org/linus/13ea4d4888c4614e496faa84d19a37f272116cc0|commit]] * dsa: netc: introduce NXP NETC switch driver for i.MX94 [[https://lore.kernel.org/netdev/20260430024945.3413973-11-wei.fang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/bbe97e34721984b5d58ad343f0e6c3441d9c8c4a|commit]], [[https://git.kernel.org/linus/46d6407692c80b258ecba3af831130a6f6e2feea|commit]], [[https://git.kernel.org/linus/a5ccb7f5e067eae23707a61e4fc5d6214b0e4777|commit]], [[https://git.kernel.org/linus/25049d8b6e6b87f7ffcf53ce5ea1b51528b8677f|commit]], [[https://git.kernel.org/linus/beb0e54f3806cf01a24740b23ec01c4fab186b5c|commit]] * dsa: netc: add bridge mode support [[https://git.kernel.org/linus/c52b6702a9481dd7f05fb5f484cb6639f5ce57ee|commit]], [[https://git.kernel.org/linus/3cc291a35939a3d59e50a1b2cc4845abd6bb1208|commit]], [[https://git.kernel.org/linus/d51f238a154aeb6cb76c70a0b0cb72ea99319870|commit]], [[https://git.kernel.org/linus/1a58ae73dd743bba2895431ee99471d784175244|commit]], [[https://git.kernel.org/linus/8469b17310d1814b8e7d6fe2b4cc77a05a9da4f1|commit]], [[https://git.kernel.org/linus/84b4a3b30abd226ec528985d7c3cb63a3376d098|commit]], [[https://git.kernel.org/linus/751aa5a5d593e19204d3e8ed0787a18a29a18690|commit]], [[https://git.kernel.org/linus/05b5ee610fbb8ca4ce9dc21299442aa827b38008|commit]] * dsa: netc: introduce NXP NETC switch driver for i.MX94 [[https://git.kernel.org/linus/187fbae024c8439533d7f075f4ab4b594dc19992|commit]] * dsa: qca8k: Add support for force mode for fixed link topology [[https://git.kernel.org/linus/e0a77b1ed9001bdd0c73b99c67abb90f4bd7d7f5|commit]] * dsa: realtek: rtl8365mb: bridge offloading and VLAN support [[https://lore.kernel.org/netdev/20260606-realtek_forward-v13-0-b9e409687cbe@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a543687227d86b1f4401f395abaf7f3f710fe964|commit]], [[https://git.kernel.org/linus/36c572fd60d6bf2f9631088833c162203907c9ca|commit]], [[https://git.kernel.org/linus/51a4a22301b023610a1321614e8dc61251ef9064|commit]], [[https://git.kernel.org/linus/0e692c27fe84db294866fe726f9944f7e125b817|commit]], [[https://git.kernel.org/linus/fbafdd3b224a03b7b335de144f44a600de937586|commit]], [[https://git.kernel.org/linus/9da2c8672f77108a1f09232320f22225ab53dde9|commit]], [[https://git.kernel.org/linus/336e3e4a1ab37b6826fae27e53cd2ac43c9a96ca|commit]], [[https://git.kernel.org/linus/183bd68b1fe1d5ad584355a7449eea32da79334a|commit]], [[https://git.kernel.org/linus/660a9e399ab02c0cb86d277ed6b0c9d10c350fdd|commit]] * dsa: realtek: rtl8365mb: add support for RTL8367SB [[https://git.kernel.org/linus/28702a215c96917d85558ad6309a57ab224808c0|commit]] * dsa: yt921x: Add ACL support [[https://lore.kernel.org/netdev/20260606130011.307812-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/cf14ed49802ea3d1feedc84c604826ca37c51d27|commit]], [[https://git.kernel.org/linus/8eb9e7520b17abdea1a0308f483990ae019aa1c1|commit]] * dsa: yt921x: Add port TBF support [[https://lore.kernel.org/netdev/20260521010320.208138-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/d8785b59c330fcea7b23f63fe8ad904e436e4584|commit]], [[https://git.kernel.org/linus/b7b1b8464b4712da8cce2015709ead71050c5a8b|commit]], [[https://git.kernel.org/linus/09ac78477ab9f05fd6a740454bc8190f729938b5|commit]] * dsa: yt921x: Add port police support [[https://lore.kernel.org/netdev/20260430114529.3536911-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/09e4d1298b367051b60d9b0a13b22e7d78e61803|commit]], [[https://git.kernel.org/linus/9f8888984eb0957d2e48edcc09601e13f491bab3|commit]], [[https://git.kernel.org/linus/39716c00ed0a7f5d9e37300eea01fcf25cabe13a|commit]] * enetc: add CBDR setup/teardown hooks to enetc_si_ops for VF support [[https://lore.kernel.org/netdev/20260511080805.2052495-11-wei.fang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/250069ef0df3e1cf996f03c62eb96d1159cf8166|commit]], [[https://git.kernel.org/linus/c55a33014b52b8c0c2f2fdc99dd805b8fc913949|commit]], [[https://git.kernel.org/linus/9d7b650888ff532f3d2f92722143c39ab780a6f6|commit]] * Add preliminary NETC switch support for i.MX94 [[https://git.kernel.org/linus/f059d55fd8a0d2657f592045de98f87286031bc6|commit]], [[https://git.kernel.org/linus/4566269803ff284010550263299647f1bf9b01d5|commit]], [[https://git.kernel.org/linus/d0ac4d4bd299f5948be6a0a65e5f1b360fdfb686|commit]], [[https://git.kernel.org/linus/cb4d95d79d85e9614a701041100b5012bf595b44|commit]], [[https://git.kernel.org/linus/123db6a2751144f3e86cb029ebac4ef4777a5507|commit]], [[https://git.kernel.org/linus/c5aed83ddc5328b55eabeee7568bbcf40985d5ed|commit]], [[https://git.kernel.org/linus/0850005c26d2623f3d77489cf27d342191a97b5c|commit]], [[https://git.kernel.org/linus/187fbae024c8439533d7f075f4ab4b594dc19992|commit]], [[https://git.kernel.org/linus/bbe97e34721984b5d58ad343f0e6c3441d9c8c4a|commit]], [[https://git.kernel.org/linus/46d6407692c80b258ecba3af831130a6f6e2feea|commit]], [[https://git.kernel.org/linus/a5ccb7f5e067eae23707a61e4fc5d6214b0e4777|commit]], [[https://git.kernel.org/linus/25049d8b6e6b87f7ffcf53ce5ea1b51528b8677f|commit]], [[https://git.kernel.org/linus/beb0e54f3806cf01a24740b23ec01c4fab186b5c|commit]] * hns3: enhance tc flow offload support [[https://git.kernel.org/linus/d7db57e3b42a61d13cb91c596700dd00c489a8f9|commit]], [[https://git.kernel.org/linus/1ad6f1ff3e96c7ee888475740c8acdaf822e0813|commit]], [[https://git.kernel.org/linus/e6703605b47edbb03f60eaf0cc329fe789f8bd62|commit]], [[https://git.kernel.org/linus/cc2c4dbb00fb6f6b6a4bbe51c5197b8fb81407bb|commit]], [[https://git.kernel.org/linus/6c586b3ab8b730f5fedcac06a89c1f0ac4563d82|commit]], [[https://git.kernel.org/linus/d76612e4aacf6b5cf7d316e68d0cf6b0b116f5d5|commit]] * ibm: emac: Use napi_gro_receive() for Rx packets [[https://git.kernel.org/linus/da91508bdd1d4438d431bf7f95de85968cce3f0e|commit]] * mana: Add support for PF device 0x00C1 [[https://git.kernel.org/linus/53a65db20a4f3fe6c01b1f789f9eae6b1244910f|commit]] * mana: Per-vPort EQ and MSI-X management [[https://lore.kernel.org/netdev/20260605005717.2059954-1-longli@microsoft.com/T/|(cover)]], [[https://git.kernel.org/linus/fa1a3b7bcd161028e038025c1a4a8963b2f56a95|commit]], [[https://git.kernel.org/linus/d7c253d614887f5f006fe868f30b65fb72d3c193|commit]], [[https://git.kernel.org/linus/d478457fc1b7fd80f481c323a8d22567d99d6881|commit]], [[https://git.kernel.org/linus/346c277d1db8beb73a4c747aa1f507aa59887c92|commit]], [[https://git.kernel.org/linus/487af6f5391e7461437e0972d15d9bcbcab2ac21|commit]], [[https://git.kernel.org/linus/062b2b051f14a974b1fbd7b506fb833f5a171fa8|commit]] * mana: Expose hardware diagnostic info via debugfs [[https://git.kernel.org/linus/c227f8aaf22cf5acc3a55a4fef1dd2bf110caebe|commit]] * mana: Optimize irq affinity for low vcpu configs [[https://git.kernel.org/linus/5316394b1752f6cf3f9901e7fefdec1cd1d97fd3|commit]] * mdio: realtek-rtl9300: Groundwork for multi SOC support [[https://lore.kernel.org/lkml/20260521175918.1494797-1-markus.stockhausen@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/d15c0d1df49480b8f7d7c6182880e353574c871d|commit]], [[https://git.kernel.org/linus/315a02b39e8c4d1e8aebc8c3cc1e14e193f116ae|commit]], [[https://git.kernel.org/linus/215701873a7ed1214bba82c8fadcd2583d0246c3|commit]], [[https://git.kernel.org/linus/38c9d5b644049e9e78fafa385d420b2ae8485b81|commit]], [[https://git.kernel.org/linus/62baf5f1d80fe4f83099d52ac12e1337dd9fa9fc|commit]], [[https://git.kernel.org/linus/8bf7e2b133db0ec690268a0afb0ee9471f4fbb52|commit]], [[https://git.kernel.org/linus/ffc92cd009145eb5f85d913fbbc67fd24b601080|commit]], [[https://git.kernel.org/linus/cad6a373f7f69254cb57e76e06f7734777575555|commit]], [[https://git.kernel.org/linus/826a1926f084037b91415a53a29ce93264f08ada|commit]] * mdio: realtek-rtl9300: Add RTL931x support [[https://lore.kernel.org/lkml/20260610194145.4153668-1-markus.stockhausen@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/a390863b493e352231ed56ee65fca9c1f2ce1a1c|commit]], [[https://git.kernel.org/linus/29a540b56e51541b77d323ed4ce1b13dbf7b7872|commit]], [[https://git.kernel.org/linus/6e1d8b024de7385567899049a71f880fccc733cc|commit]], [[https://git.kernel.org/linus/3e8035b861c2481084cdddb54b0e21d8a19d8f81|commit]], [[https://git.kernel.org/linus/5ebdcac59affbbc044cc362200b9b03abe1c8345|commit]] * Introduce airoha an8801r series gigabit ethernet phy driver [[https://lore.kernel.org/netdev/20260526-add-airoha-an8801-support-v5-0-01aea8dee69b@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/ed28bd094db3e9e257355285c8e415e6160f7197|commit]], [[https://git.kernel.org/linus/dddfadd75197e018c4ef30ebb2488aefc75e02d0|commit]], [[https://git.kernel.org/linus/5226bb6634cdfc8dc1460321b4440d0e6565e9a6|commit]], [[https://git.kernel.org/linus/e08f0ea6daf2e5ffdb38844460bfd2db3b091015|commit]], [[https://git.kernel.org/linus/fdb9bf7f1658709dd1a6f85f07e18393efd569e9|commit]], [[https://git.kernel.org/linus/f6465e36353f4bc03ccb68834527655a25187d81|commit]] * phy: dp83867: add MDI-X management [[https://git.kernel.org/linus/be0e8db6935fa1db0065ad5e8cf37a54f91f0b08|commit]] * phy: intel-xway: add PHY-level statistics via ethtool [[https://git.kernel.org/linus/46444df9ff474b6edc4fa55dd23b238ad8662ff4|commit]] * Add motorcomm 8531s set ds func and 8522 driver [[https://lore.kernel.org/linux-kernel/20260605060212.41895-1-minda.chen@starfivetech.com/T/|(cover)]], [[https://git.kernel.org/linus/0bfd6c8c959d07804275012415fcb04740dc5f9b|commit]], [[https://git.kernel.org/linus/284975d609d09565e7a381f83ed1e9851dc91322|commit]], [[https://git.kernel.org/linus/554cfeb72e093102896f3f8b638c81a460f6449b|commit]] * phy: realtek: Add support for PHY LEDs on RTL8221B [[https://git.kernel.org/linus/d3aae4d954f92a273388439ab015763e0cdea1e0|commit]] * phy: realtek: support MDI swapping for RTL8226-CG [[https://git.kernel.org/linus/0765570f330f526dd12a966a0a6a25a99da52fb4|commit]] * sfp: extend SMBus support [[https://lore.kernel.org/netdev/20260614133418.2068201-1-jelonek.jonas@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/f2a138abfb719a3bfd370ca79f00055ec81e4f59|commit]], [[https://git.kernel.org/linus/58b29bdf6186a8c3f2d725619c0b17cf602ac4e0|commit]] * Add starfive jhb100 soc sgmii gmac support [[https://lore.kernel.org/linux-kernel/20260527084108.121416-1-minda.chen@starfivetech.com/T/|(cover)]], [[https://git.kernel.org/linus/106ce4a01c179b8de664767cf5c7367210b66dba|commit]], [[https://git.kernel.org/linus/64772e4d06a574e2359547d97f79674c28f07f75|commit]], [[https://git.kernel.org/linus/98182c748125d453945d6f4246d2706aae718285|commit]], [[https://git.kernel.org/linus/7e9ea8de277a24750626d2a14264775e7796be04|commit]] * Add meig srm813q ids in qmi_wwan and option [[https://lore.kernel.org/netdev/20260517153237.55995-1-janvolck@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/9758c11fc6c138a79a28a5659feeaa3abde7aa6a|commit]], [[https://git.kernel.org/linus/7d2b37d3e42d19071b62f4ddbee6e16e905efbf1|commit]] * Add support for the rtl8159 10gbit usb ethernet chip [[https://lore.kernel.org/linux-usb/20260505-rtl8159_net_next-v4-0-1a648a9c4d8d@birger-koblitz.de/T/|(cover)]], [[https://git.kernel.org/linus/9774acd5fa5d6e78f62694ac5e2dca3ca3c11a8e|commit]], [[https://git.kernel.org/linus/ad2a55b63b41af6431bfdde611ca5cf79e21ff51|commit]], [[https://git.kernel.org/linus/a51e171e176c21b91272ac44b57ef1a26aaf2222|commit]] * Enable power management for Telit LE310X1 [[https://git.kernel.org/linus/c847ff789f0150a91022a75775267bd17cf70d06|commit]], [[https://git.kernel.org/linus/3dfc7fe1d553b09bb02dca7ca808b6be87ed3dea|commit]] * ath12k: Add support for handling incumbent signal interference in 6 GHz [[https://lore.kernel.org/linux-wireless/20260511040242.1351792-1-amith.a@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/e7f9be2c7bfff07b5aba1e6eac3452cd729ad214|commit]], [[https://git.kernel.org/linus/afa1bd86eddd9f395bfa3d5cb3c7b5158e1383e0|commit]] * ath12k: Add support for 4-address mode [[https://git.kernel.org/linus/2f57f737dbf3005951a045eb9d1daaff0095f6c1|commit]] * ath12k: thermal throttling and cooling device support [[https://lore.kernel.org/linux-wireless/20260413153840.1969931-1-maharaja.kennadyrajan@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/845b613b57c626ac85fdefd47196acfb3172fd49|commit]], [[https://git.kernel.org/linus/612556eb774f19f0ad64b5f72e890943b95a1339|commit]], [[https://git.kernel.org/linus/cd93e8c23ebbd72e9aa799199b14c8433585f747|commit]], [[https://git.kernel.org/linus/0ab4dc09b7819ddea698fe5a0cc711a64186f12d|commit]], [[https://git.kernel.org/linus/e12d2d3983acb150fd987d19ec6a2a530da110df|commit]] * iwlwifi: mld: extract NAN capabilities setting to a function [[https://lore.kernel.org/linux-wireless/20260510213745.72152cfcfcd8.I02013e9d5946a1b3372d2fcd570057fdb4416b65@changeid/T/|(cover)]], [[https://git.kernel.org/linus/356f2646dfc2ccc0cb7456ab84ead89a52b4add2|commit]], [[https://git.kernel.org/linus/175d51f1d283765a5aed9f9a625961a93bd48e69|commit]], [[https://git.kernel.org/linus/db2770feda66029ed8601ead6b888954f232c7f1|commit]], [[https://git.kernel.org/linus/28db4b2625174a47b3f6b79d996b0804aaae8ab2|commit]], [[https://git.kernel.org/linus/8a9c1cdfac1ce0cd9a324fc202624d24ac3551a3|commit]] * iwlwifi: mld: track TX/RX IGTKs separately [[https://lore.kernel.org/linux-wireless/20260511203428.8fa6859b185d.I584e8b9d238f0b9ef6b65f95114c255209d1c2a3@changeid/T/|(cover)]], [[https://git.kernel.org/linus/117694a9633f9ae627cf642b067f2d92571fa2f6|commit]], [[https://git.kernel.org/linus/b73bc926989b8c80c21e96a4c5ccf46a59beb5a4|commit]], [[https://git.kernel.org/linus/7acb29519300aae5a48353ebbbd7234d112c1e1c|commit]], [[https://git.kernel.org/linus/06bc6f66ecab27a8717f2b2cd0d68ad800faf0c3|commit]], [[https://git.kernel.org/linus/45e1a52f65b0c1553b6649f48cac37d453233cef|commit]] * iwlwifi: mark that we support iwl_rx_mpdu_desc version 7 and 8 [[https://lore.kernel.org/linux-wireless/20260512082114.3604e2111b27.I1f44475b56e084ee4aaeaed11b8a4fe2d27bed0c@changeid/T/|(cover)]], [[https://git.kernel.org/linus/982b8a36c04a04829c0997641e3d501c7df12902|commit]], [[https://git.kernel.org/linus/27f4469f78344e2db30e58b388ca0c399455c4da|commit]], [[https://git.kernel.org/linus/e11f9d97957c316919c6da402033d0da200194c4|commit]], [[https://git.kernel.org/linus/288c5106f387b1ea865db99dc8fd41649051979a|commit]], [[https://git.kernel.org/linus/b4049b093a6f99d06f97c07782b11848b429f1d4|commit]] * iwlwifi: validate the channels received in iwl_mcc_update_resp_v* [[https://lore.kernel.org/linux-wireless/20260320100746.0e83cdd88cea.Ic86852e622ed3ec06110f9e6525f72679236cf1e@changeid/T/|(cover)]], [[https://git.kernel.org/linus/4aece67f1cb049b5f42e18d76979a558a5705890|commit]], [[https://git.kernel.org/linus/1793f23177b6e0543618051f00a402f0dbf5f88c|commit]], [[https://git.kernel.org/linus/4a481720106d6bad1521d0e0322fd74fa2f6c464|commit]], [[https://git.kernel.org/linus/d86aeb5f6fbcdb4b678380fa4b02c663e394488e|commit]], [[https://git.kernel.org/linus/f1011219309730a26e13e9b190168fceef6b8679|commit]] * iwlwifi: mld: add chan-load hysteresis for MLO scan triggers [[https://lore.kernel.org/linux-wireless/20260512222731.2db48151d32d.I8660f0660a95358bda067af806d28bc2fa6f7f76@changeid/T/|(cover)]], [[https://git.kernel.org/linus/300073ea3d699df32a15efadefeda39efe11a0fb|commit]], [[https://git.kernel.org/linus/050b99cb04e878bde10ffec447b6eb414bcec37f|commit]], [[https://git.kernel.org/linus/9ac94f8404e8a20282dd571da814afd7f85c6944|commit]], [[https://git.kernel.org/linus/59a26553f1a03242332092c2c5af95e66df8c556|commit]], [[https://git.kernel.org/linus/ace3199321869dc2c69cf6a36478aecc097effd6|commit]] * iwlwifi: mld: update link grading tables per bandwidth [[https://lore.kernel.org/linux-wireless/20260513084215.9f848b0da851.Id239216fda62e25d343495696cc60742e57d56ea@changeid/T/|(cover)]], [[https://git.kernel.org/linus/f3157a5c048c8908b11ec301d0e4c54607c399e4|commit]], [[https://git.kernel.org/linus/90cec2c95428f2f926e1754caae846dac0d088d1|commit]], [[https://git.kernel.org/linus/b5d6175c112889a4c837f45a15aefea4ae1aba13|commit]], [[https://git.kernel.org/linus/b506efbde89255bd2246b7a6bcf58f7cc1d4ccd1|commit]], [[https://git.kernel.org/linus/927c7e847389745682d501ab5928f74131bd8f1b|commit]] * iwlwifi: mld: add NAN DATA support - part 1 [[https://git.kernel.org/linus/df087ac00d278f03d75d053fe78d38a83ffd2814|commit]], [[https://git.kernel.org/linus/d715e737ba7100f629a457d9cbdd60b037b31aca|commit]], [[https://git.kernel.org/linus/ac25c511108c3068b170244f8d833bcc1f721bc2|commit]], [[https://git.kernel.org/linus/6e373b916a60848508dbbc1af79ba7ca5b893373|commit]], [[https://git.kernel.org/linus/ef9d9c1c1609c425d78bba8457fc710e0f66eedd|commit]], [[https://git.kernel.org/linus/cfc84d1710f331e47e09f337b07e0207a5ae9a14|commit]], [[https://git.kernel.org/linus/03779b6966f444e9ccbb9c4abe1e6bb6769d099d|commit]], [[https://git.kernel.org/linus/ddb509acccb70dd3a60f6353db95e52296f06c63|commit]], [[https://git.kernel.org/linus/09e2f2ea5e3576ad0ad36155e24efa7f48051e64|commit]], [[https://git.kernel.org/linus/0359d3fa3ccb2f48dfd7ba54c18e1378254a3054|commit]], [[https://git.kernel.org/linus/356f2646dfc2ccc0cb7456ab84ead89a52b4add2|commit]], [[https://git.kernel.org/linus/175d51f1d283765a5aed9f9a625961a93bd48e69|commit]], [[https://git.kernel.org/linus/db2770feda66029ed8601ead6b888954f232c7f1|commit]], [[https://git.kernel.org/linus/28db4b2625174a47b3f6b79d996b0804aaae8ab2|commit]], [[https://git.kernel.org/linus/8a9c1cdfac1ce0cd9a324fc202624d24ac3551a3|commit]] * iwlwifi: mld: add link and link station FW IDs to debugfs [[https://lore.kernel.org/linux-wireless/20260514224230.7224fab5fe8d.Ic2fd82f5f20945aa070ac9e38882fcff2172a4d8@changeid/T/|(cover)]], [[https://git.kernel.org/linus/06101cc80003a37acf843822760a842693f2882c|commit]], [[https://git.kernel.org/linus/804efb7c5f86059b50f2b090e63d62ed1d0f7bfa|commit]], [[https://git.kernel.org/linus/5f88b045d959f8a51757e0fde29d5d204da1176f|commit]], [[https://git.kernel.org/linus/5864b87863dbd061dc3a2f779fa6137dbee4a2cb|commit]], [[https://git.kernel.org/linus/ce2edf7c3910cb3222d51c0a7457b7a71703a5b1|commit]] * iwlwifi: mld: add link and link station FW IDs to debugfs [[https://git.kernel.org/linus/308decca2de5fbc4d5022fe9f846fec87d18fda4|commit]] * iwlwifi: mld: implement UHR DPS [[https://git.kernel.org/linus/f5d199b14c06828d71775504fcc8461369a770fc|commit]] * iwlwifi: mld: implement UHR multi-link PM [[https://git.kernel.org/linus/c0240187445936792903d878f5eb0adf51e19de1|commit]] * iwlwifi: mld: set fast-balance scan for active EMLSR [[https://lore.kernel.org/linux-wireless/20260527230313.32d278842b0e.Ia3d73e4085eefc4d3921e93de4107b2d6a6f922e@changeid/T/|(cover)]], [[https://git.kernel.org/linus/7ebdca63eca82394f546a2274c460956b356cea3|commit]], [[https://git.kernel.org/linus/301b0dfa9db3f1e204de95e803bbd88fbd878c7c|commit]], [[https://git.kernel.org/linus/fa6758a86e37b4572f33763d8cb991b1d98ea857|commit]], [[https://git.kernel.org/linus/b74e377cad9271950c57472867c469e4b5b2ff0c|commit]], [[https://git.kernel.org/linus/33346563d6d2b860c0a11bf31dca925b48dd3db2|commit]] * iwlwifi: mld: support NPCA capability for UHR devices [[https://git.kernel.org/linus/7f7a450ed83a2a700b10b23272ea9a419d27f9bb|commit]] * iwlwifi: mld: support the new statistics APIs [[https://git.kernel.org/linus/41572ee0746921c84ad98d8fbdf842f21a1c422a|commit]] * mac80211_hwsim: add NAN data path TX/RX support [[https://lore.kernel.org/linux-wireless/20260505194007.17645ceea970.Ic210f6c095c6ff372941bc8c77ee9c8c37d0356c@changeid/T/|(cover)]], [[https://git.kernel.org/linus/09d1ff616a7a0974a9338e937249726e54d34dc6|commit]], [[https://git.kernel.org/linus/2c7c70ee7ceeecb5dc8c8bef8676aa9d5d99a15e|commit]], [[https://git.kernel.org/linus/34cbd0a27d0f45e3c8d4e31eb8c5b4f901fee609|commit]], [[https://git.kernel.org/linus/55eaca33b4cd6b032b687d8f4b20489957604ab1|commit]] * mac80211_hwsim: add NAN PHY capabilities [[https://git.kernel.org/linus/408f38d1e3071a9813bf1a760c1a465b80230c7e|commit]] * mac80211_hwsim: add NAN data path TX/RX support [[https://git.kernel.org/linus/2c8ec5a9b1ddbad23398e22403560b5a59392d93|commit]] * mac80211_hwsim: switch to use TXQs [[https://lore.kernel.org/linux-wireless/20251128151537.26cddfb23c81.Id3e629770663c44de00faa3ff9bac9c6b87459c6@changeid/T/|(cover)]], [[https://git.kernel.org/linus/7f0de94ef44653764fa2fb8548b1253f0554f213|commit]], [[https://git.kernel.org/linus/f9aeb3a234ebc1205fcb9eafc792a1049193d709|commit]], [[https://git.kernel.org/linus/61de252f994b7973080ffbcc97dce65f663c4a23|commit]], [[https://git.kernel.org/linus/4f4b0f4eed556c921614457f17fb7359e9504643|commit]], [[https://git.kernel.org/linus/d7b0798fc83be3b46d2ddd4c7dd257c271210296|commit]], [[https://git.kernel.org/linus/8ea6b92faebe4bad0e271cb9a8d819b8955ed476|commit]], [[https://git.kernel.org/linus/b16df0dacb3a77d4c1ce95f21c58a2b99ae10213|commit]], [[https://git.kernel.org/linus/42d3002bc323e2a87501e704350dd40c78a2d30f|commit]] * mt76: mt76x2u: Add support for ELECOM WDC-867SU3S [[https://git.kernel.org/linus/f4ce0664e9f0387873b181777891741c33e19465|commit]] * mt76: mt7921: support per-device regulatory settings [[https://git.kernel.org/linus/c5c32d63068c4d849a7f66929331a06eec3df041|commit]], [[https://git.kernel.org/linus/fbb493cd953a664e4f007638837c7a02e4ec7774|commit]], [[https://git.kernel.org/linus/e88098133ed45f5fbe1cd29fde19ee3ef827de1b|commit]], [[https://git.kernel.org/linus/ae05055d30f6843c6362449f201b005697d4be41|commit]], [[https://git.kernel.org/linus/9c082046c36286013ddb3d353db727868f95fab8|commit]] * mt76: mt7921u: add MT7902 USB support [[https://git.kernel.org/linus/945c8028299a4712f12759f1ea14e63bba841e9f|commit]] * mt76: mt7925: MT7927 (Filogic 380) support [[https://lore.kernel.org/linux-wireless/20260425195011.790265-1-sean.wang@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/9f1accf3069a0cd42c14ca6c7d44d5b17cc48a80|commit]], [[https://git.kernel.org/linus/efc9a10d1de1763baecd2031c1c6dfe6aac9ac38|commit]], [[https://git.kernel.org/linus/2237b7b332990f135c1f1550b45ac77b29bcbf7b|commit]], [[https://git.kernel.org/linus/e7bbd3d8b4f01473676da3aa8be17099e1604459|commit]], [[https://git.kernel.org/linus/77833c57a33450c0409e4b90d7721d255ea23a9e|commit]], [[https://git.kernel.org/linus/752003c6d9b8531a5f9005d42821ccc24b553fbc|commit]], [[https://git.kernel.org/linus/3be5a0d417da36ce7445a3738c9c161aaf769123|commit]], [[https://git.kernel.org/linus/4a91a8c30bf409c06d56017e09f4fc58c5d044ce|commit]], [[https://git.kernel.org/linus/b0dddf55af8147699182d002af1f7ff017dc5cfd|commit]], [[https://git.kernel.org/linus/60dac6072dbcb35e077906c43e58ed71436af992|commit]], [[https://git.kernel.org/linus/b2f5def2f133fca12897b0fc707a8d3df1c3cb05|commit]], [[https://git.kernel.org/linus/04222f980301561edd77917edac570b1393ec45d|commit]], [[https://git.kernel.org/linus/c08ffdaf32f7b68d81aebf42d5bb222587a35c76|commit]], [[https://git.kernel.org/linus/1e570aa871f0ce535770a9390b833dc865c28d59|commit]], [[https://git.kernel.org/linus/e1fca65c826b2e4810c8f9fddddd8f284eda7f5c|commit]], [[https://git.kernel.org/linus/0683825c48d9754832dd1e6a1e88946a5e4f2fd3|commit]], [[https://git.kernel.org/linus/05fd148853036ea3b3f688f35872fbd01cdb5892|commit]], [[https://git.kernel.org/linus/bcc6e3358a1f946d5f2f8a2547c2a997375100cd|commit]], [[https://git.kernel.org/linus/298efd8f9f24727269a95c2f9dd94d604c98ff90|commit]], [[https://git.kernel.org/linus/35a5dcc71735eb42606be34e313f9eb8148b6a42|commit]], [[https://git.kernel.org/linus/bef8367b48e94cc16f033d0a37711e38d401f739|commit]] * mt76: mt7925: add Netgear A8500 USB device ID [[https://git.kernel.org/linus/291b067a02b9c1fd272057ebf47c365260955fd2|commit]] * mt76: mt792x: report txpower for the requested vif link [[https://git.kernel.org/linus/8286bbf62dcc2fc328c3960e32c4d3da66720463|commit]], [[https://git.kernel.org/linus/317bc1a0590e15c5a47c07e61f89edffcde65098|commit]], [[https://git.kernel.org/linus/879d754e48f6fda26ad06c9d183cd9f7f4f0affd|commit]] * rtw89: use firmware offload for PHY and RF batch register writes [[https://lore.kernel.org/linux-wireless/20260420034051.17666-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/89058548dd146ee9a56aeb0727d306a7f9720473|commit]], [[https://git.kernel.org/linus/8beba37615f2f59ea7e978843daf2f5ec7f03868|commit]], [[https://git.kernel.org/linus/6a9b4babeb9b555a6b16df2e9e3238c68c61edbb|commit]], [[https://git.kernel.org/linus/602b58bb45b2f2bf848215560406ff87dc9a0ab6|commit]], [[https://git.kernel.org/linus/2da590b9ccf52d89fed87ec1c5399d1341ba568f|commit]], [[https://git.kernel.org/linus/b465bc7e18a7a2308db3658b1a4f7f55bad0fd3e|commit]] * rtw89: 8851bu: add Mercusys MA60XNB (2c4e:0128) [[https://git.kernel.org/linus/575e6a72bd68008b6795345113d3e94f3dccbf5d|commit]] * rtw89: 8922d: change naming number and update values for WDE/PLE quota [[https://lore.kernel.org/linux-wireless/20260515014433.16168-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/d270863883b93fa058f36f57a261b4a518642b78|commit]], [[https://git.kernel.org/linus/77be46f2819c141c6f970156e155fcfaf4c8dddd|commit]], [[https://git.kernel.org/linus/9d69ffa4f8da8257e247a4b7163e0aae4b624d7e|commit]] * rtw89: debug: show large MRU in txpwr_table dbgfs [[https://git.kernel.org/linus/a153f9ce94e669b7b6bd78f637c38a9b24d906a6|commit]] * rtw89: 8922d: configure TX shape settings [[https://git.kernel.org/linus/756abe2ebe3e14922c6e1317c89ce8004e85b6e9|commit]] * rtw89: phy: increase RF calibration timeouts for USB transport [[https://lore.kernel.org/linux-wireless/20260415111339.453602-1-loukot@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/8d722eeac1a7964cf6f77b464e87082418e9657e|commit]], [[https://git.kernel.org/linus/6f4621340312d7cfd4f2acc3115cd5879fd770c3|commit]], [[https://git.kernel.org/linus/0cc43249ea97946cc8d5e315246bad8369c31f27|commit]], [[https://git.kernel.org/linus/0df7f0c22d96024f4a9db9f32693c6ea527c0c9d|commit]], [[https://git.kernel.org/linus/32cee8a9bb66ceb434b9eae32beb17403287c4d5|commit]], [[https://git.kernel.org/linus/c3dfef1e3552a25ce0daa6c8610caf048375c588|commit]], [[https://git.kernel.org/linus/c423ed43c93cd1e44dbcd77f94aff747df7b20a1|commit]], [[https://git.kernel.org/linus/bd87e927006c6f548c65e23a00169c2ee87825ea|commit]], [[https://git.kernel.org/linus/abe23df7c89f42741fd55f853e81be120996e991|commit]], [[https://git.kernel.org/linus/6bb58cd6e17699e41fedd2944b875ef594bcc2bb|commit]], [[https://git.kernel.org/linus/f07d1009e9729f65adadcbc1cf7a2b10e807ba05|commit]] * rtw89: Wi-Fi 7 configure TX power limit for large MRU [[https://git.kernel.org/linus/ed438b312d0758eaac868ab1275e743709fa4dac|commit]] * rtw89: add debugfs entry of monitor mode options to capture HE-MU packets [[https://lore.kernel.org/linux-wireless/20260506131000.1706298-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/884495c39de1a02f42bd40051b921e2311d6ac91|commit]], [[https://git.kernel.org/linus/48402f736f93e6377ee47984d9dd2aa1b6815604|commit]], [[https://git.kernel.org/linus/0805ddc2fdb64c142eb2be8429497dfd8c9bf296|commit]], [[https://git.kernel.org/linus/f77199a0cf6660d45d72010e76c3ab4788e9da5f|commit]] * rtw89: add USB IO offload and some refactors [[https://git.kernel.org/linus/d6a3aac6ed5d50aa2ce3d5dfed70d97ca6217f21|commit]], [[https://git.kernel.org/linus/fdf0eb355182372e7f62d81837d3186e76b4bef9|commit]], [[https://git.kernel.org/linus/3da737c77764878ee05aaf6ec467a6996b5a232e|commit]], [[https://git.kernel.org/linus/bd2d1abf74e49ac4f0350f8f076f26e38986487d|commit]], [[https://git.kernel.org/linus/e3ed82f19f13943d86990cba0263d2bd39f40a16|commit]], [[https://git.kernel.org/linus/08fdcb529df6df3562dd2b0035f88dd5be8b3c68|commit]], [[https://git.kernel.org/linus/72b781d3bdd38c0bc8dd3218826918287b9602fd|commit]], [[https://git.kernel.org/linus/ae3d327515f2f46e2ca403f4a93494ef2050c764|commit]], [[https://git.kernel.org/linus/63586e841cf32ed7f86ed2c31c0386fc838c4290|commit]], [[https://git.kernel.org/linus/850216ff7d120ff0f067b964d56a0ab5132f80f1|commit]], [[https://git.kernel.org/linus/89058548dd146ee9a56aeb0727d306a7f9720473|commit]], [[https://git.kernel.org/linus/8beba37615f2f59ea7e978843daf2f5ec7f03868|commit]], [[https://git.kernel.org/linus/6a9b4babeb9b555a6b16df2e9e3238c68c61edbb|commit]], [[https://git.kernel.org/linus/602b58bb45b2f2bf848215560406ff87dc9a0ab6|commit]], [[https://git.kernel.org/linus/2da590b9ccf52d89fed87ec1c5399d1341ba568f|commit]], [[https://git.kernel.org/linus/b465bc7e18a7a2308db3658b1a4f7f55bad0fd3e|commit]] * rtw89: improve radiotap especially HE SIG-A/SIG-B [[https://git.kernel.org/linus/756dc69e5639cd339be3d501ad068b01a2b366de|commit]], [[https://git.kernel.org/linus/9535e2279ba994fcb38c58f508589cd394894f90|commit]], [[https://git.kernel.org/linus/a371139d8be96f851c8663f9f8e4ffe3c3271bac|commit]], [[https://git.kernel.org/linus/c847d0c14c47c2878908c6e9bdcfb707bdb88b60|commit]], [[https://git.kernel.org/linus/847758f15f466235df9bf64272dbdd3ded14520e|commit]], [[https://git.kernel.org/linus/bc1006b68b89dcc2abc3dc79f9be6fa53642461c|commit]], [[https://git.kernel.org/linus/236b25d9308d345c8f05130da0bba1af0e7908a8|commit]], [[https://git.kernel.org/linus/16a1becdd1fb9a600b46691694298be16101821a|commit]], [[https://git.kernel.org/linus/41d78f3f35961ca533cff5bbc159e7fb3c32e3df|commit]], [[https://git.kernel.org/linus/cd92d278c1864852cb4840c5e51c1cd0eaa60e85|commit]], [[https://git.kernel.org/linus/884495c39de1a02f42bd40051b921e2311d6ac91|commit]], [[https://git.kernel.org/linus/48402f736f93e6377ee47984d9dd2aa1b6815604|commit]], [[https://git.kernel.org/linus/0805ddc2fdb64c142eb2be8429497dfd8c9bf296|commit]], [[https://git.kernel.org/linus/f77199a0cf6660d45d72010e76c3ab4788e9da5f|commit]] * rtw89: debug: add RX statistics in bb_info [[https://git.kernel.org/linus/c77bb66e244e7b6cb2943234274fef278da19745|commit]] * rtw89: debug: add BB diagnose [[https://git.kernel.org/linus/c1ed02655f9134d6af6a01a58b734329c2f4f22c|commit]] * rtw89: debug: extend bb_info with TX status and PER [[https://git.kernel.org/linus/419ed7f4a0532e6211f1f73b311859500a63e141|commit]] * rtw89: phy: support per PHY RX statistics [[https://git.kernel.org/linus/09d369c66373de8708e442a30460ced17f254915|commit]] * rtw89: usb: Support switching to USB 3 mode [[https://git.kernel.org/linus/8368970b62404ce2ce70d04c1cfff62700d7d8d5|commit]] * rtw89: add dev_id_quirks to driver_info for per-device quirk control [[https://git.kernel.org/linus/7554f6602a80471549df2c4e7b90b4d095b1d816|commit]] * Remove all pcmcia drivers [[https://git.kernel.org/linus/794b5e7727de1ebaa07366ae346a139870874c2d|commit]] == Audio == * FCP: Add Focusrite ISA C8X support [[https://git.kernel.org/linus/e0ecb324246be9cf3a0689346a658e48a38546b2|commit]] * M-audio C600 disable output gain knob [[https://git.kernel.org/linus/da5e9f8e552128ba7f7b930986d31567f2b188a3|commit]] * hda * hdmi: Add force-connect quirk for HP !EliteDesk 800 G5 Mini [[https://git.kernel.org/linus/0ec17ee704615125c0b6e100c38129393a346bcc|commit]] * realtek: Add headset mic quirk for Acer S40-54 [[https://git.kernel.org/linus/4520fbbaedbeda8861f0f0bfbe50b3bca4deae08|commit]] * realtek: Add quirk for Lenovo Yoga 7 16IAP7 [[https://git.kernel.org/linus/b70f007a9fc665ee988683fd5085ab34e2c10ad3|commit]] * realtek: Enable mute LED on HP !EliteBook 840 G6 [[https://git.kernel.org/linus/f56521ab6f76faeaa5a524320898835454e3bc31|commit]] * Add Lenovo Legion 7i 16IAX7 17AA3874 quirk [[https://git.kernel.org/linus/6485da8579e2b0132630faa1ee2ac72ccaf01501|commit]] * oxygen: add HT-Omega eClaro (7284:9783) support [[https://git.kernel.org/linus/af31e980def6cd6554ad4d7f266ecf5c4ebce4e3|commit]] * usb-audio: Add quirk for YAMAHA CDS3000 [[https://git.kernel.org/linus/348f69320e4db6ebec6940c81154bec4b9eb275a|commit]] * Add es9356 focused soundwire codec [[https://lore.kernel.org/lkml/20260514075206.3483-1-zhangyi@everest-semi.com/T/|(cover)]], [[https://git.kernel.org/linus/5d03a4f357100c6ba369ec8c2432d755d006d0dc|commit]], [[https://git.kernel.org/linus/4ff4fc6fea57c0fcf301bf8591ed337cd27dce64|commit]], [[https://git.kernel.org/linus/5d9cb740cd38fa17247b4a62af135901fa5c4d9c|commit]], [[https://git.kernel.org/linus/25b905940832c95674d2f11f40e6cea60ccb5a4d|commit]], [[https://git.kernel.org/linus/f1e35606d618e9de98f08f305a06c18f74aae216|commit]], [[https://git.kernel.org/linus/4e90368e8680d9ddcb06f82f2e63cbbcf21cef2c|commit]] * Improve sdca support for duplicated features [[https://lore.kernel.org/linux-sound/20260430150931.2025953-1-ckeepax@opensource.cirrus.com/T/|(cover)]], [[https://git.kernel.org/linus/cb3c257e08248521b22c67259d50ebb18574d1a1|commit]], [[https://git.kernel.org/linus/df036250d7d5f751de04300a5600b2dadb927ae9|commit]], [[https://git.kernel.org/linus/250922577ed16c29b994197b84a231dcbe7798e8|commit]] * SOF: Intel: lnl: Enable offload for UAOL link [[https://git.kernel.org/linus/fdfbd9ff86a145f09978ab49305ed7acfad66a1d|commit]] * SOF: ipc4-topology: Enable deep buffer capture [[https://git.kernel.org/linus/8fbcb4ab267059fedd5e087160cb208b61ab8128|commit]] * SOF: topology: allow user to add topologies [[https://lore.kernel.org/linux-sound/20260421091351.4056377-1-yung-chuan.liao@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/0d0e98603f9f2870fdd6c8df8ed851cf975082f8|commit]], [[https://git.kernel.org/linus/d82bf6af621301971ac01b0f2919e87137c59774|commit]] * ASoC: AMD: ACP7.x initial PCI driver bring-up [[https://git.kernel.org/linus/44d16948af557175e37209349cf3aa87167b823f|commit]], [[https://git.kernel.org/linus/1da6f798eda86348f2b141727eb174ed681d69b2|commit]], [[https://git.kernel.org/linus/b5a2fdc5e7d2bd3d4dd143baa6d278aefdd35582|commit]], [[https://git.kernel.org/linus/533308171bf21c8b9434cd61827989800c49ff8b|commit]], [[https://git.kernel.org/linus/07d56a83ba7002c37890b536b01515ee8e928ee6|commit]] * Add tas67524 quad-channel class-d amplifier driver [[https://lore.kernel.org/linux-sound/20260416232640.3084132-1-sen@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/5067f61ccaa1b688e338e5d3fa464730b4159734|commit]], [[https://git.kernel.org/linus/133c81f84471f47dadf03d0505d4c308b227a736|commit]], [[https://git.kernel.org/linus/ba46edca354e66d71d176bb88fe1c01594c45871|commit]], [[https://git.kernel.org/linus/3507e568d63486ebbc857a8e74e49a04e6311bc2|commit]] * nau8822: add support for supply regulators [[https://lore.kernel.org/linux-sound/20260525-nau8822-reg-v2-0-7d37ae393e46@flipper.net/T/|(cover)]], [[https://git.kernel.org/linus/caba9259a22b4da6beeeb48c84292870dbcff978|commit]], [[https://git.kernel.org/linus/f8e7cd48e5b3b38ec5e1542b73b670a7770d2d7c|commit]] * cs42xx8: Add SPI bus support for CS42448/CS42888 codec [[https://lore.kernel.org/devicetree/20260603095041.3906558-1-chancel.liu@oss.nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/596f8d6494449d5bac7bb7b4e613bfe47d0a965b|commit]], [[https://git.kernel.org/linus/3158f585f4f25cb88415bf39786aaced87c98ee1|commit]] * fsl-asoc-card: Add some improvements [[https://lore.kernel.org/lkml/20260429100028.2739711-1-shengjiu.wang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/3b9c088aeabf6f1d0e92baa4359fc166fbb0050e|commit]], [[https://git.kernel.org/linus/d611feb52de8c0d599487d98a6dd3bbb86e20c60|commit]], [[https://git.kernel.org/linus/e78abe395d30e8be8effc538e6983e27aa289602|commit]], [[https://git.kernel.org/linus/fa7d8ea56c58f1de3f0db7f53d9aae27a9c64a60|commit]], [[https://git.kernel.org/linus/99b5316f08f390a5e1ea2239ecca8e2b4ef70ac6|commit]] * fsl_sai: Add RX/TX BCLK swap support [[https://git.kernel.org/linus/9897a977668121ff9f3e950d9e471011d81c0934|commit]], [[https://git.kernel.org/linus/dc06cf4268a4ad4192fb688ae81c8638df6c8810|commit]] * imx-rpmsg: Add headphone jack detection and driver_name support [[https://lore.kernel.org/linux-sound/20260528020725.2265321-1-chancel.liu@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/1558039bea601dfa077cbcc4a995361d1854e4a4|commit]], [[https://git.kernel.org/linus/ec74d4f934a63f8146f704eb0ed7b3af2b819a8d|commit]], [[https://git.kernel.org/linus/af0d8aa7fcd5c63a6a5077c5a21c7f8f2695cf94|commit]] * mediatek: mt2701: HDMI audio support [[https://lore.kernel.org/lkml/cover.1776998727.git.daniel@makrotopia.org/T/|(cover)]], [[https://git.kernel.org/linus/7139d75a1ac1c0206d8ccddde8b526435c97ac28|commit]], [[https://git.kernel.org/linus/069ac057ddaf46e8ee647b84862131298f30ae01|commit]], [[https://git.kernel.org/linus/3401cff9a9efc880f5ae373340200d0b59f05e69|commit]], [[https://git.kernel.org/linus/06efb5f1b777c880d2f9f102a0e169a56e974cb0|commit]], [[https://git.kernel.org/linus/0e2f1d39c2bf68d181b72ea51ef1e778c04140e4|commit]], [[https://git.kernel.org/linus/4d9c6bbfed7d9a3224a66f3d135cdef21a430168|commit]] * mediatek: Add support for MT8196 SoC [[https://lore.kernel.org/linux-sound/20260430022417.32282-1-Cyril.Chao@mediatek.com/T/|(cover)]], [[https://git.kernel.org/linus/1aadc0147b42e64645b3ef5e837735b10ca6d205|commit]], [[https://git.kernel.org/linus/33eda2c14ff7161e16a10a8ce230a72dc44080c0|commit]], [[https://git.kernel.org/linus/7384ecab34ebcfcaed86d36606f716bf930f2de5|commit]], [[https://git.kernel.org/linus/9a5881402c6e3821401ecdb3a876bce1d3dd1694|commit]], [[https://git.kernel.org/linus/65a19513266903f1b7e1033c0aac3918329cda33|commit]], [[https://git.kernel.org/linus/ede4d841111a2853e52995b139c09df4aecab082|commit]], [[https://git.kernel.org/linus/5cd03440c0d4b30649ced05cb5dd930ed7e8dc3f|commit]], [[https://git.kernel.org/linus/57513aabfe5bff89163cff811d9ac1b97651d0d6|commit]], [[https://git.kernel.org/linus/1c65cc4518732154f7fc525f674947d3d550543e|commit]], [[https://git.kernel.org/linus/de764b0d18386127bd91ea6dceaae26c7ac969c2|commit]] * qcom: qdsp6: add push/pull module support [[https://lore.kernel.org/linux-sound/20260528185806.6316-1-srinivas.kandagatla@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/525fa5f30c8358d467584c9d3991a7eb3aaa3c65|commit]], [[https://git.kernel.org/linus/3075ae5abbc370d2a9a01bd6d554a412d406f5bd|commit]], [[https://git.kernel.org/linus/240286ecf1a243238d3aaeb500f474dcdd14e5be|commit]], [[https://git.kernel.org/linus/7c1ac23b178a52c427e66a14acdbd87182f72499|commit]], [[https://git.kernel.org/linus/ed56ac9e5e96e048eb1a98618908539a02431b46|commit]], [[https://git.kernel.org/linus/4cfbd3a8d5961c30fefaae543ea67fc7b048480a|commit]] * rsnd: Add RZ/G3E audio driver support [[https://lore.kernel.org/linux-sound/20260525110230.4014435-1-john.madieu.xa@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/a86fd3c202189876e8bc244c6e0be16a61f39d32|commit]], [[https://git.kernel.org/linus/c0758279367e9d82eb7d7b4959718d7d32e96b7d|commit]], [[https://git.kernel.org/linus/83c9631e974f54106957b23ce30c04f1faa37b57|commit]], [[https://git.kernel.org/linus/22622faf8120f2a9887839691743dddb89989499|commit]], [[https://git.kernel.org/linus/948b075ebc95ccce630765bb30f42ae774b20bfc|commit]], [[https://git.kernel.org/linus/fb859f6fc43b30ce80e9428f79865b5fe8373418|commit]], [[https://git.kernel.org/linus/e870c10f8bb6ae636af72e167833433bf423ae57|commit]], [[https://git.kernel.org/linus/1cd10dab6702a1003e4ff6d1490271b0d977bad5|commit]], [[https://git.kernel.org/linus/b4ef837a28a100dfafff05463e11ff00d52fb411|commit]], [[https://git.kernel.org/linus/80f43c5217715641a3147eb223677e3c1600e65b|commit]], [[https://git.kernel.org/linus/692f03422f0e79365e33e7518e994bf7d3d12595|commit]], [[https://git.kernel.org/linus/9267b89985de699a6bf721d90c319b7568391890|commit]], [[https://git.kernel.org/linus/47899d53f86f5ab8a65a8d7bfa53d4ba79fa9e82|commit]], [[https://git.kernel.org/linus/16593532c47ad6c1bab3af18fb7b0a5423c05cca|commit]], [[https://git.kernel.org/linus/799836bc37ac9d31beb9effb4d02318f45e53b8f|commit]], [[https://git.kernel.org/linus/33a3500a34b87f370e4d6af73adc2efe8fffc84f|commit]], [[https://git.kernel.org/linus/ec1b5ebf6d8b379effb6167316555a8efeac5eef|commit]], [[https://git.kernel.org/linus/ef19ecf042b448a69ee3bd9b3e35689b0b7892ac|commit]] * rt722-sdca: Add a control to support CAE firmware update [[https://git.kernel.org/linus/14b5795b633ca0a5af4d3d94cbe2ac98598df18a|commit]] * rt722-sdca: add FU06 Playback Switch for speaker mute control [[https://git.kernel.org/linus/bda41dd5e1dd35e06922a7c04799b49bbac26c0d|commit]] * Add support for gpios driven amplifiers [[https://lore.kernel.org/linux-sound/20260513081702.317117-1-herve.codina@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/37dba38ac8d0910f31788368bce4d93aa4059040|commit]], [[https://git.kernel.org/linus/04a1fe8e6582ac2417c6d68258db5dc47f4dae3e|commit]], [[https://git.kernel.org/linus/28188a6d8869d2350f9e271e1b25e85077c70cee|commit]], [[https://git.kernel.org/linus/23cf9e3ca498b2b3d6f2f4cf39d6db10a6c3e8e9|commit]], [[https://git.kernel.org/linus/2c562adb159ea3f4e5fdf4074e512ae369b4c22b|commit]], [[https://git.kernel.org/linus/dc8beaad292646cc7a019aad50762591e2939632|commit]], [[https://git.kernel.org/linus/34ddd2d368c3b30f899b6b882b1a0284358826dc|commit]], [[https://git.kernel.org/linus/4d84b75e5eecd729e31ed5981353f84baa351c49|commit]], [[https://git.kernel.org/linus/41e3ebbfcab1eb5c6403e24130bc1690dae4f108|commit]], [[https://git.kernel.org/linus/f68933d0eb674397d67121794e5bc1f73fe1c4bd|commit]], [[https://git.kernel.org/linus/432331970eca53a7417e52aec6333dbb6e059e1c|commit]], [[https://git.kernel.org/linus/46c21e55c3bf347dda1cc8e1e474f8983106092e|commit]], [[https://git.kernel.org/linus/5796026b8e9096158075d2a94667bfbb664d1f89|commit]], [[https://git.kernel.org/linus/d25e00ecd5c5be3b24cc2637b3e2403da3e1aaa1|commit]], [[https://git.kernel.org/linus/fb757dfa039fd2adaab5bf0de2df1530531b4060|commit]], [[https://git.kernel.org/linus/7b295a6fc63254381504b4abd37ff150eec19bea|commit]], [[https://git.kernel.org/linus/5bd8c4b7d3bbe03a56f915f5da95330cb74fa3f6|commit]] * soc-core: Add core support for ignoring suspend on selected DAPM widgets [[https://lore.kernel.org/linux-sound/20260507013654.2945915-1-chancel.liu@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/8468c8aafe8b5807e5acba2f8aa96d0b3ce0c248|commit]], [[https://git.kernel.org/linus/51271184a06d4f7bbc7f1abcc2d0c824f55323cb|commit]], [[https://git.kernel.org/linus/68bb9a7f557a504b9221717c708a0d14aa727815|commit]] * spacemit: add K3 SoC support [[https://lore.kernel.org/linux-sound/20260522-k3-i2s-v3-0-08e3eb811d93@linux.spacemit.com/T/|(cover)]], [[https://git.kernel.org/linus/6bc6b28c031484092ce1f829f59e4768e12b268e|commit]], [[https://git.kernel.org/linus/1c6ca2ca5c1bdc97912cf3f9b4a1e186919a6a98|commit]] * Add ti tac5xx2 soundwire codec driver support [[https://lore.kernel.org/linux-sound/20260505111806.2280-1-niranjan.hy@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/cdff2e6ab8908f523474931e6f986022f045fb3f|commit]], [[https://git.kernel.org/linus/38c89fededd5a9472e8222a20aa066058585f7b2|commit]], [[https://git.kernel.org/linus/e812de61e9a0cb45ab8c156bb0349ab9df503d3a|commit]], [[https://git.kernel.org/linus/c4e19a93df81a99dfda0886a8296a8c8830ddd6b|commit]] * tas2781: Add TAS2573 support [[https://git.kernel.org/linus/a0cecbfc1545d5e658a1bd51525024ff53e08b1a|commit]], [[https://git.kernel.org/linus/06ff6ffec2f73f315558483d723a4bf81f2bcd3a|commit]] * tegra: Add S8 PCM format support for MVC [[https://git.kernel.org/linus/116c535ea4770ee3af57c5d52d71c574009f93a7|commit]] * tegra: Add per-stream Mixer Fade controls [[https://git.kernel.org/linus/36645381b864b53ae976221854bbfc23da6abba3|commit]] * ti: davinci-mcasp: Add audio-graph-card2 and DPCM support [[https://git.kernel.org/linus/216f7452a68e3974fa27930d577b84f385348e55|commit]] * tlv320aic3x: Add multi endpoint support [[https://git.kernel.org/linus/ed05258250dc91bebd84bb8778217b0ce9992ff4|commit]] == Tablets, touch screens, keyboards, mouses == * bpf: Add Huion Inspiroy Frego M button quirk [[https://git.kernel.org/linus/857e71cb0a538b1660743a4267a1e789575f7966|commit]] * Firmware support for usb-hid devices and cp2112 [[https://lore.kernel.org/linux-input/20260520-cp2112-dt-v14-0-b1b4b6734b6f@plexus.com/T/|(cover)]], [[https://git.kernel.org/linus/c0be05f68a2145d566a44805f22896f141316cf1|commit]], [[https://git.kernel.org/linus/efab84c398c17d2575e8a308c243915baae3affa|commit]] * Add onexplayer configuration hid driver [[https://lore.kernel.org/linux-input/20260419042624.625746-1-derekjohn.clark@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/84910c459d65ab3a1aeac7f936169fb71334dd46|commit]], [[https://git.kernel.org/linus/252c4bf1d9316ee57f60cef93b9ce37da10307be|commit]], [[https://git.kernel.org/linus/2f424f28fb39fa3afc1cd73d4191af0262016ea2|commit]], [[https://git.kernel.org/linus/e4c850a6e750ae9878e9a9329ba7863ab5b4a756|commit]], [[https://git.kernel.org/linus/99bde1dfe878e990655142a2eddd187e84735198|commit]] * lenovo: Use KEY_PERFORMANCE capability for !ThinkPad X12 Tab Gen 2 [[https://git.kernel.org/linus/4b0f556deb9af714dd87c309dc125f32098aeb9d|commit]] * logitech-hidpp: sync wheel multiplier on wheel mode changes [[https://git.kernel.org/linus/f0866517be9345d8245d32b722574b8aecccb348|commit]] * nintendo: add support for HORI Wireless Switch Pad [[https://git.kernel.org/linus/9146038120a6e5b2ba872515ed2097e4c285602d|commit]] * playstation: Add !DualSense Edge extra button support [[https://git.kernel.org/linus/bf29bafe3eaa8b8582407967755dbcd940a30287|commit]] * rakk: add support for Rakk Dasig X side buttons [[https://git.kernel.org/linus/15a0449c955c862045c17f35d9479791981e7812|commit]] * Add support for wacom w9000-series penabled touchscreens [[https://lore.kernel.org/linux-input/20260528074818.12151-1-hendrik-noack@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/185cd1d8cb7f0fd30d868fa12d294bba5997b7c7|commit]], [[https://git.kernel.org/linus/acaefbacc997ae79527a5ade8720221dfe17407e|commit]] * Pcap_ts: remove unused driver [[https://git.kernel.org/linus/cde5e7777f2e0b625d576b8725c65ec1f3b12b79|commit]] * stmfts: support FTS5 [[https://lore.kernel.org/linux-input/20260409-stmfts5-v4-0-64fe62027db5@ixit.cz/T/|(cover)]], [[https://git.kernel.org/linus/4e2e14c2b19095f7e82a98e202eb5b07a8c9f83c|commit]], [[https://git.kernel.org/linus/04336c6e93ad00fc1c51c561ad65edb96caecc70|commit]], [[https://git.kernel.org/linus/18ac49e763af7e10064438da3d8f1c864db29a55|commit]], [[https://git.kernel.org/linus/9ea34baf20cd41e5fe4aa8f7bc3283196b0a2bc9|commit]], [[https://git.kernel.org/linus/9ecb0c045bebd832f75505fc86b590cfda0cd947|commit]], [[https://git.kernel.org/linus/dd78ec391fbd56fad39e3c6d9a37e82df0439289|commit]], [[https://git.kernel.org/linus/8a1f9de80e45951b43d6e1e287a07f7d94cadbe8|commit]] * Xilinx_ps2: remove driver [[https://git.kernel.org/linus/92e6b06858caf79227c19a4846b47a4e700e47d4|commit]] == TV tuners, webcams, video capturers == * Add encoder features [[https://lore.kernel.org/linux-media/20260324050400.218-1-jackson.lee@chipsnmedia.com/T/|(cover)]], [[https://git.kernel.org/linus/5d801b59633f6af60bb0e18d3bbb18b7b040a6d9|commit]], [[https://git.kernel.org/linus/ffa7cb083c134042e2125cf37f488b407573607f|commit]], [[https://git.kernel.org/linus/f8505f9d6b223a26854003bfdba1a0772457886d|commit]], [[https://git.kernel.org/linus/37340f0744442273facd9a785ecab10af985e4db|commit]] * cadence,ti: CSI2RX Multistream Support [[https://lore.kernel.org/linux-kernel/20260520120022.539913-1-r-donadkar@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/148d96822b100a1ff81247f37957722074d07c81|commit]], [[https://git.kernel.org/linus/bfd10a287ca277508b822f49ad469dbee316b597|commit]], [[https://git.kernel.org/linus/c071e5fd44944745c078df12f27f86916b214ab7|commit]], [[https://git.kernel.org/linus/e94ae7d2827d9c29a61a2ac61acc73a5e6d75cca|commit]], [[https://git.kernel.org/linus/16fe3fc16e4b30e2f61a8668afde11d8245aae5a|commit]], [[https://git.kernel.org/linus/982135c0eac6d56c29cb42fdb0c3879cdd369d67|commit]], [[https://git.kernel.org/linus/8b08ed98f8601156ab7b36e3d054355123229fa3|commit]], [[https://git.kernel.org/linus/57283236b7a283ac4a7c54b69d7ab008f1d441e8|commit]], [[https://git.kernel.org/linus/94dfbd4f29b823025db59da18bcb3e4eb8148972|commit]], [[https://git.kernel.org/linus/d71fc9d98cf73aebe7227b8d941be3dcfb17ab2d|commit]], [[https://git.kernel.org/linus/c974827d4b08d6eaf16b6010bf81960ba9ec1ac7|commit]], [[https://git.kernel.org/linus/3ed9c0a1fdbac36942af32fc1b1490a8ba241e55|commit]], [[https://git.kernel.org/linus/7b6887a034e4586e7cb0371e192065d5740865f1|commit]], [[https://git.kernel.org/linus/13ef2b0fa7e848c6d4658aa2847f6725a71c8712|commit]], [[https://git.kernel.org/linus/c85d3d5362a8352c9e94f390ecd1b245e97458d0|commit]], [[https://git.kernel.org/linus/c0429f49f4267496a710f8db619696e87c796832|commit]], [[https://git.kernel.org/linus/ec8d4573c3d51b248fcc4fdd333a3b48f8e35c41|commit]] * cec: add CEC LIP support [[https://lore.kernel.org/linux-media/cover.1779115235.git.hverkuil+cisco@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/65efd1314dbcb37e4ab47974095ae97f90751f30|commit]], [[https://git.kernel.org/linus/300b8963c2f68a70588b086ac9137c2fae9caed5|commit]], [[https://git.kernel.org/linus/b300f96cb8cbda56c645e0816948803ea9674433|commit]], [[https://git.kernel.org/linus/79500c929de313550554e604d22f3202955cea20|commit]] * i2c: cvs: Add Intel CVS driver [[https://lore.kernel.org/linux-media/20260527170531.383871-1-miguel.vadillo@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/8e2b43d2c10b1b5f42805810c6854470d8774e60|commit]], [[https://git.kernel.org/linus/c6b1b34b509032c7e7cef9efc63cab55c2ad309e|commit]], [[https://git.kernel.org/linus/c28527ce5d063682866d2e8c4824f8cb7efdb7a1|commit]] * iris: add support for purwa platform [[https://lore.kernel.org/linux-media/20260529-enable_iris_on_purwa-v8-0-b1b9670459ab@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/4147ffa3d96dde43bd4f3607db75f261fafaade2|commit]], [[https://git.kernel.org/linus/f014f5bec088e7c084343642a83725c77a24af39|commit]] * iris: add FPS calculation and VPP FW overhead in frequency formula [[https://git.kernel.org/linus/5c66647a5c3e005f9b6a96fe4aa7ec82d2701b4f|commit]] * pci: add AVMatrix HWS capture driver [[https://git.kernel.org/linus/ba07fd2f5742e8b0d965003b34c7a44eb4f67e53|commit]] * Add amd isp4 driver [[https://lore.kernel.org/lkml/20260506093250.93460-1-Bin.Du@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/9a54c285630c0072daef5d526c3f0b697e901065|commit]], [[https://git.kernel.org/linus/f2f2c3547d6283e79de424c3c6e759899608fa1e|commit]], [[https://git.kernel.org/linus/4c5feef6a62c22b578344891232872056415a3dd|commit]], [[https://git.kernel.org/linus/4e5e7a7ddb4ab9ac35928d7dc72efc8797639dc3|commit]], [[https://git.kernel.org/linus/2ccf48af22709b90ea9419cd828c92652d7709ac|commit]], [[https://git.kernel.org/linus/ec4bec227b9d3796cb78af0d3d9bcdd26f0769c5|commit]], [[https://git.kernel.org/linus/3cd9b7011519c3fffffb7b6752fc7603be52dc1d|commit]] * cros-ec: Add Dirkson to the match table [[https://git.kernel.org/linus/560d29f4eef9fdac49fd5373502c42df4fc92752|commit]] * cros-ec: Add Kulnex and Moxoe to the match table [[https://git.kernel.org/linus/e024767f90f9f50bfcce4b20bb74237ad72450f3|commit]] * qcom: Add camss support for sm6350 [[https://lore.kernel.org/phone-devel/20260216-sm6350-camss-v4-0-b9df35f87edb@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/983f4496b95eab85997054511a6c59575d4120b1|commit]], [[https://git.kernel.org/linus/f1db6810902d70767180b550614a936f0613c0a2|commit]] * qcom: camss: Add camss TPG support for multiple targets [[https://lore.kernel.org/linux-kernel/20260317-camss_tpg-v10-0-b4cfa85c2e1b@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/70b193987c8c025618b6dea7303e7972053e9313|commit]], [[https://git.kernel.org/linus/4b14db418b6e9fe4cb1f50120bb26f73d3a1573f|commit]], [[https://git.kernel.org/linus/51fe835c485beaebe041d441d2be9840882bb152|commit]] * qcom: camss: Add PIX support for CSID/VFE-340 [[https://lore.kernel.org/linux-media/20260414185202.2714019-1-loic.poulain@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/83fcf113ea9a03255d065c27b328ed3c1e816678|commit]], [[https://git.kernel.org/linus/189c9ef362be65ea587074f0b73e74ac5855cf51|commit]], [[https://git.kernel.org/linus/ad543f3842f8e8998590f704fb09d160adcc610d|commit]], [[https://git.kernel.org/linus/880a3e40337e5ddf18ab8d8e07fe963de8789cbf|commit]], [[https://git.kernel.org/linus/6a75e3d4f6428b90f398354212e3a2e0172851d6|commit]] * qcom: iris: encoder feature enhancements batch2 [[https://lore.kernel.org/linux-media/20260512-batch2_features-v7-0-4954e3b4df84@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/897972882725db9d0d417e168b0f756ddf348a23|commit]], [[https://git.kernel.org/linus/6870381285b8b8161235d54456a7c4fe0e94f32e|commit]], [[https://git.kernel.org/linus/e4d067d5e991b96d86d9becc5fc9c9cfc4cacc59|commit]], [[https://git.kernel.org/linus/e0507d45b3c171296248b4382271a003c6c2e058|commit]], [[https://git.kernel.org/linus/df5418d5f96c88430661a17143f4b74666dcc471|commit]], [[https://git.kernel.org/linus/d5e3f2b961da5048a4e588bfa81d8c599956d12c|commit]] * qcom: iris: add support for decoding 10bit formats [[https://lore.kernel.org/linux-media/20260602-topic-sm8x50-iris-10bit-decoding-v5-0-c2b32474ed67@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/7d460ca3917b47429439fd5793ac017b4031a92f|commit]], [[https://git.kernel.org/linus/7aa4969dd9af6ad4beef6614d99b3673f42359a5|commit]], [[https://git.kernel.org/linus/3ea0343c09be74ae9eda9dff9c153750a6d9b961|commit]], [[https://git.kernel.org/linus/2f2f76d43314a8ae86aedae28f908a6a03e22521|commit]], [[https://git.kernel.org/linus/20c3ef4c7cae76d4e15f31c812aa7761def2207a|commit]], [[https://git.kernel.org/linus/65c06d2edded3b1e1633bf75f0f7a26b609ed5ac|commit]] * rc: mceusb: add support for 04eb:e033 [[https://git.kernel.org/linus/0692c2602e4cd410aa045f8991bd1c142b2e56f9|commit]] * rga: Add RGA3 support [[https://lore.kernel.org/linux-media/20260521-spu-rga3-v7-0-3f33e8c7145f@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/4abd2f68950a296b6d547376d7d0f8b351e72f01|commit]], [[https://git.kernel.org/linus/3bb5a7d25a2bdc6ad22af404fb6f2cca01e96aaf|commit]], [[https://git.kernel.org/linus/e623f2b7397079005e940d101b80796b3c39d229|commit]], [[https://git.kernel.org/linus/84fbe791a6203e35a602f7fef94d967466cd8d29|commit]], [[https://git.kernel.org/linus/2c225846271fc6b4f7e2a34271ebe828ed461772|commit]], [[https://git.kernel.org/linus/65017e26c065d1240b0512c15867ef1128034fd8|commit]], [[https://git.kernel.org/linus/a2a4f69fd2e333bacd17d1788eb5211cb6f373cc|commit]], [[https://git.kernel.org/linus/74d010fbdc4478293ceb96eed7f6609fe6c7529c|commit]], [[https://git.kernel.org/linus/dbf91b1ab6d95662ceb66cb55abceda5b4dc2f2b|commit]], [[https://git.kernel.org/linus/ce1b5e4239aae88e71aca0e9db1116d46be2fc0c|commit]], [[https://git.kernel.org/linus/0fab01bb159a3c0cf79f44a7126987548e001a5c|commit]], [[https://git.kernel.org/linus/92f50870ae987b8e2e5334e4ee38f82f6f405d78|commit]], [[https://git.kernel.org/linus/3de2ea285a15e27a2e81c442124062806235b26d|commit]], [[https://git.kernel.org/linus/6f4e57d57c474be1202a2e0c5c7a9b543503216a|commit]], [[https://git.kernel.org/linus/00910c4f731773276d75acdcee3bc15f19a37705|commit]], [[https://git.kernel.org/linus/10e2141179fe480763d10b604d7e4f9c62e8ba76|commit]], [[https://git.kernel.org/linus/9481ec73f6e6bff573a5716692ceb9669b68f134|commit]], [[https://git.kernel.org/linus/d8eb890079d19e4b5ac8073038c4fea006992e00|commit]], [[https://git.kernel.org/linus/e21531a6b031a46f37f61d4d7c7508868fb3d434|commit]], [[https://git.kernel.org/linus/5873cb8ce139bdeb60747d672667de19736b759b|commit]], [[https://git.kernel.org/linus/6b7c18553720a2a9594f88940c47d4a7ff9687b1|commit]], [[https://git.kernel.org/linus/d11d812ddea312659c28d4402c059f88f2b4e348|commit]], [[https://git.kernel.org/linus/918c4589a0e2bb7338b556c28ad5cb36e8e27795|commit]], [[https://git.kernel.org/linus/d8427bb2efbb301632247ae15878d0e6fad41a23|commit]], [[https://git.kernel.org/linus/ded2efe97dcf6d888878bb99174f9484dd81c928|commit]], [[https://git.kernel.org/linus/bf0ee2589053b103426e1179b87f83ea512264df|commit]], [[https://git.kernel.org/linus/24a63d4c9d3ce3afc99f698cff62d79c457fc5ca|commit]], [[https://git.kernel.org/linus/25ee898961a2c661e4cd72bc98f0060f1cd11222|commit]] * rockchip: rkcif: add support for rk3588 vicap [[https://lore.kernel.org/linux-media/20260522-rk3588-vicap-v5-0-d1d1f5265c56@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/804ed52335e93d8e94dc44ae7d4c31f54efbb5fa|commit]], [[https://git.kernel.org/linus/4a6b7bf1de948251ca5f09ca1a632f036e52085c|commit]], [[https://git.kernel.org/linus/2175323fdf820ebf2d861283d1de7ef394b048c5|commit]], [[https://git.kernel.org/linus/5052c99cf05271b91fe2b4e6540f7a7d9b6db62f|commit]], [[https://git.kernel.org/linus/c7126247fb797127ced68691583932d0a05bbd68|commit]], [[https://git.kernel.org/linus/bfc2779116ab7636a08c254d76a7a43d06feae1c|commit]], [[https://git.kernel.org/linus/a34ae4f44c9ff4f4170dd21cdb22efad63710af4|commit]] * synopsys: enhancements and i.MX95 support [[https://lore.kernel.org/linux-media/20260519-csi2_imx95-v4-0-84ea4bb78a88@oss.nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/8ba166ff7c921da610376156d7c0a5fc985fa983|commit]], [[https://git.kernel.org/linus/4a7004c03d2227643c2ef2e546ad173b2b1480b7|commit]], [[https://git.kernel.org/linus/9823c6bd80082906e2b1d0ca03f470ff395b5557|commit]], [[https://git.kernel.org/linus/82cdee9be284af7f3aa2b2ba1fa61c410642cac4|commit]], [[https://git.kernel.org/linus/113423645c9363acdb03859c65b5b030ae9ddd43|commit]], [[https://git.kernel.org/linus/af92c6d86b2bc3849935dc6ecfe78eba016a47a4|commit]] * uvcvideo: Map known XU controls [[https://lore.kernel.org/linux-media/20260316-uvcdynctrl-v3-0-19cd4657e1f3@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/a84391b77351bbca92ea9db2be1f44e17f2eda6d|commit]], [[https://git.kernel.org/linus/85355f7268af2e1cdb771842de59ac6be42863d5|commit]], [[https://git.kernel.org/linus/02f93b4f940c66b99258cce954dcaeda7b3295a8|commit]] * Add support for wave6 video codec driver [[https://lore.kernel.org/linux-media/20251022074710.575-1-nas.chung@chipsnmedia.com/T/|(cover)]], [[https://git.kernel.org/linus/968b741872914a15363af0daf24ed2e82ec355f3|commit]] == Serial == * 8250: Add console flow control [[https://lore.kernel.org/linux-kernel/20260511152706.151498-1-john.ogness@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/f69ec492244d54068f08c20f90979274d8ac3655|commit]], [[https://git.kernel.org/linus/39d307074f919aed4fe7b1c131e624f34fec3d51|commit]], [[https://git.kernel.org/linus/5e6dfb87b191f34b1bb7cfb4d668665e5b70687b|commit]] == Universal Serial Bus == * Add support for a new protocol over USB4/Thunderbolt cable called USB4STREAM [[https://lore.kernel.org/linux-usb/20260511102744.1867485-1-mika.westerberg@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7e6445d9d6f7dfc5635fc216488d6f62a5594fe9|commit]], [[https://git.kernel.org/linus/aa4999c0297ae56143f67ecb3ef008a473afcc00|commit]], [[https://git.kernel.org/linus/abc27e5bfed2fa281ccb23419ef4d1c9ded86398|commit]], [[https://git.kernel.org/linus/5140737c592d23b4de0f98c47dd347684a0c8de3|commit]], [[https://git.kernel.org/linus/c51777370ac2ef435401340e205ef1d0c778df28|commit]], [[https://git.kernel.org/linus/d614113c10ae6e35e74cdfc4fea280ce1a93ca0b|commit]], [[https://git.kernel.org/linus/94a11cd5ddb1d7c206f81df17a5fcb5d3ec2d13f|commit]], [[https://git.kernel.org/linus/cba57ed6f1e7529498cebbbe135c5132667fa923|commit]], [[https://git.kernel.org/linus/6db21d817b43f8ce5654ccc7aff80d40e4dba4ac|commit]], [[https://git.kernel.org/linus/af8922ffb322c4650dc536a236c4b42a1cf2829e|commit]] * cdns3: USBSSP platform driver support [[https://lore.kernel.org/devicetree/20260421023459.506145-1-peter.chen@cixtech.com/T/|(cover)]], [[https://git.kernel.org/linus/fb14e7f7cbb4abbcde5576282d91352deaff2887|commit]], [[https://git.kernel.org/linus/6076388ca1eda808b95f9479f3b04839d348a2f7|commit]] * cdns3: support configurations without DRD block [[https://lore.kernel.org/linux-usb/20260521-no_drd_config_v9-v9-0-2512cef10104@cadence.com/T/|(cover)]], [[https://git.kernel.org/linus/a82fb629ce5976cfdd6c1ac819f7bd8ce967aae3|commit]], [[https://git.kernel.org/linus/7b7f2dd913829e06705035dfc41ca25fa6ec68d3|commit]] * cdnsp: add support for eUSB2v2 port [[https://git.kernel.org/linus/e68fddb47aad85ebd294a051243066f29da20d8d|commit]] * chipidea: udc: support dynamic gadget add/remove [[https://git.kernel.org/linus/a3fe1408e801b3406d2786557bcea8838973c036|commit]], [[https://git.kernel.org/linus/dd0c03d685225cb8fc60c477417d1b9c3b05ba9d|commit]] * Add genesys logic gl3590 hub support [[https://lore.kernel.org/linux-usb/20260403100435.3477729-1-swati.agarwal@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8417e4cd6ce06f1f79a22091bc6cc82677490315|commit]], [[https://git.kernel.org/linus/9a71ac508974d44d42d358f42e6a766ec67a73d1|commit]] * typec: ucsi: Add support for SET_PDOS command [[https://lore.kernel.org/linux-usb/cover.1778798352.git.pooja.katiyar@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7c40306927107c8c88030a30875e1c98abb908fd|commit]], [[https://git.kernel.org/linus/775fae520e6ae62c393a8daf42dc534f09692f3f|commit]], [[https://git.kernel.org/linus/1b474ee01fbb73b1365adbf9b3067f7375e471ee|commit]] * usb: typec: ucsi: Enable debugfs for message_out data structure [[https://git.kernel.org/linus/201b015f95b8d6276d467f81c150ec491c7bda26|commit]] * Amd promontory 21 xhci temperature sensor support [[https://lore.kernel.org/linux-usb/20260519000732.2334711-1-hurryman2212@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/9e896b4a48c4e815956d28961448041c80ad5a19|commit]], [[https://git.kernel.org/linus/7e916914666667bd0698131fb24342203d1b4ef1|commit]] == Serial Peripheral Interface (SPI) == * Support the spacemit k1 spi controller [[https://lore.kernel.org/linux-spi/20260502-spi-spacemit-k1-v10-0-f412e1ae8a34@riscstar.com/T/|(cover)]], [[https://git.kernel.org/linus/b610d5333c4b93389240b62d1b6299e7e2ee2e65|commit]], [[https://git.kernel.org/linus/efcd8b9d111177d48c841d09beca43b15d5b9e5f|commit]], [[https://git.kernel.org/linus/c580774185426ea316396b1dc3f1737a3ad3800a|commit]] * Add qspi support for qcs615 and improve interconnect handling [[https://lore.kernel.org/linux-arm-msm/20260429-spi-nor-v5-0-993016c9711e@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/0065dc1fed2a87f815065b1348732ba45469ea83|commit]], [[https://git.kernel.org/linus/d283d5d4d9f6d081ddb65e371be26fffeb611c42|commit]], [[https://git.kernel.org/linus/104b5e9b85c00c3fe552032164bf5bbd78e0f0b4|commit]], [[https://git.kernel.org/linus/ef4d269e5566ec8d32de149c91f1c907ec9b9511|commit]], [[https://git.kernel.org/linus/d2ed3f777f81989a7af6029dee59decad9f488d2|commit]], [[https://git.kernel.org/linus/45287b9e5e28f10ec910480635d4f239154d4120|commit]], [[https://git.kernel.org/linus/8289feadbcbc1b0458a9e81d0eca42f97b28bbe3|commit]] == Watchdog == * Add support for gunyah watchdog [[https://lore.kernel.org/linux-arm-msm/20251118-gunyah_watchdog-v8-0-e5de12e2eef5@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/07b9712339e3ce1d183adef996c0f317adc9848d|commit]], [[https://git.kernel.org/linus/ca316e145c35d59bf1c0b48ff4e38091e19b80a8|commit]] * Add support for andes atcwdt200 [[https://lore.kernel.org/devicetree/20260115081444.2452357-1-cl634@andestech.com/T/|(cover)]], [[https://git.kernel.org/linus/fec053e452a5e859cf6e8aa2c9d44d78fed60034|commit]], [[https://git.kernel.org/linus/e4e0848ad046da9304e0656a71f74ddfbb316e98|commit]], [[https://git.kernel.org/linus/b5998b4bc54888528a087db1c2744c69748bd822|commit]] * gpio_wdt: add ACPI support [[https://git.kernel.org/linus/5abb70c8f7582950e490823f4a94a3597ada9d83|commit]] * Add support to read the watchdog bootstatus from imem [[https://lore.kernel.org/linux-arm-msm/20260408-wdt_reset_reason-v10-0-caf66786329f@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/ea333d1991e449b13a3b28812c4493d376492012|commit]], [[https://git.kernel.org/linus/158dd300b07b0d39e9fb791a4ad1bc68c8588530|commit]] * Add reaction control in rti [[https://lore.kernel.org/linux-watchdog/20260206234255.380530-1-jm@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/4e9590d8d52ac3193d723f55bd0fbc6a18e10549|commit]], [[https://git.kernel.org/linus/aed1abf31ea3f13b8ac8aa0f6c1078a9bc7b9564|commit]] * Remove driver for integrated wdt of zfx86 486-based soc [[https://git.kernel.org/linus/151d4c1b2fbf7d9604a5f4de1bcb80a53a9ead1c|commit]] * Remove amd elan sc520 processor watchdog driver [[https://git.kernel.org/linus/550c3bcdda0e9e3b3258b2fa9da040a96db058fb|commit]] == CPU Frequency scaling == * elanfreq: Drop support for AMD Elan SC4* [[https://git.kernel.org/linus/6fb302d2109c84d33e988d5b6e803dc8eae6e21e|commit]] * Add cpufreq scaling support for qualcomm shikra soc [[https://lore.kernel.org/linux-pm/20260522-shikra-cpufreq-scaling-v4-0-f042a25896c5@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/ef92354d0e6261e0ed792666972ef0b257cc0d8f|commit]], [[https://git.kernel.org/linus/4b5d3b847218b466527fb98990e193874081e0c7|commit]] == Voltage, current regulators, power capping, power supply == * supply: Add support for Surface RT battery and charger [[https://lore.kernel.org/devicetree/20260507134608.76222-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/de296b53775cd1ccb6b448b4cc8d843c8858e1df|commit]], [[https://git.kernel.org/linus/3d6529b837de49294cea0d4600144353f5f084dd|commit]] * Support for samsung s2mu005 pmic and its sub-devices [[https://lore.kernel.org/linux-leds/20260516-s2mu005-pmic-v7-0-73f9702fb461@disroot.org/T/|(cover)]], [[https://git.kernel.org/linus/38569c751ccfa8a37ce4724b12548ae5fa9e7f57|commit]], [[https://git.kernel.org/linus/cf5d7a55d3b65b58a1d776625d5f791f73348467|commit]], [[https://git.kernel.org/linus/2cd517ed4eaf728631eafce645ebf63d0749c679|commit]], [[https://git.kernel.org/linus/e491ebea157ff3ba18483ea0f82a9536dc393dec|commit]], [[https://git.kernel.org/linus/9e667b8ebd5d8229cf523372bf62660f1090c8a0|commit]], [[https://git.kernel.org/linus/02149db273a936703764c4b5173e533817180d25|commit]], [[https://git.kernel.org/linus/63ccd117f4257c66d66bc4a49f2d7199adaefa66|commit]], [[https://git.kernel.org/linus/373777fb56ab4db8a2a45cb14985550e888043eb|commit]], [[https://git.kernel.org/linus/7e541f6dbd05921d0bbb99646028cb9982535707|commit]] * Add support for sgm3804 dual output driver [[https://lore.kernel.org/linux-kernel/20260522-topic-sm8650-ayaneo-pocket-s2-sgm3804-v5-0-bd6b1c300ecc@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/8480ea35d715995a7261da045b8f3d9340c79f21|commit]], [[https://git.kernel.org/linus/0c47e1a8cf5d0052745553a0aeb2c8c4ab1b5453|commit]] * mt6359: cleanup and add supplies [[https://lore.kernel.org/devicetree/20260514091520.2718987-1-wenst@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/7502c035b884b73f51669cada3f4022cd11e8f5c|commit]], [[https://git.kernel.org/linus/cdc517688ffa2c30a64a20b558a9ecbf046c70f1|commit]], [[https://git.kernel.org/linus/beb4fe27998936c069c9b52b89ad65c4c697fc46|commit]], [[https://git.kernel.org/linus/eb17a319f1c95b5a8abb3d1ff3e30068a38173a7|commit]], [[https://git.kernel.org/linus/10be8fc1d534b4c23a9056ad20ff2bc0b314eeb2|commit]], [[https://git.kernel.org/linus/fb6a6297acfad9810dea91a67185a90ba7a7bfbd|commit]] * qcom_smd-regulator: Add PM8019 [[https://git.kernel.org/linus/5116c7f0e7ba3a0fccd78e7543ed7070d4042d8c|commit]] * Add pmau0102 rpmh regulator support [[https://lore.kernel.org/devicetree/20260427011159.230698-1-shengchao.guo@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/1804b8a1b43698853cb254dc5750c627591f2c43|commit]], [[https://git.kernel.org/linus/bb6ea5ae0b278c3f6e28565965ef4c12b7447665|commit]] * Remove used pcap regulator driver [[https://git.kernel.org/linus/b282e237ee4c3b0cbab762ef2e9a08a5d4a21b6d|commit]] == Real Time Clock (RTC) == * m41t93: add new features alarm, clock out, watchdog [[https://lore.kernel.org/linux-rtc/cover.1758379856.git.akhilesh@ee.iitb.ac.in/T/|(cover)]], [[https://git.kernel.org/linus/b70598b3769ea64978e76601d1824a12de556da1|commit]], [[https://git.kernel.org/linus/081e3de28c7663b0bd33e3eb374fb38a139e8064|commit]], [[https://git.kernel.org/linus/d86e8682593c79d8599537707f49e201456a76de|commit]], [[https://git.kernel.org/linus/5b55ff7cace4c176c7ebdf9512e50ac870f17fac|commit]], [[https://git.kernel.org/linus/5cb6816cd81b21246f45fe9803efdc21576574e3|commit]], [[https://git.kernel.org/linus/15ec2ce19962b61576c8bf25bc129fc61a653c2e|commit]] * rtc: aspeed: add AST2700 compatible [[https://git.kernel.org/linus/3319cfeeb8c4047026f84df045c438f7bbd338a6|commit]] * ds1307: add support for clock provider in ds1307 [[https://git.kernel.org/linus/18d39c71e3171eeb7296cb288bbac48a89a7cf4b|commit]] * Remove unused pcap driver [[https://git.kernel.org/linus/a50b23a57fce4157156014bc00b0cf9f4ab1a69f|commit]] == Pin Controllers (pinctrl) == * NAdd generic pinctrl for board-level mux chips [[https://lore.kernel.org/linux-kernel/20260504-pinctrl-mux-v6-0-8ea858ba3a5b@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/05e58da46d8e8f8b29bc9b47053bb0637891c06f|commit]], [[https://git.kernel.org/linus/9e5e1de61db29277d107bd6985c57629df449610|commit]], [[https://git.kernel.org/linus/aaaf31be04260316036f50a05b7d015c0d36b55a|commit]], [[https://git.kernel.org/linus/418a2bbdee2927d543db6913073d0e7ec8b540ee|commit]], [[https://git.kernel.org/linus/34acc5a8adfb76f2de63c8b8317397fb72b0aec8|commit]] * aspeed: Add AST2700 !SoC0 support [[https://lore.kernel.org/devicetree/20260506-upstream_pinctrl-v9-0-0636e22343ad@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/86dc1b92cdb343f8de51edf489bcdd8cb5517cf8|commit]], [[https://git.kernel.org/linus/2611c4d623ba867e196a4146f1927c3c468ac2bc|commit]], [[https://git.kernel.org/linus/7f73aa118a6fd9d3a8a2030e1f6aa0dd5dc8cae1|commit]] * aspeed: Add AST2700 !SoC1 support [[https://lore.kernel.org/linux-gpio/20260521-pinctrl-single-bit-v5-0-308be2c160fc@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/960b38750b17ed24d8f8de06e3c066c20d2167f9|commit]], [[https://git.kernel.org/linus/ae20d41bc230efa5972aaf5b27cadf1ff022aee8|commit]], [[https://git.kernel.org/linus/4af4eb66aac382b08a8fcf822161f48cbed3aa08|commit]] * Add support amlogic a9 [[https://lore.kernel.org/linux-gpio/20260507-a9-pinctrl-v2-0-49774feff2ef@amlogic.com/T/|(cover)]], [[https://git.kernel.org/linus/8c63821f227f7fd8b9e0adc3cd4b26e5b8eeb71e|commit]], [[https://git.kernel.org/linus/e1147e8a002af4997bd90b8210e02bab9b50d4c0|commit]] * Add lpass lpi pin controller support for sm6350 [[https://lore.kernel.org/phone-devel/20260430-sm6350-lpi-tlmm-v2-0-81d068025b97@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/8e9121cc761db8837352e9f5651402d04795bf59|commit]], [[https://git.kernel.org/linus/8e60ee5f94f0437af418c696a543c184d3ffc11d|commit]], [[https://git.kernel.org/linus/6ec81ace110ca2584d28863ffafe93a8ad6b7628|commit]], [[https://git.kernel.org/linus/630398127110753474576cbc0cd4ad102b18005e|commit]], [[https://git.kernel.org/linus/b1b08554e3be97712febad9d4d9ad617a1a32af1|commit]] * qcom: Add support for Qualcomm Shikra SoC [[https://lore.kernel.org/linux-arm-msm/20260512-shikra-pinctrl-v4-0-b93c3a2e4c08@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/c1bf20b2f449e914b0a6a607a6ee717f902850a7|commit]], [[https://git.kernel.org/linus/9db68ec534c5fdcfeb2e330b8eb6f555b3af78ed|commit]] * qcom: add support for the TLMM controller on Nord platforms [[https://lore.kernel.org/linux-arm-msm/20260504-nord-tlmm-v4-0-ccaa731ee8b3@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/1ea146943de776d0528facf031129420be64f07a|commit]], [[https://git.kernel.org/linus/c24dd0826f064d6b99a74ca0e004a4cda6677b9f|commit]] * Add renesas rz/g3l pincontrol support [[https://lore.kernel.org/linux-renesas-soc/20260430093422.74812-1-biju.das.jz@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/43d2cd6f61ffc04be19f4c7542554e4d28786a17|commit]], [[https://git.kernel.org/linus/55793d3ddf774e9bbeed3c940fb19d6c1124b6d3|commit]], [[https://git.kernel.org/linus/bbe2277dedbeb54bb251ae3e0599007253739aad|commit]], [[https://git.kernel.org/linus/da4a37540b780c386eb2362bfcc638f769918cb1|commit]], [[https://git.kernel.org/linus/a7d7aa8f5babac74ef780737e717bf9d90962eed|commit]], [[https://git.kernel.org/linus/b2aff3c99facba8174eb594870b7eeb909aa9e1a|commit]], [[https://git.kernel.org/linus/c590b377dcc0c382fb6d969483e551789a24540e|commit]] * Add tegra238 and tegra264 pinctrl support [[https://lore.kernel.org/linux-tegra/20260427134231.531222-1-pshete@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/e624fb83ccb44e202e1d6d4dc74681bec4f8a597|commit]], [[https://git.kernel.org/linus/9323f8a0e12ccd30f5855067924c41224e7364ca|commit]], [[https://git.kernel.org/linus/25cac7292d49f4fc5ee352eff7c8874d1b296380|commit]], [[https://git.kernel.org/linus/30a9d5162f25b4a67209677982ee745070f8b6d6|commit]], [[https://git.kernel.org/linus/c98506206912dd0ddea94f844b65b0209a57e372|commit]] * ultrarisc: add DP1000 pinctrl support [[https://lore.kernel.org/linux-gpio/20260610-ultrarisc-pinctrl-v4-0-b7e9b2a8ed84@ultrarisc.com/T/|(cover)]], [[https://git.kernel.org/linus/dac30db978c71af999403f42e4fad68eda5ed09e|commit]], [[https://git.kernel.org/linus/cb7037924836a352e767f69f1aa65b82f3e815f4|commit]] == Multi Media Card (MMC) == * spacemit: enable SD card support with UHS modes for !OrangePi RV2 [[https://lore.kernel.org/devicetree/20260511-orangepi-sd-card-uhs-v9-0-ae48c0b2b2cf@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/04a8ddc39e5cfebffb06f383350a6ee393ba89a6|commit]], [[https://git.kernel.org/linus/f87b273e4b6dfe57dcd63c24cbe3764d1f6954ae|commit]], [[https://git.kernel.org/linus/00a97fc57c09ff1cf71107753d9b5629caeb8c8a|commit]], [[https://git.kernel.org/linus/e9cb83c10071808aa7db4582e007a650aa6aa183|commit]], [[https://git.kernel.org/linus/2d77e577109967ef65f269c1fc1d6a659d4260fb|commit]], [[https://git.kernel.org/linus/2585c60ce2f977b13f14a67d1e3ed9c73fd7f381|commit]], [[https://git.kernel.org/linus/c76e2f058cbcab84e4a703f26857a58bdf6a0042|commit]], [[https://git.kernel.org/linus/85e4c5733cd7efa39f10d7200095c016ce4a2815|commit]] == Memory Technology Devices (MTD) == * spi-nor: Enhance software protection [[https://lore.kernel.org/linux-kernel/20260526-winbond-v6-18-rc1-spi-nor-swp-v6-0-4092f1419f8f@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/829dff83597615208aedf0f5abb3878b47f2314d|commit]], [[https://git.kernel.org/linus/e1d456b26bf23e30db305a6184e8abd9ab68bbf2|commit]], [[https://git.kernel.org/linus/a6470e2162e9c3779a4bd6ff3bed1b81d796e46e|commit]], [[https://git.kernel.org/linus/f316b8535887c50be009902bd02098fddb47e2e7|commit]], [[https://git.kernel.org/linus/7c4e909b176f661e834853fa726a6e58acab00e1|commit]], [[https://git.kernel.org/linus/154f375f7d31f2f57b4d312ac22562d64a7bb64f|commit]], [[https://git.kernel.org/linus/461e2f8a2d943ea2b1b966e8ffc8e5ac02c6a686|commit]], [[https://git.kernel.org/linus/5eeff82d389e381422f48a4bde4b7f4a5a2dc584|commit]], [[https://git.kernel.org/linus/cb3021466daa3d7f87cdec8c294649315dad711f|commit]], [[https://git.kernel.org/linus/2188bbbb4a20ca1864de8e1447d13e5d19e8355a|commit]], [[https://git.kernel.org/linus/82877fd772f7884474add88c476108b1dd670ef6|commit]], [[https://git.kernel.org/linus/8851f82645b42307b74dba190bee5a19cec97ae3|commit]], [[https://git.kernel.org/linus/ba32a259dd32af911e4f4fd49cdd7f32a40ccde5|commit]], [[https://git.kernel.org/linus/290e83833688b4df0da746af4c5fb87dbed2834a|commit]], [[https://git.kernel.org/linus/c672673c4b7b82d21537cd5aa32b98f48c20a2b2|commit]], [[https://git.kernel.org/linus/0e005045292dde634ed3973b5070eb2de62dc1df|commit]], [[https://git.kernel.org/linus/b7b63475903cc9967ae53c579bc1ad9ed2519080|commit]], [[https://git.kernel.org/linus/47eb01f46e2d0741e058006dafa1fdbbbccf9b15|commit]], [[https://git.kernel.org/linus/f05f0d62c5c6b981315bd10017ec98504165e355|commit]], [[https://git.kernel.org/linus/6000eab4515a2a381557a48c35e248a3418f2bc6|commit]], [[https://git.kernel.org/linus/e3fb31d8847fef2ce37c5f60bc77d3f731a2419b|commit]], [[https://git.kernel.org/linus/f5d81415a7e12cc73b510bfac181411fedfe6345|commit]], [[https://git.kernel.org/linus/591be2ba7861be3ca3aabeb3fd2a3ce96ddb8601|commit]], [[https://git.kernel.org/linus/855599425e1aefb499e7bf90c34f708ebbb63045|commit]], [[https://git.kernel.org/linus/751e4b02c469ac84e390c472fd30e2c512e3f587|commit]], [[https://git.kernel.org/linus/f468f05f0724cf7f7a993f9805185ea8cc72453c|commit]], [[https://git.kernel.org/linus/eb403cb56e13d7efd742511c1a92b89dc9db8658|commit]], [[https://git.kernel.org/linus/48007986232858f94fc1ba2af4b360008e3e146b|commit]] * spi-nor: spansion: fix die erase support [[https://lore.kernel.org/linux-kernel/cover.1779872008.git.takahiro.kuwano@infineon.com/T/|(cover)]], [[https://git.kernel.org/linus/306e443156b82a2a14a3f33da908c303be45529c|commit]], [[https://git.kernel.org/linus/df415c5e1de0f1aeefacb4e6252ff98d38c04437|commit]] * spinand: Add support for randomizer [[https://git.kernel.org/linus/54e1bc80af0c993afc6a2283722f8d4535b10d40|commit]] * spinand: macronix: Enable randomizer support [[https://git.kernel.org/linus/8ac45f4ff182586bb06fd9b2dfa0dff2af0734a1|commit]] * spinand: Winbond continuous read support [[https://lore.kernel.org/linux-spi/20260429-winbond-v6-18-rc1-cont-read-v3-0-0f38b3c229ad@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/4bde3ad9ee7b92ef226e02cbd3b5c743ed8f781e|commit]], [[https://git.kernel.org/linus/22fa40c7ecdb11ddc1c95db88cce379408687962|commit]], [[https://git.kernel.org/linus/c952533f25e3dc9f121a612299bd54adc795b2ec|commit]], [[https://git.kernel.org/linus/39d0ea33123ffe0214217b529830ad91574c8757|commit]], [[https://git.kernel.org/linus/6f96f2fa152518d93ffeedbea781db50aef7f7dc|commit]], [[https://git.kernel.org/linus/6eb7c193e751f057b2d75af9b174cfe5dd060696|commit]], [[https://git.kernel.org/linus/5e85bff62bccf74bbce17d29c9818f83d8652b18|commit]], [[https://git.kernel.org/linus/240e65cb4402d62238667d71c0f9298607200b8b|commit]], [[https://git.kernel.org/linus/ca842a62fe993019255b380ab53bed64ef31fe6f|commit]], [[https://git.kernel.org/linus/e1c172bbe1853e69e5fcf4692ea3c8b6fe9176a1|commit]] * maps: remove obsolete impa7 map driver [[https://git.kernel.org/linus/72de4a7c8e2953ae489120203d2c45bb59c5c54f|commit]] == Industrial I/O (iio) == * adc: ad4080: add support for AD4880 dual-channel ADC [[https://lore.kernel.org/lkml/20260420101225.4173-1-antoniu.miclaus@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/129c5499819bee611ea1a05f8307692ff75161ce|commit]], [[https://git.kernel.org/linus/80cc6d13d16d5c78cc088cea8a3d33ec853e3e22|commit]], [[https://git.kernel.org/linus/370461ac8d51c530e7194efd4764dcb738dc52d7|commit]] * adc: ad4080: add support for AD4884 [[https://lore.kernel.org/lkml/20260529141353.8492-1-antoniu.miclaus@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/4bff2ca299740182d2b05f425c02295e23177390|commit]], [[https://git.kernel.org/linus/7853cf5b65d2b70834cf49c7fb1ff6810120a8e7|commit]] * Add support for ad4129-4/8, ad4130-4, and ad4131-4/8 [[https://lore.kernel.org/linux-iio/cover.1774996100.git.Jonathan.Santos@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/77fb0dc77249891340160063a5c91b2225d2a1be|commit]], [[https://git.kernel.org/linus/277a2d241c089fa885f734e6cf57f30883399571|commit]], [[https://git.kernel.org/linus/2c5ebb7708274ac1e41cbd3248ed87aa3a1cee71|commit]], [[https://git.kernel.org/linus/71c1a1b376b3a7520c8f59f81ab6a28d77938ff5|commit]], [[https://git.kernel.org/linus/277a2d241c089fa885f734e6cf57f30883399571|commit]] * adc: ad4691: add driver for AD4691 multichannel SAR ADC family [[https://lore.kernel.org/linux-iio/20260529-ad4692-multichannel-sar-adc-driver-v14-0-e93c2747dc1f@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/1ea5792ad7c75e8d6ec62fcaccfbf38fa82ef978|commit]], [[https://git.kernel.org/linus/40850443aa1239f71fc65b870a0f0ecd54e42c9d|commit]], [[https://git.kernel.org/linus/41297c6bd8dd04c0b23bd7b14e00632cc806688b|commit]], [[https://git.kernel.org/linus/ad4f8513aa4ab949bb2986d64720a0b56f882cbc|commit]], [[https://git.kernel.org/linus/6d9e7161bfbcce8960e946280fc92e6f5dc70569|commit]], [[https://git.kernel.org/linus/4e8327ccb9098a8d71dfb000a02e844f4a002c00|commit]] * adc: qcom-pm8xxx-xoadc: add support for reading channel labels from DT [[https://lore.kernel.org/linux-arm-msm/20260510-pm8xxx-xoadc-label-v6-0-49700fd03005@smankusors.com/T/|(cover)]], [[https://git.kernel.org/linus/92767f9f574c985fdf9ff9c25e59624a74db58a1|commit]], [[https://git.kernel.org/linus/fcec89dfec1cb8fcd5ee7fb2b7d458633c4a8457|commit]], [[https://git.kernel.org/linus/70a1012793056852df6eda5a89cbf0476e0590e9|commit]] * Add gpadc support for a523 [[https://lore.kernel.org/linux-iio/20260516-sunxi-a523-gpadc-v3-0-a3a04cff2620@mmpsystems.pl/T/|(cover)]], [[https://git.kernel.org/linus/24245b93873bfef91657658775be3918e052d52f|commit]], [[https://git.kernel.org/linus/8114f4420360260576cbd6d0633b28a607321f0b|commit]], [[https://git.kernel.org/linus/e53b4d7b3ed109a64e0e3b440518d1b2ac18a05b|commit]] * Add support for ad5706r dac [[https://lore.kernel.org/linux-iio/20260427-dev_ad5706r-v9-0-a8e4cae499d7@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/2e43816512876d41a7ce1771ba949b846f5bb7dd|commit]], [[https://git.kernel.org/linus/081ce276d801d7c0a3dc41aa9a02ff73eb96c94a|commit]] * dac: mcp4821: add configurable gain support [[https://lore.kernel.org/linux-iio/20260414170309.6151-1-nikhilgtr@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/f4d618c6185101efa072fd5845000fee2074b8b8|commit]], [[https://git.kernel.org/linus/090839ecff2b30fa87b73f5001cdb150673a4d4c|commit]], [[https://git.kernel.org/linus/416e983c913742cfae1720982720fe06fc7d3bba|commit]] * light: add support for Broadcom APDS9999 [[https://lore.kernel.org/linux-iio/cover.1779781224.git.azpijr@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/46968e058cbc77a87f0771739eeea31aba7e08c1|commit]], [[https://git.kernel.org/linus/5f9363e523000f05bfbd5440fecfa08ec5d08094|commit]] * light: veml3328: add support for new sensor [[https://lore.kernel.org/linux-iio/20260531-veml3328-v4-0-f9b65d71d917@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/278b9d0fce2f462e8870d0effed0dc83c3cc7314|commit]], [[https://git.kernel.org/linus/e45a44f2196e0d6aa22fd80beff1c18dee9e9348|commit]] * magnetometer: add MEMSIC MMC5983MA driver [[https://lore.kernel.org/linux-iio/20260511191135.36691-1-vlad.kulikov.c@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ecedfa46a2e5db329925bac8cab9ac8cbad55755|commit]], [[https://git.kernel.org/linus/243a738ccdabb8f997a5c6678e22f60761dbadf1|commit]] * Update apds990x als to support device trees [[https://lore.kernel.org/linux-iio/20260425125429.65154-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/1a5fc4b5ddeeebacb22fead349b9dba3b2a1056a|commit]], [[https://git.kernel.org/linus/2f640a4d0fe181b6b02ea570bb64969e6e9322bd|commit]], [[https://git.kernel.org/linus/9c482946235362f81bf20da94e1c1f467a03c08f|commit]] == Multi Function Devices (MFD) == * Add MTU3 for RZ/T2H and RZ/N2H [[https://lore.kernel.org/linux-kernel/20260527145606.136536-1-cosmin-gabriel.tanislav.xa@renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/ed1a370da26369a26b25901685e620c12040a471|commit]], [[https://git.kernel.org/linus/4bf15cafe9588d0c303143b4c64c7bfc7b1a3a5d|commit]], [[https://git.kernel.org/linus/a3bd9f3dd5c88c621e4bc4ecd5f2ae9c277f558a|commit]], [[https://git.kernel.org/linus/f6b692d1f466ba3837ae9478e0d5ce6ef77697b4|commit]] * rsmu: fixes and new IC support [[https://lore.kernel.org/linux-kernel/20260429072047.1111427-1-dev.mbstr@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/6bc38f26ed07197b11a2b588edf1f43bfbc81d76|commit]], [[https://git.kernel.org/linus/d18fd55c780c2bae3d353024cab7f8746d3d9e91|commit]] * ezx-pcap: remove unused driver [[https://git.kernel.org/linus/e6f0018fbf1f4eabd3fb8ac71f06cb31efce3c86|commit]] == Pulse-Width Modulation (PWM) == * Add pwm support for ipq chipsets [[https://lore.kernel.org/linux-arm-msm/20260406-ipq-pwm-v21-0-6ed1e868e4c2@outlook.com/T/|(cover)]], [[https://git.kernel.org/linus/a8cd1a1baadbfed43ac214f0bf3e26c90e3b521e|commit]], [[https://git.kernel.org/linus/c436e3e9c265a1f012008ef5da6fd28863f8025c|commit]] == Inter-Integrated Circuit (I2C + I3C) == * Add loongson-2k0300 i2c controller support [[https://lore.kernel.org/devicetree/cover.1776135865.git.zhoubinbin@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/22623d6df6e09e3d89044897a83156b46e0cc33e|commit]], [[https://git.kernel.org/linus/6d1b0785f6d5e143a40be1dafa9e4e4d29fa7146|commit]] == Hardware monitoring (hwmon) == * pmbus: add support for flex bmr316, bmr321, bmr350 and bmr351 [[https://git.kernel.org/linus/cd447db64f703d12647fc3a809aa3b47505533c8|commit]] * ina238: add samples and update_interval_us support [[https://lore.kernel.org/linux-hwmon/20260609-hwmon-ina238-update-interval-us-v2-v3-0-016b55567950@advastore.com/T/|(cover)]], [[https://git.kernel.org/linus/1f7a5cfe44bf96bf54ce879339c896598db8e12e|commit]], [[https://git.kernel.org/linus/82508141450d90a6d92a14e93e5a00ffb193f5e0|commit]], [[https://git.kernel.org/linus/b47f4a72c62f2db5995ee4c7adfcd876faadf328|commit]] * temperature: ltc2983: Add support for ADT7604 [[https://lore.kernel.org/lkml/20260525164013.118614-1-liviu.stan@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/434c150752675f44dc52c384a7fa22e5176bc35a|commit]], [[https://git.kernel.org/linus/5cb9fdb446bfc3ae0524496f53fb68e67051701b|commit]], [[https://git.kernel.org/linus/53f4fda3c0efa77bb239dc5e357ae80644fcb400|commit]], [[https://git.kernel.org/linus/6b047d099703c9b4f6846dcb98e2e3ca7a0ff773|commit]], [[https://git.kernel.org/linus/ae81c43f6c01a441ea8ce77f37903853595b6bb3|commit]], [[https://git.kernel.org/linus/b46696afbceffd926adbeb62180554c2096cee78|commit]], [[https://git.kernel.org/linus/622775dbc56a6349fc98b368041e3224bfeeb9de|commit]], [[https://git.kernel.org/linus/a496ba27dd68a5830cd57ec6c5c6e735fd113b1b|commit]], [[https://git.kernel.org/linus/3dd0c048409e335320418c632966f149be628fd4|commit]] * asus-ec-sensors: add rog maximus z790 extreme [[https://git.kernel.org/linus/5f6617089dc06f9941e8ca57ba64345c9f1ed9ed|commit]] * Add ROG STRIX B650E-E GAMING WIFI [[https://lore.kernel.org/linux-hwmon/20260607110702.84599-1-eugene.shalygin@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/e481a270ad8ffe269b7779267d40473a41fb90b3|commit]] * Add ROG STRIX B850-E GAMING WIFI [[https://git.kernel.org/linus/5e9f31543515d685cafed33274433b6360c0e1e4|commit]] * lm63: expose pwm frequency and lut hysteresis as writable [[https://git.kernel.org/linus/964acc34569677e6725812172c3d1a28b3973277|commit]] * Support active-high alert polarity for lm75 [[https://lore.kernel.org/lkml/20260504151020.462342-1-markus.stockhausen@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/01dd3f682d86bcddf51e22255f2cabee66885080|commit]], [[https://git.kernel.org/linus/1be4001d9b9b0cd083ed1e3c7817ad01f29d120a|commit]] * nct6683: add support for asrock z890 pro-a [[https://git.kernel.org/linus/705ec98e8a48fd0c344c02541fcc430c1e86e30f|commit]], [[https://lore.kernel.org/linux-hwmon/4eee938d-e4ca-427d-a161-aa9ef737af3c@gmail.com/T/|(cover)]] * Add support for delta e50sn12051 [[https://lore.kernel.org/lkml/20260518-dev-6-18-e50sn12051-driver-v1-0-238e4e08a759@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/7232b794bf8d0f3d47af9fab4b0b07f2da291afa|commit]], [[https://git.kernel.org/linus/c41bc867788aca16b6f2d27185ffad8dca8f99c3|commit]], [[https://git.kernel.org/linus/98be2444a6453fc1e13afeb03c70f898a2fda4e9|commit]] * pmbus/adm1266: add clear_blackbox, powerup_counter, and rtc debugfs entries [[https://lore.kernel.org/linux-hwmon/20260520-adm1266-v5-0-c72ef1fac1ea@nexthop.ai/T/|(cover)]], [[https://git.kernel.org/linus/e7c1f9eb6e9f1138241f3bf28f8181f4f5ccd5eb|commit]], [[https://git.kernel.org/linus/e8d55e1f6ebf6d22727fe46ce8714906b3afe23e|commit]], [[https://git.kernel.org/linus/22c1992642ebe95f4ec9f6456cf56ae330d2571a|commit]] * pmbus/adm1266: blackbox, FW rev, rtc_class, GPIO label [[https://lore.kernel.org/linux-hwmon/20260512-adm1266-v3-0-a81a479b0bb0@nexthop.ai/T/|(cover)]], [[https://git.kernel.org/linus/0a310408504ed768aab9faa694573122ac7c003d|commit]], [[https://git.kernel.org/linus/e7c1f9eb6e9f1138241f3bf28f8181f4f5ccd5eb|commit]], [[https://git.kernel.org/linus/e8d55e1f6ebf6d22727fe46ce8714906b3afe23e|commit]], [[https://git.kernel.org/linus/b0ddda571d15528e6caee7090beff4a66dfdb1a2|commit]] * Add murata d1u74t-w psu driver [[https://lore.kernel.org/linux-hwmon/20260514-d1u74t-v4-0-1f1ee7b002ec@nexthop.ai/T/|(cover)]], [[https://git.kernel.org/linus/93fd1c2bda0dad0c95a68062cb2232a31b49d028|commit]], [[https://git.kernel.org/linus/ef68b3dbbe3968b1b409e4fe5190c187d3bc39ef|commit]] * Add support for lx1308 [[https://lore.kernel.org/linux-hwmon/20260428-add-support-lx1308-v2-0-90f115954143@inventec.com/T/|(cover)]], [[https://git.kernel.org/linus/66b4973f9a983911f79a73b211b6e1a6e9590f5b|commit]], [[https://git.kernel.org/linus/d71d17d347deeb674115bf2f883a26c1920e7af6|commit]] * Add support for max20830 pmbus [[https://lore.kernel.org/linux-hwmon/20260505-dev_max20830-v4-0-4343dcbfd7d7@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/cf5d3086a7cb6df18bf345dac0bbb7971f347da9|commit]], [[https://git.kernel.org/linus/dfd47a3c885b79dba0bc2e6a47aa17ca443c4c21|commit]] * pmbus/max20860a: add driver for analog devices max20860a [[https://lore.kernel.org/linux-hwmon/20260601184516.919488-1-sanman.pradhan@hpe.com/T/|(cover)]], [[https://git.kernel.org/linus/9ccccac56b60f17eed85dbcf747558290ef7fd4f|commit]], [[https://git.kernel.org/linus/9e8475a02b4ac18d0d46318522d4f6980da8f72a|commit]] * pmbus/max34440: add support adpm12250 [[https://git.kernel.org/linus/479bfeba2eb62666cd4b981c8e721c61dcf36e7d|commit]] * Add support for infineon efuse xdp730 [[https://lore.kernel.org/linux-hwmon/20260609072231.15486-1-Ashish.Yadav@infineon.com/T/|(cover)]], [[https://git.kernel.org/linus/adf2bba494013651d0e56c3dcda0296e9b5c5809|commit]], [[https://git.kernel.org/linus/7c264a7d077586a64656ea10559ce6ab69377534|commit]], [[https://git.kernel.org/linus/d647ebf5a5d50bf794e609b397d471e5b92a02ca|commit]] * raspberrypi-hwmon voltage support and teardown fix [[https://lore.kernel.org/linux-hwmon/20260517080445.103962-1-chakrabortyshubham66@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/3b7f59ffacb131037f592d3a4a7342c6773249a4|commit]], [[https://git.kernel.org/linus/78a3e36eec06a0dc4a205c753e7754e9f9408fba|commit]], [[https://git.kernel.org/linus/eb0d491e2787aa359f0d930151ff6e5e5df70fb9|commit]] * Add support for mps mp2985 [[https://lore.kernel.org/devicetree/20260414092801.1067470-1-wenswang@yeah.net/T/|(cover)]], [[https://git.kernel.org/linus/32faf8b9de3e0dc61a50a9c85634d8ac1c02ee33|commit]], [[https://git.kernel.org/linus/e656735fe32c59cc323c41e7922e77ac7bcd9f68|commit]] * Add driver for arctic fan controller [[https://git.kernel.org/linus/e28d0c73d4d7adc9cd3747d81fdc7338217f9a0c|commit]] * Support configurable fan pwm at shutdown [[https://lore.kernel.org/lkml/20260429065955.2113012-1-florin.leotescu@oss.nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/ee672fef23722f71d7bfa7d5a7f5822b1ca6cfa3|commit]], [[https://git.kernel.org/linus/d37276a86e40a6f6479745a8fb4e92d0dd77c82a|commit]], [[https://git.kernel.org/linus/07668f5ca30620fb1edfd730181bfd8120aa6c55|commit]] * Add support for the ltc4283 hot swap controller [[https://lore.kernel.org/linux-gpio/20260502-ltc4283-support-v13-0-1c206542e652@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/7ab12d5ab429677ed359b8ac768c138750fda946|commit]], [[https://git.kernel.org/linus/dd63353a0b5ef05a248df4c6db566b93bff0d843|commit]], [[https://git.kernel.org/linus/55c01d37949d215281106a3e532dd56fe678493d|commit]] * Add support for microchip emc1812 [[https://lore.kernel.org/linux-hwmon/20260610-hw_mon-emc1812-v11-0-cef809af5c19@microchip.com/T/|(cover)]], [[https://git.kernel.org/linus/1df240f323bd9f588e6f5bb886e406c06043394f|commit]], [[https://git.kernel.org/linus/1df240f323bd9f588e6f5bb886e406c06043394f|commit]] == General Purpose I/O (gpio) == * gpio-zynq: Add EIO GPIO support [[https://lore.kernel.org/linux-kernel/20260512060917.2096456-1-shubhrajyoti.datta@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/3eb639ef8da2d418ae69f3c8840c4e815036adc6|commit]], [[https://git.kernel.org/linus/18409d06b4a002cb8550ad7c20273bedc77851df|commit]], [[https://git.kernel.org/linus/eeb1d6dfd89344b17afe845d4839b79e37fdd547|commit]] * gpio-f7188x: Add support for NCT6126D version B [[https://git.kernel.org/linus/9a6c0b6ea12746d50cf53d59a7e05fd83f974bda|commit]] * 74x164: seed the chain from DT at probe time [[https://lore.kernel.org/linux-gpio/20260429035134.1023330-1-happycpu@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/d6e1a94888f5a4306c9998944a0f29f7bcd49411|commit]], [[https://git.kernel.org/linus/cb77f8933467d08c8896674cd39ca98550a70fd6|commit]] * tegra186: Add support for Tegra238 [[https://git.kernel.org/linus/8ac12d8b7099cdebff19aed78a81f61d8042c6be|commit]] * Add nova lake (nvl) acpi device ids to the usbio gpio and i2c drivers. [[https://lore.kernel.org/linux-gpio/20260410140858.585609-1-arun.t@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/5ccb19ae1cb3620a76254db5c60121d092d9a0f6|commit]] * ts5500: remove obsolete driver [[https://git.kernel.org/linus/cacb104ed9d4c8dae46029b21f481fd132b3f11e|commit]] == Leds == * Introduce the multi_max_intensity sysfs attribute [[https://lore.kernel.org/linux-kernel/20260509214603.262368-1-W_Armin@gmx.de/T/|(cover)]], [[https://git.kernel.org/linus/2682d6308654850ee4d4f9b3bbe3a31417890594|commit]] * Add support for ti lp5860 led driver chip [[https://git.kernel.org/linus/f0a66563aa2d0bb5673329ae6c4acb5d583cfdef|commit]] == DMA engines == * dw-edma: Add Xilinx CPM6-DMA DeviceID [[https://git.kernel.org/linus/c4441b95ae8012a99c6fe22b4f56155e0ddbd042|commit]] * Add peripheral dma support for spacemit k3 soc [[https://lore.kernel.org/dmaengine/20260518-k3-pdma-v6-0-67fdf319a8f8@linux.spacemit.com/T/|(cover)]], [[https://git.kernel.org/linus/55620b11186c81757b05fb8e2df9ddc7127d6fd2|commit]], [[https://git.kernel.org/linus/f46b47623e70dea8b03794a5420ffba060425e85|commit]], [[https://git.kernel.org/linus/6587b8661a0b61c2f4b260bfc9f0e9ef9de0ea2e|commit]], [[https://git.kernel.org/linus/3f47ca8bb3c3f4a71688451a0cb7350d3e1e1059|commit]] * Add support for qcrypto in kaanapali [[https://lore.kernel.org/linux-arm-msm/20260514-knp_qce-v2-0-890e3372eef8@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/dfd9538e78f57705e6c656d3ff5660ae7137789c|commit]], [[https://git.kernel.org/linus/3331fc194b129582fa21cb3a7e5cc68aaac1081f|commit]] * sh: rz-dmac: Add DMA ACK signal routing support [[https://git.kernel.org/linus/c0a207898fca8cbb4fad0da1e950d477b6afbf64|commit]] * Renesas: dmaengine and ASoC fixes [[https://lore.kernel.org/dmaengine/20260526084710.3491480-1-claudiu.beznea@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/731712403ddb39d1a76a11abf339a0615bc85de7|commit]], [[https://git.kernel.org/linus/5fbf3a2a3b96ef5810e6e0fbc601f82067629bc5|commit]], [[https://git.kernel.org/linus/89975baaa9ea2490b75d69842561a32ca888b7e5|commit]], [[https://git.kernel.org/linus/38d4d021228386b8e3fbef2bca5f1e91eacd4fe6|commit]], [[https://git.kernel.org/linus/32a69f1487819766d2084ed32b1350b18f971c10|commit]], [[https://git.kernel.org/linus/e21aa306e82067457f2297ae56af4c91db86c59a|commit]], [[https://git.kernel.org/linus/7a94c109a5def4f0f25705a82ed5870f794ff4ed|commit]], [[https://git.kernel.org/linus/1dddc864dfa844efaf36345eb58b121b2cdffa5f|commit]], [[https://git.kernel.org/linus/daa6d4617bee722e83f7d8584416e83b709c958a|commit]], [[https://git.kernel.org/linus/dc86e47ca9b1021e258c366a5a9aa15d71c814a5|commit]], [[https://git.kernel.org/linus/e8baee1d1cddc8e2be7bc362d6dc3fcb2021e873|commit]], [[https://git.kernel.org/linus/172bfb57481c65fcc94ebcae3a730f6df2f953d4|commit]], [[https://git.kernel.org/linus/16ba40151b1e6a52b28296a2173457bc6c31f022|commit]], [[https://git.kernel.org/linus/7c27a4d54d48d0774518390e4ce6cf3309aac141|commit]], [[https://git.kernel.org/linus/c13ce43e70719dead7009e7e708971ba1c447568|commit]], [[https://git.kernel.org/linus/b4d34819a53964648bc53cabaa3ba9890d4fdf9c|commit]], [[https://git.kernel.org/linus/9fcaec81ac56c9d2c5d779ffb5a76b622b4d0590|commit]], [[https://git.kernel.org/linus/cd2d36e8ae61832aaac3bddf5aafdab72821e6b9|commit]] * Add gpcdma support in tegra264 [[https://lore.kernel.org/lkml/20260331102303.33181-1-akhilrajeev@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/cc6049bd3fa8501ee27042df469a19ed69cf406d|commit]], [[https://git.kernel.org/linus/d6d7ffb994c676e6414a725d7eb8f208d901b63a|commit]], [[https://git.kernel.org/linus/680e1b928a6adc1b2d95038ffe9c9887ceafd478|commit]], [[https://git.kernel.org/linus/5000beabae65310ec81db40dcda181b0a6192ff3|commit]], [[https://git.kernel.org/linus/286632b9bf1cf239482d54b592cc1d5bbd5ec783|commit]], [[https://git.kernel.org/linus/45921a3282d642038d92737fab24107522324bd4|commit]], [[https://git.kernel.org/linus/321c0a15f027b83b20ed37717191a2187c9e2eb7|commit]], [[https://git.kernel.org/linus/b236b7973808195fd9c471492bee0041148b823e|commit]] == Cryptography hardware acceleration == * atmel-ecc: add support for atecc608b [[https://git.kernel.org/linus/b668edaf8dcc8d09f6f1e71797422b44d4bd22a3|commit]] * hisilicon/qm: support function reset and VF isolation [[https://git.kernel.org/linus/e054cdee673181622bc12f2b5049134ecbc2eeb1|commit]], [[https://git.kernel.org/linus/789fc74a220b33bb21257c707467985aac536ecd|commit]], [[https://git.kernel.org/linus/86cad7009fb4ac2c617077bc1c44a51c60d4ae2e|commit]], [[https://git.kernel.org/linus/e71dc5602b9a29027f6aedd5990d3e8c4f638c8c|commit]], [[https://git.kernel.org/linus/b632bd38f2072982c7588629a1437e8ffa05c6e7|commit]], [[https://git.kernel.org/linus/cc3b6331ccb06ec481439cef464b38cfa35c2802|commit]] * qat: add kpt support for gen6 devices [[https://git.kernel.org/linus/fb98254a5eb9c5ddd22e9bffdd8ae709769bee9f|commit]] * Talitos: fix several issues in the freescale talitos crypto driver [[https://lore.kernel.org/linux-crypto/20260507-bootlin_test-7-1-rc1_sec_bugfix-v3-0-c98d7589b942@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/e17ff3d6ff907dc8406261e8fd3e1fc8a908f0f6|commit]], [[https://git.kernel.org/linus/f126384ed55279c3b676f89d5ab547b8de8df782|commit]], [[https://git.kernel.org/linus/4d9b0b7415b9e79a3d54d18b5ff230974ea78740|commit]], [[https://git.kernel.org/linus/5c0aa8cad7745505297103f05dda3fa06e8ac670|commit]], [[https://git.kernel.org/linus/f8713d9e6091755dd30f7f1cfa25f8440cddf81b|commit]], [[https://git.kernel.org/linus/59b5d899e33701665f18abe6bebf987427876e3e|commit]], [[https://git.kernel.org/linus/f1ede6d95d8ad3b32c6a552d2baab805bd00fc38|commit]], [[https://git.kernel.org/linus/be4802afb1700534e48cb776d0d1e772c27de130|commit]], [[https://git.kernel.org/linus/8bcf00671400ac3b3a4cc3011e6c1496dbd880fd|commit]], [[https://git.kernel.org/linus/907ae6088c82c9abae2d26477fddd60df6ad003b|commit]], [[https://git.kernel.org/linus/6e12daff6ec125102a6fdcafc5aa7199f7ce8933|commit]] * sun4i-ss - remove insecure and unused rng_alg [[https://git.kernel.org/linus/b2c41fa9dd8fc740c489e060b199165771f268d1|commit]] * xilinx-trng: remove crypto_rng interface [[https://git.kernel.org/linus/32b4d29280ed2a991dc196d5845b892acedc63b8|commit]] * crypto4xx: remove insecure and unused rng_alg [[https://git.kernel.org/linus/7811ec9e973d2c9e465083699f0c8240b98cb8c4|commit]] * exynos-rng: remove exynos-rng driver [[https://git.kernel.org/linus/c9fedb3b23d4664b824f60085bcdba92e5d9dd48|commit]] * hisi-trng: move hisi-trng into drivers/char/hw_random/ [[https://git.kernel.org/linus/ffbb2ebd0c3a7ead6c9128bbbb62fc6d851779bb|commit]] == PCI == * endpoint: pci-ep-msi: Add embedded doorbell fallback [[https://lore.kernel.org/linux-pci/20260414141514.1341429-1-den@valinux.co.jp/T/|(cover)]], [[https://git.kernel.org/linus/cc07b903a646bf6592182b27c63457d92f128125|commit]], [[https://git.kernel.org/linus/bfb9502651f689c338ba3e8aeb07d31c46e0cdf6|commit]], [[https://git.kernel.org/linus/ec2075cfc629eed09d8865621be76ff2197781d6|commit]], [[https://git.kernel.org/linus/a3a079e5c5b7748f206c4baeb92593f9eca3184a|commit]], [[https://git.kernel.org/linus/0c3f82a584082a0d2e09b65e0a2e9cdcf9046d0d|commit]], [[https://git.kernel.org/linus/8fda2dd209d34396cf49504e2c8dd55d182b14bc|commit]], [[https://git.kernel.org/linus/e4f26243953fd3e87df93786b40293ca3a6a465e|commit]] * qcom: Add D3cold support [[https://lore.kernel.org/linux-pci/20260429-d3cold-v5-0-89e9735b9df6@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8a847d3e9e5f1700beb5a0196e682f71837dfe5c|commit]], [[https://git.kernel.org/linus/56378c03c1a80aeeab45f39b303cc92a3bb7716e|commit]], [[https://git.kernel.org/linus/2cc0e7454c7891345f92e96b2f812b808be7fbdb|commit]] * PCI/switchtec: Add Gen6 Device IDs [[https://git.kernel.org/linus/5e6c21c56998e1e58d2f314e70779989ea0fee5d|commit]] * Add pcie support for ultrarisc dp1000 soc [[https://lore.kernel.org/linux-kernel/20260427-ultrarisc-pcie-v4-0-98935f6cdfb5@ultrarisc.com/T/|(cover)]], [[https://git.kernel.org/linus/d9ff07f459552eabd04f8831bcaa76d761dfe264|commit]], [[https://git.kernel.org/linus/5fc35740c3b32d2c820c97d041282e7bca4ad0bf|commit]] == Clock == * canaan: Add support for K230 clock [[https://lore.kernel.org/linux-clk/20260425-b4-k230-clk-v12-0-7d5ced1f5da8@zohomail.com/T/|(cover)]], [[https://git.kernel.org/linus/44730eac1778c72d3667ff5372f254056f542da8|commit]], [[https://git.kernel.org/linus/a7b7c7c6c01679efef0fd2f2ca1c5114f303e4f5|commit]] * qcom: Add initial clock controllers for the upcoming Hawi SoC [[https://lore.kernel.org/linux-arm-msm/20260506-clk-hawi-v3-0-530b538679f1@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/bc984356520cea884229dc6ff044d9bf0049aa19|commit]], [[https://git.kernel.org/linus/eb340b092d124d9e6592b2e58634e0ddb59dddbe|commit]], [[https://git.kernel.org/linus/d6cd9d5692babcdc697cb55736cb9ab2df87805e|commit]], [[https://git.kernel.org/linus/8ef9743f0b5e98ddfe217c2d58c2d37635ab6465|commit]], [[https://git.kernel.org/linus/24ba8ce4c9867e4224bb22ab3a50838d073fe13a|commit]], [[https://git.kernel.org/linus/e1668c6c237ef09c1fc096ba005dbe9c1d2127de|commit]], [[https://git.kernel.org/linus/67121dad6cba6df7f5d8c21fa432ff543964c53f|commit]] * qcom: milos: Add GX clock controller [[https://lore.kernel.org/phone-devel/20260417-milos-gxclkctl-v3-0-08f5988c43a2@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/e628f6a6c33ac647bb904c35a674a0f664c99efe|commit]], [[https://git.kernel.org/linus/3df6b9dbd24e1610854c17a8ec4ac146481b8e42|commit]] * Add support for videocc and camcc on x1p42100 platform [[https://lore.kernel.org/linux-arm-msm/20260507-purwa-videocc-camcc-v5-0-fc3af4130282@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/9ae38c69196e7edd367fe55a3db676a33cc735dc|commit]], [[https://git.kernel.org/linus/97a5e120be5d3d7cf7d221b8703921046b73f0d2|commit]], [[https://git.kernel.org/linus/cfc34906768cb8ee2c6ab0dc83f0a57cc6410d59|commit]], [[https://git.kernel.org/linus/1e6ae74ac6f28ace7a0eb84897c6e17bb044e5de|commit]], [[https://git.kernel.org/linus/10524682d1b8e1cf2e83afe3bcabd2cc69a0a5c4|commit]] * Add cmn pll clock controller support for ipq5332 [[https://lore.kernel.org/linux-arm-msm/20260106-qcom_ipq5332_cmnpll-v2-0-f9f7e4efbd79@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/88c543fff756450bcd04ec4560c4440be36c9e75|commit]], [[https://git.kernel.org/linus/35e3509b632b197f1842f5547c36138b29ac18ee|commit]], [[https://git.kernel.org/linus/1dcbf4195a262d57f4da812248cdbbcdc81bf8d8|commit]] * Support enabling interconnect path for gdsc for fixing milos camcc [[https://lore.kernel.org/phone-devel/20260501-milos-camcc-icc-v2-0-bb83c1256cc3@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/771ed1b12942dbf592c34554c81f25a627fd254e|commit]], [[https://git.kernel.org/linus/7e622e74d2700da4d6ed3aa2a4d7e1b7d7293768|commit]], [[https://git.kernel.org/linus/bd09d87c55d6e7783ee2394c30061d66cc9df299|commit]], [[https://git.kernel.org/linus/205aefa0db8bff56f08d0e06a0ca628555758805|commit]] * Add support for DU and DSI on the Renesas RZ/G3E SoC [[https://lore.kernel.org/linux-renesas-soc/cover.1775636898.git.tommaso.merciai.xr@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/3afccee4a3b88b4ba370916bbb8ab7027221b810|commit]], [[https://git.kernel.org/linus/d394d8342d61a22dca00ce87045926d8e046f974|commit]], [[https://git.kernel.org/linus/6913a6159688edee07185a6ed0f1c4ad57c881e5|commit]], [[https://git.kernel.org/linus/fe9a5541f096da191a153e92e04a1887307e4186|commit]], [[https://git.kernel.org/linus/399b2799985237cf5c3656b7cfc87cdaa489efd1|commit]], [[https://git.kernel.org/linus/b6f8dd27e9c5721d84e8e6235065ef094fb3bdd3|commit]] * renesas: r9a09g047: Add support for SMUX2_DSI{0,1}_CLK [[https://git.kernel.org/linus/8a6ccb522858e196e0e89a602f4dd4624b7f6e7a|commit]] == PHY ("physical layer" framework) == * Add driver for eyeq5 ethernet phy wrapper [[https://git.kernel.org/linus/b6e33443876d0ca7e93cf949455e3c1a1a0aae24|commit]] * Add basic support for NXPs TJA1145 CAN transceiver] [[https://lore.kernel.org/devicetree/20260602-tja1145-support-v6-0-0e0ffc8ee63d@liebherr.com/T/|(cover)]], [[https://git.kernel.org/linus/baacd0af457c2505137c4774e71efe044c11b26d|commit]] * Add emmc phy support for axiado ax3000 soc [[https://lore.kernel.org/devicetree/20260317-axiado-ax3000-add-emmc-phy-driver-support-v3-0-fbf790f3f711@axiado.com/T/|(cover)]], [[https://git.kernel.org/linus/1a75ecefa4fbedefc1600e43445de4e1e7f03b55|commit]], [[https://git.kernel.org/linus/9e7dfa4bcd4e2c3541c4ee954ea5e66edab94d3f|commit]], [[https://git.kernel.org/linus/13ee293a904b7b7b0507aaa8c71f7be7e683800e|commit]] * econet: Add PCIe PHY driver for !EcoNet SoCs [[https://lore.kernel.org/linux-mips/20260425173642.406089-1-cjd@cjdns.fr/T/|(cover)]], [[https://git.kernel.org/linus/2cc066dbd3a211628b40967949cff2790d0f62eb|commit]], [[https://git.kernel.org/linus/da1af49257591190ad6521abb3198f1f40420407|commit]] * spacemit: Add USB2 PHY support for K3 SoC [[https://lore.kernel.org/devicetree/20260305-11-k3-usb2-phy-v4-0-15554fb933bc@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/ad8fdebd40fd25e86331886f4fc6951531691319|commit]], [[https://git.kernel.org/linus/056ee8b37bc91e3230afa11ec1018fa898b983b8|commit]] * lynx-28g: add support for big endian register maps [[https://lore.kernel.org/linux-kernel/20260528172404.733196-11-vladimir.oltean@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/f64ef1995dd6f902da0bd3bc60c72c825098b652|commit]], [[https://git.kernel.org/linus/6dc92ba487a21b923eb409357ffe966a6e9d2343|commit]], [[https://git.kernel.org/linus/61df73e12eb245adc54606de287cf8898b3a66c4|commit]], [[https://git.kernel.org/linus/6dc92ba487a21b923eb409357ffe966a6e9d2343|commit]], [[https://git.kernel.org/linus/61df73e12eb245adc54606de287cf8898b3a66c4|commit]], [[https://git.kernel.org/linus/61df73e12eb245adc54606de287cf8898b3a66c4|commit]] * lynx-28g: add support for 25GBASER [[https://lore.kernel.org/linux-kernel/20250904154402.300032-11-vladimir.oltean@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/5d38f693f16a0e9470fda530e01994f35fed8644|commit]], [[https://git.kernel.org/linus/0ee5cc59c0ee679e1a3a749cfc47834041763494|commit]], [[https://git.kernel.org/linus/1561f12db08b1da1fe47ce9a5beff11adfd90ac8|commit]], [[https://git.kernel.org/linus/8c57247f5d9734d617862d320bd3894eec898298|commit]], [[https://git.kernel.org/linus/5d38f693f16a0e9470fda530e01994f35fed8644|commit]], [[https://git.kernel.org/linus/0ee5cc59c0ee679e1a3a749cfc47834041763494|commit]], [[https://git.kernel.org/linus/0ee5cc59c0ee679e1a3a749cfc47834041763494|commit]] * phy: ti: add PHY driver for TI DS125DF111 Dual-Channel Retimer [[https://git.kernel.org/linus/9bf5c16a6e63ebf2803deb32ba984a7fcf2c5ed7|commit]] * J722s sgmii support [[https://lore.kernel.org/netdev/cover.1775559102.git.nora.schiffer@ew.tq-group.com/T/|(cover)]], [[https://git.kernel.org/linus/059f1a4c9e3aa44d888c0e7cf4559403eece0438|commit]], [[https://git.kernel.org/linus/567b3c62a7eb51db4cb562b416ec220132d524c9|commit]], [[https://git.kernel.org/linus/61849b7afb579630fc45dbeaf5449b42b33cc70e|commit]], [[https://git.kernel.org/linus/d39cf00e7daea64889dda9abb0b7e6da04a69d04|commit]], [[https://git.kernel.org/linus/2bdc0ea4e7304f6aa7e87089609fd902d9de7a2d|commit]] == EDAC (Error Detection And Correction) == * igen6: Add Intel Nova Lake-H SoC support [[https://git.kernel.org/linus/96780b953bac89bc624c3bf326a090f069d8d277|commit]] * igen6: Add one Intel Panther Lake-H SoC support [[https://git.kernel.org/linus/d9b75e35503959a81ab175a40b9690b7c9da34a0|commit]] * Add RRL support for Intel Diamond Rapids servers [[https://git.kernel.org/linus/bebda0aba2cf64271ded37746c48f9ab6652ca31|commit]], [[https://git.kernel.org/linus/bb7902db79dd423085474febb1f2aaeb105b9447|commit]], [[https://git.kernel.org/linus/579f40db12f75eb15b2517b150814564857dd8c7|commit]], [[https://git.kernel.org/linus/1286fc30cc08a12c2b6d2cf4a1d5dbb0b6bc76d9|commit]], [[https://git.kernel.org/linus/8998a4a646471dc218f6499c5580e252891ccaa4|commit]], [[https://git.kernel.org/linus/5b33d5a7be01000014f81e426ff20c3a20b5d9b0|commit]], [[https://git.kernel.org/linus/4742ae4d82454af4eb21c9eefb17c5e80a08d392|commit]], [[https://git.kernel.org/linus/bdfc4367e3f516479e0a68c731bea5c6638a6c7e|commit]] == Various == * accel/amdxdna * Initial support for AIE4 platform [[https://lore.kernel.org/linux-kernel/20260330163705.3153647-1-lizhi.hou@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/5a55a5da1f01274c07359b09abec952ec9f05105|commit]], [[https://git.kernel.org/linus/c02697cb9388b48086314fca90758016bd51b8e4|commit]], [[https://git.kernel.org/linus/dd2f592b55dfce0028ed1710d71ff51ef6576064|commit]], [[https://git.kernel.org/linus/e69ef21408fb8ed2be602e8056a5abd5b6212fd7|commit]], [[https://git.kernel.org/linus/8167332554226b0c16ffc3b262afe562e6714bc1|commit]], [[https://git.kernel.org/linus/43c9a66ea129cc5fd5d8920700ea75f4a6c42942|commit]] * Add carveout memory support for non-IOMMU systems [[https://git.kernel.org/linus/3cc5d7a595197e4438f8f5a4f8cc53497fb7aed6|commit]] * Add expandable device heap support [[https://git.kernel.org/linus/dbc8fd7a03cbc0704e8e558a448015f620547a02|commit]] * Add hardware scheduler time quantum support [[https://git.kernel.org/linus/6771275b4c96942b1b22ddcc9216e8458d206540|commit]] * Expose per-client BO memory usage via fdinfo [[https://git.kernel.org/linus/e0169d0c690f03f379bf71d9332bb2065a5c6a05|commit]] * accel/ivpu: Add support for limiting NPU frequency [[https://git.kernel.org/linus/7455a0583a906533041a80e48c6a2e3230cce96e|commit]] * mhi: host: pci_generic: Add Telit FE910C04 modem support [[https://git.kernel.org/linus/5096977d0da4b4176410f12d79716568858ea3f9|commit]] * Rework scmi transport drivers probing sequence [[https://lore.kernel.org/linux-kernel/20260510160527.3537474-1-cristian.marussi@arm.com/T/|(cover)]], * Hot-join improvements and mipi hci hot-join support [[https://lore.kernel.org/linux-kernel/20260608054312.10604-1-adrian.hunter@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/527756cb9ebb277dca12fff00af9fbb3b9ec8cc8|commit]], [[https://git.kernel.org/linus/5b130aadc36b6a935b90937dcd67b8ed4ba57831|commit]], [[https://git.kernel.org/linus/828c6130235db8144f4810b329b61390dc82719b|commit]], [[https://git.kernel.org/linus/8323e783dc3904839e64cb08cfcc7571ef9212c4|commit]], [[https://git.kernel.org/linus/0cbefeafd2cb33defc706a7b8f0af247729817ff|commit]], [[https://git.kernel.org/linus/3f79dac3ea1c30516fcc791770af034387c7f917|commit]], [[https://git.kernel.org/linus/4bfba7b360da70ed209969848bbe6e750254a759|commit]], [[https://git.kernel.org/linus/32fcf0039814d886f51fc37522c94da91759a4cc|commit]] * nfc: nxp-nci: Add ISO15693 support [[https://git.kernel.org/linus/791ccc8644b5a062bcc79f3e8f34a09097fb3280|commit]] * 8250_mtk: Add ACPI support [[https://git.kernel.org/linus/f785606039fdc8c4de2908dfe9bd672de15a76ce|commit]] * synclink_gt: remove broken driver [[https://git.kernel.org/linus/61848e9799f2543a3ea144e277b17aaec9707566|commit]] * applicom: remove low-quality, unused driver [[https://git.kernel.org/linus/05cb9529a43076538f9bf22816af280a8315b057|commit]] * dtlk: remove driver for ISA speech synthesizer card [[https://git.kernel.org/linus/160625174ab4058855452d0340ce25f2c76c335b|commit]] * imu: st_lsm6dsx: Add support for rotation sensor [[https://lore.kernel.org/lkml/20260324084655.653781-1-flavra@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/7216b9f7e9fe34a1623cceee920caede8929078e|commit]], [[https://git.kernel.org/linus/fda05af070e7bc0403a487fc87378d2e1323f529|commit]], [[https://git.kernel.org/linus/cdd445d4b2a910ade742c3d6a86bc3fca4da9e0c|commit]], [[https://git.kernel.org/linus/b29f00ef08a7afdedc0b36cc0bead579d6977ced|commit]], [[https://git.kernel.org/linus/dd59392a3ec23dbe3a3fabadcf3bb847e9592ccd|commit]], [[https://git.kernel.org/linus/cd4e1141bff8b86c75c425acb84eca453e936a9d|commit]] * mailbox: Add list of used channels to debugfs [[https://git.kernel.org/linus/5e4907c4908bff6570f48aff86fef424e74c051f|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/4d23bdc4988efc22904c78ca36ebeef5deb950db|exportfs updates]] * [[https://git.kernel.org/torvalds/c/fac863c887a05d7c3091c5eccf30c89c2116ae11|vfs inode updates]] * [[https://git.kernel.org/torvalds/c/6b5b72ac2c6383e423144beb257f98359b966a3b|vfs directory delegations]] * [[https://git.kernel.org/torvalds/c/5d15ab717d503ff10b585a144870648b9a88c616|vfs casefolding updates]] * [[https://git.kernel.org/torvalds/c/9c9e6bd4cca02f2d183eb260451fb6018f9ee67e|task_exec_state updates]] * [[https://git.kernel.org/torvalds/c/37c405aeaa5c2cbe04c3c727e3989a16a2e9f30f|misc kernel updates]] * [[https://git.kernel.org/torvalds/c/50b900c564b0f0307c126de9f17c21d3a1ba039b|openat2 updates]] * [[https://git.kernel.org/torvalds/c/0793d39ec8bab2b2255e3a288894c39e88ce5a75|vfs superblock updates]] * [[https://git.kernel.org/torvalds/c/c17fdf62aeecbbaf2c2fd5c494e2089c02b0e75b|vfs writeback updates]] * [[https://git.kernel.org/torvalds/c/c8ed3a15a749246ddfedb84aab9cf0316c7b9b8a|buffer_head updates]] * [[https://git.kernel.org/torvalds/c/5b7c3f0fe36d8e867288f8e452ede82d178c757a|eventpoll updates]] * [[https://git.kernel.org/torvalds/c/ec5d1ae94e99d8831427d00973da5620c7fb4368|iomap updates]] * [[https://git.kernel.org/torvalds/c/ff8747aacaff8266dd751b8a8648fb728dcc3b21|simple_xattr updates]] * [[https://git.kernel.org/torvalds/c/7e0e7bd60d4a812b694c477716597fcb038b00cb|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/79169a1624253363fed3e9a447b77e50bb226206|procfs updates]] * [[https://git.kernel.org/torvalds/c/e8a56d6fc828bb569fa2dd33c3e6eb16a165b097|dcache updates]] * [[https://git.kernel.org/torvalds/c/8ab34af09f292ca9620dad8df253fec766729b29|dentry d_add() cleanups]] * [[https://git.kernel.org/torvalds/c/de02909ae81aa4fda213d16915adb5e1b088a7db|configfs updates]] * [[https://git.kernel.org/torvalds/c/73f399414a84d715bb1794182aaea852b11d0962|Kbuild / Kconfig updates]] * [[https://git.kernel.org/torvalds/c/2bfc56d9f5e82f6aada2a8d68093aab0b1f00f6a|xen updates]] * [[https://git.kernel.org/torvalds/c/95e56f0f293ef797123eb032f78f5b5d56a035a6|KCSAN update]] * [[https://git.kernel.org/torvalds/c/b8b674748fa4b1a384aaa647811109fe9007c0a4|RCU updates]] * [[https://git.kernel.org/torvalds/c/b079329b8691768962aa514b8f8c9077ca352459|Rust updates]] * [[https://git.kernel.org/torvalds/c/966240b9900b33ee7b02a18011bc6109b791ff31|nolibc updates]] * [[https://git.kernel.org/torvalds/c/eed451031f6ac098ca04ebdd63d34e083ba2d6f6|ACPI support updates]] * [[https://git.kernel.org/torvalds/c/f3c4a338b5064effd9ce6d2cfd26c73daa56f1f4|thermal control updates]] * [[https://git.kernel.org/torvalds/c/5504ce0317f777dcf102751c3e518284226fc2e1|power management updates]] * [[https://git.kernel.org/torvalds/c/36808d5e983985bbda87e01059cccc071fe3ec8d|driver core updates]] * [[https://git.kernel.org/torvalds/c/a04c8472b0bc99963283e379f4ca2c775be4949b|rseq update]] * [[https://git.kernel.org/torvalds/c/13e1a6d6a17eb4bca350e5bf59a89a3056c834ca|interrupt core updates]] * [[https://git.kernel.org/torvalds/c/857ae5a4459c600d70b9ad64c46a730c428770e2|interrupt chip driver updates]] * [[https://git.kernel.org/torvalds/c/9e94480d81b9eb9bd175499636bf622e5d62176d|smp core updates]] * [[https://git.kernel.org/torvalds/c/f20e2fdaaeb74330a6c5d65af22a8c47409a7a91|clocksource updates]] * [[https://git.kernel.org/torvalds/c/a60ce761d99ff2d9eefe33374c5f20726465a140|timer core updates]] * [[https://git.kernel.org/torvalds/c/a53fcff8fc7530f59a8171824ed586200df724a0|NOHZ updates]] * [[https://git.kernel.org/torvalds/c/2d6d57f889f3a5e7d19009c560ea2002cdde9fb8|timekeeping updates]] * [[https://git.kernel.org/torvalds/c/186d3c4e92242351afc24d9784f31cb4cd08a4b7|vdso updates]] * [[https://git.kernel.org/torvalds/c/764e77d868a5b932c709e20ddb5993f9111a841c|locking updates]] * [[https://git.kernel.org/torvalds/c/d8d706a27451c015490d23b4f4764de05e553624|objtool updates]] * [[https://git.kernel.org/torvalds/c/0bcc2dc22f38e57fa97d8238b2e0bcdde5376f33|performance events updates]] * [[https://git.kernel.org/torvalds/c/2cbf335f8ccc7a6418159858dc03e36df8e3e5cf|scheduler updates]] * [[https://git.kernel.org/torvalds/c/7561361d7655828d50482cd9e80fa3bf73d9c92e|x86/msr updates]] * [[https://git.kernel.org/torvalds/c/ff5ccdb8d5bd242f1064c6f7996603e47e28d095|x86 cpuid updates]] * [[https://git.kernel.org/torvalds/c/44308fbe8feb0861053b9173e3fda2849944b355|m68k updates]] * [[https://git.kernel.org/torvalds/c/25a01b5155d207e72bdd31b138406f37788403cb|s390 updates]] * [[https://git.kernel.org/torvalds/c/80476f22b8b7e193b26f285a7c9f9e4b63abca16|arm64 updates]] * [[https://git.kernel.org/torvalds/c/4b5713ef2f929dd8720fcdb66c063643ef9e3bcb|EDAC updates]] * [[https://git.kernel.org/torvalds/c/3c26a6bc40fac7051b002411e771a8a5faed028f|x86 resource control updates]] * [[https://git.kernel.org/torvalds/c/454761e12197938b6b362b7ab485e6e025bd4320|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/97cc7dc16aaee163e15173009c063fc9cd42b5ff|x86 microcode loader updates]] * [[https://git.kernel.org/torvalds/c/c61f479852493fd2cf5ca754e42ac272b1e2d2c5|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/ee7a8593c0e21bc8877d2b1b53187359c5e7c8fe|misc x86 updates]] * [[https://git.kernel.org/torvalds/c/7d36844ae7b0a9ef61dd345c8dfe1d47a5199a53|x86 mm updates]] * [[https://git.kernel.org/torvalds/c/b0820861748f43759bbf4c319ed1277cff3c5921|x86 TDX updates]] * [[https://git.kernel.org/torvalds/c/2b5f5609ae9b218c9ee0cdb7f624ddb03d44cf84|chrome-platform updates]] * [[https://git.kernel.org/torvalds/c/fd1878584db2f0ab3fe8f2b3d8d59316fffa47fa|chrome-platform firmware updates]] * [[https://git.kernel.org/torvalds/c/6b617c82580599994c8dd078ab0dcb0375b42eda|pwm updates]] * [[https://git.kernel.org/torvalds/c/77d084d66b7694e2a912abdd8b9e5a0e7a32d28e|gpio updates]] * [[https://git.kernel.org/torvalds/c/31e6aeafcdde965aa10e10e93ee186520555ec3d|power sequencing updates]] * [[https://git.kernel.org/torvalds/c/2779759c090ea0e78109a0cad0a81d869adfb459|i2c updates]] * [[https://git.kernel.org/torvalds/c/aaee7820e2f7370034c4fd74eb36588eaae65966|regmap update]] * [[https://git.kernel.org/torvalds/c/1e66d46f6d66215ddd7126140e7c1b567400b524|regulator updates]] * [[https://git.kernel.org/torvalds/c/c41cfae42c75a40783a6fc402f66c3c7852961e2|spi updates]] * [[https://git.kernel.org/torvalds/c/7e54cdd0564f5393eb773b88cb49f55859e90474|watchdog updates and fixes]] * [[https://git.kernel.org/torvalds/c/fc2ce3ee106f2d53eb344f5c4963c897bbb21634|hwmon updates]] * [[https://git.kernel.org/torvalds/c/464e2f089ecb81139433666496ecaeece421b314|MMC updates]] * [[https://git.kernel.org/torvalds/c/bd77e50c9a70f844d6073499f3d1a6fd193eae73|fbdev updates]] * [[https://git.kernel.org/torvalds/c/a87bbc4578fd686d535fbd62e8bc73fc6c7c5415|documentation updates]] * [[https://git.kernel.org/torvalds/c/f8115f0e8a0585ef1c03d07a68b989023097d16c|slab updates]] * [[https://git.kernel.org/torvalds/c/0d8c1134936f1fb6678156ab4248ac740d274525|crypto updates]] * [[https://git.kernel.org/torvalds/c/ef3b7426a63c930c51d60d6c2428663d52a84e2f|CRC updates]] * [[https://git.kernel.org/torvalds/c/673f72944dde6614a56b37a61c6097f584c90ce6|crypto library updates]] * [[https://git.kernel.org/torvalds/c/481329ec5b31d2c48ac6b8b703c8008133884c7e|hardening updates]] * [[https://git.kernel.org/torvalds/c/6271f6ea7f65191762efe17c1a7d33f8922e1eeb|xfs updates]] * [[https://git.kernel.org/torvalds/c/59b1c2aa064fdc4b91a26dce83697fea47cd0a61|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/974b3dec2bfb4b2726a6194105cb048a9dab0626|udf, isofs, ext2, and quota updates]] * [[https://git.kernel.org/torvalds/c/477c122f8c1d5d9f57c4f9c1f7a1631beaa38bcc|dlm updates]] * [[https://git.kernel.org/torvalds/c/31b706da2cfd8ee3352391181ccf9696bed3d25d|btrfs updates]] * [[https://git.kernel.org/torvalds/c/6f60a6033c7dfd02ba8d94111965189c9a7866d4|nilfs2 updates]] * [[https://git.kernel.org/torvalds/c/d29fd593e6836c96c6fd6df2b0cc6a47dda21b74|hfs/hfsplus updates]] * [[https://git.kernel.org/torvalds/c/9b40ba14edcdf70240af8114092a76f75f070774|io_uring updates]] * [[https://git.kernel.org/torvalds/c/ba9c792c824fff732df85119011d399d9b6d9155|block updates]] * [[https://git.kernel.org/torvalds/c/b1cbabe84ca1381a004fb91ee1791a1a53bce44e|device mapper updates]] * [[https://git.kernel.org/torvalds/c/42eb3a5ef6bc56192bf450c79a3f274e081f8131|kunit updates]] * [[https://git.kernel.org/torvalds/c/8b308f96484e37d92d2fc6b72b091f60496c000e|kselftest updates]] * [[https://git.kernel.org/torvalds/c/4f7e89065e41fd487e411d35b5caeac2a10af10e|bootconfig updates]] * [[https://git.kernel.org/torvalds/c/18ecdd4d0aabc428318bbc2ca6134483a90ea697|probes updates]] * [[https://git.kernel.org/torvalds/c/c071a4fbb0ec26fd5831c6633762e38720350718|tracing latency updates]] * [[https://git.kernel.org/torvalds/c/6b5a2b7d9bc156e505f09e698d85d6a1547c1206|RTLA tool updates]] * [[https://git.kernel.org/torvalds/c/b85966adbf5de0668a815c6e3527f87e0c387fb4|networking updates]] * [[https://git.kernel.org/torvalds/c/9c87e61e3c5797277407ba5eae4eac8a52be3fa3|bpf updates]] * [[https://git.kernel.org/torvalds/c/4b99990cdf9560e8a071640baf19f312e6ae02f4|drm updates]] * [[https://git.kernel.org/torvalds/c/056e065a6b6e01ab54bb9770c0d5a15350e571e2|sound updates]] * [[https://git.kernel.org/torvalds/c/8479bb8c44fdabe3d123735347af95002828d112|modules updates]] * [[https://git.kernel.org/torvalds/c/59a6c7ac0a47154774cb44c59a8735f6a16b75f7|bitmap updates]] * [[https://git.kernel.org/torvalds/c/d4d9d39f046012ff330e81dcd9b1beadf3759f7e|workqueue updates]] * [[https://git.kernel.org/torvalds/c/83476cc97bc635a3ff502bd194c79bfb1f1ae050|cgroup updates]] * [[https://git.kernel.org/torvalds/c/5b33fc6492a7b7a62359157db0f92f5b6e9af690|sched_ext updates]] * [[https://git.kernel.org/torvalds/c/87599bd29856ea7bfdd62591c581c8be5a4719ee|lsm update]] * [[https://git.kernel.org/torvalds/c/231e9d447ea97033ae8b8dff7b910e6269d7c5af|selinux updates]] * [[https://git.kernel.org/torvalds/c/66affa37cfac0aec061cc4bcf4a065b0c52f7e19|audit updates]] * [[https://git.kernel.org/torvalds/c/aab799b1bdd1ff3e6912f96e66c910b8a5d011bb|SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/70cb95c736807da2c4952423c9f9afe470341996|SoC driver updates]] * [[https://git.kernel.org/torvalds/c/61cf9588108762323c4c186f94a0c6e7ce5cb9f6|SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/6505114e82e7541414b176b5da4a3c015a1214ea|arm SoC code updates]] * [[https://git.kernel.org/torvalds/c/407ce27e7417646b5476d71166657ca7eac189ec|m68knommu updates]] * [[https://git.kernel.org/torvalds/c/3dc0df03396a3329c644b29b421892a32ecb9387|VFIO updates]] * [[https://git.kernel.org/torvalds/c/d44ade05aa21468bd30652bc4492891b854a400a|virtio updates]] * [[https://git.kernel.org/torvalds/c/09fb6892f34abdb6d9b50ae7337b7b7b56dc82d6|devicetree updates]] * [[https://git.kernel.org/torvalds/c/0db1496dcb6621648b007ad0e7d55b876ae0f0bb|printk updates]] * [[https://git.kernel.org/torvalds/c/0839c8963b7b28d25350bd5ea69bacde794124ab|livepatching updates]] * [[https://git.kernel.org/torvalds/c/21bd909c78241a61c991e1fb332cea04c340e5f0|memblock updates]] * [[https://git.kernel.org/torvalds/c/4cc14386e35030d016478b4ab9b10a6a95727003|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/d076a8d3b9b36563fdd029ef33c79f713445970e|iommu updates]] * [[https://git.kernel.org/torvalds/c/e771677c937da5808f7b6c1f0e4a97ec1a84f8a8|iommufd updates]] * [[https://git.kernel.org/torvalds/c/2f9f5887b42711595e768b9dc0582dccfdf60c3b|io_uring epoll update]] * [[https://git.kernel.org/torvalds/c/00d07402df810b4dce0ae6828f4a292c20bab916|ata updates]] * [[https://git.kernel.org/torvalds/c/9e7e6633458362db72427b48effad8d759131c35|rdma updates]] * [[https://git.kernel.org/torvalds/c/6edc20078ad0b05ab2dc2693965d373628d65f80|fuse updates]] * [[https://git.kernel.org/torvalds/c/3dc7c001169d112b3e514cacff6c93091c57af9a|nfsd updates]] * [[https://git.kernel.org/torvalds/c/e753a63f2ac8599182a5b6899c158a745188551d|smb client updates]] * [[https://git.kernel.org/torvalds/c/dac3b26eae7bee261fa05f20c3fcc24988a7c233|smb server updates]] * [[https://git.kernel.org/torvalds/c/83f1454877cc292b88baf13c829c16ce6937d120|ext4 updates]] * [[https://git.kernel.org/torvalds/c/b7556c8e713c88596046a906c7c4385218d44736|HID updates]] * [[https://git.kernel.org/torvalds/c/6beaec3aee9852438b89e4d7891caf5e84d45851|MFD updates]] * [[https://git.kernel.org/torvalds/c/6e717507bfbe8d6955f3f4c5604857a392c7e6fa|LED updates]] * [[https://git.kernel.org/torvalds/c/7c6742507c58cfdf2fa695ac895a33564b6aa252|backlight updates]] * [[https://git.kernel.org/torvalds/c/53c7db5c1916afcecc8683ae01ff8415c708a883|pin control updates]] * [[https://git.kernel.org/torvalds/c/7849ce38717e64213bf9cbb166d1cda14e05143f|pmdomain updates]] * [[https://git.kernel.org/torvalds/c/cfd96ad1389cd6045a3af05bd34b2e52b291e365|nvdimm/dax updates]] * [[https://git.kernel.org/torvalds/c/5cd1731cc883a9914d91e3b93d4597317b5b5339|CXL updates]] * [[https://git.kernel.org/torvalds/c/8c13415c8a4383447c21ec832b20b3b283f0e01a|media updates]] * [[https://git.kernel.org/torvalds/c/23b5d045ae5df0a2d509915cedcd82f93261d7bc|tracing updates]] * [[https://git.kernel.org/torvalds/c/9ecfb2f7287a967b418ba69f10d45ead0d360593|ring-buffer updates]] * [[https://git.kernel.org/torvalds/c/f32a375eccb7b27bccc57dee45befff6e3b3d4b2|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/91981f96d2831a73cd4dbe4383b4d7e1dcdfcc06|powerpc updates]] * [[https://git.kernel.org/torvalds/c/08c7183f5b9ffe4408e74fff848a4cc2105361d4|MIPS updates]] * [[https://git.kernel.org/torvalds/c/c98d767b34574be82b74d77d02264a830ae1cadd|kvm updates]] * [[https://git.kernel.org/torvalds/c/a552c81ff4a16738ca5a44a177d552eb38d552ce|MM updates]] * [[https://git.kernel.org/torvalds/c/0798268aa4c26ece25020b3ddeeef9a5941209c0|IMA updates]] * [[https://git.kernel.org/torvalds/c/e2c0595b56e9526e67ddd228fc35fa9ff20724ec|keys update]] * [[https://git.kernel.org/torvalds/c/5e2e14749c3d969e263a879db104db6e9f0eb484|landlock updates]] * [[https://git.kernel.org/torvalds/c/dbad5db3a0bbf843adef9732ad44b817273e0a64|ntfs updates]] * [[https://git.kernel.org/torvalds/c/a975094bf98ca97be9146f9d3b5681a6f9cf5ce3|exfat updates]] * [[https://git.kernel.org/torvalds/c/1a3746ccbb0a97bed3c06ccde6b880013b1dddc1|strncpy removal]] * [[https://git.kernel.org/torvalds/c/390d73adf896bf4883c7d3bcd13c1b53d64351e3|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/9d0d4d12e456ea587c8673e314e901ecb01e6329|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/c7f112e12de3098176e3c5eef022dd0eecfeeeba|rpmsg update]] * [[https://git.kernel.org/torvalds/c/322008f87f917e2217eeac386a9410945092eb2e|hwspinlock update]] * [[https://git.kernel.org/torvalds/c/1e762b53a86d7ed19016c66cc1883e4b9f8b2c1b|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/d639d9fa162aadec1ae9980c4dcf6e50bd2f8290|liveupdate updates]] * [[https://git.kernel.org/torvalds/c/aff3ca32f39d5e64619eef10e1daef3a0ba76b25|firewire updates]] * [[https://git.kernel.org/torvalds/c/1bc18858358d7a4e263a63b59a12cbfd25c16670|9p updates]] * [[https://git.kernel.org/torvalds/c/8cd8cf7a07e5d141b0c75ce6cf470630e11aa11a|SCSI updates]] * [[https://git.kernel.org/torvalds/c/09e3b4a76bb6047ec0b99dc668b313469d8a73d0|mtd updates]] * [[https://git.kernel.org/torvalds/c/2e05544060b9fef5d4d0e0172944e6956c55080f|non-MM updates]] * [[https://git.kernel.org/torvalds/c/2580f89860460f38bcc13fce75db8626d555c0cd|more s390 updates]] * [[https://git.kernel.org/torvalds/c/6e869de3a1b9ef9f096223e0e7f30c727de4f6bc|hyperv updates]] * [[https://git.kernel.org/torvalds/c/335c347686e76df9d2c7d7f61b5ea627a4c5cb4c|more slab updates]] * [[https://git.kernel.org/torvalds/c/9f333cb6b57c3f72073bf058f984b180cc00bf7b|i3c updates]] * [[https://git.kernel.org/torvalds/c/1dc18801be29bc54709aa355b8acd80e183b03cd|more i2c updates]] * [[https://git.kernel.org/torvalds/c/8a500fd09385a13ba598cda651f2e4ac40bfa578|tty / serial driver updates]] * [[https://git.kernel.org/torvalds/c/e4b4bfaa5090760925b98848aa3e0fc10b3c574f|SPDX updates]] * [[https://git.kernel.org/torvalds/c/364f4a55c661641c02c86a849f0608d8fc3c0006|USB and Thunderbolt driver updates]] * [[https://git.kernel.org/torvalds/c/0000d9ccbcfa90411c88f70850501723389312b9|misc driver updates]] * [[https://git.kernel.org/torvalds/c/4708cac0e22cfd217f48f7cec3c35e5922efcccd|staging driver updates]] * [[https://git.kernel.org/torvalds/c/502d801f0ab03e4f32f9a33d203154ce84887921|erofs updates]] * [[https://git.kernel.org/torvalds/c/3eb20a97b315a9fd5fea33c207c51823f22c2b4d|more kselftest updates]] * [[https://git.kernel.org/torvalds/c/16b2087efdddd0bf042accdbdcc8eedc21bf9227|tpm updates]] * [[https://git.kernel.org/torvalds/c/515db262143e48f09b5dce07bc0db67b8b4d6a73|mailbox updates]] * [[https://git.kernel.org/torvalds/c/f31c00c377ccf07c85442712f7c940a855cb3371|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/05d2a3da153bc08c5fe7937584b5d86505747b9e|perf tools updates]] * [[https://git.kernel.org/torvalds/c/a1a8bab74176eed204a3139ab7ad840caa3d73b8|more MM updates]] * [[https://git.kernel.org/torvalds/c/7603d8e78023e5883e075b4625fbdf059c6384f7|sched_ext tree reorg]] * [[https://git.kernel.org/torvalds/c/240303e47f48f434b5dd4a35d6d242856e23fa22|soundwire updates]] * [[https://git.kernel.org/torvalds/c/62cf248de32f061d99cf7cd1675419d739031c5e|phy updates]] * [[https://git.kernel.org/torvalds/c/558ef39aeb9a089a6be9dda8413b0b9d42e843ea|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/09ca8dc7d634f69d0b43f82c244add44cf7885b4|f2fs updates]] * [[https://git.kernel.org/torvalds/c/840ef6c78e6a2f694b578ecb9063241c992aaa9e|NFS client updates]] * [[https://git.kernel.org/torvalds/c/f0e6f20cb52b14c2c441f04e21cef0c95d498cac|ntfs3 updates]] * [[https://git.kernel.org/torvalds/c/e1611017870fa1582b5ff9ec0edc09542318daa6|input updates]] * [[https://git.kernel.org/torvalds/c/6535a84bfdc4ab56fc901cbd9bd0d1a22315aa93|apparmor updates]] * [[https://git.kernel.org/torvalds/c/05874021158ae80f6c3d867a784318f7cda41df6|sparc updates]] * [[https://git.kernel.org/torvalds/c/26ae421f7f49f8a6a32d15b1d21a782b46a1bad5|pci updates]] * [[https://git.kernel.org/torvalds/c/ab9de95c9cf952332ab79453b4b5d1bfca8e514f|rust addendum]] * [[https://git.kernel.org/torvalds/c/504c8065288befdc8a89e98858ac563deae9d7ba|ipmi updates]] * [[https://git.kernel.org/torvalds/c/6cc37b86f80985774809aba82283fe0d564d870f|more Kbuild updates]] * [[https://git.kernel.org/torvalds/c/da07894d1d2ff9164cff88d15669f1e03e810b5c|more documentation updates]] * [[https://git.kernel.org/torvalds/c/ca3e303061a4abbb92cf306aea2057c59a734757|SPMI updates]] * [[https://git.kernel.org/torvalds/c/8c04c1292dca29a57ea82c6a44348be49749fc22|clk updates]] * [[https://git.kernel.org/torvalds/c/71fab6fa7615fdf52679a3f80795f33b7f7e61d6|smb server updates]] * [[https://git.kernel.org/torvalds/c/c292ea294dde77ae442d3d764f53c251d2d6df90|ecryptfs updates]] * [[https://git.kernel.org/torvalds/c/51cb1aa1250c36269474b8b6ca6b6319e170f5a5|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/5f80d9113360c08111ae7471f662f3f89f23ce32|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/5422e496b313b9b0b2f6df068902d6c79925d5e9|ceph updates]] * [[https://git.kernel.org/torvalds/c/da7ca04e331e3e83f661e29c30d381a91e6ca245|RTC updates]] * [[https://git.kernel.org/torvalds/c/f21df873208d41ef816b15024d6447813b97ab5e|more fbdev updates]] * [[https://git.kernel.org/torvalds/c/8b69c047587112f7bcb4b0d83f2729d8dd29ebe2|more input updates]] * [[https://git.kernel.org/torvalds/c/0716f9b9338a86dd27796e00ed0fd560c653323a|NTB updates]] = Other news sites = * LWN's merge window [[https://lwn.net/Articles/1078068/|part 1]], [[https://lwn.net/Articles/1078539/|part 2]] * Phoronix's [[https://www.phoronix.com/review/linux-72-features|Feature overview]]