#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.0 development cycle Linux 7.0 changelog. Summary: <> = Prominent features = == New API for file IO error reporting == Filesystems on Linux currently have no standard mechanism for reporting metadata corruption and file I/O errors to userspace via fsnotify. Each filesystem deals with the problem privately, and error reporting to fanotify is inconsistent or absent entirely. This release introduces a generic fserror infrastructure that gives filesystems a standard way to queue metadata and file I/O error reports for delivery to {{{fsnotify}}}. == Support in XFS for a new health monitoring feature == This release adds new functionality to deliver live information about filesystem health events to userspace. This is done by creating an anonymous file that can be read() for events by userspace programs. Events like metadata health failures, file I/O errors, and major changes in filesystem state (unmounts, shutdowns, etc.) can be observed by programs. In userspace, a new daemon program is created that will read the event objects and initiate repairs automatically. This daemon is managed entirely by systemd and will not block unmounting of the filesystem unless repairs are ongoing. Documentation: [[https://www.kernel.org/doc/html/next/filesystems/xfs-online-fsck-design.html|XFS Online Fsck Design]] == Support for Clang static analysis support == This release adds support for a Clang (22 or later) [[https://clang.llvm.org/docs/ThreadSafetyAnalysis.html|language extension]], which enables statically checking that required contexts are active (or inactive) by acquiring and releasing user-definable "context locks". An obvious application is lock-safety checking for the kernel's various synchronization primitives (each of which represents a "context lock"), and checking that locking rules are not violated. This can help to detect bugs at compilation time. Recommended LWN article: [[https://lwn.net/Articles/1012990/|Capability analysis for the kernel]] == Better io_uring support for filters == Due to its design, io_uring doesn't play well with the system call filtering done by system calls like seccomp. io_uring supports filtering, but it's not really usable for these cases. This release adds support for filtering, , which enablestighter control over what exactly a specific opcode may do. On top of that support is added for per-task filters, meaning that any ring created with a task that has a per-task filter will get those filters applied when it's created. These filters are inherited across fork as well. Once a filter has been registered, any further added filters may only further restrict what operations are permitted. Recommended LWN article: [[https://lwn.net/Articles/1054225/|Task-level io_uring restrictions]] == Extend open_tree(2) to allow for faster and simpler container setup == When creating containers the setup usually involves using {{{CLONE_NEWNS}}} via {{{clone3()}}} or {{{unshare()}}}, which copies the caller's complete mount namespace. After some tasks, the runtime will recursively umount the old mount tree thereby getting rid of all mounts. This can be wasteful and slow. This release extends {{{open_tree()}}} with a new {{{OPEN_TREE_NAMESPACE}}} flag. Similar to {{{OPEN_TREE_CLONE}}} only the indicated mount tree is copied. Instead of returning a file descriptor referring to that mount tree {{{OPEN_TREE_NAMESPACE}}} will cause {{{open_tree()}}} to return a file descriptor to a new mount namespace. In that new mount namespace the copied mount tree has been mounted on top of a copy of the real rootfs. This allows OPEN_TREE_NAMESPACE to function as a combined {{{unshare(CLONE_NEWNS)}}} and {{{pivot_root()}}}. = Core (various) = * (FEATURED) Generic file IO error reporting [[https://git.kernel.org/linus/602544773763da411ffa67567fa1d146f3a40231|commit]], [[https://git.kernel.org/linus/21945e6cb5168395d7d6f9052cd16ec4eac13973|commit]], [[https://git.kernel.org/linus/a9d573ee88af980f14fdadb5c12bbf6a195fb3f1|commit]], [[https://git.kernel.org/linus/efd87a10072966e1555e1288a570c883c73182c3|commit]], [[https://git.kernel.org/linus/94503211d2fdcc5183d01c2719258a7795cdecb0|commit]], [[https://git.kernel.org/linus/81d2e13a57c9d73582527966fae24d4fd73826ca|commit]] * (FEATURED) Compiler-Based Context- and Locking-Analysis [[https://lore.kernel.org/linux-crypto/20251219154418.3592607-1-elver@google.com/T/|(cover)]], [[https://git.kernel.org/linus/de15fecae44df8254fa597bad7eb3680a8b1c10c|commit]], [[https://git.kernel.org/linus/3269701cb25662ae8a9771a864201116626adb50|commit]], [[https://git.kernel.org/linus/9b00c1609deeb7d6f68a61f3ec6988ab7e6f4535|commit]], [[https://git.kernel.org/linus/8f32441d7a532804a8d9e2ae36f9b13c353934d7|commit]], [[https://git.kernel.org/linus/25d3b21e1d41f7b58aeb62b97b05d86d43c91801|commit]], [[https://git.kernel.org/linus/3931d4b980398012b66c8ff203bfa2ab3df71a71|commit]], [[https://git.kernel.org/linus/7c451541743c6c2ef1afc425191f18a23e311019|commit]], [[https://git.kernel.org/linus/f16a802d402d735a55731f8c94952b3bbb5ddfe8|commit]], [[https://git.kernel.org/linus/38f1311a2219220a3962fae464ca6300ef60b4c1|commit]], [[https://git.kernel.org/linus/370f0a345a70fe36d0185abf87c7ee8e70572e06|commit]], [[https://git.kernel.org/linus/8f8a55f49cda5fee914bbea1ab5af8df3a6ba8af|commit]], [[https://git.kernel.org/linus/5f7ba059710609bb997d50775ba92fbf29be51da|commit]], [[https://git.kernel.org/linus/eb7d96a13bf45f86909006a59e7855d8810f020a|commit]], [[https://git.kernel.org/linus/fe00f6e84621ad441aa99005f2f0fefd0e5e1a2c|commit]], [[https://git.kernel.org/linus/f0b7ce22d71810c8c11abcd912fbd6f57c2e9677|commit]], [[https://git.kernel.org/linus/5e256db9325e75e9f000ddd64e4f1dbd2a6d8acd|commit]], [[https://git.kernel.org/linus/e4fd3be884cf33a42c5bcde087b0722a5b8f25ca|commit]], [[https://git.kernel.org/linus/8c9c8566e139c0f1398245fbe3aa409fc1a79da8|commit]], [[https://git.kernel.org/linus/d3febf16dee28a74b01ba43195ee4965edb6208f|commit]], [[https://git.kernel.org/linus/47907461e4f6fcdce8cf91dd164369192deeb7c4|commit]], [[https://git.kernel.org/linus/6e530e2e31191d88f692e6c8d3bd245e43416e4f|commit]], [[https://git.kernel.org/linus/4f109baeea4dc6fa1426ab559159d3bb35e05343|commit]], [[https://git.kernel.org/linus/5b63d0ae94ccfd64dcbdb693d88eb3650eb3c64c|commit]], [[https://git.kernel.org/linus/e4588c25c9d122b5847b88e18b184404b6959160|commit]], [[https://git.kernel.org/linus/c237f1ceeef56fa101c2b599a00307b3d690801a|commit]], [[https://git.kernel.org/linus/3635ad878242487fc3e8165d0329aedb118e4608|commit]], [[https://git.kernel.org/linus/48eb4b9a3d5c305f93d3cfd0eddffa305884597f|commit]], [[https://git.kernel.org/linus/0f5d764862aa7f50d77b8ea2b4f75a48a630487a|commit]], [[https://git.kernel.org/linus/6556fde265a7bd408ad8ff15ec08970f99f6201c|commit]], [[https://git.kernel.org/linus/0eaa911f890812a7868a44bbfd656636b2c7caf8|commit]], [[https://git.kernel.org/linus/c3d3023f1cf3de10f2d2f83b0d011fa7cab16cf0|commit]], [[https://git.kernel.org/linus/322366b8f13a8cafe169dc1dc6f6ec0d82ff8734|commit]], [[https://git.kernel.org/linus/8ec56d9aaba9667b0c6429de7aeb4ec691944a5e|commit]], [[https://git.kernel.org/linus/87335b61a23bd10e4aec132bd3a48a009d406973|commit]], [[https://git.kernel.org/linus/dc36d55d4e7259ff0f91a154744125ccc2228171|commit]], [[https://git.kernel.org/linus/04e49d926f438134b6453505aa206e70f8cf4cb1|commit]] * Add a minimal pseudo filesystem called "nullfs" and make {{{pivot_root()}}} work in the initramfs. Currently {{{pivot_root()}}} does not work on the real rootfs because it cannot be unmounted, nullfs is a minimal immutable filesystem that serves as the true root of the mount hierarchy. The mutable rootfs (tmpfs/ramfs) is mounted on top of it [[https://lore.kernel.org/linux-fsdevel/20260112-work-immutable-rootfs-v2-0-88dd1c34a204@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/a2062463e894039a6fdc2334b96afd91d44b64a8|commit]], [[https://git.kernel.org/linus/3c1b73fc6a4d7bc5469ab2679ef954f7b754d34b|commit]], [[https://git.kernel.org/linus/576ee5dfd459abe8e29bee8b204cd259e60b4e18|commit]], [[https://git.kernel.org/linus/649cb20b7a0189cddf1ca2790f0c12a2c570697a|commit]] * io_uring * (FEATURED) Add support for both cBPF filters for io_uring, as well as task inherited restrictions and filters [[https://git.kernel.org/linus/d42eb05e60fea31de49897d63a1d73f933303bd4|commit]], [[https://git.kernel.org/linus/cff1c26b4223820431129696b45525e5928e6409|commit]], [[https://git.kernel.org/linus/8768770cf5d76d177fa2200e6957a372e61e06b5|commit]], [[https://git.kernel.org/linus/e7c30675a7fb79d94400987865a3bd620458ca1a|commit]], [[https://git.kernel.org/linus/e7f67c2be7877a3d44aa79b8d22eae8cb6e2c6d6|commit]], [[https://git.kernel.org/linus/9fd99788f3e5a129908c242bb29946077ca46611|commit]], [[https://git.kernel.org/linus/ed82f35b926b2e505c14b7006473614b8f58b4f4|commit]] * zcrx: implement large rx buffer support (using support added in the networking layer in this release). Using larger (bigger than 4K) rx buffers can increase the effiency of zcrx. For example, it's been shown that using 32K buffers can decrease CPU usage by ~30% compared to 4K buffers [[https://git.kernel.org/linus/795663b4d160ba652959f1a46381c5e8b1342a53|commit]] * Allow non-iopoll cmds with {{{IORING_SETUP_IOPOLL}}} [[https://git.kernel.org/linus/42a6bd57ee9f930a72c26f863c72f666d6ed9ea5|commit]], [[https://lore.kernel.org/io-uring/20260213032119.1125331-3-csander@purestorage.com/T/|(cover)]] * IOPOLL polling improvements [[https://git.kernel.org/linus/3c7d76d6128a0fef68e6540754bf85a44a29bb59|commit]] * Introduce non-circular SQ [[https://git.kernel.org/linus/5247c034a67f5a93cc1faa15e9867eec5b22f38a|commit]] * RCU: Re-implement RCU tasks trace in term of SRCU-fast [[https://git.kernel.org/linus/c27cea4416a396a1c5b6b3529dd925f92a69e7d3|commit]], [[https://git.kernel.org/linus/46e323599911ddd3368c9993a0572c9876a82ce8|commit]], [[https://git.kernel.org/linus/a73fc3dcc60b6d7a2075e2fbdca64fd53600f855|commit]], [[https://git.kernel.org/linus/176a6aeaf1eb97b8ddf88e324fd1cbf47d52ba28|commit]], [[https://git.kernel.org/linus/1a72f4bb6f3eaa5af674cb10802f7064bf71d10a|commit]], [[https://git.kernel.org/linus/c0872be261f490d02c157051373a31f2df60f64e|commit]] * VFS: Struct filename series [[https://lore.kernel.org/linux-fsdevel/20260108073803.425343-1-viro@zeniv.linux.org.uk/T/|(cover)]], [[https://git.kernel.org/linus/0cf1149673da1153d32eeea67771a002530fda42|commit]], [[https://git.kernel.org/linus/67591df968f4ceb12c1f5d7f9caebc668200856b|commit]], [[https://git.kernel.org/linus/2e2d892fe9b7c27a415813019e5b4f86c761c9ab|commit]], [[https://git.kernel.org/linus/b756d8ba831036ad5b385576d0bf20daf0beca7c|commit]], [[https://git.kernel.org/linus/592ab7fbb83ffe78378d7d25e15d8799d1f1df29|commit]], [[https://git.kernel.org/linus/c3fa2b7cf5dda5a73480361303441db4ba7f0e6a|commit]], [[https://git.kernel.org/linus/85a4fe3c99a78999e5ce41d51292a1b665f314be|commit]], [[https://git.kernel.org/linus/cf6b819c229af0d692a0e288261b4d8d73554a0d|commit]], [[https://git.kernel.org/linus/1ee5220eb364f7ac22fc6102e61c7b33e593f365|commit]], [[https://git.kernel.org/linus/41670a5900a8866b8cab52ab5936b5e9ef06fe91|commit]], [[https://git.kernel.org/linus/ca2a04e84af79596e5cd9cfe697d5122ec39c8ce|commit]], [[https://git.kernel.org/linus/8ba29c85e2ef24764a05b557ebeca32f9bfafada|commit]], [[https://git.kernel.org/linus/8f2ac8481731fb5d01ad54f66aa0334a8913b3c2|commit]], [[https://git.kernel.org/linus/c3a3577cdb351e74d6ff6bc328c3bee18ce69298|commit]], [[https://git.kernel.org/linus/8c888b31903cc2acfbf054c23d702caf68857810|commit]], [[https://git.kernel.org/linus/7ca83f8ebe86706c4164ac21871f4a5adb86a430|commit]], [[https://git.kernel.org/linus/24df85ffb9712cd6060588f6e08defcda5986efe|commit]], [[https://git.kernel.org/linus/a9900a27dfe58e638690a6c3e8d477daa548d192|commit]], [[https://git.kernel.org/linus/9fa3ec84587c5eca7580eafc27eee332bc3a5a0e|commit]], [[https://git.kernel.org/linus/741c97fecb6a4160014a76759e9b8c0880fc44f1|commit]], [[https://git.kernel.org/linus/58a49cc9ebb13efd1c56c3466b09240779ac46a2|commit]], [[https://git.kernel.org/linus/def2a02a4cdce359084ba7f3ddc5ea204177a3de|commit]], [[https://git.kernel.org/linus/1c38f1f9b0a62651db5afcd37b964eb6b377fe66|commit]], [[https://git.kernel.org/linus/edefe6bda719d49384b22c524ef8102ce9c632e9|commit]], [[https://git.kernel.org/linus/ba33ac100d3feb1efb43b32e63cc0c6430936aa3|commit]], [[https://git.kernel.org/linus/2e2d64aea5c59ba976fced4bf44832ea425a3f3f|commit]], [[https://git.kernel.org/linus/541003b576c3e3c328314398a6df76eb3cebf847|commit]], [[https://git.kernel.org/linus/151e3257d61941ac07a7daacdb66ddc645f6ca34|commit]], [[https://git.kernel.org/linus/47b3b9bf93ec66ec2443f553c22e12e0475f1395|commit]], [[https://git.kernel.org/linus/2c941f26c6abc032fd7800ac7dcbfaf3cb586e21|commit]], [[https://git.kernel.org/linus/bb850584aaa2f31bc6c494f973047a325961b333|commit]], [[https://git.kernel.org/linus/0697b4f400696c1311cbd14421698b340dd8f7d4|commit]], [[https://git.kernel.org/linus/70772cafff8b8f02a33a56660f84d8b4011ddeb5|commit]], [[https://git.kernel.org/linus/57cd2072bda9d15df427f3d38b9cab4aad3cb55f|commit]], [[https://git.kernel.org/linus/819cb2c1dd8dc1168d5f1810182f1cf1925b4d2f|commit]], [[https://git.kernel.org/linus/b79b3c1f66131bd1ee705e9e42afe377373563be|commit]], [[https://git.kernel.org/linus/154ef7dce6a4d6afd1cf94de2098eb6f60821345|commit]], [[https://git.kernel.org/linus/7f583ad97c6a87e8ea7b7b875dabe2f84fedfd5e|commit]], [[https://git.kernel.org/linus/f770e4c1a488edb5ea96cce67f41607c259d704c|commit]], [[https://git.kernel.org/linus/4e9654c2bb468ce15df2ec3db27d35b3d7f85ca3|commit]], [[https://git.kernel.org/linus/7273ed4e780c64fae127b8c1de4b5000f9e0bac1|commit]], [[https://git.kernel.org/linus/97ed55d2f503d42aefc9695cf69954c10366588c|commit]], [[https://git.kernel.org/linus/d4ffeabea744a772cbce40c41f94accf9841d6e5|commit]], [[https://git.kernel.org/linus/33b54bc7998940c1dd4770c5ed0e182504302032|commit]], [[https://git.kernel.org/linus/e9817d5b8c32b64d40b0c0ffcd0dc67ce77e2aca|commit]], [[https://git.kernel.org/linus/904f58b50711babeb6e1383701e27d40a336908c|commit]], [[https://git.kernel.org/linus/5b9d406ff7cfde3f0367cac209d5bb2ac1c6e6b3|commit]], [[https://git.kernel.org/linus/cbe9e300a2c196ecb47d83e1665901603aca4126|commit]], [[https://git.kernel.org/linus/57483461e19c55da9cd9433aed2d47949e8c1c11|commit]], [[https://git.kernel.org/linus/ef7282e84934d54249abc745fc1cbc8b727a81cf|commit]], [[https://git.kernel.org/linus/a4503461fb6b72c68dd341c4a8e286e1bf2ec265|commit]], [[https://git.kernel.org/linus/a0c3d1f3de375da1bcf2fb15d4d5a1e5ebf7b277|commit]], [[https://git.kernel.org/linus/abb0434496c4299223f69bcb07174dee2e764bec|commit]], [[https://git.kernel.org/linus/39537a335a61894bbfd3dbb413f0c52bdf03772e|commit]], [[https://git.kernel.org/linus/9b323d2f474071cc6c627f73af301ba6f5e2b83f|commit]], [[https://git.kernel.org/linus/0787a93baa1aab9fd0cb8500105d11d3d3a58f7a|commit]] * Implement support of non-blocking timestamp updates, this did lead to a lot of context switches from applications using io_uring to submit file writes, which has now been fixed [[https://lore.kernel.org/lkml/20260108141934.2052404-1-hch@lst.de/|(cover)]], [[https://git.kernel.org/linus/20b781834ea0037b63c657e15b5aa4cfb4dd9b8b|commit]], [[https://git.kernel.org/linus/dc9629faef0a3d3cd35aff22806376700275a8b6|commit]], [[https://git.kernel.org/linus/b8b3002fbfef005cc7c00bfb1dcc9c1d0eecba8a|commit]], [[https://git.kernel.org/linus/1cbc822816758b2678e94800ce8eecc7b706fb84|commit]], [[https://git.kernel.org/linus/761475268fa8e322fe6b80bcf557dc65517df71e|commit]], [[https://git.kernel.org/linus/188344c8ac0b740ee2e5deebda2004b39ccbee74|commit]], [[https://git.kernel.org/linus/5cf06ea56ee67209d4e9a0b381641fb062ecd2c3|commit]], [[https://git.kernel.org/linus/85c871a02b0305f568d5aba6144fc6b2c96bd87d|commit]], [[https://git.kernel.org/linus/2d72003ba2440dfd43d8a0ebe2a9a36d971771e5|commit]], [[https://git.kernel.org/linus/f92f8eddbbfbf83b7263cbd995fb91256dbd4d71|commit]], [[https://git.kernel.org/linus/08489c4f41333913c9be27a031b070f4452e9374|commit]] * Add support for ML-DSA signatures in X.509 certificates and PKCS#7/CMS messages [[https://lore.kernel.org/linux-crypto/20260202170216.2467036-1-dhowells@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/d3b6dd90e23ef1b57143e60668175ecd890948d1|commit]], [[https://git.kernel.org/linus/2c62068ac86bdd917a12eef49ba82ec8b091208b|commit]], [[https://git.kernel.org/linus/f728074f1f577565c97e465652c3d4afb0964013|commit]], [[https://git.kernel.org/linus/f3eccecd782dbaf33d5ad0d1fd22ea277300acdb|commit]], [[https://git.kernel.org/linus/8bbdeb7a25b4cd3d829136a2e12982b8ee7d7991|commit]], [[https://git.kernel.org/linus/0ad9a71933e73c8a2af101d28e9a1dc35bae02d5|commit]], [[https://git.kernel.org/linus/91db696adea4d76017b1e1f45915a5cbf04e8da3|commit]], [[https://git.kernel.org/linus/965e9a2cf23b066d8bdeb690dff9cd7089c5f667|commit]] * rseq: Implement time slice extension mechanism. This allows a thread to request a time slice extension when it enters a critical section to avoid contention on a resource when the thread is scheduled out inside of the critical section [[https://lore.kernel.org/linux-kernel/20251215155615.870031952@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/d7a5da7a0f7fa7ff081140c4f6f971db98882703|commit]], [[https://git.kernel.org/linus/f8380f976804533df4c6c3d3a0b2cd03c2d262bc|commit]], [[https://git.kernel.org/linus/b5b8282441bc4f8f1ff505e19d566dbd7b805761|commit]], [[https://git.kernel.org/linus/28621ec2d46c6adf7d33a6facbd83e2fa566bd34|commit]], [[https://git.kernel.org/linus/99d2592023e5d0a31f5f5a83c694df48239a1e6c|commit]], [[https://git.kernel.org/linus/dd0a04606937af5810e9117d343ee3792635bd3d|commit]], [[https://git.kernel.org/linus/0ac3b5c3dc45085b28a10ee730fb2860841f08ef|commit]], [[https://git.kernel.org/linus/7ee58f98b59b0ec32ea8a92f0bc85cb46fcd3de3|commit]], [[https://git.kernel.org/linus/dfb630f548a7c715efb0651c6abf334dca75cd52|commit]], [[https://git.kernel.org/linus/3c78aaec19b0621bf952756670c8b066a55202fe|commit]], [[https://git.kernel.org/linus/830969e7821af377bdc1bb016929ff28c78490e8|commit]] * rseq: Various slice-ext changes [[https://git.kernel.org/linus/d6200245c75e832af2087bc60ba2e6641a90eee9|commit]], [[https://git.kernel.org/linus/e1d7f54900f1e1d3003a85b78cd7105a64203ff7|commit]], [[https://git.kernel.org/linus/21c0e92d0681fbd10ac024311bd09bca439e0bb1|commit]], [[https://git.kernel.org/linus/5d6446f409da00e5a389125ddb5ce09f5bc404c9|commit]], [[https://git.kernel.org/linus/bb332a9e5a057d2cb9b90e307b26cce9b1f6f660|commit]] * task scheduler * Add a deadline server for sched_ext tasks [[https://lore.kernel.org/linux-kernel/20250702232944.3221001-1-joelagnelf@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/6080fb211672aec6ce8f2f5a2e0b4eae736f2027|commit]], [[https://git.kernel.org/linus/68ec89d0e99156803bdea3c986c0198624e40ea2|commit]], [[https://git.kernel.org/linus/3cb3b27693bf30defb16aa096158a3b24583b8d2|commit]], [[https://git.kernel.org/linus/50653216e4ff7a74c95b2ee9ec439916875556ec|commit]], [[https://git.kernel.org/linus/cd959a3562050d1c676be37f1d256a96cb067868|commit]], [[https://git.kernel.org/linus/76d12132ba459ab929cb66eb2030c666aacdb69a|commit]], [[https://git.kernel.org/linus/be621a76341caa911ff98175114ff072618d7d4a|commit]], [[https://git.kernel.org/linus/dd6a37e8faa723c680cb8615efa5b042691b927f|commit]] * fair: Improve nohz fields for large systems [[https://lore.kernel.org/lkml/20260115073524.376643-1-sshegde@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/6b67c8a72e56041f91f70ae5995bdb769761869a|commit]], [[https://git.kernel.org/linus/94e70734b4d034b9df795bd1ad3452ea96e742ca|commit]], [[https://git.kernel.org/linus/5d86d542f68fda7ef6d543ac631b741db734101a|commit]] * Further restrict the preemption modes [[https://git.kernel.org/linus/7dadeaa6e851e7d67733f3e24fc53ee107781d0f|commit]] * Reorder some fields in struct rq [[https://git.kernel.org/linus/89951fc1f8201df27366ac1eed1ddc9ee0f47729|commit]] * sched: Update rq->avg_idle when a task is moved to an idle CPU [[https://git.kernel.org/linus/4b603f1551a73e2868b9e7a14b3938c23275cefb|commit]] * (FEATURED) {{{open_tree(2)}}}: add {{{OPEN_TREE_NAMESPACE}}}, which copies only the specified mount tree (like {{{OPEN_TREE_CLONE}}}) but returns a mount namespace fd instead of a detached mount fd. The new namespace contains the copied tree mounted on top of a clone of the real rootfs. This functions as a combined {{{unshare(CLONE_NEWNS)}}} + {{{pivot_root()}}} in a single syscall [[https://git.kernel.org/linus/9b8a0ba68246a61d903ce62c35c303b1501df28b|commit]] * pidfs: convert rb-tree to rhashtable [[https://git.kernel.org/linus/802182490445f6bcf5de0e0518fb967c2afb6da1|commit]] * pidfs: implement ino allocation without the pidmap lock [[https://git.kernel.org/linus/87caaeef79950377b616f3ba2265a82742cb9583|commit]] * pid: Rework pid allocation to only take pidmap_lock once instead of twice during alloc_pid(), improving thread creation/teardown throughput by 10-16% depending on false-sharing luck [[https://lore.kernel.org/linux-kernel/20251206131955.780557-1-mjguzik@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/c0aac5975bafc86f6817b14e9f71dcb5064a9183|commit]], [[https://git.kernel.org/linus/6d864a1b182532e7570383af8825fa4ddcd24243|commit]] * {{{open(2)}}}: avoid false-sharing on open/close hot paths. Measured 4-16% improvement on 24-core open-in-a-loop benchmarks [[https://git.kernel.org/linus/1fa4e69a54a250fa17d2afd9c5b54a59329033c1|commit]], [[https://git.kernel.org/linus/887e97745ec336c2f49b6c0af3c4cc00a5df3211|commit]] * Add {{{FS_XFLAG_VERITY}}} file attribute for fs-verity files, retrievable via {{{FS_IOC_FSGETXATTR}}} and {{{file_getattr()}}}. The flag is read-only [[https://lore.kernel.org/linux-fsdevel/20260126115658.27656-1-aalbersh@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0e6b7eae1fded85f94a357d6132f07d64c614cfa|commit]], [[https://git.kernel.org/linus/fa19d42cc7915226db416999866171a456dac657|commit]] * {{{statmount()}}}: accept fd as a parameter. When used, {{{statmount()}}} returns mount information for the mount the fd resides on — including detached mount [[https://git.kernel.org/linus/fccbe38a5d06dbe44bcd89196fe1d2c2272a1f4a|commit]], [[https://git.kernel.org/linus/0e5032237ee5530147fbdf33134297e1490d5ec3|commit]], [[https://git.kernel.org/linus/0c82fdbbbfbee878a0a5e884ea5f31dd16138f0d|commit]] * fsverity cleanups, speedup and memory usage optimization [[https://git.kernel.org/linus/e9734653c523c744f03333ece6ae7a315187f05c|commit]], [[https://git.kernel.org/linus/70098d932714e06894da3e46a0b8e7abbea9a961|commit]], [[https://git.kernel.org/linus/fb26616459098323eeda67b4f30786743191171b|commit]], [[https://git.kernel.org/linus/6f9fae2f738c41c22ee90778ff8fc069de379472|commit]], [[https://git.kernel.org/linus/ac09a30900d81ac10606f650e3c720cfafa37be0|commit]], [[https://git.kernel.org/linus/821ddd25fbe88ea60e9c35cfb76c2ddeb1ffae26|commit]], [[https://git.kernel.org/linus/23eec9fd64b2889286f31340371d67babfe54155|commit]], [[https://git.kernel.org/linus/b244c89a70b306e5a91852e00fd8cdd289714505|commit]], [[https://git.kernel.org/linus/314b652b7e7ad335fa20b693c8878a4850dae098|commit]], [[https://git.kernel.org/linus/f1a6cf44b344b1ac2cefb387779e3002be237a7e|commit]], [[https://git.kernel.org/linus/7e36e044958da7d2cbff391dcfda405f5472ae1d|commit]], [[https://git.kernel.org/linus/47bc2ac9b63da87362ce890543d8d955e0ccc36a|commit]], [[https://git.kernel.org/linus/f6ae956dfb3402bf6d5726080c2999f107bb5dd2|commit]], [[https://git.kernel.org/linus/d0b57f0962adcc2a92947a9fd9b86216b5322797|commit]], [[https://git.kernel.org/linus/45dcb3ac9832650e5fdc2046cc7cdb97cebbb888|commit]], [[https://git.kernel.org/linus/b0160e4501bb3572d9ef6e4f8edf758193ee37aa|commit]], [[https://git.kernel.org/linus/f77f281b61183a5c0b87e6a4d101c70bd32c1c79|commit]] * fsnotify: Independent inode tracking [[https://lore.kernel.org/linux-fsdevel/20260121135513.12008-1-jack@suse.cz/T/|(cover)]], [[https://git.kernel.org/linus/94bd01253c3d5b1cd8955bdadeed24af02088094|commit]], [[https://git.kernel.org/linus/a05fc7edd988c176491487ef0ae4dbf5f7a64cd7|commit]], [[https://git.kernel.org/linus/74bd284537b3447c651588101c32a203e4fe1a32|commit]] * Remove task and cgroup local storage percpu counters [[https://lore.kernel.org/bpf/20260205222916.1788211-1-ameryhung@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/0ccef7079ea8d5f7b896b14be7e400022ff240c6|commit]], [[https://git.kernel.org/linus/1b7e0cae85accc9e728004511193e995cd040300|commit]], [[https://git.kernel.org/linus/fd103ffc57c9a3b8b76bc852ffae5eb630a6ded4|commit]], [[https://git.kernel.org/linus/403e935f915896243ff93f9a2ff44e5bb6619032|commit]], [[https://git.kernel.org/linus/8dabe34b9d5b1135b084268396ed2267107e64c1|commit]], [[https://git.kernel.org/linus/4a98c2efa613f0b01bc3aa0acb8c3ff7ae29b6f9|commit]], [[https://git.kernel.org/linus/5254de7b9607dd341795cd693185f719a9e7298a|commit]], [[https://git.kernel.org/linus/3417dffb58331d1e7e4f3e30ec95cc0f8114ff10|commit]], [[https://git.kernel.org/linus/c8be3da14718f1e732afcb61e8ee5b78e8d93808|commit]], [[https://git.kernel.org/linus/5d800f87d0a5ea1b156c47a4b9fd128479335153|commit]], [[https://git.kernel.org/linus/0be08389c7f2f9db0194ee666d2e4870886e6ffb|commit]], [[https://git.kernel.org/linus/d652f425d5e332125d358a92158a840084061107|commit]], [[https://git.kernel.org/linus/e4772031d1053e7640e3094834916ee2605f288f|commit]], [[https://git.kernel.org/linus/902a79b6389ff39fd736c6fd1581ded1372adbf5|commit]], [[https://git.kernel.org/linus/e02cf06b85f8ae337c86db1bad5a0fd54c7bd301|commit]], [[https://git.kernel.org/linus/cdce7b0848f6f2be4c6d7dbf243244981d315f6f|commit]], [[https://git.kernel.org/linus/97b859b5ed04dbbe99be19895d8498009a19553f|commit]] * rtla/timerlat: Add low-latency BPF-based actions. With the option {{{--bpf-action}}} to attach a BPF program to be executed via BPF tail call at latency threshold [[https://lore.kernel.org/linux-kernel/20251126144205.331954-1-tglozar@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/8cd0f08ac72e25e2a048c72d76730676ab0106f3|commit]], [[https://git.kernel.org/linus/f967d1eca7d0bde7c896014577ea876096831c6e|commit]], [[https://git.kernel.org/linus/0304a3b7ec9a207637ab6f360a41af5fb25e1f44|commit]], [[https://git.kernel.org/linus/5525aebd4e0c6f7d92ec1cb074218bbcf3d46f13|commit]], [[https://git.kernel.org/linus/fbb8ed6682f84e6e27c798a3117b0bcd4d0623c4|commit]], [[https://git.kernel.org/linus/6627556c16fb1122e71110f57a90a961589ad8bf|commit]], [[https://git.kernel.org/linus/26e1a9bd4dd3c03336b608d8068f045d87c8ee6a|commit]] * workqueue: add time-based panic for stalls [[https://git.kernel.org/linus/f84c9dd34e8dce3fb42598344da711573b383626|commit]], [[https://git.kernel.org/linus/9cb8b0f289560728dbb8b88158e7a957e2e90a14|commit]] * Rust synchronization changes [[https://git.kernel.org/linus/86f4a271dc1962e389ea512d07a77626dbd8c1d8|commit]], [[https://git.kernel.org/linus/106ab474e5a711ea08e0908a42cfa89d691e57ad|commit]], [[https://git.kernel.org/linus/8a581130b1cbc17c702298b8325e3df98c792760|commit]], [[https://git.kernel.org/linus/09248ed8cdb6345afc883c02aecd79dfbd9c2a9c|commit]], [[https://git.kernel.org/linus/2cc3d5d6adbee058858f2e66de701a203b032746|commit]], [[https://git.kernel.org/linus/300e53b3d3b59e72a972a12ee5c6438aab4860a4|commit]], [[https://git.kernel.org/linus/5dbc0a692459bc49cdb7add281086291da547750|commit]], [[https://git.kernel.org/linus/ab717dd98bee964add2161d94193d756fdef614c|commit]], [[https://git.kernel.org/linus/1bfca1e7e845a55fa82046727666f713d24ebdad|commit]], [[https://git.kernel.org/linus/910cbddc416cc30d83966baf378f44e59f3dc5d7|commit]], [[https://git.kernel.org/linus/164e4b5600b32b4ddeac58bb5b37bc1490a1dce4|commit]], [[https://git.kernel.org/linus/fed6aaa392c301721144303d64b7c68575d9d5ef|commit]], [[https://git.kernel.org/linus/b5992f07a9736ab6279181c848f42227af9945bf|commit]], [[https://git.kernel.org/linus/8de731a6c75547602601a5d219b5cf259ce2b38b|commit]], [[https://git.kernel.org/linus/2bb8c41e61b29ccdf7b6d716c3a8fe8488aa202a|commit]], [[https://git.kernel.org/linus/cf4c3bc1445152c1949a4b5fef56d07579fadb1e|commit]], [[https://git.kernel.org/linus/b33796d554f270e19141c0c1fa0a90705a511d2b|commit]], [[https://git.kernel.org/linus/7b001c97d9bdaea50e1e1834040c58f7ef9f4e89|commit]], [[https://git.kernel.org/linus/584f286f822afecc1a6521a27b3caf3e2f515d41|commit]], [[https://git.kernel.org/linus/06bd0e52bfd78eae1c7dd5db163ce64161b495e7|commit]], [[https://git.kernel.org/linus/4bac28727a2b3f33e6375aeafdf31df67deff5d0|commit]], [[https://git.kernel.org/linus/323e4bfcbe2dc6c6cac6e007dded0ba4f89a6458|commit]], [[https://git.kernel.org/linus/7f4c8b4dcde7174a3bd5d001790d8453c9aefa3c|commit]], [[https://git.kernel.org/linus/aa574e0f21a6e7a28e4b8794ad4238d3bfd4f9df|commit]], [[https://git.kernel.org/linus/71a4d13fa1cf2b7a4f45a6ee41548c27783f7940|commit]], [[https://git.kernel.org/linus/1c7a6f48f7eeb3014584d2fc55fc67f0cbaeef69|commit]], [[https://git.kernel.org/linus/9f658bd5378d5c357d5eeb1e699f1504a7498dbf|commit]], [[https://git.kernel.org/linus/a87e6fe8738fabf9881758b79b0db592c057acbd|commit]], [[https://git.kernel.org/linus/5e03edaed373f41e7a3c8617e01891eb680d62aa|commit]], [[https://git.kernel.org/linus/9ba1aaf25ab7dadb910348b6857865e87b4c5689|commit]], [[https://git.kernel.org/linus/d4ad4de929ba27ed241c6ef1098b1687001ced1f|commit]], [[https://git.kernel.org/linus/5f1193d55a4311780136044355b1f09e7b5abac7|commit]], [[https://git.kernel.org/linus/75b6034780e8dc8c71096313534ccb720fa633f9|commit]], [[https://git.kernel.org/linus/5628f0510a4c64908c5d2f36a676b092e1e5d174|commit]], [[https://git.kernel.org/linus/abf2111d8d900c834993d443f59b836291b8d0fc|commit]], [[https://git.kernel.org/linus/ccf9e070116a81d29aae30db501d562c8efd1ed8|commit]] * cpuset * isolation: Honour kthreads preferred affinity [[https://git.kernel.org/linus/69e227e45069d613767c3dbd5d6a5570a2dddba8|commit]], [[https://git.kernel.org/linus/4fca0e550d506e1c95504c2d9247bc92bf621bf6|commit]], [[https://git.kernel.org/linus/0f4dfdc17b3c6bf055d5d60cb0c465c09addf04e|commit]], [[https://git.kernel.org/linus/4a062d33cd0f04a8f0dace86de8ce996a329dede|commit]], [[https://git.kernel.org/linus/662ff1aac85480690b16fc429bef7114120cdfdd|commit]], [[https://git.kernel.org/linus/53c2f9d1b1151a853542b224d78169f68f919ef1|commit]], [[https://git.kernel.org/linus/b5de34ed87f39fc3f6eb7e7df543317e7efb94a8|commit]], [[https://git.kernel.org/linus/622c508bcf4852ad56ae37bf6f08e9a4e6aa95b2|commit]], [[https://git.kernel.org/linus/a7e546354d9c534dc045ce0cf9ff05d81351a751|commit]], [[https://git.kernel.org/linus/27c3a5967f054ab666704cb28f2aeb18ca07cab7|commit]], [[https://git.kernel.org/linus/03ff7351016983653bab5b38e58529d0e38a28cf|commit]], [[https://git.kernel.org/linus/b7eb4edcc3b5cd7ffdcbd56fa7a12de41b39424d|commit]], [[https://git.kernel.org/linus/ce84ad5e994aea5d41ff47135a71439ad4f54005|commit]], [[https://git.kernel.org/linus/29b306c44eb5eefdfa02d6ba1205f479f82fb088|commit]], [[https://git.kernel.org/linus/23f09dcc0a0fa3b4e48516bdea1c90223dfb3d6c|commit]], [[https://git.kernel.org/linus/f5c145ae4f26c25b853f059f1aa14a46f4e9f1ab|commit]], [[https://git.kernel.org/linus/0947d018cf574b6c19d64aa3f67ecd0a5add9e31|commit]], [[https://git.kernel.org/linus/6440966067dc078f7b46942b3e2cb5d1035fc0b9|commit]], [[https://git.kernel.org/linus/1c3329df409b9b50517bf4a1399ed793d277a20c|commit]], [[https://git.kernel.org/linus/2f803980988884213de1f1bea0c9dde380d3db84|commit]], [[https://git.kernel.org/linus/012fef0e4859d1ffb41f5f7d72b3c61068829e6b|commit]], [[https://git.kernel.org/linus/5564c12385b7a6a2991e31017d12fcef96fa830a|commit]], [[https://git.kernel.org/linus/92a734606e901cf7af239e3bd3cfb0c3a11d7b5e|commit]], [[https://git.kernel.org/linus/041ee6f3727a5efdc497d0363ab5ffbd98a2c77c|commit]], [[https://git.kernel.org/linus/bf5b0c27fad2626789624deea10f43da499ad740|commit]], [[https://git.kernel.org/linus/79c0abaf06fca6e715cf792daed580542fc4a2c4|commit]], [[https://git.kernel.org/linus/e894f633980804a528a2d6996c4ea651df631632|commit]], [[https://git.kernel.org/linus/60ba9c38b9316efa3eb1c8a927bee6f8a4f101a5|commit]], [[https://git.kernel.org/linus/d279138a2788ac22cff23710b2d4a3ebd160c09d|commit]], [[https://git.kernel.org/linus/fa39ec4f89f2637ed1cdbcde3656825951787668|commit]] * Improve partition handling. Sibling partitions are no longer invalidated on cpuset.cpus conflict, cpuset.cpus changes no longer fail in v2, and effective_xcpus computation is made consistent [[https://lore.kernel.org/linux-kernel/20260112160021.483561-1-longman@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/18bc2425a877c45b59c0972df30afb46084f8816|commit]], [[https://git.kernel.org/linus/a1a01793ae1f6f99fd7174988d49b43cd1cb36c3|commit]], [[https://git.kernel.org/linus/6e6f13f6d5095f3a432da421e78f4d7d51ef39c8|commit]], [[https://git.kernel.org/linus/2a3602030d800b6600ef55c31e21bc54611f7770|commit]], [[https://git.kernel.org/linus/272bd8183376a9e20fe08bacbaa44003d7c8acaa|commit]] * tee: add revision sysfs attribute [[https://git.kernel.org/linus/241bdf7253502c56251ef8b25ab9cad5b6547422|commit]] * vfs: Optimize {{{close_range()}}} from O(range size) to O(active FDs). This is a significant improvement for large-range close operations on sparse file descriptor tables [[https://git.kernel.org/linus/fc94368bcee555b2cc44c2f4e7c4fcbb50404cd3|commit]], [[https://lore.kernel.org/linux-fsdevel/20260123081221.659125-1-realwujing@gmail.com/T/|(cover)]] * Make KHO stateless [[https://lore.kernel.org/lkml/20251209025317.3846938-1-jasonmiu@google.com/T/|(cover)]], [[https://git.kernel.org/linus/5e1ea1e27b6ff237122ac6cb30e0b8ea4618f75f|commit]], [[https://git.kernel.org/linus/ac2d8102c4b88713a8fa371d5d802fcff131d6ac|commit]] * Align atomic storage [[https://lore.kernel.org/bpf/cover.1768281748.git.fthain@linux-m68k.org/T/|(cover)]], [[https://git.kernel.org/linus/3bb83c910971c47989aa439849265600fa67b42a|commit]], [[https://git.kernel.org/linus/e428b013d9dff30f7a65509e33047ba975cce8ba|commit]], [[https://git.kernel.org/linus/80047d84eed25e9c92cfb9169980a0dfec110246|commit]], [[https://git.kernel.org/linus/9a229ae249e0a24276901ad6807f31b32124f5c5|commit]] * Live Update: File-Lifecycle-Bound (FLB) State [[https://git.kernel.org/linus/cab056f2aae7250af50e503b81a80dfc567a1acd|commit]], [[https://git.kernel.org/linus/f653ff7af96951faa69c68665d44bed80702544f|commit]] * scripts/make_fit: Support ramdisks and faster operations [[https://lore.kernel.org/linux-kbuild/20260106162738.2605574-1-sjg@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/621fd65adc825b69a59367b97a7c2aa73e382909|commit]], [[https://git.kernel.org/linus/26428e7dd6a51e328776dd333f613445d1951658|commit]], [[https://git.kernel.org/linus/873c2836982e1f7389d487afca4cc42ed373ba4b|commit]], [[https://git.kernel.org/linus/9a329df6e004190ce7422cc040c09374efa34289|commit]], [[https://git.kernel.org/linus/fcdcf22a34b0768471d6c834254ef041e3d9c3dc|commit]], [[https://git.kernel.org/linus/c7c88b20cd4226af0c9fbdb365fb6f221501c7da|commit]] * compiler_types.h: Attributes: Add {{{__counted_by_ptr macro}}} [[https://git.kernel.org/linus/150a04d817d8f5be5a4f92799827cdc8d7e45989|commit]] * Introduce containerized builds [[https://lore.kernel.org/linux-kernel/cover.1769090419.git.gtucker@gtucker.io/T/|(cover)]], [[https://git.kernel.org/linus/8f989b3b6f0f029e34fcfbf259e4ac47e2028d4b|commit]], [[https://git.kernel.org/linus/6eac13c876805f61bbb588eaff5ada0b6dc603e8|commit]] * vmcoreinfo: support VMCOREINFO_BYTES larger than PAGE_SIZE [[https://git.kernel.org/linus/76103d1b268e6f45735aa92d70bea5b5e8174a70|commit]], [[https://git.kernel.org/linus/b5bfcc1ffe512c7879cb90befdeabaa43d9f07ca|commit]] * tools/nolibc * Add fread() and fseek() [[https://lore.kernel.org/linux-kernel/20260105023629.1502801-1-daniel@thingy.jp/T/|(cover)]], [[https://git.kernel.org/linus/edaf30743185f6ed8e29dcb2f1d01e183c0b807b|commit]], [[https://git.kernel.org/linus/109770cc81680b802ee983b09b61c3979240fd09|commit]], [[https://git.kernel.org/linus/a5f00be9b3b07d92c6689997403851a32e1874cc|commit]] * Start porting uml to nolibc [[https://lore.kernel.org/linux-kernel/20250924142059.527768-1-benjamin@sipsolutions.net/T/|(cover)]], [[https://git.kernel.org/linus/c485ca3aff2442adea4c08ceb5183e671ebed22a|commit]], [[https://git.kernel.org/linus/4ada5679f18dbbe92d87c37a842c3368e6ab5e4a|commit]], [[https://git.kernel.org/linus/fbd1b7f6b322a63b21ebbf00c732a17bb8bdb5d4|commit]], [[https://git.kernel.org/linus/2cb6cc8361da803ede847ed1ca8afeb3af6df6ff|commit]], [[https://git.kernel.org/linus/3d66c4e14fbf4d59ca4665391d133655fa668042|commit]], [[https://git.kernel.org/linus/4bb30188c787176f934aab71872f7c5f43ae6d6f|commit]], [[https://git.kernel.org/linus/ec4bb8e8dfa060c699b548f62e4d56133aafbbec|commit]] * tools/sched_ext: Add example C schedulers [[https://lore.kernel.org/lkml/20260123032605.49140-1-emil@etsalapatis.com/T/|(cover)]], [[https://git.kernel.org/linus/cc4448d0856d424e52b5f53b2592575598233eac|commit]], [[https://git.kernel.org/linus/f0262b102c7ce43f3744bdb0278ddf0d15bb1a71|commit]], [[https://git.kernel.org/linus/36929ebd17ae66ed3acde9056a9daf611d81a2e5|commit]] * acct(2): begin the deprecation of legacy BSD process accounting [[https://git.kernel.org/linus/46329a9dd74bd12e92fb7cc8afe70dad32875758|commit]] * workqueue: add CONFIG_BOOTPARAM_WQ_STALL_PANIC option [[https://git.kernel.org/linus/32d572e39031920691abfada68cdb19ad44b4eeb|commit]] * module: Remove SHA-1 support for module signing [[https://git.kernel.org/linus/148519a06304af4e6fbb82f20e1a4480e2c1b126|commit]] * bug: Support DEBUG_BUGVERBOSE_DETAILED option [[https://git.kernel.org/linus/966f79ce6f6b3d138b69cacc3cdcbb5001141b4d|commit]] * print: Add support for calling a function exactly once [[https://git.kernel.org/linus/e600425708148e952adce496ac9e9def79264c8a|commit]] * Remove half of classic linuxrc-based initrd support [[https://lore.kernel.org/linux-fsdevel/20251119222407.3333257-1-safinaskar@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/7f3b33668595ee48722df86831a1df4ee1192269|commit]], [[https://git.kernel.org/linus/c350a65b566b527874b7ace5d904c57c107fae4f|commit]], [[https://git.kernel.org/linus/e6ce36ccc86f6d447808a6e620f56d440d74aa19|commit]] * iommu: Add page_ext for iommu_debug_pagealloc [[https://lore.kernel.org/lkml/20260114164322.787125-1-smostafa@google.com/T/|(cover)]], [[https://git.kernel.org/linus/466ae6978a5b8c6022bd4537fbfd00e94bb07219|commit]], [[https://git.kernel.org/linus/ccc21213f013834b484cdcc738e282f963fcfc97|commit]], [[https://git.kernel.org/linus/7e84593795b3c05ca682b8aa74cceeceae636ec7|commit]], [[https://git.kernel.org/linus/a8258ffed2efdf533bdc756141eeb7bc5301ad4f|commit]] * delayacct: add timestamp of delay max [[https://git.kernel.org/linus/503efe850c7463a1e59df133b84461ef53c0361f|commit]] = File systems = * BTRFS * New logical remapping tree [[https://lore.kernel.org/linux-btrfs/20260107141015.25819-1-mark@harmstone.com/T/|(cover)]], [[https://git.kernel.org/linus/ef6a31d035a1000071dc4846aebd02ad081db9e4|commit]], [[https://git.kernel.org/linus/0b4d29fa98ca1a49c4498353253f857573871ba0|commit]], [[https://git.kernel.org/linus/c3d6dda60c9da79a108592b14560e326384dbf4e|commit]], [[https://git.kernel.org/linus/efcab3176eb28427177c6319e128b41efd03ffdd|commit]], [[https://git.kernel.org/linus/bf8ff4b9f0aa3f9e49779c8d3edbdc11caa5cd05|commit]], [[https://git.kernel.org/linus/7977011460cffc6f5a0cd830584c832c4aa07076|commit]], [[https://git.kernel.org/linus/8620da16fb6be1fd9906374fa1c763a10c6918df|commit]], [[https://git.kernel.org/linus/18ba649928711539dd124b4bf7682696b3f2e4a8|commit]], [[https://git.kernel.org/linus/979e1dc3d69e4c825eec05d05d9567b251f6ec23|commit]], [[https://git.kernel.org/linus/b56f35560b82e7f8d79aa9ee72720b06639a473c|commit]], [[https://git.kernel.org/linus/bbea42dfb91f6901243958c83f26bbbd3a4a85fa|commit]], [[https://git.kernel.org/linus/fd6594b1446cc753450bad8d0da6288da1ad7b96|commit]], [[https://git.kernel.org/linus/81e5a4551c32b454468f5aa3fe45dabb6bccb854|commit]], [[https://git.kernel.org/linus/7cddbb4339d4be16aa5341e3a27e63c34d2c4e0d|commit]], [[https://git.kernel.org/linus/2aef934b56b3ae07c292831cf9bf6bafcaaa005e|commit]] * zoned: zoned statistics fixes and updates [[https://lore.kernel.org/linux-btrfs/20251217134139.275174-1-johannes.thumshirn@wdc.com/T/|(cover)]], [[https://git.kernel.org/linus/437cc6057e01d98ee124496f045ede36224af326|commit]], [[https://git.kernel.org/linus/6a5ac228d4ad05c250de0bf06713d81bfb70c714|commit]], [[https://git.kernel.org/linus/2ef2e97fe74e937a246681713434ca16d8e5552e|commit]], [[https://git.kernel.org/linus/9da49784ae9fff59b6056d8a4018d95a16f9915b|commit]] * Enable direct IO for bs > ps cases [[https://git.kernel.org/linus/ddea91780fecd349eb4b2c4036bfbf1ab5f75321|commit]] * Remove experimental offload csum mode [[https://git.kernel.org/linus/ae23fee41b36a39f8e163580fe273ca3f88f2413|commit]] * EXT4 * Add a sysfs parameter, err_report_sec, to control how frequently to log a warning message that file system inconsistency has been detected (Previously we logged the warning message every 24 hours) [[https://git.kernel.org/linus/d518215c27194486fe13136a8dbbbabeefb5c9b6|commit]] * Mark more ops fast-commit ineligible [[https://git.kernel.org/linus/87e79fa122bc9a6576f1690ee264fcbd77d3ab58|commit]], [[https://git.kernel.org/linus/16d43b9748c655b36a675cc55789f40fd827e9b1|commit]], [[https://git.kernel.org/linus/690558921d9f9388c6bc83610451d8cb393e4d88|commit]], [[https://git.kernel.org/linus/89b4336fd5ec78f51f9d3a1d100f3ffa3228e604|commit]], [[https://git.kernel.org/linus/1f8dd813a1c771b13c303f73d876164bc9b327cc|commit]] * Defer unwritten splitting until i/o completion [[https://lore.kernel.org/linux-ext4/20260105014522.1937690-1-yi.zhang@huaweicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/01942af95ab6c9d98e64ae01fdc243a03e4b973f|commit]], [[https://git.kernel.org/linus/ea96cb5c4ae3ab9516a78b6b435721a6c701eff4|commit]], [[https://git.kernel.org/linus/5d87c7fca2c1f51537052c791df694dc3c4261cb|commit]], [[https://git.kernel.org/linus/012924f0eeef84f9bdb71896265f8303245065a8|commit]], [[https://git.kernel.org/linus/8bd1f257af1c21d34f8758f4e36854970e1dc2f5|commit]], [[https://git.kernel.org/linus/5ca28af074ad506c95a8f86a5d260562f3caa39b|commit]], [[https://git.kernel.org/linus/5f18f60d56c0cedd17826882b66b94f1a52f65ef|commit]] * Replace ext4_es_insert_extent() when caching on-disk extents [[https://lore.kernel.org/linux-ext4/20251129103247.686136-1-yi.zhang@huaweicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/22784ca541c0f01c5ebad14e8228298dc0a390ed|commit]], [[https://git.kernel.org/linus/1bf6974822d1dba86cf11b5f05498581cf3488a2|commit]], [[https://git.kernel.org/linus/feaf2a80e78f89ee8a3464126077ba8683b62791|commit]], [[https://git.kernel.org/linus/5f1a1cccebf87e6c51f981908cc3cc10c3bc936b|commit]], [[https://git.kernel.org/linus/8b4b19a2f96348d70bfa306ef7d4a13b0bcbea79|commit]], [[https://git.kernel.org/linus/6d882ea3b0931b43530d44149b79fcd4ffc13030|commit]], [[https://git.kernel.org/linus/79b592e8f1b435796cbc2722190368e3e8ffd7a1|commit]], [[https://git.kernel.org/linus/c0329d0288dee6be26e5eca71fdc520c1c5e6acf|commit]], [[https://git.kernel.org/linus/ef46e0d70014cad87dc18e7d292e7c75c0ef30c8|commit]], [[https://git.kernel.org/linus/42ad7b23b335835548fecc757d6627b67cd5f0b4|commit]], [[https://git.kernel.org/linus/ae3e5ebbdd77a9b2b2eccd6a96ff656dfa3d718f|commit]], [[https://git.kernel.org/linus/b32e61cf6470ced0a70f20c9b513511a4e79b390|commit]], [[https://git.kernel.org/linus/a5567347b6f5e888c56274d710b8f9525dbd57d0|commit]], [[https://git.kernel.org/linus/382dd788cb8b25dff007fb45d064ba8b1095685a|commit]] * EROFS * Introduce page cache sharing feature [[https://git.kernel.org/linus/e0bf7d1c074dc4252223ae897560345ccc24100d|commit]], [[https://git.kernel.org/linus/78331814a502b6b27ccf57dcd09801d2b48709e1|commit]], [[https://git.kernel.org/linus/e77762e8966c9466a84b22680ad04880dab11914|commit]], [[https://git.kernel.org/linus/5ef3208e3be50aa08b4e7a2832f34e16d42c08b3|commit]], [[https://git.kernel.org/linus/69368d2ded39b6a7ca6bd9fd53ee0d1f904e3601|commit]], [[https://git.kernel.org/linus/34096ba919fd0b32e86e5d617c45d0998a495c7a|commit]], [[https://git.kernel.org/linus/9364b55a4dbf1ae9a8cb077cb8b7d0c7401d00fc|commit]], [[https://git.kernel.org/linus/d86d7817c042dd651d47b1873f4b6eaefbedd890|commit]] * F2FS * Add lock elapsed time trace facility for f2fs rwsemphore [[https://lore.kernel.org/linux-kernel/20260104020729.1064529-10-chao@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/6fa116053951d5785ef1a0b060858843e663a31a|commit]], [[https://git.kernel.org/linus/7a127c80b0eec7649b6df14c12e53f859dddbe52|commit]], [[https://git.kernel.org/linus/c56254e2e04216839699937a04aac18c585e833e|commit]], [[https://git.kernel.org/linus/d36de29f4bb59b24e57ff22403baae6fc7e89bd8|commit]] * Reduce checkpoint write latency under metadata-intensive workloads [[https://lore.kernel.org/lkml/20260113152138.15979-2-monty_pavel@sina.com/T/|(cover)]], [[https://git.kernel.org/linus/401a3034d3b9f33e0fd085f6964512fe999ba135|commit]], [[https://git.kernel.org/linus/7c9ee0ed2bd4e30192d83de529c9094e18ab6f41|commit]], [[https://git.kernel.org/linus/1db4b3609aa13efceddeae2e58749acb62d42d71|commit]] * Avoid f2fs_map_blocks() for consecutive holes in readpages [[https://git.kernel.org/linus/fe2961fb77e4784261976ca887135b1aecd8a9f1|commit]] * Introduce FAULT_SKIP_WRITE [[https://git.kernel.org/linus/ab59919c8a041bf0fc6c8fe65dd10729e19de88c|commit]], [[https://git.kernel.org/linus/1120764691736cb803cd763c82aa151b1fee2b8e|commit]] * Make fault_discard obsolete [[https://git.kernel.org/linus/1dd3b437d49ce09f0bd72acc1d694e212f26d1fe|commit]] * sysfs: introduce critical_task_priority [[https://git.kernel.org/linus/52190933c37a96164b271f3f30c16099d9eb8c09|commit]] * NFS * Add v4.2 posix acl support [[https://lore.kernel.org/linux-nfs/20260109162143.4186112-1-cel@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/6bc85baba4b08c787a8c9ba1bb0252a83e5c5603|commit]], [[https://git.kernel.org/linus/feb8a46b14d9dc927bbedd59b43da3a2c798d64a|commit]], [[https://git.kernel.org/linus/91dc464fbed3a567cbbd12b41b24f89b905ad63d|commit]], [[https://git.kernel.org/linus/4a639a727f36e2bf49204c106cedab0060cdd75d|commit]], [[https://git.kernel.org/linus/8093c31f2c959d6d92a33d9161d5e2c53d69720f|commit]], [[https://git.kernel.org/linus/5e62c904e4dcc0e53471edca6347cdbc20fd18f8|commit]], [[https://git.kernel.org/linus/97e9a9ec32231d75cc241f63ed6fd4cd210079a0|commit]], [[https://git.kernel.org/linus/9ac6fc0fabb72550846893a4f3cf8a8b701157d9|commit]], [[https://git.kernel.org/linus/345c4b7734e841d20a70a84deb13cb317c45d484|commit]], [[https://git.kernel.org/linus/5fc51dfc2eb160bd7ab3251ab1767cacf9c8bf05|commit]], [[https://git.kernel.org/linus/d2ca50606f5f0235d7780c1cd73b6614a5d07620|commit]], [[https://git.kernel.org/linus/318579c0935c2faf1cccbc6359b410ff2ca4b84a|commit]], [[https://git.kernel.org/linus/e939bd675634fd52d559b90e2cf58333e16afea8|commit]] * Automatic nfsv4 state revocation on filesystem unmount [[https://lore.kernel.org/linux-nfs/20260108004016.3907158-1-cel@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/3daab3112f039cf849f96764019b096bb0a39d04|commit]] * Make nfs v4.0 kconfig-urable [[https://lore.kernel.org/linux-nfs/20260126203938.450304-1-anna@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/e5e45ea615a13edac86d6f84bbd5fc1c5d532a10|commit]], [[https://git.kernel.org/linus/c96c05fcfe395e93f738d924dfd40571ca4302ca|commit]], [[https://git.kernel.org/linus/0e854d761e2bc316b810296c493d479fef92b2c6|commit]], [[https://git.kernel.org/linus/963707b122ac22b03e9c0e54137045c139271ff1|commit]], [[https://git.kernel.org/linus/b6ee9a9ba7a506d69171d637c1eab42a479c4c6c|commit]], [[https://git.kernel.org/linus/0cba208fb979509721031d2469b31c45140e3063|commit]], [[https://git.kernel.org/linus/c30493d8c517e6138c9ba303a9b6484c8f0bd744|commit]], [[https://git.kernel.org/linus/c695ac2d60f495a50aa2aceb4fdeb587e1008f65|commit]], [[https://git.kernel.org/linus/214359fe1689999048809cf752a997847d538dc6|commit]], [[https://git.kernel.org/linus/424a3a71b8059cdb8e755bac35c29184a4ef4482|commit]], [[https://git.kernel.org/linus/211891374353c91f9aa4bb8cfca5d681b990f3d6|commit]], [[https://git.kernel.org/linus/9c54afc10611638cca9997f472283985b9ca8e42|commit]], [[https://git.kernel.org/linus/4e0269352534715915aae3fb84dd4d3bb3ff3738|commit]], [[https://git.kernel.org/linus/7537db24806fdc3d3ec4fef53babdc22c9219e75|commit]] * NTFS3 * Add delayed-allocation (delalloc) support [[https://git.kernel.org/linus/10d7c95af043b45a85dc738c3271bf760ff3577e|commit]] * Allow explicit boolean acl/prealloc mount options [[https://git.kernel.org/linus/3c6248937fb9fe5cfb29aa8813e18c50095e4db7|commit]] * Implement iomap-based file operations [[https://git.kernel.org/linus/099ef9ab9203dff327f2d61e44773f9acbc01f13|commit]] * Implement llseek SEEK_DATA/SEEK_HOLE by scanning data runs [[https://git.kernel.org/linus/c61326967728392931f8a2240cb2cf4c81b523c1|commit]] * Improve readahead for bitmap initialization and large directory scans [[https://git.kernel.org/linus/989e29450efaf4983c66b7a628f2ffc03b6d02e8|commit]] * EXFAT * Enable multi-cluster fetching for exfat_get_block [[https://lore.kernel.org/linux-fsdevel/PUZPR04MB631672ED193FCDD8675AEC29818DA@PUZPR04MB6316.apcprd04.prod.outlook.com/|(cover)]], [[https://git.kernel.org/linus/967288e9a6f2ca88cf7d004d87bb3aa9db64fbe2|commit]], [[https://git.kernel.org/linus/5cf0288f0da3ad1422690f9602149f023abffe9b|commit]], [[https://git.kernel.org/linus/06805f4c57840c6957b1c2064d3b453e66e943ab|commit]], [[https://git.kernel.org/linus/5e205c484b1feb3297f78351f3866cb60afe004b|commit]], [[https://git.kernel.org/linus/2e21557d5422a24e0c2c12455ae8b9f10045e3d5|commit]], [[https://git.kernel.org/linus/5dc72a518137941852fc57b3cde97ff243791e57|commit]], [[https://git.kernel.org/linus/afb6ffa33dab9622f7502c081b17dbc9bc9a97d0|commit]], [[https://git.kernel.org/linus/6d0b7f873bbd153f6ce26a87ffa32238693e36a0|commit]], [[https://git.kernel.org/linus/88a936b7a918e4f37296524d355505128c961d9c|commit]], [[https://git.kernel.org/linus/256694b22d017edcc8a0ce82a8e40742b074d509|commit]], [[https://git.kernel.org/linus/8c6bdce0e91425ca5e84f52819b7cf0e024fb129|commit]], [[https://git.kernel.org/linus/9fb696a10a6735a15a0d2b4370419702e99818d0|commit]], [[https://git.kernel.org/linus/9276e330c17b6c926bdc5da90cbc58d6c4f26298|commit]] * SMB * Add procfs interface for runtime monitoring and statistics [[https://git.kernel.org/linus/b38f99c1217ae04753340f0fdcd8f35bf56841dc|commit]] * XFS * (FEATURED) Autonomous self healing of filesystems [[https://lore.kernel.org/linux-xfs/176897694953.202109.15171131238404759078.stgit@frogsfrogsfrogs/|(cover)]], [[https://git.kernel.org/linus/a48373e7d35a89f6f9b39f0d0da9bf158af054ee|commit]], [[https://git.kernel.org/linus/b3a289a2a9397b2e731f334d7d36623a0f9192c5|commit]], [[https://git.kernel.org/linus/25ca57fa3624cae9c6b5c6d3fc7f38318ca1402e|commit]], [[https://git.kernel.org/linus/5eb4cb18e445d09f64ef4b7c8fdc3b2296cb0702|commit]], [[https://git.kernel.org/linus/74c4795e50f816dbf5cf094691fc4f95bbc729ad|commit]], [[https://git.kernel.org/linus/e76e0e3fc9957a5183ddc51dc84c3e471125ab06|commit]], [[https://git.kernel.org/linus/dfa8bad3a8796ce1ca4f1d15158e2ecfb9c5c014|commit]], [[https://git.kernel.org/linus/c0e719cb36672b69a06da65ac4ec71e9a599dff5|commit]], [[https://git.kernel.org/linus/8b85dc4090e1c72c6d42acd823514cce67cd54fc|commit]], [[https://git.kernel.org/linus/b8accfd65d31f25b9df15ec2419179b6fa0b21d5|commit]] * Stats and error injection for zoned GC [[https://lore.kernel.org/linux-xfs/20260127160619.330250-11-hch@lst.de/T/|(cover)]], [[https://git.kernel.org/linus/9a228d141536a91bf9e48a21b37ebb0f8eea8273|commit]], [[https://git.kernel.org/linus/394969e2f9d11427ce493e171949958122dc11ee|commit]], [[https://git.kernel.org/linus/b8862a09d8256a9037293f1da3b4617b21de26f1|commit]], [[https://git.kernel.org/linus/e2d62bfd99b6b79d7c5a4c543c2d84049f01f24f|commit]], [[https://git.kernel.org/linus/4d8f42466a3ba2342b876822ff0582a49e174c9b|commit]], [[https://git.kernel.org/linus/2d263debd7f1df2091efb4c06eda02ab04b68562|commit]], [[https://git.kernel.org/linus/32ae9b893a1dc341274ffabd3cdcc63134f36060|commit]], [[https://git.kernel.org/linus/06873dbd940dea955b30efb0b59212f1c858f6d9|commit]], [[https://git.kernel.org/linus/41374ae69ec3a910950d3888f444f80678c6f308|commit]], [[https://git.kernel.org/linus/edf6078212c366459d3c70833290579b200128b1|commit]], [[https://git.kernel.org/linus/e33839b514a8af27ba03f9f2a414d154aa980320|commit]] * Promote metadata directories and large block support [[https://git.kernel.org/linus/4d6d335ea9558a7dc0c5044886440d7223596235|commit]] * Improve zoned XFS GC buffer management [[https://git.kernel.org/linus/7ca44303f9f6160a2f87ae3d5d2326d9127cd61c|commit]], [[https://git.kernel.org/linus/0506d32f7c52e41f6e8db7c337e0ce6374c6ffbb|commit]], [[https://git.kernel.org/linus/102f444b57b35e41b04a5c8192fcdacb467c9161|commit]] = Memory management = * Support batch checking of references and unmapping for large folios, which implements batching to greatly improve the performance of reclaiming clean file-backed large folios [[https://lore.kernel.org/linux-kernel/cover.1770645603.git.baolin.wang@linux.alibaba.com/T/|(cover)]], [[https://git.kernel.org/linus/52e054f7184097bea009963e033cdd54af7bf8a2|commit]], [[https://git.kernel.org/linus/67d59bddfc26a2f7d5740d4d7ce9ff45274322d5|commit]], [[https://git.kernel.org/linus/6f0e1142173a54b8a18c59fc3cbae3b31ee423d9|commit]], [[https://git.kernel.org/linus/07f440c23a197616f7b7607b98b9427da23f9f6f|commit]], [[https://git.kernel.org/linus/a67fe41e214fcfd8b66dfb73d3abe4b7a4b3751d|commit]] * hugetlb: implement {{{movable_gigantic_pages}}} sysctl [[https://git.kernel.org/linus/9e80e66ddaf736e5ca80cba8adf8d497bd53092f|commit]] * Consolidate hugetlb early reservation [[https://lore.kernel.org/linux-alpha/20260111082105.290734-1-rppt@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/ba1c86874e25e95de9b253570bb50cc3b5df542e|commit]], [[https://git.kernel.org/linus/7988e85189048033a2784e8cf81c5d62dcd2af82|commit]], [[https://git.kernel.org/linus/30a66f8a8cd3ed3df69a672cf8f2a43eddd8a212|commit]], [[https://git.kernel.org/linus/18b7cc70dea8b4071ebf736724e99103115c5f95|commit]], [[https://git.kernel.org/linus/60b35af0a6aa6b92dab6dd6d2cb0b39647d07436|commit]], [[https://git.kernel.org/linus/37318eb97f2374f89be6a1ca1515004847e3cc2a|commit]], [[https://git.kernel.org/linus/934afdf7f4cc243c5b00352a0f8a54d2de283fe9|commit]], [[https://git.kernel.org/linus/63cadcb731c914c85577512b0688fd62350644a8|commit]], [[https://git.kernel.org/linus/41b08a7abf890deeaa7a71d1cbad9879b605d8ea|commit]], [[https://git.kernel.org/linus/2ce38c9ae840ca7ddf401aec4310042581d64975|commit]], [[https://git.kernel.org/linus/f61385e29444d4d2dca06766575da72cd814edf2|commit]], [[https://git.kernel.org/linus/3b1b0e5797bd325d0b40d82fe0f535badc51d1da|commit]], [[https://git.kernel.org/linus/1d28b1142383416d95c14c51ab3c865fdb6770cd|commit]], [[https://git.kernel.org/linus/950696afe400d2f97df21ee6924cd297a994bf59|commit]], [[https://git.kernel.org/linus/27bebe446f8d00444bb6bdc5cd57062e64ff3c36|commit]], [[https://git.kernel.org/linus/db8cdb0ad603105d987e6c9b04d28254c9d46120|commit]], [[https://git.kernel.org/linus/76c4c463bbc0836c46d84775e7ca5bf6e22e8618|commit]], [[https://git.kernel.org/linus/8bfa6c2259f494e18b06add7e822c1c2982d0c03|commit]], [[https://git.kernel.org/linus/6ad7ea22cf6f3d635f9a7a25273b0d3f43b4b600|commit]], [[https://git.kernel.org/linus/531de7f02d51b3198245d30364b50fde3dfaea06|commit]], [[https://git.kernel.org/linus/34f6b9c6e417dcde58bd5b4284e3f2b7689522c7|commit]], [[https://git.kernel.org/linus/2d3c8c5f33e0b90d8a9f6a41014a11355a20f3b1|commit]], [[https://git.kernel.org/linus/d49004c5f0c140bb83c87fab46dcf449cf00eb24|commit]], [[https://git.kernel.org/linus/4267739cabb82da75780c4699fe8208821929944|commit]], [[https://git.kernel.org/linus/5dea39496c681a2de1683cb808f525d6d7115753|commit]], [[https://git.kernel.org/linus/6632314fddc4f5c9d3c1a6800fc2a62e6a5155e8|commit]], [[https://git.kernel.org/linus/9fac145b6d3fe570277438f8d860eabf229dc545|commit]], [[https://git.kernel.org/linus/7a9c0bf0aec621bba6d224e8c08713cf2cbcca0f|commit]], [[https://git.kernel.org/linus/743758ccf8bede3e7c38f3f7d3f5131aa0a7b4a6|commit]] * swap: table phase II: unify swapin use, which removes some old swap code (swap cache bypassing and swap synchronization) which wasn't working very well. Various other cleanups and simplifications were made. The end result is a 20% speedup in a redis-benchmark [[https://lore.kernel.org/linux-kernel/20251220-swap-table-p2-v5-0-8862a265a033@tencent.com/T/|(cover)]], [[https://git.kernel.org/linus/d7cf0d54f21087dea8ec5901ffb482b0ab38a42d|commit]], [[https://git.kernel.org/linus/84eedc747b53da0b0327a5612afaab6ef85b7011|commit]], [[https://git.kernel.org/linus/f1879e8a0c601de78a356016e216241b43de9208|commit]], [[https://git.kernel.org/linus/ab08be8dc96a217ad3ab7d6518bcad43444f78b3|commit]], [[https://git.kernel.org/linus/6aeec9a1a3222dc497066dfa63a0517e43493d77|commit]], [[https://git.kernel.org/linus/4b34f1d82c6549837b2061096dea249e881a4495|commit]], [[https://git.kernel.org/linus/c246d236b18befdfeb82ce2a01e23d45cb5eeea6|commit]], [[https://git.kernel.org/linus/bc617c990eae4259cd5014d596477cbe0d596417|commit]], [[https://git.kernel.org/linus/f7ad377a9222a3e873cd20fd6fccf1a6f7f1347e|commit]], [[https://git.kernel.org/linus/cda2504c51eba2364472de2d6fff4a7fb797d018|commit]], [[https://git.kernel.org/linus/78d6a12dd91a84b0d7e31110b1ea7f4b6a0f8d65|commit]], [[https://git.kernel.org/linus/2732acda82c93475c5986e1a5640004a5d4f9c3e|commit]], [[https://git.kernel.org/linus/de85024b34839e9c476b6f93c3104e920bd9d270|commit]], [[https://git.kernel.org/linus/f84b65b045f186b8fbaa32e090688ef3282b56c3|commit]], [[https://git.kernel.org/linus/270f095179ff15b7c72f25dd6720dcab3d15cc9b|commit]], [[https://git.kernel.org/linus/4984d746c80e888a89342d03e2b1ef20f804dff0|commit]], [[https://git.kernel.org/linus/e1c5c6be3ca7294f0d49d685e3ff929c7c496cbd|commit]], [[https://git.kernel.org/linus/d3852f9692b8a6af7566f92f7432ee5067c6be15|commit]], [[https://git.kernel.org/linus/50c7f34c5c7403a12003c6759f6f6ca9a5a10872|commit]] * khugepaged: fix dirty page handling for MADV_COLLAPSE [[https://lore.kernel.org/linux-trace-kernel/20260118190939.8986-2-shivankg@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/5173ae0a068d64643ccf4915b7cbedf82810a592|commit]], [[https://git.kernel.org/linus/398556570e32af82aa7654e730bcd655712ecf08|commit]] * Clean up anon_vma implementation [[https://lore.kernel.org/linux-kernel/cover.1768746221.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/542eda1a832947e0c44c9432972788587aaca95f|commit]], [[https://git.kernel.org/linus/91901a441fa19d56bdc2c45b76f4165585af773b|commit]], [[https://git.kernel.org/linus/69e945845585e415fe18afcddbca7cdd215ff3c7|commit]], [[https://git.kernel.org/linus/535f6b8df17d4350dc37b2635b52fa8ab964132c|commit]], [[https://git.kernel.org/linus/53eb797ffc3abe30418b19777922b55fb339fc1f|commit]], [[https://git.kernel.org/linus/7549e3d20f1aa9a0b8c77f83144dde54ed6ab4fe|commit]], [[https://git.kernel.org/linus/85f03a86318c4172bfda4484cdf588ebab5fa410|commit]], [[https://git.kernel.org/linus/bfc2b13b05a1343bb60a85d840fd8956731866c5|commit]], [[https://git.kernel.org/linus/d17f02417a337de0a0c6e763e938ee5e41a97c3d|commit]] * slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unsed slab space [[https://lore.kernel.org/linux-ext4/20260113061845.159790-1-harry.yoo@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/b85f369b81aed457acbea4ad3314218254a72fd2|commit]], [[https://git.kernel.org/linus/a13b68d79d5caa5ec0d34b4c0fb2dedf3259fc32|commit]], [[https://git.kernel.org/linus/43d9bb4236fd1dd2e4646bee7f556542eefa422a|commit]], [[https://git.kernel.org/linus/52f1ca8a459a73cf423a0b71b59f0b950e522cab|commit]], [[https://git.kernel.org/linus/7a8e71bc619d34c7607adef0e368d10421b7d4f6|commit]], [[https://git.kernel.org/linus/4b1530f89c28dfbc3ec10b0cb860ec11e4538dbe|commit]], [[https://git.kernel.org/linus/70089d018807506e8a6acd03eede33a0619ec417|commit]], [[https://git.kernel.org/linus/fab0694646d75d5b03e9898ffb85899fb23320ea|commit]], [[https://git.kernel.org/linus/a77d6d338685025cbf84f6e3abd92a8e59a4d894|commit]] * slab: Introduce kmalloc_obj() and family [[https://lore.kernel.org/linux-kernel/20251203233029.it.641-kees@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/2932ba8d9c99875b98c951d9d3fd6d651d35df3a|commit]], [[https://git.kernel.org/linus/070580b0b1740a4b930f367d21fdb5b253a8b3fb|commit]], [[https://git.kernel.org/linus/81cee9166a9073b4da28e970e75d7f89c98ed966|commit]], [[https://git.kernel.org/linus/e4c8b46b924eb8de66c6f0accc9cdd0c2e8fa23b|commit]], [[https://git.kernel.org/linus/bdc5071d7f7bb82589737741e9bf19820ceb7a6a|commit]] * Add and use vma_assert_stabilised() helper [[https://lore.kernel.org/linux-kernel/cover.1769198904.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/25faccd69977d9a72739fd425040c2a1c2d67e46|commit]], [[https://git.kernel.org/linus/ef4c0cea1e15dc6b1b5b9bb72fa4605b14f2125e|commit]], [[https://git.kernel.org/linus/180355d4cfbd25f370e2e0912877a36aa350ff64|commit]], [[https://git.kernel.org/linus/1f2e7efc3ee9b32095d5a331d1f8672623f311bf|commit]], [[https://git.kernel.org/linus/e5aeb75dc4049d92f6ad0da23cc6b22ffcbb9d39|commit]], [[https://git.kernel.org/linus/28f590f35da8435f75e2aee51431c6c1b8d91f54|commit]], [[https://git.kernel.org/linus/e28e575af956c4c3089b443e87be91a6ff7af355|commit]], [[https://git.kernel.org/linus/22f7639f2f030e58cb55ad8438c77dfcea951fc3|commit]], [[https://git.kernel.org/linus/256c11937de0039253ee36ed7d1cabc852beae54|commit]], [[https://git.kernel.org/linus/17fd82c3abe03c1e202959bb1a7c4ab448b36bef|commit]] * vmscan: mitigate spurious kswapd_failures reset and add tracepoints [[https://lore.kernel.org/linux-kernel/20260120024402.387576-1-jiayuan.chen@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/dc9fe9b7056a44ad65715def880e7d91d32c047f|commit]], [[https://git.kernel.org/linus/a45088376d8a847a5e3b1982fcfceb41644e3b1d|commit]] * hugetlb: allocate frozen gigantic folio, cleans up the allocation of frozen folios and avoids some atomic refcount operations [[https://git.kernel.org/linus/01152bd2e44d6bcecd3573d653221ba3944ed0f1|commit]], [[https://git.kernel.org/linus/a9deb800b89efb2050453f7178e73b1d8b124e0f|commit]], [[https://git.kernel.org/linus/6c08cc64d194dc5cc3dfc785517098d3b161c05f|commit]], [[https://git.kernel.org/linus/e0c1326779cc1b8e3a9e30ae273b89202ed4c82c|commit]], [[https://git.kernel.org/linus/9bda131c6093e9c4a8739e2eeb65ba4d5fbefc2f|commit]], [[https://git.kernel.org/linus/14f270761d3374db24c84630f2aa7a3c732fed4a|commit]] * Fix oom killer inaccuracy on large many-core systems [[https://lore.kernel.org/linux-kernel/20260112200056.1250404-1-mathieu.desnoyers@efficios.com/T/|(cover)]], [[https://git.kernel.org/linus/5898aa8f9a0b42fe1f65c7364010ab15ec5c38bf|commit]] * Add clearing of contiguous page ranges for hugepages. Large improvements during demand faulting are demonstrated [[https://lore.kernel.org/linux-kernel/20260107072009.1615991-1-ankur.a.arora@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/8e38607aa4aa8ee7ad4058d183465d248d04dca4|commit]], [[https://git.kernel.org/linus/62a9f5a85b98d6d2d9b5e0d67b2d4e5903bc53ec|commit]], [[https://git.kernel.org/linus/8d846b723e5723d98d859df9feeab89c2c889fb2|commit]], [[https://git.kernel.org/linus/54a6b89a3db2ecb4462abcd6e6e52dfebaa7e6c4|commit]], [[https://git.kernel.org/linus/cb431accb36e51b64ce34b5cc4d5ed292895fd84|commit]], [[https://git.kernel.org/linus/9890ecab6ad9c0d3d342469f3b619fd704b5c59a|commit]], [[https://git.kernel.org/linus/94962b2628e6af2c48be6ebdf9f76add28d60ecc|commit]], [[https://git.kernel.org/linus/93552c9a3350fff06543da18e4c80d3e804191ca|commit]] * kfuncs to access memcg data [[https://lore.kernel.org/bpf/20251223044156.208250-1-roman.gushchin@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/4221de8c410e7adb1114a4374c78fa4269175343|commit]], [[https://git.kernel.org/linus/5904db9891f80f84283648121e2d8c8a506296a8|commit]], [[https://git.kernel.org/linus/5c7db3239c9fbe3c62cb0d89b64959ea23af2de9|commit]], [[https://git.kernel.org/linus/99430ab8b804c26b8a0dec93fcbfe75469f3edc7|commit]], [[https://git.kernel.org/linus/6bce6ddbe634bbc6d21672b5bfdbb5ad0409bd8d|commit]], [[https://git.kernel.org/linus/6e57cdde70c10f4654356cc45467ebce0a5c3f88|commit]] * Nesting support for lazy mmu mode [[https://lore.kernel.org/linux-kernel/20251215150323.2218608-1-kevin.brodsky@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/58852f24f9566602340130804bf7f4474a3f5f2a|commit]], [[https://git.kernel.org/linus/66bdd779d3441329d0c55af1b679d97e10e7dfde|commit]], [[https://git.kernel.org/linus/c3f0778ffeca271b3b221fcdec66784c1eb9440d|commit]], [[https://git.kernel.org/linus/442bf488b9e876712c4c86783c3b6818c4042f26|commit]], [[https://git.kernel.org/linus/f2be745071ffd6793c032ca8443348c3ce0e3e18|commit]], [[https://git.kernel.org/linus/7303ecbfe4f46c00191b9b66acaa918784bad210|commit]], [[https://git.kernel.org/linus/0a096ab7a3a6e2859c3c88988e548c5c213138bc|commit]], [[https://git.kernel.org/linus/9273dfaeaca8ea4d88c7e9fd081922a029984fd4|commit]], [[https://git.kernel.org/linus/5ab246749569cff9f815618f02ba0d7cf20e5edd|commit]], [[https://git.kernel.org/linus/4dd9b4d7a8d5537b982a6b35a6309c0517fc3da3|commit]], [[https://git.kernel.org/linus/313a05a15a1b29c29c7eb4ae8cf44a7cf0fcf419|commit]], [[https://git.kernel.org/linus/dacd24ec4965d92cd5ef338c2b86d5e7e3722bed|commit]], [[https://git.kernel.org/linus/291b3abed657cb3c485cce7753e0913dc408cf85|commit]], [[https://git.kernel.org/linus/ee628d9cc8d5b96fdceeb270cf662efc4f85f2b6|commit]] * hugetlb: optimize replace_free_hugepage_folios() [[https://git.kernel.org/linus/5a74b9f1dc3d75635ca8918e53664d5d2ee0fff5|commit]] * Allow migration of smaller hugepages during contig_alloc [[https://git.kernel.org/linus/3bb64898f00368cd110d4b31334f93251d56b404|commit]] * Asdf [[https://lore.kernel.org/linux-kernel/20251203233029.it.641-kees@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/2932ba8d9c99875b98c951d9d3fd6d651d35df3a|commit]], [[https://git.kernel.org/linus/070580b0b1740a4b930f367d21fdb5b253a8b3fb|commit]], [[https://git.kernel.org/linus/81cee9166a9073b4da28e970e75d7f89c98ed966|commit]], [[https://git.kernel.org/linus/e4c8b46b924eb8de66c6f0accc9cdd0c2e8fa23b|commit]], [[https://git.kernel.org/linus/bdc5071d7f7bb82589737741e9bf19820ceb7a6a|commit]] * Replace cpu (partial) slabs with sheaves [[https://lore.kernel.org/linux-kernel/20260123-sheaves-for-all-v4-0-041323d506f7@suse.cz/T/|(cover)]], [[https://git.kernel.org/linus/b55b423e8518361124ff0a9e15df431b3682ee4f|commit]], [[https://git.kernel.org/linus/f8b4cd2dad097e4ea5aed3511f42b9eb771e7b19|commit]], [[https://git.kernel.org/linus/b26e52c523ea871ef1cae6e3955418cfffe2117f|commit]], [[https://git.kernel.org/linus/8598351edc42f38d2a1eaed9abca39c98e7b0bbf|commit]], [[https://git.kernel.org/linus/aff8518575715b8b902d64a4ad8dfa3e33381efa|commit]], [[https://git.kernel.org/linus/e47c897a29491ade20b27612fdd3107c39a07357|commit]], [[https://git.kernel.org/linus/f3421f8d154cc0906da145299c72f4a7f046ffde|commit]], [[https://git.kernel.org/linus/f1427a1d64156bb88d84f364855c364af6f67a3b|commit]], [[https://git.kernel.org/linus/913ffd3a1bf5d154995c6cfab44994b07b3c103f|commit]], [[https://git.kernel.org/linus/ed30c4adfc2b56909ca43fb5e4750a646928cbf4|commit]], [[https://git.kernel.org/linus/17c38c88294d75506c67cae378c9e940d1ce55e3|commit]], [[https://git.kernel.org/linus/e323b52cf00ffc3f5ac79420af7ab340b4576a5c|commit]], [[https://git.kernel.org/linus/bdc9282f7809678db34e3d7e094b267a6bdd9dac|commit]], [[https://git.kernel.org/linus/ab2f752ac31c0a9e0a38d3dec1ec5d8c5f65f4da|commit]], [[https://git.kernel.org/linus/073d5f156292201f1e49263a62dfa182eeee273f|commit]], [[https://git.kernel.org/linus/32c894c7274b7ce901041ce6dceeca3ec1152205|commit]], [[https://git.kernel.org/linus/6c2f307f30edbe2b18a35584f01854a27e375927|commit]], [[https://git.kernel.org/linus/46dea1744498a5b8864e21d0b769fd072a4e64bc|commit]], [[https://git.kernel.org/linus/0f7075bea8da3b01898712cfec49dd9a2f09be2f|commit]], [[https://git.kernel.org/linus/b16af1c81277dceb96812305b471296af9adf5d0|commit]], [[https://git.kernel.org/linus/fb016a5ec70ea9c734bde73ef9e3e82e201f5ab5|commit]], [[https://git.kernel.org/linus/6f1912181ddfcf851a6670b4fa9c7dfdaf3ed46d|commit]] * Accelerate gigantic folio allocation, greatly speeds up gigantic folio allocation [[https://git.kernel.org/linus/9a8e0c31b3121df8ed193437b59969adabc7e721|commit]], [[https://git.kernel.org/linus/5a74b9f1dc3d75635ca8918e53664d5d2ee0fff5|commit]], [[https://git.kernel.org/linus/d925730734e9e936146b7ba691aa02f1b60f2c61|commit]] * damon * lru_sort: add monitoring intervals auto-tuning parameter [[https://lore.kernel.org/linux-kernel/20260113152717.70459-11-sj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/ed581147a417940857eeea609229de0f5de5617f|commit]] * implement max_nr_snapshots [[https://git.kernel.org/linus/84e425c68e6061751adecd2d328789e4f67eac1e|commit]] * introduce [in]active memory ratio damos quota goal metric [[https://git.kernel.org/linus/4835e2871321fd9cf5bc9702dded323e3e3fbc1a|commit]] * introduce nr_snapshots damos stat [[https://git.kernel.org/linus/4a6ceb7c9744c69546d4ca43b7bd308f4db0927b|commit]] * lru_sort: add monitoring intervals auto-tuning parameter [[https://git.kernel.org/linus/4bdd692291275eaaabe993e1c4a7b5b01cd6dc37|commit]] * lru_sort: support active:inactive memory ratio based auto-tuning [[https://git.kernel.org/linus/40d98d31cd7060228e03303c5c34ae7101020416|commit]] * lru_sort: support young page filters [[https://git.kernel.org/linus/303dbb1f08cfe844d095fe008bd4d04e89d447f1|commit]] * sysfs-schemes: implement max_nr_snapshots file [[https://git.kernel.org/linus/204ab9ab9310cd79c710037992e6ad681c8fa6b9|commit]] * sysfs-schemes: introduce nr_snapshots damos stat file [[https://git.kernel.org/linus/83a741b9742505bda70e6cd82dc5cb32baf5e16c|commit]] * sysfs-schemes: support DAMOS_QUOTA_[IN]ACTIVE_MEM_BP [[https://git.kernel.org/linus/fbec8a1e4fa4daf2611c9a3e3b29d03a73acbd0c|commit]] * dma-buf: Remove DMA-BUF sysfs stats [[https://git.kernel.org/linus/ab4c3dcf9a71582503b4fb25aeab884c696cab25|commit]] * Convert 'alloc_flex' family to use the new default gfp_kernel argument [[https://git.kernel.org/linus/323bbfcf1ef8836d0d2ad9e2c1f1c684f0e3b5b3|commit]] * Convert 'alloc_obj' family to use the new default gfp_kernel argument [[https://lore.kernel.org/linux-xfs/177249638330.457970.1851487051288611819.stgit@frogsfrogsfrogs/T/|(cover)]], [[https://git.kernel.org/linus/a49b7ff63f98ba1c4503869c568c99ecffa478f2|commit]], [[https://git.kernel.org/linus/fd81d3fd01a5ee4bd26a7dc440e7a2209277d14b|commit]], [[https://git.kernel.org/linus/47553dd60b1da88df2354f841a4f71dd4de6478a|commit]], [[https://git.kernel.org/linus/ac1d977096a17d56c55bd7f90be48e81ac4cec3f|commit]], [[https://git.kernel.org/linus/e97cbf863d8918452c9f81bebdade8d04e2e7b60|commit]], [[https://git.kernel.org/linus/650b774cf94495465d6a38c31bb1a6ce697b6b37|commit]] * Convert more 'alloc_obj' cases to default gfp_kernel arguments [[https://git.kernel.org/linus/32a92f8c89326985e05dce8b22d3f0aa07a3e1bd|commit]] = Block layer = * Bounce buffer direct I/O when stable pages are required [[https://git.kernel.org/linus/fa0bdd45d7e3703826ea75f5fe3359865d75c319|commit]], [[https://git.kernel.org/linus/4d77007d42fd4f44c2f5a1555603df53e16a1362|commit]], [[https://git.kernel.org/linus/12da89e8844ae16e86b75a32b34a4f0b0525f453|commit]], [[https://git.kernel.org/linus/91b73c458182801a8c9cf6135335e064567d1013|commit]], [[https://git.kernel.org/linus/301f5356521ed90f72a67797156d75093aac786f|commit]], [[https://git.kernel.org/linus/8dd5e7c75d7bb2635c7efd219ff20693fc24096a|commit]], [[https://git.kernel.org/linus/4ad357e39b2ecd5da7bcc7e840ee24d179593cd5|commit]], [[https://git.kernel.org/linus/6e7a6c80198ead08b11aa6cdc92e60a42fc5895f|commit]], [[https://git.kernel.org/linus/2631c94602297090febd8f93d6f96d9d2045466d|commit]], [[https://git.kernel.org/linus/e2fcff5bb4c48bf602082e5a1428ff7328f7558f|commit]], [[https://git.kernel.org/linus/45cec0de6c8973660da279e44b24d37af49daeb6|commit]], [[https://git.kernel.org/linus/c96b8b220271024c04289d6d9779dc2ccbd12be2|commit]], [[https://git.kernel.org/linus/d969bd72cf6835a4c915b326feb92c7597a46d98|commit]], [[https://git.kernel.org/linus/c9d114846b380fec1093b7bca91ee5a8cd7b575d|commit]], [[https://git.kernel.org/linus/3373503df025ab6c9a8ad2ce6b7febd2eb3c99dc|commit]] * Remove laptop_mode [[https://git.kernel.org/linus/64dd89ae01f2708a508e028c28b7906e4702a9a7|commit]] * blk-mq: introduce new queue attribute async_depth [[https://lore.kernel.org/lkml/20260203081952.732210-1-yukuai@fnnas.com/T/|(cover)]], [[https://git.kernel.org/linus/9fc7900b14727d39457bd3724f26e6e3faca3efd|commit]], [[https://git.kernel.org/linus/1db61b0afdd7e8aa9289c423fdff002603b520b5|commit]], [[https://git.kernel.org/linus/cf02d7d41b064af3e2c3a3a1ea9042a5b565b0d8|commit]], [[https://git.kernel.org/linus/f98afe4f31bb8b07fea318606c08030c2049587e|commit]], [[https://git.kernel.org/linus/8cbe62f4d8c37b74947569c7b874848f39f09a22|commit]], [[https://git.kernel.org/linus/988bb1b9ededab9aed83df8c1f5be0232b71ded3|commit]], [[https://git.kernel.org/linus/2110858c5178176d0d535b7762b20cb9c0d03146|commit]], [[https://git.kernel.org/linus/2c04718edcd5e1ac8fed9a0f8d0620e8bc94014d|commit]] * Allow {{{IOC_PR_READ_*}}} ioctls with {{{BLK_OPEN_READ}}} [[https://git.kernel.org/linus/5b88af7113feba2f0ae3402bb57cb5c94eea7dc3|commit]] * ublk * introduce {{{UBLK_CMD_TRY_STOP_DEV}}} [[https://lore.kernel.org/linux-block/20260112220502.9141-1-yoav@nvidia.com//|(cover)]], [[https://git.kernel.org/linus/9e386f49fa269298490b303c423c6af4645f184e|commit]], [[https://git.kernel.org/linus/93ada1b3da398b492c45429cef1a1c9651d5c7ba|commit]], [[https://git.kernel.org/linus/65955a0993a0a9536263fea2eaae8aed496dcc9c|commit]] * misc improvement in driver [[https://lore.kernel.org/linux-block/20260129162001.3532311-1-ming.lei@redhat.com//|(cover)]], [[https://git.kernel.org/linus/66d3af8d5d678d221776a1886baec8d78293592c|commit]], [[https://git.kernel.org/linus/8443e2087e7002fa25984faad6bbf5f63b280645|commit]], [[https://git.kernel.org/linus/3a4d8bed0b47543b2dfce0b1d714b40d68ff2f7e|commit]], [[https://git.kernel.org/linus/e07a2039b6d4ae3acf8ae39b86be449b7fa18d4a|commit]], [[https://git.kernel.org/linus/7a30d3dfea4a455d1109d5258fe332f2157071ba|commit]], [[https://git.kernel.org/linus/130975353b1548d76aa9790a4ac7e74bd2a37221|commit]], [[https://git.kernel.org/linus/76334de7da404c385e18efb3640ed60ca77a899f|commit]], [[https://git.kernel.org/linus/4e0d293af9e37c735aec574c1e69ed71f81f94b2|commit]], [[https://git.kernel.org/linus/2feca79ef8df5505b87c00812b9ba263b92c64ed|commit]] * add {{{UBLK_F_BATCH_IO}}} [[https://lore.kernel.org/linux-block/20260116141859.719929-1-ming.lei@redhat.com/|(cover)]], [[https://git.kernel.org/linus/fb027d569422efcf1b367441f782fb425a4b5569|commit]], [[https://git.kernel.org/linus/7ba62f5969defbab7df47c0016ffd4dedf30950a|commit]], [[https://git.kernel.org/linus/e86f89ab24f5ec595879a01eebb5df84f5ed6d2b|commit]], [[https://git.kernel.org/linus/b256795b3606e9a67c725dde8eaae91dd9d21de4|commit]], [[https://git.kernel.org/linus/1e500e106d5a82280db59dba06f0108085beba65|commit]], [[https://git.kernel.org/linus/f1f99ddf607a4b54dc19d92fb07f2a30c131ee56|commit]], [[https://git.kernel.org/linus/7a1bb41947cee3aa50fa9b276e9aeb6caa87b543|commit]], [[https://git.kernel.org/linus/a4d88375539920b7401ead59d2f944ac23c668ea|commit]], [[https://git.kernel.org/linus/3ac4796b888a2574cb982c89076ed717f122289d|commit]], [[https://git.kernel.org/linus/29d0a927f9efd5f87ac8a2d291d2782384d1bee2|commit]], [[https://git.kernel.org/linus/e2723e6ce6025026b6d79d9a00048386a69e00c3|commit]], [[https://git.kernel.org/linus/4d8fd7c5592acc2cc89b1759fb01171478c9ee5f|commit]], [[https://git.kernel.org/linus/7aa78d4a3c9c30d15c0107fb652b22376aaacce6|commit]], [[https://git.kernel.org/linus/3f3850785594e323c5adc6b19ef5907419d3159f|commit]], [[https://git.kernel.org/linus/caf84294ff98bb7455722285f30f46c193ffccdd|commit]], [[https://git.kernel.org/linus/584709ad5ce359f8b5773eb6af40070412652c51|commit]], [[https://git.kernel.org/linus/f1d621b5a04ea41ee90f177db084d00db57e6839|commit]], [[https://git.kernel.org/linus/dccbfa9d416424fbcbc83a46e84c604bad1db9d0|commit]], [[https://git.kernel.org/linus/d468930a019df71951a80fde20f6348136a2175d|commit]], [[https://git.kernel.org/linus/dee7024ffecba291891503e425373d9f2a1d01b6|commit]], [[https://git.kernel.org/linus/cb5a6b308700c65c29baccbb6b9b07f306633ad5|commit]], [[https://git.kernel.org/linus/4968fb7cc60676040258c8867f22931c8735126f|commit]], [[https://git.kernel.org/linus/20aeab0b08a175d9ceb4ad327f55ba5c29a79888|commit]], [[https://git.kernel.org/linus/e8cd481cc665d5db8e918e84740db22bc213059e|commit]] * Add support for integrity data [[https://lore.kernel.org/linux-block/20260108091948.1099139-1-csander@purestorage.com/T/|(cover)]], [[https://git.kernel.org/linus/835042fb1971b1cc6acb46d53b8862643fd7d0a8|commit]], [[https://git.kernel.org/linus/e859e7c26a5c4689083f161a52d039b9b454e403|commit]], [[https://git.kernel.org/linus/98bf2256855eb682433a33e6a7c4bce35191ca99|commit]], [[https://git.kernel.org/linus/f82f0a16a8270b17211254beeb123d11a0f279cd|commit]], [[https://git.kernel.org/linus/fc652d415cd8b45e9a534d1c019da175cca4c95a|commit]], [[https://git.kernel.org/linus/5bfbbc9938f5dee7f252ef05f47b9a26f05f281a|commit]], [[https://git.kernel.org/linus/ca80afd8708fa22f6d3a1e0306ae12a64e5291b5|commit]], [[https://git.kernel.org/linus/fd5a005fa6a261762292a2d89ef8d0174b66f541|commit]], [[https://git.kernel.org/linus/be82a89066d595da334f6e153ababcedc3f92ad6|commit]], [[https://git.kernel.org/linus/b2503e936b598b993cb09005194dc77d2fa3f082|commit]], [[https://git.kernel.org/linus/bfe1255712a3b1c1f7418c5504a1bf53735d3848|commit]], [[https://git.kernel.org/linus/c1d7c0f9cdf6690eff4518f1c17a37d5ee647cd1|commit]], [[https://git.kernel.org/linus/261b67f4e34716e793b0b95d2722b2fe780ed5f4|commit]], [[https://git.kernel.org/linus/6ed6476c4aefa9ee3ba90f39bcc002dd034f6e03|commit]], [[https://git.kernel.org/linus/24f8a44b797f03dfadb455138930523599d3c22a|commit]], [[https://git.kernel.org/linus/a1805442674b85ff9d626965f828e4fd71a82b28|commit]], [[https://git.kernel.org/linus/f48250dc5ba8368ccb587093eb20d1c7baecaacf|commit]], [[https://git.kernel.org/linus/9e9f635525b12f055558a7cfe2e54d109839d030|commit]], [[https://git.kernel.org/linus/78796b6bae8684b753b658f431b5b1ee24300d64|commit]] * zram: Introduce compressed data writeback [[https://lore.kernel.org/linux-kernel/20251201094754.4149975-1-senozhatsky@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/d38fab605c66778a8ddfbe2ac66c3a3eb7b2295a|commit]], [[https://git.kernel.org/linus/4c1d61389e8e4307449eb2ebad997241cbf08fef|commit]], [[https://git.kernel.org/linus/2502673aed6c66befc7efc2dc008e2a8a50508cd|commit]], [[https://git.kernel.org/linus/910bbb441c004050e188dd8da5071054099e592c|commit]], [[https://git.kernel.org/linus/7ad688c0cdc46d01fc46f6d226813715542c531e|commit]], [[https://git.kernel.org/linus/0d38260c2a11de147f0c4701b344fdfa6bcdd04c|commit]], [[https://git.kernel.org/linus/0327a862135b0b0b5e67f1434468326b733562bf|commit]] * dm-verity: add dm-verity keyring [[https://git.kernel.org/linus/033724b1c627885aed049f775e4b10583d895af6|commit]] = Tracing, perf and BPF = * BPF * Align atomic storage [[https://git.kernel.org/linus/3bb83c910971c47989aa439849265600fa67b42a|commit]], [[https://git.kernel.org/linus/e428b013d9dff30f7a65509e33047ba975cce8ba|commit]], [[https://git.kernel.org/linus/80047d84eed25e9c92cfb9169980a0dfec110246|commit]] * fsession support [[https://lore.kernel.org/bpf/20260124062008.8657-1-dongml2@chinatelecom.cn/T/|(cover)]], [[https://git.kernel.org/linus/2d419c44658f75e7655794341a95c0687830f3df|commit]], [[https://git.kernel.org/linus/f1b56b3cbdb2d2a51d8ea91008eddf4d1d9f277b|commit]], [[https://git.kernel.org/linus/8fe4dc4f6456b3d2c9e6f8aeb1f978b7bff0f6c8|commit]], [[https://git.kernel.org/linus/27d89baa6da8e5e546585c53a959176d1302d46e|commit]], [[https://git.kernel.org/linus/eeee4239dbb155a98f8ba737324ac081acde8417|commit]], [[https://git.kernel.org/linus/37c7ba1b39c493229d1b3c1f6ab466a23362e21e|commit]], [[https://git.kernel.org/linus/98770bd4e6df50db81cbdf5876f8836baefa3005|commit]], [[https://git.kernel.org/linus/257c43688b143fd9805cdfef9d2623dde92989e6|commit]], [[https://git.kernel.org/linus/85fc4be6d811372f8f9a2a131a092735418fdbf2|commit]], [[https://git.kernel.org/linus/f7afef5617b685c3491db3593ca09abc33815774|commit]], [[https://git.kernel.org/linus/a5533a6eaa5b602fe54e53d85f787e09eab4e771|commit]], [[https://git.kernel.org/linus/8909b3fb23e245f8ade903dfcfcc43522cf28a56|commit]], [[https://git.kernel.org/linus/cb4bfacfb0110aa1b10ab60c64a3df0e176998c5|commit]] * resolve_btfids: Support for BTF modifications [[https://lore.kernel.org/bpf/20251219181321.1283664-1-ihor.solodrai@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/c1c7d61746f42154bad30bc4adb88f5374969408|commit]], [[https://git.kernel.org/linus/5f347a0f781a36927a547904dde4c4dac343010b|commit]], [[https://git.kernel.org/linus/a4fa885bd52d1711994ad1ef99e989977cd15698|commit]], [[https://git.kernel.org/linus/fb348d4fdf5ec08aea8b1f686136584f758e4364|commit]], [[https://git.kernel.org/linus/90e5b38a26529391da2d851a9cc5eb9de2ec35ca|commit]], [[https://git.kernel.org/linus/903922cfa0e60573234ff895974c23a000035258|commit]], [[https://git.kernel.org/linus/014e1cdb5fad8c6034feb3a97468a91edf23d3d0|commit]], [[https://git.kernel.org/linus/522397d05e7d4a7c30b91841492360336b24f833|commit]] * Improve the performance of btf type lookups with binary search [[https://lore.kernel.org/linux-kernel/20260109130003.3313716-1-dolinux.peng@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/6fbf129c49905e9e34801b362c9c30ae383d7a90|commit]], [[https://git.kernel.org/linus/a3acd7d43462a7f7429301afad3c0059276f427e|commit]], [[https://git.kernel.org/linus/230e7d7de5a8d2bcda2a5cdcc8c176c09a63e331|commit]], [[https://git.kernel.org/linus/d836e5e64992363b5fa9b121f1ab4a1a1b89162d|commit]], [[https://git.kernel.org/linus/33ecca574f1c27cbf560aee9c1b3045dcb9f8de5|commit]], [[https://git.kernel.org/linus/8c3070e159ba00424f0389ead694cacd85af260e|commit]], [[https://git.kernel.org/linus/342bf525ba0d83374f318e19186d50b1e7160d0e|commit]], [[https://git.kernel.org/linus/dc893cfa390aa9d5fc83c908ea5e37a36e531892|commit]], [[https://git.kernel.org/linus/434bcbc837a69baa2720b2ae5baba8b6e36898c0|commit]], [[https://git.kernel.org/linus/9282a42a1fe16c61a253293af439d6fecd8b5b6c|commit]] * Introduce bpf_f_cpu and bpf_f_all_cpus flags for percpu maps [[https://lore.kernel.org/bpf/20260107022022.12843-1-leon.hwang@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/2b421662c7887a0649fe409155a1f101562d0fa9|commit]], [[https://git.kernel.org/linus/8eb76cb03f0f6c2bd7b15cf45dcffcd6bd07a360|commit]], [[https://git.kernel.org/linus/c6936161fd55d0c6ffde01da726e66ff5f2934e8|commit]], [[https://git.kernel.org/linus/8526397c3caf8d0289bab69bfb2c889e2b39b30a|commit]], [[https://git.kernel.org/linus/47c79f05aa0d289f760caf5ad6521fd8dbae37a1|commit]], [[https://git.kernel.org/linus/2546863b4a723c96f55af7127827d62632cfbc9c|commit]], [[https://git.kernel.org/linus/07bf7aa58e5e7fb27b8addcc33052400a7d9ce32|commit]] * Allow sleepable programs to use tail calls [[https://git.kernel.org/linus/0f0c332992b8a5d2ae7b611b94c4e02ef8d54b97|commit]] * Add bpf_stream_print_stack stack dumping kfunc [[https://git.kernel.org/linus/63328bb23f2693fe36e8bcdb972c6040e84d16e4|commit]] * Add kfunc bpf_strncasecmp() [[https://lore.kernel.org/bpf/20260121033328.1850010-1-ishiyama@hpc.is.uec.ac.jp/T/|(cover)]], [[https://git.kernel.org/linus/1dc669646762726d59be15e2de354b06e3e0cbcf|commit]], [[https://git.kernel.org/linus/f4924ad0b13fd4ca4f0c7117dc143bf372224aec|commit]] * Avoid locks in bpf_timer and bpf_wq [[https://lore.kernel.org/bpf/20260127-timer_nolock-v8-0-5a29a9571059@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/19bd300e22c2be7df838fc4ea41b4e20ccd5c20f|commit]], [[https://git.kernel.org/linus/a7e172aa4ca276d12fe87ffddff9cbd2d95ea51c|commit]], [[https://git.kernel.org/linus/10653c0dd86812981a9cf7112f0711f9f1f153a8|commit]], [[https://git.kernel.org/linus/d02fdd7195ca24005e36a6f7efed41f9c0ca7f72|commit]], [[https://git.kernel.org/linus/fe9d205cec8ccdd13171a056257101374306e802|commit]], [[https://git.kernel.org/linus/083c5a4babad4af89dd07e2cc5f7004343d4c1f0|commit]], [[https://git.kernel.org/linus/3f7a8415209eeca4b1fda2a57f9d7ec49413e2eb|commit]] * Support associating bpf programs with struct_ops [[https://lore.kernel.org/bpf/20251203233748.668365-1-ameryhung@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/1588c81b9f215170bd596984691eda2f05a84a1f|commit]], [[https://git.kernel.org/linus/b5709f6d26d65f6bb9711f4b5f98469fd507cb5b|commit]], [[https://git.kernel.org/linus/87cd177b149a5d86103736994307c25999e0be4b|commit]], [[https://git.kernel.org/linus/33a165f9c2c1b9ddceaaccc356ce841baf1a08a2|commit]], [[https://git.kernel.org/linus/04fd12df4e05dd6fd3017b637f6fbc9da10b4e65|commit]], [[https://git.kernel.org/linus/0e841d19263ab6e1ca2b280109832f57624e48d1|commit]] * Kernel functions with kf_implicit_args [[https://lore.kernel.org/bpf/20260120222638.3976562-1-ihor.solodrai@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/ea073d1818e228440275cc90047b4ef0fddd6eb5|commit]], [[https://git.kernel.org/linus/08ca87d6324350a7abf5f05db5b63df9420dd29d|commit]], [[https://git.kernel.org/linus/64e1360524b9ef5835714669b5876e122a23e6fc|commit]], [[https://git.kernel.org/linus/2583e81fd8852e6cf6730c4463b6580deb7a8aad|commit]], [[https://git.kernel.org/linus/9d199965990c0b21160c565076b93725d6638c28|commit]], [[https://git.kernel.org/linus/e939f3d16d77a88e5f363394ef73db4c898c4107|commit]], [[https://git.kernel.org/linus/b97931a25a4bc74076ffb5c3d1a534c71ade4d55|commit]], [[https://git.kernel.org/linus/8157cc739ad301b7fb6dfc4cfc5497cedd33df4e|commit]], [[https://git.kernel.org/linus/6e663ffdf7600168338fdfa2fd1eed83395d58a3|commit]], [[https://git.kernel.org/linus/d806f3101276a1ed18d963944580e1ee1c7a3d26|commit]], [[https://git.kernel.org/linus/bd06b977e02d80fe0dec303cc219d007121a4526|commit]], [[https://git.kernel.org/linus/aed57a36387135bcb73f01bac3d0a286a657b006|commit]], [[https://git.kernel.org/linus/74bc4f6127207624ec06f0d0984b280a390992aa|commit]] * Add new BPF_CGROUP_ITER_CHILDREN control option [[https://git.kernel.org/linus/752b807028e63f1473b84eb1350e131eca5e5249|commit]], [[https://git.kernel.org/linus/1456ebb291ddee67c9144c8f7f38a6dddcd32ed7|commit]] * Allow calling kfuncs from raw_tp programs [[https://lore.kernel.org/bpf/20251222133250.1890587-1-puranjay@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/342297d51146b1a3184e53925901a0cc282b3f76|commit]], [[https://git.kernel.org/linus/83dd46ecb68ecc03cff23e68490ded5d40d79f66|commit]] * Remove kf_sleepable from arena kfuncs [[https://lore.kernel.org/bpf/20251222195022.431211-1-puranjay@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/c336b0b327120052c331f6839ee60069065a7c74|commit]], [[https://git.kernel.org/linus/360c35f8ffae0f184805d9eb7d126474345bac9b|commit]], [[https://git.kernel.org/linus/b8467290edab4bafae352bf3f317055669a1a458|commit]], [[https://git.kernel.org/linus/efecc9e825f4aa3fe616236152604a066a3e776d|commit]] * Support bpf_get_func_arg() for bpf_trace_raw_tp [[https://lore.kernel.org/bpf/20260121044348.113201-1-dongml2@chinatelecom.cn/T/|(cover)]], [[https://git.kernel.org/linus/85c7f914714741de992fc19c2ba673f6c400a584|commit]], [[https://git.kernel.org/linus/1ed797764315496a115cd0568450a7f72da80df6|commit]] * perf * perf sched: Introduce stats tool [[https://lore.kernel.org/linux-kernel/20260119175833.340369-1-swapnil.sapkal@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/cb68cba4453d3e021b27c2a08fcefdd1376a5ef0|commit]], [[https://git.kernel.org/linus/d40c68a49f69c9bdb4ca14b3e6a0422bbaeb5d8f|commit]], [[https://git.kernel.org/linus/c3030995f23b3d35f94b9bc4375706ec5916fd55|commit]], [[https://git.kernel.org/linus/55657d7ac8caa98c7c0ef241bf64e176db899b4d|commit]], [[https://git.kernel.org/linus/805da27252a290984782abfdb313a78e7c157369|commit]], [[https://git.kernel.org/linus/5a357ae6ad63fd101a4f20d081f8893b51cc0790|commit]], [[https://git.kernel.org/linus/00093b3133984ffe80697b5d2e7f204983660dd9|commit]], [[https://git.kernel.org/linus/064790a3d4a89536d00a61d7a02de67ad319bdc5|commit]], [[https://git.kernel.org/linus/800af362d68945e589f73cda429d04bfe4287feb|commit]] * Perf stat affinity changes [[https://lore.kernel.org/linux-kernel/20260210060359.2233425-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/bc105a8918fd8458ec3a5b947018b0f8059da529|commit]], [[https://git.kernel.org/linus/63b320aaac08ba267268ec21a195ce3c82dcb8ab|commit]], [[https://git.kernel.org/linus/ff8548172f63288b5c2b0fda5a4a4be294f610f1|commit]], [[https://git.kernel.org/linus/47172912c9933103bc2c68627b1dafd9058d035e|commit]], [[https://git.kernel.org/linus/d484361550ebdc4da77ea16f6cb08badde33e799|commit]], [[https://git.kernel.org/linus/5d1ab659fb93eed85d6d8b2937013360157032f4|commit]] * perf tools: Get debug info of DSO properly [[https://git.kernel.org/linus/069e603d8248dac98b1ef2909e2f1c4169b9da11|commit]] * perf genelf: BLAKE2s build ID generation [[https://lore.kernel.org/linux-crypto/20251209015729.23253-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/8d3b6649499edd85e88b763e77bbce2ab016eb47|commit]], [[https://git.kernel.org/linus/f136fc491b2a48dbfcb98cac372303dc0e18f0c1|commit]], [[https://git.kernel.org/linus/e35dd81017011be0fb0cbb2ae80a6bc24962f0f7|commit]] * perf data: Allow filtering conversion by time range [[https://git.kernel.org/linus/8e746e95c3e4eb56ae261feb9ae261bce1f96947|commit]] * perf inject: Add {{{--convert-callchain}}} option [[https://git.kernel.org/linus/92ea788d2af4e65ad7a144ccfff50667e9a0d227|commit]], [[https://git.kernel.org/linus/b42c4dfe02af407d04375f070f56a818ed4c92ce|commit]] * Perf cross platform KVM support [[https://lore.kernel.org/linux-kernel/20260203182640.3911987-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/ceea279f93760767c0e654341829334a1c881a08|commit]], [[https://git.kernel.org/linus/43af548436775557b79aee32b30e4f020d51fbe6|commit]], [[https://git.kernel.org/linus/07ad6f31b6745caab701ebd5d914217cd10f5b7a|commit]], [[https://git.kernel.org/linus/c4f4392264b45d53ec6e4d21b6f7d947953ddf45|commit]], [[https://git.kernel.org/linus/84cb36da81413c2dff805150b9f4db1524460269|commit]] * Add a libdw addr2line implementation [[https://lore.kernel.org/lkml/20260111041338.1817056-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/f815fc0c66e777c727689666cfb46b8d461c2f99|commit]], [[https://git.kernel.org/linus/88c51002d06f9a68a2b666f7e2c262b6e198f566|commit]], [[https://git.kernel.org/linus/ec9426655dcee3e337735935dcc2dea7684a5bf8|commit]], [[https://git.kernel.org/linus/a2297e74a07d21eb498d8549ae6fddc35cf26ec6|commit]], [[https://git.kernel.org/linus/abec464767b5d26f0612250d511c18f420826ca1|commit]], [[https://git.kernel.org/linus/27fc6f565d06837e71001368c84ee71e5221ce48|commit]], [[https://git.kernel.org/linus/54a23bff770961e024e2c61cd1f46888190c3e79|commit]] * tracing * Add bitmask-list option for human-readable bitmask display. When this is set, bitmasks in trace event are not displayed as hex numbers, but instead as lists: e.g. 0-5,7,9 instead of 0000015f [[https://git.kernel.org/linus/2cddfc2e8fc78c13b0f5286ea5dd48cdf527ad41|commit]] * Add {{{show_event_filters}}} to expose active event filters. Instead of having to search all events/*/*/trigger for any active triggers enabled in the trace instance, the file {{{show_event_triggers}}} will list them so that there's only one file that needs to be examined to see if any triggers are active [[https://git.kernel.org/linus/729757b96a662d87e334fe8b837707800d8fd551|commit]] * Add {{{show_event_triggers}}} to expose active event triggers. Instead of having to search all events/*/*/trigger for any active triggers enabled in the trace instance, the file {{{show_event_triggers}}} will list them so that there's only one file that needs to be examined to see if any triggers are active [[https://git.kernel.org/linus/6a80838814eea232a83fab3ac33282cd1243da5b|commit]] * Disable {{{trace_printk}}} buffer on warning too [[https://git.kernel.org/linus/6bdf07302f42783345289caec7d91fa364e013ec|commit]] * Have {{{hist_debug}}} show what function a field uses [[https://git.kernel.org/linus/45641096c9c3eb8213616df50beaa5f92b201876|commit]] * ftrace,bpf: Use single direct ops for bpf trampolines [[https://git.kernel.org/linus/4be42c92220128b3128854a2d6b0f0ad0bcedbdb|commit]], [[https://git.kernel.org/linus/676bfeae7bd55ca405670798711ac7c46b48655d|commit]], [[https://git.kernel.org/linus/0e860d07c29d70205d5ad48456ac7a133ccfb293|commit]], [[https://git.kernel.org/linus/05dc5e9c1fe156fd9dddc4c2f81e8fc6c7e50eb5|commit]], [[https://git.kernel.org/linus/8d2c1233f37149e4d1223d06ca7054a7f88c0a24|commit]], [[https://git.kernel.org/linus/e93672f770d72f4c33d1dd9fb0633f95948c0cc9|commit]], [[https://git.kernel.org/linus/7d0452497c292153e690652e6df218fead21185f|commit]], [[https://git.kernel.org/linus/956747efd82aa60e0ac3e6aef2b9a17adda6f3b1|commit]], [[https://git.kernel.org/linus/424f6a3610965d125634bc65c5d6d506582d4f7e|commit]] = Virtualization = * Virtio_ring: implement the VIRTIO_F_IN_ORDER [[https://lore.kernel.org/lkml/20251225042608.32350-1-jasowang@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/8ce8e3e5582e85f6533b5013806299a8efba67f0|commit]], [[https://git.kernel.org/linus/79f6d682937dd91c5ed3a1050fa99cb4369dd720|commit]], [[https://git.kernel.org/linus/40da006f137dbbd16b657da37f6ea4fb8ad13671|commit]], [[https://git.kernel.org/linus/9552bc05815447e04cc540ea034bb8632392c678|commit]], [[https://git.kernel.org/linus/8b8590b70894f5934249f5735e164ee2121d6549|commit]], [[https://git.kernel.org/linus/4a0fa90b10a2b11522bcb808d90022f489b2ab27|commit]], [[https://git.kernel.org/linus/ceea1cd0aef23e44c994127d62f51519ae3566fa|commit]], [[https://git.kernel.org/linus/74847cb5731760b22ace8e2fe97a330aa0162d1e|commit]], [[https://git.kernel.org/linus/62fa22cdab7bc07f82e3f5080d7bf35f5f1bf676|commit]], [[https://git.kernel.org/linus/7e81017673fefa3726b60ca0a9999e621e99ff27|commit]], [[https://git.kernel.org/linus/f2ad9d6b4eed59f880b1fcaf28e2ddaeb292b2df|commit]], [[https://git.kernel.org/linus/eff8b47d2832150f96ab706562cef5a754a0d625|commit]], [[https://git.kernel.org/linus/1208473f9b5eb273e787bb1b07a4b2a323692a10|commit]], [[https://git.kernel.org/linus/03f05c4eeb7bc5019deb25f7415a7af8dc3fdd3f|commit]], [[https://git.kernel.org/linus/c623106c79c811816614dcb687ed5d08b25d5fe5|commit]], [[https://git.kernel.org/linus/fa56d17b9241394aaa77ee622b72a1b765a48d6e|commit]], [[https://git.kernel.org/linus/9dc6b944f16c0904331903ba0ec36e558e1a3537|commit]], [[https://git.kernel.org/linus/519b206e30a37f16cfa88a2f6a508642f7d8fd0c|commit]], [[https://git.kernel.org/linus/f6a15d85498614baf121f7e207e6c55524f175a4|commit]] * Add multiple address spaces support to vduse [[https://lore.kernel.org/linux-kernel/20260119143306.1818855-1-eperezma@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/cd025c1e876b4e262e71398236a1550486a73ede|commit]], [[https://git.kernel.org/linus/a006ed4ecd4905b69402980ad7d4e5f31bf44953|commit]], [[https://git.kernel.org/linus/9350a09afd086771b0612c7b7c9583e8a1568135|commit]], [[https://git.kernel.org/linus/02e3f7ffe2906033da73b7c7ea8180b131d0cdbc|commit]], [[https://git.kernel.org/linus/0d215afdc8199ef9702567778bbc781449f48e50|commit]], [[https://git.kernel.org/linus/3543b04a4ea3de78bdc420350d21c538efd6116c|commit]], [[https://git.kernel.org/linus/3e2ddda6f4cb9e25e2e0a24033e13e347d6ce952|commit]], [[https://git.kernel.org/linus/766e1749c0ef6a09651be9b8a8283d508c322b58|commit]], [[https://git.kernel.org/linus/489d76520612abf9a4ede4344349105406c91a73|commit]], [[https://git.kernel.org/linus/f3dc3a8a3ea71d4758b0f63affceb18398cf79b8|commit]], [[https://git.kernel.org/linus/079212f6877e5d07308c8998a8fbc7539ca3f8f3|commit]], [[https://git.kernel.org/linus/12e0043d335f6c8badfe98f1d8f5e1910d430cf0|commit]], [[https://git.kernel.org/linus/7a9dc249e750975fc5bdb44439eaed57243b709d|commit]] * virtio: EPOLLOUT support [[https://git.kernel.org/linus/c38d8b66c82c585199e2ad67282295f21cfa489f|commit]] * hv: enable nested virtualization [[https://git.kernel.org/linus/aa069a996951f3e2e38437ef0316685a5893fc7e|commit]] * Debugfs interface for mshv_root [[https://lore.kernel.org/linux-hyperv/20260128181146.517708-1-nunodasneves@linux.microsoft.com/T/|(cover)]], [[https://git.kernel.org/linus/7538b80e5a4b473b73428d13b3a47ceaad9a8a7c|commit]], [[https://git.kernel.org/linus/2de4516aa8f726946eadb9831c610b7aeb5bc682|commit]], [[https://git.kernel.org/linus/1ba923d8cd837ec6ee33525f60f84daaaa26d4e9|commit]], [[https://git.kernel.org/linus/c527c7aee28f266423afff872df7bff4fad3e084|commit]], [[https://git.kernel.org/linus/df40f32c87be64c96ee974573968592e147a4ded|commit]], [[https://git.kernel.org/linus/c23271b636db45156933d0c55c49109766f12f5a|commit]], [[https://git.kernel.org/linus/ff225ba9ad71c4c5f900b9aa1b757adafcfb449d|commit]] * mshv: Add nested virtualization [[https://git.kernel.org/linus/a284dbc96a47891a7a595a1c81b1e2da4d309cf6|commit]], [[https://git.kernel.org/linus/8927a108a7662eb83eb667bc0c5a0633397122b1|commit]] * mshv: Add support for integrated scheduler [[https://git.kernel.org/linus/4bef6b28bab8697b4f9255c375da2b6b6943a969|commit]] * paravirt: cleanup and reorg [[https://lore.kernel.org/linux-kernel/20260105110520.21356-1-jgross@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/07f2961235ac26da12479535cf19a82cde529865|commit]], [[https://git.kernel.org/linus/e0b4904a401fad8593b85c698677dda95bec51a6|commit]], [[https://git.kernel.org/linus/d73298f015341530da84b96d8310854af90dc425|commit]], [[https://git.kernel.org/linus/b49c63eea526ecfd0321ecfd0dbf6e31c85b5592|commit]], [[https://git.kernel.org/linus/68b10fd40d492ebfaebe716dbe21fc559a128065|commit]], [[https://git.kernel.org/linus/e6b2aa6d40045a3149071ca3af950ea8e6ff79c4|commit]], [[https://git.kernel.org/linus/15518e633b7c1780d866365a9ee660af5c2ce9a1|commit]], [[https://git.kernel.org/linus/ad892c4851577ab03c9a297f5addb8450cf844fd|commit]], [[https://git.kernel.org/linus/b8431b901e825222281bbd156ea8ee8dd60b58de|commit]], [[https://git.kernel.org/linus/ee9ffcf99f0758b612d48ee3ff03340da4d173f3|commit]], [[https://git.kernel.org/linus/589f41f2f08bb48e041b513e49f9f61eec232d64|commit]], [[https://git.kernel.org/linus/39965afb11511003cf7d8f34579bd592b8b70b80|commit]], [[https://git.kernel.org/linus/f01b4f4a60191fa2a78931e2a3986983ec4f5334|commit]], [[https://git.kernel.org/linus/574b3eb843dea1ad99162e115abdb610b6780cbd|commit]], [[https://git.kernel.org/linus/bc5e8e2fa2e28ef6c2a55ae294d04100d4b1bffe|commit]], [[https://git.kernel.org/linus/817f66e39e39b914aac25065a34f4462ab45ed26|commit]], [[https://git.kernel.org/linus/7aef17f367c94d6cef00f45b193e37d30ff4a3b5|commit]], [[https://git.kernel.org/linus/f88dc319fcb6d6a155e94469a355ce456dd85441|commit]], [[https://git.kernel.org/linus/560db12560d4d0fb24ee0c32dc32975e18a88ed4|commit]], [[https://git.kernel.org/linus/392afe83165a54080ec48e50d45049bd5aaad332|commit]], [[https://git.kernel.org/linus/b0b449e6fec4cd182bd4384f7eb9002596079f68|commit]] * Introduce xen_console_io option [[https://git.kernel.org/linus/763baca7bf8b36b8ff0e1ec6eb30dbfe99b18fd8|commit]] = Cryptography = * zynqmp-aes-gcm: Bug fixes and aes-gcm support for Versal [[https://lore.kernel.org/linux-devicetree/20251220155905.346790-1-h.jain@amd.com/|(cover)]], [[https://git.kernel.org/linus/c15291e2278ea930ca47a034780f002bee1e1b4f|commit]], [[https://git.kernel.org/linus/c7a768f57de0ebd7a9149d1dab1dadb9c5409d5f|commit]], [[https://git.kernel.org/linus/465d7831261965248a7a1484bd186066d29427f0|commit]], [[https://git.kernel.org/linus/2de468529f270d0696738ca7d0252a57aa31b191|commit]], [[https://git.kernel.org/linus/75578e5c2040b52af89005b9116dfd0f9ae462c1|commit]], [[https://git.kernel.org/linus/349f0d326d7c9262ac7644cb624ccbcbedd917f9|commit]], [[https://git.kernel.org/linus/f939b88c7ca56cd307e351cef1683756835a7193|commit]], [[https://git.kernel.org/linus/0d120a39b9de5a2d9d9e3fb83db672825d5a798a|commit]], [[https://git.kernel.org/linus/43f0478672c3239cd10fd460ae84ba2b3f55dc07|commit]], [[https://git.kernel.org/linus/56934489a80a74a067d9129f025c81d1ebf267a4|commit]], [[https://git.kernel.org/linus/c315cb0005bed288e1db58f52ccd60ec189302d7|commit]], [[https://git.kernel.org/linus/e9f6870bb753b11b325f7d7839b4be6956d448d9|commit]], [[https://git.kernel.org/linus/856f0619252debaf0b15a12cab14f93e73180d90|commit]], [[https://git.kernel.org/linus/280bfc3eb5d3f3199f888197462e7da7e9914160|commit]] * Inside-secure: use new aes library api [[https://lore.kernel.org/linux-crypto/20260105051311.1607207-31-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/86120434712314077fc7aeeaaf732521d1446736|commit]], [[https://git.kernel.org/linus/7fcb22dc7765185a86077f65179ec4fa3f30b910|commit]], [[https://git.kernel.org/linus/bc79efa08c038846b962edf04dc00922b48efdc7|commit]], [[https://git.kernel.org/linus/953f2db0bfc2ab68e69f385441d0f4b54aee0cd1|commit]], [[https://git.kernel.org/linus/fbfeca74043777b48add294089cd4c4f68ed3377|commit]] * Nhpoly1305: remove crypto_shash support [[https://lore.kernel.org/linux-crypto/20251211011846.8179-11-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/719316ad8eb0c2cb5120ad6098af22ce73726853|commit]], [[https://git.kernel.org/linus/0d8e6c0a1178cbe88e38113bf2a4277b4b21a76f|commit]] * x509, pkcs7, crypto: Add ML-DSA signing [[https://lore.kernel.org/linux-crypto/20260202170216.2467036-1-dhowells@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/d3b6dd90e23ef1b57143e60668175ecd890948d1|commit]], [[https://git.kernel.org/linus/2c62068ac86bdd917a12eef49ba82ec8b091208b|commit]], [[https://git.kernel.org/linus/f728074f1f577565c97e465652c3d4afb0964013|commit]], [[https://git.kernel.org/linus/f3eccecd782dbaf33d5ad0d1fd22ea277300acdb|commit]], [[https://git.kernel.org/linus/8bbdeb7a25b4cd3d829136a2e12982b8ee7d7991|commit]], [[https://git.kernel.org/linus/0ad9a71933e73c8a2af101d28e9a1dc35bae02d5|commit]], [[https://git.kernel.org/linus/91db696adea4d76017b1e1f45915a5cbf04e8da3|commit]], [[https://git.kernel.org/linus/965e9a2cf23b066d8bdeb690dff9cd7089c5f667|commit]] * ccp - Add sysfs attribute for boot integrity [[https://git.kernel.org/linus/90f7520b76fab89852287d78ed7919a647c68c1d|commit]] * AES library improvements [[https://git.kernel.org/linus/b599aacf12620b6964f140d2833860affc0ab676|commit]], [[https://git.kernel.org/linus/a22fd0e3c495dd2d706c49c26663476e24d96e7d|commit]], [[https://git.kernel.org/linus/a4e4e44649ba5f2d59f056ba59885fb080caa22e|commit]], [[https://git.kernel.org/linus/f367305a5d0f72d2e8c656f144db424f791dc5e1|commit]], [[https://git.kernel.org/linus/1cb2fcb61c6d58c59a01da1fa8330e3101818759|commit]], [[https://git.kernel.org/linus/5be8dcc1d0dd5b4bd431d1d052e79f01dd2e33c4|commit]], [[https://git.kernel.org/linus/637e73ef99930b2d55b91868e7297689ca06f37d|commit]], [[https://git.kernel.org/linus/641e70563ac1cc498b31f4016c1f5dde8e0e4d71|commit]], [[https://git.kernel.org/linus/a2484474272ef98d9580d8c610b0f7c6ed2f146c|commit]], [[https://git.kernel.org/linus/fa2297750c2cc61788d1843f358dbfecaa42944f|commit]], [[https://git.kernel.org/linus/2b1ef7aeeb184ee78523f3d24e221296574c6f2d|commit]], [[https://git.kernel.org/linus/0892c91b81cc889c95dc03b095b9f4a6fdf93106|commit]], [[https://git.kernel.org/linus/7cf2082e74ce7f4f4b5e14cbe67a194d75e257ef|commit]], [[https://git.kernel.org/linus/a4e573db06a4e8c519ec4c42f8e1249a0853367a|commit]], [[https://git.kernel.org/linus/0cab15611e839142f4fd3c8a366acd1f7334b30b|commit]], [[https://git.kernel.org/linus/293c7cd5c6c00f3b6fa0072fc4b017a3a13ad1e7|commit]], [[https://git.kernel.org/linus/24eb22d8161380eba65edc5b499299639cbe8bf9|commit]], [[https://git.kernel.org/linus/9c941c94bcba851eb8e688a3cf7d59ce29c4eb25|commit]], [[https://git.kernel.org/linus/7f6dfeb943bf06dd55a588e992dcc108ffe3db2c|commit]], [[https://git.kernel.org/linus/1f161437c6738ed59ad67a2c67f30b2e9fdf81b4|commit]], [[https://git.kernel.org/linus/12b03936a02fd17fd7c7a9711c225f34332c6c57|commit]], [[https://git.kernel.org/linus/60fb28ca028634210e12a4e674d3563f741e617c|commit]], [[https://git.kernel.org/linus/cf4b7b99a6058227351164edc8f81d90771ac4ef|commit]], [[https://git.kernel.org/linus/370960c153db82fbdd55539be4d4eb41ef3a7e40|commit]], [[https://git.kernel.org/linus/104a9526e1448dc45b96534e2d78d41b3ecac3f9|commit]], [[https://git.kernel.org/linus/0f5f4961ae53d41da5c3d3d37be796d72b38b4af|commit]], [[https://git.kernel.org/linus/cafa7a0b6c90b5ef75ae8ffbdd5ff0f7191709d8|commit]], [[https://git.kernel.org/linus/9b95f3a4c9b8baf9fc4c2b8776f8285c05e594f5|commit]], [[https://git.kernel.org/linus/b2c15db74a379a50d723002799c3db0c6781c75a|commit]], [[https://git.kernel.org/linus/65c7022be112b05c4da6e19a4b4635da45b6434d|commit]], [[https://git.kernel.org/linus/86120434712314077fc7aeeaaf732521d1446736|commit]], [[https://git.kernel.org/linus/7fcb22dc7765185a86077f65179ec4fa3f30b910|commit]], [[https://git.kernel.org/linus/bc79efa08c038846b962edf04dc00922b48efdc7|commit]], [[https://git.kernel.org/linus/953f2db0bfc2ab68e69f385441d0f4b54aee0cd1|commit]], [[https://git.kernel.org/linus/fbfeca74043777b48add294089cd4c4f68ed3377|commit]] * NH library and Adiantum cleanup [[https://git.kernel.org/linus/14e15c71d7bb591fd08f527669717694810d3973|commit]], [[https://git.kernel.org/linus/7246fe6cd64475d8126a85eef6a3a425f105c203|commit]], [[https://git.kernel.org/linus/29e39a11f541d068ed7155368f4a79aa0ddf9c52|commit]], [[https://git.kernel.org/linus/b4a8528d17fbcd9027290c168efd6ba7ac4d4cd2|commit]], [[https://git.kernel.org/linus/a229d83235c7627c490deb7dd4744a72567cea12|commit]], [[https://git.kernel.org/linus/76987479c1a66f60126afe28e3cff01f3fc0f1ae|commit]], [[https://git.kernel.org/linus/cd912b3452d14c40e77b3be82854df00bfd38a41|commit]], [[https://git.kernel.org/linus/73c203fe5564e6e4ec37b7e140214a334d584369|commit]], [[https://git.kernel.org/linus/2f64821329d82ad2646efe59a40aaf40099bc9c3|commit]], [[https://git.kernel.org/linus/f676740c426535d0d2097e0b9adedb085634039b|commit]], [[https://git.kernel.org/linus/719316ad8eb0c2cb5120ad6098af22ce73726853|commit]], [[https://git.kernel.org/linus/0d8e6c0a1178cbe88e38113bf2a4277b4b21a76f|commit]] * Add ML-DSA signing [[https://lore.kernel.org/linux-crypto/20251120104439.2620205-1-dhowells@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/64edccea594cf7cb1e2975fdf44531e3377b32db|commit]], [[https://git.kernel.org/linus/ed894faccb8de55cd755e093c4b0971f190d384d|commit]], [[https://git.kernel.org/linus/d3b6dd90e23ef1b57143e60668175ecd890948d1|commit]], [[https://git.kernel.org/linus/8bbdeb7a25b4cd3d829136a2e12982b8ee7d7991|commit]], [[https://git.kernel.org/linus/0ad9a71933e73c8a2af101d28e9a1dc35bae02d5|commit]] = Security = * Improve NETFILTER_PKT records [[https://lore.kernel.org/audit/cover.1763122537.git.rrobaina@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/f19590b07cb620be1fcd5474c49515e21a05d406|commit]], [[https://git.kernel.org/linus/15b0c43aa621fb77b32c46eb642eaf25557e9fdb|commit]] * Landlock * multithreaded enforcement [[https://lore.kernel.org/linux-security-module/20251127115136.3064948-1-gnoack@google.com/T/|(cover)]], [[https://git.kernel.org/linus/42fc7e6543f6d17d2cf9ed3e5021f103a3d11182|commit]], [[https://git.kernel.org/linus/39508405f6e6c8ce8a0f4bf93b344610d9051043|commit]] * Documentation improvements [[https://lore.kernel.org/linux-security-module/20260128031814.2945394-1-samasth.norway.ananda@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/6100f2904e0ea1f2c832ab6e93573fae47d3b13e|commit]], [[https://git.kernel.org/linus/fe72ce6710cba088b67e3279de87d7341fafc357|commit]], [[https://git.kernel.org/linus/de4b09abf088ba0a6a0bebb8b618fd29b9ce5c35|commit]] * apparmor: add support loading per permission tagging [[https://git.kernel.org/linus/3d28e2397af7a89ac3de33c686ed404cda59b5d5|commit]] * apparmor: userns: Add support for execpath in userns [[https://git.kernel.org/linus/8d34e16f7f2b51f880957f2caadaae731ee28867|commit]] * Extend "trusted" keys to support a new trust source named the powervm key wrapping module (pkwm) [[https://lore.kernel.org/linux-integrity/20260201135930.898721-1-ssrish@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/88372ad4b060a283a475f0ebc31451c9059ebaa5|commit]], [[https://git.kernel.org/linus/40850c909fcf2a66237dea6b96c8e12003cf6d43|commit]], [[https://git.kernel.org/linus/447eb1d5ef00f7da918221ed690cac980385d993|commit]], [[https://git.kernel.org/linus/133aa79e211d2572c5c9b9671461a55d50bebda8|commit]], [[https://git.kernel.org/linus/c99fcb0d735bdb6f06dfe6eb7134d5d988d32dae|commit]], [[https://git.kernel.org/linus/1d72a02d65a733ad124bacc2db3fb90fa81a612b|commit]] * selinux: Add support for SELinux based access control of BPF tokens [[https://git.kernel.org/linus/5473a722f782f79f96b4691400d681c01fcacc2f|commit]] = Networking = * Add support for memory providers with large (above 4K) rx buffer. Paired with hw-gro, larger rx buffer sizes reduce the number of buffers traversing the stack, dincreasing single stream CPU usage by up to ~30% [[https://lore.kernel.org/netdev/cover.1768493907.git.asml.silence@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/7073bb4b696f5593c1f2e0b9451f0120ca624182|commit]], [[https://git.kernel.org/linus/92d76cf96dcbc3c58daa84dbbf71a3ca8d9de53d|commit]], [[https://git.kernel.org/linus/efcb9a4d32d3d9b924642c086b868bfbb9a07c13|commit]], [[https://git.kernel.org/linus/c0b709bf438ba9d197d369f55e4a97603fd4a705|commit]], [[https://git.kernel.org/linus/f57efb32aae1da5c0a25acf473ef4ab559894adf|commit]], [[https://git.kernel.org/linus/c55bf90a2112d7a831d8427034b71ff9fbb78285|commit]], [[https://git.kernel.org/linus/f96e1b35779e153be266fd7de50bda0c5553ad21|commit]], [[https://git.kernel.org/linus/a32bb32d019332394aee9e2befea4fec05a672e4|commit]], [[https://git.kernel.org/linus/d1de61db1536727c1cad049c09decff22e8b6dd7|commit]] * netconsole: Support automatic target recovery [[https://lore.kernel.org/netdev/20260118-netcons-retrigger-v11-0-4de36aebcf48@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/d793db4aa0db9ebcdd5ccde0a933323b778d1f2d|commit]], [[https://git.kernel.org/linus/a46bb0103c351766e165c13c7ee8dd52beb76dfc|commit]], [[https://git.kernel.org/linus/e8f4005ab2d4819805c2f6b19e8bd633f8579bd0|commit]], [[https://git.kernel.org/linus/5b114087438dcd229c8754c093c44619c346d67c|commit]], [[https://git.kernel.org/linus/c52861e566db8af86c9fb412ccffa274c610babf|commit]], [[https://git.kernel.org/linus/220dbe3c76ed13a7b68393212a625eaf1770b96f|commit]], [[https://git.kernel.org/linus/6ecc08329bab2c87f579cf1a8ab7799d8d88d9bc|commit]] * ppp: enable TX scatter-gather [[https://git.kernel.org/linus/42fcb213e58a7da33d5d2d7517b4e521025c68c3|commit]] * geneve: introduce double tunnel GSO/GRO support [[https://git.kernel.org/linus/31c5a71d982b57df75858974634c2f0a338f2fc6|commit]], [[https://git.kernel.org/linus/0c09e89f6cea6598439edca7ff1ef97fde3edb46|commit]], [[https://git.kernel.org/linus/e0b73b5a925739bee16ef3b0a1212a79fafc8050|commit]], [[https://git.kernel.org/linus/ba1b8c97b9a0414432382a11f144a8597f6f597e|commit]], [[https://git.kernel.org/linus/759b8d3cef7bfc0a69a11f260eb136bba1821ab4|commit]], [[https://git.kernel.org/linus/1da80d91bd0ea36f6c974bf50d14295734bcc278|commit]], [[https://git.kernel.org/linus/e0a12cbf262b92b470b92abc285cec0f3bb6c7ff|commit]], [[https://git.kernel.org/linus/0eaf63b3fcda14c7badbe7e5ccf6239895a1e5aa|commit]], [[https://git.kernel.org/linus/fd0dd796576e1a560e1441e665810129f0a82be0|commit]], [[https://git.kernel.org/linus/40146bf7555e9c3480b1225dfe7a5306e1b58b13|commit]] * netkit: Support for io_uring zero-copy and af_xdp [[https://lore.kernel.org/netdev/20260129222830.439687-1-daniel@iogearbox.net/T/|(cover)]], [[https://git.kernel.org/linus/a5546e18f77c0cb15d434bf5b92647687fe483e3|commit]], [[https://git.kernel.org/linus/31127deddef4a13628202a7bfef912e6c1ba3e57|commit]], [[https://git.kernel.org/linus/9e2103f36110b50fc30be333fe2b43522c2dfa2a|commit]], [[https://git.kernel.org/linus/ff8889ff9107f01346ba0d2e580ecadfa5fac5c5|commit]], [[https://git.kernel.org/linus/0caa9a8ddec3bf87bffb0eb99635068ddddce35d|commit]], [[https://git.kernel.org/linus/804bf334d08aeceda1c39f4e26d7eda802b63a33|commit]], [[https://git.kernel.org/linus/1ecea95dd3b524e36b344dc41895ba5051653925|commit]], [[https://git.kernel.org/linus/0073d2fd679d2219c2a123f79d6a2a6933a88ae0|commit]], [[https://git.kernel.org/linus/b5c3fa4a0b16d4a7d0bd0e5626a13fec0024030a|commit]], [[https://git.kernel.org/linus/b5ef109d22d4c5d4400488953fbd81b9725b4417|commit]], [[https://git.kernel.org/linus/eef51113f8afd35c69cbf3702e0ecd55263f2416|commit]], [[https://git.kernel.org/linus/920da3634194cde889005f67ccd7f873425a60a5|commit]], [[https://git.kernel.org/linus/61d99ce3dfc2f1ba5bf713093bb3a5faf5ebc2dc|commit]], [[https://git.kernel.org/linus/6be87fbb27763c2999e1c69bbec1f3a63cf05422|commit]], [[https://git.kernel.org/linus/931420a2fc363817c92990fa14eb1bdec024ce04|commit]] * netconsole: convert to NBCON console infrastructure [[https://lore.kernel.org/netdev/20260206-nbcon-v7-0-62bda69b1b41@debian.org/T/|(cover)]], [[https://git.kernel.org/linus/60325c27d3cfe13466f6d6aa882b11bdd1c58cc8|commit]], [[https://git.kernel.org/linus/eaf35bc63be79bfd1c37e82bea4af7adc162455f|commit]], [[https://git.kernel.org/linus/7eab73b18630e77a6433c6eab0abdd64b9dad85e|commit]], [[https://git.kernel.org/linus/79ba362b43373d19ce6c989b0498f7a67740ff6e|commit]] * Bluetooth * L2CAP: Add support for setting BT_PHY [[https://git.kernel.org/linus/132c0779d4a2d08541519cf04783bca52c6ec85c|commit]] * mgmt: Add idle_timeout to configurable system parameters [[https://git.kernel.org/linus/48fea7d4b363cfc051d50639a135f8be5d0be7c2|commit]] * hsr: Implement more robust duplicate discard algorithm [[https://lore.kernel.org/netdev/cover.1770299429.git.fmaurer@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/c01a6c700fd54dd775020a8ddfe69dedeaca73cc|commit]], [[https://git.kernel.org/linus/776b64ba12e7e2be393b3df07979c825fed47931|commit]], [[https://git.kernel.org/linus/ca4a09a950d27909a16cebe512544bb01b8ce2e5|commit]], [[https://git.kernel.org/linus/415e6367512bf8faca93eaaf46fbe23d841b4509|commit]], [[https://git.kernel.org/linus/8908c3c8cef437d8d2ad41f9b23f4305029d1782|commit]], [[https://git.kernel.org/linus/aae9d6b616b5e4ad8bbb82aa3661baa1522684d2|commit]], [[https://git.kernel.org/linus/bbbd531faa18b778a9129938d2c8db6c33c106ab|commit]], [[https://git.kernel.org/linus/b3dabced355e17e16bc3ac7cde67a944cd83a1b9|commit]] * IPv6: Allow for nexthop device mismatch with "onlink" [[https://git.kernel.org/linus/e5566f6b1d13e9bc0a458babb880916e212c45fb|commit]], [[https://git.kernel.org/linus/0a3419f4ba407b9624c315bfd6f0056caf536898|commit]], [[https://git.kernel.org/linus/9bf8345fb38ab9bd771bd430073cbd3e912fcf75|commit]], [[https://git.kernel.org/linus/b853b94e848216b82ecaa0d5d3c7f6c9066e32a4|commit]], [[https://git.kernel.org/linus/f8f9ee9d8b2ed1f29309399020f2fc30f7f93035|commit]] * IPv6: add sysctl_ipv6_flowlabel group [[https://git.kernel.org/linus/e82a347d92d14260d1e2cf121a25e0458b1abbf7|commit]] * IPv6: Improve the TCP ipv6 output path to cache the flow information, saving cpu cycles, reducing cache line misses and stack use * ceph: add support for CEPH_CRYPTO_AES256KRB5 [[https://git.kernel.org/linus/b7cc142dbafeaf6c053284ca9121b9f70b6d6d06|commit]] * mptcp: Implement read_sock [[https://lore.kernel.org/mptcp/cover.1765023923.git.tanggeliang@kylinos.cn/|(cover)]], [[https://git.kernel.org/linus/436510df0cafb1bc36f12e92e0e76599be28d8f4|commit]], [[https://git.kernel.org/linus/250d9766a984a45f05893a496df6b682c105fbbc|commit]], [[https://git.kernel.org/linus/2d85088d467ffbfa4377881be050937e3f0304bc|commit]], [[https://git.kernel.org/linus/22f3bd9bf8e850e2b365ad65916ef5aadc79bb61|commit]], [[https://git.kernel.org/linus/6a059c6bfb557a8c72634d761d78463a6e224547|commit]], [[https://git.kernel.org/linus/2f2dc84645fb25960a0f52aff4d754fce43edea4|commit]] * rds * RDS-TCP protocol and extension improvements [[https://lore.kernel.org/netdev/20260203055723.1085751-1-achender@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/46f257ee6904125e6336d63f0694ff4c491cfbf7|commit]], [[https://git.kernel.org/linus/a20a6992558fa7c19a03c76bea4a793ccaef8505|commit]], [[https://git.kernel.org/linus/826c1004d4aea60ee3f97de9eb25f8c489965c97|commit]], [[https://git.kernel.org/linus/aa0cd656f03209733d941f0d27b4e68db4443a07|commit]], [[https://git.kernel.org/linus/b89fc7c2523b2b0750d91840f4e52521270d70ed|commit]], [[https://git.kernel.org/linus/9d30ad8a8bc0569ac833427094d18df46fb439e6|commit]], [[https://git.kernel.org/linus/a1f53d5fb6b2e4c81b438ea41f5f16482d084e08|commit]], [[https://git.kernel.org/linus/9d27a0fb122f19b6d01d02f4b4f429ca28811ace|commit]] * RDS-TCP bug fix collection, subset 1: Work queue scalability [[https://lore.kernel.org/netdev/20260109224843.128076-1-achender@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/d327e2e74aedbe77e1dd716ec77b9aa828ef6812|commit]], [[https://git.kernel.org/linus/4716af3897e95997d08183d351cece2dec9ee0c0|commit]] * packet scheduler: Multi-queue aware sch_cake [[https://lore.kernel.org/netdev/20260109-mq-cake-sub-qdisc-v8-0-8d613fece5d8@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/8b27fd66f519858a4899c9c6d213e6fad7592ead|commit]], [[https://git.kernel.org/linus/bc0ce2bad36c28a3d13c5b9b5894e1f86831d917|commit]], [[https://git.kernel.org/linus/ebc65a873effc8a076edcec34b1ad719525205b5|commit]], [[https://git.kernel.org/linus/87826c01837c314c3caada33524fc769e58364a9|commit]], [[https://git.kernel.org/linus/1bddd758bac21fbbd8a06af746ec7b6d878a9d2c|commit]], [[https://git.kernel.org/linus/8d61f1a9f2541c6ef51d4997e6a4c5a1c0d8b27c|commit]] * netkit: Support for io_uring zero-copy and AF_XDP [[https://lore.kernel.org/netdev/20260320221814.236775-1-daniel@iogearbox.net/T/|(cover)]], [[https://git.kernel.org/linus/a5546e18f77c0cb15d434bf5b92647687fe483e3|commit]], [[https://git.kernel.org/linus/31127deddef4a13628202a7bfef912e6c1ba3e57|commit]], [[https://git.kernel.org/linus/9e2103f36110b50fc30be333fe2b43522c2dfa2a|commit]], [[https://git.kernel.org/linus/ff8889ff9107f01346ba0d2e580ecadfa5fac5c5|commit]], [[https://git.kernel.org/linus/804bf334d08aeceda1c39f4e26d7eda802b63a33|commit]], [[https://git.kernel.org/linus/1ecea95dd3b524e36b344dc41895ba5051653925|commit]], [[https://git.kernel.org/linus/0073d2fd679d2219c2a123f79d6a2a6933a88ae0|commit]], [[https://git.kernel.org/linus/b5c3fa4a0b16d4a7d0bd0e5626a13fec0024030a|commit]], [[https://git.kernel.org/linus/b5ef109d22d4c5d4400488953fbd81b9725b4417|commit]], [[https://git.kernel.org/linus/eef51113f8afd35c69cbf3702e0ecd55263f2416|commit]], [[https://git.kernel.org/linus/920da3634194cde889005f67ccd7f873425a60a5|commit]] * IPV6: Improve the TCP ipv6 output path to cache the flow information, saving cpu cycles, reducing cache line misses and stack use [[https://git.kernel.org/linus/03ff0cb1a9269a12c648e69e8b6ae6c2a723977c|commit]], [[https://git.kernel.org/linus/3d3f075e80f201b5ce3446beccb0d7dfd72078f5|commit]], [[https://git.kernel.org/linus/4e6c91cf60f25ac3490bbf4d387c09ffc369aa7a|commit]], [[https://git.kernel.org/linus/969a20198bd686ebff18879fc214e4fd71b0ed71|commit]], [[https://git.kernel.org/linus/19bdb267f733ac92dcf5cf126bfcec1f9281c8c5|commit]], [[https://git.kernel.org/linus/a6eee39cc2b95db3ae8ec92120f50aa899eb6652|commit]], [[https://git.kernel.org/linus/97d7ae6e14c80ec0c2558d24d818212590f2d64f|commit]] * netfilter * Add IP6IP6 flowtable SW acceleration [[https://lore.kernel.org/netfilter-devel/20260122-b4-flowtable-offload-ip6ip6-v4-0-ea3dd826c23b@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/baa501b12a484818631b154adb854d976b447b23|commit]], [[https://git.kernel.org/linus/c64436daf675a368f3d850b2fad26e2a654f43d1|commit]], [[https://git.kernel.org/linus/d98103575dcdd3a730e0901ab457791a9ac6930c|commit]], [[https://git.kernel.org/linus/93cf357fa797c867b05d7ee2e893608b65d982c1|commit]], [[https://git.kernel.org/linus/5e51803521938566bdf099501379a9bdbacb6066|commit]] * updates for net-next: [[https://git.kernel.org/linus/6f93616a7323d646d18db9c09f147e453b40fdd7|commit]], [[https://git.kernel.org/linus/8a49fc8d8a3e83dc51ec05bcd4007bdea3c56eec|commit]], [[https://git.kernel.org/linus/21d033e472735ecec677f1ae46d6740b5e47a4f3|commit]], [[https://git.kernel.org/linus/f7becf0dad8f558832a64183c7b1d0c65d327947|commit]], [[https://git.kernel.org/linus/910d2712277583696474cd90dffcb56d3e0ff08e|commit]], [[https://git.kernel.org/linus/d00453b6e3a3d2340b88c5292c3c5b5f9c4ece75|commit]], [[https://git.kernel.org/linus/a4400a5b343d1bc4aa8f685608515413238e7ee2|commit]], [[https://git.kernel.org/linus/cda26c645946b08f070f20c166d4736767e4a805|commit]], [[https://git.kernel.org/linus/de8a70cefcb26cdceaafdc5ac144712681419c29|commit]], [[https://git.kernel.org/linus/735ee8582da3d239eb0c7a53adca61b79fb228b3|commit]] * nfnetlink_queue: optimize verdict lookup with hash table [[https://git.kernel.org/linus/e19079adcd26a25d7d3e586b1837493361fdf8b6|commit]] * Convert rbtree to binary search array [[https://lore.kernel.org/netfilter-devel/20260121000847.294125-1-pablo@netfilter.org/T/|(cover)]], [[https://git.kernel.org/linus/f175b46d9134f708358b5404730c6dfa200fbf3c|commit]], [[https://git.kernel.org/linus/7e43e0a1141deec651a60109dab3690854107298|commit]], [[https://git.kernel.org/linus/2aa34191f06fc5af4f70241518a8554370d86054|commit]], [[https://git.kernel.org/linus/5599fa810b503eafc2bd8cd15bd45f35fc8ff6b9|commit]] * sunrpc: allow for a dynamically-sized threadpool [[https://lore.kernel.org/linux-nfs/20260106-nfsd-dynathread-v2-0-416e5f27b2b6@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/e344f872628e769874c8cf30ec9a554bd55c26a3|commit]], [[https://git.kernel.org/linus/2c01f0cf324bd7857c135fb26619dfba67b997a4|commit]], [[https://git.kernel.org/linus/6cd60f4274b19327ebc5afa0c814b13379c34370|commit]], [[https://git.kernel.org/linus/7ffc7ade2cb1138ea5d4ab55cb42c878d44165fb|commit]], [[https://git.kernel.org/linus/7f221b340d16558919d963a2afed585d6a145fa4|commit]], [[https://git.kernel.org/linus/a0022a38be1017fb302563eaee54ff904be48cea|commit]], [[https://git.kernel.org/linus/1c87a0c39a860e19eee41815737e38b2a035c040|commit]], [[https://git.kernel.org/linus/d8316b837c2ca5f92e781fa1575095c0132ae3c1|commit]] * AccECN protocol case handling series [[https://git.kernel.org/linus/7885ce0147401d5f6908ad4da660334031d836b7|commit]], [[https://git.kernel.org/linus/ab4c8b6f7fcbca7644487e08e76e4e224414bca5|commit]], [[https://git.kernel.org/linus/6f74bc8b6e8d0e8218c1342682dadb156603d13e|commit]], [[https://git.kernel.org/linus/100f946b8d44b64bc0b8a8c30d283105031c0a77|commit]], [[https://git.kernel.org/linus/e68c28f22f46ecfdec3656ae785dd8ccbb4d557d|commit]], [[https://git.kernel.org/linus/c5ff6b83715919767f181f13e992b5055812a194|commit]], [[https://git.kernel.org/linus/3ae62b8b4a4848f745d5ed12f10056cb4e4c81f0|commit]], [[https://git.kernel.org/linus/f1eaea5585e4d193e007d671f0916f4371c72c0b|commit]], [[https://git.kernel.org/linus/f326f1f17f3772dae4b37360c639ed6b76fe6354|commit]], [[https://git.kernel.org/linus/4024081feb87fb11ac7bd36d8c397ccdd81ed302|commit]], [[https://git.kernel.org/linus/2ed661248e2b920f53db61ddfc74bc68ed10c83d|commit]], [[https://git.kernel.org/linus/1247fb19cafee6f9fa350ae378e4e1e9965cc253|commit]], [[https://git.kernel.org/linus/4fa4ac5e584841c0f9b01c2f7dd0c2e3caa8bca0|commit]], [[https://git.kernel.org/linus/8ae3e8e6ceedfb3cf74ca18169c942e073586a39|commit]], [[https://git.kernel.org/linus/f85d9c45f1d48a146f37cfd3d244aac4157ea390|commit]] * Reduce tcp sockets size by one cache line [[https://git.kernel.org/linus/ed9b70040d7b22552f1392bed529ef0861f2a25c|commit]] * UDP: Add drop count for packets in udp_prod_queue [[https://git.kernel.org/linus/820990d66577de2afeed41f26250ba4fd8a59ca7|commit]] * Add namespace support to vhost-vsock and loopback [[https://lore.kernel.org/linux-kernel/20260121-vsock-vmtest-v16-0-2859a7512097@meta.com/T/|(cover)]], [[https://git.kernel.org/linus/eafb64f40ca49c79f0769aab25d0fae5c9d3becb|commit]], [[https://git.kernel.org/linus/a6ae12a599e0f16bc01a38bcfe8d0278a26b5ee0|commit]], [[https://git.kernel.org/linus/a69686327e42912e87d1f4be23f54ce1eae4dbd2|commit]], [[https://git.kernel.org/linus/873e7de9f9a3b67b08b380057b2c7828b0d78cae|commit]], [[https://git.kernel.org/linus/423ec6383edba92e78abbb99a776147b3fe7b2ca|commit]], [[https://git.kernel.org/linus/fd1b41725d585f29029b8d8610a155f26727c18e|commit]], [[https://git.kernel.org/linus/4e870ac81df7e9628bdc08ff6f957a42e80582ee|commit]], [[https://git.kernel.org/linus/7418f3bb3aa289fbf52f93b551e79ba647371f51|commit]], [[https://git.kernel.org/linus/06cf7895abf9080c050767c66b95d79d99e2c7e8|commit]], [[https://git.kernel.org/linus/605caec5adc2956263a86b48eecfc52ee5c95dae|commit]], [[https://git.kernel.org/linus/0424ee7c3a1721c099544f36580cf6dd1661856d|commit]], [[https://git.kernel.org/linus/b3b7b33264c69a3a97723c31a14c7a19b2fce503|commit]] * wifi: * Initial uhr support [[https://lore.kernel.org/linux-wireless/20260130154259.265130-5-johannes@sipsolutions.net/T/|(cover)]], [[https://git.kernel.org/linus/a7cb50156e8206562b001b3bb625045a0ee0f651|commit]], [[https://git.kernel.org/linus/072e6f7f416f5d17be71000b31fb108651ad360d|commit]], [[https://git.kernel.org/linus/a1085114715ee9980405d6856276c5e88339cee7|commit]] * Add Support for EPPKE Authentication [[https://lore.kernel.org/linux-wireless/20260114111900.2196941-1-kavita.kavita@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f29c852149f94dc1975c64fa919b3dd62db04d23|commit]], [[https://git.kernel.org/linus/9d17a040c15d4b99484f13cf08dd45a9e308beeb|commit]], [[https://git.kernel.org/linus/dc54de8db669793d54f1ec0629659309299eec8d|commit]], [[https://git.kernel.org/linus/6ee3a22c61cdf57d71592ec9f3b9439cd5d0c75f|commit]], [[https://git.kernel.org/linus/63e7e3b6433f634d54dacc39cda4fcc613501715|commit]], [[https://git.kernel.org/linus/5329ed8fced301ce1e0748a46932f4446fe6fc86|commit]], [[https://git.kernel.org/linus/0e7e509963d5952980e3fdba7f8bf22dec8eda12|commit]], [[https://git.kernel.org/linus/3d2515fdd336b2c785f0568c3b015920261cca10|commit]] * Add eMLSR/eMLMR action frame parsing support [[https://git.kernel.org/linus/0d95280a2d54ebd3d38adc4ff67808009798978c|commit]] * Non-EDCA ranging support enhancements [[https://git.kernel.org/linus/86c6b6e4d187652d718915e15cf126f98e24e955|commit]], [[https://git.kernel.org/linus/853ce6943c385be2f6cccf371080e592f2e08b0f|commit]], [[https://git.kernel.org/linus/cfd46d1c6f4bf232c5630b1cf5c8b317d38101c5|commit]], [[https://git.kernel.org/linus/853800c746d38486673ef67f461b660a01d52716|commit]] = Architectures = * ARM * Devicetree updates, new !SoCs: * The Realtek Kent family of !SoCs contains three chip models rtd1501s, rtd1861b and rtd1920s. It is related to their earlier Set-top-box and NAS products such as rtd1619, but is built on newer Arm Cortex-A78 cores [[https://lore.kernel.org/devicetree/20251121084505.3200-1-eleanor.lin@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/d83bcab6842f01bad024056c3801c39f55e61f30|commit]], [[https://git.kernel.org/linus/b095c27fc874ef5e26a025a0ddbdacfc3c94d663|commit]] * The Qualcomm Milos family includes the Snapdragon 7s Gen 3 (SM7635) mobile phone SoC built around Armv9 Kryo cores of the Arm Cortex-A720 generation. This one is used in the Fairphone Gen 6 [[https://lore.kernel.org/phone-devel/20251210-sm7635-fp6-initial-v4-0-b05fddd8b45c@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/e79cc7b5eba255fc0534212d25ee6142213d5314|commit]], [[https://git.kernel.org/linus/f50da52e5b2ed73913cc6d0db7c81cd33ced3ae7|commit]], [[https://git.kernel.org/linus/42f2799124a4d0081b0c8c50980e37769e8d6880|commit]], [[https://git.kernel.org/linus/d88771fda13f2e97a056d471b7b7c11bd17da148|commit]], [[https://git.kernel.org/linus/446f4802aa6eb972718b8708188df533b38dbabe|commit]], [[https://git.kernel.org/linus/57e89dfdfa28810f8c1a44bdd301fca287ff83d1|commit]], [[https://git.kernel.org/linus/8f42f255dfb80e57af98191e7a4e18f7d1cdcb7e|commit]], [[https://git.kernel.org/linus/d9d59d105f98665187d90a49d9099675491990f6|commit]], [[https://git.kernel.org/linus/e25834d7691f0661fa9700c167c48d18752f62bf|commit]] * Qualcomm Kaanapali, a new SoC based around eight high performance Oryon CPU cores [[https://lore.kernel.org/linux-arm-msm/20251215-knp-dts-v4-0-1541bebeb89f@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/725ba2d0e0b9ac1f0bc0c0c166db03201feaa203|commit]], [[https://git.kernel.org/linus/69f155531baa9c6125aa3b911b3ca820f9108a36|commit]], [[https://git.kernel.org/linus/2eeb5767d53f457913d2b378a3bd9e2269a4098d|commit]], [[https://git.kernel.org/linus/1cc3a0a0210697a25e96783cf21f93d28a09ebf7|commit]], [[https://git.kernel.org/linus/0e31dcfefd21ed76ff1b2d05647cd34336ab9772|commit]] * NXP i.MX8QP and i.MX952 are both feature reduced versions of chips we already support, i.e. the i.MX8QM and i.MX952, with fewer CPU cores and I/O interfaces [[https://lore.kernel.org/devicetree/20251223162833.138286-1-francesco@dolcini.it/T/|(cover)]], [[https://git.kernel.org/linus/6b9d8ef2908727dd80eacb307d6a409963e4dfe5|commit]], [[https://git.kernel.org/linus/eb2615ad4643c9e3fc6a3c9082084cec744402b9|commit]], [[https://git.kernel.org/linus/3669332babd0038b714abd3e360be130fd401022|commit]], [[https://git.kernel.org/linus/db97615aea6602ce0f81f320eced9574f808b091|commit]]; support for i.MX952 platform [[https://git.kernel.org/linus/37bb773b4a5a5107b92beda3447a7c6c0cfc1237|commit]], [[https://git.kernel.org/linus/83447a38ba9abac52bc110566d3e117753899f69|commit]], [[https://git.kernel.org/linus/6a8c6f5587337eceb387812b6f47bc16c125b883|commit]], [[https://git.kernel.org/linus/b010c782341b79edbeb80706360b772db908daa6|commit]] * Device Tree Updates * Three server boards use 32-bit ASpeed BMCs (Facebook Anacapa platform [[https://lore.kernel.org/devicetree/20251219091632.1598603-1-sjg168@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/1b3cadbd185a6e8681c3b3b6578d7cf3ea4ca47d|commit]], [[https://git.kernel.org/linus/bc83b7353d2bfefba73193335bacc3542d8a7ae2|commit]], nvidia bmc msx4 cx8 switchboard [[https://lore.kernel.org/devicetree/20251126-msx1_devicetree-v5-0-e508d13e2dda@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/1daabbd6ff20a8b7e87e5eebe74bc7afeb855613|commit]], [[https://git.kernel.org/linus/f28674fab34f07fff9612c3f390d3699bfe8ed90|commit]], asrock rack altrad8 bmc [[https://lore.kernel.org/lkml/20251218161816.38155-1-rebecca@bsdio.com/T/|(cover)]], [[https://git.kernel.org/linus/c4f6b5d254ef060ba92f060e2354fc03cc0b2ba6|commit]], [[https://git.kernel.org/linus/c6d3513c90bd1382d11f82b65c6baac9285b1bf0|commit]]) * One more reference board for 32-bit Microchip LAN9668 [[https://lore.kernel.org/devicetree/20251208083545.3642168-1-horatiu.vultur@microchip.com/T/|(cover)]], [[https://git.kernel.org/linus/d9802af199ad4e9a498879e4cb73763bddd4ae76|commit]], [[https://git.kernel.org/linus/a8e30c9d856ddebad75abaec55c019a7a85b16da|commit]] * meson-s4: add support for Khadas VIM1S [[https://lore.kernel.org/lkml/20260115030015.1334517-1-nick@khadas.com/T/|(cover)]], [[https://git.kernel.org/linus/10a46a7f6ecc243fb9f745c4ec5e1955b49d77b4|commit]], [[https://git.kernel.org/linus/31b72cc32c48205b4f9cf4b0531055be6a028607|commit]], [[https://git.kernel.org/linus/d9fda07af7fbb989cf68ba7d2f370320f05664d8|commit]] * cix: Add !OrangePi 6 Plus board support [[https://lore.kernel.org/devicetree/20260110093406.2700505-1-gary.yang@cixtech.com/T/|(cover)]], [[https://git.kernel.org/linus/01a08fd967301e75b2a9350b28a3f09fa2c3b838|commit]], [[https://git.kernel.org/linus/e39fadd6ef7b797e1db7bb7bf2ed9a1784632a8b|commit]] * Add Radxa CM3J on RPi CM4 IO Board [[https://git.kernel.org/linus/90d88da849393c8353c98bee443410bb32838828|commit]], [[https://git.kernel.org/linus/9103e21ee45f8cdeaa86b2c356a3ad451c140c9f|commit]], [[https://git.kernel.org/linus/d813ddc0b348febf32fc9d7737ba82d2955051ac|commit]] * Support for QNAP TS133 variant [[https://git.kernel.org/linus/f0761f6be5ed62bc282349c46784d676571ace83|commit]], [[https://git.kernel.org/linus/5a16e131ddbacdd7acfb8cab6ff0ca1c57339600|commit]], [[https://git.kernel.org/linus/a81a2d211344675de4d945eb2070e3ef1202060f|commit]], [[https://git.kernel.org/linus/ae2208dfa2ac3872f2a0d4c72f1a29fcce7b56a8|commit]], [[https://git.kernel.org/linus/26cfaee2972c95a6d3ad85549df089a4ee93a551|commit]] * a7k: add COM Express boards [[https://lore.kernel.org/lkml/20260125152347.2518538-1-enachman@marvell.com/T/|(cover)]], [[https://git.kernel.org/linus/b3370479a5f7edf4baf0e307f1163f8fe9e09e17|commit]], [[https://git.kernel.org/linus/fcaf733ca526b69595ed1d227e2cc59ddd24eff7|commit]] * fsl: Add i.MX8MP FRDM board [[https://git.kernel.org/linus/def8f003d4f3fa5eac34e0d1ba3ba43b681e116a|commit]], [[https://git.kernel.org/linus/bb5b318f11e6f41c8cbb51848555f58b9ef175e6|commit]] * Add frdm i.mx 91 development board support [[https://lore.kernel.org/devicetree/20251230-imx91_frdm-v3-0-60cac61c96ec@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/b4bf5e55899e8c2662a6f0e221128f590ac5f331|commit]] * Add i.mx952 support [[https://lore.kernel.org/lkml/20260302-imx952-v1-0-069d6167c0cb@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/b516a4dd6a1ff7ddbaf3ab30ddec88088a6ec9e6|commit]], [[https://git.kernel.org/linus/a5aa8551d0046ec701e8962f83361165ccf640a4|commit]] * Add devicetree for nxp i.mx93 frdm board [[https://lore.kernel.org/devicetree/20251218-fpg-nxp-imx93-frdm-v4-0-cd3a9f6ac89a@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/a95260063fb3e01878a28ed23f10241b9e138ae9|commit]], [[https://git.kernel.org/linus/eb2f28413e23c219188d3e1a2ce8bca9894f9832|commit]] * Add device tree support for nxp i.mx95 15x15 frdm board [[https://lore.kernel.org/devicetree/20260116-127-v3-0-3dc49545a745@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/b17171492e9897f2c283d7b62d7a283cbbeee6d0|commit]], [[https://git.kernel.org/linus/9bdfeed989b126a3c9c5a6f74ad2d96784b69d27|commit]] * ifm VHIP4 !EvalBoard v1 and v2 [[https://git.kernel.org/linus/6f55fc60dc2c465b536cd69b71b82266d0da52c9|commit]], [[https://git.kernel.org/linus/a642165719daa8a1b5aef86dcf6d6454082ac1d1|commit]], [[https://git.kernel.org/linus/347e8b20acfeb2861e28892062b6dc3d9f579981|commit]], [[https://git.kernel.org/linus/5eb7405db99b171494f9aa3d37e2985ae74ee37f|commit]] * Add TQ-Systems boards MBLS1028A and MBLS1028A-IND [[https://git.kernel.org/linus/51d857a0168a0101fb691a9191feed771aa78ecd|commit]], [[https://git.kernel.org/linus/0538ca1f102d87b2e98d38c7ca28915abee44777|commit]] * Add support for ezurio mediatek platforms [[https://lore.kernel.org/devicetree/20251203-review-v5-0-b26d5512c6af@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a7a53f7482f96f88d6ab2064828f6f6bdb93c43e|commit]], [[https://git.kernel.org/linus/07a4700f95745671e8f257d56db6aaf244350111|commit]], [[https://git.kernel.org/linus/18e1d95faeaca2e1b3887d2c44fe44b8bb2f123c|commit]], [[https://git.kernel.org/linus/9fda4a8a479f030a2a267b1823ffe0687aea8fd4|commit]], [[https://git.kernel.org/linus/fe96ff075f960abb9dd1c99c4c4e7f79c4e10172|commit]] * Add medion sprchrgd 14 s1 (x1e78100) [[https://lore.kernel.org/linux-arm-msm/20251204155212.230058-1-ggo@tuxedocomputers.com/T/|(cover)]], [[https://git.kernel.org/linus/9f76530e52b51a93643dfd2aa893caf00047a563|commit]], [[https://git.kernel.org/linus/32d68e51bf492580bc2b84adcad8a20427d4b2a0|commit]], [[https://git.kernel.org/linus/a4c5af1a94c401e99d7eb22707dd848d54bff80d|commit]], [[https://git.kernel.org/linus/5851f2a20c60dd5aa39b99e4872e96ce358598b6|commit]], [[https://git.kernel.org/linus/8cf65490cdb03c0254448a54f9098686bf9029ec|commit]], [[https://git.kernel.org/linus/23ec0d891e09441b3d0353b56b73e35e3f3c5dad|commit]] * qcom: Add qcs6490-rubikpi3 board dts [[https://lore.kernel.org/linux-arm-msm/20251126-rubikpi-next-20251125-v7-0-e46095b80529@thundersoft.com/T/|(cover)]], [[https://git.kernel.org/linus/640565d3f3654b7e8848c5bcf01843f04bfa769a|commit]], [[https://git.kernel.org/linus/f055a39f6874b0e86926fe17f40b676cf287ac11|commit]] * Add support for pixel 3 and pixel 3 xl [[https://lore.kernel.org/linux-arm-msm/20251214-pixel-3-v7-0-b1c0cf6f224d@ixit.cz/T/|(cover)]], [[https://git.kernel.org/linus/3845bc888660a238920fdba2f85fe284f01fb95f|commit]], [[https://git.kernel.org/linus/dbb5d6010c1ecf01560af405c5b503f4cf2b1149|commit]], [[https://git.kernel.org/linus/be85d4124dbe6ed597c7a6a16e53d8b98684fab6|commit]], [[https://git.kernel.org/linus/5f0cc92fa0dab7cbb999dedc653f5857a62b2022|commit]], [[https://git.kernel.org/linus/cbc1e99a9e0a6c8b22ddcbb40ca37457066f9493|commit]], [[https://git.kernel.org/linus/ed2b818a24760d7adc92d2e9b0e135f2c33edd8c|commit]], [[https://git.kernel.org/linus/29e208a08a8ebb0f214e815eee0a7beff778864f|commit]], [[https://git.kernel.org/linus/a678adbf2d22edcb9078f8ad56706891a0ac9e80|commit]] * imx_rproc: Support i.MX95 [[https://lore.kernel.org/linux-remoteproc/20260109-imx95-rproc-2026-1-8-v6-0-d2fefb36263d@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/ac3ea0730a1380f00109e69149f3be1a058c4ba9|commit]], [[https://git.kernel.org/linus/454cb78611479bd5da4f191480456f42aca7f07b|commit]], [[https://git.kernel.org/linus/edd2a9956055ecb50e230cd02c7791205fc8d009|commit]], [[https://git.kernel.org/linus/d8ab94fa4370337158e96ea08d41e6e2d8fcb2a2|commit]], [[https://git.kernel.org/linus/1ae680bbe77fe124916bd28a1dd6548847c56914|commit]], [[https://git.kernel.org/linus/a3bf6ee15a59d25724746f284de167af6dc76baf|commit]] * Microsoft surface pro 11 support [[https://lore.kernel.org/linux-arm-msm/20251220-surface-sp11-for-next-v6-0-81f7451edb77@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/8325294ca9688398ea55843f03ebd1479b9d2334|commit]], [[https://git.kernel.org/linus/380f8a4c734b029100dea5bc9e2f8982f72da6b9|commit]], [[https://git.kernel.org/linus/c4a069095395ecd1e936f488511dfd9016b9c479|commit]], [[https://git.kernel.org/linus/0d72ccaa1e840b4c8723a929b2febbedcf5f80cd|commit]] * meson-s4: add support for Khadas VIM1S [[https://git.kernel.org/linus/10a46a7f6ecc243fb9f745c4ec5e1955b49d77b4|commit]], [[https://git.kernel.org/linus/31b72cc32c48205b4f9cf4b0531055be6a028607|commit]], [[https://git.kernel.org/linus/44e3f867fd3f75123b0e8e460f723a115b0d8cd4|commit]] * qcom: add support for Arduino UnoQ SBC [[https://lore.kernel.org/linux-arm-msm/20251120155825.121483-1-r.mereu.kernel@arduino.cc/T/|(cover)]], [[https://git.kernel.org/linus/d16ffac771715a8c94611b6f8088a3e800bcf5bf|commit]], [[https://git.kernel.org/linus/a7bde7c10902a0f6f903d3bbe67461f2b402a9ca|commit]], [[https://git.kernel.org/linus/43a3adb6dd39d98bf84e04569e7604be5e5c0d79|commit]], [[https://git.kernel.org/linus/311d173da672397a58498841299ec613ff9eb96b|commit]], [[https://git.kernel.org/linus/925ac1f6ec75a773e0ec8b91673b647f6d456ccb|commit]], [[https://git.kernel.org/linus/3f745bc0f11f66465e3fa19eb0c808c5b39cb0e5|commit]] * qcom: sm8750: Add Iris VPU v3.5 [[https://lore.kernel.org/linux-arm-msm/20260106-b4-sm8750-iris-dts-v4-0-97db1d1df3dd@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/c0d11ff904753a99e0f6efd29e614268bc6e98db|commit]], [[https://git.kernel.org/linus/10d764c8cb1bdaff15020115aa49ee7a0489655b|commit]], [[https://git.kernel.org/linus/ad0721bba4156d4d06c5f79b0a32e9d876f5ad0f|commit]] * Add medion sprchrgd 14 s1 (x1e78100) [[https://lore.kernel.org/linux-arm-msm/20251204155212.230058-1-ggo@tuxedocomputers.com/T/|(cover)]], [[https://git.kernel.org/linus/9f76530e52b51a93643dfd2aa893caf00047a563|commit]], [[https://git.kernel.org/linus/32d68e51bf492580bc2b84adcad8a20427d4b2a0|commit]], [[https://git.kernel.org/linus/a4c5af1a94c401e99d7eb22707dd848d54bff80d|commit]], [[https://git.kernel.org/linus/5851f2a20c60dd5aa39b99e4872e96ce358598b6|commit]], [[https://git.kernel.org/linus/8cf65490cdb03c0254448a54f9098686bf9029ec|commit]], [[https://git.kernel.org/linus/23ec0d891e09441b3d0353b56b73e35e3f3c5dad|commit]] * rockchip: Add device tree for the Orange Pi CM5 Base board [[https://lore.kernel.org/devicetree/20251027215637.20715-1-laurent.pinchart@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/5d719a4703566267492129d13516d87066f288f8|commit]], [[https://git.kernel.org/linus/3cdaec4d5e8c24ce3298c93bac80c31820b91aff|commit]] * Add radxa cm5 module and io board dts [[https://lore.kernel.org/devicetree/20251205120703.14721-1-naoki@radxa.com/T/|(cover)]], [[https://git.kernel.org/linus/7beae528ddadd1c3f7d5670f937d993b0f39e0ea|commit]], [[https://git.kernel.org/linus/36ee19ba42dcebe6a15ec6b442a7d32eb327eee4|commit]], [[https://git.kernel.org/linus/51babf83f424a695179183204226d453c8af7dc7|commit]] * Add Anbernic RG-DS [[https://git.kernel.org/linus/84f42966b80eaec59349c7b474ebd6b0943731e4|commit]], [[https://git.kernel.org/linus/3c8399d31c8eb10aa34bccec1f49b51694e67b00|commit]], [[https://git.kernel.org/linus/9e3f8ae040009f66367b2ba1081b7e313b39aeff|commit]] * rockchip: Add TPS65185 for !PineNote [[https://git.kernel.org/linus/f1ebfaeee3200b0d12f5f2079c429f0eb1512a79|commit]] * socfpga: agilex5: add support for modular board [[https://git.kernel.org/linus/ebb6a68a4857107f3574ef058f2b83f3288d0d08|commit]] * Introduce new nvidia systems [[https://lore.kernel.org/platform-driver-x86/20260128075939.2704019-1-oleksandrs@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/dbf76f865842de70d7fd7edbbb482778d70ba47e|commit]], [[https://git.kernel.org/linus/059417ea916f6d9cf80ebb3a09645856373d5ed5|commit]] * imx: Spport i.MX9[4,52] [[https://git.kernel.org/linus/4acaf8b293c8b03301508764dc3e586658186730|commit]] * qcom: llcc: Add support for Glymur SoC [[https://lore.kernel.org/linux-arm-msm/20251211-glymur_llcc_enablement-v3-0-43457b354b0d@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/bd0b8028ce5fbc7d9f5c2751c20661b0d8114e60|commit]], [[https://git.kernel.org/linus/0418592550c6a370b2b8a5cbebd53fb7dd63d837|commit]] * rockchip: Add Radxa CM3J [[https://git.kernel.org/linus/90d88da849393c8353c98bee443410bb32838828|commit]], [[https://git.kernel.org/linus/9103e21ee45f8cdeaa86b2c356a3ad451c140c9f|commit]], [[https://git.kernel.org/linus/d813ddc0b348febf32fc9d7737ba82d2955051ac|commit]] * samsung: exynos-chipid: add gs101 support [[https://lore.kernel.org/devicetree/20251222-gs101-chipid-v4-0-aa8e20ce7bb3@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/12da6f08a07ddaddd336af878350d30449d23a54|commit]], [[https://git.kernel.org/linus/9133ae2119cb3c948675dc566eebf11cc4bb1681|commit]], [[https://git.kernel.org/linus/c38cfc303db9ab4d5f482ae8e36e5a677db8eee6|commit]], [[https://git.kernel.org/linus/732af51910960535382db3f6e0b33e2e2b0ff7b6|commit]], [[https://git.kernel.org/linus/9afdf3e1a59e23180540ecb1fe3287c308cc8113|commit]] * Drop am335x-base0033 devicetree [[https://git.kernel.org/linus/3d43205d0efb4da3e799e969c92e70e4d9e4d124|commit]] * cavium: Drop thunder2 [[https://git.kernel.org/linus/f25aa20e92305c7ab7a6387b8ef7b6e83f8a49fb|commit]] * samsung: exynos-chipid: add gs101 support [[https://lore.kernel.org/devicetree/20251222-gs101-chipid-v4-0-aa8e20ce7bb3@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/12da6f08a07ddaddd336af878350d30449d23a54|commit]], [[https://git.kernel.org/linus/9133ae2119cb3c948675dc566eebf11cc4bb1681|commit]], [[https://git.kernel.org/linus/c38cfc303db9ab4d5f482ae8e36e5a677db8eee6|commit]], [[https://git.kernel.org/linus/732af51910960535382db3f6e0b33e2e2b0ff7b6|commit]], [[https://git.kernel.org/linus/9afdf3e1a59e23180540ecb1fe3287c308cc8113|commit]] * Mediatek interconnect cleanup and mt8196 enablement [[https://lore.kernel.org/devicetree/20251124-mt8196-dvfsrc-v2-0-d9c1334db9f3@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/831ee17036e259da23a6313e28a3cbdda221a88c|commit]], [[https://git.kernel.org/linus/dee49a1860168f912e3b3444626c060e9e72d491|commit]], [[https://git.kernel.org/linus/23f1b4922a9135515e37d3bbad766e311845071f|commit]], [[https://git.kernel.org/linus/c2488fecba681d632a3dbb6b2f33c39df2cb7be9|commit]], [[https://git.kernel.org/linus/ddb5862a43b1f40ca0a5cc16882277d8d07b966a|commit]], [[https://git.kernel.org/linus/7cf9db2aca552f5f537d46f1e52e0ab08ddc2d64|commit]], [[https://git.kernel.org/linus/75cf308fee7e4b3038741f96fd90afc3bd871e64|commit]], [[https://git.kernel.org/linus/39aa8c4e762ea9b00d66cc55957527167ed89435|commit]], [[https://git.kernel.org/linus/3da293d70005496317d1ff3a49b89c29dd7c21e8|commit]], [[https://git.kernel.org/linus/ce69a970390ce182ccece5dea61083588ca5379a|commit]], [[https://git.kernel.org/linus/510f8214440c553e81774c5822437ccf154e9e38|commit]], [[https://git.kernel.org/linus/6ffd02b82243d9907b5f5d2c7a2fc6a62669eece|commit]] * Add icu support for renesas rz/v2n soc [[https://lore.kernel.org/linux-kernel/20251127162447.320971-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/c71869c61d7cf2070421cdcc4dd64c4c860df49d|commit]], [[https://git.kernel.org/linus/f6462eb04f24447e3f9cc33071bbcb888f521985|commit]] * Add icu support for rz/t2h and rz/n2h [[https://lore.kernel.org/linux-kernel/20251201112933.488801-1-cosmin-gabriel.tanislav.xa@renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/a6568d82091d279c8fbcdb1d30b46c23756b9145|commit]], [[https://git.kernel.org/linus/13e7b3305b647cf58c47c979fe8a04e08caa6098|commit]], [[https://git.kernel.org/linus/9b1138aef9a254dfc3412673a2dccfcd7f54c844|commit]], [[https://git.kernel.org/linus/97232dc43e83987e2c5fc2fb875b31c745ac9c01|commit]] * iommu/arm-smmu-v3: Add device-tree support for CMDQV driver [[https://git.kernel.org/linus/ea69dc4e207b09fb9adb6dab1901739d64853090|commit]] * Add gce support for mt8196 [[https://lore.kernel.org/linux-devicetree/20251017065028.1676930-1-jason-jh.lin@mediatek.com/T/|(cover)]], [[https://git.kernel.org/linus/355531a5ffd9e26f4d87ab34015c679e32d60e3c|commit]], [[https://git.kernel.org/linus/a195c7ccfb7a21b8118139835e25936ec8722596|commit]], [[https://git.kernel.org/linus/7d834d5ce5cb780b926ea0484a80b47bafbb3b64|commit]], [[https://git.kernel.org/linus/c775b23b1f78626daca804bd26f1460368f20406|commit]], [[https://git.kernel.org/linus/7063a901fe1ae9c7b875917df5945806f04f6921|commit]], [[https://git.kernel.org/linus/ddb5d0c941c64b51b003f62df3596682a6591c35|commit]], [[https://git.kernel.org/linus/244d11ae7d12514089eb481589d5d7d2de4572ef|commit]], [[https://git.kernel.org/linus/4bf783d8415cc397334b375a05f0b2321fc6c319|commit]], [[https://git.kernel.org/linus/40dc5bbad63b5f60dd2e69a32def1a2673cba09e|commit]], [[https://git.kernel.org/linus/22ce09ce1af574747fce072c3f62c29c440538d7|commit]] * dts: qcom: msm8960: expressatt: Add more peripherals [[https://lore.kernel.org/linux-arm-msm/20251124-expressatt_nfc_accel_magn_light-v4-0-9c5686ad67e2@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4535af3dc91c43c16c31e4e2ad9e79cead0ef308|commit]], [[https://git.kernel.org/linus/72c6158e17cd3ef2069423ae70a24b955b1c0b72|commit]], [[https://git.kernel.org/linus/7f07c27808e68af92cbf6d352f675248c3ea7cab|commit]], [[https://git.kernel.org/linus/3649a120a7106aca89a4eddbddbc2e5a85aa64f9|commit]], [[https://git.kernel.org/linus/7f45d77240f9fc9948ba4d9c4eec3b97c3e2c51d|commit]] * Enable dpu and display port for qualcomm qcs8300-ride platform [[https://lore.kernel.org/linux-arm-msm/20251117-dts_qcs8300-v7-0-bf42d39e7828@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/6710f10459c159da45e227f50b8db9c33ee906b2|commit]], [[https://git.kernel.org/linus/be4a8c25ae3a367eab0ae91ded89a96ae9627b72|commit]] * General rk3368 hdmi support and 2 outputs for rk3368-lion [[https://lore.kernel.org/linux-kernel/20260114230707.4175162-1-heiko@sntech.de/T/|(cover)]], [[https://git.kernel.org/linus/4f3df9abf44bd92ecd5d8c3018ddefa7f5bf74d0|commit]], [[https://git.kernel.org/linus/6d60168c6d2f76917b3f71d2a6807c6d8dd24363|commit]], [[https://git.kernel.org/linus/385430244e85e245f071ab158f7e4c7b2b5d99cb|commit]], [[https://git.kernel.org/linus/f03f3e0a77a72f6f6284aff0da6d21d6508e57ac|commit]], [[https://git.kernel.org/linus/7f43ac104af7d3d4158ec306d4ca1c897ecce78c|commit]] * Add radxa cm5 module and io board dts [[https://lore.kernel.org/devicetree/20251205120703.14721-1-naoki@radxa.com/T/|(cover)]], [[https://git.kernel.org/linus/7beae528ddadd1c3f7d5670f937d993b0f39e0ea|commit]], [[https://git.kernel.org/linus/36ee19ba42dcebe6a15ec6b442a7d32eb327eee4|commit]], [[https://git.kernel.org/linus/51babf83f424a695179183204226d453c8af7dc7|commit]] * Apple silicon type-c phy [[https://lore.kernel.org/linux-kernel/20251214-b4-atcphy-v3-0-ba82b20e9459@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/a722de305eacb382a5d306f9f8e502f81bab682d|commit]], [[https://git.kernel.org/linus/c1538b87caef6b2783502c820457be092a7266be|commit]], [[https://git.kernel.org/linus/8e98ca1e74db2ae051c9b545d42b879efa5a2f6c|commit]] * coresight-tnoc: Add support for Interconnect TNOC [[https://lore.kernel.org/linux-arm-msm/20251015-itnoc-v5-0-d7ca2b1cc6df@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/2b3625a83245e414a0a7abe3906a9972a40b1940|commit]], [[https://git.kernel.org/linus/5799dee92dc244d750043373bf2f634e13398d52|commit]], [[https://git.kernel.org/linus/4d9024d14d1bacb097f33ef7d3ed1696d6a46c88|commit]] * coresight: Add sysfs nodes to configure tpda's registers [[https://lore.kernel.org/linux-kernel/20251223-add_sysfs_nodes_to_configure_tpda-v8-0-4c95db608b62@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f9cc5b5a9e9a84d423cdc48882f1c93f1f90a32b|commit]], [[https://git.kernel.org/linus/8e1c358a3b0e69eb527bb6723366b92e982235c3|commit]], [[https://git.kernel.org/linus/33f04ead7c498f29bca875783f13542e5ccd17ac|commit]], [[https://git.kernel.org/linus/a089d585a7f4fa85b5e1d78c5308e27a0d875b17|commit]] * irqchip/gic-v5: Code first ACPI boot support [[https://lore.kernel.org/linux-acpi/20260115-gicv5-host-acpi-v3-0-c13a9a150388@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0323897a88afd4ddb3d44cd6b1b33ccd6a4b76cb|commit]], [[https://git.kernel.org/linus/a08df2fbba47be20b5769b054d9a19ddee567bdc|commit]], [[https://git.kernel.org/linus/1c406fcdf0b0b8d99b69b382252207fafc0529d7|commit]], [[https://git.kernel.org/linus/35866efa52feaf48cc54a0745851a555654e1446|commit]], [[https://git.kernel.org/linus/a97efa5ba594642b86fb6702f38ed0d18e3b0269|commit]], [[https://git.kernel.org/linus/05bff3419adaa272713be4c07d287756a4b2c5f5|commit]] * perf * arm-cmn: Support CMN-600AE [[https://git.kernel.org/linus/12a94953c37e834c3eabb839ce057094946fe67a|commit]] * arm_dsu: Support DSU-110 [[https://git.kernel.org/linus/0113affc91014a14251890c3af8f2bade1c20222|commit]] * arm_dsu: Support DSU-120 [[https://git.kernel.org/linus/85c0dbd8b6e2ca5e672560c7cd86801bffa0d884|commit]] * entry: Convert to Generic Entry [[https://lore.kernel.org/lkml/20260128031934.3906955-1-ruanjinjie@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/578b21fd3ab2d9901ce40ed802e428a41a40610d|commit]], [[https://git.kernel.org/linus/56e62a73702836017564eaacd5212e4d0fa1c01d|commit]], [[https://git.kernel.org/linus/31c9387d0d84bc1d643a0c30155b6d92d05c92fc|commit]], [[https://git.kernel.org/linus/057fbfb25cde4a368418f3f720cdc31d48800c4d|commit]] * KVM * Add support for FEAT_IDST [[https://lore.kernel.org/kvm/20260108173233.2911955-1-maz@kernel.org/|(cover)]], [[https://git.kernel.org/linus/4a7fe842b8a3f3c173c3075f03c60c3f9f62e299|commit]], [[https://git.kernel.org/linus/1ad9767accfcb81f404aa3d37d46b3eb494dce2f|commit]], [[https://git.kernel.org/linus/19f75678238734ef383f9e10d8e1020873e97170|commit]], [[https://git.kernel.org/linus/d78a14decd494caf72ea0144624621e7e43ae451|commit]], [[https://git.kernel.org/linus/f07ef1bef67ca08799df262cc901971ac274783d|commit]], [[https://git.kernel.org/linus/70a5ce4efc0e1194718aad6f26332c99e6a119db|commit]], [[https://git.kernel.org/linus/e5d40a5a97c1d57e89aa5f324734065c6580b436|commit]], [[https://git.kernel.org/linus/592dc2c020686536dae1c427c78cf558a3df4414|commit]], [[https://git.kernel.org/linus/b638a9d0f8965b98403022cb91d8f3b31170eb35|commit]] * Add support for 64-byte single-copy atomic instructions (LS64/LS64V) [[https://lore.kernel.org/lkml/20251223093343.3822498-1-wangzhou1@hisilicon.com/T/|(cover)]], [[https://git.kernel.org/linus/f174a9ffcd48d78a45d560c02ce4071ded036b53|commit]], [[https://git.kernel.org/linus/902eebac8fa3bad1c369f48f2eaf859755ad9e6d|commit]], [[https://git.kernel.org/linus/2937aeec9dc5d25a02c1415a56d88ee4cc17ad83|commit]], [[https://git.kernel.org/linus/dea58da4b6fede082d9f38ce069090fd6d43f4e2|commit]], [[https://git.kernel.org/linus/151b92c92a45704216c37d6238efbffd84aac538|commit]], [[https://git.kernel.org/linus/58ce78667a641f93afa0c152c700a1673383d323|commit]], [[https://git.kernel.org/linus/57a96356bb6942e16283138d0a42baad29169ed8|commit]] * Add debugfs file dumping computed RESx values [[https://lore.kernel.org/kvm/20260126121655.1641736-21-maz@kernel.org/|(cover)]], [[https://git.kernel.org/linus/0a35bd285f43c26ccec33872fc6bb679069eaea8|commit]], [[https://git.kernel.org/linus/4faf52106de73cdd1f34752afd60b256721e97b5|commit]], [[https://git.kernel.org/linus/a3c92001812358c35c55c844c1e0d9de8caf13fe|commit]], [[https://git.kernel.org/linus/0879478913dd671b0aed1e3960c4b35fb8546ab4|commit]], [[https://git.kernel.org/linus/f9d58956423844237e18a758dc0f1b2cf6480042|commit]], [[https://git.kernel.org/linus/bbea27636e660df907ebf0d36e3dfca5c77cfbc0|commit]], [[https://git.kernel.org/linus/459fc4e77e1ac932e47cb4a6d1a01b3be79fd41c|commit]], [[https://git.kernel.org/linus/c27b8b7aabefb8ef226c3dfbc86ef7df6a9958c2|commit]], [[https://git.kernel.org/linus/fb86207bdc5bf4d5743eab78d6babbecda6c2609|commit]], [[https://git.kernel.org/linus/8d94458263bb2d44d8ba461327a1e18c05cfc453|commit]], [[https://git.kernel.org/linus/ad90512f12fef5506d1f72cdfbd720eb701eab8c|commit]], [[https://git.kernel.org/linus/d406fcb2030e3efe2c5a7f043028cb3727f522d8|commit]], [[https://git.kernel.org/linus/d2f629aa75bef1c346f17ca195271582dafc6f3b|commit]], [[https://git.kernel.org/linus/f01e3429cf0e4b1ab20c9d51ebfa0d8514d8fe4d|commit]], [[https://git.kernel.org/linus/ab1f377b4c930e8d117cc461bd64d5866fc6aab8|commit]], [[https://git.kernel.org/linus/d784cfe697abdfd53f332d39d0cffcf03cbcafaa|commit]], [[https://git.kernel.org/linus/d65bf6e317e7bb13612bd94e01c5a11b6fc67e9d|commit]], [[https://git.kernel.org/linus/fb40cb15e8ad1e7511966a953de0f409aaae4398|commit]], [[https://git.kernel.org/linus/e8ef27900c6a8c0727dcf62d4112d08c5046d33e|commit]], [[https://git.kernel.org/linus/edba407843340c4b66134fce6c54a007c1ac83a2|commit]] * Add support for TSV110 Spectre-BHB mitigation [[https://git.kernel.org/linus/e3baa5d4b361276efeb87b20d8beced451a7dbd5|commit]] * Cleanup and improve syscall_get_arguments() [[https://lore.kernel.org/lkml/20251201120633.1193122-1-ruanjinjie@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/35c3dcb1ac2c7e347b38f3b0bccb0a2d1dbda25c|commit]], [[https://git.kernel.org/linus/98cc091262effcdbdeb1c2ee0a25981aefd2274c|commit]] * Unconditionally enable LSE support [[https://git.kernel.org/linus/6191b25d8bd902c1a107170df54bddbb0e2335f8|commit]] * Unconditionally enable PAN support [[https://git.kernel.org/linus/018a231b0260ebd85eddca3fec85031b59f50117|commit]] * bpf: Add fsession support [[https://lore.kernel.org/bpf/20260131144950.16294-1-leon.hwang@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/8798902f2b8bcae6f90229a1a1496b48ddda2972|commit]], [[https://git.kernel.org/linus/e3aa56b3ac175bccb8fe60d652a3df2ea6a68a1e|commit]], [[https://git.kernel.org/linus/7f10da2133b18b0f1bc02d58671883537e212279|commit]] * X86 * iommu/amd: Introduce Nested Translation support [[https://lore.kernel.org/linux-kernel/20260115060814.10692-1-suravee.suthikulpanit@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/7d8b06ecc45bd679dec58d2cc2bd86223d4e076d|commit]], [[https://git.kernel.org/linus/5335fc1657493f352fd90121fcb4e5ff2e2fc796|commit]], [[https://git.kernel.org/linus/11cfa782f01b2d988175011c19906180a62dd893|commit]], [[https://git.kernel.org/linus/9b467a5af856dce9aba17bb6db3ed34ed79f5d90|commit]], [[https://git.kernel.org/linus/e05698c10d980ac0a0b57ed81ec9353b9e9533c6|commit]], [[https://git.kernel.org/linus/b2bb0573ddb2dcac7ebcd65708e172ce0a1de754|commit]], [[https://git.kernel.org/linus/b43a29def24f38a28085635e2be39566671976a8|commit]], [[https://git.kernel.org/linus/e113a72576d6056aa91925beaa7256533a808750|commit]], [[https://git.kernel.org/linus/774180a74abc89fd1389f51a6f93dbfcded365c2|commit]], [[https://git.kernel.org/linus/757d2b1fdf5b7d6eead5963a49b5780617987ab8|commit]], [[https://git.kernel.org/linus/4e1b09d90bdfc79b2a024121a1f3b5e41c80de81|commit]], [[https://git.kernel.org/linus/93eee2a49c1b33b73921a915a1ec47845bd60551|commit]], [[https://git.kernel.org/linus/103f4e7c8544961c72dd9f68eed384a2f1194d03|commit]] * KVM * Advertise new instruction CPUIDs for Intel Diamond Rapids [[https://git.kernel.org/linus/f24ef0093dd8cf60ed7f93a82fb16335fdcbc310|commit]], [[https://git.kernel.org/linus/58cbaf64e6530fa37752ff1362129842ac94fee0|commit]], [[https://git.kernel.org/linus/2ff8fb1e65e1a97f75f15935f84b9d2882a49623|commit]], [[https://git.kernel.org/linus/062768f426895b958417c85582826e20c44f477c|commit]] * SEV-SNP: Add KVM support for SNP certificate fetching [[https://lore.kernel.org/kvm/20260109231732.1160759-1-michael.roth@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/fa9893fadbc245e179cb17f3c371c67471b5a8a8|commit]], [[https://git.kernel.org/linus/20c3c4108d58f87c711bf44cb0b498b3ac5af6bf|commit]] * SVM: Virtualize and advertise support for ERAPS [[https://git.kernel.org/linus/db5e82496492b4890b1c3356581c016767ed527f|commit]] * Add support for mediated vPMUs [[https://lore.kernel.org/kvm/20251206001720.468579-1-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/b825444b6179eb071e66ca3da5ac12d4dbd808d5|commit]], [[https://git.kernel.org/linus/b9e52b11d2e5e403afaf69a7f8d6b29f8380ed38|commit]], [[https://git.kernel.org/linus/991bdf7e9d6cc74c1de215d1a05c23ff61076bf0|commit]], [[https://git.kernel.org/linus/eff95e170275d9e80b968f335cd03d0ac250d2d1|commit]], [[https://git.kernel.org/linus/f5c7de8f84a152d559256aa4d0fc953118b73ca4|commit]], [[https://git.kernel.org/linus/4593b4b6e218a0f21afbacc8124cf469d2d04094|commit]], [[https://git.kernel.org/linus/42457a7fb6cacca83be4deaf202ac3e45830daf2|commit]], [[https://git.kernel.org/linus/a05385d84b2af64600fc84b027bea481e8f6261d|commit]], [[https://git.kernel.org/linus/560ac136f25da2da44a8b68d581adfdc8230b7e2|commit]], [[https://git.kernel.org/linus/b456a6ba5756b6fb7e651775343e713bd08418e7|commit]], [[https://git.kernel.org/linus/c8824a95d9673763a0a9d642f8c79b2162296923|commit]], [[https://git.kernel.org/linus/4280d79587a3fd4bf9415705536fe385467c5f44|commit]], [[https://git.kernel.org/linus/65eb3a9a8a34fa9188e0ab5e657d84ce4fa242a7|commit]], [[https://git.kernel.org/linus/4b24910c056995c0c0fa7c1b142696443b05fd8e|commit]], [[https://git.kernel.org/linus/51f34b1e650fc5843530266cea4341750bd1ae37|commit]], [[https://git.kernel.org/linus/3e51822b2fdf695bda50c2c3f88d6ab022a9e6f3|commit]], [[https://git.kernel.org/linus/bfee4f07d88038f7e662652718e21c60b62ef3a1|commit]], [[https://git.kernel.org/linus/9ba0bb4ae76a8ee037257499165a4370306c0eac|commit]], [[https://git.kernel.org/linus/1c4ba7286afba9842f295fc7a3dbe74acc6a92af|commit]], [[https://git.kernel.org/linus/80624272129eacc10cecb30f004cfa611be04770|commit]], [[https://git.kernel.org/linus/d3ba32d1ff2a206621475325c009ab5b51882de1|commit]], [[https://git.kernel.org/linus/2904df6692f429853cf99b4b47c8592b2f49edaa|commit]], [[https://git.kernel.org/linus/0ea0d6314870493ac723afefb6257be71f4c636f|commit]], [[https://git.kernel.org/linus/02918f0077925994b04be147875b6de8b63ca249|commit]], [[https://git.kernel.org/linus/3db871fe185baca66e78b56a230e236af40f1027|commit]], [[https://git.kernel.org/linus/a2f4ba534cc5d681a2d017c82e282bb32d8447df|commit]], [[https://git.kernel.org/linus/56bb2736975068cc03648718bb8e50a456ce7173|commit]], [[https://git.kernel.org/linus/f7a65e58d64340c3c0e390ea4e1c4857cd451f1f|commit]], [[https://git.kernel.org/linus/283a5aa57b2223abf2f73afcc714c4d4553660f2|commit]], [[https://git.kernel.org/linus/cb58327c4c8ad9e81d3a2f17adaf3ab57066f369|commit]], [[https://git.kernel.org/linus/88ebc2a3199cb5f16aff20673ed97b63a4295989|commit]], [[https://git.kernel.org/linus/3b36160d9406863812883c96c1efc8bc5c04e2cc|commit]], [[https://git.kernel.org/linus/860bcb1021f5234820592853d56ca12f69e9c81f|commit]], [[https://git.kernel.org/linus/b0b6a8d3be16ea742bf835407e9968378c0c753c|commit]], [[https://git.kernel.org/linus/462f092dc55c0eb97da02dd0c773a4394850dd1b|commit]], [[https://git.kernel.org/linus/58f21a01417f273b4246c885558c252e345681b3|commit]], [[https://git.kernel.org/linus/0bd29379114b9c669cdabf7d6c08c0c1ea41861c|commit]], [[https://git.kernel.org/linus/84ac00042a28642cc974a0a250fab7df050a5dd5|commit]], [[https://git.kernel.org/linus/2ed57bb8997610b33cb92c26ccb9a91b2966fff8|commit]], [[https://git.kernel.org/linus/0c4ff0866fc1b0bf8c1d8d5f27fedc6dd9c51183|commit]], [[https://git.kernel.org/linus/2239d137a71d77c7610434473b0c8cfde90d4116|commit]], [[https://git.kernel.org/linus/c3d6a7210a4de909683a36779f5b8567f79a3688|commit]], [[https://git.kernel.org/linus/9757a5aebcd6ca808d5b80831649438a017478ad|commit]], [[https://git.kernel.org/linus/d374b89edbb9a8d552e03348f59287ff779b4c9d|commit]] * fs/resctrl telemetry monitoring [[https://lore.kernel.org/linux-kernel/20251217172121.12030-1-tony.luck@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/03eb578b37659e10bed14c2d9e7cc45dfe24123b|commit]], [[https://git.kernel.org/linus/0d6447623d788806b5504182032a0837ffa2174c|commit]], [[https://git.kernel.org/linus/6396fc5351ea9130a72f6a2fc58eb7298ce6c15a|commit]], [[https://git.kernel.org/linus/c1b630573c8ca51a89bd480f7eeaf8754c7609f2|commit]], [[https://git.kernel.org/linus/97fec06d35b2c1ce6d80cf3b01bfddd82c720a2d|commit]], [[https://git.kernel.org/linus/ad5c2ff75e0c53d2588dfc10eb87458e759b6bbe|commit]], [[https://git.kernel.org/linus/6b10cf7b6ea857cdf9570e21c077a05803f60575|commit]], [[https://git.kernel.org/linus/4bc3ef46ff41d5e7ba557e56e9cd2031527cd7f8|commit]], [[https://git.kernel.org/linus/9c214d10c50990c7a61b95887493df9ae713eec5|commit]], [[https://git.kernel.org/linus/dd110880e80d35ad07e460e7a8da007c8058e7bf|commit]], [[https://git.kernel.org/linus/ab0308aee3819a3eccde42f9eb5bb01d6733be38|commit]], [[https://git.kernel.org/linus/e37c9a3dc9f9645532780d5ef34ea3b8fcf9ddef|commit]], [[https://git.kernel.org/linus/2e53ad66686a46b141c3395719afeee3057ffe2f|commit]], [[https://git.kernel.org/linus/db64994d115e7c2cd72fec11b854467e97169379|commit]], [[https://git.kernel.org/linus/1fb2daa60de640efb13f907d43d72d28763f696c|commit]], [[https://git.kernel.org/linus/8ccb1f8fa6a3dfde32cf33e7ded3558014e6cca2|commit]], [[https://git.kernel.org/linus/7e6df9614546ae7eb1f1b2074d7b6039bb01540d|commit]], [[https://git.kernel.org/linus/51541f6ca7718d8278e12fe80af80033268743b2|commit]], [[https://git.kernel.org/linus/0ec1db4cac8239bb32da87586c3638200b65dd8c|commit]], [[https://git.kernel.org/linus/93d9fd89995181d7ff420752328cc8b4b228f100|commit]], [[https://git.kernel.org/linus/f4e0cd80d3e7c31327459008b01d63804838a89d|commit]], [[https://git.kernel.org/linus/842e7f97d71a4116a650ec0045d6444b4377b512|commit]], [[https://git.kernel.org/linus/67640e333b983298be624a41c43e3a8ed4713a73|commit]], [[https://git.kernel.org/linus/ee7f6af79f0916b6c49e15edd4cba020b3e4c4ac|commit]], [[https://git.kernel.org/linus/0ecc988b0232259cbdb2b7e452bda74f550f0911|commit]], [[https://git.kernel.org/linus/d0891647fbc6e931f27517364cbc4ee1811d76db|commit]], [[https://git.kernel.org/linus/4bbfc90122e974ccbd9aa80c964413052b9519f3|commit]], [[https://git.kernel.org/linus/a8848c4b43ad00c8a18db080206e3ffa53a08b91|commit]] * intel_idle * Add C-states validation [[https://git.kernel.org/linus/be6a150829b375c1b53d7ea5794ccc9edd2e0c9c|commit]] * Add cmdline option to adjust C-states table [[https://git.kernel.org/linus/111f77a233484cf39a6317f4d0306387e9ffda7b|commit]] * Remove the 'preferred_cstates' parameter [[https://git.kernel.org/linus/a36dc37b56722bc114d5dd5657b884334031eb49|commit]] * intel_th: pci: Add Nova Lake support [[https://git.kernel.org/linus/1814159b0d0a21bb05ab7b62d2defadfad84ef68|commit]] * perf * intel/cstate: Add Airmont NP [[https://git.kernel.org/linus/3006911f284d769b0f66c12b39da130325ef1440|commit]] * intel/cstate: Add Diamond Rapids support [[https://git.kernel.org/linus/7ac422cf7b16ec524bcd8e017459e328a4103f63|commit]] * intel/cstate: Add Nova Lake support [[https://git.kernel.org/linus/7e760ac4617b63628edd55a96be2fc85b7eaa435|commit]] * intel/cstate: Add Wildcat Lake support [[https://git.kernel.org/linus/6d4b8d052ff22742c3980fa45f26b0969a9b6163|commit]] * intel/uncore: Add per-scheduler IMC CAS count events [[https://git.kernel.org/linus/6a8a48644c4b804123e59dbfc5d6cd29a0194046|commit]] * intel: Add Airmont NP [[https://git.kernel.org/linus/a08340fd291671c54d379d285b2325490ce90ddd|commit]] * Add DMR/NVL and missing PTL uncore support [[https://lore.kernel.org/linux-kernel/20251231224233.113839-1-zide.chen@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/098fe55a450b280d8a8584b2511634e1236ba96d|commit]], [[https://git.kernel.org/linus/e75462f6c7eaa5affd922c9a14591cdd5e3ab63d|commit]], [[https://git.kernel.org/linus/1897336728b4ab0229fb73bb6f1e94cfe914afa9|commit]], [[https://git.kernel.org/linus/6daf2c35b835da211bf70606e9f74d1af98613a9|commit]], [[https://git.kernel.org/linus/66e2075426f3220857eb3987c803764c82cef851|commit]], [[https://git.kernel.org/linus/b575fc0e33574f3a476b68057e340ebe32d7b750|commit]], [[https://git.kernel.org/linus/8a4bd1c0d6bb64ab4d9e94d83c40326356421a73|commit]], [[https://git.kernel.org/linus/d8987048f6655b38453d00782a256179f082b79c|commit]], [[https://git.kernel.org/linus/aacb0718fddfe7060576c82e47bbda559c2f2d0d|commit]], [[https://git.kernel.org/linus/171b5292a82d04e6692f1b19573d15753f21e7fd|commit]], [[https://git.kernel.org/linus/2246c24426fbc1069cb2a47e0624ccffe5f2627b|commit]], [[https://git.kernel.org/linus/46da08a2bb4d07874990579235ff87b41911a412|commit]], [[https://git.kernel.org/linus/e7d5f2ea0923c5e49ccf94cdaab74a08c865115e|commit]] * Enable core pmu for dmr and nvl [[https://lore.kernel.org/linux-kernel/20260114011750.350569-1-dapeng1.mi@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/4e955c08d6dc76fb60cda9af955ddcebedaa7f69|commit]], [[https://git.kernel.org/linus/d2bdcde9626cbea0c44a6aaa33b440c8adf81e09|commit]], [[https://git.kernel.org/linus/d345b6bb886004ac1018da0348b5da7d9906071b|commit]], [[https://git.kernel.org/linus/7cd264d1972d13177acc1ac9fb11ee0a7003e2e6|commit]], [[https://git.kernel.org/linus/c847a208f43bfeb56943f2ca6fe2baf1db9dee7a|commit]], [[https://git.kernel.org/linus/8c74e4e3e0596950554962229582260f1501d899|commit]], [[https://git.kernel.org/linus/59af95e028d4114991b9bd96a39ad855b399cc07|commit]] * msr: Add Airmont NP [[https://git.kernel.org/linus/63dbadcafc1f4d1da796a8e2c0aea1e561f79ece|commit]] * platform * Microsoft surface pro 11 support [[https://lore.kernel.org/linux-arm-msm/20251220-surface-sp11-for-next-v6-0-81f7451edb77@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/8325294ca9688398ea55843f03ebd1479b9d2334|commit]], [[https://git.kernel.org/linus/380f8a4c734b029100dea5bc9e2f8982f72da6b9|commit]], [[https://git.kernel.org/linus/c4a069095395ecd1e936f488511dfd9016b9c479|commit]], [[https://git.kernel.org/linus/0d72ccaa1e840b4c8723a929b2febbedcf5f80cd|commit]] * wmi: Introduce marshalling support [[https://git.kernel.org/linus/015b70a6ae697f5dac3562e4ab45ee275d98860b|commit]], [[https://git.kernel.org/linus/29dfba69c3ddb7945cd772042c6a9ce770c1ba22|commit]], [[https://git.kernel.org/linus/b990a06f7ec6dc3ceecd8015c3b421690f267122|commit]], [[https://git.kernel.org/linus/0e1a8143e79713eef7e027737fed259aa58866e7|commit]], [[https://git.kernel.org/linus/534f685d8a952371148e1374576f8ede2919ec1d|commit]], [[https://git.kernel.org/linus/e210986f52b657301d009e23344e3effec12bbeb|commit]], [[https://git.kernel.org/linus/bb7527c63f8567d69a22a818aa5999be47c5d479|commit]], [[https://git.kernel.org/linus/926a266575a21e96c4c0b9c16b1da1f7fda5a519|commit]], [[https://git.kernel.org/linus/2177a02246ffef9ed4a01af2942119e601312965|commit]] * platform/x86/amd/pmf: Added a module parameter to disable the Smart PC function [[https://git.kernel.org/linus/8164a14b15008579801ba6ba3ae00d37ecc310e5|commit]] * Enable substate residencies for multiple pmcs [[https://lore.kernel.org/lkml/20260108223144.504267-1-xi.pardee@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/65b3a9220345f5dd37ff0227673c95755dbe5c2f|commit]], [[https://git.kernel.org/linus/92911c91b5b7049cb634ef912feab086fd54ed43|commit]], [[https://git.kernel.org/linus/99e243c2b170c59f349e1b2a772a6f6a30430b4d|commit]], [[https://git.kernel.org/linus/ceeb5c9835696065323cc4c2ab48b1a7a46d8269|commit]] * uniwill-laptop: Introduce device descriptor system [[https://git.kernel.org/linus/d8c560f76dcac7ff4c630d5d84958183adbf19d2|commit]], [[https://git.kernel.org/linus/7c9aa38a59f611c619d026c2d082d0e8c9b9069f|commit]] * alienware-wmi-wmax: Add G-Mode support to m18 laptops [[https://git.kernel.org/linus/bd5914caeb4b2de233992c31babccda88041b035|commit]] * asus-armoury: add support for G733QS [[https://git.kernel.org/linus/37da69dbaa60a778ffa67a066b77d287d704c659|commit]] * asus-armoury: add support for FA401UM [[https://git.kernel.org/linus/c55b84fa567ed33bc651675bcaf8d53bd12d910a|commit]] * asus-armoury: add support for GX650RX [[https://git.kernel.org/linus/622cc8d078e5d7586f0e40dd7aea515a946da48c|commit]] * asus: Fix ASUS ROG Laptop's Keyboard backlight handling [[https://lore.kernel.org/platform-driver-x86/20260122075044.5070-1-lkml@antheas.dev/T/|(cover)]], [[https://git.kernel.org/linus/56d1b33e644cca1bedffbc73d28778ed4ae30f64|commit]], [[https://git.kernel.org/linus/4ac51daa5078e1e4b27a9afdc64a3f5780ae3cfb|commit]], [[https://git.kernel.org/linus/6a293b6edb537baf201c5ceb3afdbff7f42e97c2|commit]], [[https://git.kernel.org/linus/e82ae34af29e910c96d33c8b3a90c60e27f1625e|commit]], [[https://git.kernel.org/linus/2b92b797a153258c9f17786c2ab28b568f5aadf3|commit]], [[https://git.kernel.org/linus/4ac74ea68f6429512faf06a3365a2ba6b96d48d6|commit]], [[https://git.kernel.org/linus/fac55d29581fcd4c3b66b9c2b9f7995c459c0064|commit]], [[https://git.kernel.org/linus/b34b5945a7694e4fc53f5912b3b93d2bb8fdc9de|commit]], [[https://git.kernel.org/linus/d3133ccaf53694498b9827c5f9dbae52fc199d28|commit]], [[https://git.kernel.org/linus/7525566abd360ca425e43dd3f7f09fa3445dae17|commit]], [[https://git.kernel.org/linus/4748bb49b66881f0177057bd22bb3bf8f2ba142c|commit]] * hp-wmi: Add Omen 16-wf0xxx fan and thermal support [[https://git.kernel.org/linus/13fa3aaf02edaad9b41fc61d7f6326d2b6a4bf80|commit]] * hp-wmi: Add Omen 16-xd0xxx fan and thermal support [[https://git.kernel.org/linus/3c99a545b372c77b5d39715968a141f523eccbf2|commit]] * hp-wmi: Add Victus 16-d0xxx support [[https://git.kernel.org/linus/249f05e625c6e6c14b27fd34a2f06a1afb9b456d|commit]] * hp-wmi: add Omen 14-fb1xxx (board 8E41) support [[https://git.kernel.org/linus/729ffcffa73069cb066fd54a2bc7b09e5f782d48|commit]] * hp-wmi: Add manual fan support for Victus S laptops [[https://lore.kernel.org/platform-driver-x86/20260113123738.222244-1-krishna.chomal108@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/60f2d5d0f04365c41ad4f9eddf48c80dcd0b01c9|commit]], [[https://git.kernel.org/linus/46be1453e6e61884b4840a768d1e8ffaf01a4c1c|commit]], [[https://git.kernel.org/linus/c203c59fb5de1b1b8947d61176e868da1130cbeb|commit]] * intel-hid: Add Dell 16 Plus 2-in-1 to dmi_vgbs_allow_list [[https://git.kernel.org/linus/6b3fa0615cd8432148581de62a52f83847af3d70|commit]], [[https://lore.kernel.org/platform-driver-x86/20260213230310.299974-1-peter.metz@unarin.com/T/|(cover)]] * intel-hid: Enable 5-button array on !ThinkPad X1 Fold 16 Gen 1 [[https://git.kernel.org/linus/b38d478dad79e61e8a65931021bdfd7a71741212|commit]] * lenovo-wmi-{capdata,other}: Add HWMON for fan speed [[https://lore.kernel.org/platform-driver-x86/20260120182104.163424-1-i@rong.moe/T/|(cover)]], [[https://git.kernel.org/linus/465dc9da8ff61a69e649ec2d402d8e06034f4585|commit]], [[https://git.kernel.org/linus/f28d76b17561bd5f1b7b2c8f139a00158218c2d2|commit]], [[https://git.kernel.org/linus/4ff1a029531441a27288eed8ba57d48fe11ba79a|commit]], [[https://git.kernel.org/linus/c05f67e6c2e508f5462f30a5394a1607ef683ff9|commit]], [[https://git.kernel.org/linus/012a8f967a87dea3f25c3a3ae32610c0dd145f34|commit]], [[https://git.kernel.org/linus/67d9a39ce85fafc2d88f82c9229ace111aaa8c1f|commit]], [[https://git.kernel.org/linus/51ed34282f63fab5b3996477cc56135eb4de5284|commit]] * oxpec: Add more devices [[https://lore.kernel.org/platform-driver-x86/20260223183004.2696892-1-lkml@antheas.dev/T/|(cover)]], [[https://git.kernel.org/linus/3385ea97c14d271dcb0c6e6fcf16972f819eecd8|commit]], [[https://git.kernel.org/linus/4049c46edb5d44c0de045f6f504371705dd603dd|commit]], [[https://git.kernel.org/linus/2a3b4a8c10a64a62c4243007139d253dc1324dfd|commit]], [[https://git.kernel.org/linus/cd0883055b04586770dab43c64159348bf480a3e|commit]] * redmi-wmi: Add more hotkey mappings [[https://git.kernel.org/linus/e3aa6feaf0cc30a3c941d15ff04bc1005a8aa315|commit]] * thinkpad_acpi: Add support to detect hardware damage detection capability [[https://git.kernel.org/linus/28c43bddd0fa8999533feba8be9dc0583eaed281|commit]], [[https://git.kernel.org/linus/a85503d541eafce9b4d73d509c1e341401a86d85|commit]] * Amd and intel metric generation with python [[https://lore.kernel.org/lkml/20260127184506.3059493-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/19eab0efe72f02516b9f194a6ad10e7c83a009ae|commit]], [[https://git.kernel.org/linus/6bd6c5ef6c7ae35000179c9db8ecdbc3e9698d72|commit]], [[https://git.kernel.org/linus/d10ae3a935e7fdc2b149d81e617069fcde9864e3|commit]], [[https://git.kernel.org/linus/6da95e1834480f94f99afde0caabc63159eab64d|commit]], [[https://git.kernel.org/linus/9c9efc7462487c85a269275655807631fba760fc|commit]], [[https://git.kernel.org/linus/78067ae26815f8432f8648657ea14c0e3c4f93ad|commit]], [[https://git.kernel.org/linus/e596f329668ec2b5da6ac60fc87c035c5a337d1f|commit]], [[https://git.kernel.org/linus/c4108b9509f2cc1fab66c64c2de55ac4f9ee38b4|commit]], [[https://git.kernel.org/linus/5ecb1622d000dffb9245df8d264d9c1e7492874f|commit]], [[https://git.kernel.org/linus/fb4c0581740d99029761f4ad84fc0dbc48913eea|commit]], [[https://git.kernel.org/linus/3563030d4f77856bd0a32492fbe9edc3d36248ec|commit]], [[https://git.kernel.org/linus/bab90b3b46cd74d5f562b0a7b2bef1222e8960af|commit]], [[https://git.kernel.org/linus/1d519e5aa8ee025a13a822ed87fa6c9f249c63b1|commit]], [[https://git.kernel.org/linus/61b7b2ef64f8c9cf48ae1b0bfe2ee0bcb9bb3181|commit]], [[https://git.kernel.org/linus/17d616b7d98dcc15561b83a7e1c78f304b8cea74|commit]], [[https://git.kernel.org/linus/7eb9fa417c0218fd4e3b8d18894d7b89c15fb8ba|commit]], [[https://git.kernel.org/linus/8c345f35003269eaceeb84b3b14588aeb2bae6f7|commit]], [[https://git.kernel.org/linus/37d0b00a1ac85309e63700153049bc16fc446b19|commit]], [[https://git.kernel.org/linus/397fdb3a24435f55c4c675726d1b214954e7aa53|commit]], [[https://git.kernel.org/linus/cd1c6a487407a350970d1bea9d3e674f2a281179|commit]], [[https://git.kernel.org/linus/7413633e255cb02d59e9451e55fbe9e50310db18|commit]], [[https://git.kernel.org/linus/d80edef23124baffa2cfd61a009933d03d982741|commit]], [[https://git.kernel.org/linus/59341f4e171170d3e2be50047508569a57eee829|commit]], [[https://git.kernel.org/linus/2f3d6ea05deca7c1c653e2e53d73ac5a81378d53|commit]], [[https://git.kernel.org/linus/d666f0172ab306fa7b7af38499d51f4941460688|commit]], [[https://git.kernel.org/linus/426b8442898de9afe256e3c415d272808d6b69fb|commit]], [[https://git.kernel.org/linus/130f4245af99e140cc5dc93bdf8e59ffd9cc9d6f|commit]], [[https://git.kernel.org/linus/cde9c1a5d92520a874b333591ac29aef37b0c0cb|commit]], [[https://git.kernel.org/linus/2166b44be938420934181be34fe20deee6e46441|commit]], [[https://git.kernel.org/linus/1fee2701a7d35fa7285479c5c2ee6c2d9bd99526|commit]], [[https://git.kernel.org/linus/6ec3058e709cc63513bafe105bf48b512baabe04|commit]], [[https://git.kernel.org/linus/5dc81578ad77c298248a12de8b5e19923ef2c617|commit]], [[https://git.kernel.org/linus/e74f72a7e21782332bb7b9541634199278f3461b|commit]], [[https://git.kernel.org/linus/82e53e7ae09a054b00cf3afdddf7c378351cf3e0|commit]], [[https://git.kernel.org/linus/e205952db7717557f71f22baa96589f0a56d83c5|commit]] * perf vendor events amd: Add Zen 6 mapping [[https://git.kernel.org/linus/2c3cd43d27c1148fae05b50870f970ab24464fd5|commit]] * acpi: Add acpi=spcr to use SPCR-provided default console [[https://git.kernel.org/linus/2a11e1479ef07519bfd6b64ee276905ca84cf817|commit]] * alternative: Patch a single alternative location only once [[https://lore.kernel.org/linux-kernel/20260105080452.5064-1-jgross@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/544b4e15ed106b0e8cd2d584f576e3fda13d8f5f|commit]], [[https://git.kernel.org/linus/a4233c21e77375494223ade11da72523a0149d97|commit]] * vdso: clean up the vdso build, vdso updates [[https://lore.kernel.org/lkml/20251216212606.1325678-1-hpa@zytor.com/T/|(cover)]], [[https://git.kernel.org/linus/93d73005bff4f600696ce30e366e742c3373b13d|commit]], [[https://git.kernel.org/linus/a76108d05ee13cddb72b620752a80b2c3e87aee1|commit]], [[https://git.kernel.org/linus/693c819fedcdcabfda7488e2d5e355a84c2fd1b0|commit]], [[https://git.kernel.org/linus/6e150b71019f386a021004fafea9ef7189bc6aea|commit]], [[https://git.kernel.org/linus/98d3e996513ad00b7824ea3bece506fc645547dd|commit]], [[https://git.kernel.org/linus/884961618ee51307cc63ab620a0bdd710fa0b0af|commit]], [[https://git.kernel.org/linus/8717b02b8c030dc0c4b55781b59e88def0a1a92f|commit]], [[https://git.kernel.org/linus/a0636d4c3ad0da0cd6069eb6fef5d2b7d3449378|commit]], [[https://git.kernel.org/linus/f49ecf5e110ab0ed255ddea5e321689faf4e50e6|commit]], [[https://git.kernel.org/linus/36d83c249e0395a915144eceeb528ddc19b1fbe6|commit]] * S390 * gmap rewrite, the real deal. Completely new memory management [[https://lore.kernel.org/kvm/20260204150259.60425-1-imbrenda@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/05664e002129f5404c9d066844ef04a2223bcfea|commit]], [[https://git.kernel.org/linus/013bf0f57e12b7cbed3ec28739b49606c3b1c054|commit]], [[https://git.kernel.org/linus/21401ce497062400f24cdd268c62fd47d126dd2e|commit]], [[https://git.kernel.org/linus/4dadf64d9b75916081a55f9fbdc70e33be8d3ead|commit]], [[https://git.kernel.org/linus/c98175b7917fa81cd499b1527c4a57fd7d36711e|commit]], [[https://git.kernel.org/linus/cf3ce3d69d56bd3ef2bc5f6b500ebc5181637161|commit]], [[https://git.kernel.org/linus/3ddee7e651661a2c3cbe12bb36215a64295f8b01|commit]], [[https://git.kernel.org/linus/850103b0ce6de85aec3a8722c2f48c20d822b10c|commit]], [[https://git.kernel.org/linus/f0e1ca6cc32fd3b1616409354da2637e21ff9a6f|commit]], [[https://git.kernel.org/linus/a2f2798fa6d18d91766b19a4896bd9fd0654d730|commit]], [[https://git.kernel.org/linus/2f71db5eb9f8340ee58ae4b4faa6279b3a7f4a0e|commit]], [[https://git.kernel.org/linus/5a74e3d934171fe54115d1f504d1a34382ff1aab|commit]], [[https://git.kernel.org/linus/12f2f61a9e1a3e54f57432c0f9d63ba7299993e1|commit]], [[https://git.kernel.org/linus/589071eaaa8f8459d24584d54fbe6db5a0be27a5|commit]], [[https://git.kernel.org/linus/2db149a0a6c5e81473298e57e762240901764a94|commit]], [[https://git.kernel.org/linus/8e03e8316eb242af307d1c789d09f1a1457cf9a3|commit]], [[https://git.kernel.org/linus/94fd9b16cc678ad440425b6fc4d1d505556fb29f|commit]], [[https://git.kernel.org/linus/7b368470e1a406cdb0fab3ea1a5a8ebffb5ad91e|commit]], [[https://git.kernel.org/linus/a2c17f9270cc3f1c55c35e8b1d151f41d75b40f5|commit]], [[https://git.kernel.org/linus/e907ae5301338e7c1109311bbb3449fd9bd5d1ca|commit]], [[https://git.kernel.org/linus/e5f98a6899bd4bd0d99cb21777bd361fbb873838|commit]], [[https://git.kernel.org/linus/cc50f105fde083801d0644c8678bc984c6e83a3b|commit]], [[https://git.kernel.org/linus/d29a29a9e1a3d24cdb867ae2adc487f1a67e6225|commit]], [[https://git.kernel.org/linus/e38c884df92119d96f652d51f82661dd2fc0b885|commit]], [[https://git.kernel.org/linus/cec38587a9e395576fb54ee9e077b037a50d9335|commit]], [[https://git.kernel.org/linus/728b0e21b473ad8097185fb85ce2b9ab1ddf4ef7|commit]], [[https://git.kernel.org/linus/0fdd5c18a99cc89e829243f9f8561b37b7ebc4fc|commit]], [[https://git.kernel.org/linus/0ee4ddc1647b8b3b9e7a94d798a1774a764428c1|commit]], [[https://git.kernel.org/linus/52940a34a85bc8a17a095f6fae80c33a18c1f7ec|commit]] * tape: Remove 3480 tape device type [[https://git.kernel.org/linus/4b6852d764b7794e1b624dc71771b008716cde34|commit]] * tape: Remove tape load display support [[https://git.kernel.org/linus/effcf3df282ba66e60718cefd08c6a3ed57d9dd3|commit]] * tape: Remove support for 3590/3592 models [[https://git.kernel.org/linus/c03b6ef74c2b48a0f544f27c7354d5200ab6569c|commit]] * Paes and Phmac: Refuse clear key material by default [[https://lore.kernel.org/linux-crypto/20260115120026.4286-1-freude@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/cf0840cc7f578c21e64810ef85e838d44d275d9c|commit]], [[https://git.kernel.org/linus/2dfca611197e4ac0fcca03dc82594bab38464964|commit]], [[https://git.kernel.org/linus/452770a4fafcdb2d80bb793a91aec9ff84769fdc|commit]], [[https://git.kernel.org/linus/9d58d22f367f6fc08f949b1ba9625e56414be92a|commit]] * RISCV * Control-flow integrity for usermode [[https://git.kernel.org/linus/98036587a475f371005e42d3fff9feb9cf713880|commit]], [[https://git.kernel.org/linus/f94645fc03b864cf0823548c87a455346e87c22c|commit]], [[https://git.kernel.org/linus/df11708566d7458d1ce11eb28a59ef6a42ee5236|commit]], [[https://git.kernel.org/linus/41a2452c99f327f2b57811e63f6d2497a4a96a9f|commit]], [[https://git.kernel.org/linus/79dd4f2f40d0414aab670c46b801b11850306448|commit]], [[https://git.kernel.org/linus/6c7559f22b6fcb2d4b52c445434c71ade36b004c|commit]], [[https://git.kernel.org/linus/f56ffb8ada46aae61580905d93c31e4006572240|commit]], [[https://git.kernel.org/linus/c68c2ef9d64169317a6e0e6f0506953637760409|commit]], [[https://git.kernel.org/linus/540de7ade1e1327119e367ec5f662a627b3fe9f9|commit]], [[https://git.kernel.org/linus/c70772afd5cc93c28f83b53d33ce9fbcd8d015da|commit]], [[https://git.kernel.org/linus/fd44a4a8551698757d0e7eeaa964735b471f7407|commit]], [[https://git.kernel.org/linus/61a0200211d31e20380c35d619960a40113da872|commit]], [[https://git.kernel.org/linus/5ca243f6e3c30b979a54a96b96df355dda2b4d0f|commit]], [[https://git.kernel.org/linus/8a9e22d2ca5855263d6e3f83509eabf16d7b8a0a|commit]], [[https://git.kernel.org/linus/9d42fc28fc178e5031eddc6f80df561fc586caf4|commit]], [[https://git.kernel.org/linus/66c9c713de597f9b40a319ebda4d3466ce2cdff0|commit]], [[https://git.kernel.org/linus/9d0e75e25e3be74828ffb7657992ce0f03352cc3|commit]], [[https://git.kernel.org/linus/2af7c9cf021c5dabe880b68e5cc22c618060d954|commit]], [[https://git.kernel.org/linus/462a94fb8ae8ba0d4d3901c7283b4af052ab8804|commit]], [[https://git.kernel.org/linus/30c3099036a9544ec24e899abc8a81a7cc030f99|commit]], [[https://git.kernel.org/linus/c9b859c4d8f56c014b3d5fbd1bcfb916c34955a1|commit]], [[https://git.kernel.org/linus/41213bf2ae6c936f51a79986b37f95da9ecbb970|commit]], [[https://git.kernel.org/linus/37f57bd3faeac92e898c3381355f4fd2b6a80901|commit]], [[https://git.kernel.org/linus/ccad8c1336b6511e3c7ca5c02f797b1fd2cf67e1|commit]], [[https://git.kernel.org/linus/22c1e263af2ac7dad3d2af258336318ee4c4a0ae|commit]], [[https://git.kernel.org/linus/f6eeb67b917238fe2295d27ef0c8fe2cab8de5b5|commit]], [[https://git.kernel.org/linus/c8350aa2ed7828175468696ae95f34a431342175|commit]], [[https://git.kernel.org/linus/d30c1683aaecb93d2ab95685dc4300a33d3cea7a|commit]] * KVM: Transparent huge page support [[https://git.kernel.org/linus/ed7ae7a34bea06f81270866dfbe619a22518666b|commit]] * KVM: Allow Zalasr extensions for Guest/VM [[https://git.kernel.org/linus/655d330c058f4e16de46d5c9b203008c630b59c8|commit]] * Add Zilsd and Zclsd support in hwprobe and kvm [[https://lore.kernel.org/linux-kernel/20250826162939.1494021-1-pincheng.plct@isrc.iscas.ac.cn/T/|(cover)]], [[https://git.kernel.org/linus/4115155baf43679575fb463367cdcf8f46e76b18|commit]], [[https://git.kernel.org/linus/3f0cbfb8a107a9f0a6e2184425b70ddc6d51f991|commit]], [[https://git.kernel.org/linus/6118ebed3bdf896038f58d0d1804f551f33e8643|commit]], [[https://git.kernel.org/linus/f326e846ff89c82083c09fa495457442c252983e|commit]], [[https://git.kernel.org/linus/ab2a7b7b6b8831348646688345c3209cdaee5d46|commit]] * fsession support for riscv [[https://lore.kernel.org/bpf/20260208053311.698352-1-dongml2@chinatelecom.cn/T/|(cover)]], [[https://git.kernel.org/linus/93fd420d71beed5f17e690921acfdee252b4e234|commit]], [[https://git.kernel.org/linus/35b3515be0ecb9dd82e9b237d8c3b0f6b2057f2e|commit]], [[https://git.kernel.org/linus/0265c1fd912ee0ea0cb00c539fb73e99578a866d|commit]] * spacemit: Add SpacemiT K3 SoC and K3 Pico-ITX board [[https://lore.kernel.org/devicetree/20260115-k3-basic-dt-v5-0-6990ac9f4308@riscstar.com/T/|(cover)]], [[https://git.kernel.org/linus/81a52103b90f5cddc41c34f633c014a956236abc|commit]], [[https://git.kernel.org/linus/6cdeb30db4d8faf9f1fa7ab863d91d36a584716d|commit]], [[https://git.kernel.org/linus/60490ca6d54b6f0a00223a4fe59bb180bb1538bf|commit]], [[https://git.kernel.org/linus/a716729a3ce1055efab477030235777d2be0852b|commit]], [[https://git.kernel.org/linus/7cb5fafc180f6e188af7943d6b162051f22490fc|commit]], [[https://git.kernel.org/linus/56f37e391a626f964615ee5939710eff212b621f|commit]], [[https://git.kernel.org/linus/7a61318049861b777f098d7148d892d7dc79b010|commit]] * perf vendor events: Add CVA6 JSON file [[https://git.kernel.org/linus/240156b25a397d3b26ef95b3f13bddb2db6038ab|commit]], [[https://lore.kernel.org/linux-kernel/20251204163854.10318-1-manuel.hernandez@openchip.com/T/|(cover)]] * POWERPC * Implement masked user access [[https://lore.kernel.org/linux-kernel/cover.1766574657.git.chleroy@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/5fbc09eb0b4f4b1a4b33abebacbeee0d29f195e9|commit]], [[https://git.kernel.org/linus/e3efbfbfaaaa739072b2756cfb76cd3de6d91c0f|commit]], [[https://git.kernel.org/linus/5458989a0e48c2bd51a7d37a04ff6ae489fe5458|commit]], [[https://git.kernel.org/linus/704f4300315396af94e26ec0127ff0cd3fd309bf|commit]], [[https://git.kernel.org/linus/fb7903771c107b0358584a359b8545060e23c530|commit]], [[https://git.kernel.org/linus/370d841929c3b863b7409047e8c84eabc4d0960f|commit]], [[https://git.kernel.org/linus/861574d51bbd7a06dbf07f658a9a8def012c2f74|commit]] * bpf: Support tailcalls with subprogs & BPF exceptions [[https://lore.kernel.org/bpf/20260124075223.6033-1-adubey@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/15513beeb673765c05cdd8e526ccee33906375cb|commit]], [[https://git.kernel.org/linus/2ed2d8f6fb3853daa536d79e0799cbac91fac9f5|commit]], [[https://git.kernel.org/linus/88cb7f40344d8b81ecfc4709b5382a956739c272|commit]], [[https://git.kernel.org/linus/b1c24f089bcf23faa23397dfb5e05f82a8c6cf56|commit]], [[https://git.kernel.org/linus/c169930292f7f31a6e500803e6c5ffbb9d5e6e4b|commit]], [[https://git.kernel.org/linus/11d45eee9f42f7d3f9c9f190a6f79e570d345fe2|commit]] * bpf: Inline helper in powerpc JIT [[https://lore.kernel.org/bpf/cover.1765343385.git.skb99@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/58a075adf3fb1701435d29e0113284dc31d6e43e|commit]], [[https://git.kernel.org/linus/20ab1d11265350a9ea3d315d6c70170b8198f329|commit]] * Extend "trusted" keys to support a new trust source named the powervm key wrapping module (pkwm) [[https://lore.kernel.org/linux-integrity/20260201135930.898721-1-ssrish@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/88372ad4b060a283a475f0ebc31451c9059ebaa5|commit]], [[https://git.kernel.org/linus/40850c909fcf2a66237dea6b96c8e12003cf6d43|commit]], [[https://git.kernel.org/linus/447eb1d5ef00f7da918221ed690cac980385d993|commit]], [[https://git.kernel.org/linus/133aa79e211d2572c5c9b9671461a55d50bebda8|commit]], [[https://git.kernel.org/linus/c99fcb0d735bdb6f06dfe6eb7134d5d988d32dae|commit]], [[https://git.kernel.org/linus/1d72a02d65a733ad124bacc2db3fb90fa81a612b|commit]] * Support page table check [[https://lore.kernel.org/linux-kernel/20251219-pgtable_check_v18rebase-v18-0-755bc151a50b@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/9ac4941aceb027809cc32689a2944fa7a69388e4|commit]], [[https://git.kernel.org/linus/ee329c29fde849a8b541a836de742a454942589e|commit]], [[https://git.kernel.org/linus/c4a0c5ff85b7ca0d5fbd71888965f40e55295b19|commit]], [[https://git.kernel.org/linus/6e2d8f9fc4edcbf9f4dd953e1f41b0ff64867e5b|commit]], [[https://git.kernel.org/linus/0a5ae4483177a621f5498c349d31f24b1ef10739|commit]], [[https://git.kernel.org/linus/2e6ac078ce5d6a9dc96cab861359faac508eb56d|commit]], [[https://git.kernel.org/linus/649ec9e3d03c4908ef51731cd7b422c4a3e2ccff|commit]], [[https://git.kernel.org/linus/d7b4b67eb6b37aef1723a69add88c9a7add81308|commit]], [[https://git.kernel.org/linus/d79f9c9cf703d873849253f82fb9d6e1bd2b36f1|commit]], [[https://git.kernel.org/linus/2f5e576598c915db18b7ccd0003be52458959ce7|commit]], [[https://git.kernel.org/linus/2360f523a49bdc021cda3cb32a6003193551e0fc|commit]], [[https://git.kernel.org/linus/641d47d4c9635987f2329054b1395421716d3fee|commit]] * LOONGARCH * Add HOTPLUG_SMT implementation [[https://git.kernel.org/linus/009ee0c96416ecd0c568af72ee37965e06bde460|commit]] * Add 128-bit atomic cmpxchg support (v5) [[https://lore.kernel.org/linux-kernel/20251215-2-v6-0-09a486e8df99@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/f0e4b1b6e295299f5c9c79ad546dedbdf7132f45|commit]] * Add detection for SC.Q support [[https://git.kernel.org/linus/48543c4283e76d561d11b9955222b1a3054abdb9|commit]] * Wire up memfd_secret system call [[https://git.kernel.org/linus/abca6583a2aa00ed856907d86446ae527442a754|commit]] * KVM: Add FPU delay load support [[https://git.kernel.org/linus/37da26e0e8396def86ff4ca70ece0a5f5619dbd4|commit]], [[https://git.kernel.org/linus/b1388a9598fbe77b193cbb8368eed46e982212c5|commit]], [[https://git.kernel.org/linus/382c38c9ec94fe87ffd6c9b456fa8ce67943cf1b|commit]] * More bpf features [[https://lore.kernel.org/loongarch/20260121140840.2165381-1-hengqi.chen@gmail.com/|(cover)]], [[https://git.kernel.org/linus/4ab17e762b34c847478f694932c4cd4b1ac2c343|commit]], [[https://git.kernel.org/linus/ef54c517a9376b188da06b5e1ed556129c4280be|commit]], [[https://git.kernel.org/linus/4fdb5dd8aeba3a6b5ffc9c66fd0c8528fd835065|commit]] * KVM: Add paravirt preempt support [[https://lore.kernel.org/kvm/20251219063021.1778659-1-maobibo@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/9b486cdd032a90032c6b567ea723595205ca2626|commit]] * SPARC * Add architecture support for clone3 [[https://lore.kernel.org/sparclinux/20260119144753.27945-1-ludwig.rydberg@gaisler.com/T/|(cover)]], [[https://git.kernel.org/linus/e38eba3b77878ada327a572a41596a3b0b44e522|commit]], [[https://git.kernel.org/linus/2153b2e8917b73e9e7fae8963f03b8e60bd8f5ff|commit]] * OPENRISC * de0 nano single and multicore boards [[https://lore.kernel.org/linux-kernel/20260115151014.3956805-1-shorne@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/b2b8d247ad8ee1abe860598cae70e2dbe8a09128|commit]], [[https://git.kernel.org/linus/3a6a36a3fc4e18e202eaf6c258553b5a17b91677|commit]], [[https://git.kernel.org/linus/111005cafb53efdaf00436bc678f5372a7e06c55|commit]], [[https://git.kernel.org/linus/eea1a28f93c8c78b961aca2012dedfd5c528fcac|commit]], [[https://git.kernel.org/linus/11659e4c3a1463ba8e49078c009228d7e1f54955|commit]], [[https://git.kernel.org/linus/e318f5721da8c47c95171b810427fba995c67c24|commit]] * UM * virtio_uml: Support adding devices via mconsole [[https://git.kernel.org/linus/7ede6f1494cb148e42f893dd43e4911508814510|commit]] = Drivers = == Graphics == * Reduce page tables overhead with THP [[https://git.kernel.org/linus/9d2d49027c3a9628989c9ec70ebef9d241f49c1e|commit]], [[https://git.kernel.org/linus/211b9a39f2619b9c0d85bcd48aeb399397910b42|commit]], [[https://git.kernel.org/linus/99bda20d6d4cac30ed6d357658d8bc328c3b27d9|commit]], [[https://git.kernel.org/linus/6e0b1b82017b9ba16b87685e1e4902cd9dc762d2|commit]], [[https://git.kernel.org/linus/a8a9a590221c1959716277d4b13fe658816afc0e|commit]], [[https://git.kernel.org/linus/f19f99bbaf9f91d0b0a95d760f4d6755758b913d|commit]], [[https://git.kernel.org/linus/7cdf69d903759b81abde5973d703c93a742ddab7|commit]], [[https://git.kernel.org/linus/c569b369cc2114526bec2ba0a41a49cfc27609b4|commit]], [[https://git.kernel.org/linus/c12e9fcb5a5a9713e242e8c9c6adecdea5067241|commit]], [[https://git.kernel.org/linus/70478348fc6d52d5bb7568a035d3cbe5bcc6af4c|commit]] * video/logo: allow custom boot logo and simplify logic [[https://lore.kernel.org/linux-fbdev/20260108-custom-logo-v3-0-5a7aada7a6d4@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/672b35216282199fa2906fb32697a25a686a1adc|commit]], [[https://git.kernel.org/linus/a7aa2b512b141afe638b715f7b84c1588cdc9845|commit]], [[https://git.kernel.org/linus/dfa6ce636cb8faeaef02b09c973400a410004edf|commit]], [[https://git.kernel.org/linus/555cdf5242fd75c7d5fd01a93d72342d50483003|commit]], [[https://git.kernel.org/linus/9db021e6cbd6c9b4c8548ee5387d3b4c9372a011|commit]], [[https://git.kernel.org/linus/3092718e1280fcbdfc4f4b4a3258be8992a0c244|commit]], [[https://git.kernel.org/linus/ac6d088b3b20f9efb883e8302288276db3bdc2b8|commit]] * Backlight driver to control backlight behind congatec board controller. [[https://lore.kernel.org/linux-kernel/20251205-cgbc-backlight-v6-0-e4175b0bf406@novatron.fi/T/|(cover)]], [[https://git.kernel.org/linus/b516456e9f916070fde6aa50cad5680a689687e6|commit]], [[https://git.kernel.org/linus/702273a0ea7bf01e7ed18914cb8767714a325412|commit]] * amdgpu * Support for lots of new IP blocks which means newer GPUs * amdkfd: Implement kfd multiple contexts [[https://lore.kernel.org/lkml/20251106060739.2281-1-lingshan.zhu@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/5ba69099b66cc6dd63a3035c825c875871e88089|commit]], [[https://git.kernel.org/linus/3272cd887f2bc27825a6c053ca174dbb6eabc636|commit]], [[https://git.kernel.org/linus/3880d8e3c6ef2797900d5a437b705afe9baa815f|commit]], [[https://git.kernel.org/linus/4cd255b9694647b784f085ae144b727b6ffdfbfc|commit]], [[https://git.kernel.org/linus/65cce2a172ff0f8b4a2d74a6c9a84243b94ca797|commit]], [[https://git.kernel.org/linus/26fc46d7942d0842ee9767a6d960ae5a9141f534|commit]], [[https://git.kernel.org/linus/1707d5760c71b813fb5a4b6ccedcf21bc0ecb481|commit]], [[https://git.kernel.org/linus/fac682a1d1af12c6b9f97f7db91e1fbea2c40540|commit]], [[https://git.kernel.org/linus/4eb38fc0f1da9707b8866b4a91a4dd7c2becfda9|commit]], [[https://git.kernel.org/linus/e1b73b64271d706079370b58b81292dafd373163|commit]], [[https://git.kernel.org/linus/d59e9d2d556ad7ce228200a2e804b57bb77b6c47|commit]], [[https://git.kernel.org/linus/2a667e26fa87b45fe4d89ed0c6ffd82c94c0a8a5|commit]], [[https://git.kernel.org/linus/07506945e138c191e913aba86030111a93a5b119|commit]], [[https://git.kernel.org/linus/78996e1e98f822d16363e2a7703ca243eda59ba8|commit]], [[https://git.kernel.org/linus/5701b7a93df7840ddf74399344f849d6292d8419|commit]], [[https://git.kernel.org/linus/18a695030bf91604c168ad352b764f506accf219|commit]], [[https://git.kernel.org/linus/e3491fa3f3c94d47e7b82604ca7b9925987f1683|commit]], [[https://git.kernel.org/linus/cc6b66d661fda4fb94c0099dd92b83f8de5c1bf4|commit]] * Intel Xe * Enable SR-IOV VF migration [[https://lore.kernel.org/lkml/20251127093934.1462188-1-michal.winiarski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/01c724aa7bf84e9d081a56e0cbf1d282678ce144|commit]], [[https://git.kernel.org/linus/8b3cce3ad9c78ce3dae1c178f99352d50e12a3c0|commit]], [[https://git.kernel.org/linus/17f22465c5a5573724c942ca7147b4024631ef87|commit]], [[https://git.kernel.org/linus/2e38c50ae4929f0b954fee69d428db7121452867|commit]] * Multi Queue feature support [[https://lore.kernel.org/lkml/20251211010249.1647839-19-niranjana.vishwanathapura@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/ee26c3b2765a34d1055660cbfd4f00766dd25412|commit]], [[https://git.kernel.org/linus/d9ec63474648a258094704ce223c9249fa7bb279|commit]], [[https://git.kernel.org/linus/bc5775c59258e1da6fe393845ee5cdd25ca618f3|commit]], [[https://git.kernel.org/linus/898a00f4b43311adfd4da1711ed2b72adc8c98a5|commit]], [[https://git.kernel.org/linus/d630abd6042dc186a3c113f68709818ad8a07a79|commit]], [[https://git.kernel.org/linus/2a31ea17d5c69e51ea454485edd40e4aeff467c1|commit]], [[https://git.kernel.org/linus/71e7d7e81d6a08c2abb1bb1ff01107280db62abb|commit]], [[https://git.kernel.org/linus/464a0bc0235f8333f77131433bb389a24efaf287|commit]], [[https://git.kernel.org/linus/d716a5088c88391daea7a3bd2b26589060309a79|commit]], [[https://git.kernel.org/linus/1b5d39e6672fdee158c3306f5cb2df8975c77e5a|commit]], [[https://git.kernel.org/linus/c85285b32cc697d7612ee28a9ea9ded5e53d2b57|commit]], [[https://git.kernel.org/linus/bb9343f122add786c57a6e8865209a9c6671bc9b|commit]], [[https://git.kernel.org/linus/8b81c76885e8f61681cf4c7d6d0ce816809e3b2f|commit]], [[https://git.kernel.org/linus/91abe57c27084819848c4dad6bfd1a2065b24521|commit]], [[https://git.kernel.org/linus/3131a43ecb346ae3b5287ee195779fc38c6fcd11|commit]], [[https://git.kernel.org/linus/9a3e975d6619c6fb8997ca59361768b4ec853565|commit]], [[https://git.kernel.org/linus/6601e0714bf08e6dfce04611796167255f63f222|commit]] * Dynamic pagemaps and multi-device SVM [[https://lore.kernel.org/dri-devel/20251219113320.183860-1-thomas.hellstrom@linux.intel.com/|(cover)]], [[https://git.kernel.org/linus/72aee5f70ba47b939345a0d3414b51b0639c5b88|commit]], [[https://git.kernel.org/linus/d1a4fc044cfd83741fae06c7e91019d139053f15|commit]], [[https://git.kernel.org/linus/16b5ad31952476fb925c401897fc171cd37f536b|commit]], [[https://git.kernel.org/linus/a599b98607decdc899630fc99a3a2847f6b72965|commit]], [[https://git.kernel.org/linus/565477dbca6eca0cfa3f6fefede3f6eb1e6e09b3|commit]], [[https://git.kernel.org/linus/a26084328ac40c12096ef01482a7520346379453|commit]], [[https://git.kernel.org/linus/77f14f2f2d73f6955b856e7c91ca9fb7046da191|commit]], [[https://git.kernel.org/linus/8a52f4d9b1efc90eb338b0d59912e640400b9c63|commit]], [[https://git.kernel.org/linus/33ac8d150af6be100161ec11106a8dd3f1f5b9e0|commit]], [[https://git.kernel.org/linus/e44f47a9bf5104c9b9efcc8fc95a858c66f2d1e6|commit]], [[https://git.kernel.org/linus/14b60874c90a61ffb9c32787bc5f3fcde93b9cd4|commit]], [[https://git.kernel.org/linus/eb9db59d96ce1ce8a207064f4a098c55ddd23fc3|commit]], [[https://git.kernel.org/linus/238dbc9d9f4a7396e87d357567e09dcd270d9e16|commit]], [[https://git.kernel.org/linus/4be5f2bc811a5811a8ec42dfbb603dbc12e8948a|commit]], [[https://git.kernel.org/linus/dff547e137be2f36c6c4d77172a03a54a38230d3|commit]], [[https://git.kernel.org/linus/2df55d9e66a2ad845286d15d865fa54117882b22|commit]], [[https://git.kernel.org/linus/54dc5842a81cacc6833c1f897ca332d2f931df01|commit]], [[https://git.kernel.org/linus/1f430b8d68e6d2cdf8825421d5c1e1caa746b483|commit]], [[https://git.kernel.org/linus/5b64b23f6f1b1d5b9836ac5a0963998951ba53d8|commit]], [[https://git.kernel.org/linus/f1d08a5864822684773105c60528e2abb577ca6c|commit]], [[https://git.kernel.org/linus/0471ed20df6b92133a183d526d8f28592dbf0831|commit]], [[https://git.kernel.org/linus/75af93b3f5d0ab760356365064521d9aa7b7fc49|commit]], [[https://git.kernel.org/linus/ec265e1f1cfcce6b03167868cadebf2d831e52b5|commit]], [[https://git.kernel.org/linus/0620837490e0401cb4e9965a1e0c462dbff1c97b|commit]] * hwmon: Expose new temperature attributes [[https://lore.kernel.org/lkml/20260112203521.1014388-1-karthik.poosa@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/c332fba805d659eca1f8e3a41d259c03421e81f1|commit]], [[https://git.kernel.org/linus/3a0cb885e111db34b22058a3b82e99e49f02ac94|commit]], [[https://git.kernel.org/linus/8d2511686ef55cfbdcc14d2f051224c3a16741d6|commit]], [[https://git.kernel.org/linus/49a498338417281f78594294c83707b140afde85|commit]] * Add NO_COMPRESSION BO flag and query capability [[https://git.kernel.org/linus/78d91ba6bd7968d4750dad57c62bf5225ddcb388|commit]] * Add support for MERT [[https://lore.kernel.org/lkml/20251124190237.20503-1-lukasz.laguna@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/79cb005c7134340d78e2fa8e526a6104fe492695|commit]], [[https://git.kernel.org/linus/0e72241a53e9188e88bb7b258266bccd615a4d60|commit]], [[https://git.kernel.org/linus/1fc30960150672b4c8f842ea00c75be766759bd8|commit]], [[https:/ * Xe3p page reclaimation support [[https://lore.kernel.org/intel-xe/20251212213225.3564537-12-brian3.nguyen@intel.com/|(cover)]], [[https://git.kernel.org/linus/44ece22518594ec9ffd9ab8c4c500b522278289e|commit]], [[https://git.kernel.org/linus/b4abe06d6d82df6521f449357ca6b7c6ce9c0903|commit]], [[https://git.kernel.org/linus/9b1a0e0a15c97987fdf56a615f3d13995bafd042|commit]], [[https://git.kernel.org/linus/77ebc7c10d1607533cf7cf6c7a7b77105498d8b0|commit]], [[https://git.kernel.org/linus/b912138df2993b6271500e5ecbd933acff14ac43|commit]], [[https://git.kernel.org/linus/2b192bebaf610abd4aa4f5fdf7282f3c2a347898|commit]], [[https://git.kernel.org/linus/9945e6a52f3c66b40ae30c2f4b79312a56fc9ba7|commit]], [[https://git.kernel.org/linus/684965d96a918f78c3fbd3ef55444aa9cdd7c5f6|commit]], [[https://git.kernel.org/linus/7c52f13b76c531ee2c503baafe52d357cab0c54a|commit]], [[https://git.kernel.org/linus/13d99b01c0c9d93afb9413cc97a05854ae40f6ab|commit]] * Introduce SRIOV scheduler groups [[https://git.kernel.org/linus/8d87fa19169eece7133db355b50767dcf0386c44|commit]], [[https://git.kernel.org/linus/b0c5cf4f5917bf562082c30879d26ccd572df5a3|commit]], [[https://git.kernel.org/linus/50290b7a0df54f908cdf3eb87f52ee01664f3ef4|commit]], [[https://git.kernel.org/linus/f04feb5b54419443e9937f5cc871f0612608f650|commit]], [[https://git.kernel.org/linus/b7fa6016a2bb671306ec2cbd9b3134f903e5d83a|commit]], [[https://git.kernel.org/linus/dad13af3985c1d096d3141026d5a534f8aacb4e6|commit]], [[https://git.kernel.org/linus/b7b106f937170eda2c65ecba5e6bd44bc4b40d46|commit]], [[https://git.kernel.org/linus/76242b98d4e46f2124caf08b786b657dbc71e5c9|commit]], [[https://git.kernel.org/linus/627508b391ea53eaacf1185e19998b287f69e5c0|commit]], [[https://git.kernel.org/linus/46c9e84cd66dbb9c2304e717f6c9fe4aa0ea5354|commit]], [[https://git.kernel.org/linus/be4518128a58f61862bec66621e5d3da254a97ce|commit]], [[https://git.kernel.org/linus/f474911fe16b3baad218d5b8cd499cd8dc3eb3fb|commit]] * Introduce gt runtime suspend/resume [[https://lore.kernel.org/intel-xe/20251030122357.128825-1-raag.jadav@intel.com/|(cover)]], [[https://git.kernel.org/linus/99234edab8e1fd3fd2309193a3b3169970a7e770|commit]], [[https://git.kernel.org/linus/726ceb5716da7657a65e01270c494ecd4cb0b242|commit]], [[https://git.kernel.org/linus/e6d2fe31a76d4960b0005e8fcb5eb66d00ed2e14|commit]], [[https://git.kernel.org/linus/43fb9e113bf11d78e7c817e2696705f458753c79|commit]] * nvm: enable cri platform [[https://git.kernel.org/linus/9dde74fd9e65ddd952413d98a8a756e12d087627|commit]] * Vf double migration [[https://lore.kernel.org/intel-xe/20251201095011.21453-6-satyanarayana.k.v.p@intel.com/|(cover)]], [[https://git.kernel.org/linus/2e2dab20dd664ea1ca6ed2342f6dc509496c9290|commit]], [[https://git.kernel.org/linus/b5fbb94341a2b1d78b24713db454dcda2fc7194b|commit]], [[https://git.kernel.org/linus/75e7d26281da46bc8570c61f44fe6093f120963a|commit]], [[https://git.kernel.org/linus/4c2768704710a5d4585941288e6a8159dd6dd33d|commit]] * Redesign survivability mode [[https://lore.kernel.org/intel-xe/20251208084539.3652902-4-riana.tauro@intel.com/|(cover)]], [[https://git.kernel.org/linus/f4e9fc967afdb53b1203f894fb4b68451a7fe202|commit]], [[https://git.kernel.org/linus/1987ea95ac37ea3f9299d220974676207d5262f6|commit]] * Add support for mesa gpu hang replay tool [[https://lore.kernel.org/intel-xe/20251126185952.546277-1-matthew.brost@intel.com/|(cover)]], [[https://git.kernel.org/linus/eafc150549ec312afd8dda86eb3e53de735049ba|commit]], [[https://git.kernel.org/linus/819c9ffd425971e0e913e5ee690f3485a28c1e0b|commit]], [[https://git.kernel.org/linus/81e66a55a8d7c57c664520074c770484054f43b2|commit]], [[https://git.kernel.org/linus/6cf5d14a0bf730d6e45c407b7e3bedb1a5d8812f|commit]], [[https://git.kernel.org/linus/066a1ddd8559fa494bf5137a1ef00c8761fcacf8|commit]], [[https://git.kernel.org/linus/c87f586e55364d8ca8dae38d5d00f8dd267ca8bc|commit]], [[https://git.kernel.org/linus/b80961a86b40372b7cfb3065439377f7e7550e59|commit]], [[https://git.kernel.org/linus/7032361d8cb13ab48b2b79167967c3a29c075ce2|commit]], [[https://git.kernel.org/linus/1026c1a73a9686ff35ac100039f94f0725622447|commit]] * Intel i915: * Add initial support for Xe3p_LPD [[https://git.kernel.org/linus/203c7904f2d85ac768749112ddedb522965316f9|commit]], [[https://git.kernel.org/linus/c296e3f2cec7325dc93a19cdcf3194a63b02c389|commit]], [[https://git.kernel.org/linus/df5dd52a6de486e32576ac5851b4e9429182274b|commit]], [[https://git.kernel.org/linus/df9670191613cdea0e223f5070368a26312b12c3|commit]], [[https://git.kernel.org/linus/8fad54133b96a243af1fa593822a3f0af3b058ac|commit]], [[https://git.kernel.org/linus/532f6f602e0653d037684822f8ef72e734717f35|commit]], [[https://git.kernel.org/linus/97afa2da35f3bab11d5c9885508ee1d6162b8d98|commit]], [[https://git.kernel.org/linus/4d7f266e688480fdd4103c90331b012cd1e8b859|commit]] * BMG FBC support [[https://git.kernel.org/linus/6cc3776b1f41cfc10bbe3dc6c70d0bf036a868d8|commit]], [[https://git.kernel.org/linus/0b806d62fd5f59bcf07b971af15bab5bef191279|commit]] * Add MTL+ platforms to support dpll framework [[https://git.kernel.org/linus/4fcefdf990cb14a3586e622ded7a18c287cf51e4|commit]], [[https://git.kernel.org/linus/1a7fad2aea74065dcd81821c681103813fd0772b|commit]] * msm * Add support for Kaanapali [[https://lore.kernel.org/linux-arm-msm/20260115092749.533-1-yuanjie.yang@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/60772c225f0f36790e6f7bba684b68675a4a799f|commit]], [[https://git.kernel.org/linus/b92efcf5197e5326002cfb2a37a5945533678762|commit]], [[https://git.kernel.org/linus/ac9d8bf748625c944775699875bd53d8dce13a34|commit]], [[https://git.kernel.org/linus/5260159778168a533fd13746c3b89e52f01cbfc3|commit]], [[https://git.kernel.org/linus/3d2d7a3386e8b2c48ef186c59a47e269552502f2|commit]], [[https://git.kernel.org/linus/223bff623c7d675abee27d12536493346394ab82|commit]], [[https://git.kernel.org/linus/2482c6f93aa6669aa6ec425864328036cf9e78ab|commit]], [[https://git.kernel.org/linus/b78956dc9ed7c23b8216eb36ff1c504ab762c3eb|commit]], [[https://git.kernel.org/linus/cc4b81f178c77d623eea34eb076a091a520233cb|commit]], [[https://git.kernel.org/linus/688c7734002a1ee6f50a28ba9bd7aa380edbe12d|commit]], [[https://git.kernel.org/linus/c6c9f129e98ee86f960f42a6f14fa84c82069481|commit]], [[https://git.kernel.org/linus/83fe2cd56b1ddd023a9624c916e5ad714795587b|commit]] * a225 support [[https://git.kernel.org/linus/6a7b0a670ba4d283285d76d45233cbecc5af5e40|commit]], [[https://git.kernel.org/linus/5b6f6a76e0b8908d7071cd7d83bd8fb12f38990e|commit]] * Enable support for eDP v1.4+ link rates table [[https://git.kernel.org/linus/ed100aa239be6bd7d660873674224cc6f75b3f50|commit]] * nova-core * Prepare for Turing support. This includes parsing and handling Turing-specific firmware headers and sections as well as a Turing Falcon HAL implementation [[https://lore.kernel.org/lkml/20260122222848.2555890-1-ttabi@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/0975002be52bd21196b868707ed1415cf1c45b98|commit]], [[https://git.kernel.org/linus/b72cb7bcc20c3a0d7fc29590a6e85de3dfbe9eff|commit]], [[https://git.kernel.org/linus/a65fc53d47c05802feb4ca98f26a54251ef65cfa|commit]], [[https://git.kernel.org/linus/121ea04cd9f22ae8fb405d4929f6a7faefefe553|commit]], [[https://git.kernel.org/linus/f6507640b0cddfd90d398e3996321b1a735f98be|commit]], [[https://git.kernel.org/linus/82ed3243219d160601fdb98742633bee7dc6f360|commit]], [[https://git.kernel.org/linus/954b38fd0a8f5feaa44a9c5c05ed771815949d95|commit]], [[https://git.kernel.org/linus/a75718afc9a5c61d9266d5d0010228a6a3bb7233|commit]], [[https://git.kernel.org/linus/ab2aad252fe21347674cf969a5e9d44d69e403bb|commit]], [[https://git.kernel.org/linus/dbfb5aa41f16484e5a5971571739e7ae80f5e32c|commit]], [[https://git.kernel.org/linus/58d26d42818c0f8c9b334cc7cf318b43046e675f|commit]] * atmel-hlcdc * Add support for the nomodeset kernel parameter [[https://git.kernel.org/linus/87cac7a5f99e7c7ec9687e3f1e61138da41683b7|commit]] * etnaviv * etnaviv: Add support for running a PPU flop reset [[https://lore.kernel.org/linux-kernel/20251119164624.9297-1-gert.wollny@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/a8fffbe7dec7d2dda19ed8c7cc13bed744546c05|commit]], [[https://git.kernel.org/linus/9934873be03c781e0be7b91168fb6a929b140cd1|commit]], [[https://git.kernel.org/linus/9fcdece1a734bc71d2d9f9e3dd301cc9fff23327|commit]], [[https://git.kernel.org/linus/85ba57ad88cf96b2fb4cf6c81639c7907bf3cd94|commit]], [[https://git.kernel.org/linus/6a0b99e9fb45f403c3097a9047963d2dd5b0fab2|commit]] * imagination * Add gpuid module parameter [[https://git.kernel.org/linus/3bf74137340a1ced1566f4f9e9c2f08cba7bdf7c|commit]] * mediatek * Add support for HS speed DSI [[https://git.kernel.org/linus/8b00951402f7420365b5697269b190f616bd116a|commit]] * Genio 510/700/1200-EVK, Radxa NIO-12L HDMI support [[https://git.kernel.org/linus/6c90d33aedd355732062cc96d03fe4adb7609e8b|commit]], [[https://git.kernel.org/linus/5875428ac6c7d687f9a51aef7c8665310f06be64|commit]], [[https://git.kernel.org/linus/ae9198b7a5d64e01632cd450d4408f162f88c3be|commit]], [[https://git.kernel.org/linus/0ad0f933fc0dad5a51996533d3cdb11a24c83e00|commit]], [[https://git.kernel.org/linus/19a385bd460e97b216c82603c01081f7b5c9e4ef|commit]], [[https://git.kernel.org/linus/0ddfd2f29ae229fb67b710677e7d7004e685d733|commit]], [[https://git.kernel.org/linus/e1480453aed83e2b0d2e52a0e439c56bd4c3a4c4|commit]], [[https://git.kernel.org/linus/7fe8a313e4646ae4c5cb6a6e46b78bf5c9166066|commit]] * panels * sw43408: Introduce LH546WF1-ED01 panel compatible [[https://git.kernel.org/linus/be85d4124dbe6ed597c7a6a16e53d8b98684fab6|commit]] * edp: CSW MNE007QB3-1, AUO B140HAN06.4, AUO B140QAX01.H [[https://git.kernel.org/linus/b1ea3babb67dcb8b0881c2ab49dfba88b1445856|commit]], [[https://git.kernel.org/linus/2976aeb0de77da599ad37691963efbdcb07435ce|commit]], [[https://git.kernel.org/linus/bcd752c706c357229185a330ab450b86236d9031|commit]] * Sitronix ST7920, Samsung LTL106HL02 [[https://git.kernel.org/linus/ac488854890165b55a973dab7247aa2deea9cc02|commit]], [[https://git.kernel.org/linus/88b09229f34a8a2a0c6aa8a62eb6c96011181e3c|commit]] * LG LH546WF1-ED01, !HannStar HSD156J [[https://git.kernel.org/linus/af586cc6df0bd56d4a3d05d5e6db0b193233fc51|commit]] * BOE NV130WUM-T08 [[https://git.kernel.org/linus/349d4efadc1f831ebc0b872ba1e3a2b7dd58b72b|commit]] * Anbernic RG-DS [[https://git.kernel.org/linus/ce76a267341cb306016beedb24a205e892613716|commit]] * simple: Add Innolux G150XGE-L05 panel [[https://git.kernel.org/linus/e7ec00be22d6563430f8e7bc44117cbcbf0fc1ee|commit]], [[https://git.kernel.org/linus/ed7417e5b889769ef7f66edfd0f836fa812655bc|commit]] * Add support for panels found in various tegra devices [[https://lore.kernel.org/devicetree/20251013055543.43185-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/88a18859791e7217c6ddf849bbf62484b9250bd2|commit]], [[https://git.kernel.org/linus/02349a51368337ceac6a79eb2bd188c457f6e240|commit]], [[https://git.kernel.org/linus/1acffba4ec99d1ef9d35aeeac2ef03d199729343|commit]], [[https://git.kernel.org/linus/d082a3ebb3a31aef51ccf8b2e0426679c8c99e83|commit]], [[https://git.kernel.org/linus/06fb75e2d12ee2b24129acacace044a0ddd2000d|commit]], [[https://git.kernel.org/linus/ac488854890165b55a973dab7247aa2deea9cc02|commit]] * panfrost * Add GPU_PM_RT support for RZ/G3E SoC [[https://git.kernel.org/linus/38b91e424c1ca0d6b909f8513509e1f6e938b193|commit]] * bo sync ioctl [[https://git.kernel.org/linus/9beb8dca9e749e9983e70b22e9823e6fcd519f91|commit]], [[https://git.kernel.org/linus/ea78ec98265339997959eba3c9d764317614675a|commit]], [[https://git.kernel.org/linus/e06177ec7a36391c66216b55b7c112d5ba8c4cc1|commit]], [[https://git.kernel.org/linus/c146c82f862e9c7e602a908891c3adf992ef2beb|commit]], [[https://git.kernel.org/linus/cd2c9c3015e642e28e1b528c52c06a79f350d600|commit]], [[https://git.kernel.org/linus/ae09426f47ee64bd3f34fbe815ff61eb94cc3a6b|commit]], [[https://git.kernel.org/linus/3ae6637378e64e56634ce257cb354636ada96d69|commit]], [[https://git.kernel.org/linus/2396d65d94fc75d39f096b9777f9edc9c8e677c1|commit]], [[https://git.kernel.org/linus/7be45f5489769520aa9276137d0f1f543fb81286|commit]], [[https://git.kernel.org/linus/d17592e61fa8e3b2d58df7c4a24abc8ac58b8d3f|commit]], [[https://git.kernel.org/linus/62eedf1ccba534b318ca85d3890bf0951b9e0f87|commit]], [[https://git.kernel.org/linus/0823bd894278e4c0f1acb8f3a8a3c67745e6d1f6|commit]] * bridge: simple: add the Algoltek AG6311 DP-to-HDMI bridge [[https://git.kernel.org/linus/d51e390ae84857a999ad2046e074e97663e98e36|commit]] * panthor: * bo sync ioctl * Enable timestamp propagation [[https://git.kernel.org/linus/d8f94cb02af3cc64013373c94a4b7780782ea59c|commit]] * Support partial unmaps of huge pages [[https://git.kernel.org/linus/8e7460eac786c72f48c4e04ce9be692b939428ce|commit]] * rockchip * RK3368 HDMI Support [[https://lore.kernel.org/devicetree/20251021074254.87065-1-heiko@sntech.de/T/|(cover)]], [[https://git.kernel.org/linus/0edbd43e0c149152b917c0cde61e4bd34a5bd118|commit]], [[https://git.kernel.org/linus/e7a943f0824b584e42847ad9642d7fb751022cf6|commit]], [[https://git.kernel.org/linus/048213a38e7ac1591f725e370c152cc80dd84105|commit]], [[https://git.kernel.org/linus/8319be65e860a2881e5213ed95e03992037bf5c1|commit]], [[https://git.kernel.org/linus/f54b09d46f72e4548e14476ba771231b0ec2b0af|commit]], [[https://git.kernel.org/linus/4f3df9abf44bd92ecd5d8c3018ddefa7f5bf74d0|commit]], [[https://git.kernel.org/linus/6d60168c6d2f76917b3f71d2a6807c6d8dd24363|commit]], [[https://git.kernel.org/linus/385430244e85e245f071ab158f7e4c7b2b5d99cb|commit]], [[https://git.kernel.org/linus/7f43ac104af7d3d4158ec306d4ca1c897ecce78c|commit]] * RK3506 support [[https://git.kernel.org/linus/3af0f4d5d433921fa399bbe6396221c8a9985869|commit]], [[https://git.kernel.org/linus/7919273e495b9154cc7e5f7713f002290f4d9597|commit]], [[https://git.kernel.org/linus/0244539f9a4f3b564604dfe4d639f61cecec381a|commit]], [[https://git.kernel.org/linus/cabeacc7eadc2d0033a2fc7304dfb900f9a32095|commit]], [[https://git.kernel.org/linus/ec27500c8f2b65a3be6ce39a5844d6d246d1b2b0|commit]] * fbdev * Remove hyperv_fb driver [[https://git.kernel.org/linus/40227f2efcfb7148fdee8d69ba52301951ef8a32|commit]] * armada * Add support for the nomodeset kernel parameter [[https://git.kernel.org/linus/d593767e6b1d50909ce398b9b07f16eec9d84954|commit]] == Power Management == * arch,sysfb,efi: Support EDID on non-x86 EFI systems [[https://lore.kernel.org/linux-kernel/20251126160854.553077-1-tzimmermann@suse.de/T/|(cover)]], [[https://git.kernel.org/linus/b868070fbc023b254ac46607970612e059efdcd3|commit]], [[https://git.kernel.org/linus/54bdafd7780850803385d6faf33034a0fa7cd4cc|commit]], [[https://git.kernel.org/linus/b945922619b77b95a48f254582ed86f33d24f560|commit]], [[https://git.kernel.org/linus/a41e0ab394e42c7c09ddd8155d2cc3ca17bdce55|commit]], [[https://git.kernel.org/linus/08e583ad68577ff5135d2b6fad1d3b4b400074a5|commit]], [[https://git.kernel.org/linus/4fcae635887195d6ecc427d503d7671ca46bc11b|commit]], [[https://git.kernel.org/linus/c5a8f13f1e476c90f4bc184a58751d3e7ff88f2b|commit]] * Acpica 20251212 [[https://lore.kernel.org/linux-acpi/12822121.O9o76ZdvQC@rafael.j.wysocki/T/|(cover)]], [[https://git.kernel.org/linus/d6f6bae3ecba665e18a6b6cfcd575f8e9f46b204|commit]], [[https://git.kernel.org/linus/05390d31d77ebd4cbd0bff54cbdcfd4283c9a93f|commit]], [[https://git.kernel.org/linus/19df9f21ca1a2f728deb880a526db0742059ca9f|commit]], [[https://git.kernel.org/linus/ce04af0a1bf96a6adbbe57b2d1548491cd59772b|commit]], [[https://git.kernel.org/linus/f851e03bce968ff9b3faad1b616062e1244fd38d|commit]], [[https://git.kernel.org/linus/55e81991e1e4f8e220e83677919a65e919a407bc|commit]], [[https://git.kernel.org/linus/78ebefd2cbcbaa3ff6d13754d104f38827ae7de9|commit]], [[https://git.kernel.org/linus/75c3b2d97c2a7e2197437e673c5140731dd0004a|commit]], [[https://git.kernel.org/linus/c5ecbc65bb2287b66b3b8adbdbe0fddb81bc297f|commit]], [[https://git.kernel.org/linus/30c2a333aa90c4265bed7629980eb0df72f56dfb|commit]], [[https://git.kernel.org/linus/026ad376a6a48538b576f3589331daa94daae6f0|commit]], [[https://git.kernel.org/linus/091c4af3562d0b8484c7098fd16cf3cf9f39e7c9|commit]], [[https://git.kernel.org/linus/c3bc5f6d893b8e42890bf0a1097e6cc4ec33fe0b|commit]], [[https://git.kernel.org/linus/0cc5b091ecf8d3695551b654863c3a05cdd69089|commit]], [[https://git.kernel.org/linus/522ceeceff12426b5d9e0f577921c873b9d6af6a|commit]], [[https://git.kernel.org/linus/8059c6230617b7f69c36958d59e1025a62f7185b|commit]], [[https://git.kernel.org/linus/146b5e78b3ea6ae1594f5029109c2ddaf251b1cb|commit]], [[https://git.kernel.org/linus/f259664b8853981035d5fc5297e785c99f159618|commit]], [[https://git.kernel.org/linus/6f99d3fe224feefabc012869e10cbff52eb5f5f8|commit]], [[https://git.kernel.org/linus/b110e28c3bf52c984c232ee633139ea10f754c0c|commit]], [[https://git.kernel.org/linus/9565d4713ba6d3711d7b47fee9dde6725721ac06|commit]], [[https://git.kernel.org/linus/9b02cf9ee67b284020d051da126694d555977e12|commit]], [[https://git.kernel.org/linus/691474b1ae63845044a28debe0e06b88a836770b|commit]], [[https://git.kernel.org/linus/099b050699c739797f6dd2bf47f6e15f11504db4|commit]], [[https://git.kernel.org/linus/3b8907925a7964903955b59d974d98c7ae707d7a|commit]], [[https://git.kernel.org/linus/e8f614dabd2238e462e4543abd1eb5c59e612836|commit]] * irqchip/gic-v5: Code first ACPI boot support [[https://lore.kernel.org/linux-acpi/20251218-gicv5-host-acpi-v2-0-eec76cd1d40b@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0cc5b091ecf8d3695551b654863c3a05cdd69089|commit]], [[https://git.kernel.org/linus/522ceeceff12426b5d9e0f577921c873b9d6af6a|commit]], [[https://git.kernel.org/linus/0323897a88afd4ddb3d44cd6b1b33ccd6a4b76cb|commit]], [[https://git.kernel.org/linus/a08df2fbba47be20b5769b054d9a19ddee567bdc|commit]], [[https://git.kernel.org/linus/35866efa52feaf48cc54a0745851a555654e1446|commit]], [[https://git.kernel.org/linus/a97efa5ba594642b86fb6702f38ed0d18e3b0269|commit]], [[https://git.kernel.org/linus/05bff3419adaa272713be4c07d287756a4b2c5f5|commit]] * ACPI: AGDI: Add interrupt signaling mode support [[https://git.kernel.org/linus/f7d5e9e70302c06c04599919770f3e0cb339342e|commit]] * ACPI: APEI: GHES: Add ghes_edac support for __ZX__ and _BYO_ systems [[https://git.kernel.org/linus/57d5287b7eb334e0b772be74d6ff9f2f22f0512c|commit]] * ACPI: sysfs: Add device cid attribute for exposing _CID lists [[https://git.kernel.org/linus/2aa1e462508d73e4fa2de26a3d50c867bb784830|commit]] * ACPI: x86: s2idle: Invoke Microsoft _DSM Function 9 (Turn On Display) [[https://git.kernel.org/linus/229ecbaac6b31f89c554b77eb407377a5eade7d4|commit]] * tools/power turbostat: Favor cpu# over core# [[https://lore.kernel.org/linux-pm/a2b4d0f8bf07a4a4fe8a526e10c45e593c7a3bf0.1771354333.git.len.brown@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/8e5c0cc326f2e95a71bb6e6063e65caa60c8f951|commit]], [[https://git.kernel.org/linus/96718ad296af4a6d984b3a09276b165ab6a3b0c8|commit]], [[https://git.kernel.org/linus/51496091dd37b405e6e399a9638da3f1da3f4c64|commit]] * Add thermal sensor driver support for mediatek mt8196 [[https://lore.kernel.org/linux-pm/20251125-mt8196-lvts-v4-v5-0-6db7eb903fb7@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/03656dc61deb014fb536b728da8750bff45eedb2|commit]], [[https://git.kernel.org/linus/6931d597c5ef8eae583df0cb2e4af8fbbf2b9e6e|commit]], [[https://git.kernel.org/linus/a4c40559499fdfb37bcb2aa3804c3ea3cc6c2e40|commit]], [[https://git.kernel.org/linus/6d0fc797777c6f2b9d5202fe15fbc43b2209fdd2|commit]], [[https://git.kernel.org/linus/6cd9a3b23a2d534fa582b78fd988fef7ed837ee9|commit]], [[https://git.kernel.org/linus/b5468be97fcc8c78e6904f718a249231b9e54896|commit]], [[https://git.kernel.org/linus/6de27b41b75599eb50ff919994b2d3a1adbde379|commit]], [[https://git.kernel.org/linus/1460b9dff9af392bf7ea76861187bf2c1cac0a0e|commit]] * Add mt7987 thermal support [[https://lore.kernel.org/linux-pm/20251223175710.25850-1-linux@fw-web.de/T/|(cover)]], [[https://git.kernel.org/linus/aee1950f73f40c29271e8ed07b8be106390ed0b8|commit]], [[https://git.kernel.org/linus/78c24e67d6f85d176af1ce29932dc215273c3957|commit]] * intel: selftests: workload_hint: Support slow workload hints [[https://git.kernel.org/linus/8190b9ea30fef5b9067825b91fb3ec6d678ee5e3|commit]] * Add tsu support for rz/t2h and rz/n2h [[https://lore.kernel.org/linux-pm/20260108195223.193531-1-cosmin-gabriel.tanislav.xa@renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/671d315c1c86a43128c0c30c82fe1eccc7af9901|commit]], [[https://git.kernel.org/linus/6c7f87f517d3704a3fcc3b1c7f4220c2fcf75322|commit]], [[https://git.kernel.org/linus/c33edd8f936ccf2e47eb1883f6b6944643d325c7|commit]], [[https://git.kernel.org/linus/f41eaaa5f2c9fb4fc816e45e2061d80c0b927d39|commit]], [[https://git.kernel.org/linus/0061030929e2d09398ade9fae320528bdcba2bed|commit]] * tools/power turbostat: Add L2 cache statistics [[https://git.kernel.org/linus/dd23bfe4c317a9b5cbb4edfd36e5b8df12e84b8d|commit]] * thermal: int340x: processor_thermal: Enable slow workload type hints [[https://git.kernel.org/linus/a499c24cc0720258376b6c66d7a0c73b47a0e30a|commit]] == Storage == * scsi: target: core: Add emulation for REPORT IDENTIFYING INFORMATION [[https://git.kernel.org/linus/7011e8aafe8c8fcc1c6f8bfcc6796f4530428e13|commit]] * ufs-qcom: Add support firmware managed platforms [[https://lore.kernel.org/linux-arm-msm/20260113080046.284089-1-ram.dwivedi@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/7f386b05f994fc08d4e73c0c91b76ab47da36250|commit]], [[https://git.kernel.org/linus/e2725ed2a7fb5f5f468020a52bd9ffc54caa7c8c|commit]], [[https://git.kernel.org/linus/ad44cf1b2845303285fec8bb25a02d0d0f103a82|commit]], [[https://git.kernel.org/linus/26c06d0baeb7999e44cf6717fc12d58a359eba99|commit]] * libata: Improve max sectors quirk handling [[https://lore.kernel.org/linux-ide/20251202122129.421783-8-cassel@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/59b7bb3d48333889adb1dd2aac3ab0cf26714390|commit]], [[https://git.kernel.org/linus/873abd72b8b54443ac7783d207be7333289f8287|commit]], [[https://git.kernel.org/linus/dfd975151df9f8ec69e14466f18c4b4af9823f88|commit]], [[https://git.kernel.org/linus/45c4c5a6156a5ab450a7595dd1c8985e2d459403|commit]], [[https://git.kernel.org/linus/ad50d922f4857ca58dbda172d5d6356ab53e7845|commit]], [[https://git.kernel.org/linus/f474c70065e14bac928716100eebfcfb15e1a725|commit]] * lpfc: Add support for reporting encryption events [[https://git.kernel.org/linus/e2dacf8e5e33e9d268874882ad1e0d307f693db0|commit]] * mpi3mr: Add module parameter to control threaded IRQ polling [[https://git.kernel.org/linus/24de8b1d243b86678e92f7d0fd9d9a2954728b97|commit]] * mpt3sas: Add configurable command retry limit for slow-to-respond devices [[https://git.kernel.org/linus/72340fecd0c8449dcef1fd07199b0476728aae72|commit]] * mpt3sas: Add firmware event requeue support for busy devices [[https://git.kernel.org/linus/ad59571931072e6f77b2bfa7d7fdc564dad6f331|commit]] * qla2xxx: Add support for 64G SFP speed [[https://git.kernel.org/linus/21ab087cae5000dd084dfb21d0a4d6086f79c445|commit]] * ata: Prevent non-ncq command starvation [[https://lore.kernel.org/linux-ide/20260104082203.1212962-1-dlemoal@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/bb3a8154b1a1dc2c86d037482c0a2cf9186829ed|commit]], [[https://git.kernel.org/linus/0ea84089dbf62a92dc7889c79e6b18fc89260808|commit]] * nvme: Optimize passthrough iopoll completion for local ring context [[https://lore.kernel.org/linux-block/20260116074641.665422-1-ming.lei@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/5e2fde1a9433efc484a5feec36f748aa3ea58c85|commit]], [[https://git.kernel.org/linus/f7bc22ca0d55bdcb59e3a4a028fb811d23e53959|commit]] * scsi: mpi3mr: Record and report controller firmware faults [[https://git.kernel.org/linus/ec54b348f274fdd2bd32bbe74de6d62ae1a10a18|commit]] * scsi: qla2xxx: Add load flash firmware mailbox support for 28xxx [[https://git.kernel.org/linus/b99b04b12214ff5e4a01575c3c6612ae79bc5e76|commit]] * ata: pata_legacy: remove VLB support [[https://git.kernel.org/linus/3c4d783f6922e47fc31528c3ed6a240612c4ce15|commit]] == Drivers in the Staging area == * iio: adt7316: modernize power management [[https://git.kernel.org/linus/c84cde33b00451c7380482d19feef67d04deae7d|commit]] == Networking == * Bluetooth * btusb: Add device ID for Realtek RTL8761BU [[https://git.kernel.org/linus/cc6383d4f0cf6127c0552f94cae517a06ccc6b17|commit]] * btusb: Add USB ID 0489:e112 for Realtek 8851BE [[https://git.kernel.org/linus/e07094a51ad8faf98ea64320799ce550828e97cd|commit]] * btusb: Add new VID/PID for RTL8852CE [[https://git.kernel.org/linus/d9f7c39c6b7548bd70519b241b6c2d1bcc658d4b|commit]] * btusb: Add support for !MediaTek7920 0489:e158 [[https://git.kernel.org/linus/2630bcc8343a9d2a38dc1793068e6754b3156811|commit]] * hci_bcm4377: Use generic power management [[https://git.kernel.org/linus/502a5731d3538b9b00fc7edea3aaf378bf916b96|commit]] * hci_qca: Refactor HFP hardware offload capability handling [[https://lore.kernel.org/linux-arm-msm/20260127025423.1418207-1-mengshi.wu@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/22d893eec0d52fa97d25d3de248285648f26ef68|commit]], [[https://git.kernel.org/linus/eba86d86eec8428bd743523ec76932838e0b30f7|commit]] * btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB [[https://git.kernel.org/linus/6c0568b7741a346088fd6dfced2d871f7d481d06|commit]] * RDMA/mana_ib: Add device‑memory support [[https://git.kernel.org/linus/a01745ccf7c41043c503546cae7ba7b0ff499d38|commit]] * RDMA/mlx5: Implement query_port_speed callback [[https://git.kernel.org/linus/aaecff5e13cd98d9a9260bf2ec83ef3a1bda86a6|commit]] * RDMA/bnxt_re: Add QP rate limit support [[https://lore.kernel.org/linux-rdma/20260202133413.3182578-1-kalesh-anakkur.purayil@broadcom.com/T/|(cover)]], [[https://git.kernel.org/linus/e72d45d274d8edd8c1c365444403a02147f484a6|commit]], [[https://git.kernel.org/linus/13edc7d4e0aa4abb5d50a062b61b9bffb01b0327|commit]], [[https://git.kernel.org/linus/949e7c062d3769d9522e8a4abe080fb92ddd61bf|commit]], [[https://git.kernel.org/linus/cae42d97d94e9c9803554ca6d577297a2270d471|commit]], [[https://git.kernel.org/linus/42e3aac65c1c9eb36cdee0d8312a326196e0822f|commit]] * RDMA/efa: Check stored completion CTX command ID with received one [[https://git.kernel.org/linus/4b01ec0f133b3fe1038dc538d6bfcbd72462d2f0|commit]] * RDMA/hns: Introduce limit_bank mode with better performance [[https://git.kernel.org/linus/8818ffb04bfa168dfe5056cd24cee5211dcc4b3c|commit]] * RDMA/hns: Support drain SQ and RQ [[https://git.kernel.org/linus/354e7a6d448b5744362bf33a24315d4d1d0bb7ef|commit]] * RDMA/mlx5: Implement query_port_speed callback [[https://git.kernel.org/linus/aaecff5e13cd98d9a9260bf2ec83ef3a1bda86a6|commit]] * ulp: Misc patches for rtrs [[https://lore.kernel.org/linux-rdma/20260107161517.56357-1-haris.iqbal@ionos.com/T/|(cover)]], [[https://git.kernel.org/linus/83835f7c07b523c7ca2a5ad0a511670b5810539e|commit]], [[https://git.kernel.org/linus/d6cc7b0d6191e3762296dd32a8d9c2e276b950dd|commit]], [[https://git.kernel.org/linus/9293e042782df38434191de8f3703fe2cb808ad6|commit]], [[https://git.kernel.org/linus/f85febf57bb567b59b41a13c9bf845a73b616d10|commit]], [[https://git.kernel.org/linus/781c35b5d570d3dd242cf0578a92c93ca63fc14f|commit]], [[https://git.kernel.org/linus/c32eaba2d760ef0ec5426b207cf0ce750064cf36|commit]], [[https://git.kernel.org/linus/b034a10fdfc4fff547a4ee0602538a214534c426|commit]], [[https://git.kernel.org/linus/6405f72e7a3ad7567d16ad5b52d086f573c39548|commit]], [[https://git.kernel.org/linus/fc290630702b530c2969061e7ef0d869a5b6dc4f|commit]], [[https://git.kernel.org/linus/88f2bf22d99b4a89f5ec3d3dec07271368499c3c|commit]] * IB/core: Add query_port_speed verb [[https://git.kernel.org/linus/51a07ce2fefd061edf4ba552a741c85f07b3e6dd|commit]] * Add support for exporting dma-buf file descriptors [[https://lore.kernel.org/linux-kernel/20260201-dmabuf-export-v3-0-da238b614fe3@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/9ad95a0f2b75a788325249f341694e0343facf7b|commit]], [[https://git.kernel.org/linus/0ac6f4056c4a257f4b230b910e3e6fee6c6fc9b9|commit]], [[https://git.kernel.org/linus/d6c58f4eb3d00a695f5a610ea780cad322ec714e|commit]] * amd-xgbe: add support for rx alignment errors [[https://git.kernel.org/linus/43dc088c19a60200e85c0da58d76c10094236fdd|commit]] * Add support for tpa events [[https://git.kernel.org/linus/c2effd12c96d4b4a5fe11c0b4bcf3d781654b657|commit]] * bnge/bng_re: Add a new HSI [[https://git.kernel.org/linus/42d1c54d624886ae46dbab89ed6b2088434ca088|commit]] * Allow ntuple filters for drops [[https://git.kernel.org/linus/61cef6454cfbb9fcdbe41401fb53895f86603081|commit]] * Add canfd support to r9a09g056/057/077/087 socs [[https://lore.kernel.org/linux-renesas-soc/20260114154525.3169992-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/af6b427c7ad096724da7399b180dc3bb9f033322|commit]], [[https://git.kernel.org/linus/c74ab6275c34315b3987750760c900136b1009fe|commit]], [[https://git.kernel.org/linus/1e3710b1fe915e24ff78f6b7a838eb9557c5baca|commit]], [[https://git.kernel.org/linus/e8e46378825b058feefff799537e797fae321858|commit]] * Add fd-only mode support for r-car canfd [[https://lore.kernel.org/linux-can/20251126155911.320563-1-biju.das.jz@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/1766de15a571662fcd9c0a870de3a06890142a1e|commit]], [[https://git.kernel.org/linus/9a2b56a48c219d189366dd9bf4c2b42afde2f361|commit]] * dsa: lantiq: add support for Intel GSW150 [[https://lore.kernel.org/lkml/cover.1769099517.git.daniel@makrotopia.org/T/|(cover)]], [[https://git.kernel.org/linus/b6d6f017022fd45dc048c03d9233bba623af27ed|commit]], [[https://git.kernel.org/linus/e7e354aa496b1ba33cf72e93ff10bf585705d15a|commit]], [[https://git.kernel.org/linus/338375118514f28f15a23046578d15fd8ba4c199|commit]], [[https://git.kernel.org/linus/6d622840224967ca34587e293d550f3d931cc852|commit]], [[https://git.kernel.org/linus/99f465889a609fda6ec8fb5c50a8f8808ba28718|commit]], [[https://git.kernel.org/linus/afe813fd89ecde068a5f972714c4abf896715167|commit]] * dsa: yt921x: Add STP/MST/HSR/LAG support [[https://lore.kernel.org/netdev/20251126093240.2853294-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/d973ac83ad0d0292c81d4bcbb4a335834f90aa5d|commit]], [[https://git.kernel.org/linus/633b1d010ce838bd5e9dd71e738328e16e3df81d|commit]], [[https://git.kernel.org/linus/bd62e6f5e6a98f1657cf9c3b632bdb7a2e78d42c|commit]], [[https://git.kernel.org/linus/0b42aeb46873c0204c15ff3f11d31f3a4133776b|commit]] * dsa: yt921x: Add DCB/QoS support [[https://lore.kernel.org/netdev/20260131021854.3405036-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a63daf73a5870d73929546a525fca3b3fc08fece|commit]], [[https://git.kernel.org/linus/8cdb2cc9a11b589b564bd0fc72e524e1be69e967|commit]], [[https://git.kernel.org/linus/75b85703fd48bc63fcc91bf9206f71c4a2c592ec|commit]], [[https://git.kernel.org/linus/95e6bcab3c08e8a717c253631a14cd1a5e46eb8a|commit]], [[https://git.kernel.org/linus/d5f778353fd443efd55069b93f3cd0447cfb9276|commit]] * eth fbnic: Add debugfs hooks for firmware mailbox [[https://git.kernel.org/linus/ac7b803c2dd57938cbf1e9a3ada23471925a5d46|commit]] * bnxt: Stats, tools, driver tests for hw gro [[https://lore.kernel.org/netdev/20260207003509.3927744-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/a7fc1a488f09f0fbf727fe3ca5b017e7657f152d|commit]], [[https://git.kernel.org/linus/5374c334d64f8e1dfc4aadcbcd3a1090fbe39acb|commit]], [[https://git.kernel.org/linus/c61a375315c0374134b9ad883f0c64c982c2016b|commit]] * fbnic: Advertise supported XDP features. [[https://git.kernel.org/linus/e977fcb3a318b53b47f23b44ac237fceb1b731fe|commit]] * s2io: remove unused driver [[https://git.kernel.org/linus/56db6c52bb61509c114b9f1b1eecc7461229770a|commit]] * thunderbolt: Various improvements [[https://lore.kernel.org/netdev/20260115115646.328898-1-mika.westerberg@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/8411d7286bcbda9c3d6bbe5c1427fe895c216628|commit]], [[https://git.kernel.org/linus/a9927022c4491ba44249af079e8799ce56f8053c|commit]], [[https://git.kernel.org/linus/2e62e5565bd287d157ad09b0a6d88446d38771ed|commit]], [[https://git.kernel.org/linus/7a3d3279a566813b453f9ac4cf01e6f48e4e40e4|commit]] * fec: add fec_alloc_rxq_buffers_pp() to allocate buffers from page pool [[https://lore.kernel.org/netdev/20260113032939.3705137-11-wei.fang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]], [[https://git.kernel.org/linus/a2ae70c0efe4eebc6dd5b96fcfbea913403768a3|commit]], [[https://git.kernel.org/linus/fee723a48cbe630c0e16ba3e6bca13569946a21c|commit]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]] * hinic3: PF initialization [[https://lore.kernel.org/linux-kernel/cover.1768375903.git.zhuyikai1@h-partners.com/T/|(cover)]], [[https://git.kernel.org/linus/53200a8605d70cc00c5b3526cc1116599c47359d|commit]], [[https://git.kernel.org/linus/a30cc9b277903bcbfb00cefdf51cc3dc71195f7d|commit]], [[https://git.kernel.org/linus/f47872bed40ffee580ac772eefea94fab75b18d3|commit]], [[https://git.kernel.org/linus/721df7639c83f008dc15669268be315f2a205c34|commit]], [[https://git.kernel.org/linus/2467a0466028f23c9ee173ddd160ef766a838e8d|commit]], [[https://git.kernel.org/linus/0f9e2d957474c19fb81a1182ee784fcbea73933c|commit]], [[https://git.kernel.org/linus/b35a6fd37a00dae184ca1a1f0a587cc1b167d86d|commit]], [[https://git.kernel.org/linus/aebd95b00a3a62e90121d19198b88e4fa555dd38|commit]], [[https://git.kernel.org/linus/cb36f89b1001ef7a8b661c46c5bf91c35ec91cac|commit]] * atp: drop ancient parallel-port Ethernet driver [[https://git.kernel.org/linus/b00a7b3a612925faa7362f5c61065e3e5f393fff|commit]] * bng_en: enhancements for RX and TX datapath [[https://git.kernel.org/linus/4d6a60057c34b7db611905d5a65ef2e6a36ec731|commit]], [[https://git.kernel.org/linus/23cfc4e8e149012a137aba13f25667f311d4e670|commit]], [[https://git.kernel.org/linus/bd5ad9c052c855c0c8a0e98f5405a22f5887b298|commit]], [[https://git.kernel.org/linus/5deaeae186b4e3b2e2f1dd16f6279873424935aa|commit]], [[https://git.kernel.org/linus/c858ac8735ae6b5808a0655d72e0753edbe6b5ac|commit]], [[https://git.kernel.org/linus/58165c99324e0590c7eb0e3addffd3bd5ca18780|commit]] * bnge/bng_re: Add a new HSI [[https://git.kernel.org/linus/42d1c54d624886ae46dbab89ed6b2088434ca088|commit]] * bnxt_en: Allow ntuple filters for drops [[https://git.kernel.org/linus/61cef6454cfbb9fcdbe41401fb53895f86603081|commit]] * bnxt_en: Updates for net-next [[https://lore.kernel.org/netdev/20260108183521.215610-1-michael.chan@broadcom.com/T/|(cover)]], [[https://git.kernel.org/linus/fdb573d675e3ac50f0b58aaa35bfe7e8c585ba5f|commit]], [[https://git.kernel.org/linus/c470195b989fe7b9f92297e465c4e8a2363c0bb3|commit]], [[https://git.kernel.org/linus/e1c9c8928b5b447dfd9e70cb2007567b0b72d487|commit]], [[https://git.kernel.org/linus/743e683596fa3c1f8d7dfb3f84fadfbdd396ef1a|commit]], [[https://git.kernel.org/linus/51b9d3f948b8182a52c1711755ca41b9e9fd166f|commit]], [[https://git.kernel.org/linus/bc87b14594e30720a5c1546c24e0f5f08d34eb40|commit]] * bnxt_en: Add support for FEC bin histograms [[https://git.kernel.org/linus/e1c9c8928b5b447dfd9e70cb2007567b0b72d487|commit]] * e1000e: introduce new board type for Panther Lake PCH [[https://git.kernel.org/linus/5b644464eeeac485685c6632bcc95347ae6c8677|commit]] * eth: fbnic: Add debugfs hooks for tx/rx rings [[https://git.kernel.org/linus/df04373b0dab3985769773e011eb61264a4055a3|commit]] * dnet: remove driver [[https://git.kernel.org/linus/2c297957912bdfaadbf91b3353e3af87c6c41cbe|commit]] * neterion: s2io: remove unused driver [[https://git.kernel.org/linus/aba0138eb7d72fec755a985fae42a54b7ff147a8|commit]] * Refactor idpf resource [[https://lore.kernel.org/netdev/20251113004143.2924761-1-joshua.a.hay@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/d83d80347dea37e568ca9abf969ee909859a5a7d|commit]], [[https://git.kernel.org/linus/d1061502f353d5e1a8937181b84b722e75fabf11|commit]], [[https://git.kernel.org/linus/502eccecce5fbcef9ea3b90957e2660dfb6c5dcc|commit]], [[https://git.kernel.org/linus/f6892116be91bb9d70d31b1ce2474bde0a8c52f9|commit]], [[https://git.kernel.org/linus/47ee0543a45042b54f85a935ae2f1422b30028a9|commit]], [[https://git.kernel.org/linus/cfa7029a25000f4e09e3a69bb9510f73dd1dbe3f|commit]], [[https://git.kernel.org/linus/9ad94c235aa65f81e32c5762f24e118565c93105|commit]], [[https://git.kernel.org/linus/601643400bbb6bd89b958a929667974766c10250|commit]], [[https://git.kernel.org/linus/822cd0923344f03bb568f8a675fd1b955f9e858c|commit]], [[https://git.kernel.org/linus/086d030e99d25b27d89ab62c8509db7626bdcc48|commit]] * Core improvements and ice e825-c synce support [[https://lore.kernel.org/netdev/20260203174002.705176-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/d0f4771e2befbe8de3a16a564c6bbd1d5502cec3|commit]], [[https://git.kernel.org/linus/e6dc7727b6083a6bb76a5ba874e040034cd33b47|commit]], [[https://git.kernel.org/linus/2be467588d6bc6ec5988fc254e62a44b865912a0|commit]], [[https://git.kernel.org/linus/711696b3e168cea4165e7b7f051f3f442a347430|commit]], [[https://git.kernel.org/linus/fdad05ed4ec23b8de23c0037cea9aedbdc9cd24b|commit]], [[https://git.kernel.org/linus/729f5e0153bda8c0423fb7c5795865b6b77ca050|commit]], [[https://git.kernel.org/linus/3c0da1030c58b0f1ee4d8ef4722466f8ce734a53|commit]], [[https://git.kernel.org/linus/085ca5d2017116ce3102eafa760ee8eb91fb1eeb|commit]], [[https://git.kernel.org/linus/ad1df4f2d591e167bc64b8a7ce6328a2735e3d58|commit]] * ixgbe: Add 10G-BX support [[https://git.kernel.org/linus/483dd5f36f891a2c3c2bc3231dd136891e75b744|commit]] * mana: Implement ndo_tx_timeout and serialize queue resets per port. [[https://git.kernel.org/linus/3b194343c25084a8d2fa0c0f2c9e80f3080fd732|commit]] * Support devlink port state for host pf [[https://git.kernel.org/linus/0e6c95c9882913ba88417f035f5a9f343afd5db0|commit]] * mlx5e: Save per-channel async ICOSQ in default [[https://lore.kernel.org/netdev/1768376800-1607672-1-git-send-email-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/ea945f4f399130658a358103b57f37c2d2150458|commit]], [[https://git.kernel.org/linus/56aca3e0f7308821b6404730a0a6bfd9f26fa04c|commit]], [[https://git.kernel.org/linus/1b080bd748409d330399c2607ea18dfbb5df802d|commit]], [[https://git.kernel.org/linus/abed42f9cd809bf790c415c86f6dc41a3f69c91b|commit]] * mlx5e: RX datapath enhancements [[https://lore.kernel.org/netdev/20260203072130.1710255-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/7ed7a576f20a8c60bbd4335e57776f3ad5812577|commit]], [[https://git.kernel.org/linus/09e6960e843586315ddf3222daa217244688e76d|commit]] * RDMA/mlx5: Implement query_port_speed callback [[https://git.kernel.org/linus/aaecff5e13cd98d9a9260bf2ec83ef3a1bda86a6|commit]] * mlx5e: RX datapath enhancements [[https://lore.kernel.org/netdev/20260203072130.1710255-1-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/7ed7a576f20a8c60bbd4335e57776f3ad5812577|commit]], [[https://git.kernel.org/linus/09e6960e843586315ddf3222daa217244688e76d|commit]] * mlx5: Support effective VF bandwidth query in LAG mode [[https://git.kernel.org/linus/3df5dd46fca4b20efc4767c61d8ecc7249e83f5b|commit]], [[https://git.kernel.org/linus/8f0b4cce4481fb22653697cced8d0d04027cb1e8|commit]], [[https://git.kernel.org/linus/80351761facb63d6fab1e42c77d7565047bc10ad|commit]], [[https://git.kernel.org/linus/4b01ec0f133b3fe1038dc538d6bfcbd72462d2f0|commit]], [[https://git.kernel.org/linus/dab5825491f7b0ea92a09390f39df0a51100f12f|commit]], [[https://git.kernel.org/linus/a3572bdc3a028ca47f77d7166ac95b719cf77d50|commit]], [[https://git.kernel.org/linus/8818ffb04bfa168dfe5056cd24cee5211dcc4b3c|commit]], [[https://git.kernel.org/linus/ddd6c8c873e912cb1ead79def54de5e24ff71c80|commit]], [[https://git.kernel.org/linus/c0a26bbd3f99b7b03f072e3409aff4e6ec8af6f6|commit]], [[https://git.kernel.org/linus/8cda8acbb1f8c6c0fec45b7166bb558b5af59da8|commit]], [[https://git.kernel.org/linus/84bd5d60f0a2b9c763c5e6d0b3d8f4f61f6c5470|commit]], [[https://git.kernel.org/linus/0789f929900d85b80b343c5f04f8b9444e991384|commit]], [[https://git.kernel.org/linus/50f1d188c580222d7a73e96a338a5dc82360ccc0|commit]], [[https://git.kernel.org/linus/28ea6036dad268a055b693d9c06a6f3d126096d3|commit]], [[https://git.kernel.org/linus/f0b2fde98065e49795ce6824837b3f53fdf16e5d|commit]], [[https://git.kernel.org/linus/976cc7ac1264ff52e05769854b472366107104ec|commit]], [[https://git.kernel.org/linus/263d1d9975b5ac2b813c3107fe21c957b57f0a59|commit]], [[https://git.kernel.org/linus/2941abac6d0bffd6bf8f438135505b39168a0a08|commit]], [[https://git.kernel.org/linus/d4adeff26c3e8f1a9bc86d5dfb14f227c9041070|commit]], [[https://git.kernel.org/linus/51a07ce2fefd061edf4ba552a741c85f07b3e6dd|commit]], [[https://git.kernel.org/linus/3fd984d5cd8f0df8e79337fbd9283c31dee9ed31|commit]], [[https://git.kernel.org/linus/aaecff5e13cd98d9a9260bf2ec83ef3a1bda86a6|commit]] * mlx5e: Extend TC max ratelimit using max_bw_value_msb [[https://git.kernel.org/linus/3e5aa52b45c73470092f00d219e947f32cce340c|commit]] * dsa: yt921x: Add DCB/QoS support [[https://lore.kernel.org/netdev/20260131021854.3405036-1-mmyangfl@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a63daf73a5870d73929546a525fca3b3fc08fece|commit]], [[https://git.kernel.org/linus/8cdb2cc9a11b589b564bd0fc72e524e1be69e967|commit]], [[https://git.kernel.org/linus/75b85703fd48bc63fcc91bf9206f71c4a2c592ec|commit]], [[https://git.kernel.org/linus/95e6bcab3c08e8a717c253631a14cd1a5e46eb8a|commit]], [[https://git.kernel.org/linus/d5f778353fd443efd55069b93f3cd0447cfb9276|commit]] * phy: adin: enable configuration of the LP Termination Register [[https://lore.kernel.org/netdev/20260107221913.1334157-1-osose.itua@savoirfairelinux.com/T/|(cover)]], [[https://git.kernel.org/linus/7376ba2db168c9e83f90e68f5f85c7d7f5645164|commit]], [[https://git.kernel.org/linus/a6733836527da97767aa7cdd2d3c6984460afdb3|commit]] * dsa: initial support for !MaxLinear !MxL862xx switches [[https://lore.kernel.org/lkml/cover.1770433307.git.daniel@makrotopia.org/T/|(cover)]], [[https://git.kernel.org/linus/4ccc9851355ff050ddde5a956fe8407958bc9e1a|commit]], [[https://git.kernel.org/linus/85ee98742902735d65ef3a8e14e16870490e5f2f|commit]], [[https://git.kernel.org/linus/b405b26d8d27fbb09c6ce2e7cc0eada9a63136b6|commit]], [[https://git.kernel.org/linus/23794bec1cb606fee9e4876f0e86f592e1301f58|commit]] * phy: Introduce PHY ports representation [[https://lore.kernel.org/netdev/20260108080041.553250-1-maxime.chevallier@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/fb7a8d0786e491e8dbd5fd72d5a5d042901c8076|commit]], [[https://git.kernel.org/linus/3f25ff740950b8e850a8b6e637c48f1d23ecf388|commit]], [[https://git.kernel.org/linus/589e934d2735b55fbe68517128668df7af3ac4ae|commit]], [[https://git.kernel.org/linus/333c29a27f96bfe1577af68fc3856bb17034f755|commit]], [[https://git.kernel.org/linus/ffb8587363a3567131fdf3f49e4e3d7e9f8b48d5|commit]], [[https://git.kernel.org/linus/07f3ca9e092cb881466da0d726431a977f33858f|commit]], [[https://git.kernel.org/linus/d7c6082f7e7771dcc999ea07dba32658b2ed0dfd|commit]], [[https://git.kernel.org/linus/ea317f077a38d42e88851f236556dd4e167476e8|commit]], [[https://git.kernel.org/linus/1384e138382991b226364f4915128998c25d6a36|commit]], [[https://git.kernel.org/linus/35d1a5464b476aa98b7b76ce41bb4de748cebfc2|commit]], [[https://git.kernel.org/linus/4e26a284b9be6ee99d2e0924a708299f8264e483|commit]], [[https://git.kernel.org/linus/154bc3b66c313c6213dbc75defeb2fbe19e49dc8|commit]], [[https://git.kernel.org/linus/bad869b5e41a08424ff130fd6bb41b854be70095|commit]], [[https://git.kernel.org/linus/62518b5b3d8e3a29a64c28e91ae3ec624b46ccd2|commit]] * Airoha an8811hb 2.5 gbps phy support [[https://lore.kernel.org/netdev/20260127125547.1475164-1-bjorn@mork.no/T/|(cover)]], [[https://git.kernel.org/linus/28693bceee97935facabd9d96c9f497f12327dc5|commit]], [[https://git.kernel.org/linus/5afda1d734ededaed5edc5c5c148ae57b9ddd27b|commit]], [[https://git.kernel.org/linus/0a55766b7711437a188419febd2e8002fb57b00e|commit]] * Add dwmac glue driver for motorcomm yt6801 [[https://lore.kernel.org/linux-kernel/20260109093445.46791-2-me@ziyao.cc/T/|(cover)]], [[https://git.kernel.org/linus/365e649361cde842c720ffa4b6a22fe092287990|commit]], [[https://git.kernel.org/linus/02ff155ea2812ea25a086665522fd4fa196ef0ce|commit]], [[https://git.kernel.org/linus/40ca42c8429b5d38e8f51f4e1794c2d3c8a9b1c7|commit]] * Add support for rtl8127atf (10g fiber sfp) [[https://lore.kernel.org/netdev/c2ad7819-85f5-4df8-8ecf-571dbee8931b@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/c4277d21ab694c7964a48759a5452e5bbbe12965|commit]], [[https://git.kernel.org/linus/fef0f545511f72223481aab1fd24d5f8f1c9d774|commit]] * eth fbnic: Add debugfs hooks for firmware mailbox [[https://git.kernel.org/linus/ac7b803c2dd57938cbf1e9a3ada23471925a5d46|commit]] * fec: improve XDP copy mode and add AF_XDP zero-copy support [[https://lore.kernel.org/netdev/20260113032939.3705137-11-wei.fang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]], [[https://git.kernel.org/linus/a2ae70c0efe4eebc6dd5b96fcfbea913403768a3|commit]], [[https://git.kernel.org/linus/fee723a48cbe630c0e16ba3e6bca13569946a21c|commit]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]], [[https://git.kernel.org/linus/25eb3058eb70af15dc5c9710e859e2708d3babd2|commit]] * idpf: export RX hardware timestamping information to XDP [[https://git.kernel.org/linus/13a4be41261f7ab8d705f20d9f10652ac1e087c0|commit]] * mlx5: Add TSO support for UDP over GRE over VLAN [[https://git.kernel.org/linus/6e6c751b41a8113f4bd9626ccc95a06e307c7a79|commit]], [[https://git.kernel.org/linus/5f410e1224e49c68818475289ed4a943461f00c3|commit]], [[https://git.kernel.org/linus/b30ba673058d9657f03ef55a9efa2db544d244b5|commit]] * pcs: rzn1-miic: Support configurable PHY_LINK polarity [[https://lore.kernel.org/linux-renesas-soc/20260112173555.1166714-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/98e8039a3b14281b3240f0b40469041365d0e378|commit]], [[https://git.kernel.org/linus/61f1139a476569dfe28778358e01ebcf0bef3837|commit]] * Airoha an8811hb 2.5 gbps phy support [[https://lore.kernel.org/netdev/20260127125547.1475164-1-bjorn@mork.no/T/|(cover)]], [[https://git.kernel.org/linus/28693bceee97935facabd9d96c9f497f12327dc5|commit]], [[https://git.kernel.org/linus/5afda1d734ededaed5edc5c5c148ae57b9ddd27b|commit]], [[https://git.kernel.org/linus/0a55766b7711437a188419febd2e8002fb57b00e|commit]] * phy: Introduce PHY ports representation [[https://lore.kernel.org/netdev/20260108080041.553250-1-maxime.chevallier@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/fb7a8d0786e491e8dbd5fd72d5a5d042901c8076|commit]], [[https://git.kernel.org/linus/3f25ff740950b8e850a8b6e637c48f1d23ecf388|commit]], [[https://git.kernel.org/linus/589e934d2735b55fbe68517128668df7af3ac4ae|commit]], [[https://git.kernel.org/linus/333c29a27f96bfe1577af68fc3856bb17034f755|commit]], [[https://git.kernel.org/linus/ffb8587363a3567131fdf3f49e4e3d7e9f8b48d5|commit]], [[https://git.kernel.org/linus/07f3ca9e092cb881466da0d726431a977f33858f|commit]], [[https://git.kernel.org/linus/d7c6082f7e7771dcc999ea07dba32658b2ed0dfd|commit]], [[https://git.kernel.org/linus/ea317f077a38d42e88851f236556dd4e167476e8|commit]], [[https://git.kernel.org/linus/1384e138382991b226364f4915128998c25d6a36|commit]], [[https://git.kernel.org/linus/35d1a5464b476aa98b7b76ce41bb4de748cebfc2|commit]], [[https://git.kernel.org/linus/4e26a284b9be6ee99d2e0924a708299f8264e483|commit]], [[https://git.kernel.org/linus/154bc3b66c313c6213dbc75defeb2fbe19e49dc8|commit]], [[https://git.kernel.org/linus/bad869b5e41a08424ff130fd6bb41b854be70095|commit]], [[https://git.kernel.org/linus/62518b5b3d8e3a29a64c28e91ae3ec624b46ccd2|commit]] * mxl-gpy: implement SGMII in-band configuration [[https://git.kernel.org/linus/9da9633f2f02df7da67ab3b6f84eda4956ae1c5a|commit]] * Add support for rtl8127atf (10g fiber sfp) [[https://lore.kernel.org/netdev/c2ad7819-85f5-4df8-8ecf-571dbee8931b@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/c4277d21ab694c7964a48759a5452e5bbbe12965|commit]], [[https://git.kernel.org/linus/fef0f545511f72223481aab1fd24d5f8f1c9d774|commit]] * Add support for extended chip version id and rtl9151as [[https://git.kernel.org/linus/5e3c5a2b85da973c1f20c93ccc9b251da1c64142|commit]] * Remove hippi support and roadrunner hippi driver [[https://git.kernel.org/linus/d8f87aa5fa0a4276491fa8ef436cd22605a3f9ba|commit]] * stmmac: move serdes power methods to stmmac_[open|release]() [[https://git.kernel.org/linus/61aaa625371440938b55d703501f8820018f737e|commit]] * spacemit: Add ethernet support for K3 [[https://lore.kernel.org/netdev/20260128072931.875041-1-inochiama@gmail.com/T/|(cover)]] * Stp/rstp switch support for pru-icssm ethernet driver [[https://lore.kernel.org/linux-kernel/20260130124559.1182780-1-parvathi@couthit.com/T/|(cover)]], [[https://git.kernel.org/linus/4c8566a12f14c1d13bfb2c32469c06c94a60d25e|commit]], [[https://git.kernel.org/linus/eea65b87493e1fcf9397e0f1d8cecb7d379e051b|commit]], [[https://git.kernel.org/linus/eca327ae9aa6ce0b13449d0f07b62f16f8444065|commit]] * usb: catc: enable basic endpoint checking [[https://git.kernel.org/linus/9e7021d2aeae57c323a6f722ed7915686cdcc123|commit]] * r8152: add TRENDnet TUC-ET2G [[https://git.kernel.org/linus/15fba71533bcdfaa8eeba69a5a5a2927afdf664a|commit]] * Bluetooth, wifi, arm64: extend WCN driver to support WCN399x device [[https://lore.kernel.org/linux-arm-msm/20260119-wcn3990-pwrctl-v3-0-948df19f5ec2@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/afcf3ec615c918dd71139e7ca2f4812ceea48cd7|commit]] * ath11k: Add single shot/periodic CFR capture support [[https://lore.kernel.org/linux-wireless/20251230082520.3401007-1-qian.zhang@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/9b2e3b4ebec7f23a552de4ee6f2e5da8028a2920|commit]], [[https://git.kernel.org/linus/9754d4ba4df7e63ab271abb8190008c3a4dfcd26|commit]], [[https://git.kernel.org/linus/b3d43d890399e4f49f31d90083bfe9b349cce6dc|commit]], [[https://git.kernel.org/linus/c1bf6959dd81949ebcdeef53fbc9bfff91ec241a|commit]], [[https://git.kernel.org/linus/99cf756831d203fcdd3f9a8833355fb86611a1f2|commit]], [[https://git.kernel.org/linus/ca765beda7084ebad7630bc403bc0b2598d34e98|commit]] * ath12k: Improve hal APIs usage in rx path [[https://lore.kernel.org/linux-wireless/20250910181414.2062280-1-quic_rdeuri@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/00139e4d7baf41e05b907846dbc53829421bb1fc|commit]], [[https://git.kernel.org/linus/4ae34800a70d2704ec3a55146c86c4355a4129f6|commit]], [[https://git.kernel.org/linus/dd33e179466e4c0c5f74ebd838eedd9212cd3964|commit]], [[https://git.kernel.org/linus/52537339693789f3dd4ef7931f417ad641ee864b|commit]], [[https://git.kernel.org/linus/92541061a6fd4e6a0acd700e8544cb26f19570e8|commit]], [[https://git.kernel.org/linus/e8a1e49c63280e6266392cb4a9f879e22bad893a|commit]], [[https://git.kernel.org/linus/0cdb09b19760f3464b3fbed782b59758124537c3|commit]], [[https://git.kernel.org/linus/972f34d54015a4a16aa9e6a081bafabb6f9bf95c|commit]] * ath12k: Add support RX PDEV stats [[https://git.kernel.org/linus/f20de310882d3c9b0a051b30dc39d0b640cc9cbc|commit]] * ath12k: add support for QCC2072 [[https://lore.kernel.org/linux-wireless/20260112-ath12k-support-qcc2072-v2-0-fc8ce1e43969@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/7a6b6386deb71908181adc26c6ddbe9bc6cef169|commit]], [[https://git.kernel.org/linus/9615a6727e9d836e60dd4c7442bc8c16f0382203|commit]], [[https://git.kernel.org/linus/1f165022d5f06a420a2257d7c38e3d19e16ef071|commit]], [[https://git.kernel.org/linus/7f852de0003219c431a6f2ffd951fd82a4673660|commit]], [[https://git.kernel.org/linus/6281d4f4df228b3588eeb3186d97e195fed07d35|commit]], [[https://git.kernel.org/linus/b5151c9b6e3a347416a4b4b55fc00195526d8771|commit]], [[https://git.kernel.org/linus/089e0e746d598b5d305dae366e022dd90e1bd4f2|commit]], [[https://git.kernel.org/linus/12048e2c052b1992857fb71a86d13e0e5b65e5da|commit]], [[https://git.kernel.org/linus/68cc3ac88118ee9ab797aadf15dd30a8145b4be7|commit]], [[https://git.kernel.org/linus/b065ccf4193ed5f0c224b53fc2cb829a0e2b701e|commit]], [[https://git.kernel.org/linus/28badc78142e4750136ae51da474cdc150a8b3ff|commit]], [[https://git.kernel.org/linus/023ace9f9232d43137f346d908996a6fee4de70a|commit]], [[https://git.kernel.org/linus/b7ffeb0f62fddc5f21c6ff610d28e08247b6b9b5|commit]], [[https://git.kernel.org/linus/37b34a1c545aa2ab94f3ce1aceec3f00d6f8e039|commit]], [[https://git.kernel.org/linus/d518b2d601acffdea6d50ff951cb1344a4807976|commit]], [[https://git.kernel.org/linus/d6c5d412f60007e23bebc4eba1de2530a7651962|commit]], [[https://git.kernel.org/linus/853deed04be384fde9138e0442630b5bddf2e418|commit]], [[https://git.kernel.org/linus/d8e1f4a193101a72235416f189b01131a57e26e9|commit]] * ath12k: Add support for RX pdev TX hardware queue stats via HTT debugfs [[https://git.kernel.org/linus/e4763898bb1325dbb3792961b6d607b5c6452d64|commit]], [[https://git.kernel.org/linus/f20de310882d3c9b0a051b30dc39d0b640cc9cbc|commit]], [[https://git.kernel.org/linus/05e810c8cffb3e96f6b967c9a57c34d4a6a6347e|commit]] * ath12k: support OBSS PD configuration for AP mode [[https://git.kernel.org/linus/7b789ea390457d5751ae5b1ede81ca8564a618d1|commit]] * ath12k: add WMI support for spatial reuse parameter configuration [[https://git.kernel.org/linus/6dbd496a170b62c7ac56a0cb3aaf170b3ecbb515|commit]] * rtw89: Add default ID 28de:2432 for RTL8832CU [[https://git.kernel.org/linus/5f65ebf9aaf00c7443252136066138435ec03958|commit]] * rtw89: Add support for D-Link VR Air Bridge (DWA-F18) [[https://git.kernel.org/linus/292c0bc8acb687de7e83fc454bb98af19187b6bf|commit]] * rtw89: prepare TX/RX WD and D/C-MAC H2C command for RTL8922D [[https://lore.kernel.org/linux-wireless/20260106030911.15528-1-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/2adaa4b36b55261c9d94ed911078071063dea12a|commit]], [[https://git.kernel.org/linus/2b4a2fc32a475f3a3489cdb30889afe879c42429|commit]], [[https://git.kernel.org/linus/49218572f3312c7ff2fa3fb13e1e13b108aa856c|commit]], [[https://git.kernel.org/linus/c73607b3a8ef537636deccda5eb3619554269350|commit]], [[https://git.kernel.org/linus/96f5ceb44875c3e243a3a62120dca0a78776efac|commit]], [[https://git.kernel.org/linus/dfe3dea6b9a2d5756127e7ef9fa06042e2d0c648|commit]], [[https://git.kernel.org/linus/eccf7b10785b7e9b32b5a7fcbf1f45b6db9a5ac5|commit]], [[https://git.kernel.org/linus/1ddebb8f6e0476f335ce951b21bdf63a31d86ac9|commit]], [[https://git.kernel.org/linus/483539d891105195dca519c117895d74e7de7bc9|commit]], [[https://git.kernel.org/linus/5fbc19b0f62b21abfef55c55258146bc014ba3f9|commit]] * rtw89: phy: refine initial flow of BB wrapper [[https://lore.kernel.org/linux-wireless/20260114013950.19704-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/76bada91a41a08e101b05c241c0066cd85bdfa68|commit]], [[https://git.kernel.org/linus/6f6d7a325fbde4f025ee1b1277f6f44727e21223|commit]] * rtw89: pci: consider RTL8922D in PCI common flow [[https://git.kernel.org/linus/5e632c7ca9e15a1bc1e114bcfd5210add909e7a4|commit]] * rtw89: update PHY RX gain, EDCCA and TSSI, and MAC settings for RTL8922DE [[https://git.kernel.org/linus/32f6bf1872cb41c46e601c1c59e55b78699d0a0d|commit]], [[https://git.kernel.org/linus/496a0752fe5042908c8dd44d477916fa83414595|commit]], [[https://git.kernel.org/linus/20380a039ddd6504e663d3701e55e29a20da5721|commit]], [[https://git.kernel.org/linus/bcd23ebfef1c292e8965ac116bc0f88f7e7d3bbc|commit]], [[https://git.kernel.org/linus/4809013c088c2e211f2c8e2560ce63924a82a43f|commit]], [[https://git.kernel.org/linus/5fe702e4b2cdb1aca4fc6e639b1bfbefd7905347|commit]], [[https://git.kernel.org/linus/9cc1a84c53d4fe9494ed13b3cdba0e23519342f3|commit]], [[https://git.kernel.org/linus/1945c83dc5cef50c46101c0c2abb2da8650fd3b1|commit]], [[https://git.kernel.org/linus/8da7e88682d58a7c2e2c2101e49d3c9c9ac481b0|commit]] * rtw89: 8852au: add support for TP TX30U Plus [[https://git.kernel.org/linus/a2f1fc9ab6fb0d5c9d701a516c342944258fb20e|commit]] * rtw88: rtw8821cu: Add ID for Mercusys MU6H [[https://git.kernel.org/linus/77653c327e11c71c5363b18a53fbf2b92ed21da4|commit]] * rtw89: Add support for MSI AX1800 Nano (GUAX18N) [[https://git.kernel.org/linus/3116f287b81fe777a00b93ab07ec3c270093b185|commit]] * wlcore: Add support for IGTK key [[https://git.kernel.org/linus/c34dbc5900b0158edaab51c481510d66679d8f72|commit]] * wwan: add NMEA port type support [[https://git.kernel.org/linus/d95c5aa45231400f9ecfd4b2cbf093e7c7accd8b|commit]], [[https://git.kernel.org/linus/b9879ba78dca3da61448b52751551da2bb52469c|commit]], [[https://git.kernel.org/linus/dccd23a673ca09505b53fe10bccdd0421ad6cf80|commit]], [[https://git.kernel.org/linus/0868ea3471101aaf4d6498ac73b42bc975820303|commit]], [[https://git.kernel.org/linus/5b2e294e0cd1380886db700b5b2907a68adab5c7|commit]], [[https://git.kernel.org/linus/f5b8065e1f1be0e630a009f4c183805683c8fe88|commit]], [[https://git.kernel.org/linus/193985d1e447d20dc4225550fa8ff24d340a535e|commit]], [[https://git.kernel.org/linus/209111d694ddd7d04961e43a3abeb626cc587b16|commit]] * wwan: mhi: Add network support for Foxconn !T99W760 [[https://git.kernel.org/linus/915a5f60ad947e8dd515d2cc77a96a14dffb3f15|commit]] * r8169: Add dash and ltr support [[https://lore.kernel.org/netdev/20260109070415.1115-1-javen_xu@realsil.com.cn/T/|(cover)]], [[https://git.kernel.org/linus/17e9f841dd227a4dc976b22d000d5f669bc14493|commit]], [[https://git.kernel.org/linus/9ab94a32af704fa9c873094283ae8744a07baf25|commit]], [[https://git.kernel.org/linus/3259d2cf94276d92bb49b782d3e138703208e353|commit]] * iwlwifi: mld: support TLC command version 6 [[https://git.kernel.org/linus/5f05d20180059f00e17b514c1022963034756cfd|commit]] * iwlwifi: adjust LINK context NPCA API [[https://lore.kernel.org/linux-wireless/20251110150012.93bd7a454eef.I3d2ce1a363b0d8c3809ec8e729b7acf94efca25b@changeid/T/|(cover)]], [[https://git.kernel.org/linus/ac47aa8bc906e1c42dd8b7caf96c180680bddda5|commit]], [[https://git.kernel.org/linus/3b6e7afaf7c35c9840f34dc7550ed95d875741ec|commit]], [[https://git.kernel.org/linus/772fe513e198b83324b8c0f93a886d6c24667832|commit]], [[https://git.kernel.org/linus/e4d47493c6be00939eecaf03713789766faf10f7|commit]], [[https://git.kernel.org/linus/85fad59d21ae958e42993179ad205acbb84945de|commit]] * iwlwifi: mld: Add support for NAN [[https://lore.kernel.org/linux-wireless/20251110160850.366979-1-miriam.rachel.korenblit@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/9e978d8ebbe96e6abff33f2cc886b2fca1825d4f|commit]], [[https://git.kernel.org/linus/dbbeebece03050cd510073ce89fee83844e06b00|commit]], [[https://git.kernel.org/linus/6009414649910210ae3c18a96747e9a5e5224306|commit]], [[https://git.kernel.org/linus/89000fe4b1dca198ade6ba9f8edd61fa6b9596dc|commit]], [[https://git.kernel.org/linus/ab4107583b0a42868a1638603d449e64121f5640|commit]], [[https://git.kernel.org/linus/b47b3d0d8be376d0baf83bc14933377216417504|commit]] == Audio == * ctxfi: Add quirk for SE-300PCIE variant (160b:0102) [[https://git.kernel.org/linus/3a92733e052753d87fdd56bd6f621f969be28447|commit]] * hda/cm9825: Add GENE_TWL7 support for AAEON [[https://git.kernel.org/linus/cf077db587a9fa1839c9a2c7e44694d09edc8334|commit]] * hda/hdmi: Add Tegra238 HDA codec device ID [[https://git.kernel.org/linus/5f4338e5633dc034a81000b2516a78cfb51c601d|commit]] * hda/realtek - enable mute led for lenovo platform [[https://git.kernel.org/linus/5de5db35350d9c4def1de2ae273e224a4eee5ed1|commit]] * hda/realtek - enable mute leds on hp envy x360 15-es0xxx [[https://git.kernel.org/linus/ac1ff574bbc09a6c90f4fe8f9e6b8d66c983064c|commit]] * hda/realtek: Add quirk for Minisforum V3 SE [[https://git.kernel.org/linus/e3474301824926ecce1d45f2ede7ecdda9a35840|commit]] * hda/realtek: add HP Victus 16-e0xxx mute LED quirk [[https://git.kernel.org/linus/72919c57a055f6d7b79d66731dc398e9b433f47c|commit]] * hda: controllers: intel: add support for Nova Lake [[https://git.kernel.org/linus/7f428282fde34f06f3ab898b8a9081bf93a41f22|commit]] * usb-audio: add mixer support for Focusrite Forte [[https://git.kernel.org/linus/7bb0dbf9fc403f65cff33c91ea266683e33b2f04|commit]] * ASoC/SOF/PCI/Intel: Support for Nova Lake S [[https://lore.kernel.org/linux-sound/20251104121650.21872-1-peter.ujfalusi@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/e678c2a0063ec931642b3c5935fb0c3c1282b6b3|commit]], [[https://git.kernel.org/linus/cd53591ae4cd0dc6cf2c26d511172452d4b2f5aa|commit]], [[https://git.kernel.org/linus/2bd7bf3ccc83074dbaf53c941539732652451b09|commit]], [[https://git.kernel.org/linus/41566e3de40616375e8dfe5455344558b79f9354|commit]], [[https://git.kernel.org/linus/d3df422f66e8a67e93e8a5f275a8a52a8a4b6b4f|commit]], [[https://git.kernel.org/linus/eece72a0d4093e17ae71ad739fe0cdb56bb9ba98|commit]], [[https://git.kernel.org/linus/9c3af1b2f73cc72f5035bc9372c18b3780e1f258|commit]] * usb-audio: Add DSD support for iBasso DC04U [[https://git.kernel.org/linus/fe7cd89f0e29f0852316857b4861309f9b891370|commit]], [[https://lore.kernel.org/linux-sound/TYYPR01MB14098529E0BD900921BE6F42CF465A@TYYPR01MB14098.jpnprd01.prod.outlook.com/T/|(cover)]] * ASoC * SOF: ipc4-topology: Add new tokens for pipeline direction [[https://git.kernel.org/linus/15a55ec2f8b956d6aa0dd948c907e13db7978c6e|commit]] * SOF: ipc4-topology: Add support for process modules with no input pins [[https://git.kernel.org/linus/42d0f8695db59b74e7e7db0c851e480362a8fdca|commit]] * ti: davinci-mcasp: Add asynchronous mode support [[https://git.kernel.org/linus/9db327083f7e0da702e2ec0169f8a34f3576f371|commit]] * Intel: ti-common: support tas2563 amplifier [[https://git.kernel.org/linus/331786db1b464fae42c36f53d6901d1d54975e04|commit]] * Intel: sof_rt5682: add tas2563 speaker amp support [[https://git.kernel.org/linus/02e7af5b6423d2dbf82f852572f2fa8c00aafb19|commit]] * Intel: allow module parameter override BT link to 0 [[https://git.kernel.org/linus/023dfedec1478d506ba42d45f7993578fe38fa11|commit]] * SOF: Intel: hda: Add a virtual CPU DAI [[https://git.kernel.org/linus/6c52fda42066a87b76fd140e027280907071dd8a|commit]] * SOF: ipoc4: Support for generic bytes controls [[https://lore.kernel.org/linux-sound/20251217143945.2667-1-peter.ujfalusi@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/2fa74713744dc5e908fff851c20f5f89fd665fb7|commit]], [[https://git.kernel.org/linus/a653820700b81c9e6f05ac23b7969ecec1a18e85|commit]], [[https://git.kernel.org/linus/c1876fc33c5976837e4c73719c7582617efc6919|commit]], [[https://git.kernel.org/linus/ebcfdbe4add923dfb690e6fb9d158da87ae0b6bf|commit]], [[https://git.kernel.org/linus/2fdde18a2cb1631c01e4ab87d949564c7d134dd8|commit]], [[https://git.kernel.org/linus/d96cb0b86d6e8bbbbfa425771606f6c1aebc318e|commit]], [[https://git.kernel.org/linus/7fd8c216c422c5d42addc3e46d5d26630ff646d1|commit]], [[https://git.kernel.org/linus/2a28b5240f2b328495c6565d277f438dbc583d61|commit]] * amd: amd_sdw: add machine driver quirk for Lenovo models [[https://git.kernel.org/linus/3acf517e1ae05ef66561b7a2782690387ce46e21|commit]] * codecs: ES8326 : Add Kcontrol [[https://git.kernel.org/linus/20c24c1b28310c08b2a76fd14e5600cb64343005|commit]] * Anbernic rg-ds aw87391 speaker amps [[https://lore.kernel.org/linux-sound/20260128174608.1498-1-macroalpha82@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/c26d6cdade6c2a96049f24fac64a8e3734188703|commit]], [[https://git.kernel.org/linus/a145cfd0ffe7bd7d61ce25839cec737c449b0d2c|commit]] * rtq9128: Add rtq9154 backward compatible [[https://lore.kernel.org/devicetree/cover.1768180827.git.cy_huang@richtek.com/T/|(cover)]], [[https://git.kernel.org/linus/daf86dcdbb40c4a0e4b8e579c6eecf148560711f|commit]], [[https://git.kernel.org/linus/6be9ea62afedef0f976eb3dba4c117be0c1d3809|commit]] * fsl_asrc: support the i.MX952 platform [[https://lore.kernel.org/lkml/20260206014805.3897764-1-shengjiu.wang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/37bb773b4a5a5107b92beda3447a7c6c0cfc1237|commit]], [[https://git.kernel.org/linus/83447a38ba9abac52bc110566d3e117753899f69|commit]], [[https://git.kernel.org/linus/6a8c6f5587337eceb387812b6f47bc16c125b883|commit]], [[https://git.kernel.org/linus/b010c782341b79edbeb80706360b772db908daa6|commit]] * fsl_audmix: Support the i.MX952 platform [[https://lore.kernel.org/lkml/20260123082501.4050296-1-shengjiu.wang@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/7550d6263b9b2015a806f66bf7ad356b6f25d050|commit]], [[https://git.kernel.org/linus/4d3b56b8a3504dab98d5f9a91ed9091431749863|commit]], [[https://git.kernel.org/linus/291f2f908823832e932582500816ad614631d568|commit]], [[https://git.kernel.org/linus/19b08fd23b20593ebe43708308dbddb02507877d|commit]] * qcom: audioreach: Add support for Speaker Protection module [[https://git.kernel.org/linus/0db76f5b2235ab456814ee8e4e2cdf0cef09dd6b|commit]], [[https://git.kernel.org/linus/3e43a8c033c3187e0f441ed5570a0fb5dcc9dafb|commit]] * qcom: sm8250: Add quinary MI2S support [[https://git.kernel.org/linus/957e5be2e1ff10d4b5e86d420c12580897069114|commit]] * Add {24,32}-bit sample width support for rz/g2l ssi [[https://lore.kernel.org/linux-sound/20251114075856.4751-1-biju.das.jz@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/d6c160d5e86f4e7354dd6c3154b7cb562abc6c7d|commit]], [[https://git.kernel.org/linus/a472f0b157832fc91c83179b1628d8f660c84c82|commit]], [[https://git.kernel.org/linus/b541cb0a27dfa7504a8008320502f869c75f8bfc|commit]], [[https://git.kernel.org/linus/9e10709f831408d948be66bc8f6329fa37a3dc82|commit]], [[https://git.kernel.org/linus/124f6155f3d97b0e33f178c10a5138a42c8fd207|commit]] * rockchip: spdif: Cleanups and port features from Rockchip's BSP kernel [[https://lore.kernel.org/linux-sound/20260203-rockchip-spdif-cleanup-and-bsp-sync-v2-0-4412016cf577@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/27b5096ef0f3a78441128b993f0353a77f2f5f53|commit]], [[https://git.kernel.org/linus/45df1f66b99340e1d6e90501f1e938400a3e9768|commit]], [[https://git.kernel.org/linus/7e2de68e4dbaee65864b0c5972e1b03037243632|commit]], [[https://git.kernel.org/linus/730b0af2748a74528e0ad25f2bcd3272e96db10a|commit]], [[https://git.kernel.org/linus/72bcc223032cb71e640e466eb644537e369959a5|commit]], [[https://git.kernel.org/linus/7bdde9a2fd6577e18cd99e4f0e71e466ba626e77|commit]], [[https://git.kernel.org/linus/298082783a0d6d07109f8ce09ab410a1de12876d|commit]], [[https://git.kernel.org/linus/c43ec509019842c0b836e858dc486c216b51b087|commit]], [[https://git.kernel.org/linus/07a791020be9b190d4a57b5ee823ede1e98df493|commit]], [[https://git.kernel.org/linus/d94ea902462ac39846d878aa67b78408727e0674|commit]] * rt1320: support RAE parameters loading [[https://git.kernel.org/linus/22937af75abb3260c2d563739181f4b61ddac2c1|commit]] * rt1320: support calibration and temperature/r0 loading [[https://git.kernel.org/linus/da1682d5e8b53a51072552844c551b1b784e52c2|commit]] * rt5575: Add the codec driver for the ALC5575 [[https://lore.kernel.org/linux-spi/20251226083856.1052608-1-oder_chiou@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/ee69f55eb183efb43da14cdad72910b1b1cc2932|commit]], [[https://git.kernel.org/linus/037f8d896688bf3384eb6bf34e24e8fbc9f6e02d|commit]], [[https://git.kernel.org/linus/af4c0b951b18a8af73fa8541fabf1bf2484bba9b|commit]], [[https://git.kernel.org/linus/420739112e95c9bb286b4e87875706925970abd3|commit]] * sophgo: add CV1800 I2S controllers support [[https://lore.kernel.org/linux-sound/20260120-cv1800b-i2s-driver-v4-0-6ef787dc6426@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ad50e1f63873e5d1f2f421bbd11387a0a1d0ca54|commit]], [[https://git.kernel.org/linus/ea0fb91c02c14748ae525dd547ede7b4a6535d09|commit]], [[https://git.kernel.org/linus/c294aafe474bbbd7a7476773f56f6191742a39e1|commit]], [[https://git.kernel.org/linus/4cf8752a03e67b2927d137a47c4eca4d516b4838|commit]], [[https://git.kernel.org/linus/b3eb755e2db07d85c30e8ff4043ffb9a14b4ece7|commit]] * codecs: tlv320adcx140: assorted patches [[https://lore.kernel.org/linux-sound/20260113-sound-soc-codecs-tvl320adcx140-v4-0-8f7ecec525c8@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/4130dc47ce8f60d289d91e2bdd18c4d863ca3237|commit]], [[https://git.kernel.org/linus/be7664c81d3129fc313ef62ff275fd3d33cfecd4|commit]], [[https://git.kernel.org/linus/d89aad92cfd15edbd704746f44c98fe687f9366f|commit]], [[https://git.kernel.org/linus/46378ab9fcb796dca46b51e10646f636e2c661f9|commit]], [[https://git.kernel.org/linus/24175015263d3c72166902a5a4451c18dc836d56|commit]], [[https://git.kernel.org/linus/57be1f67401005e33e8c88db6707b4482b509589|commit]], [[https://git.kernel.org/linus/5682093fc80674ee7f4a96dd9f0f1919111ab16d|commit]], [[https://git.kernel.org/linus/4a1bc07e6d9ecd29b95c41e34402793619f1874a|commit]], [[https://git.kernel.org/linus/2219823f7d6ac01c8eb55b90e954b4466146c397|commit]], [[https://git.kernel.org/linus/8a98e7f55f975360975083166e21982ef307b8fd|commit]] * SOF: Intel: hda-sdw-bpt: support simultaneous audio and BPT streams [[https://git.kernel.org/linus/330d1deb410fe75f7f79bd1e5025f2827365eb83|commit]] * SOF: sof-audio: Add support for loopback capture [[https://git.kernel.org/linus/c4b37c21c75de7b37a3d839fa3dff63464caad1e|commit]] * amd: acp: Add ACP7.0 match entries for Cirrus Logic parts [[https://git.kernel.org/linus/ddd9bf2212ab80bb90fa986cd987c671de53bd44|commit]] * amd: acp: Add ACP7.0 match entries for Realtek parts [[https://git.kernel.org/linus/7869f1c1123cfc0fb22a9de96cc6eb75072a3971|commit]] * codec: Remove ak4641 [[https://git.kernel.org/linus/d7e1f9e84af460c5f1e5352eda8f036000cfcf0a|commit]] * codec: Remove pxa2xx-ac97.c [[https://git.kernel.org/linus/b094de7810f3c0340a3aebaf6b8fc60c81c0cf91|commit]] * cs-amp-lib: Support Dell SSIDExV2 UEFI variable [[https://git.kernel.org/linus/00fd40bc7acecf9f41d645aa0b35ddc7fd7679b6|commit]] == Tablets, touch screens, keyboards, mouses == * edt-ft5x06: add support for !FocalTech FT3518 [[https://git.kernel.org/linus/5383e76483dc2529c2c5ca7e98cd679eb77d8327|commit]] * ili210x: add support for polling mode [[https://git.kernel.org/linus/87ac7cfac4d762da0e6438ada44f51bd5cf11649|commit]], [[https://git.kernel.org/linus/a00772171251cf78263a3a5ffcb7c09bf9141182|commit]] * twl603x: add power button [[https://lore.kernel.org/devicetree/20251106-twl6030-button-v4-0-fdf1aa6e1e9a@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/65a4ee23e057f60d25c3436acd88f2f169f780c2|commit]], [[https://git.kernel.org/linus/ec8fce2a57e96e07d82d4e884430c2cb6c048998|commit]], [[https://git.kernel.org/linus/24571ecbda52f7a43a7dad1f7706bfa81fb1fa79|commit]] * HID * Add output report support for quicki2c driver [[https://lore.kernel.org/linux-input/20251209075215.1535371-1-even.xu@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/dabc153c79890911b23c93c1dd65e15b53e87740|commit]], [[https://git.kernel.org/linus/678cbaa24f09115352be669884f7775ccd28f757|commit]], [[https://git.kernel.org/linus/e149af9ce108d7b9e39d731b93c9fb55fd9e7842|commit]], [[https://git.kernel.org/linus/a788b2057029d831ee610c064bb607984a00367d|commit]] * Intel-thc-hid: Intel-quicki2c: Add power management for touch device [[https://git.kernel.org/linus/6761f9ccd6247682430413274e7af955d39cfee4|commit]] * apple: Add "SONiX KN85 Keyboard" to the list of non-apple keyboards [[https://git.kernel.org/linus/7273acfd0aef106093a8ffa3b4973eb70e5a3799|commit]] * asus: Add Fn+F5 fan control key support for ROG laptops [[https://lore.kernel.org/linux-input/20260107154219.164514-2-sunlightlinux@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/06501b557faec7c4aa1a3188e14c8c3d1e6e15de|commit]], [[https://git.kernel.org/linus/7fe565fb83ba7074dca1d25696f1d30116555528|commit]], [[https://git.kernel.org/linus/c888d0bd055b57688534a884f8f210a91d15e00f|commit]], [[https://git.kernel.org/linus/1489a34e97efebf583ff08e506ecf9f7d44537d3|commit]] * asus: Fix ASUS ROG Laptop's Keyboard backlight handling [[https://lore.kernel.org/platform-driver-x86/20260122075044.5070-1-lkml@antheas.dev/T/|(cover)]], [[https://git.kernel.org/linus/56d1b33e644cca1bedffbc73d28778ed4ae30f64|commit]], [[https://git.kernel.org/linus/4ac51daa5078e1e4b27a9afdc64a3f5780ae3cfb|commit]], [[https://git.kernel.org/linus/6a293b6edb537baf201c5ceb3afdbff7f42e97c2|commit]], [[https://git.kernel.org/linus/e82ae34af29e910c96d33c8b3a90c60e27f1625e|commit]], [[https://git.kernel.org/linus/2b92b797a153258c9f17786c2ab28b568f5aadf3|commit]], [[https://git.kernel.org/linus/4ac74ea68f6429512faf06a3365a2ba6b96d48d6|commit]], [[https://git.kernel.org/linus/fac55d29581fcd4c3b66b9c2b9f7995c459c0064|commit]], [[https://git.kernel.org/linus/b34b5945a7694e4fc53f5912b3b93d2bb8fdc9de|commit]], [[https://git.kernel.org/linus/d3133ccaf53694498b9827c5f9dbae52fc199d28|commit]], [[https://git.kernel.org/linus/7525566abd360ca425e43dd3f7f09fa3445dae17|commit]], [[https://git.kernel.org/linus/4748bb49b66881f0177057bd22bb3bf8f2ba142c|commit]] * logitech-hidpp: Add support for Logitech K980 [[https://git.kernel.org/linus/af4fe07a9d963a72438ade96cf090e84b3399d0c|commit]] * sony: add dongle device IDs for CRKD Gibson SG [[https://git.kernel.org/linus/ae40ace015be442837934c5028a8eba7fe3cd98f|commit]] * sony: add support for bluetooth Rock Band 4 PS4 guitars [[https://git.kernel.org/linus/2e18e787edddd8a21b3022d55dd0f6be7c422191|commit]] * elecom: Add support for ELECOM HUGE Plus M-HT1MRBK [[https://git.kernel.org/linus/b8e5fdf0bd022cd5493a5987ef66f5a24f8352d8|commit]] * hid-asus: Implement fn lock for Asus !ProArt P16 [[https://git.kernel.org/linus/f631011e36b87b173b71c7592b558ad05d791228|commit]] * i2c-hid: Introduce !FocalTech FT8112 [[https://git.kernel.org/linus/38a7f7d3af10dfdb631963b9b7f30b91ba66bbc4|commit]], [[https://git.kernel.org/linus/3d9586f1f90c9101b1abf5b0e9d70ca45f5f16db|commit]] * intel-ish-hid: ipc: Add Nova Lake-H/S PCI device IDs [[https://git.kernel.org/linus/22f8bcec5aeb05104b3eaa950cb5a345e95f0aa8|commit]] * intel-ish-hid: loader: Add PRODUCT_FAMILY-based firmware matching [[https://git.kernel.org/linus/698362f1f4644ac5419b047be6c496afff00d851|commit]] * multitouch: add eGalaxTouch EXC3188 support [[https://git.kernel.org/linus/8e4ac86b2ddd36fe501e20ecfcc080e536df1f48|commit]] * rapoo: Add support for side buttons on RAPOO 0x2015 mouse [[https://git.kernel.org/linus/b3b1c68fb726907ea35ac172906705fe62c7fdaf|commit]] * sony: add support for Rock Band 4 PS4 and PS5 guitars [[https://git.kernel.org/linus/bbf992775faa66d6c94097c2be9a0d254681a419|commit]] * asus: add xg mobile 2023 external hardware support [[https://git.kernel.org/linus/377f8e788945d45b012ed9cfc35ca56c02e86cd8|commit]] * intel-ish-hid: loader: Add PRODUCT_FAMILY-based firmware matching [[https://git.kernel.org/linus/043251b2dd1c2b0cd23f67830748493fd3d3ed0f|commit]] == TV tuners, webcams, video capturers == * adv7180: make VPP handling more flexible [[https://lore.kernel.org/linux-media/20251125-b4-adv7180-vpp-sub-device-v4-0-c772b9a80916@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/8e2421e1977ab594011849bbfe028f81ed2ab886|commit]], [[https://git.kernel.org/linus/57b96d4a23c7088127fbd228750bd0b6a1686169|commit]], [[https://git.kernel.org/linus/2473b46c480d53e6b20d29b4d497a88747e3e280|commit]], [[https://git.kernel.org/linus/90289b67c5c1d4c18784059b27460d292e16d208|commit]] * i2c: Miscellaneous features and fixes for OV5647 [[https://lore.kernel.org/linux-media/20251222-b4-rpi-ov5647-v4-0-b949c7309280@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/eee13cbccacb6d0a3120c126b8544030905b069d|commit]], [[https://git.kernel.org/linus/a4e62e597f21bb37db0ad13aca486094e9188167|commit]], [[https://git.kernel.org/linus/1438248c5a82c86b4e1f0311c3bb827af747a8cf|commit]], [[https://git.kernel.org/linus/f007586b1e89dcea40168415d0422cb7a0fc31b1|commit]], [[https://git.kernel.org/linus/c063632b494b02e891442d10f17e37b7fcfab9b3|commit]], [[https://git.kernel.org/linus/d240430664adc0925042bd671a98668c5d399fe7|commit]], [[https://git.kernel.org/linus/e7696f27f8df96ef6b4f72d288c0b2d63aef23c3|commit]], [[https://git.kernel.org/linus/03f2af9ef431fff89ef2239bdd9ac30112a0fe9c|commit]], [[https://git.kernel.org/linus/4885fb98350f76dd05c0f352925a53e2c20d390a|commit]], [[https://git.kernel.org/linus/ebde37e5ef1a0b34c170118eaa22ff86c3ed5b40|commit]], [[https://git.kernel.org/linus/b9ca9ef3f0471d8c7a4ef978304ebbbc6489e2e1|commit]], [[https://git.kernel.org/linus/87b2b6cef20885f45bbbc9412e30ca3f79f8245b|commit]], [[https://git.kernel.org/linus/46e972383a998c2645b528b04188ea2fcfbb8e22|commit]], [[https://git.kernel.org/linus/d06a6dc90675aaec1f5749765bdc37b64fdd031c|commit]], [[https://git.kernel.org/linus/8bc977e2c51b3fcfaf787915620efc62b4166bbf|commit]], [[https://git.kernel.org/linus/dda59680f24fdd490546830b0108dfb81cbc853b|commit]], [[https://git.kernel.org/linus/c6e115144b500039b9ece39c3aaf3e61e1f761af|commit]] * iris: prepare support for video codecs on Qcom vpu4 platform [[https://lore.kernel.org/linux-arm-msm/20251210-knp_video-v4-0-8d11d840358a@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8744df0e8946abee487342c97233e61ceb35a632|commit]], [[https://git.kernel.org/linus/dff99dff6c3c4feadc28585dc16f741b0978e631|commit]], [[https://git.kernel.org/linus/df816dce1b01ad761b20ff9568fbb5383e485bf9|commit]], [[https://git.kernel.org/linus/2fc9b85dea50497f2264863d2f398bd1cfa5375b|commit]], [[https://git.kernel.org/linus/82b96a8d8d6ebedcda8ef2d051ddd0f43d8eee14|commit]], [[https://git.kernel.org/linus/dde659d37036c6edf5eeef81274b43fe12dfad53|commit]] * mt9m114: Changes to make it work with atomisp devices [[https://lore.kernel.org/linux-media/20251230-mt9m114-atomisp-v5-0-763539e76094@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/d57348c1bb8df069f992b3478fea642045712212|commit]], [[https://git.kernel.org/linus/1df58b9ddaac468154083af6e1d7ddaf8769e964|commit]], [[https://git.kernel.org/linus/71087c9b814994541154d667d88aac9682be63db|commit]], [[https://git.kernel.org/linus/0fa4baded5ef5ff51d96bee4fe233ad6aa35a833|commit]], [[https://git.kernel.org/linus/432d109333afd674a416a061b98264bfcd5f0515|commit]], [[https://git.kernel.org/linus/84359d0a5e3afce5e3e3b6562efadff690614d5b|commit]], [[https://git.kernel.org/linus/d6b6a23bb487958e7e1540c0cb6aaccf82f136c9|commit]], [[https://git.kernel.org/linus/633deb131082f41a3467f8a77abb9c95fb390008|commit]], [[https://git.kernel.org/linus/5e3c0bd3f864fec9f895bd42c172f56ac4cdeb63|commit]], [[https://git.kernel.org/linus/df0090002c56b154ac543167fa92ba7b77f2b09f|commit]], [[https://git.kernel.org/linus/ceb485b3378bf59d3ed23726e9effff9c2d6792d|commit]], [[https://git.kernel.org/linus/46c96eec9a763813e4592d72ecb38a6a33113258|commit]], [[https://git.kernel.org/linus/437e1f6a960035166495a5117aacbc596115eeb6|commit]], [[https://git.kernel.org/linus/ac9f4a5e49a0e276a951983cd2c9c050e2f63799|commit]] * qcom: iris: encoder feature enhancements [[https://lore.kernel.org/linux-media/20251114-iris_encoder_enhancements-v6-0-d6d35a92635d@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/d9967fa37ca97aec5aea98d627107147cc02edbc|commit]], [[https://git.kernel.org/linus/0708f305d6fabf9aca1d1c96d5a5b003df2d8bc9|commit]], [[https://git.kernel.org/linus/121d6d7a35110a5ce6892b1e4695cac9c0f3094b|commit]], [[https://git.kernel.org/linus/49a940f37de337dbbede5ac204cc9d7ebe22c59a|commit]], [[https://git.kernel.org/linus/874eca6d309530d9223fb33e1ad056861955f491|commit]], [[https://git.kernel.org/linus/5ef0832c6e42dc67101629810c763625905cd026|commit]] * Enable support for av1 stateful decoder [[https://lore.kernel.org/linux-media/20251210-av1d_stateful_v3-v10-0-cf4379a3dcff@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/406fc2e9ca65e0df345ebf4ce95aa87cb6416f35|commit]], [[https://git.kernel.org/linus/151096542e937e7336dc0d50192b855f5b490e22|commit]], [[https://git.kernel.org/linus/10ac84abd48186b4c20719a7985c8df30d3b5f7a|commit]], [[https://git.kernel.org/linus/2af481a459a4740c402d2b3346bc4f7b013d74b4|commit]], [[https://git.kernel.org/linus/819fcf0554388bb54b64184902cebfed5260437d|commit]] * Generic line based metadata support, internal pads [[https://lore.kernel.org/linux-media/20240416193319.778192-1-sakari.ailus@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/34d7bf1c8e59f5fbf438ee32c96389ebe41ca2e8|commit]], [[https://git.kernel.org/linus/c580efb94abed05f99bb80245abe96cf5d49128c|commit]], [[https://git.kernel.org/linus/7ba432f01c8a59a7b9345095c98dce6983dd7aea|commit]], [[https://git.kernel.org/linus/f28bdda2f87aa0c299ad3ddef3e1fa5134ae8e47|commit]], [[https://git.kernel.org/linus/ac5214a47336b8a8f7e54f406ee4f7eed9223599|commit]], [[https://git.kernel.org/linus/1d92152339587174363c3c9f7561de95646d5625|commit]], [[https://git.kernel.org/linus/89345c2a6ff9c48c5f1ea336e66e46dfc38a467a|commit]], [[https://git.kernel.org/linus/744910906d3010253ac283769f9e47c47136a05a|commit]], [[https://git.kernel.org/linus/cd2c75454d74f275adcda2409569c13fd037eca9|commit]], [[https://git.kernel.org/linus/72364b91ce022ded4aa541c62f51c10a65fb3498|commit]], [[https://git.kernel.org/linus/38c84932de9cdef7472ff6ecf3214533ba517176|commit]], [[https://git.kernel.org/linus/83a22a07cd9d51b7ffd18a8904e1857061eda28f|commit]], [[https://git.kernel.org/linus/91e99e5a0bed1084ab5db2a69923b248039408ae|commit]], [[https://git.kernel.org/linus/1bfef49741fde3fa4a4d3276352e25a6a2a86499|commit]], [[https://git.kernel.org/linus/02cab4a097b7b1094783a1634e2daaf0888d6e50|commit]], [[https://git.kernel.org/linus/de927934dd900207f0881e496bdf1d26fd371463|commit]], [[https://git.kernel.org/linus/021baf99c259da2f0c705423dd5cb73082bbb052|commit]], [[https://git.kernel.org/linus/7d2909830e69257843d8def3ea9f839891c118e3|commit]], [[https://git.kernel.org/linus/24b2208053d2262f554edc3fc721f1fdbac8ec7a|commit]], [[https://git.kernel.org/linus/ee71368a5666cedb0c603d9eea3a6f0c079f88cc|commit]], [[https://git.kernel.org/linus/290fb5a1b4209d3bf1ee95f3990dda08a9850177|commit]], [[https://git.kernel.org/linus/acd2fa47aac568052bd8321586be64958e3e93b2|commit]], [[https://git.kernel.org/linus/0fc3caab96c9e713e897ff4cf3b42b1b409236d1|commit]], [[https://git.kernel.org/linus/a88883d1209c3c759ebaa7886d9a7098d5ed1132|commit]], [[https://git.kernel.org/linus/7858ac7a8a6415eafb5ac027aaa9acf3ec78cc31|commit]], [[https://git.kernel.org/linus/ce7b25c0170a0942b56e566b95bdc1e5efcc40f8|commit]], [[https://git.kernel.org/linus/026d02ea142deb56fe997df8d29417ca6cc3b862|commit]], [[https://git.kernel.org/linus/f7aa5995910cb5e7a5419c6705f465c55973b714|commit]], [[https://git.kernel.org/linus/ea200a16d6c7dbfd37d5761078d2453c038a37f1|commit]], [[https://git.kernel.org/linus/83ce4f91ef0d68878a0aef83db32b414e45d5df6|commit]], [[https://git.kernel.org/linus/24b2208053d2262f554edc3fc721f1fdbac8ec7a|commit]] * Add strobe duration and strobe output enable v4l2 ctrl [[https://lore.kernel.org/linux-media/20251209-ov9282-flash-strobe-v10-0-0117cab82e2d@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/d89ccbf3dde727d91a242a5a3f3b70a90579b057|commit]], [[https://git.kernel.org/linus/5be4154f6255d92d9d2ad5da658d7d33a655386f|commit]], [[https://git.kernel.org/linus/fa0e06f2fe00fa9e283a15d85e7542a4b72a14a7|commit]], [[https://git.kernel.org/linus/47bc0d294d66a7019f13aa65e8b32aee4532869e|commit]], [[https://git.kernel.org/linus/f007ad65d7246d6b616541a3c7685ec688ca6beb|commit]], [[https://git.kernel.org/linus/84ec7597ae1afb9430c55044f318d1d40f8ecef0|commit]], [[https://git.kernel.org/linus/b95d8058a2786a8b42e32f383f8df45097675d00|commit]], [[https://git.kernel.org/linus/df60764ea52102f433b76cfa4fc873229e60e76c|commit]] * rkvdec: Add support for VDPU381 and VDPU383 [[https://lore.kernel.org/linux-kernel/20260120222018.404741-1-detlev.casanova@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/8a5586d4ffb10751b869a02d757482fe0b3739f3|commit]], [[https://git.kernel.org/linus/fa05705107a40131a8335ad37817153709261738|commit]], [[https://git.kernel.org/linus/4cb9cd80b36ea977c468415eb2730ae4435505cc|commit]], [[https://git.kernel.org/linus/dc6898981f744cf54c29313f5a399260933cdf66|commit]], [[https://git.kernel.org/linus/2b0ec90061672274978db0fbe898740a1e52c973|commit]], [[https://git.kernel.org/linus/cf29115a68e334f2216cd7d4dfc6d51e986ca726|commit]], [[https://git.kernel.org/linus/560438ed7c2c09efacd5937771769d828d3aa525|commit]], [[https://git.kernel.org/linus/34e2b14ae90efdc19c4d348710c6b6803a4acfe2|commit]], [[https://git.kernel.org/linus/ae2070ca8ab2cc9cad0303fb6f9ed74cde9ec96c|commit]], [[https://git.kernel.org/linus/e5640dbb991c498b0f6fcf2e968fa795a8062eb6|commit]], [[https://git.kernel.org/linus/f9c7b7deeffd9e1fa2d9ed0c7a84c21226b24b0a|commit]], [[https://git.kernel.org/linus/6a846f7d72c7b64627398c8fe82de74da97a7b2a|commit]], [[https://git.kernel.org/linus/e570307ac987482dfdd8950e7cce96048b047b10|commit]], [[https://git.kernel.org/linus/e5aa698ea6591482286e99f4f6f2894cfeed3c22|commit]], [[https://git.kernel.org/linus/fde24907570dcc56406f5e48d5c9d9e7e2da36fc|commit]], [[https://git.kernel.org/linus/c9a59dc2acc72789d5c778af080d1e65af84862c|commit]], [[https://git.kernel.org/linus/e3b5b77e36894b4d61374ecb916355809c6e4aa4|commit]] * i2c: Add Samsung !S5K3M5 13MP camera sensor driver [[https://lore.kernel.org/devicetree/20251203040241.71018-1-vladimir.zapolskiy@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/d855e1279b2734d1567ddf8fa1a0c62180dd3cbb|commit]], [[https://git.kernel.org/linus/7d402666094ce25d2b52da679b8d7210cde01a34|commit]] * i2c: add Samsung S5KJN1 image sensor device driver [[https://lore.kernel.org/linux-media/20251204041134.131707-1-vladimir.zapolskiy@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/59cbe9436de67c5592467587dd39a4879c002d4d|commit]], [[https://git.kernel.org/linus/e38fd0933c759bfd51aafbee07f11e8d69da4366|commit]] * i2c: Add os05b10 camera sensor driver [[https://lore.kernel.org/linux-media/20260105090410.108479-1-himanshu.bhavani@siliconsignals.io/T/|(cover)]], [[https://git.kernel.org/linus/555db89381c008c9b2e9b33bc0087961da575bfd|commit]], [[https://git.kernel.org/linus/3aa9296a23ec41a8424e9a2346eea59fb6cb7d8c|commit]] * i2c: ov01a10: Remove values set by controls from global_setting[] [[https://lore.kernel.org/linux-media/20251014174033.20534-21-hansg@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/12d3c5ffe298d99b4c0d87f8d381ae701bd71462|commit]], [[https://git.kernel.org/linus/0c5ebba56b10cf6b09da6d90c7be8ad3b0c5c083|commit]], [[https://git.kernel.org/linus/36eab90d3f4f4c38d1e9635af40cdd40c7675471|commit]], [[https://git.kernel.org/linus/409fb57c1b3deada4b8e153eb6344afb3c2dfb9c|commit]], [[https://git.kernel.org/linus/ea444f30f6e37048939a0e1056749d7afc190dd5|commit]], [[https://git.kernel.org/linus/50b52b6d420e85f86a579ea197b569b31bc6de43|commit]], [[https://git.kernel.org/linus/f60e94ed1aa110e48c7798a2fc99022e3b03239b|commit]], [[https://git.kernel.org/linus/ad134ffad2efcb490a75fa1720f9aa43d0f84fe0|commit]], [[https://git.kernel.org/linus/6b0a5d40a36828f62fea6340f1691fee64df7f83|commit]], [[https://git.kernel.org/linus/4fbbdabb0c7db066eea17a4a2034816051c73888|commit]], [[https://git.kernel.org/linus/82d1ab15cb16a249bc0995040837b198f18e0972|commit]], [[https://git.kernel.org/linus/7f0912eaca4678b8fa86916024c11c84759245e8|commit]], [[https://git.kernel.org/linus/299b82078696ac14325a605b3d2727ff00d6e73e|commit]], [[https://git.kernel.org/linus/896f4e21af4f53719f841b647d084f4689d5ad6c|commit]], [[https://git.kernel.org/linus/d4fdb4e6e05c46a2746b96811345f45c937c41c9|commit]], [[https://git.kernel.org/linus/e8fefc67f2d9df05524b182ac9d3f3f712315e3b|commit]], [[https://git.kernel.org/linus/b9315439680f83caef233a6aea8a7126ecf02bcc|commit]], [[https://git.kernel.org/linus/a9aafc571a2aed699b1a88f2c30203e173838600|commit]], [[https://git.kernel.org/linus/12d3c5ffe298d99b4c0d87f8d381ae701bd71462|commit]], [[https://git.kernel.org/linus/0c5ebba56b10cf6b09da6d90c7be8ad3b0c5c083|commit]], [[https://git.kernel.org/linus/36eab90d3f4f4c38d1e9635af40cdd40c7675471|commit]] * i2c: Miscellaneous features and fixes for OV5647 [[https://lore.kernel.org/linux-media/20251222-b4-rpi-ov5647-v4-0-b949c7309280@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/eee13cbccacb6d0a3120c126b8544030905b069d|commit]], [[https://git.kernel.org/linus/a4e62e597f21bb37db0ad13aca486094e9188167|commit]], [[https://git.kernel.org/linus/1438248c5a82c86b4e1f0311c3bb827af747a8cf|commit]], [[https://git.kernel.org/linus/f007586b1e89dcea40168415d0422cb7a0fc31b1|commit]], [[https://git.kernel.org/linus/c063632b494b02e891442d10f17e37b7fcfab9b3|commit]], [[https://git.kernel.org/linus/d240430664adc0925042bd671a98668c5d399fe7|commit]], [[https://git.kernel.org/linus/e7696f27f8df96ef6b4f72d288c0b2d63aef23c3|commit]], [[https://git.kernel.org/linus/03f2af9ef431fff89ef2239bdd9ac30112a0fe9c|commit]], [[https://git.kernel.org/linus/4885fb98350f76dd05c0f352925a53e2c20d390a|commit]], [[https://git.kernel.org/linus/ebde37e5ef1a0b34c170118eaa22ff86c3ed5b40|commit]], [[https://git.kernel.org/linus/b9ca9ef3f0471d8c7a4ef978304ebbbc6489e2e1|commit]], [[https://git.kernel.org/linus/87b2b6cef20885f45bbbc9412e30ca3f79f8245b|commit]], [[https://git.kernel.org/linus/46e972383a998c2645b528b04188ea2fcfbb8e22|commit]], [[https://git.kernel.org/linus/d06a6dc90675aaec1f5749765bdc37b64fdd031c|commit]], [[https://git.kernel.org/linus/8bc977e2c51b3fcfaf787915620efc62b4166bbf|commit]], [[https://git.kernel.org/linus/dda59680f24fdd490546830b0108dfb81cbc853b|commit]], [[https://git.kernel.org/linus/c6e115144b500039b9ece39c3aaf3e61e1f761af|commit]] * Add strobe duration and strobe output enable v4l2 ctrl [[https://lore.kernel.org/linux-media/20251209-ov9282-flash-strobe-v10-0-0117cab82e2d@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/d89ccbf3dde727d91a242a5a3f3b70a90579b057|commit]], [[https://git.kernel.org/linus/5be4154f6255d92d9d2ad5da658d7d33a655386f|commit]], [[https://git.kernel.org/linus/fa0e06f2fe00fa9e283a15d85e7542a4b72a14a7|commit]], [[https://git.kernel.org/linus/47bc0d294d66a7019f13aa65e8b32aee4532869e|commit]], [[https://git.kernel.org/linus/f007ad65d7246d6b616541a3c7685ec688ca6beb|commit]], [[https://git.kernel.org/linus/84ec7597ae1afb9430c55044f318d1d40f8ecef0|commit]], [[https://git.kernel.org/linus/b95d8058a2786a8b42e32f383f8df45097675d00|commit]], [[https://git.kernel.org/linus/df60764ea52102f433b76cfa4fc873229e60e76c|commit]] * imx-jpeg: Add support for descriptor allocation from SRAM [[https://git.kernel.org/linus/88fe301896596da34847871dbdfe261ed1148676|commit]], [[https://git.kernel.org/linus/241e75fe6b9db206e8df14d305ea7e42fd3a2846|commit]] * Enable support for av1 stateful decoder [[https://lore.kernel.org/linux-media/20251210-av1d_stateful_v3-v10-0-cf4379a3dcff@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/406fc2e9ca65e0df345ebf4ce95aa87cb6416f35|commit]], [[https://git.kernel.org/linus/151096542e937e7336dc0d50192b855f5b490e22|commit]], [[https://git.kernel.org/linus/10ac84abd48186b4c20719a7985c8df30d3b5f7a|commit]], [[https://git.kernel.org/linus/2af481a459a4740c402d2b3346bc4f7b013d74b4|commit]], [[https://git.kernel.org/linus/819fcf0554388bb54b64184902cebfed5260437d|commit]] * iris: prepare support for video codecs on Qcom vpu4 platform [[https://lore.kernel.org/linux-arm-msm/20251210-knp_video-v4-0-8d11d840358a@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8744df0e8946abee487342c97233e61ceb35a632|commit]], [[https://git.kernel.org/linus/dff99dff6c3c4feadc28585dc16f741b0978e631|commit]], [[https://git.kernel.org/linus/df816dce1b01ad761b20ff9568fbb5383e485bf9|commit]], [[https://git.kernel.org/linus/2fc9b85dea50497f2264863d2f398bd1cfa5375b|commit]], [[https://git.kernel.org/linus/82b96a8d8d6ebedcda8ef2d051ddd0f43d8eee14|commit]], [[https://git.kernel.org/linus/dde659d37036c6edf5eeef81274b43fe12dfad53|commit]] * Add manual request completion to the mediatek vcodec driver [[https://lore.kernel.org/linux-kernel/20251128-sebastianfricke-vcodec_manual_request_completion_with_state_machine-v4-0-c166bdd4625c@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/c789a7f40288c19004f786a6da67c3733d38c6af|commit]], [[https://git.kernel.org/linus/d14d93f940763655c23c9a0012648ec42a06f482|commit]], [[https://git.kernel.org/linus/de9f0c2a1ce3d97561d5cf4678b80e13943647fd|commit]], [[https://git.kernel.org/linus/1b78aae6313f4131610f5023ae34f2c7502ceeab|commit]], [[https://git.kernel.org/linus/3e92d7e4935084ecdbdc88880cc4688618ae1557|commit]] * omap3isp: v4l2-compliance fixes [[https://lore.kernel.org/linux-media/cover.1764661880.git.hverkuil+cisco@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/e0ac618fff090ea8fd4423f1e3c7eb7d34d8b184|commit]], [[https://git.kernel.org/linus/a03c909815639875f214c9d680839d48fa7cb29f|commit]], [[https://git.kernel.org/linus/44c03802a5191626996ee9db4bac090b164ca340|commit]], [[https://git.kernel.org/linus/5e72c0c94e420bc56373f80ff9313534ab017020|commit]], [[https://git.kernel.org/linus/2c422fd1a431feb0d8918b11ff37ec613e111d66|commit]], [[https://git.kernel.org/linus/7575b8dfa91f82fcb34ffd5568ff415ac4685794|commit]], [[https://git.kernel.org/linus/93ee7d61dc311cfa382cf3461fc7647e0ff62bff|commit]], [[https://git.kernel.org/linus/5c1f16ec600c22202a144c2a6a9ddb3678310e63|commit]], [[https://git.kernel.org/linus/335d7956f739d70f78ae803cb618d85e4444fb36|commit]], [[https://git.kernel.org/linus/44c383116d3587662661e94e75842d92fb3a4bee|commit]], [[https://git.kernel.org/linus/ccd797968922e5e6d0e59aa4883c432e5c906a4b|commit]], [[https://git.kernel.org/linus/17e1e1641f74a89824d4de3aa38c78daa5686cc1|commit]] * pci: mgb4: Add support for GMSL1 and GMSL-coax modules [[https://lore.kernel.org/linux-media/20251120130827.1882-1-tumic@gpxsee.org/T/|(cover)]], [[https://git.kernel.org/linus/a20cf188abe299578d49d229a0cc28a1ef41e558|commit]], [[https://git.kernel.org/linus/f67adf545f9e7db4731fb7721597557e2571f891|commit]], [[https://git.kernel.org/linus/eb4ee870747c3a77a9c3c84d84efb64bd481013a|commit]] * qcom: camss: Add support for regulator init_load_uA in CSIPHY [[https://git.kernel.org/linus/17bc0e288224f793a5a97408b7ce0b80c178bfaa|commit]] * qcom: iris: encoder feature enhancements [[https://lore.kernel.org/linux-media/20251114-iris_encoder_enhancements-v6-0-d6d35a92635d@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/d9967fa37ca97aec5aea98d627107147cc02edbc|commit]], [[https://git.kernel.org/linus/0708f305d6fabf9aca1d1c96d5a5b003df2d8bc9|commit]], [[https://git.kernel.org/linus/121d6d7a35110a5ce6892b1e4695cac9c0f3094b|commit]], [[https://git.kernel.org/linus/49a940f37de337dbbede5ac204cc9d7ebe22c59a|commit]], [[https://git.kernel.org/linus/874eca6d309530d9223fb33e1ad056861955f491|commit]], [[https://git.kernel.org/linus/5ef0832c6e42dc67101629810c763625905cd026|commit]] * rkvdec: Add support for VDPU381 and VDPU383 [[https://lore.kernel.org/linux-kernel/20260120222018.404741-1-detlev.casanova@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/8a5586d4ffb10751b869a02d757482fe0b3739f3|commit]], [[https://git.kernel.org/linus/fa05705107a40131a8335ad37817153709261738|commit]], [[https://git.kernel.org/linus/4cb9cd80b36ea977c468415eb2730ae4435505cc|commit]], [[https://git.kernel.org/linus/dc6898981f744cf54c29313f5a399260933cdf66|commit]], [[https://git.kernel.org/linus/2b0ec90061672274978db0fbe898740a1e52c973|commit]], [[https://git.kernel.org/linus/cf29115a68e334f2216cd7d4dfc6d51e986ca726|commit]], [[https://git.kernel.org/linus/560438ed7c2c09efacd5937771769d828d3aa525|commit]], [[https://git.kernel.org/linus/34e2b14ae90efdc19c4d348710c6b6803a4acfe2|commit]], [[https://git.kernel.org/linus/ae2070ca8ab2cc9cad0303fb6f9ed74cde9ec96c|commit]], [[https://git.kernel.org/linus/e5640dbb991c498b0f6fcf2e968fa795a8062eb6|commit]], [[https://git.kernel.org/linus/f9c7b7deeffd9e1fa2d9ed0c7a84c21226b24b0a|commit]], [[https://git.kernel.org/linus/6a846f7d72c7b64627398c8fe82de74da97a7b2a|commit]], [[https://git.kernel.org/linus/e570307ac987482dfdd8950e7cce96048b047b10|commit]], [[https://git.kernel.org/linus/e5aa698ea6591482286e99f4f6f2894cfeed3c22|commit]], [[https://git.kernel.org/linus/fde24907570dcc56406f5e48d5c9d9e7e2da36fc|commit]], [[https://git.kernel.org/linus/c9a59dc2acc72789d5c778af080d1e65af84862c|commit]], [[https://git.kernel.org/linus/e3b5b77e36894b4d61374ecb916355809c6e4aa4|commit]] * stm32: dcmipp: byteproc: only allow compose with 8/16bit fmts [[https://git.kernel.org/linus/8a71f1f8d91fb10d306857c0f198a940c1d22e06|commit]] * rockchip: add driver for the rockchip mipi csi-2 receiver [[https://lore.kernel.org/linux-media/20251114-rockchip-mipi-receiver-v8-0-bd1cf5cb9588@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/a1da27d0c3e08d88980a3205fc61773ec6089666|commit]], [[https://git.kernel.org/linus/355a110040665e439af126e8ec9c3968e73f163c|commit]] * Add support for ti vip [[https://lore.kernel.org/linux-media/20251224102027.3343361-1-y-abhilashchandra@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/4011e67a989b828cbf885131933d322dfe80f33a|commit]], [[https://git.kernel.org/linus/4c97845712874447702af83eb7db6e16d4259639|commit]], [[https://git.kernel.org/linus/7c0b084c04b69225ad38ac35a52047598af5bbbb|commit]], [[https://git.kernel.org/linus/fc2873aa4a21355593b55eb49ff534d31f81c584|commit]] * uvcvideo: Map known XU controls [[https://lore.kernel.org/linux-media/20251119-uvcdynctrl-v2-0-0359ffb98c9e@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/27ccc44a511b0cd76dc607e2a4893b876192ee1b|commit]], [[https://git.kernel.org/linus/ee5b462b97162dbb6c536e18a37b3048f6520019|commit]] * stm32: dcmipp: Add RGB888 format support overall [[https://git.kernel.org/linus/f29f8bfcb0555801e22e29acd2c83c3d3ee9d20d|commit]] * stm32: dcmipp: add Y10-Y12-Y14 in all subdevs [[https://git.kernel.org/linus/0085da1315898ea27bcb323e456ca1d39d43e96a|commit]] == Universal Serial Bus == * type-c alternate mode priorities [[https://lore.kernel.org/linux-kernel/20251124124639.1101335-1-akuchynski@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/dfd7b082c0a22ff0d697605a2a6bb62d9a4730a6|commit]], [[https://git.kernel.org/linus/4ec128733f68f77af452b0d97d8688cd33cd963e|commit]], [[https://git.kernel.org/linus/4ec128733f68f77af452b0d97d8688cd33cd963e|commit]], [[https://git.kernel.org/linus/027b304ca3f6989f6946b5b3bcc727cf3f54774f|commit]], [[https://git.kernel.org/linus/be727d4000669a64a3ce6697669150d78bb2d492|commit]], [[https://git.kernel.org/linus/ab2588c040fe6e87e5b1ca5a0d005cc4df14aced|commit]], [[https://git.kernel.org/linus/ffbe78fdbbbdf774a92b47ac138bc1a0a7482096|commit]] * typec: ucsi: Add Thunderbolt alternate mode support [[https://git.kernel.org/linus/da87d45b195148d670ab995367d52aa9e8a9a1fa|commit]] * serial: option: add Telit FN920C04 RNDIS compositions [[https://git.kernel.org/linus/509f403f3ccec14188036212118651bf23599396|commit]] * Add google tensor soc usb controller support [[https://lore.kernel.org/linux-usb/20251218-controller-v10-0-4047c9077274@google.com/T/|(cover)]], [[https://git.kernel.org/linus/32bc790a8e495c5c22755644c3e26a7aee03f91f|commit]], [[https://git.kernel.org/linus/8995a37371bf489ede768271aac56e4e6a55bcb2|commit]] * Add ast2700 support for aspeed vhub [[https://lore.kernel.org/linux-usb/20251128-upstream_vhub-v2-0-1fa66a5833c2@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/d0f607e4b96b6927ebce08fe2c9dfbf8a64ca614|commit]], [[https://git.kernel.org/linus/36723c6c1ea2d4736540eaa0cb4e59dba40d8573|commit]] * gadget: f_sourcesink: Support maxburst configurability for bulk endpoints [[https://git.kernel.org/linus/090a6c69611b4f3af237814b6fa012a084864589|commit]] * isp1362-hcd: remove Philips ISP1362 USB OTG controller driver [[https://git.kernel.org/linus/6e0e8375f2e6854e8c35faa638f4448e3b8209af|commit]] * misc: onboard_dev: Add WCH CH334 USB2.0 Hub (1a86:8091) [[https://lore.kernel.org/linux-usb/20260113095827.115-1-kernel@airkyi.com/T/|(cover)]], [[https://git.kernel.org/linus/00fcc9c86a134c488fd857b5460a7925228272c1|commit]], [[https://git.kernel.org/linus/fa3bb5011f33cccd246072954e64d64483d0d774|commit]] * phy: tegra: add support for HSIC mode [[https://lore.kernel.org/linux-usb/20260122151125.7367-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/53cc2d90542cfee42bf73627c26318372e7ea50e|commit]], [[https://git.kernel.org/linus/8acc379b664ec987dcc7eca25a5f5c4a9a4eb9c4|commit]] * dbc: allow setting manufacturer string through sysfs [[https://git.kernel.org/linus/db7fd1955e6825756d0241343add1d172098bb18|commit]] * dbc: allow setting product string through sysfs [[https://git.kernel.org/linus/33d15312e35d4cfd26b68ab4c1b0143cc43d8b16|commit]] * dbc: allow setting manufacturer string through sysfs [[https://git.kernel.org/linus/db7fd1955e6825756d0241343add1d172098bb18|commit]] * xhci: dbc: allow setting device serial number through sysfs [[https://git.kernel.org/linus/412de639b55fcf1ab5ad50a6be84f5164104abe3|commit]] == Serial Peripheral Interface (SPI) == * Add support for nxp xspi [[https://lore.kernel.org/linux-spi/20251216-xspi-v7-0-282525220979@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/64ba616741bcfc4c7ef1ed856179328300ca0422|commit]], [[https://git.kernel.org/linus/29c8c00d9f9db5fb659b6f05f9e8964afc13f3e2|commit]] * aspeed: Improve handling of shared SPI controllers [[https://lore.kernel.org/lkml/20260120123005.1392071-1-chin-ting_kuo@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/53f826ff5e0e3ecb279862ca7cce1491b94bb017|commit]], [[https://git.kernel.org/linus/04f7516ab70f7b82aae1d2830af2ee6f17f3fe98|commit]] * atcspi200: Add support for Andes ATCSPI200 SPI controller [[https://lore.kernel.org/devicetree/20251215132349.513843-1-cl634@andestech.com/T/|(cover)]], [[https://git.kernel.org/linus/b2f06783081859b200a853f9682d831b6fc9982d|commit]], [[https://git.kernel.org/linus/34e3815ea4597131d4324a4aa243d2201e672005|commit]], [[https://git.kernel.org/linus/1303c2903889b01d581083ed92e439e7544dd3e5|commit]] * adc: ad7380: Add multi-lane support [[https://lore.kernel.org/linux-spi/20260123-spi-add-multi-bus-support-v6-0-12af183c06eb@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/37bb4033e48b8a0ddee66fd77f9e12a9a930681b|commit]], [[https://git.kernel.org/linus/31eab8425110b933dd7c818809cb4ffa3b2c6d82|commit]], [[https://git.kernel.org/linus/002d561f89c3a61ee17d38070e48ea4eb1243732|commit]], [[https://git.kernel.org/linus/5621a7bc851658ea2f8e015060f8bb5d27739b06|commit]], [[https://git.kernel.org/linus/05c3bd745bb065223201824f0044455558541bdc|commit]], [[https://git.kernel.org/linus/2e706f86a5aa94702694774efb7d8b151c6d724f|commit]], [[https://git.kernel.org/linus/0ec5ed7c95d1ba6a74491928ff38abb351dbed36|commit]] * Axiado ax3000 soc spi db controller driver [[https://lore.kernel.org/linux-spi/20260107-axiado-ax3000-soc-spi-db-controller-driver-v3-0-726e70cf19ad@axiado.com/T/|(cover)]], [[https://git.kernel.org/linus/e75a6b00ad7962a7ed1c9c777e9ab1eb29043ec8|commit]], [[https://git.kernel.org/linus/db4371d13f82fb12463fe053f4864980a2af2106|commit]] * bcm63xx-hsspi: add support for 1-2-2 read ops [[https://git.kernel.org/linus/0f698d742f628d02ab2a222f8cf5f793443865d0|commit]] * cadence-qspi: Add Renesas RZ/N1 support [[https://lore.kernel.org/linux-spi/20260205-schneider-6-19-rc1-qspi-v5-0-843632b3c674@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/2b97f5cd1a956a9ac948ec57775600158988dadd|commit]], [[https://git.kernel.org/linus/324ecc7788c2e21d0d9197a8c015ff75382122d9|commit]], [[https://git.kernel.org/linus/a40236feb62ccbf2b36d288550a483122b3205e5|commit]] * Improve spi target mode support and error handling [[https://lore.kernel.org/lkml/20260204162854.1206323-1-praveen.talari@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/50464497b5874b7c2f3ab991cec81e916d40743c|commit]], [[https://git.kernel.org/linus/96e041647bb0f9d92f95df1d69cb7442d7408b79|commit]], [[https://git.kernel.org/linus/9934383f98c91d8dfdf16d0e980431041c2d17ee|commit]], [[https://git.kernel.org/linus/6516169fa7f6110ce42a5958c921255f2d0968bc|commit]] * Support ecspi dynamic burst feature for dma mode [[https://lore.kernel.org/linux-spi/20251203085949.2922166-1-carlos.song@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/c64f62b036aed30626cb30fa82d3ec4a13fa83df|commit]], [[https://git.kernel.org/linus/5395bb7f7c361310d0f329c8169d2190809b05c1|commit]], [[https://git.kernel.org/linus/a5f298581d454c5ea77c5fb6f4ee1bff61eb2b2c|commit]], [[https://git.kernel.org/linus/a450c8b77f929f5f9f5236861761a8c5cab22023|commit]], [[https://git.kernel.org/linus/faa8e404ad8e686cb98c51dc507fdcacfb8020ce|commit]], [[https://git.kernel.org/linus/ba9b28652c75b07383e267328f1759195d5430f7|commit]] * stm32: Update for OSPI and QSPI drivers [[https://lore.kernel.org/linux-spi/20251208-upstream_qspi_ospi_updates-v2-0-62526c9467dc@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/e35a7607e05d59d35e937b80532ae93d1dd2493f|commit]], [[https://git.kernel.org/linus/cfe58ffc95a601988702df6f3462cb54dde467e9|commit]], [[https://git.kernel.org/linus/f6ed06926b510f54a0817567ffd458194ed90bd6|commit]], [[https://git.kernel.org/linus/e2f0ea18e560e5fa6180f52dffe434525a0cf86b|commit]], [[https://git.kernel.org/linus/4ef80c71c62ab841db9b1a9d74ffe043c60f6222|commit]], [[https://git.kernel.org/linus/1ca91281649547efa4be34584a304974c9601df1|commit]], [[https://git.kernel.org/linus/c5f76d888810bca2d46297a7b942e10bc8cc69dd|commit]], [[https://git.kernel.org/linus/fee876b2ec75dcc18fdea154eae1f5bf14d82659|commit]] == Watchdog == * softlockup: panic when lockup duration exceeds N thresholds [[https://git.kernel.org/linus/e700f5d1560798aacf0e56fdcc70ee2c20bf56ec|commit]] * iTCO: Drop vendor support [[https://git.kernel.org/linus/0bf75b9c8a0eb1ef46ce85a393dd27ae801fc207|commit]] * s3c2410_wdt: Simplify, cleanup and drop !S3C2410 [[https://lore.kernel.org/linux-watchdog/20251217-watchdog-s3c-cleanup-v2-0-79d8caf65ec3@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f2cfba28754490291019d670b985515a36b9d19f|commit]], [[https://git.kernel.org/linus/a7264838057f32317db9e903ab44402b391fda2c|commit]], [[https://git.kernel.org/linus/6a11dbf4d02d56182ff97f596197d93993916878|commit]], [[https://git.kernel.org/linus/8fa8380abd09aa4a72b20329a4beb58544ccaed9|commit]] == Serial == * Add rz/g3e rsci support [[https://lore.kernel.org/linux-kernel/20251129164325.209213-1-biju.das.jz@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/0774c43c006bf6e411514920cc57a42abe9374c1|commit]], [[https://git.kernel.org/linus/3a3ab10245b6779e32114bc70052ec7a8a380152|commit]], [[https://git.kernel.org/linus/b346e5d7dbf6696176417923c49838a1beb1d785|commit]], [[https://git.kernel.org/linus/42f7303c5f668403f06d9b938d3de2bda3736530|commit]], [[https://git.kernel.org/linus/450bd399c8797d2783c73aa6c83f382ac8d5f630|commit]], [[https://git.kernel.org/linus/c17db4d06cabc7746d48d99c6245d19bd55077d4|commit]], [[https://git.kernel.org/linus/36816a033dd41fda415ae0696931d6bfe87671a2|commit]], [[https://git.kernel.org/linus/507a7ba917cd7ae043ba05db02089b152ae0aaa8|commit]], [[https://git.kernel.org/linus/850ec928922fb819c28eb175bf85b01e28afdea7|commit]], [[https://git.kernel.org/linus/7d8b226bf95cd2b49f15da4f4d40e05932c0d4cc|commit]], [[https://git.kernel.org/linus/d53f4aa9edaafda28e426d8e5eda7dc50f7ca94e|commit]], [[https://git.kernel.org/linus/4cb2bd1bf41a0d6dbe1fc4bf8d8f83f40b914572|commit]], [[https://git.kernel.org/linus/83c405ec3a340a334c46bb59b07e5799f6d205a4|commit]], [[https://git.kernel.org/linus/5632bda5e848c4592eefa4451092beb4ce29ab76|commit]], [[https://git.kernel.org/linus/bbcd508c84d4884c620f4f4bb7d382539466b9a3|commit]], [[https://git.kernel.org/linus/068b862f5025920e3e10228e9904c2560e08b855|commit]], [[https://git.kernel.org/linus/83c405ec3a340a334c46bb59b07e5799f6d205a4|commit]] == CPU Frequency scaling == * ti: Add support for AM62L3 SoC [[https://lore.kernel.org/linux-pm/20260120-am62l-cpufreq-v3-0-8c69b80168a3@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/945fc28a06a1d30315ca416167754e10208024a5|commit]], [[https://git.kernel.org/linus/dea8bfea76e4bea9f727f777604d4053d7e9cd92|commit]] * Remove omap-cpufreq [[https://git.kernel.org/linus/80b49829ba1776d3593998293d457397e349b765|commit]] * cpufreq: omap: remove driver [[https://git.kernel.org/linus/0cc7933cbec80900bdbe658b72e2ba99187fe628|commit]] == Voltage, current regulators, power capping, power supply == * sequencing: extend WCN driver to support WCN399x device [[https://lore.kernel.org/linux-arm-msm/20260106-wcn3990-pwrctl-v2-0-0386204328be@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/a5fae429ec2ac72372bc874a0334a7fb9eadee83|commit]], [[https://git.kernel.org/linus/afcf3ec615c918dd71139e7ca2f4812ceea48cd7|commit]], [[https://git.kernel.org/linus/0eb85f468ef515fbd2538375ef3884f6dd376382|commit]], [[https://git.kernel.org/linus/c5dc4812f6bf397b82290c540085e9ec98b47b30|commit]], [[https://git.kernel.org/linus/8bfb696ccdc5bcfad7a45b84c2c8a36757070e19|commit]], [[https://git.kernel.org/linus/c303e89f7f17c29981d09f8beaaf60937ae8b1f2|commit]], [[https://git.kernel.org/linus/0404b98c6bbca7a3b1e59a20d173fa149ac20194|commit]] * Support rohm bd72720 pmic [[https://lore.kernel.org/linux-leds/cover.1764241265.git.mazziesaccount@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4d08b3634fe824409e75696635fb27204b8d4720|commit]], [[https://git.kernel.org/linus/dc74d1107f1506176c1f4f32dbef0417f3e678e1|commit]], [[https://git.kernel.org/linus/a43309745a5ff3682f6a3d02459729824b5221e1|commit]], [[https://git.kernel.org/linus/16056396b7709b0ee33d88329e9a41166bc8d6a0|commit]], [[https://git.kernel.org/linus/e816df1d3714d20c21a4fcdf3a5193ba12394642|commit]], [[https://git.kernel.org/linus/9144a761bf167d6e0ed827e5816e2ba68b2fc2f0|commit]], [[https://git.kernel.org/linus/016e95b1473798f1e755a9e20f81391119ae7399|commit]], [[https://git.kernel.org/linus/ea6806346080098b68674b933e76a76f0a49a79f|commit]], [[https://git.kernel.org/linus/af25277b1ddc6c65879247387d127c38c51ba9f0|commit]], [[https://git.kernel.org/linus/8dc33b7c995e3e08087053b79cf919fba61e3669|commit]], [[https://git.kernel.org/linus/f16a9d76a71df5038fc8e6dae44caa1e5e76b041|commit]], [[https://git.kernel.org/linus/6b367741e01430947f66ad863bfc1e57ad42b7bc|commit]], [[https://git.kernel.org/linus/da4950b5911197813e62b2347caf3bd525cb35a2|commit]], [[https://git.kernel.org/linus/0234e0033e62c1043b602e699580c843c4457486|commit]], [[https://git.kernel.org/linus/de8f20afb00469c4fc0bb4191cdef7a95c2f847e|commit]], [[https://git.kernel.org/linus/bcb5bb59b83642bb242aaf6b018bebb1325a50ba|commit]], [[https://git.kernel.org/linus/e39951f8ad500648b9ab132f8042d6e47da441cf|commit]] * Add tps65185 [[https://lore.kernel.org/linux-kernel/20260102-tps65185-submit-v3-0-23bda35772f2@kemnade.info/T/|(cover)]], [[https://git.kernel.org/linus/da1456e435ae84852bda484cd4d60f47228d52fc|commit]], [[https://git.kernel.org/linus/b0fc1e7701940d12ea2c41f386aa552bc4cc3629|commit]] * Add support for max77675 device [[https://lore.kernel.org/linux-kernel/20251207032907.4850-1-joan.na@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/05a0fe8e43c876ffd2befb5a406d3baf3179b9fe|commit]], [[https://git.kernel.org/linus/9e92c559d49d6fb903af17a31a469aac51b1766d|commit]] * Add rk801 pmic support [[https://lore.kernel.org/devicetree/20260112124351.17707-1-chenjh@rock-chips.com/T/|(cover)]], [[https://git.kernel.org/linus/a8a2add7b1889f00bc5d2b1f25fad34e89ef85fb|commit]], [[https://git.kernel.org/linus/156442eb6e44d545f09559bd70c5b31fba39eb01|commit]], [[https://git.kernel.org/linus/3e10bbd9c8a6d5d016b8e52c5d4ceba93a2304a0|commit]] * Samsung s2mpg10 regulator and s2mpg11 pmic drivers [[https://lore.kernel.org/linux-kernel/20260122-s2mpg1x-regulators-v7-0-3b1f9831fffd@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/e4691f356b2c24467eadc8b20f267e9e046f74cd|commit]], [[https://git.kernel.org/linus/71bc6adae4102550717a8eeaa21d3f76f5149ac6|commit]], [[https://git.kernel.org/linus/030158c0528d1cbfbe9eebed09bad604f6135734|commit]], [[https://git.kernel.org/linus/189ccdc7e8a9b5634b99ad0052749ac4c5442f89|commit]], [[https://git.kernel.org/linus/b356595f8bf4d22646e7800f6b85f63d42de1f31|commit]], [[https://git.kernel.org/linus/bfacd34f8f34edc70c5c7a5fea46fd3c9ec35a5c|commit]], [[https://git.kernel.org/linus/fa72a842734272e295e6804df75131acde2d6e2d|commit]], [[https://git.kernel.org/linus/3a17ba6557e28d5d99b7e3cad31f22ad28a36cc2|commit]], [[https://git.kernel.org/linus/7d33c0a4c6a3356db2b2f599820baf75d3753d44|commit]], [[https://git.kernel.org/linus/0809d3dcc0dd8f597adbcd4d881063eb1b437987|commit]], [[https://git.kernel.org/linus/6430d65d7b74712e9ff60e270687d66265dad6f2|commit]], [[https://git.kernel.org/linus/223cefd021fa6ef5687159836871907aa3084fe2|commit]], [[https://git.kernel.org/linus/5b3c95739d674794730fbf3c678206f302609d27|commit]], [[https://git.kernel.org/linus/0042c880e43c54c9bf19c24a72e54eeea37995e3|commit]], [[https://git.kernel.org/linus/a2b8b9f33ce30ab51b33b52dc52e55d6930b9a02|commit]], [[https://git.kernel.org/linus/8f23cfbe4463c3de2e552aed106e179c0c932b6e|commit]], [[https://git.kernel.org/linus/102dd11fc98261675a0664de1466616d7dad8d91|commit]], [[https://git.kernel.org/linus/979dd8da76eb98b212f4e8cafc3c4019cfa3d93d|commit]], [[https://git.kernel.org/linus/fe8429a2717fc01082502b0adf680a50b230eff7|commit]] * Add rt8092 support [[https://git.kernel.org/linus/32a708ba5db50cf928a1f1b2039ceef33de2c286|commit]] == Real Time Clock (RTC) == * s35390a: implement nvmem support [[https://git.kernel.org/linus/8eeb611b3d16241559bbf81ae5d938368c87818c|commit]] * Add loongson-2k0300 support [[https://lore.kernel.org/devicetree/cover.1768616276.git.zhoubinbin@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/da9934a6583adc40ac0c9cc21e7419617ad985fd|commit]], [[https://git.kernel.org/linus/5d4899d4859f812290bf2fc458a517781fe6eeca|commit]], [[https://git.kernel.org/linus/770a54accf80fa6b68df0753eb0c527a4ecf5402|commit]] == Pin Controllers (pinctrl) == * Microchip mpfs/pic64gx pinctrl part 2 [[https://lore.kernel.org/linux-kernel/20260120-elixir-salute-dd6ec3d9f5fe@spud/T/|(cover)]], [[https://git.kernel.org/linus/95c1762aaf34b0d5d128f5c14a82826499c563a3|commit]], [[https://git.kernel.org/linus/43722575e5cdcc6c457bfe81fae9c3ad343ea031|commit]], [[https://git.kernel.org/linus/6b324d199467bf346132f0cb7f5ad4bbcdc3c037|commit]], [[https://git.kernel.org/linus/488d704ed7b7e7afeef24ee846c8223b607357b7|commit]], [[https://git.kernel.org/linus/8ecfc7dfdfc53513d465d436b6ea101b07323ee5|commit]] * at91-pio4: Add sama7d65 pio4 support [[https://git.kernel.org/linus/0968c81ce9c4b42cfaaee15de53c665064fe7ee3|commit]] * imx: Support NXP scmi extended mux config [[https://git.kernel.org/linus/781609002a77712cfbc0515feb985053320d8ca2|commit]] * imx: Add support for NXP i.MX952 [[https://git.kernel.org/linus/6e00258964c3e10e4468cd83368129ca4c4ef1a7|commit]] * intel: platform: Add Nova Lake to the list of supported [[https://git.kernel.org/linus/069bb6f69afadcea3ac5e3e00af45e8519de380a|commit]] * qcom: Add Mahua TLMM support [[https://lore.kernel.org/linux-arm-msm/20260120-pinctrl-qcom-mahua-tlmm-v3-0-8809a09dc628@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/84a3bc337378385ed9c9cef06910587de7accf0b|commit]], [[https://git.kernel.org/linus/84340785fa061d4c39eeaa89dea381fa94e4aeaa|commit]] * samsung: add Exynos9610 pinctrl support [[https://lore.kernel.org/linux-samsung-soc/20260102-exynos9610-pinctrl-v3-0-3f21f2cfb651@chimac.ro/T/|(cover)]], [[https://git.kernel.org/linus/4ab3ec8baa41cf503cd358e27696d68ace0902ba|commit]], [[https://git.kernel.org/linus/2efbc4cf874403e635234c0289eada12ca7e9c4c|commit]], [[https://git.kernel.org/linus/8c483209a6fc71a555fec4a0c99b05e46a5bd38c|commit]] * spacemit: add support for K3 SoC [[https://lore.kernel.org/linux-gpio/20260102-02-k3-pinctrl-v3-0-30aa104e2847@gentoo.org/T/|(cover)]], [[https://git.kernel.org/linus/c3efac0592f88ab48c8eef028268e6514908be51|commit]], [[https://git.kernel.org/linus/5adaa1a8c08839617e5a6385fe05a8baa63e355f|commit]], [[https://git.kernel.org/linus/7412311c4655497b6ab6dd7b802f9390f0f57dc7|commit]], [[https://git.kernel.org/linus/3f20bdf7151834547a85231c28538f49601481ee|commit]] * spacemit: support I/O power domain configuration [[https://lore.kernel.org/devicetree/20260108-kx-pinctrl-aib-io-pwr-domain-v2-0-6bcb46146e53@linux.spacemit.com/T/|(cover)]], [[https://git.kernel.org/linus/e817f0223d78818cd6c0e3480355c9a9cfbc0096|commit]], [[https://git.kernel.org/linus/450e2487d5a28260f70ad7fbf3060e7f8304203d|commit]] * ocelot: Extend support for lan9645xf family [[https://git.kernel.org/linus/b20d212f6ce96b23ef5feda7dd3897102bf116eb|commit]] == Memory Technology Devices (MTD) == * spinand: winbond: Rename IO_MODE register macro [[https://lore.kernel.org/linux-spi/20251031-winbond-v6-17-rc1-oddr-v1-20-be42de23ebf1@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/ef1ed296fb9d9246256e1b5b2cf2e86e85606ac3|commit]], [[https://git.kernel.org/linus/be0b86c648bf811237cc17e274e9f9488fccb772|commit]], [[https://git.kernel.org/linus/20387f2fe509eba46ecf758da052786d7b1203fb|commit]], [[https://git.kernel.org/linus/8e7face6013997f9f74c83187d50c9a0cce52553|commit]], [[https://git.kernel.org/linus/0a331a1851aedd670b95a2d16c6a82496137378d|commit]], [[https://git.kernel.org/linus/f636d9216146fe11de754bf78207352507fb3b91|commit]], [[https://git.kernel.org/linus/76b7dc76dd0e1af5a538e977e015ac95271b3b12|commit]], [[https://git.kernel.org/linus/44a2f49b9bdc7e19413230d390ebf224054e6572|commit]], [[https://git.kernel.org/linus/408015023294958407925bc50cdd85718d12a335|commit]], [[https://git.kernel.org/linus/88b0e3584acb905c41252b7917013ecf7c0518bc|commit]], [[https://git.kernel.org/linus/b347cdc89beb12e531ebbfda77c37c6446285a40|commit]], [[https://git.kernel.org/linus/44c9c1b45d50dcbce17c18adb4e79f394f127d57|commit]], [[https://git.kernel.org/linus/6ec7ace0127077d1caab6ca1fb0129da8eb5c1de|commit]], [[https://git.kernel.org/linus/fbc7538782f8e7df4737dcec7d854cf4d53bfc67|commit]], [[https://git.kernel.org/linus/87ec7690973bbd8bb5ccfbbc5429485d06fe123e|commit]], [[https://git.kernel.org/linus/62dce7e0fcd73a311786ef048b027aa841b9bc83|commit]], [[https://git.kernel.org/linus/da8f4891bcfad393a3217f1abfec1a927c963151|commit]], [[https://git.kernel.org/linus/1d98c6a77bcf1ce686aaf40a725cbb5683ee5735|commit]], [[https://git.kernel.org/linus/57e1015cc9a96372f330195abe32a904ec8d1eab|commit]], [[https://git.kernel.org/linus/ef1ed296fb9d9246256e1b5b2cf2e86e85606ac3|commit]], [[https://git.kernel.org/linus/be0b86c648bf811237cc17e274e9f9488fccb772|commit]], [[https://git.kernel.org/linus/20387f2fe509eba46ecf758da052786d7b1203fb|commit]], [[https://git.kernel.org/linus/8e7face6013997f9f74c83187d50c9a0cce52553|commit]], [[https://git.kernel.org/linus/0a331a1851aedd670b95a2d16c6a82496137378d|commit]], [[https://git.kernel.org/linus/f636d9216146fe11de754bf78207352507fb3b91|commit]], [[https://git.kernel.org/linus/76b7dc76dd0e1af5a538e977e015ac95271b3b12|commit]], [[https://git.kernel.org/linus/44a2f49b9bdc7e19413230d390ebf224054e6572|commit]] * spinand: add Foresee F35SQB002G flash support [[https://git.kernel.org/linus/1d9d5f5a5040ff9c8b7b22d54845b3a464286435|commit]] * spinand: add support for Dosilicon DS35Q1GA/DS35M1GA [[https://git.kernel.org/linus/a75a1dec037ff3de863375fa3a74569619667184|commit]] == Industrial I/O (iio) == * adxl380: Add support for 1 kHz sampling frequency [[https://lore.kernel.org/lkml/20260115175350.1045887-1-flavra@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/a99b000f92413f254a6dc0f6ab88b310152f9485|commit]], [[https://git.kernel.org/linus/fabae7558722dcf41a9137f6f0f82462867d7c96|commit]], [[https://git.kernel.org/linus/f65de31fb6aba70133a0cb57bba6f84b5fb4d695|commit]] * adc: Add support for TI ADS131M0x ADCs [[https://lore.kernel.org/linux-kernel/20251118141821.907364-1-o.rempel@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/1ca733e843ac1340c030b4a8b0060a27cd0843b6|commit]], [[https://git.kernel.org/linus/4aa91223fd6c9b9e6c73f9dc6ffb55cbf04df4ac|commit]] * Add support for ad4062 device family [[https://lore.kernel.org/linux-iio/20251217-staging-ad4062-v4-0-7890a2951a8f@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/9e6c7656b9977e902fe7a99d61da00e3f6bc41a4|commit]], [[https://git.kernel.org/linus/1b1ddab0249c607ab6fc4388d6c121a23c1b5409|commit]], [[https://git.kernel.org/linus/d5284402d28f30dbbe74b9823a324a998a8306d8|commit]], [[https://git.kernel.org/linus/c31721dc0bb5aaf1b93f26193fece15b857f5783|commit]], [[https://git.kernel.org/linus/23cc92280302d4e4f5f4253b6ff1dbeeb82a9464|commit]], [[https://git.kernel.org/linus/c894e05871b4ccd4b0829382aed2c586490c700f|commit]], [[https://git.kernel.org/linus/ba3a34b1f5cefd51b210659fa5861b23b17ebb57|commit]], [[https://git.kernel.org/linus/d2ca7af298fe4c373bce2d6714649b887f6426d8|commit]], [[https://git.kernel.org/linus/da1d3596b1e456b5d5d5f719bbf5ce562f4fe22d|commit]] * Nxp sar adc iio driver for s32g2/3 platforms [[https://lore.kernel.org/linux-iio/20251208020819.3063506-1-daniel.lezcano@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/a19489ca82bb5cedfe348326905fb66d66ffac65|commit]], [[https://git.kernel.org/linus/4434072a893e4864519c167947083ff3e4cc2d95|commit]] * Add support for ti ads1x18 adcs [[https://lore.kernel.org/linux-iio/20251211-ads1x18-v8-0-5cd12ac556da@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/43fabbb9249f4e609ba15533f49c3738344ed801|commit]], [[https://git.kernel.org/linus/bf0bba486b5bd5e2d6100ed7dd1e38e0304ba40f|commit]] * adc: Add AD4134 minimum I/O support [[https://lore.kernel.org/linux-iio/cover.1767795849.git.marcelo.schmitt@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/8b59bcf8d5cacbd0688ccdb87616704c04ae6ee3|commit]], [[https://git.kernel.org/linus/e0bc6d7e258486c10bb11e31fd4421c134063b1d|commit]] * Add support for adaq776x-1 adc family [[https://lore.kernel.org/linux-iio/cover.1768350772.git.Jonathan.Santos@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/2f55ae3a891e3fea38327a7abb2c1f3679e8543a|commit]], [[https://git.kernel.org/linus/fa087f5babbc24db76d5b24073216fa2d7d7b57d|commit]], [[https://git.kernel.org/linus/404a3b4c36f2e1987ff28d1d61d309292d2e33cb|commit]], [[https://git.kernel.org/linus/e7b0312c60a67431ad249b95c624b98fa782f33f|commit]], [[https://git.kernel.org/linus/ff085189cb1703b3be8176310545afbe544cd1f4|commit]] * adc: ad9467: add support for ad9211 [[https://lore.kernel.org/linux-iio/20251209-add-ad9211-v5-0-8da056eb62e9@vaisala.com/T/|(cover)]], [[https://git.kernel.org/linus/34744a6ddf63316db707d090737117c212ce136b|commit]], [[https://git.kernel.org/linus/1f0b6415b642b28811c8fe295e85c2a550bf05d1|commit]], [[https://git.kernel.org/linus/77a017410b5c59d549fefa76b2fb62173de7b30c|commit]] * amplifiers: add support for ADL8113 Low Noise Amplifier [[https://lore.kernel.org/lkml/20251212153908.138422-1-antoniu.miclaus@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/09140a720e00e7498435796b4ed648ca3a71cf59|commit]], [[https://git.kernel.org/linus/b8c7340e2c623d1dc628421fd4c1a2d89b6ea694|commit]] * bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270 [[https://git.kernel.org/linus/f69b5ac682dbc61e6aca806c22ce2ae74d598e45|commit]] * chemical: scd4x: expose timestamp channel [[https://git.kernel.org/linus/e7324980fa91f5bc0d1f5adc82d31775d4cab5bd|commit]] * dac: Add support for MAX22007 DAC [[https://lore.kernel.org/linux-iio/20260119-max22007-patch-v4-0-e22404a885a6@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/2f7bc8f01a9ba4ba4b1521e53a8c23b21a4c04e8|commit]], [[https://git.kernel.org/linus/f52690c50893ef1504990199c8a2dfbb869f38c6|commit]] * Adding support for microchip mcp47feb02 [[https://lore.kernel.org/linux-iio/20251216-mcp47feb02-v4-0-4b687094ff90@microchip.com/T/|(cover)]], [[https://git.kernel.org/linus/4ba12d304175fd7b2d2089899e38428db2d1b189|commit]], [[https://git.kernel.org/linus/4ba12d304175fd7b2d2089899e38428db2d1b189|commit]] * frequency: adf4377: add clock provider support [[https://lore.kernel.org/lkml/20251212144733.127890-1-antoniu.miclaus@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/d4f13bc9aacd1f0effd55ef95316c557f8138bba|commit]], [[https://git.kernel.org/linus/60e5448ddbec2dc206027a4850604d8fdf9973b7|commit]] * Add tap event detection [[https://lore.kernel.org/lkml/20251201100018.426749-1-flavra@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/c34e2e2d67b3bb8d5a6d09b0d6dac845cdd13fb3|commit]], [[https://git.kernel.org/linus/212234f7bf8ef93c29a2808bcf60465cc1bfff66|commit]], [[https://git.kernel.org/linus/87c3e0c138a7f01efb5de5e226055ab66345d3d0|commit]], [[https://git.kernel.org/linus/da6279f7587d55171d891ecb3dd1897cad5cad65|commit]], [[https://git.kernel.org/linus/b008b1ff0ce005e998bb4c7e876ffa2d31a1e511|commit]], [[https://git.kernel.org/linus/c93e8f091baca406981e0468264ed8747285cae6|commit]], [[https://git.kernel.org/linus/855119fa0a58a0aa1d40fe9c7c5da437167ba9ba|commit]], [[https://git.kernel.org/linus/317c9bef82ebe369fd1dac428eac505b5b6ff531|commit]], [[https://git.kernel.org/linus/ce40e01d7ce2a15ba14fde314df30787fa1d58cb|commit]] * Add basic hdr mode support (sensor part). [[https://lore.kernel.org/linux-kernel/20251215-i3c_ddr-v12-0-1ae31225b4d9@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/419add567f73dcef9dcc99c67ac8ed89367079b2|commit]], [[https://git.kernel.org/linus/6e5f6bf2e3f036e6d7466d2a3322445729ea3356|commit]] * pressure: add Honeywell ABP2 driver [[https://lore.kernel.org/linux-iio/20260103-honeywell_abp2_driver-v5-0-0435afcf306d@subdimension.ro/T/|(cover)]], [[https://git.kernel.org/linus/b2192756759308f49fbca435b5a0b9a7de7054a9|commit]], [[https://git.kernel.org/linus/47d323ce1e8934be36ec475b3bed7ad90d15d35d|commit]] * proximity: Add interrupt support for RFD77402 [[https://lore.kernel.org/linux-iio/20260128-b4-rfd77402_v5-v8-0-36388fe7b95e@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a35df4c1182eec27f13922e963b8df0b88594fe2|commit]], [[https://git.kernel.org/linus/36bff1842330b3eddaf5a7977eb00a724fc42c27|commit]], [[https://git.kernel.org/linus/51eedb3a323ae87872c4cb60cc6abed696b0a822|commit]], [[https://git.kernel.org/linus/dff4bdff074e1f92874676bed57970d19e3a86bd|commit]], [[https://git.kernel.org/linus/53516b6fdec09cb202ebf52b841cb25599f93688|commit]], [[https://git.kernel.org/linus/dc81be96a73a67d47da336497b888529c73d389b|commit]] * adc: ad4062: Add GPIO Controller support [[https://git.kernel.org/linus/da1d3596b1e456b5d5d5f719bbf5ce562f4fe22d|commit]] * dac: adding support for Microchip MCP47FEB02 [[https://git.kernel.org/linus/bf394cc8036989c9cc7d82ddede4c57e24912dc4|commit]] == Multi Function Devices (MFD) == * Add rk801 pmic support [[https://lore.kernel.org/devicetree/20260112124351.17707-1-chenjh@rock-chips.com/T/|(cover)]], [[https://git.kernel.org/linus/a8a2add7b1889f00bc5d2b1f25fad34e89ef85fb|commit]], [[https://git.kernel.org/linus/156442eb6e44d545f09559bd70c5b31fba39eb01|commit]], [[https://git.kernel.org/linus/3e10bbd9c8a6d5d016b8e52c5d4ceba93a2304a0|commit]] * Samsung s2mpg10 regulator and s2mpg11 pmic drivers [[https://lore.kernel.org/linux-kernel/20260122-s2mpg1x-regulators-v7-0-3b1f9831fffd@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/e4691f356b2c24467eadc8b20f267e9e046f74cd|commit]], [[https://git.kernel.org/linus/71bc6adae4102550717a8eeaa21d3f76f5149ac6|commit]], [[https://git.kernel.org/linus/030158c0528d1cbfbe9eebed09bad604f6135734|commit]], [[https://git.kernel.org/linus/189ccdc7e8a9b5634b99ad0052749ac4c5442f89|commit]], [[https://git.kernel.org/linus/b356595f8bf4d22646e7800f6b85f63d42de1f31|commit]], [[https://git.kernel.org/linus/bfacd34f8f34edc70c5c7a5fea46fd3c9ec35a5c|commit]], [[https://git.kernel.org/linus/fa72a842734272e295e6804df75131acde2d6e2d|commit]], [[https://git.kernel.org/linus/3a17ba6557e28d5d99b7e3cad31f22ad28a36cc2|commit]], [[https://git.kernel.org/linus/7d33c0a4c6a3356db2b2f599820baf75d3753d44|commit]], [[https://git.kernel.org/linus/0809d3dcc0dd8f597adbcd4d881063eb1b437987|commit]], [[https://git.kernel.org/linus/6430d65d7b74712e9ff60e270687d66265dad6f2|commit]], [[https://git.kernel.org/linus/223cefd021fa6ef5687159836871907aa3084fe2|commit]], [[https://git.kernel.org/linus/5b3c95739d674794730fbf3c678206f302609d27|commit]], [[https://git.kernel.org/linus/0042c880e43c54c9bf19c24a72e54eeea37995e3|commit]], [[https://git.kernel.org/linus/a2b8b9f33ce30ab51b33b52dc52e55d6930b9a02|commit]], [[https://git.kernel.org/linus/8f23cfbe4463c3de2e552aed106e179c0c932b6e|commit]], [[https://git.kernel.org/linus/102dd11fc98261675a0664de1466616d7dad8d91|commit]], [[https://git.kernel.org/linus/979dd8da76eb98b212f4e8cafc3c4019cfa3d93d|commit]], [[https://git.kernel.org/linus/fe8429a2717fc01082502b0adf680a50b230eff7|commit]] * Backlight driver to control backlight behind congatec board controller. [[https://lore.kernel.org/linux-kernel/20251205-cgbc-backlight-v6-0-e4175b0bf406@novatron.fi/T/|(cover)]], [[https://git.kernel.org/linus/b516456e9f916070fde6aa50cad5680a689687e6|commit]], [[https://git.kernel.org/linus/702273a0ea7bf01e7ed18914cb8767714a325412|commit]] * intel-lpss: Add Intel Nova Lake-S PCI IDs [[https://git.kernel.org/linus/cefd793fa17de708d043adab50e7f96f414b0f1d|commit]] * macsmc: add rtc, hwmon and hid subdevices [[https://lore.kernel.org/devicetree/20251215-macsmc-subdevs-v6-0-0518cb5f28ae@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/899c590a257269fa9e5d4fd69134496defe1851c|commit]], [[https://git.kernel.org/linus/5dce1c0bff744fd3a3be2fbbfe13e1d264d1d45e|commit]], [[https://git.kernel.org/linus/0ec4122f003ea8b7baca01fae71cfa5ffe0c5663|commit]], [[https://git.kernel.org/linus/faf317d4c705b426018fa29a14e411ec037b7560|commit]] * Support rohm bd72720 pmic [[https://lore.kernel.org/linux-leds/cover.1764241265.git.mazziesaccount@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4d08b3634fe824409e75696635fb27204b8d4720|commit]], [[https://git.kernel.org/linus/dc74d1107f1506176c1f4f32dbef0417f3e678e1|commit]], [[https://git.kernel.org/linus/a43309745a5ff3682f6a3d02459729824b5221e1|commit]], [[https://git.kernel.org/linus/16056396b7709b0ee33d88329e9a41166bc8d6a0|commit]], [[https://git.kernel.org/linus/e816df1d3714d20c21a4fcdf3a5193ba12394642|commit]], [[https://git.kernel.org/linus/9144a761bf167d6e0ed827e5816e2ba68b2fc2f0|commit]], [[https://git.kernel.org/linus/016e95b1473798f1e755a9e20f81391119ae7399|commit]], [[https://git.kernel.org/linus/ea6806346080098b68674b933e76a76f0a49a79f|commit]], [[https://git.kernel.org/linus/af25277b1ddc6c65879247387d127c38c51ba9f0|commit]], [[https://git.kernel.org/linus/8dc33b7c995e3e08087053b79cf919fba61e3669|commit]], [[https://git.kernel.org/linus/f16a9d76a71df5038fc8e6dae44caa1e5e76b041|commit]], [[https://git.kernel.org/linus/6b367741e01430947f66ad863bfc1e57ad42b7bc|commit]], [[https://git.kernel.org/linus/da4950b5911197813e62b2347caf3bd525cb35a2|commit]], [[https://git.kernel.org/linus/0234e0033e62c1043b602e699580c843c4457486|commit]], [[https://git.kernel.org/linus/de8f20afb00469c4fc0bb4191cdef7a95c2f847e|commit]], [[https://git.kernel.org/linus/bcb5bb59b83642bb242aaf6b018bebb1325a50ba|commit]], [[https://git.kernel.org/linus/e39951f8ad500648b9ab132f8042d6e47da441cf|commit]] * simple-mfd-i2c: Add Delta TN48M CPLD support [[https://git.kernel.org/linus/d0cac2434c8ecd4863e082d976f5db9405d14b80|commit]] * qnap-mcu: Add driver data for TS133 variant [[https://git.kernel.org/linus/a212772791d7bb44440d60485bd1102fbedb0bb1|commit]] == Inter-Integrated Circuit (I2C + I3C) == * dw-i3c: Enable support for dw-i3c controller NACK retry sysfs and DAT restore fix [[https://lore.kernel.org/lkml/cover.1765529948.git.adrianhoyin.ng@altera.com/T/|(cover)]], [[https://git.kernel.org/linus/b58f47eb392680d4c6626c8b3b1fcf6412a0a02c|commit]], [[https://git.kernel.org/linus/ec17f14309481318df4af2a0c7f2aa7da9e7ebcb|commit]], [[https://git.kernel.org/linus/4cd9d2bf0b56f98347ca1046e4d8acea95bd7ffa|commit]], [[https://git.kernel.org/linus/de28e002df2e2d44138174a158883e703e216a06|commit]] * mipi-i3c-hci-pci: Add Runtime PM support [[https://lore.kernel.org/lkml/20260113072702.16268-1-adrian.hunter@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/78f63ae4a82db173f93adca462e63d11ba06b126|commit]], [[https://git.kernel.org/linus/8bb96575883d3b201ce37046b3903ea1d2d50bbc|commit]], [[https://git.kernel.org/linus/f0775157b9f9a28ae3eabc8d05b0bc52e8056c80|commit]], [[https://git.kernel.org/linus/471895799c2f46688792e175ced936ffeb6cdf01|commit]], [[https://git.kernel.org/linus/f64c1a46ea7c40bbab57a0cb1665a1c1e11da6af|commit]], [[https://git.kernel.org/linus/11d17c2855bfc04550557017eae02e92f3eeab1c|commit]], [[https://git.kernel.org/linus/29bf98a6346ad7a80136ba58116c2a0f8a3cb03f|commit]], [[https://git.kernel.org/linus/a372cfac056abb555d6c70c08af548aea0ab5cde|commit]], [[https://git.kernel.org/linus/f180524a4877329bca4285e36f1fad63b70577ea|commit]], [[https://git.kernel.org/linus/f5401c973e7f08cdd921c62079ac2514a9b69397|commit]], [[https://git.kernel.org/linus/8169587204431ce23df9522c2e859b5238934c42|commit]], [[https://git.kernel.org/linus/ca4d4682d353bf4e7e5db7b025e9ecd80bc67b27|commit]], [[https://git.kernel.org/linus/8afa0dd83b608a344b967dc1ef1b4f282662416d|commit]], [[https://git.kernel.org/linus/57a2f976ac18b909e43cca51a63be26cbd62ab88|commit]], [[https://git.kernel.org/linus/e4269df518d62527ff6a8f3cd4740d754c4257cd|commit]], [[https://git.kernel.org/linus/7f91e0e6aa3f1e6e461dd5f95b5bcc3567abfa51|commit]], [[https://git.kernel.org/linus/f2b5d43c93e0a642f7bba970dbc5a24c9605ecd3|commit]], [[https://git.kernel.org/linus/3c3de6803a7d90faba0387ba248ac71e627ca827|commit]], [[https://git.kernel.org/linus/990c149c61ee45da4fb6372e6b2fdd9808414e7a|commit]], [[https://git.kernel.org/linus/b9a15012a14520b2b006ecb770f32eb9a57d4b8b|commit]], [[https://git.kernel.org/linus/95cb1935168ab8f637bd0bf64b9ec6f5667d1d8e|commit]] * mipi-i3c-hci-pci: Add System Suspend support [[https://lore.kernel.org/lkml/20260123063325.8210-1-adrian.hunter@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/c481ef12e713fb7c292d04f53b3532ac0804ab3d|commit]], [[https://git.kernel.org/linus/c3357bdd9be9cd9e34e46fe100e1d425503d4acf|commit]], [[https://git.kernel.org/linus/4280197d154cae1d1d5acb54484da26da04eac32|commit]] * mipi-i3c-hci-pci: Define Multi-Bus Instances for Intel controllers [[https://lore.kernel.org/lkml/20260106164416.67074-1-adrian.hunter@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/840688d8e65cc6b0d1ac1aa01b9374ae56ff3dfc|commit]], [[https://git.kernel.org/linus/0818e4aa8fdeeed5973e0a8faeddc9da599fc897|commit]], [[https://git.kernel.org/linus/581d5b7953b8f24d2f379c8c56ceaa7d163488ce|commit]], [[https://git.kernel.org/linus/d540d090be8fd2be2dc2b1e0b2818a4a48abcc3e|commit]], [[https://git.kernel.org/linus/b43181b724e8b98f1c42d44db8f3c132a932773e|commit]], [[https://git.kernel.org/linus/35c0bfe8fd1066c61420b076e7bcd3cfa54b9d92|commit]], [[https://git.kernel.org/linus/b8460480f62e16751876a1f367dc14fb62867463|commit]], [[https://git.kernel.org/linus/9a4d56b42ff019bbff1e3d0940ebfd3e292326fa|commit]], [[https://git.kernel.org/linus/0590fe32f9040bccb5481915b32bba1595946b16|commit]], [[https://git.kernel.org/linus/9b1679028e760259eaf817b8ceecad9b03a60118|commit]], [[https://git.kernel.org/linus/540a55a5bafd0ddbeb87672fe569c15954b47038|commit]] * designware: Improve support of multi-messages transfer [[https://lore.kernel.org/linux-i2c/20260120-i2c-dw-v5-0-0e34d6d9455c@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/2b110445b1dfdef34ea7c42c27ddc2ba1bee5753|commit]], [[https://git.kernel.org/linus/ea032b451134e5cc79ed1affc9a237ce5bdda9ed|commit]], [[https://git.kernel.org/linus/6a28174326289834c6767bdeb1ba348aa9831e91|commit]], [[https://git.kernel.org/linus/470f1a71e60cf94202c66c96a658944b58beac45|commit]], [[https://git.kernel.org/linus/4a5aa00980131c2de520e6fe3fae9b8fe16f93a5|commit]], [[https://git.kernel.org/linus/5600722460880a16343484fbf5f90b02ff644719|commit]] * spacemit: add reset support [[https://git.kernel.org/linus/308b0f239e8d6754b8b903d279e5b5b987e257ac|commit]] * Updates for tegra264 and tegra256 [[https://lore.kernel.org/lkml/20251118140620.549-1-akhilrajeev@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/b53232fd220ad5ecc29b1cb4d4e1355365bc5026|commit]], [[https://git.kernel.org/linus/8b80b61e6f4fea1fab4f48ed6af2d9b8946f8049|commit]], [[https://git.kernel.org/linus/81d4c5350f0148543bd4541a6d1fb06d9c835aeb|commit]], [[https://git.kernel.org/linus/978b3ccbbac326cc5fe48c98a0440bdc79d9fd93|commit]], [[https://git.kernel.org/linus/6077cfd716fbd4d1f2a3702e49ae8bf65c072685|commit]], [[https://git.kernel.org/linus/1ac9e16dd226a26a479c7392c9ec28f1c9eec61c|commit]] * k1: add reset support [[https://git.kernel.org/linus/b96259551b337225bb0e7afb3452b98435dd8b81|commit]] == Hardware monitoring (hwmon) == * coretemp: Add !TjMax for Silvermont through Tremont Atoms [[https://git.kernel.org/linus/bcd5120ad454c7c5824de1869dc76d62abe8dd0c|commit]] * dell-smm: Add support for Dell !OptiPlex 7080 [[https://git.kernel.org/linus/46c3e87a79179454f741f797c274dd25f5c6125e|commit]] * f71882fg: Add F81968 support [[https://git.kernel.org/linus/e4a3d6f79c9933fece64368168c46d6cf5fc2e52|commit]] * nct6775: Add ASUS Pro WS WRX90E-SAGE SE [[https://git.kernel.org/linus/246167b17c14e8a5142368ac6457e81622055e0a|commit]] * sht3x: add support for sht85 [[https://git.kernel.org/linus/1fe80112e4a151d3184a702412b7be0bcd819dab|commit]] * tmp108: Add support for !P3T1035 and !P3T2030 [[https://git.kernel.org/linus/9f3f040f7b4a662e726008ace659aecc0a1b94ee|commit]], [[https://git.kernel.org/linus/72037c41283479f1d93ff005befe4603b83983b0|commit]], [[https://git.kernel.org/linus/51521432e94b9baec8792db8089d7ac255ae51bc|commit]] * asus-ec-sensors: add vrm temperature for pro ws wrx90e-sage se [[https://git.kernel.org/linus/194e725cc792322f9e140d0f62c2ff4077f94efc|commit]] * asus-ec-sensors: add rog maximus x hero [[https://git.kernel.org/linus/7da5daed35a995530001aece286663932da7f8ae|commit]] * asus-ec-sensors: add Pro WS TRX50-SAGE WIFI A [[https://git.kernel.org/linus/af7e57d444141ac9e77b57296d59c3e965c4c4fa|commit]] * cros_ec: fan target and temperature thresholds [[https://lore.kernel.org/linux-kernel/20260118-cros_ec-hwmon-pwm-v2-0-77eb1709b031@weissschuh.net/T/|(cover)]], [[https://git.kernel.org/linus/18ccf48656e010838075fd00caa6d93d3f95d106|commit]], [[https://git.kernel.org/linus/bd7a455aee3b98aaa36f7d71c66c7a823a6131a0|commit]], [[https://git.kernel.org/linus/11c5802d28dd71fffb4df0720eafe840a953dc92|commit]], [[https://git.kernel.org/linus/afa7c56ec447315ab38182bb9c185d8ea712c3ad|commit]] * gpd-fan: add support for micro pc 2 [[https://git.kernel.org/linus/13bf63b9314034d54b521d83ad6a04142695d1a0|commit]] * nct6683: add customer id for asrock z590 taichi [[https://git.kernel.org/linus/c0fa7879c9850bd4597740a79d4fac5ebfcf69cc|commit]] * pmbus: add mp5926 driver [[https://git.kernel.org/linus/ca2cf35544926dd668b28f63a5babb8dc36a26d6|commit]] * Add support for hitron hac300s psu [[https://lore.kernel.org/devicetree/20260119190806.35276-1-vassilisamir@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/438921da7b795018d832b40955d47a42d0d53e4d|commit]], [[https://git.kernel.org/linus/669cf162f7a133099c7dc5db96f8283c98e73f1d|commit]] * pmbus: add support for STEF48H28 [[https://git.kernel.org/linus/418a1828caf318113c82069355aab2c7b6d4f544|commit]], [[https://git.kernel.org/linus/64824861ebd77706e58017c84292753dfc8f2d0c|commit]] == General Purpose I/O (gpio) == * Add gpio-line-mux [[https://lore.kernel.org/linux-gpio/20251227180134.1262138-1-jelonek.jonas@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/2a7618ba8698874e9871a8ec5453e0068e94d9e5|commit]], [[https://git.kernel.org/linus/2b03d9a40cd1fea42fd65d2b66df80edc0f374c8|commit]] * cadence: Add Axiado AX3000 support and edge interrupts [[https://lore.kernel.org/linux-gpio/20260109-axiado-ax3000-cadence-gpio-support-v2-0-fc1e28edf68a@axiado.com/T/|(cover)]], [[https://git.kernel.org/linus/ea5b4c68e097412f2d3ca13314b672837718a446|commit]], [[https://git.kernel.org/linus/43f37d44f2b8a75a896e218bac1e43d75063f8d3|commit]] * Add aspeed g7 sgpio support [[https://lore.kernel.org/linux-gpio/20260123-upstream_sgpio-v2-0-69cfd1631400@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/e18533b023ec7a33488bcf33140ce69bbba2894f|commit]], [[https://git.kernel.org/linus/5928e0d1f66112b49869c83ed8f1cc9db3df69e5|commit]], [[https://git.kernel.org/linus/a3d37e0cccf530a1bad377b3503d6af757f532c4|commit]], [[https://git.kernel.org/linus/43090d6993341b977ca66f4c72e776e99f7ba996|commit]], [[https://git.kernel.org/linus/149470018e678b8fd62225c01be67ce2f9b5b1f2|commit]], [[https://git.kernel.org/linus/274ea0f1687a849ded4f92d10e4c0e77f37740c9|commit]] * spacemit: add gpio support for K3 SoC [[https://lore.kernel.org/linux-gpio/20260106-02-k3-gpio-v3-0-4800c214810b@gentoo.org/T/|(cover)]], [[https://git.kernel.org/linus/48033e4c677be4e3f131df454d44a5d1fb1b334f|commit]], [[https://git.kernel.org/linus/da64eb51595bc6073b2fb69c2a3859bba93ed75a|commit]] * pca953x: Add support for TCAL6408 TCAL6416 [[https://lore.kernel.org/linux-gpio/20251216-wip-jremmet-tcal6416rtw-v2-0-6516d98a9836@phytec.de/T/|(cover)]], [[https://git.kernel.org/linus/d19c36134fe14647873af5569329489502c174b9|commit]], [[https://git.kernel.org/linus/9b5f506ff6c11e82574e7f6aa763c92ddb3afc57|commit]], [[https://git.kernel.org/linus/a30a9cb9bca4296d25f253619883e7013b6be158|commit]] * Support rohm bd72720 pmic [[https://lore.kernel.org/linux-leds/cover.1764241265.git.mazziesaccount@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4d08b3634fe824409e75696635fb27204b8d4720|commit]], [[https://git.kernel.org/linus/dc74d1107f1506176c1f4f32dbef0417f3e678e1|commit]], [[https://git.kernel.org/linus/a43309745a5ff3682f6a3d02459729824b5221e1|commit]], [[https://git.kernel.org/linus/16056396b7709b0ee33d88329e9a41166bc8d6a0|commit]], [[https://git.kernel.org/linus/e816df1d3714d20c21a4fcdf3a5193ba12394642|commit]], [[https://git.kernel.org/linus/9144a761bf167d6e0ed827e5816e2ba68b2fc2f0|commit]], [[https://git.kernel.org/linus/016e95b1473798f1e755a9e20f81391119ae7399|commit]], [[https://git.kernel.org/linus/ea6806346080098b68674b933e76a76f0a49a79f|commit]], [[https://git.kernel.org/linus/af25277b1ddc6c65879247387d127c38c51ba9f0|commit]], [[https://git.kernel.org/linus/8dc33b7c995e3e08087053b79cf919fba61e3669|commit]], [[https://git.kernel.org/linus/f16a9d76a71df5038fc8e6dae44caa1e5e76b041|commit]], [[https://git.kernel.org/linus/6b367741e01430947f66ad863bfc1e57ad42b7bc|commit]], [[https://git.kernel.org/linus/da4950b5911197813e62b2347caf3bd525cb35a2|commit]], [[https://git.kernel.org/linus/0234e0033e62c1043b602e699580c843c4457486|commit]], [[https://git.kernel.org/linus/de8f20afb00469c4fc0bb4191cdef7a95c2f847e|commit]], [[https://git.kernel.org/linus/bcb5bb59b83642bb242aaf6b018bebb1325a50ba|commit]], [[https://git.kernel.org/linus/e39951f8ad500648b9ab132f8042d6e47da441cf|commit]] == Leds == * Add new led driver for ti lp5812 [[https://lore.kernel.org/linux-leds/20260115161013.40706-1-trannamatk@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a0309dc699bc6434e3d269539e346f91f17036b8|commit]], [[https://git.kernel.org/linus/444bb79e8964eeced6f896ee2541368c34d82694|commit]] * Support for osram as3668 led driver [[https://lore.kernel.org/linux-leds/20260118165010.902086-1-linux@timmermann.space/T/|(cover)]], [[https://git.kernel.org/linus/9339608652a26541e946ce2b435e273dbc3f02f6|commit]], [[https://git.kernel.org/linus/c7dd343a37567e650c263d4c068418b0bb82bf79|commit]] * is31f132xx: add support for is31fl3293 [[https://lore.kernel.org/linux-leds/20251219154521.643312-1-daniel@zonque.org/T/|(cover)]], [[https://git.kernel.org/linus/a26ace8d8a620837c838d038e3301222bc9f7144|commit]], [[https://git.kernel.org/linus/6f1bc4534f2144c8b1acc448b3c4441a6096095c|commit]], [[https://git.kernel.org/linus/a18983b95a61b093847b3ec37a5ac9c29ff6257d|commit]] == DMA engines == * idxd: Add basic DSA 3.0 capability and SGL support [[https://lore.kernel.org/dmaengine/20250821085111.1430076-1-yi.sun@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/8308510b93650dcd83a7c6b9753dec1f90ca3e0c|commit]], [[https://git.kernel.org/linus/fe7b87d908da33326fbf6fe2b3830426432ec66c|commit]] * mediatek: mtk-uart-apdma: Add support for Dimensity 6300 [[https://git.kernel.org/linus/391e20f21cfdee2f55f2274e83b37c03199062ea|commit]] * xilinx_dma: Add support for residue on direct AXIDMA S2MM [[https://git.kernel.org/linus/5c9142a8063f71233b25d94ae0d73e7dcf9d2a1d|commit]] == Cryptography hardware acceleration == * Hisilicon/trng: support tfms sharing the device [[https://git.kernel.org/linus/3d3135057ff567d5c09fff4c9ef6391a684e8042|commit]] * Hisilicon/zip: add lz4 algorithm for hisi_zip [[https://git.kernel.org/linus/ea377793f41989e425498f50ec0c76c70567c1ae|commit]] * zynqmp-aes-gcm: aes-gcm support for Versal [[https://lore.kernel.org/lkml/20251220155905.346790-1-h.jain@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/c15291e2278ea930ca47a034780f002bee1e1b4f|commit]], [[https://git.kernel.org/linus/c7a768f57de0ebd7a9149d1dab1dadb9c5409d5f|commit]], [[https://git.kernel.org/linus/465d7831261965248a7a1484bd186066d29427f0|commit]], [[https://git.kernel.org/linus/2de468529f270d0696738ca7d0252a57aa31b191|commit]], [[https://git.kernel.org/linus/75578e5c2040b52af89005b9116dfd0f9ae462c1|commit]], [[https://git.kernel.org/linus/349f0d326d7c9262ac7644cb624ccbcbedd917f9|commit]], [[https://git.kernel.org/linus/f939b88c7ca56cd307e351cef1683756835a7193|commit]], [[https://git.kernel.org/linus/0d120a39b9de5a2d9d9e3fb83db672825d5a798a|commit]], [[https://git.kernel.org/linus/43f0478672c3239cd10fd460ae84ba2b3f55dc07|commit]], [[https://git.kernel.org/linus/56934489a80a74a067d9129f025c81d1ebf267a4|commit]], [[https://git.kernel.org/linus/c315cb0005bed288e1db58f52ccd60ec189302d7|commit]], [[https://git.kernel.org/linus/e9f6870bb753b11b325f7d7839b4be6956d448d9|commit]], [[https://git.kernel.org/linus/856f0619252debaf0b15a12cab14f93e73180d90|commit]], [[https://git.kernel.org/linus/280bfc3eb5d3f3199f888197462e7da7e9914160|commit]] * Hisilicon - add fallback function for hisilicon accelerater driver [[https://lore.kernel.org/linux-kernel/20251218134452.1125469-1-huangchenghai2@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/19c2475ce1984cf675ebfbbeaa5509b2fb1887d6|commit]], [[https://git.kernel.org/linus/08eb67d23e5172a5d1e60f1f0acccee569fe10ba|commit]], [[https://git.kernel.org/linus/3a1984758197f7fd4c557dd98090e8e0cf9f498e|commit]], [[https://git.kernel.org/linus/21452eaa06edb5f6038720e643aed0bbfffad9c3|commit]], [[https://git.kernel.org/linus/8cd9b608ee8dea78cac3f373bd5e3b3de2755d46|commit]], [[https://git.kernel.org/linus/72f3bbebff15e87171271d643ee2672fb8e92031|commit]], [[https://git.kernel.org/linus/4705489742fdc294fe3de7bd9855432fb3cfe3cd|commit]], [[https://git.kernel.org/linus/2a75decec1193c2fca1833d7f740796a72b925f1|commit]], [[https://git.kernel.org/linus/73398f85a430cfebc2ff06ab836d6d9eb1484c79|commit]], [[https://git.kernel.org/linus/6aff4d977e2d582c5d6ff6afd5646c1a459490fa|commit]], [[https://git.kernel.org/linus/e7507439628052363500d717caffb5c2241854dc|commit]] == PCI == * Intel: Support for Nova Lake [[https://lore.kernel.org/linux-sound/20260120193507.14019-1-peter.ujfalusi@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/b190870e0e0cfb375c0d4da02761c32083f3644d|commit]], [[https://git.kernel.org/linus/1800bcdc68ead7209451085431d80aa95ea7cd03|commit]], [[https://git.kernel.org/linus/eece72a0d4093e17ae71ad739fe0cdb56bb9ba98|commit]], [[https://git.kernel.org/linus/9c3af1b2f73cc72f5035bc9372c18b3780e1f258|commit]] * Add acs quirk for qualcomm hamoa & glymur [[https://git.kernel.org/linus/44d2f70b1fd72c339c72983fcffa181beae3e113|commit]] * endpoint: BAR subrange mapping support [[https://lore.kernel.org/linux-omap/20260124145012.2794108-1-den@valinux.co.jp/T/|(cover)]], [[https://git.kernel.org/linus/06a81c5940e46cc7bddee28f16bdd29a12a76344|commit]], [[https://git.kernel.org/linus/31fb95400451040050361e22ff480476964280f0|commit]], [[https://git.kernel.org/linus/c0f1506f63546308e894469ceb0f1fadbdf9d2f9|commit]], [[https://git.kernel.org/linus/cc839bef7727043a66004bba563492957ca3e531|commit]], [[https://git.kernel.org/linus/dd3ce1667a99d3ecfb1ad3b619140350796e01c0|commit]], [[https://git.kernel.org/linus/6c5e6101423b0dbda417d92d1552a4e2c669a76c|commit]], [[https://git.kernel.org/linus/8cf82bb558517503a81f8e3c49914c0836360aa6|commit]], [[https://git.kernel.org/linus/c17b9046faf7d1f3b8bb992e4d53da873dc478fc|commit]] * Enable msi affinity support for dwc pci [[https://lore.kernel.org/linux-pci/20251128212055.1409093-1-rrendec@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/fcc1d0dabdb65ca069f77e5b76d3b20277be4a15|commit]], [[https://git.kernel.org/linus/f1875091a01dd634ff5f8b6fc57ab874f755c415|commit]], [[https://git.kernel.org/linus/eaf290c404f7c39f23292e9ce83b8b5b51ab598a|commit]] * Add firmware-managed pcie endpoint support for sa8255p [[https://lore.kernel.org/linux-arm-msm/20260106-firmware_managed_ep-v5-0-1933432127ec@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/20165a8ac68ff375e4955b3f9fda0404229131bd|commit]], [[https://git.kernel.org/linus/5b026a9e714d33bb61f6041b9e1bffa2dcc66ff6|commit]] * pwrctrl: Major rework to integrate pwrctrl devices with controller drivers [[https://lore.kernel.org/linux-pci/20260115-pci-pwrctrl-rework-v5-0-9d26da3ce903@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/2ba7c7bd2b0e22cca9a21e243a88bf407e7d0260|commit]], [[https://git.kernel.org/linus/e40d16e6c23994b28894179b87f9747edd63062a|commit]], [[https://git.kernel.org/linus/99ee5837c63d1000f9ce7508591486a7bd8bdedb|commit]], [[https://git.kernel.org/linus/dc534bdc388b72de3038f2c104fdbfc5428967ac|commit]], [[https://git.kernel.org/linus/c105a3ed6167b6776076a6d3d046568121d2f14b|commit]], [[https://git.kernel.org/linus/370d2de0fb65ed954c0b6375e36d0fa12c9323be|commit]], [[https://git.kernel.org/linus/0afc90ced0955d1ad2b65379e6771e4fb19ce769|commit]], [[https://git.kernel.org/linus/2045c352812e5a2eec0aa9d2b1e5d2fe1127b919|commit]], [[https://git.kernel.org/linus/113f44ed50d274447a3b76cf250989a423f179a5|commit]], [[https://git.kernel.org/linus/4c413248920106393b35b5e014e6ac525405437e|commit]], [[https://git.kernel.org/linus/b35cf3b6aa1eb08909f58c2d1e2f8ef7d000809a|commit]], [[https://git.kernel.org/linus/b921aa3f8decae440009134d65399ee9b2425300|commit]], [[https://git.kernel.org/linus/58614046254f5a82a23a02b6e8893282cca6a8fe|commit]], [[https://git.kernel.org/linus/54786d9806b2720659b4fc64af0ebde148780229|commit]], [[https://git.kernel.org/linus/8d8db7dbf2181052dc2e8813737ef31d136e4dbd|commit]] * pwrctrl: Add PCIe M.2 connector support [[https://git.kernel.org/linus/9cb64f61ec7a9034299807b1e562413329ddac5b|commit]] * Add aspeed pcie root complex support [[https://lore.kernel.org/linux-pci/SEYPR06MB513404EB419B7850159F3CC29D84A@SEYPR06MB5134.apcprd06.prod.outlook.com/T/|(cover)]], [[https://git.kernel.org/linus/a20df1a7683d6c1416c0f56fb737554b9abe9959|commit]], [[https://git.kernel.org/linus/73ce5ba701a53ad89c623a641401288844f526ac|commit]], [[https://git.kernel.org/linus/9aa0cb68fcc16280c8c8bdd22dc770af8dd7349f|commit]], [[https://git.kernel.org/linus/e5c2061442dda716fb08cc4eff485220c94e6475|commit]] * dwc: ep: Enhance multi-function endpoint support [[https://lore.kernel.org/linux-pci/20260130115516.515082-1-a-garg7@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/43d67ec26b329f8aea34ba9dff23d69b84a8e564|commit]], [[https://git.kernel.org/linus/72cb5ed2a5c6d87f71a409347f7d3b228fee6bee|commit]] == Non-Transparent Bridge (NTB) == * ntb_transport: Add 'tx_memcpy_offload' module option [[https://git.kernel.org/linus/322617a06c97153f7b0681ecaa55490abccff7fa|commit]] * intel: Add Intel Gen6 NTB support for !DiamondRapids [[https://git.kernel.org/linus/4921811678e93a83cbfebc14814a165ae794bf1d|commit]] == Clock == * Add video reset to aspeed-clk [[https://lore.kernel.org/lkml/20251003015845.2715538-1-jammy_huang@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/2ad2d0e291ac6f4ffc66dce11c09ccc6dd968a9b|commit]], [[https://git.kernel.org/linus/5f35b48a0daa799ee6346f7b6b4fe433d6565280|commit]] * Add support for ast2700 clk driver [[https://lore.kernel.org/linux-kernel/20251224-upstream_clk-v16-0-8c1318f56c3c@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/03b3faa12c25140d00f9dca4ed44a6184600d9d8|commit]], [[https://git.kernel.org/linus/122c157c4808f79bfe2d1786b59479fead43ad92|commit]], [[https://git.kernel.org/linus/fdc1eb624ddc2876079ce30218eed971b7953280|commit]] * Support rohm bd72720 pmic [[https://lore.kernel.org/linux-leds/cover.1764241265.git.mazziesaccount@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4d08b3634fe824409e75696635fb27204b8d4720|commit]], [[https://git.kernel.org/linus/dc74d1107f1506176c1f4f32dbef0417f3e678e1|commit]], [[https://git.kernel.org/linus/a43309745a5ff3682f6a3d02459729824b5221e1|commit]], [[https://git.kernel.org/linus/16056396b7709b0ee33d88329e9a41166bc8d6a0|commit]], [[https://git.kernel.org/linus/e816df1d3714d20c21a4fcdf3a5193ba12394642|commit]], [[https://git.kernel.org/linus/9144a761bf167d6e0ed827e5816e2ba68b2fc2f0|commit]], [[https://git.kernel.org/linus/016e95b1473798f1e755a9e20f81391119ae7399|commit]], [[https://git.kernel.org/linus/ea6806346080098b68674b933e76a76f0a49a79f|commit]], [[https://git.kernel.org/linus/af25277b1ddc6c65879247387d127c38c51ba9f0|commit]], [[https://git.kernel.org/linus/8dc33b7c995e3e08087053b79cf919fba61e3669|commit]], [[https://git.kernel.org/linus/f16a9d76a71df5038fc8e6dae44caa1e5e76b041|commit]], [[https://git.kernel.org/linus/6b367741e01430947f66ad863bfc1e57ad42b7bc|commit]], [[https://git.kernel.org/linus/da4950b5911197813e62b2347caf3bd525cb35a2|commit]], [[https://git.kernel.org/linus/0234e0033e62c1043b602e699580c843c4457486|commit]], [[https://git.kernel.org/linus/de8f20afb00469c4fc0bb4191cdef7a95c2f847e|commit]], [[https://git.kernel.org/linus/bcb5bb59b83642bb242aaf6b018bebb1325a50ba|commit]], [[https://git.kernel.org/linus/e39951f8ad500648b9ab132f8042d6e47da441cf|commit]] * Add more pll frequencies to i.mx fracn gpll [[https://lore.kernel.org/linux-clk/20260113-v6-18-topic-clk-fracn-gppll-v3-0-45da70f43c98@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/9bb910b049402b7a3496250c9c6ab169aed83d15|commit]], [[https://git.kernel.org/linus/3e6b0227b93c708e93e33f6c3485bad077650766|commit]] * Add support for t7 family clock controller [[https://lore.kernel.org/devicetree/20251212022619.3072132-1-jian.hu@amlogic.com/T/|(cover)]], [[https://git.kernel.org/linus/5437753728ac40a0410f3a4c6c471d0ab9919ceb|commit]], [[https://git.kernel.org/linus/f5d473e96fe0ae46a2da79c96b3623b3be37b5a0|commit]], [[https://git.kernel.org/linus/b4156204e0f5d66e5943d9836e42d01d6e5e12fb|commit]], [[https://git.kernel.org/linus/140f074c312702a1837136e024f5df1309e37251|commit]], [[https://git.kernel.org/linus/fab4d651b592b3ebc836e410ae27b8b832a5bff2|commit]] * Add support for clock controllers for kaanapali [[https://lore.kernel.org/linux-arm-msm/20251209-gcc_kaanapali-v3-v5-0-3af118262289@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/3dadc1dc5e85cefc7a2f1c9d428b5622fda12d3d|commit]], [[https://git.kernel.org/linus/acabfd13859dfa343aa5289f7c2d55fddbaf346f|commit]], [[https://git.kernel.org/linus/e5682c953f5a9fbaad060ea000beff80f11c4048|commit]], [[https://git.kernel.org/linus/d1919c375f211a2aeef898496b6f3efbefebf7f5|commit]] * Add support for multimedia clock controllers for kaanapali [[https://lore.kernel.org/linux-arm-msm/20260107-kaanapali-mmcc-v3-v3-0-8e10adc236a8@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/0f85ef379064b50ad573c6af4c0ffd39673f6968|commit]], [[https://git.kernel.org/linus/6d3e77facbce8e684321d9ba65137a76f2575372|commit]], [[https://git.kernel.org/linus/a419f7bfb714703b9c12fab387b60cb0e0f7ec47|commit]], [[https://git.kernel.org/linus/322aad122ce3eebd70e5c07f62cf9081919a30ca|commit]], [[https://git.kernel.org/linus/9d566b0431d3d5b9c588eb000dbee5138e6a31cd|commit]], [[https://git.kernel.org/linus/e043131550c4e1f35bf959a35c30c223b6ff5602|commit]], [[https://git.kernel.org/linus/ecc3adefa72748845c63d32e97c56f65560f30ad|commit]], [[https://git.kernel.org/linus/6c6750b7061ca5b12deaeb246439b5b64a84f9c1|commit]], [[https://git.kernel.org/linus/92aae35f667cd62359f5938e3259dc72e080e28c|commit]], [[https://git.kernel.org/linus/a4ceaf4b18dd4310c17852efbf880e1c5cd5dc36|commit]], [[https://git.kernel.org/linus/685ec348339b118bec728458d0bc3b3e7da1ef0d|commit]] * Add global clock controller for msm8940 and sdm439 [[https://lore.kernel.org/linux-arm-msm/20251117-gcc-msm8940-sdm439-v2-0-4af57c8bc7eb@mainlining.org/T/|(cover)]], [[https://git.kernel.org/linus/d88d5bedb502eed6f439838b1e6148942a9232b7|commit]], [[https://git.kernel.org/linus/b97a6150050c7274d72a349afe017fb1fed34799|commit]], [[https://git.kernel.org/linus/7a5a8a67c06ecba23d547a57d9fd317f628e1790|commit]], [[https://git.kernel.org/linus/a6df111d55ffea7926fc7b136f96f16b314ad362|commit]] * renesas: r9a09g056: Add entries for the RSPIs [[https://git.kernel.org/linus/d8921e42a1983024227c0e64253ea96b25a1ae9a|commit]] * renesas: r9a09g077: Add CANFD clocks [[https://git.kernel.org/linus/535677e920f09c6e478e671e4527ff9af6ffc6c7|commit]] * Implement hardware automatic clock gating (hwacg) for gs101 [[https://lore.kernel.org/devicetree/20251222-automatic-clocks-v7-0-fec86fa89874@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/2e8e9a2492edbbef54de6ab1c5bf1578ffef4c8c|commit]], [[https://git.kernel.org/linus/01272f05aae5f6aca4337eb52e6b9290ce12e9f7|commit]], [[https://git.kernel.org/linus/298fac4f4b96448ce7ef8da525a74fd3dba0035d|commit]], [[https://git.kernel.org/linus/eaf9206bf3d68f792ecd5e6f488eab1fb5afe900|commit]] * Add clock support for cmu_m2m [[https://lore.kernel.org/linux-samsung-soc/20250915095401.3699849-1-raghav.s@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/4914c17a76047ccbde24397cf9d406558183d756|commit]], [[https://git.kernel.org/linus/ac5d829873c737edae220ee654e423d383163630|commit]], [[https://git.kernel.org/linus/7b0ccabb873de4b4dec3214b2a0ee3c32c326101|commit]] * Add support for display process unit (dpu) clocks [[https://lore.kernel.org/linux-samsung-soc/20260113-dpu-clocks-v3-0-cb85424f2c72@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/3a2741fa31385348c5b501bdcbab6f6d7b4628ac|commit]], [[https://git.kernel.org/linus/52300cd894b3167d6206e266e341a089e87124b9|commit]], [[https://git.kernel.org/linus/1d8fae6617b6ebcaf3ef3040ee84cdde25d5d10f|commit]], [[https://git.kernel.org/linus/4b18a3ef2230e38439c9c3a0e3fa4a2b5edcc5cd|commit]], [[https://git.kernel.org/linus/024d8f4aa35970c4563c6ef0c4170133719b2103|commit]] * Add clock support for spacemit k3 soc [[https://lore.kernel.org/linux-clk/20260108-k3-clk-v5-0-42a11b74ad58@gentoo.org/T/|(cover)]], [[https://git.kernel.org/linus/efe897b557e211a09f51d749eae5eca933e8bf56|commit]], [[https://git.kernel.org/linus/ace73b7e27633ec770cfb24cd4ff42c24815a9aa|commit]], [[https://git.kernel.org/linus/3a086236c600739d6653c0405d86aff7d6f03c06|commit]], [[https://git.kernel.org/linus/091d19cc24018f2bd783e932fb2403cb7a2bdb3c|commit]], [[https://git.kernel.org/linus/e371a77255b837f5d64c9d2520f87e41ea5350b9|commit]] == PHY ("physical layer" framework) == * Add google tensor soc usb phy support [[https://lore.kernel.org/devicetree/20251227-phyb4-v10-0-e8caf6b93fe7@google.com/T/|(cover)]], [[https://git.kernel.org/linus/876dc58c3fa532e38cd1b287a7b8143a1a4c5dc7|commit]], [[https://git.kernel.org/linus/cbce66669c82ee9ae0e26523c0fcd3c721fcfe85|commit]] * Apple silicon type-c phy [[https://lore.kernel.org/linux-kernel/20251214-b4-atcphy-v3-0-ba82b20e9459@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/a722de305eacb382a5d306f9f8e502f81bab682d|commit]], [[https://git.kernel.org/linus/c1538b87caef6b2783502c820457be092a7266be|commit]], [[https://git.kernel.org/linus/8e98ca1e74db2ae051c9b545d42b879efa5a2f6c|commit]] * Torrent: Enable PCIe + XAUI multilink configuration [[https://lore.kernel.org/linux-kernel/20260112054636.108027-1-s-vadapalli@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/a632a2a0db8b4d24076a03889efa25c6058d0746|commit]], [[https://git.kernel.org/linus/02cf3710c55d55d956f080e6610b841e2b6ddca0|commit]] * Initial usbdrd phy support for exynosautov920 soc [[https://lore.kernel.org/devicetree/20251124110453.2887437-1-pritam.sutar@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/28810c0dfe8aa82e6514858bdcd7a83f0848e90a|commit]], [[https://git.kernel.org/linus/031314bd37cb6ce352b1300ffd4e07a7bebce1ef|commit]], [[https://git.kernel.org/linus/fc58d4628396e4ae2791ff2396793d04940348e1|commit]], [[https://git.kernel.org/linus/22a401c9a2e1e27a136088e4291bec49869cecf5|commit]], [[https://git.kernel.org/linus/05681c9c7e59c164d7e1fc34696f3130d088bc64|commit]], [[https://git.kernel.org/linus/2fdfc1bb752e393561cf532f5d54607d70e464bc|commit]] * Enable ufs support on milos [[https://lore.kernel.org/phone-devel/20260112-milos-ufs-v2-0-d3ce4f61f030@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/85faec1e8555596e24e2556e5790dd6b3948a321|commit]], [[https://git.kernel.org/linus/ed0a26aa453b6ec7faec32ddb4fb3d4360e1676c|commit]], [[https://git.kernel.org/linus/3554ded4f02aa8e95af66911aa666b2cd192022d|commit]] * qcom: edp: Add support for Glymur platform [[https://lore.kernel.org/linux-arm-msm/20251211-phy-qcom-edp-add-glymur-support-v6-0-5be5b32762b5@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8f97b9b34f0d26339e8b0d26c2f466eeb188939b|commit]], [[https://git.kernel.org/linus/2d472a675ced00397440caed78168db5fdecf3a3|commit]], [[https://git.kernel.org/linus/212cdedcac11c411d0e7c277e1cdcac5f1a20ba2|commit]], [[https://git.kernel.org/linus/add66a6673bc4aacd0ef0f3c4a51271501770b17|commit]] * qcom: qmp-combo: Add polarity inversion support for SAR2130P [[https://git.kernel.org/linus/24991bfbbd84d68d5710e1563752047914db941a|commit]] * qcom: qmp-pcie: Add support for Glymur PCIe Gen4x2 PHY [[https://lore.kernel.org/linux-arm-msm/20251224-phy-qcom-pcie-add-glymur-v3-0-57396145bc22@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/25671c37821006392ff8c66e980475747bee4cde|commit]], [[https://git.kernel.org/linus/085ba7c91df34e05366f9fecc9fa7a037598c30e|commit]] * Add displayport support for qcs615 platform [[https://lore.kernel.org/linux-arm-msm/20251215-add-displayport-support-for-qcs615-platform-v8-0-cbc72c88a44e@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/70f12a4cc6a04869b2185be999e3849a6c17439f|commit]], [[https://git.kernel.org/linus/9f5f6083b3bd74c7d25737241e32821adb294e14|commit]], [[https://git.kernel.org/linus/0599a4b9ee13b10820fa71f058bef8cc6f06b0b6|commit]], [[https://git.kernel.org/linus/3b19374825676e0b548b808772f5ecbe8af4f9da|commit]], [[https://git.kernel.org/linus/5b2dd08459ad1f61dc7037032a5230c0efd9d797|commit]], [[https://git.kernel.org/linus/049e708e7705534a9992b24c5090d133c8efbca6|commit]], [[https://git.kernel.org/linus/cb2255822509c9dcdd1fad0cd167032dee7dc6c1|commit]], [[https://git.kernel.org/linus/9ab26cb7e652f3cdfb3d59fb42907c0229f2a93f|commit]], [[https://git.kernel.org/linus/f3198fde573be23de1a8196bc5ebb0abe9c7e02f|commit]], [[https://git.kernel.org/linus/8e7670f7465d46bfa72980b310d39491a3a944d6|commit]], [[https://git.kernel.org/linus/c1282d5f85857d72cf947add3f14240fd82da261|commit]], [[https://git.kernel.org/linus/81791c45c8e0eaeba9a40927eecd082a8500f709|commit]] * Introduce glymur usb support [[https://lore.kernel.org/linux-arm-msm/20251209-linux-next-12825-v8-0-42133596bda0@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/2fe80ea29f46332eaf76d8435326e68197bcc9bb|commit]], [[https://git.kernel.org/linus/1c0b4539fc6d7cbe352cc12deef8a21d655f9804|commit]], [[https://git.kernel.org/linus/0278bbd30f7c326740fdcbc3039ce42d7d921cf8|commit]], [[https://git.kernel.org/linus/18da99126ebce8d8ebc1ee0b84fe983faa138451|commit]], [[https://git.kernel.org/linus/851dd2c9e91f2da1a60050265507a11aa24c767c|commit]], [[https://git.kernel.org/linus/7dbba9fb560f35bdf1eb44035f793e3b7f2cdcdb|commit]], [[https://git.kernel.org/linus/c9543cca9417d83f8ca6a8ce0a5279a3fba7a02b|commit]], [[https://git.kernel.org/linus/5b289913959b9bc93bab9e0beeab269c33c969b7|commit]], [[https://git.kernel.org/linus/d10736db98d25c97bdffacaca69ae0a8d7ca64e3|commit]] * Add usb2.0 support for rz/g3e [[https://lore.kernel.org/linux-renesas-soc/cover.1766405010.git.tommaso.merciai.xr@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/274038b82f413a754ffc6fbdb771a3ac62d1bb4b|commit]], [[https://git.kernel.org/linus/cd597ce6460dc01f30f0f4158bbf20624c33c594|commit]], [[https://git.kernel.org/linus/642c462854bf1f20e4d61a06e880c1b73bf6e542|commit]], [[https://git.kernel.org/linus/d6db3b3af74a26b65d1ec1e86f9738c784e7ae29|commit]], [[https://git.kernel.org/linus/230c817a1601af3ac2c9fdf3fbde9a3fee6bd26c|commit]], [[https://git.kernel.org/linus/b6d7dd157763e0c8937f60241fb4af9eb546a7fb|commit]], [[https://git.kernel.org/linus/8bb92fd7a04077925c8330f46a6ab44c80ca59f4|commit]], [[https://git.kernel.org/linus/8ccfe3ac901af9d4539f8ccc91b62f3a34a4ad9c|commit]] * Add hdmi 2.1 frl support to phy-rockchip-samsung-hdptx [[https://lore.kernel.org/linux-kernel/20260113-phy-hdptx-frl-v6-0-8d5f97419c0b@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/41c6cac6decd5123db1da8ca240a9c808b0ae6ce|commit]], [[https://git.kernel.org/linus/0ef8dd1034e3656e40d020911bb7aa14e7084663|commit]], [[https://git.kernel.org/linus/4f310f180373bd0e68311debee7a0dddb14c1656|commit]], [[https://git.kernel.org/linus/925f26a4f8c65e5686e1820f0bdc7e0a237edba7|commit]], [[https://git.kernel.org/linus/8e8aa072b19d0d16afbfd690c8e50628176db3ef|commit]], [[https://git.kernel.org/linus/df74a964e4354e65fefef60c9c50765ff32cd26e|commit]], [[https://git.kernel.org/linus/3481fc04d969bc1528c2d1f7c02443a9fccf1a83|commit]], [[https://git.kernel.org/linus/66d76b6d958d7ca195c8b3f43828b12a206fb731|commit]], [[https://git.kernel.org/linus/ac079c1207e492924237fdfb12c93664265b2e23|commit]], [[https://git.kernel.org/linus/b14fec4dbda301d61603c047277b4f447837b3e3|commit]], [[https://git.kernel.org/linus/de5dba83311842cf208735b37bea84073688d470|commit]] * Add usb2.0 phy support for spacemit k1 [[https://lore.kernel.org/devicetree/20251017-k1-usb2phy-v6-0-7cf9ea2477a1@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/61b84d5b20af2a4c9944972202c1386026598928|commit]], [[https://git.kernel.org/linus/fe4bc1a08638309b6be1af37210930b856908eb7|commit]] == EDAC (Error Detection And Correction) == * Add two intel amston lake socs support [[https://lore.kernel.org/linux-edac/20251219042956.3232568-1-qiuxu.zhuo@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/41ca2155d62b0b0d217f59e1bce18362d0c2446f|commit]], [[https://git.kernel.org/linus/4b720906efa34e1f68e3b2f7061c294e1889525b|commit]] * igen6: Add more Intel Panther Lake-H !SoCs support [[https://git.kernel.org/linus/4c36e6106997b6ad8f4a279b4bdbca3ed6f53c6c|commit]] * r82600: Remove this obsolete driver [[https://git.kernel.org/linus/1795dc528c13c4cb731c6db2322d0c995c997fa4|commit]] == Various == * char/mwave: drop it [[https://git.kernel.org/linus/c0fef45dbab06238e96e221f7c0a8fd2d569f7dd|commit]] * dpll: Core improvements and ice e825-c synce support [[https://lore.kernel.org/netdev/20260203174002.705176-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/d0f4771e2befbe8de3a16a564c6bbd1d5502cec3|commit]], [[https://git.kernel.org/linus/e6dc7727b6083a6bb76a5ba874e040034cd33b47|commit]], [[https://git.kernel.org/linus/2be467588d6bc6ec5988fc254e62a44b865912a0|commit]], [[https://git.kernel.org/linus/711696b3e168cea4165e7b7f051f3f442a347430|commit]], [[https://git.kernel.org/linus/fdad05ed4ec23b8de23c0037cea9aedbdc9cd24b|commit]], [[https://git.kernel.org/linus/729f5e0153bda8c0423fb7c5795865b6b77ca050|commit]], [[https://git.kernel.org/linus/3c0da1030c58b0f1ee4d8ef4722466f8ce734a53|commit]], [[https://git.kernel.org/linus/085ca5d2017116ce3102eafa760ee8eb91fb1eeb|commit]], [[https://git.kernel.org/linus/ad1df4f2d591e167bc64b8a7ce6328a2735e3d58|commit]] * dpll: Support mode switching [[https://lore.kernel.org/netdev/20260114122726.120303-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/b1f99cc8863847676d4a7329ffb668a030150d99|commit]], [[https://git.kernel.org/linus/e3f6c65192fe484ab16f0be2b495ceef5ca3b85c|commit]], [[https://git.kernel.org/linus/d6df0dea24d2a44e08207b3b41c965e50bb212c6|commit]] * eeprom: at25: add support for Infineon Cypress QSN FRAMs [[https://git.kernel.org/linus/3fcd9a0fbb7dfbad3caa5057054d21b903157079|commit]] * eeprom: at25: expose JEDEC ID via sysfs [[https://git.kernel.org/linus/62bb2054f9e84ec89c416d4558dbd574c54beddf|commit]] * Add vcp mailbox driver [[https://lore.kernel.org/linux-kernel/20251013063146.17919-1-jjian.zhou@mediatek.com/T/|(cover)]], [[https://git.kernel.org/linus/c2b75a5353aec990bbb8bd53737d39b497a7bdaa|commit]], [[https://git.kernel.org/linus/b562abd956726f57bb78813b4c77db51d28933a9|commit]] * sprd: mask interrupts that are not handled [[https://git.kernel.org/linus/75df94d05fc03fd9d861eaf79ce10fbb7a548bd8|commit]] * host: Add support for loading dual ELF image format [[https://git.kernel.org/linus/820c866c42de99e7d65c7bd1f591f067dbbe3cae|commit]] * Expose the scrub partition hypercall [[https://git.kernel.org/linus/36d6cbb62133fc6eea28f380409e0fb190f3dfbe|commit]] * intel_rapl: Add PL4 support for Ice Lake [[https://git.kernel.org/linus/54b3cd55a515c7c0fcfa0c1f0b10d62c11d64bcc|commit]] * Fix rapl pmu access from non-lead cpus [[https://lore.kernel.org/linux-pm/20260209234310.1440722-1-sathyanarayanan.kuppuswamy@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7537bae8b6eb635583e0e6260f61d13ddbd52087|commit]], [[https://git.kernel.org/linus/525e0064f3d81764277036036932e873608a47af|commit]] * ptp: vmclock: Add VM generation counter and ACPI notification [[https://lore.kernel.org/linux-devicetree/20260130173704.12575-1-itazur@amazon.com/T/|(cover)]], [[https://git.kernel.org/linus/3495064b6d65a669b409cfe1241db4f3c540251a|commit]], [[https://git.kernel.org/linus/3b1526ddb25452385b52f2588b655f524a57070b|commit]], [[https://git.kernel.org/linus/1d5a66045afa68226667b3607654064cb8269f8c|commit]], [[https://git.kernel.org/linus/ddc867d0b5db6f6692a059126f69672e74bf5f02|commit]], [[https://git.kernel.org/linus/ed4d23ed469ca14d47670c0384f6ae6c4ff060a5|commit]], [[https://git.kernel.org/linus/ac1e7404924cb4a1ab2993e64151e2ad2f461ab3|commit]], [[https://git.kernel.org/linus/562f59fe32914a10af8554634866bd0b56257060|commit]] * Peripheral image loader support for qualcomm socs running linux host at el2 [[https://lore.kernel.org/linux-arm-msm/20260105-kvmrprocv10-v10-0-022e96815380@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/ebb0bbef88b3276c01e2d42b71d67c26b4eb938a|commit]], [[https://git.kernel.org/linus/25906ae9b28af23de509cb290a49ddd314f6c432|commit]], [[https://git.kernel.org/linus/69054348cc1c2d87acad90aec5e6e0d191012aff|commit]], [[https://git.kernel.org/linus/ccb7bde5f7cc794dee0cd66fd451cb0e0715712d|commit]], [[https://git.kernel.org/linus/b13d8baf56016e7eec29395b52d18b91df081d48|commit]], [[https://git.kernel.org/linus/8a4fcffde6c860c4e9164cf3530c9d97972781dc|commit]], [[https://git.kernel.org/linus/928dbaaa9d89363d79e309ec00c5527ddfbe47c8|commit]], [[https://git.kernel.org/linus/4a7d6a78fbc6527fb1b61944aab00d9cdd1d4f01|commit]], [[https://git.kernel.org/linus/223a87168030b422dda44c21319122f6328b5867|commit]], [[https://git.kernel.org/linus/b019925838bca1599fa443b34c8ed5876f14f144|commit]], [[https://git.kernel.org/linus/8b9d2050cfa0c22c05622df103e366933fc045ed|commit]], [[https://git.kernel.org/linus/a4584bff63c8aba994c8cbccc36748226f8f4b21|commit]], [[https://git.kernel.org/linus/5c720260e840b508053dd5338577e0175ef31739|commit]] * Add support for i.mx8ulp's sim lpav [[https://lore.kernel.org/linux-kernel/20260126162203.708-1-laurentiumihalcea111@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/212212062f981fe2c98d235ee008201a6dd36c28|commit]], [[https://git.kernel.org/linus/6d6818abec260e506ea5978df920430f54deb70a|commit]], [[https://git.kernel.org/linus/cc3b1245cd64b1bb73204e9d697e812ea76e266d|commit]], [[https://git.kernel.org/linus/5aac7afc752be03bad2ed4d5074c62b3e4d9179f|commit]] * spacemit: Add support for SpacemiT K3 SoC [[https://lore.kernel.org/linux-kernel/20260120-k3-reset-v3-0-effe87f4bdbe@riscstar.com/T/|(cover)]], [[https://git.kernel.org/linus/216e0a5e98e5f0f02a818884e8acf340892cecae|commit]], [[https://git.kernel.org/linus/2875b4b5d2657ff2fd979103d88e9afcae51481c|commit]], [[https://git.kernel.org/linus/aba86f7bff0bfd6956aff9bbbfb0c6ea6d56809e|commit]], [[https://git.kernel.org/linus/938ce3b16582657e67f3bd8a7efa59089c467c90|commit]] * !MediaTek: Add support for multi-bus [[https://lore.kernel.org/linux-kernel/20251024083247.25814-1-angelogioacchino.delregno@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/5abb6c7aca41d827320113b6865f56d2038a4f2c|commit]], [[https://git.kernel.org/linus/078117963b2c678921c86f2485b0d5baf5b86131|commit]], [[https://git.kernel.org/linus/63cbabb003ba314be113700ca58ec320b6ce2b33|commit]], [[https://git.kernel.org/linus/ab1b3469fc284ad8c7b28f881329448786bdc252|commit]], [[https://git.kernel.org/linus/1f5be2d7f743e5ffc6317af50276ca5508ddb5ec|commit]] * spmi-pmic-arb: Add support for PMIC arbiter v8 for Glymur and Kaanapali [[https://lore.kernel.org/linux-arm-msm/20251126-pmic_arb_v8-v5-0-4dd8dc5dc5a1@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/e9ae440c97e8f68cd7ce1dde47c04a36d8792bf0|commit]], [[https://git.kernel.org/linus/0914498171b9a0acc742cd4289134c418eabf095|commit]], [[https://git.kernel.org/linus/815be38ad8c8503cec8b2c0c632e975692ab42e1|commit]] * mailbox: mtk-cmdq: Add driver data to support for MT8196 [[https://git.kernel.org/linus/5ea617e818333a2078dadc11e5734886e39901d0|commit]] * mailbox: sprd: add support for mailbox revision 2 [[https://git.kernel.org/linus/c6ff944003cf1b7be9ef5c9d868a42114bc6e867|commit]] * cxl: Acpi prm address translation support and amd zen5 enablement [[https://lore.kernel.org/linux-cxl/20260114164837.1076338-1-rrichter@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/df8b57c34b47e0acbe1133ca58ac75ec3c56771f|commit]], [[https://git.kernel.org/linus/4fe82279580d10ba63c1461ff404f2c6c82ff1d5|commit]], [[https://git.kernel.org/linus/98ceb1a42dab91c6dcf95d1d424cba61b0f9bc5c|commit]], [[https://git.kernel.org/linus/3e422caa40d0d4bf25ece6e82418ce642d56524a|commit]], [[https://git.kernel.org/linus/bc01fd5019faa14f4253de6f6abcae6d957c3a12|commit]], [[https://git.kernel.org/linus/1fd6c38fc5e18a9904bc1bd447bb4c2708f0292d|commit]], [[https://git.kernel.org/linus/d01149bbe76d81d360ed24853d5247fcaad873e4|commit]], [[https://git.kernel.org/linus/a31af41115b0f7021a86f5439cb8720b93314f91|commit]], [[https://git.kernel.org/linus/7be03eae1fdb690dff8f102a7306ca61b55a810c|commit]], [[https://git.kernel.org/linus/af74daf91652f15b82560bb93850d2ec8bbfa976|commit]], [[https://git.kernel.org/linus/a2e794895089c1356b7687e8df1fa7d224d40bb6|commit]], [[https://git.kernel.org/linus/d1c9ba46d6c36ff8d5b5f83ae28eae4132e46988|commit]], [[https://git.kernel.org/linus/208f432406b7ed446c061d68cc73efd85b575d3f|commit]] * Enable msi affinity support for dwc pci [[https://lore.kernel.org/linux-pci/20251128212055.1409093-1-rrendec@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/fcc1d0dabdb65ca069f77e5b76d3b20277be4a15|commit]], [[https://git.kernel.org/linus/f1875091a01dd634ff5f8b6fc57ab874f755c415|commit]], [[https://git.kernel.org/linus/eaf290c404f7c39f23292e9ce83b8b5b51ab598a|commit]] * pci: add config space read/write support [[https://lore.kernel.org/rust-for-linux/20260121202212.4438-1-zhiw@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/7043698aee6b6f61415ebb49b7e95fdfb9373a77|commit]], [[https://git.kernel.org/linus/121d87b28e1d9061d3aaa156c43a627d3cb5e620|commit]], [[https://git.kernel.org/linus/5981d03c27a14df1c03e10570eeb1ab26e9709f7|commit]], [[https://git.kernel.org/linus/4dc0bacb1d3c4722cbd002c4aab6bd458d30d869|commit]], [[https://git.kernel.org/linus/e62e48adf76cc4432c6d749a940da8649f8cb5a7|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/5b785b83c2414f2e09927ab6c8b82e3985081dc6|auxdisplay updates]] * [[https://git.kernel.org/torvalds/c/7d726a34d68597899a43001dd2bc1aeac7801008|kunit updates]] * [[https://git.kernel.org/torvalds/c/5c40222af1689d89966c4b60e79852d6bc13416a|kselftest updates]] * [[https://git.kernel.org/torvalds/c/ef852baaf6a73551cfaa0d082477b50d842b79b8|RCU updates]] * [[https://git.kernel.org/torvalds/c/2f81bdbdb3aa3fccd9b5420df5674730c40af554|i3c updates]] * [[https://git.kernel.org/torvalds/c/37b4fbf8dbdfb694f2972d1bd7fcd36304a520dd|tpm updates]] * [[https://git.kernel.org/torvalds/c/698749164aa53cc313248efd2dc1c25dcf25c99c|audit updates]] * [[https://git.kernel.org/torvalds/c/bcc8fd3e1573c502edc0cb61abea0e113a761799|lsm updates]] * [[https://git.kernel.org/torvalds/c/6252e917b9006dfa2f3d884fe0dbaf3e676c4108|selinux updates]] * [[https://git.kernel.org/torvalds/c/4b6c6bc6fab51684cc129f91211734f87db6b065|vfs rust updates]] * [[https://git.kernel.org/torvalds/c/996812c453cafa042f2e674738dbf8fa495661f3|vfs initrd removal]] * [[https://git.kernel.org/torvalds/c/74554251dfc9374ebf1a9dfc54d6745d56bb9265|vfs timestamp updates]] * [[https://git.kernel.org/torvalds/c/aa2a0fcd4c7b9801be32482755a450a80a3c36a2|vfs lease updates]] * [[https://git.kernel.org/torvalds/c/dd466ea0029961ee0ee6e8e468faa1506275c8a9|vfs error reporting updates]] * [[https://git.kernel.org/torvalds/c/6124fa45e2d919eeb9fc2d6675f5824b44e344b0|vfs updates for btrfs]] * [[https://git.kernel.org/torvalds/c/7e01a69f5c4f2a6af2d4cd1cc46d48efdeb98230|minix update]] * [[https://git.kernel.org/torvalds/c/c84bb79f70c634a95929f21c14340ab2078d7977|vfs nullfs update]] * [[https://git.kernel.org/torvalds/c/8113b3998d5c96aca885b967e6aa47e428ebc632|vfs atomic_open updates]] * [[https://git.kernel.org/torvalds/c/157d3d6efd5a58466d90be3a134f9667486fe6f9|vfs mount updates]] * [[https://git.kernel.org/torvalds/c/3304b3fedddfb1357c7f9e25526b5a7899ee1f13|vfs iomap updates]] * [[https://git.kernel.org/torvalds/c/9e355113f02be17db573d579515dee63621b7c8b|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/8912c2fd5830e976c0deaeb0b2a458ce6b4718c7|btrfs updates]] * [[https://git.kernel.org/torvalds/c/d10a88ce1651578c0948fbf26d7aaff298b486b2|nilfs2 updates]] * [[https://git.kernel.org/torvalds/c/4fb7d86fbef0e294f4bb6bc46930c5789d332dc7|hfs/hfsplus updates]] * [[https://git.kernel.org/torvalds/c/3893854000a81897a1a332ec50931f74761fbf71|erofs updates]] * [[https://git.kernel.org/torvalds/c/56feb532bb927ae1c26726e2e7c0de95f54a3d67|xfs updates]] * [[https://git.kernel.org/torvalds/c/7141433fbed290f4dd42008d3102db2363275035|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/af23fd93fcb27a19764759c9238ef0bf5bd8370f|dlm updates]] * [[https://git.kernel.org/torvalds/c/8a5203c630c67d578975ff237413f5e0b5000af8|smb client updates]] * [[https://git.kernel.org/torvalds/c/26c9342bb761e463774a64fb6210b4f95f5bc035|vfs 'struct filename' updates]] * [[https://git.kernel.org/torvalds/c/f5d4feed174ce9fb3c42886a3c36038fd5a43e25|io_uring updates]] * [[https://git.kernel.org/torvalds/c/591beb0e3a03258ef9c01893a5209845799a7c33|io_uring bpf filters]] * [[https://git.kernel.org/torvalds/c/0c00ed308d0559fc216be0442a3df124e9e13533|block updates]] * [[https://git.kernel.org/torvalds/c/4adc13ed7c281c16152a700e47b65d17de07321a|bounce buffer dio for stable pages]] * [[https://git.kernel.org/torvalds/c/d84e173311c4f0b0300755e6445f3224d252eeed|ACPI updates]] * [[https://git.kernel.org/torvalds/c/9b1b3dcd28c271fc8c4a87e81860f3a34b6d29b7|power management updates]] * [[https://git.kernel.org/torvalds/c/0506158ac7363a70f0deb49f71d26ccb57e55990|thermal control updates]] * [[https://git.kernel.org/torvalds/c/d16738a4e79e55b2c3c9ff4fb7b74a4a24723515|kthread updates]] * [[https://git.kernel.org/torvalds/c/861ea34546dcde8600878d5e7f746795f22fc818|nolibc updates]] * [[https://git.kernel.org/torvalds/c/c48953d81972bfe16a9e3551883992aa6efe541a|s390 updates]] * [[https://git.kernel.org/torvalds/c/b33c3b84045e880d8a7596f260860038c71cf393|m68k updates]] * [[https://git.kernel.org/torvalds/c/7e3a1e0cccbf6d9bcc05e2710f53a480639cf81d|sparc updates]] * [[https://git.kernel.org/torvalds/c/9f722cb7304f63d8be7164c15ebc278f54d14357|alpha update]] * [[https://git.kernel.org/torvalds/c/45bf4bc87c46856c5cf4ac39a0c25c83ccbf3209|arm64 updates]] * [[https://git.kernel.org/torvalds/c/33120a2f8fc47f388506b7df1209bd5ac85dd584|xen updates]] * [[https://git.kernel.org/torvalds/c/0c61526621ec1916527d6f6226d8a466340cca22|EFI updates]] * [[https://git.kernel.org/torvalds/c/72c395024dac5e215136cbff793455f065603b06|documentation updates]] * [[https://git.kernel.org/torvalds/c/13d83ea9d81ddcb08b46377dcc9de6e5df1248d1|crypto library updates]] * [[https://git.kernel.org/torvalds/c/08df88fa142f3ba298bf0f7840fa9187e2fb5956|crypto update]] * [[https://git.kernel.org/torvalds/c/eecb03b0f9b209e8947e11ab4d8898d801a2d5fa|execve update]] * [[https://git.kernel.org/torvalds/c/bffce9b427b37e2f54416a695ec5d7f030ba610f|pstore updates]] * [[https://git.kernel.org/torvalds/c/85f24b0ace9aa79142f632fc3ccc730a8d2a4a28|hardening updates]] * [[https://git.kernel.org/torvalds/c/958f7fb68c6be4e2d9dcb5bf31bfe746f6744aa3|kmalloc_obj updates]] * [[https://git.kernel.org/torvalds/c/b63c90720348578631cda74285958c3ad3169ce9|keys update]] * [[https://git.kernel.org/torvalds/c/a7423e6ea2f8f6f453de79213c26f7a36c86d9a2|module updates]] * [[https://git.kernel.org/torvalds/c/f17b474e36647c23801ef8fdaf2255ab66dd2973|bpf updates]] * [[https://git.kernel.org/torvalds/c/f144367d012929326f15a399394a9a8be4f98acb|bitmap updates]] * [[https://git.kernel.org/torvalds/c/a9aabb3b839aba094ed80861054993785c61462c|rust updates]] * [[https://git.kernel.org/torvalds/c/4d84667627c4ff70826b349c449bbaf63b9af4e5|performance event updates]] * [[https://git.kernel.org/torvalds/c/0923fd0419a1a2c8846e15deacac11b619e996d9|locking updates]] * [[https://git.kernel.org/torvalds/c/36ae1c45b2cede43ab2fc679b450060bbf119f1b|scheduler updates]] * [[https://git.kernel.org/torvalds/c/5668a64622cf238ea954ea71cf2bed60967dba16|x86/boot updates]] * [[https://git.kernel.org/torvalds/c/3516cadc70a742ab2a08b17d3176d242945bd12d|x86 APIC update]] * [[https://git.kernel.org/torvalds/c/b490d2a83f5daf0c2c928a3efa865bae8e705cf8|x86 cpu updates]] * [[https://git.kernel.org/torvalds/c/a4d963b9d6eead4cbd4b702832acf2921189a692|x86 platform update]] * [[https://git.kernel.org/torvalds/c/4e21e585b65b2d47f7ccb95120e7bb37a08d7d0e|irq cleanups]] * [[https://git.kernel.org/torvalds/c/66bbe4a8ed73f1187a4271c58f0ea30f42debe0d|irq core updates]] * [[https://git.kernel.org/torvalds/c/dc855b77719fe452d670cae2cf64da1eb51f16cc|irq chip driver updates]] * [[https://git.kernel.org/torvalds/c/3381d7b2b3dd012d366b9ba9339f98d54bea69fd|MSI updates]] * [[https://git.kernel.org/torvalds/c/48295ab42dae91b6903221adf1c316f08ffa5e09|clocksource updates]] * [[https://git.kernel.org/torvalds/c/353a7e8a69058591c3ec40028063af798b698559|timer core updates]] * [[https://git.kernel.org/torvalds/c/f1c538ca8100776c089b4a682202bea1332a8cb3|VDSO updates]] * [[https://git.kernel.org/torvalds/c/2619c62b7ef2f463bcbbb34af122689c09855c23|x86 irq updates]] * [[https://git.kernel.org/torvalds/c/14c357c4add8b2a213f291230c5bf485cffb9db6|EDAC updates]] * [[https://git.kernel.org/torvalds/c/d1953aa3bc92379be10b10b3bcceba1550bfbf6a|x86 alternatives update]] * [[https://git.kernel.org/torvalds/c/75b2a603671f9b649abe6b8e0d7662ea8c9f3c51|x86 bug documentation update]] * [[https://git.kernel.org/torvalds/c/dcb49710189d104d4edc07709615748dab61341b|x86 resource control updates]] * [[https://git.kernel.org/torvalds/c/9fbb4810404a02e0081d43d5c6b0b4c9057e15d6|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/8cbd0d2b61b3c7b1068c3d97266c25d0b7f63469|x86 microcode loader update]] * [[https://git.kernel.org/torvalds/c/57cb845067e0bf5d42af6bc570190bba3238660e|x86 paravirt updates]] * [[https://git.kernel.org/torvalds/c/ca8f421ea0d3f1d39f773e14f68f93c978e470ef|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/6f7e6393d1ce636bb7ec77a7fe7b77458fddf701|x86 entry code updates]] * [[https://git.kernel.org/torvalds/c/45a1b8cc6c0690d82f176ec9c3ca8ad0aa050511|misc x86 updates]] * [[https://git.kernel.org/torvalds/c/2b398c05625a158e24da00887bbba284e9dab0b0|asm-generic header updates]] * [[https://git.kernel.org/torvalds/c/f7fae9b4d38f0c52489640c9688e529c4a58e1b6|SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/bdbddf72a2ab1cfea699959795d70df3931eefe7|SoC driver updates]] * [[https://git.kernel.org/torvalds/c/60dc45dde44e0b5c433d8db574daf86b59eb6dc3|arm platform SoC code updates]] * [[https://git.kernel.org/torvalds/c/6589b3d76db2d6adbf8f2084c303fb24252a0dc6|SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/8ad8d24d962804d3c54b5b7542c4cb7cd6bacb3b|parisc updates]] * [[https://git.kernel.org/torvalds/c/192c0159402e6bfbe13de6f8379546943297783d|powerpc updates]] * [[https://git.kernel.org/torvalds/c/be653d2d1f435218cf4b7abad96b42a20ce28451|chrome platform updates]] * [[https://git.kernel.org/torvalds/c/d5cbd9f332c70be9589201474b9477baf9b5a24d|regmap updates]] * [[https://git.kernel.org/torvalds/c/f6c42489fedfa42ba79bd17c49cf81c69ff39f8a|regulator updates]] * [[https://git.kernel.org/torvalds/c/e86dda7bde8801d32ffe7d1570fe173cab14d1ba|spi updates]] * [[https://git.kernel.org/torvalds/c/c371f62da7982ff4f19484a131db7a255538ad00|pwm updates]] * [[https://git.kernel.org/torvalds/c/893ace4df0f96b8ad066651453e0519d4ffe35ca|power sequencing updates]] * [[https://git.kernel.org/torvalds/c/d70178215211a7c73ecabeb55eeb0f8ef002bcab|gpio updates]] * [[https://git.kernel.org/torvalds/c/532355a756103639816068b89f73cc7789b16275|hwmon updates]] * [[https://git.kernel.org/torvalds/c/a31980dba7b957df21fd99d158dd0be516825676|HID updates]] * [[https://git.kernel.org/torvalds/c/0d6dd4738dbcc32b60c0c0c1388d41e171b76845|firewire updates]] * [[https://git.kernel.org/torvalds/c/d061251387903e8502843ac983553f0b2e098ef8|sound updates]] * [[https://git.kernel.org/torvalds/c/b7ef56a07672e0d7ebe71c9d9b45f959f0c2f8e8|media updates]] * [[https://git.kernel.org/torvalds/c/939faf71cf7ca9ab3d1bd2912ac0e203d4d7156a|drm updates]] * [[https://git.kernel.org/torvalds/c/9bdc64892dcce732d55b2c07d80b36a6c3e1b5f4|workqueue updates]] * [[https://git.kernel.org/torvalds/c/ff661eeee26038f15ed9dd33c91809632e11d9eb|cgroup updates]] * [[https://git.kernel.org/torvalds/c/38ef046544aad88de3b520f38fa3eed2c44dc0a8|sched_ext updates]] * [[https://git.kernel.org/torvalds/c/41f1a08645abb5ef7d2a3ed8835c747334878774|Kbuild/Kconfig updates]] * [[https://git.kernel.org/torvalds/c/148f95f75c513936d466bcc7e6bf73298da2212b|slab updates]] * [[https://git.kernel.org/torvalds/c/db9571a66156bfbc0273e66e5c77923869bda547|printk updates]] * [[https://git.kernel.org/torvalds/c/146fa666d89f233b87f1cdc7b9bce34c61b45cbd|smack updates]] * [[https://git.kernel.org/torvalds/c/d0e91e401e31959154b6518c29d130b1973e3785|integrity updates]] * [[https://git.kernel.org/torvalds/c/c22e26bd0906e9c8325462993f01adb16b8ea2c0|landlock updates]] * [[https://git.kernel.org/torvalds/c/1e0ea4dff0f46a3575b6882941dc7331c232d72c|iommu updates]] * [[https://git.kernel.org/torvalds/c/61e629596fabd7f60cc3748a603703c5d9b58428|device mapper updates]] * [[https://git.kernel.org/torvalds/c/1c2b4a4c2bcb950f182eeeb33d94b565607608cf|PCI updates]] * [[https://git.kernel.org/torvalds/c/c6e62d002b7f0613f02d8707c80f2a7bd66808a0|driver core updates]] * [[https://git.kernel.org/torvalds/c/098b6e44cbaa2d526d06af90c862d13fb414a0ec|devicetree updates]] * [[https://git.kernel.org/torvalds/c/37a93dd5c49b5fda807fd204edf2547c3493319c|networking updates]] * [[https://git.kernel.org/torvalds/c/2831fa8b8bcf1083f9526aa0c41fafb0796cf874|nfsd updates]] * [[https://git.kernel.org/torvalds/c/d53f4d93f3d686fd64513abb3977c9116bbfdaf8|smb server and smbdirect updates]] * [[https://git.kernel.org/torvalds/c/cf559d9011140087abf84b34871849ee8e305bca|orangefs updates]] * [[https://git.kernel.org/torvalds/c/178574549e421755dbe1e4721e20ca6c10af4900|jfs updates]] * [[https://git.kernel.org/torvalds/c/5903c871e21498405d11c5699d06becd12acda24|ext4 updates]] * [[https://git.kernel.org/torvalds/c/997f9640c9238b991b6c8abf5420b37bbba5d867|fsverity updates]] * [[https://git.kernel.org/torvalds/c/a8ed22870f5304a6ac64f694572cafc12801a9cf|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/541c43310e85dbf35368b43b720c6724bc8ad8ec|quota and isofs updates]] * [[https://git.kernel.org/torvalds/c/4cff5c05e076d2ee4e34122aa956b84a2eaac587|MM updates]] * [[https://git.kernel.org/torvalds/c/136114e0abf03005e182d75761ab694648e6d388|non-MM updates]] * [[https://git.kernel.org/torvalds/c/8c0901b6f9c807a6aa33dccedc548bf10c17a85c|configfs updates]] * [[https://git.kernel.org/torvalds/c/a67594c977234b0ad6887202740e9e8b9821473a|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/f75c03a761b737c4ee94c17f154967261f00ab4d|runtime verifier updates]] * [[https://git.kernel.org/torvalds/c/582a1ef360a05bff4350bbf6e383f61d26b804f0|RTLA updates]] * [[https://git.kernel.org/torvalds/c/e99785a923d585174a71ea9c081bee708184862e|libnvdimm updates]] * [[https://git.kernel.org/torvalds/c/041c16acbafbdd8c089cc077c78e060322dde18c|io_uring large rx buffer support]] * [[https://git.kernel.org/torvalds/c/d4a379a52c3c2dc44366c4f6722c063a7d0de179|SCSI updates]] * [[https://git.kernel.org/torvalds/c/cebcffe666cc82e68842e27852a019ca54072cb7|VFIO updates]] * [[https://git.kernel.org/torvalds/c/e812928be2ee1c2744adf20ed04e0ce1e2fc5c13|CXL updates]] * [[https://git.kernel.org/torvalds/c/311aa68319f6a3d64a1e6d940d885830c7acba4c|rdma updates]] * [[https://git.kernel.org/torvalds/c/2c75a8d92cf173113d1e43a41cb472cd93561bf8|ATA updates]] * [[https://git.kernel.org/torvalds/c/7449f86bafcdb588422bb14a4babfd285e723670|NFS client updates]] * [[https://git.kernel.org/torvalds/c/7563f7e0e9fc79c41b2aea045a87b8de942fd616|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/cee73b1e840c154f64ace682cb477c1ae2e29cc4|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/c87c79345ea8ff917354e9223d44034e4aef2690|UML updates]] * [[https://git.kernel.org/torvalds/c/cb5573868ea85ddbc74dd9a917acd1e434d21390|KVM updates]] * [[https://git.kernel.org/torvalds/c/a353e7260b5951a62dce43630ae9265accd96a4b|virtio updates]] * [[https://git.kernel.org/torvalds/c/44331bd6a6107a33f8082521b227ffa4ec063a40|MM fixes]] * [[https://git.kernel.org/torvalds/c/72f05009d804c7ec92459da94ccc9ccb77686950|dma-mapping update]] * [[https://git.kernel.org/torvalds/c/1b49e363252632d0493546511a41a65ed1a6fbbb|MTD updates]] * [[https://git.kernel.org/torvalds/c/f50822fd8675c68d294e89bd102f7b487ca3acd3|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/3c6e577d5ae705edebed9882ff474d7a48a47dd2|tracing updates]] * [[https://git.kernel.org/torvalds/c/770aaedb461a055f79b971d538678942b6607894|bootconfig updates]] * [[https://git.kernel.org/torvalds/c/3e48a11675c50698374d4ac596fb506736eb1c53|f2fs updates]] * [[https://git.kernel.org/torvalds/c/dd530598bc02f9db0ebef644d8e2002aecf0ab15|exfat updates]] * [[https://git.kernel.org/torvalds/c/f0a475aedd190db95cf92914ca7760c06fbdb704|mailbox updates]] * [[https://git.kernel.org/torvalds/c/2bfc50c6e6e67b08770c6ef46660c3ee9c6a1519|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/986d555afd50452909b2fb52c00554419832eac2|rpmsg updates]] * [[https://git.kernel.org/torvalds/c/6179d7a630c2747e2a9329149de2a7aa67a95978|capabilities updates]] * [[https://git.kernel.org/torvalds/c/8b3c75a39cc3cde78332f0e10898104a5e1e2807|fbdev updates]] * [[https://git.kernel.org/torvalds/c/787fe1d43a21d688afac740f92485e9373d19f01|memblock updates]] * [[https://git.kernel.org/torvalds/c/64275e9fda3702bfb5ab3b95f7c2b9b414667164|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/13c916af3abf98f4a2a00b9463d2fc00cc6bc00e|clk updates]] * [[https://git.kernel.org/torvalds/c/348e77b8145676184fb49063d5543e054fd74909|input updates]] * [[https://git.kernel.org/torvalds/c/bb7a3fc2c976b5d0deb35a54ca237519816d7ba9|i2c updates]] * [[https://git.kernel.org/torvalds/c/c4f414becb6ac9c71ea80dd8b28478d357c62bb7|TSM updates]] * [[https://git.kernel.org/torvalds/c/011af61b9f7c9104eae7ad9951456330d950c771|9p updates]] * [[https://git.kernel.org/torvalds/c/26a4cfaff82a2dcb810f6bfd5f4842f9b6046c8a|documentation fixes]] * [[https://git.kernel.org/torvalds/c/0f2acd3148e0ef42bdacbd477f90e8533f96b2ac|m68knommu updates]] * [[https://git.kernel.org/torvalds/c/2d10a488717e1b314d332f05b5966f7c25716a11|kprobes updates]] * [[https://git.kernel.org/torvalds/c/6086f349a30232f3119ec647356cd191087b1333|MIPS updates]] * [[https://git.kernel.org/torvalds/c/46a1daac56b3bf1bdbd8b37e6db811f015bc1f4b|pin control updates]] * [[https://git.kernel.org/torvalds/c/4668c4831fbcb924ef9ce63b32f8a4daefd3d6fc|MFD updates]] * [[https://git.kernel.org/torvalds/c/4bfa4a54b02029b3996b9f9021f5f745c71e9064|backlight updates]] * [[https://git.kernel.org/torvalds/c/2228d9cf7a562d1b0ca86bd529f6acb94f4bb80f|LED updates]] * [[https://git.kernel.org/torvalds/c/57d76ceccee4b497eb835831206b50e72915a501|watchdog updates]] * [[https://git.kernel.org/torvalds/c/543b9b63394ee67ecf5298fe42cbe65b21a16eac|pidfs updates]] * [[https://git.kernel.org/torvalds/c/45a43ac5acc90b8f4835eea92692f620e561a06b|more misc vfs updates]] * [[https://git.kernel.org/torvalds/c/9702969978695d9a699a1f34771580cdbb153b33|more slab updates]] * [[https://git.kernel.org/torvalds/c/7b751b01ade7f666de2f5c365bd9562c2dcd7d60|more io_uring updates]] * [[https://git.kernel.org/torvalds/c/99dfe2d4da67d863ff8f185d1e8033cce28e4c49|more block updates]] * [[https://git.kernel.org/torvalds/c/505d195b0f96fd613a51b13dde37aa5ad301eb32|char/misc/IIO driver updates]] * [[https://git.kernel.org/torvalds/c/a5f22b9b139762685810aa5a41fd0181488aea13|staging driver updates]] * [[https://git.kernel.org/torvalds/c/3ad7945754000d868ed86315d33085a914c422c1|tty / serial driver updates]] * [[https://git.kernel.org/torvalds/c/17f8d2009367c3da82882f70ccbdca9f8c7b5f20|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/d295082ea672e7277388e1cf7c5af73788cf8029|SPDX updates]] * [[https://git.kernel.org/torvalds/c/4e15e819710e3518ec28735a12e0f45b7550290d|soundwire updates]] * [[https://git.kernel.org/torvalds/c/9b725d5959a1d9bb670ccdb23add45f0eaafefb5|phy updates]] * [[https://git.kernel.org/torvalds/c/e81dd54f62c753dd423d1a9b62481a1c599fb975|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/1d22968feb2095136dd5f03aae2832a6b6aa6628|smb client fixes]] * [[https://git.kernel.org/torvalds/c/0ba83f0968f34543e57d4a4eddc0a9d0c8c88627|overlayfs update]] * [[https://git.kernel.org/torvalds/c/87a367f1bffadf1db5def15bd0cd2148acd057ad|ceph updates]] * [[https://git.kernel.org/torvalds/c/75a452d31ba697fc986609dd4905294e07687992|ntfs3 updates]] * [[https://git.kernel.org/torvalds/c/2961f841b025fb234860bac26dfb7fa7cb0fb122|turbostat updates]] * [[https://git.kernel.org/torvalds/c/7ad54bbbc9c512ba3bc90e4368264bcf15c25759|turbostat fix]] * [[https://git.kernel.org/torvalds/c/23b0f90ba871f096474e1c27c3d14f455189d2d9|sysctl updates]] * [[https://git.kernel.org/torvalds/c/c3c1e9853363d247270f9d500cbaa1df8f14d4f9|more power management updates]] * [[https://git.kernel.org/torvalds/c/9a199794fd789c783d34281ac1acde011a7affa8|more ACPI support updates]] * [[https://git.kernel.org/torvalds/c/fa2827e72cfcfac683e2e3ab355a0dbc97d52522|thermal control fix]] * [[https://git.kernel.org/torvalds/c/956b9cbd7f156c8672dac94a00de3c6a0939c692|Kbuild fixes]] * [[https://git.kernel.org/torvalds/c/eeccf287a2a517954b57cf9d733b3cf5d47afa34|more MM updates]] * [[https://git.kernel.org/torvalds/c/2b7a25df823dc7d8f56f8ce7c2d2dac391cea9c2|more non-MM updates]] * [[https://git.kernel.org/torvalds/c/4f13d0dabc87fb585b96d90cc4b29f67a2995405|bpf fixes]] * [[https://git.kernel.org/torvalds/c/8bf22c33e7a172fbc72464f4cc484d23a6b412ba|networking fixes]] * [[https://git.kernel.org/torvalds/c/d31558c077d8be422b65e97974017c030b4bd91a|Hyper-V updates]] * [[https://git.kernel.org/torvalds/c/c8cb804a8add8d6f41b3805441b2ad16e30fbcc0|xen fix]] * [[https://git.kernel.org/torvalds/c/9abf79529f4c4bc43464dcb82bfcc16297f90cc6|Xtensa update]] * [[https://git.kernel.org/torvalds/c/9806790115d1949ee0bd6ef8533293b5a293a1bb|s390 fixes]] * [[https://git.kernel.org/torvalds/c/a27a5c0f08039475e21f3517e1bfe4a05bb82887|arm64 fixes]] * [[https://git.kernel.org/torvalds/c/f283371efd6a0ec1713349cd8c12fa5ffb19c60a|EFI fixes]] * [[https://git.kernel.org/torvalds/c/a95f71ad3e2e224277508e006580c333d0a5fe36|ARM updates]] * [[https://git.kernel.org/torvalds/c/43257b2ebd1f08536e3a8c06e2946af902015162|kmalloc_obj prep]] * [[https://git.kernel.org/torvalds/c/219d7660c57ec7457a6020f3d025cfe1139ffc64|AppArmor updates]] * [[https://git.kernel.org/torvalds/c/233a0c0f4498309f98d98a4b6543fa05a12d9587|ecryptfs updates]] * [[https://git.kernel.org/torvalds/c/b3f1da2a4d851b8e1ccf932e52c6772fe2253a47|btrfs fixes]] * [[https://git.kernel.org/torvalds/c/68010e7b3daf0c2cf91eccb329703e82d1ef5aff|tracing fixes]] * [[https://git.kernel.org/torvalds/c/eee3666c92406fd8e5e3084b0b3129528dfe9557|more fbdev updates]] * [[https://git.kernel.org/torvalds/c/d4a292c5f8e65d2784b703c67179f4f7d0c7846c|drm fixes]] * [[https://git.kernel.org/torvalds/c/bc1d4e705f48f001f3a5480f04067c48bd00bcf0|sound fixes]] * [[https://git.kernel.org/torvalds/c/99e447220b938dfed6488db95a2930b57ea849ba|more i2c updates]] * [[https://git.kernel.org/torvalds/c/7e8d85235677b6571857c26854ad1d4edc64c50c|gpio fixes]] * [[https://git.kernel.org/torvalds/c/433b23a3dad2b9423fc0d415c6d43add73ac7788|dmi update]] * [[https://git.kernel.org/torvalds/c/3f6eb5a6d27b56ea44c2de9f9028d803aeccbfe8|pci fixes]] * [[https://git.kernel.org/torvalds/c/0de6219fd74440199fb0bfc6ce02bb8bdb8e9466|regulator fixes]] * [[https://git.kernel.org/torvalds/c/d79526b89571ae447c1a5cfd3d627efa07098348|spi fixes]] * [[https://git.kernel.org/torvalds/c/8eb604d4ee8bf6183b00b8a96f0007b1be28ca9d|smb server fixes]] * [[https://git.kernel.org/torvalds/c/4cf44657887b4c41374981d0afb2ca302b189e15|sched_ext fixes]] * [[https://git.kernel.org/torvalds/c/817c16e5655958c34035a10c8c4b93e33e529624|memblock fix]] * [[https://git.kernel.org/torvalds/c/f9d66e64a2bcb979d47eb7d67aa7e9b454fd5d15|io_uring fixes]] * [[https://git.kernel.org/torvalds/c/981361604566a28517a518c317943d9b7c392217|NTB (PCIe non-transparent bridge) updates]] * [[https://git.kernel.org/torvalds/c/3544d5ce36f403db6e5c994f526101c870ffe9fe|coccinelle updates]] * [[https://git.kernel.org/torvalds/c/c7decec2f2d2ab0366567f9e30c0e1418cece43f|perf tools updates]] * [[https://git.kernel.org/torvalds/c/8934827db5403eae57d4537114a9ff88b0a8460f|kmalloc_obj conversion]] * [[https://git.kernel.org/torvalds/c/d2ba6e9c0ae54b3d0973e23d8806cd9a16b9faef|runtime verifier fix]] * [[https://git.kernel.org/torvalds/c/1dd419145d090f8fdf149cbb39dea6d968659dd2|rust fixes]] * [[https://git.kernel.org/torvalds/c/5f2eac7767493bf23e6552db82ab25de0dccd54f|RTC updates]] * [[https://git.kernel.org/torvalds/c/75e1f66a9ed09f29c6883ea379c174e8cf31f7cc|crypto library fix]] * [[https://git.kernel.org/torvalds/c/fbf33803618ad4f531f78fe15cf328fe6c7f9978|fsverity fixes]] = Other news sites = * LWN merge window [[https://lwn.net/Articles/1057769/|part 1]], [[https://lwn.net/Articles/1058664/|part 2]] * Phoronix [[https://www.phoronix.com/review/linux-7-features-changes|7.0 feature overview]]