#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 6.5 development cycle Linux 6.5 [[https://lore.kernel.org/lkml/CAHk-=wgmKhCrdrOCjp=5v9NO6C=PJ8ZTZcCXj09piHzsZ7qqmw@mail.gmail.com/t/|was released]] on Sunday, August 27 2023. Summary: This release includes initial USB4 v2 support; support for moving a mount beneath the top mount; a new cachestat(2) system call to get the cache state of files; support for unaccepted memory in virtualized guests; initial support for Scope-based Resource Management and other compiler improvements; {{{memfd_secret(2)}}} has been enabled by default; and support for MIDI 2.0. As always, there are many other features, new drivers, improvements and fixes. <> = Prominent features = == Allow to move mounts beneath top mount == Some modern Linux distributions distribute packages in a way that there is a base distro layer with the usual Linux directories such as {{{/etc}}} or {{{/usr}}}, then users can install packages that provide a "layer" that incorporates content to these directories. Updating one of those packages require incorporating a new mount to user processes, and removing the old. This can be done but it's currently too complex and has some limitations. This release exposes the ability to add a mount beneath the topmost mount of a mount stack through the new {{{MOVE_MOUNT_BENEATH}}} flag for the {{{move_mount(2)}}} system call, then the old mount can be unmounted, and users get either the old or the new mount, but never the ones below. This allows userspace to seamlessly upgrade mounts. For more details, see [[https://lwn.net/Articles/934094/|this]] LWN article, or [[https://lwn.net/Articles/927491/|this one]] Also, see the merge commit explanation [[https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c0a572d9d32fe1e95672f24e860776dba0750a38|this commit]] or == New cachestat(2) system call to get the cache state of files == The only way to query the page cache state of large file sets and directory trees is currently {{{mincore(2)}}}, but it scales poorly. Yet, this information could come in handy: A database could decide whether to perform an index scan or direct table queries based on the in-memory cache state of the index. Performance issues of the writeback algorithms and tuning could be diagnosed. IO fulfilled by page cache (and IO to be done) within a range of a file could be estimated, allowing for more frequent syncing when and where there is IO capacity, and batching when there is not This release includes a {{{cachestat}}} system call that queries cache state of a file and summarizes the number of cached pages, number of dirty pages, number of pages marked for writeback, number of (recently) evicted pages, etc. in a given range. Recommended LWN article: [[https://lwn.net/Articles/917096/|Checking page-cache status with cachestat()]] == Support for unaccepted memory == UEFI Specification version 2.9 introduces the concept of memory acceptance: some Virtual Machine platforms, such as Intel TDX or AMD SEV-SNP, requiring memory to be accepted before it can be used by the guest. Accepting happens via a protocol specific for the Virtual Machine platform. This release adds support for it. Recommended LWN article: [[https://lwn.net/Articles/928328/|Seeking an acceptable unaccepted memory policy]] == Initial support for Scope-based Resource Management and other compiler improvements == This release adds the infrastructure necessary to incorporate some compiler extensions that help to automatically run functions on a variable when its type goes out of scope, which can help to reduce bugs. There is also initial support for the {{{__counted_by}}} macro, which will allow to provide runtime memory bound checking on flexible arrays, and {{{-fstrict-flex-arrays=3}}} is enabled by default, which instructs the compiler to treat only C99 flexible arrays as dynamically sized for the purposes of object size calculation. Recommended LWN article: [[https://lwn.net/Articles/934679/|Scope-based resource management for the kernel]] == Enable secret memory by default == Secret memory and its {{{memfd_secret(2)}}} system call was incorporated in [[https://kernelnewbies.org/Linux_5.14#New_memfd_secret.282.29_system_call_to_create_secret_memory_areas|Linux 5.14]]. It allows to created a special memfd file descriptor whose contents will only be readable by its creator and not any other process, not even root processes or the kernel itself. It can be used to store private keys more securely, for example. Due to concerns about the way it deals with memory management it was disabled by default, and enabled with a parameter. These concerns are not important anymore and the feature can be enabled by default. == Initial USB4 v2 support == This release adds initial support for the next USB4 version (USB4 v2) and the Intel Barlow Ridge discrete controller. It includes support for the 80G symmetric link, the necessary configuration needed to bring up the router in v2 mode, adaptive TMU, PCIe extended encapsulation, and CL2 low power link state. Other releases will include the rest of the USB4 v2 support, including asymmetric 128/80G link support. == MIDI 2.0 support == This release adds support for the 2.0 version of the popular MIDI format. MIDI 2.0 is a complete overhaul of the 40-years old MIDI 1.0. Unlike MIDI 1.0 byte stream, MIDI 2.0 uses packets in 32bit words for Universal MIDI Packet (UMP) protocol It supports both MIDI 1.0 commands for compatibility and the extended MIDI 2.0 commands for higher resolutions and more functions = Core (various) = * (FEATURED) Allow to mount beneath top mount [[https://git.kernel.org/linus/6ac392815628f317fcfdca1a39df00b9cc4ebc8b|commit]], [[https://git.kernel.org/linus/78aa08a8cab6731ab8f8241a9eb0b5021a648dd6|commit]], [[https://git.kernel.org/linus/104026c2e49f39399088dfcd6abf5415b655d6fe|commit]], [[https://git.kernel.org/linus/64f44b27ae9184e13ebbca230fa83da02a10f283|commit]] * Compiler Attributes: Add {{{__counted_by}}} macro. In an effort to annotate all flexible array members with their run-time size information, the "element_count" attribute is being introduced by Clang and GCC in future releases. This annotation will provide the ability to perform run-time bounds checking on otherwise unknown-size flexible arrays [[https://git.kernel.org/linus/dd06e72e68bcb4070ef211be100d2896e236c8fb|commit]] * Introduce cmpxchg128() -- aka. the demise of cmpxchg_double() [[https://git.kernel.org/linus/f413e724818c6482146218b3bcaf3d75b1317fc4|commit]], [[https://git.kernel.org/linus/224d80c584d3016cb8d83d1c33914fdd3508aa8c|commit]], [[https://git.kernel.org/linus/b23e139d0b66c0216e7e9361a5021290395f504c|commit]], [[https://git.kernel.org/linus/8c8b096a23d12fedf3c0f50524f30113ef97aa8c|commit]], [[https://git.kernel.org/linus/6d12c8d308e68b9b0fa98ca2df4f83db4b4c965d|commit]], [[https://git.kernel.org/linus/6801be4f2653e5fdddca73b527cf0728284ba8a3|commit]], [[https://git.kernel.org/linus/febe950dbfb464799beb0339cc6fb10699f4a5da|commit]], [[https://git.kernel.org/linus/497cc42bf53b55185ab3d39c634fbf09eb6681ae|commit]] * eventfd * Add a uapi header for eventfd userspace APIs [[https://git.kernel.org/linus/2d8c9dcf7158060fcec9f891c0292ffdb4397523|commit]] * Show the EFD_SEMAPHORE flag in fdinfo [[https://git.kernel.org/linus/33d8b5d7824c7175ed968b8e89e6db3566e9c177|commit]] * fs.h: Optimize {{{file}}} struct to prevent false sharing [[https://git.kernel.org/linus/a7bc2e8ddf3c8e1f5bfeb401f7ee112956cea259|commit]] * fuse: add feature flag for expire-only [[https://git.kernel.org/linus/5cadfbd5a11e5495cac217534c5f788168b1afd7|commit]] * io_uring * Add support for user allocated ring memory, rather than having the kernel allocate it. Mostly for packing rings into a huge page [[https://git.kernel.org/linus/9b1b58cacc65ecee29bd85988c9ff957a84b43f4|commit]], [[https://git.kernel.org/linus/e27cef86a0edd4ef7f8b4670f508a03b509cbbb2|commit]], [[https://git.kernel.org/linus/9c189eee73af1825ea9c895fafad469de5f82641|commit]], [[https://git.kernel.org/linus/03d89a2de25bbc5c77e61a0cf77663978c4b6ea7|commit]] * Improve {{{FMODE_NOWAIT}}} coverage [[https://git.kernel.org/linus/fe34db062b8036f72e97c2b9eaa7e9fbb725ead2|commit]], [[https://git.kernel.org/linus/e9833d8701028b5dd62895e68f4a280aad359172|commit]], [[https://git.kernel.org/linus/caec5ebe77f97d948dcf46f07d622bda7f1f6dfd|commit]] * Add io_uring_setup flag for using pre-registering the io_uring fd at setup time [[https://git.kernel.org/linus/6e76ac595855db27bbdaef337173294a6fd6eb2c|commit]] * modules: catch concurrent module loads, treat them as idempotent [[https://git.kernel.org/linus/9b9879fc03275ffe0da328cf5b864d9e694167c8|commit]] * string: use {{{__builtin_memcpy()}}} in strlcpy/strlcat [[https://git.kernel.org/linus/f9cfb1910ece5b5dbedca096fc9b7c9fe4fd3c50|commit]] * workqueue: Implement automatic CPU intensive detection and add monitoring [[https://git.kernel.org/linus/725e8ec59c56c65fb92e343c10a8842cd0d4f194|commit]], [[https://git.kernel.org/linus/3a46c9833c1fad3b4a91bbbeb856810c7e1d8e47|commit]], [[https://git.kernel.org/linus/c54d5046a06b90adb3d1188f0741a88692854354|commit]], [[https://git.kernel.org/linus/bdf8b9bfc131864f0fcef268b34123acfb6a1b59|commit]], [[https://git.kernel.org/linus/616db8779b1e3f93075df691432cccc5ef3c3ba0|commit]], [[https://git.kernel.org/linus/6363845005202148b8409ec3082e80845c19d309|commit]], [[https://git.kernel.org/linus/8a1dd1e547c1a037692e7a6da6a76108108c72b1|commit]] * tools/nolibc: avoid coredumps and speed up tests [[https://git.kernel.org/linus/e7654c3fbdb348a0c54244015d97f0a0b8773b8c|commit]], [[https://git.kernel.org/linus/aa662d127e651df6e51d710014d7eb4c2a3049f5|commit]], [[https://git.kernel.org/linus/2df07fc55d5cf377308fad02a022cf0f0401daf4|commit]], [[https://git.kernel.org/linus/fc82d7dbca3b789897bfb7fb5098439959c8f296|commit]], [[https://git.kernel.org/linus/e8842cf04ee0e746a42e4a21b9a3a6a1327596cf|commit]], [[https://git.kernel.org/linus/5df28c153dade7920fce3998d4c7b1a60db5ae79|commit]], [[https://git.kernel.org/linus/69f2cd9fea01a21259d361e839efd02cba7fe945|commit]], [[https://git.kernel.org/linus/3a8039e289a337aeaa9ad37f3fcd411d83fee983|commit]], [[https://git.kernel.org/linus/7f291cfa90d7f95da11fe9aa7062344ddfce603a|commit]], [[https://git.kernel.org/linus/0738c2d7bf93cb2c11cd4b24b53a77fe9faaad5d|commit]], [[https://git.kernel.org/linus/fddc8f81f1cccb081b69b66b1e0f5cfba58c7b43|commit]], [[https://git.kernel.org/linus/f2fa6b384c67feebd367fa2cb45254a79fd37312|commit]], [[https://git.kernel.org/linus/404fa87c0eafbd420c2a016b964facb92250ae85|commit]], [[https://git.kernel.org/linus/3ad09d72e4d2232374f0dadf94641011b5772bb2|commit]], [[https://git.kernel.org/linus/72ffbc6784a40b958ac9a4e68049dc14730a4024|commit]], [[https://git.kernel.org/linus/c22c7c81af4d061e484e0833fbc3418d0f3008d4|commit]], [[https://git.kernel.org/linus/53fcfafa8c5c848d4ef1712053f6ea23b263a0de|commit]], [[https://git.kernel.org/linus/ec8e1b73d58863d1600ca292c9d18de4ec258ba7|commit]], [[https://git.kernel.org/linus/443de903146e83c13ce43d4ad7ed470129aa348a|commit]], [[https://git.kernel.org/linus/56d294a50cf34990dec8886bef3f1a1386d56ac6|commit]], [[https://git.kernel.org/linus/659ee30f33b1cbafcc364cffc24db0fe31f26ed5|commit]], [[https://git.kernel.org/linus/7a9b2345202a14dfec9081994486156f7a691513|commit]], [[https://git.kernel.org/linus/88fc7eb54ecc6db8b773341ce39ad201066fa7da|commit]], [[https://git.kernel.org/linus/8525092104ca97d5131fe594081dc176bcce34b5|commit]], [[https://git.kernel.org/linus/e21a2eef74305b9ec2b8dcecf364aeb5e2e10e2e|commit]], [[https://git.kernel.org/linus/818924d1295ea16db267ea6defe08b21243583b6|commit]], [[https://git.kernel.org/linus/0093c2dae8d37595c3c7fcc626b51300699a003b|commit]], [[https://git.kernel.org/linus/e76b70dec9c257f4ccebd7f98d1de97ed071f0d1|commit]], [[https://git.kernel.org/linus/79d8d4cad2252dd69076cc7997e56459baf523b1|commit]], [[https://git.kernel.org/linus/208aa9d94c1181d8dff8e60d681e3b6cf0b37fae|commit]], [[https://git.kernel.org/linus/9a75575b81b5639f7ca82c9701fb199401fd6471|commit]], [[https://git.kernel.org/linus/87b9fa66af9ad92097c0593626dea3654ec19fd0|commit]], [[https://git.kernel.org/linus/758f970f4204d17b4e14774d6eb2b8bdecda067e|commit]], [[https://git.kernel.org/linus/da1affc5cedacb91ce0a15ad768e56383d1e48b7|commit]], [[https://git.kernel.org/linus/0dd2fdbfa59373a77b4d6ba82027b60700b6a0a0|commit]], [[https://git.kernel.org/linus/ed495f0945e732c55bb8c21e660c2c86f5e57812|commit]], [[https://git.kernel.org/linus/f9bf5944d37b75b8238349d4fb5b7a97bbecfc9d|commit]], [[https://git.kernel.org/linus/a4c65af1511c8cf14ada10a957250c5051b8ccac|commit]], [[https://git.kernel.org/linus/c88e46d6d63b789bb2d5050e62ec0a0a477d4dfb|commit]], [[https://git.kernel.org/linus/0858aec4359636e539c6f26a1f3c9a3eceb87494|commit]], [[https://git.kernel.org/linus/bd27fef32960f5c9da57a50d58aa9f0bf0a3ff54|commit]], [[https://git.kernel.org/linus/a36cfc5e483e7bf609b3d39d83150626d92355e0|commit]], [[https://git.kernel.org/linus/6d1970e1efc8696bc8c4b8d36c9680882cb2c849|commit]], [[https://git.kernel.org/linus/f62ec079d0899331085ff3537848e55cc316d751|commit]], [[https://git.kernel.org/linus/75d75a7b2803173c376b01e1f992f6364a5fdb33|commit]], [[https://git.kernel.org/linus/4cbab2eca009ca022ae17596b5f3d4024c52a65b|commit]], [[https://git.kernel.org/linus/957bfa31f1d93ba7ea9fda2a401b0f3c79129d5e|commit]], [[https://git.kernel.org/linus/fa0df56a804b9b1df6caea7f178771665e46d218|commit]], [[https://git.kernel.org/linus/dd58d666ac08eb5eb81e4956172fc52b3bf0ab38|commit]] * task scheduler: Consider CPU contention in frequency, EAS max util & load-balance busiest CPU selection [[https://git.kernel.org/linus/3eb6d6ececca2fd566d717b37ab467c246f66be7|commit]], [[https://git.kernel.org/linus/7d0583cf9ec7bf8e5897dc7d3a7059e8fae5464a|commit]] * rust * sync: add `Arc::ptr_eq` [[https://git.kernel.org/linus/bd780aea671eda9660837c05d9ba58de22ceecad|commit]] * Rust 1.68.2 upgrade [[https://git.kernel.org/linus/f438c1dd9ec2687b9d1e72e36cc44318634671a0|commit]], [[https://git.kernel.org/linus/eed7a146b86cf95441d5563c7a99cd02f8a6c3a4|commit]], [[https://git.kernel.org/linus/3ed03f4da06ede71ac53cf25b9441a372e9f2487|commit]] * rtla * Improvements [[https://git.kernel.org/linus/a957cbc02531a23beeac6dd9e751f8d4dadaf7a9|commit]], [[https://git.kernel.org/linus/272ced2556e63943113a54c113f8c11aeb53a5c3|commit]], [[https://git.kernel.org/linus/894c29c76b2b4c2cfbe1482dab42e4f03b49cf18|commit]], [[https://git.kernel.org/linus/c58a3f8c7f974d171d1b6897a71a078a3bc7afd3|commit]], [[https://git.kernel.org/linus/c66552be9ec9f83705a911cb2219cffc39c42a0c|commit]], [[https://git.kernel.org/linus/2091336b9a8b5a2a59cdd5c468df62a4b562875f|commit]], [[https://git.kernel.org/linus/57cf76ec64573ee1eb75b91d665dba18b21ece6e|commit]], [[https://git.kernel.org/linus/7bc4d3089a50050d4df0af63423a5d907c3bdb1a|commit]], [[https://git.kernel.org/linus/ed774f7481fa0bcf9978556ae828aa1de9f22e20|commit]], [[https://git.kernel.org/linus/6127383217741615f3450b684ecbee1ff570ee98|commit]] * timerlat_top: Add timerlat user-space support [[https://git.kernel.org/linus/cdca4f4e5e8ea1c21417d86a0b2ed6af282cbb6e|commit]] * locking/atomic: restructure the generated atomic headers, and add kerneldoc comments for all of the generic {{{atomic{,64,_long}_t}}} operations [[https://git.kernel.org/linus/dda5f312bb09e56e7a1c3e3851f2000eb2e9c879|commit]], [[https://git.kernel.org/linus/14d72d4b6f0e88b5f683c1a5b7a876a55055852d|commit]], [[https://git.kernel.org/linus/a7bafa7969da1c0e9c342c792d8224078d1c491c|commit]], [[https://git.kernel.org/linus/d12157efc8e083c77d054675fcdd594f54cc7e2b|commit]], [[https://git.kernel.org/linus/7c7084f3ba4031a9c2858afed696a577fcfe41d2|commit]], [[https://git.kernel.org/linus/a083ecc9333c62237551ad93f42e86a42a3c7cc2|commit]], [[https://git.kernel.org/linus/7ed7a1564090fdd265f49d1ad94ee92845b14c76|commit]], [[https://git.kernel.org/linus/c9268ac615f9f6dded7801df5993374598934377|commit]], [[https://git.kernel.org/linus/0f613bfa8268a89be25f2b6b58fc6fe8ccd9a2ba|commit]], [[https://git.kernel.org/linus/1815da1718aa4c062b94cf3fc09432f552e25768|commit]], [[https://git.kernel.org/linus/9257959a6e5b4fca6fc8e985790bff62c2046f20|commit]], [[https://git.kernel.org/linus/b916a8c765692444388891f5b9c5b6e941e16d42|commit]], [[https://git.kernel.org/linus/630399469ffcb937936644fbaa5daf61e700a329|commit]], [[https://git.kernel.org/linus/1d78814d41701c216e28fcf2656526146dec4a1a|commit]], [[https://git.kernel.org/linus/8aaf2a631be92b996c5db9b368e8b96305d22fb8c418097a0dd66d4fac215af24ece8dea091079bc|commit]], [[https://git.kernel.org/linus/ad8110706f381170c9f9975f1cb06010fd3ca381|commit]], [[https://git.kernel.org/linus/e74f4059d11f36e936b08e98bc96f654c308807a|commit]], [[https://git.kernel.org/linus/ef558b4b7bbbf7e115c87e4da21ce86444d6ec3b|commit]] * kbuild: Enable {{{-fstrict-flex-arrays=3}}}. This feature instructs the compiler to treat only C99 flexible arrays as dynamically sized for the purposes of object size calculations [[https://git.kernel.org/linus/df8fc4e934c12b906d08050d7779f292b9c5c6b5|commit]] * (FEATURED) Scope-based Resource Management ([[https://lwn.net/Articles/934679/|Recommended LWN article]]) [[https://git.kernel.org/linus/9a1f37ebcfe061721564042254719dc8fd5c9fa0|commit]], [[https://git.kernel.org/linus/54da6a0924311c7cf5015533991e44fb8eb12773|commit]], [[https://git.kernel.org/linus/b5ec6fd286dfa466f64cb0e56ed768092d0342ae|commit]], [[https://git.kernel.org/linus/7537b90c0036759e0b1b43dfbc6224dc5e900b13|commit]], [[https://git.kernel.org/linus/0f92cdf36f848f1c077924f857a49789e00331c0|commit]], [[https://git.kernel.org/linus/5bb76f1ddf2a7dd98f5a89d7755600ed1b4a7fcd|commit]], [[https://git.kernel.org/linus/4eb054f92b066ec0a0cba6896ee8eff4c91dfc9e|commit]], [[https://git.kernel.org/linus/857d315f1201cfcf60e5849c96d2b4dd20f90ebf|commit]], [[https://git.kernel.org/linus/4bdada79f3464d85f6e187213c088e7c934e0554|commit]], [[https://git.kernel.org/linus/6dafc713e3b0d8ffbd696d200d8c9dd212ddcdfc|commit]], [[https://git.kernel.org/linus/b4e1fa1e14286f7a825b10d8ebb2e9c0f77c241b|commit]], [[https://git.kernel.org/linus/7170509cadbb76e5fa7d7b090d2cbdb93d56a2de|commit]], [[https://git.kernel.org/linus/0453f984a7b9458f0e469afb039f2841308b1bef|commit]], [[https://git.kernel.org/linus/2c29ef0fef8aaff1f91263fc75c749d659da6972|commit]] * Prepare for supporting more filesystems with fanotify [[https://git.kernel.org/linus/b52878275ce54b5d3a654ed24dfb169c1c501998|commit]], [[https://git.kernel.org/linus/304e9c83e80d5cbe20ab64ffa1fac9fc51d30bc9|commit]], [[https://git.kernel.org/linus/96b2b072ee62be8ae68c8ecf14854c4d0505a8f8|commit]], [[https://git.kernel.org/linus/a95aef69a740f5a1c7d70f2b58552207edaef99a|commit]] * fortify: Add KUnit tests for runtime overflows [[https://git.kernel.org/linus/4d9060981f886ba881aa3e8de688433c1f1ed11f|commit]], [[https://git.kernel.org/linus/5e2956ee46244ffba1d345bae8115aa5dc199adc|commit]], [[https://git.kernel.org/linus/3bf301e1ab85e18ed0e337ce124dc71d6d7b5fd7|commit]], [[https://git.kernel.org/linus/21a2c74b0a2a784228c9e3af63cff96d0dea7b8a|commit]], [[https://git.kernel.org/linus/605395cd7ceded5842c8ba6763ea24feee690c87|commit]], [[https://git.kernel.org/linus/55c84a5cf2c72a821719823ef2ebef01b119025b|commit]] * cgroup/misc: Expose misc.current on cgroup v2 root [[https://git.kernel.org/linus/e973dfe9299441ad263efedf094897fbb31e6a87|commit]] * Binder: Add timestamp and async from to transaction record [[https://git.kernel.org/linus/800936191a26a5aba5caa3cbd70a4154b45eb94a|commit]], [[https://git.kernel.org/linus/c21c0f9a20a963f5a1874657a4e3d657503f7815|commit]] * tty: update timestamps on all device nodes [[https://git.kernel.org/linus/360c11e2258ce4269441a5ab6d43d0b202f4261b|commit]] = File systems = * BTRFS * Submit IO synchronously for fast checksum implementations (crc32c and xxhash) [[https://git.kernel.org/linus/da023618076a13c35bcde1a49a87b7da64761f1d|commit]], [[https://git.kernel.org/linus/e917ff56c8e7b117b590632fa40a08e36577d31f|commit]], [[https://git.kernel.org/linus/efcfcbc6a36195c42d98e0ee697baba36da94dc8|commit]] * Speedup in fsync(), better tracking of inode logged status can avoid transaction commit [[https://git.kernel.org/linus/bf1f4fd3fadb8dd4337ad46d63eb6ebcce3366f5|commit]], [[https://git.kernel.org/linus/d67ba263f4add857ac2a02088c08e1dc2fe1171b|commit]], [[https://git.kernel.org/linus/1e75ef039d1a13afd0abd794dee9df462d5b7990|commit]], [[https://git.kernel.org/linus/acfb5a4f1109a4f477f816d572b4f8f65b645bee|commit]], [[https://git.kernel.org/linus/59fcf388172dc4e00a8a98b8b720c063af398bda|commit]] * Reduce the duplicated reads during P/Q scrub [[https://git.kernel.org/linus/7561551e7ba870b9659083b95feb520fb2dacce3|commit]], [[https://git.kernel.org/linus/94ead93e63758f2c7cbe0c68ca232fff812ca33e|commit]] * Use per-buffer locking for extent_buffer reading [[https://git.kernel.org/linus/d7172f52e9933b6ec9305e7fe6e829e3939dba04|commit]], [[https://git.kernel.org/linus/46672a44b023461d13f063bc95bf832f8124177f|commit]] * Fixes for reclaim [[https://git.kernel.org/linus/3ed01616bad6c7e3de196676b542ae3df8058592|commit]], [[https://git.kernel.org/linus/a9f189716cf15913c453299d72f69c51a9b0f86b|commit]], [[https://git.kernel.org/linus/93463ff7b54626f8276c0bd3d3f968fbf8d5d380|commit]], [[https://git.kernel.org/linus/7e27180994383b7c741ad87749db01e4989a02ba|commit]] * Don't commit transaction for every subvol create [[https://git.kernel.org/linus/1b53e51a4a8f870da194bcdaec9eb8865ee89386|commit]] * raid56: always verify the P/Q contents for scrub [[https://git.kernel.org/linus/486c737f7fdc0c3f6464cf27ede811daec2769a1|commit]] * Simplify extent_buffer reading and writing [[https://git.kernel.org/linus/7f26fb1c13f7445adf7890bf27458081655c9a4c|commit]], [[https://git.kernel.org/linus/243984b3b99199678b6ec74787f8fed60c58042d|commit]], [[https://git.kernel.org/linus/aebcc1596b5c37095385ecd930cf335254828538|commit]], [[https://git.kernel.org/linus/d87e6575e9d1c9d43e223c3fe858e4e453265707|commit]], [[https://git.kernel.org/linus/e95382834cf885b478dbe14a66451b863eb35c94|commit]], [[https://git.kernel.org/linus/b78b98e06fb7f9860da5a7c28e1edbaefc2f7be1|commit]], [[https://git.kernel.org/linus/e19493107675d48eb207b91d9a775c811f247e27|commit]], [[https://git.kernel.org/linus/046b562b20a5cfe205fb78c6f8a1a8b74f01d303|commit]], [[https://git.kernel.org/linus/3d66b4b27d2b7f5e74071256acea38108f9dbeb5|commit]], [[https://git.kernel.org/linus/9fdd160160f002ac2604c5b8f90598febad44ae7|commit]], [[https://git.kernel.org/linus/50b21d7a066f9a702b1d54ca11fc577302e875cb|commit]], [[https://git.kernel.org/linus/81a79b6ae4519a97c5924d68e1fb77d283cb051d|commit]], [[https://git.kernel.org/linus/b51e6b4bda5bddbd002ace239eb5eadd4d729039|commit]], [[https://git.kernel.org/linus/cd88a4fdbf1e3d55d852dd67c38155ee3ee3469f|commit]], [[https://git.kernel.org/linus/31d89399dad0cf5524bd0e4e2c2827ae7004b2ca|commit]], [[https://git.kernel.org/linus/113fa05c2fa1a9ee45a31909e6d78666e426adca|commit]], [[https://git.kernel.org/linus/011134f444dcc4192b9945b963d4b8340db3667d|commit]], [[https://git.kernel.org/linus/f3d315eb9372868bce92e7b24f2b92e061fe6fcd|commit]], [[https://git.kernel.org/linus/9e2aff90fc2ad2b94933762f5442fef9ee7a692e|commit]], [[https://git.kernel.org/linus/d7172f52e9933b6ec9305e7fe6e829e3939dba04|commit]], [[https://git.kernel.org/linus/46672a44b023461d13f063bc95bf832f8124177f|commit]] * Some delayed refs optimizations and cleanups [[https://git.kernel.org/linus/315dd5cc75ddccb6ebd863366b7a7d0488057637|commit]], [[https://git.kernel.org/linus/53499d5f6b68766317a62b1513e9386c2584e97c|commit]], [[https://git.kernel.org/linus/4d34ad34d7cc5390ec03b25f2a7f2fd5041cb7d8|commit]], [[https://git.kernel.org/linus/293f8197a4902227e39e7288aa06f7f2b0e29cc8|commit]], [[https://git.kernel.org/linus/f38462c4476cc57ef0e739bc8b8bc8f0a5754b3b|commit]], [[https://git.kernel.org/linus/798f4d95db0d71a2803c61b5e1fd5b739569c3da|commit]], [[https://git.kernel.org/linus/1e6b71c34bbbbde920357265abd161cb727487b8|commit]], [[https://git.kernel.org/linus/61c681fef7dd44521070fd4198abede2077afb8e|commit]], [[https://git.kernel.org/linus/f1ed785a5b9ca944771a08d0a2cdca961ac24329|commit]], [[https://git.kernel.org/linus/184533e3618f4d0b382c1ef3de0ce34e849005d7|commit]], [[https://git.kernel.org/linus/99f09ce309b8307ce8dca209f936e99a7c332214|commit]] * Don't split ordered_extents for zoned writes at I/O submission time [[https://git.kernel.org/linus/dd8b7b0416704efb0dcd74801a1a48aa221f1cf5|commit]], [[https://git.kernel.org/linus/e9cb93b9fbd0bfcef2774e82d095362ad16acf6e|commit]], [[https://git.kernel.org/linus/6e4b2479ab38b3f949a85964da212295d32102f0|commit]], [[https://git.kernel.org/linus/5cfe76f846d5034058c0c4813259d5d831757c36|commit]], [[https://git.kernel.org/linus/cbfce4c7fbde23cc8bcba44822a58c728caf6ec9|commit]], [[https://git.kernel.org/linus/3887653c44ec1de089b8624bd53af05b946939e9|commit]], [[https://git.kernel.org/linus/a6f3e205e4916e4f29ce2c4c38d520616e6b0080|commit]], [[https://git.kernel.org/linus/ebdb44a00e257641a398fe2484ba9c65a03beea1|commit]], [[https://git.kernel.org/linus/b0307e28642efa3bcc6353b9af213711f6d3848e|commit]], [[https://git.kernel.org/linus/53d9981ca20efcded0f6cf6b480d713f490ca9f1|commit]], [[https://git.kernel.org/linus/816f589b8d43f7c258b0c10a5ce29daf01614651|commit]], [[https://git.kernel.org/linus/52b1fdca23ac0fbcad363a1a5b426bf0d56b715a|commit]], [[https://git.kernel.org/linus/71df088c1cc090d232eb691d8f42284a2c6409eb|commit]], [[https://git.kernel.org/linus/f000bc6fe43ce66c55fa1691000115b14ba95b33|commit]] * EXT4 * Journal cycled record transactions between each mount [[https://git.kernel.org/linus/c7fc60555864c0e67f5e5754a9053986f8fb8491|commit]], [[https://git.kernel.org/linus/7294505824254da9cb5ee6cb12d783c9eeea030e|commit]], [[https://git.kernel.org/linus/bd5a594b5b1cfa14646bc29e6c7745c961025055|commit]] * Allow concurrent unaligned dio overwrites [[https://git.kernel.org/linus/310ee0902b8d9d0a13a5a13e94688a5863fa29c2|commit]] * Multiblock allocator improvements [[https://git.kernel.org/linus/569f196f1e7a14472f21734170411f75a3179db0|commit]], [[https://git.kernel.org/linus/5730cce35344fba94e2c329d2bc0a170333a059f|commit]], [[https://git.kernel.org/linus/4eb7a4a1a33bdaf259fca8528f2546c90ad18f0d|commit]], [[https://git.kernel.org/linus/fdd9a00943a5f6687937628e01506dad697c9140|commit]], [[https://git.kernel.org/linus/3ef5d263879696027c70548532a94418aad3bd95|commit]], [[https://git.kernel.org/linus/1b420011210802a7a1b1e99f30bc1d62c352ac71|commit]], [[https://git.kernel.org/linus/3c6296046c85333bc52555a670a9093d9e2657bb|commit]], [[https://git.kernel.org/linus/4f3d1e4533b0982034f316ace85415d3bc57e3da|commit]], [[https://git.kernel.org/linus/856d865c178b4fbf4c629d5a7d0df9352d123280|commit]], [[https://git.kernel.org/linus/7e170922f06bf46effa7c57f6035fc463d6edc7e|commit]], [[https://git.kernel.org/linus/f52f3d2b9fbab73c776f4d3386393e9bbc83b87d|commit]] * Misc left over folio changes [[https://git.kernel.org/linus/0b956de1512e23329aa27f60fe4a8b3e6afc7d6a|commit]], [[https://git.kernel.org/linus/36c9b4504088089185f7743433c914935b518ab2|commit]], [[https://git.kernel.org/linus/80be8c5cc9251484ba856e2cf7d15a189326fe9c|commit]], [[https://git.kernel.org/linus/d19500da4b8cfe1791e1583ab237c3213e1bd39c|commit]], [[https://git.kernel.org/linus/0dea40aa315d01f5d0ffbd871483ea8a45c71f65|commit]] * F2FS * Support errors=remount-ro|continue|panic mountoption [[https://git.kernel.org/linus/b62e71be2110d8b52bf5faf3c3ed7ca1a0c113a5|commit]] * Flag as supporting buffered async reads [[https://git.kernel.org/linus/38b57833de1d9716bf8134c6fefcc35d23d5b136|commit]] * Assign default compression level [[https://git.kernel.org/linus/00e120b5e4b5638cf19eee96d4332f2d100746ba|commit]] * Add async reset zone command support [[https://git.kernel.org/linus/25f9080576b9549be9435123d7e45bfeebd2dc97|commit]] * Support errors=remount-ro|continue|panic mountoption [[https://git.kernel.org/linus/b62e71be2110d8b52bf5faf3c3ed7ca1a0c113a5|commit]] * CACHEFILES * Allow the cache to be non-root [[https://git.kernel.org/linus/79aa28494638f03a9e664163cb4620eb0482aaa2|commit]] * EFIVARFS * Expose used and total size [[https://git.kernel.org/linus/d86ff3333cb1d5f42d8898fb5fdb304e143c0237|commit]] * EXT2 * Move direct-io to use iomap [[https://git.kernel.org/linus/fb5de4358e1aa4753dce73c4dc1aca73ff39cedd|commit]] * Drop fragment support [[https://git.kernel.org/linus/404615d7f1dcd4cca200e9a7a9df3a1dcae1dd62|commit]] * GFS2 * Buffer folio changes [[https://git.kernel.org/linus/c0ba597db9040797197e6472d90c9dcbd28daf55|commit]], [[https://git.kernel.org/linus/d0cfcaee0aa52cc476918d50d0c9715a603a7e3e|commit]], [[https://git.kernel.org/linus/c1401fd18ff874761b268dee669da0a3565aa99d|commit]], [[https://git.kernel.org/linus/53418a18fcbbb086dbfacbdd9b853c1071d3ec16|commit]], [[https://git.kernel.org/linus/285e0fc95ab122285c123c41cdb198fff9bbb3b8|commit]], [[https://git.kernel.org/linus/bb0ea5989c093c14b6d6af03eed4a4fd85c50a0b|commit]], [[https://git.kernel.org/linus/fe181377a23cce5987fc32f1877cfcd223561609|commit]], [[https://git.kernel.org/linus/8c6cb3e3d57ef3656716f1855be3dd810b518eab|commit]], [[https://git.kernel.org/linus/4a9622f2fdaee84c373f3f285d898a3ea60ee9f2|commit]], [[https://git.kernel.org/linus/3c98a41cc2c03b7570fb3affb310b5123d2e9cbc|commit]], [[https://git.kernel.org/linus/6f24ce6bec835bef84dcd9490ffb2bca61d9f359|commit]], [[https://git.kernel.org/linus/08d84add43179db632869ad39daff1b99f0e667c|commit]], [[https://git.kernel.org/linus/eee25182a80a8c86ed14af9b38205dc83ed274b5|commit]], [[https://git.kernel.org/linus/6d68f644b97c30c0d030696dfcbb375b07753ad3|commit]] * NFS * Client-side RPC-with-TLS [[https://git.kernel.org/linus/9e8ab85a7ea74b0698f14df9b828927b6db03bd2|commit]], [[https://git.kernel.org/linus/500053191297fcf73023ff057da6d2aa35f738e0|commit]], [[https://git.kernel.org/linus/97d1c83c3ff40759f64784210da21ca6225d8422|commit]], [[https://git.kernel.org/linus/120726526e5ee3dfac11bd417e266a7e411f3315|commit]], [[https://git.kernel.org/linus/0d3ca07ffda9291843bb0b4b39dea43535bb1f13|commit]], [[https://git.kernel.org/linus/dea034b963c8901bdcc3d3880c04f0d75c95112f|commit]], [[https://git.kernel.org/linus/75eb6af7acdf566c68d61e98e67ee2f235201c02|commit]], [[https://git.kernel.org/linus/6c0a8c5fcf7158e889dbdd077f67c81984704710|commit]] * NFS sysfs scaffolding [[https://git.kernel.org/linus/8b18a2edecc0741b0eecf8b18fdb356a0f8682de|commit]], [[https://git.kernel.org/linus/d5082ace6c8ddefd19b8f7b7164580d972fdb103|commit]], [[https://git.kernel.org/linus/943aef2dbcf75f81c4574903131bd9559cee4fd1|commit]], [[https://git.kernel.org/linus/e96f9268eea626126021641eefeed02f8669f584|commit]], [[https://git.kernel.org/linus/1c7251187dc067a6d460cf33ca67da9c1dd87807|commit]], [[https://git.kernel.org/linus/e13b549319a684dd80c4cc25e9567a5c84007e32|commit]], [[https://git.kernel.org/linus/d97c05897757a5d7fa131073d04a2fb29b5836ee|commit]], [[https://git.kernel.org/linus/f4057ffd0e134e54a727e00c3c9b0d9a5051eadf|commit]], [[https://git.kernel.org/linus/d9615d166c7ede67bf16bdd0772e35e124f305f5|commit]], [[https://git.kernel.org/linus/7d3e26a054c88477b26adda3542d66271a943968|commit]], [[https://git.kernel.org/linus/6ad477a69ad81bcdd515559fba2887ae71c9c0cc|commit]] * NTFS3 * Add support /proc/fs/ntfs3//volinfo and /proc/fs/ntfs3//label [[https://git.kernel.org/linus/7832e123490ac39f85ab5befc2ceee7b25b03acb|commit]] * OVERLAYFS * Lazy lookup of lowerdata [[https://git.kernel.org/linus/b07d5cc93e1b28df47a72c519d09d0a836043613|commit]], [[https://git.kernel.org/linus/a6ff2bc0be179eea72832b5396481a08ccd22d5a|commit]], [[https://git.kernel.org/linus/5522c9c7cbd2ab4e886fa1c70896f0bdd483ce0b|commit]], [[https://git.kernel.org/linus/163db0da3515d1d32343906a2fb7854492191d19|commit]], [[https://git.kernel.org/linus/0af950f57fefabab628f1963af881e6b9bfe7f38|commit]], [[https://git.kernel.org/linus/ac900ed4f253434e099a025fc1da3d04bc741bd3|commit]], [[https://git.kernel.org/linus/ab1eb5ffb7d2a69c9b24083026a63cbdd758d96b|commit]], [[https://git.kernel.org/linus/9e88f9052415289f2789abb6ae68a40a4701b8e1|commit]], [[https://git.kernel.org/linus/37ebf056d6cfc6638c821386bc33a9602bbc0d28|commit]], [[https://git.kernel.org/linus/5436ab0a864e8bb263919e51c26395a67bde17ca|commit]], [[https://git.kernel.org/linus/2b21da920866ad20b5e3119f3b8d2267774b7b0a|commit]], [[https://git.kernel.org/linus/416656447864ef0fc2430525499f52a4a370a0ab|commit]], [[https://git.kernel.org/linus/42dd69ae1af42cf72d167e63a039b8c63653eb7f|commit]] * Reserve ability to reconfigure mount options with new mount api [[https://git.kernel.org/linus/ceecc2d87f007f9fc34e847401282111c0c29786|commit]] * SQUASHFS * Cache partial compressed blocks [[https://git.kernel.org/linus/e994f5b677ee016a2535d9df826315122da1ae65|commit]] = Memory management = * (FEATURED) cachestat: a new syscall for page cache state of files [[https://git.kernel.org/linus/ffcb5f5262b756a598eefb11e340bbd027cde037|commit]], [[https://git.kernel.org/linus/cf264e1329fb0307e044f7675849f9f38b44c11a|commit]], [[https://git.kernel.org/linus/88537aac0b3840314d3a5cc401a7fc400c069bc9|commit]] * secretmem: make it on by default [[https://git.kernel.org/linus/b758fe6df50daf68fef089d8f3c1cd49fc794ed2|commit]] * Add the ability to handle page faults on parts of files which are already in the page cache without taking the mmap lock [[https://git.kernel.org/linus/350f6bbca1de515cd7519a33661cefc93ea06054|commit]], [[https://git.kernel.org/linus/4ec31152a80d83d74d231d964703a721236244ef|commit]], [[https://git.kernel.org/linus/0c2e394ab23017303f676e6206a54c54bb0e3681|commit]], [[https://git.kernel.org/linus/f5617ffeb450f84c57f7eba1a3524a29955d42b7|commit]], [[https://git.kernel.org/linus/284e05920498788c5df1a7dd6424adb426498e1c|commit]], [[https://git.kernel.org/linus/7a7f094635349a7d0314364ad50bdeb770b6df4f|commit]] * Allow pte_offset_map[_lock]() to fail. This is for some mmap_lock avoidance i.e. latency reduction. Initially just for the case of collapsing shmem or file pages to THPs; but likely to be relied upon later in other contexts [[https://git.kernel.org/linus/3db82b9374ca921b8b820a75e83809d5c4133d8f|commit]], [[https://git.kernel.org/linus/a92cbb82c8d375d47fbaf0e1ad3fd4074a7cb156|commit]], [[https://git.kernel.org/linus/c65d09fd2c280f8b8e79655f7c011e25e5b45568|commit]], [[https://git.kernel.org/linus/6a2561f92e7d74536b6eba3ffdcf66d60d44031c|commit]], [[https://git.kernel.org/linus/ffd3e90a8fda600e37f60e6b648e9252927c5e8b|commit]], [[https://git.kernel.org/linus/d00ae31fa2fc7ce5ed8d60b9fb10adb5c99a792b|commit]], [[https://git.kernel.org/linus/4b56069c95d69bfce0c0ffb2531d08216268a972|commit]], [[https://git.kernel.org/linus/b2f58941adcbdb736df1686289619719961691ff|commit]], [[https://git.kernel.org/linus/7a19c361b1fac7fbe2d21fc0268902150edb059a|commit]], [[https://git.kernel.org/linus/975ca3986bec8ebd6d8b45f4a7f77c730e424ac4|commit]], [[https://git.kernel.org/linus/653ba8108debd54c318afbf738cf7d231011380d|commit]], [[https://git.kernel.org/linus/56e0d1cb1689da0db8cc383dc3c25e569437bec1|commit]] * Documentation/mm: Initial page table documentation [[https://git.kernel.org/linus/e72ef2d2ba39bad77f37536817124ae52c90e7cf|commit]] * (FEATURED) Implement support for unaccepted memory. UEFI Specification version 2.9 introduces the concept of memory acceptance: some Virtual Machine platforms, such as Intel TDX or AMD SEV-SNP, requiring memory to be accepted before it can be used by the guest. Accepting happens via a protocol specific for the Virtual Machine platform [[https://git.kernel.org/linus/dcdfdd40fa82b6704d2841938e5c8ec3051eb0d6|commit]], [[https://git.kernel.org/linus/2e9f46ee1599be8a50a5366eb3ef4a4b5acff0b7|commit]], [[https://git.kernel.org/linus/745e3ed85f71a6382a239b03d9278a8025f2beae|commit]], [[https://git.kernel.org/linus/3fd1239a783522e7158a1f141fabc7b3b5dc84c6|commit]], [[https://git.kernel.org/linus/2053bc57f36763febced0b5cd91821698bcf6b3d|commit]], [[https://git.kernel.org/linus/c211c19e80d046441655e372c6ae15f29d358259|commit]], [[https://git.kernel.org/linus/ff40b5769a50fab654a70575ff0f49853b799b0e|commit]], [[https://git.kernel.org/linus/c2b353ae24d6fecddcc599529ad8319282494781|commit]], [[https://git.kernel.org/linus/75d090fd167acab4d7eda7e2b65729e877c0fd64|commit]] * convert migrate_pages() to work on folios [[https://git.kernel.org/linus/4e096ae1801e24b338e02715c65c3ffa8883ba5d|commit]] * shmem: Implement splice-read [[https://git.kernel.org/linus/bd194b187115da7b98b660b049315f6c9c8267d1|commit]] * kasan: add support for {{{kasan.fault=panic_on_write}}} [[https://git.kernel.org/linus/452c03fdbed0d19f907c877a6a9edd226b1ebad9|commit]] * memblock: Add flags and nid info in memblock debugfs [[https://git.kernel.org/linus/493f349e38d022057b3b6e13f589f108269c42b0|commit]] * memcg: OOM log improvements [[https://git.kernel.org/linus/5b42360c73b0679505dac6ec44d234cfec61120c|commit]], [[https://git.kernel.org/linus/dddb44ffa0d59c8a3f2a5cb9690ccebe3150810c|commit]] * migrate_pages: Avoid blocking for IO in MIGRATE_SYNC_LIGHT [[https://git.kernel.org/linus/4bb6dc79d987b243d65c70c5029e51e719cfb94b|commit]] * gup: disallow GUP writing to file-backed mappings by default [[https://git.kernel.org/linus/54cbbbf3faf610fb4eba6f8d39d933bcbfc6f4de|commit]], [[https://git.kernel.org/linus/8ac268436e6d52f3bb4d212df9395aec97afaa00|commit]], [[https://git.kernel.org/linus/a6e79df92e4a371ba7b751a20e3a31fde0f528b8|commit]] * Convert several functions in hugetlb.c to use a folio [[https://git.kernel.org/linus/ad27ce206af731f6854b3d8a1760c573b217e363|commit]], [[https://git.kernel.org/linus/959a78b6dd4526fb11d3cacf2de909479b06a4f4|commit]], [[https://git.kernel.org/linus/061e62e8180d3fab378a52d868e29ceebe2fe1d2|commit]] * memcontrol: export {{{memcg.swap}}} watermark via sysfs for v2 memcg [[https://git.kernel.org/linus/e0e0b4126c1f1effd480777507a61bd09360dc8f|commit]] * slab: remove HAVE_HARDENED_USERCOPY_ALLOCATOR [[https://git.kernel.org/linus/d2e527f0d8d1124b1fab93e2e7b2c6a114c0e5a2|commit]] * slab: Deprecate the traditional SLAB allocator. [[https://lwn.net/Articles/932201/|Recommended LWN article]]. [[https://git.kernel.org/linus/eb07c4f39c3e858a7d0cc4bb15b8a304f83f0497|commit]] * zswap * Move writeback LRU from zpool to zswap [[https://git.kernel.org/linus/f999f38b4e6f6fd444acdc289a156ad781919a9c|commit]], [[https://git.kernel.org/linus/1be537c6451b7203776063a8655c9096ebc50790|commit]], [[https://git.kernel.org/linus/e774a7bc7f0adba785d814ce9a329b6c5c32706a|commit]], [[https://git.kernel.org/linus/b3067742ae36b36b959835a33937c4dc458f8183|commit]], [[https://git.kernel.org/linus/35499e2b79ffc51ea704c3268a5830164825a43e|commit]], [[https://git.kernel.org/linus/ff9d5ba202f98db53da98330b46b68a9228c63e4|commit]], [[https://git.kernel.org/linus/0bb488498c989e0d912d38b624df31922027c8c5|commit]] * shrink until can accept [[https://git.kernel.org/linus/e0228d590beb0d0af345c58a282f01afac5c57f3|commit]] * splice: Kill ITER_PIPE to avoid a race between truncate, iov_iter_revert() on the pipe and an as-yet incomplete DMA to a bio with unpinned/unref'ed pages from an O_DIRECT splice read [[https://git.kernel.org/linus/3fc40265ae2b48a7475c41c5c0b256374c419f4b|commit]], [[https://git.kernel.org/linus/c37222082f23c456664d1c3182a714670ab8f9a4|commit]], [[https://git.kernel.org/linus/83aeff881e53fab5b46e4ceb5fb47fa0a22acba9|commit]], [[https://git.kernel.org/linus/69df79a4511117f377d6a5909b47bd4fb541b978|commit]], [[https://git.kernel.org/linus/e69f37bce1b412161e11715adde30dadba0268a2|commit]], [[https://git.kernel.org/linus/6a3f30b8bdb23842aff5eea65b6a7693c49f5506|commit]], [[https://git.kernel.org/linus/123856f0e83f457a3a24d15f561a1dd5f0d4b482|commit]], [[https://git.kernel.org/linus/aa3dbde878961dd333cdd3c326b93e6c84a23ed4|commit]], [[https://git.kernel.org/linus/b85930a07738a95047a51dc5bc06b18fd91a9799|commit]], [[https://git.kernel.org/linus/a1be2935d0914ce44e8fcc4e73b3cc6256f96140|commit]], [[https://git.kernel.org/linus/5bd4990f19b0fedbba5511b44c1cd1fdb7061f3c|commit]], [[https://git.kernel.org/linus/67178fd066d53d5a6cada1cdc6399d02b68b708e|commit]], [[https://git.kernel.org/linus/c829d0bd33ac0df8cece64e50ec71a63f17790f8|commit]], [[https://git.kernel.org/linus/6ef48ec391c8733c89fce33b5a6a2747aa1b8178|commit]], [[https://git.kernel.org/linus/2cb1e08985e3dc59d0a4ebf770a87e3e2410d985|commit]], [[https://git.kernel.org/linus/c6585011bc1d8934cc78046c50fc94590fb2ab24|commit]], [[https://git.kernel.org/linus/9eee8bd81421c5e961cbb1a3c3fa1a06fad545e8|commit]] * slab: introduce kmem_cache flag SLAB_NO_MERGE. It allos API users of kmem_cache_create to specify that they don't want any slab merge or aliasing (with similar sized objects) [[https://git.kernel.org/linus/d0bf7d5759c1d89fb013aa41cca5832e00b9632a|commit]] * cgroup: eliminate atomic rstat flushing [[https://git.kernel.org/linus/2816ea2abf5f54438517f64efd78a9984685d6db|commit]], [[https://git.kernel.org/linus/190409caaf7e3eee6926943488e486590efe6fde|commit]], [[https://git.kernel.org/linus/f82a7a86dbfbd0ee81a4907ca41ba78bda1846f4|commit]], [[https://git.kernel.org/linus/35822fdae3bf509532b0954088070f17de51ff15|commit]], [[https://git.kernel.org/linus/0a2dc6ac33297f8a1a65f81b633a1ea753f19f69|commit]] = Block layer = * blk-ioprio: Introduce promote-to-rt policy [[https://git.kernel.org/linus/ddf63516d8d37528dc6834c7f19b55084e956068|commit]] * blk-wbt: adding a new attr_group for blk_mq, and sysfs entries will only be created when the device is rq based [[https://git.kernel.org/linus/645a829e03384a235b3760959d4ebe420a0f2027|commit]], [[https://git.kernel.org/linus/8a2b20a997a3779ae9fcae268f2959eb82ec05a1|commit]], [[https://git.kernel.org/linus/71b8642e79f277459555629f2bea1a8d1fed307e|commit]], [[https://git.kernel.org/linus/06257fda83ebfd1c33fb992e41dba7be4e1184d4|commit]], [[https://git.kernel.org/linus/eebc21d12f56c1e09a163abf91e351fa2a55a938|commit]], [[https://git.kernel.org/linus/6d85ebf95c44e52337ca1d07f0db4b435d1e6762|commit]] * block: fine-granular CAP_SYS_ADMIN for Persistent Reservation ioctl [[https://git.kernel.org/linus/12629621669b239445727256d1a5dab616b30deb|commit]], [[https://git.kernel.org/linus/9a72a02456a839676fe8f220a44ef00951596047|commit]] * ublk: cleanup and support user copy [[https://git.kernel.org/linus/29dc5d06613f2438ec20a4ba5e0a5a740584d346|commit]], [[https://git.kernel.org/linus/f236a21459a5cdd828b93f363946e116773494f6|commit]], [[https://git.kernel.org/linus/981f95a571e3ca20a496c0b77dbf6b06039c6648|commit]], [[https://git.kernel.org/linus/8284066946e6d9cc979566ce698fe24e7ca0b31e|commit]], [[https://git.kernel.org/linus/38f2dd34410f9070b60969a07ff7d8743b4fd56c|commit]], [[https://git.kernel.org/linus/62fe99cef94a5900cac3bf15fd03ee8baad1a99c|commit]], [[https://git.kernel.org/linus/1172d5b8beca6b899deb9f7f2850e7e47ec16198|commit]] * ublk: add control command of UBLK_U_CMD_GET_FEATURES [[https://git.kernel.org/linus/b5bbc52fd01278642773818642288999a0236cb6|commit]] * Amiga RDB partition support fixes [[https://git.kernel.org/linus/fc3d092c6bb48d5865fec15ed5b333c12f36288c|commit]], [[https://git.kernel.org/linus/95a55437dc49fb3342c82e61f5472a71c63d9ed0|commit]], [[https://git.kernel.org/linus/b6f3f28f604ba3de4724ad82bea6adb1300c0b5f|commit]] * block: Use page pinning [[https://git.kernel.org/linus/a450f49708ea2ccabd1c5d2fe8a702ca5ef77941|commit]], [[https://git.kernel.org/linus/09e8c253415b8eb9ca29a2131d2ebf17743534c5|commit]], [[https://git.kernel.org/linus/e51bab4e20586fb3afc30536b776a97ed8ffb681|commit]], [[https://git.kernel.org/linus/fd363244e883323e1ac9412d96fd22b51e255b0c|commit]], [[https://git.kernel.org/linus/a7e689dd1c06e0cbd6d216a6868e33099d8fc8d8|commit]], [[https://git.kernel.org/linus/403b6fb8dac1e9407c04652cedd92285c5ae9aa5|commit]] * md/raid10: prioritize adding disk to 'removed' mirror [[https://git.kernel.org/linus/ffb1e7a03f966065323b18c96da23a2118a19529|commit]] * md/raid1: prioritize adding disk to 'removed' mirror [[https://git.kernel.org/linus/6090368abcb40554c660c8c3140ce19ff0f8f66f|commit]] * md/raid0: add discard support for the 'original' layout [[https://git.kernel.org/linus/e836007089ba8fdf24e636ef2b007651fb4582e6|commit]] * Use block pr_ops in LIO [[https://git.kernel.org/linus/7907ad748bdba8ac9ca47f0a650cc2e5d2ad6e24|commit]], [[https://git.kernel.org/linus/c787f1baa5031c22cbe20af17b2ee36ad32957ea|commit]], [[https://git.kernel.org/linus/7ba150834b840f6f5cdd07ca69a4ccf39df59a66|commit]], [[https://git.kernel.org/linus/20bebccbc45db71b4a55c465fcc1be37d5daed0d|commit]], [[https://git.kernel.org/linus/0730b1632b7e803aad81ff19a4fda964a9d97053|commit]], [[https://git.kernel.org/linus/8a8da082e9e46fb8c246822145a2e4920a8d03d5|commit]], [[https://git.kernel.org/linus/f2bf2e7e2d526116aab942aaf1b71a949a570ba6|commit]], [[https://git.kernel.org/linus/d45b446bd81822f5a0c3019f58e6c69f7ce71ce6|commit]], [[https://git.kernel.org/linus/b668f2f5467c3316b67fa04975e2fccb0baec576|commit]], [[https://git.kernel.org/linus/f0614790b77300d69a1f37265f98b68c4835811b|commit]], [[https://git.kernel.org/linus/5fd96a4e15de8442915a912233d800c56f49001d|commit]], [[https://git.kernel.org/linus/be1a7cd2d0ed028ffdd60c65e3734e2a1d8b17df|commit]], [[https://git.kernel.org/linus/28c97ba38ff9c00bc177887c2d8568b7115a44e0|commit]], [[https://git.kernel.org/linus/0217da08c1b904be49ac141442bbc1671d3630e7|commit]], [[https://git.kernel.org/linus/53062ace0b6e47f17cae2db453858c8a369a2fe4|commit]], [[https://git.kernel.org/linus/d9b3275bddd58f1e61171483c3625b5bd0841b71|commit]], [[https://git.kernel.org/linus/8455799d2d4676b746dce3d59cbc8060a6223619|commit]], [[https://git.kernel.org/linus/394f811848827ad23d2b43e94e5d72a24cfbc39f|commit]] * dm flakey: introduce random_read_corrupt and random_write_corrupt options [[https://git.kernel.org/linus/4c2c845bdc9a3443ce805460a75242923b0c5ab5|commit]] * dm: support turning off block-core's io stats accounting [[https://git.kernel.org/linus/526d10061bc29b314cc41f3b8322606df9172f14|commit]] * Fit the internal kernel API to communicate block device events to report block device events properly to file systems [[https://git.kernel.org/linus/0783b1a7cbd9a02ddc35fe531b5966b674b304f0|commit]], [[https://git.kernel.org/linus/ae5f855ead6b41422ca0c971ebda509c0414f8ec|commit]], [[https://git.kernel.org/linus/74e6464a987b2572771ac19163e961777fd0252e|commit]], [[https://git.kernel.org/linus/66fddc25fe182fd7d28b35f4173113f3eefc7fb5|commit]], [[https://git.kernel.org/linus/a4f75764d16bed317276b05a9fe2c179ef61680d|commit]], [[https://git.kernel.org/linus/69f90b70bdb62e1a930239d33579e04884cd0b9a|commit]], [[https://git.kernel.org/linus/eec1be4c30df73238b936fa9f3653773a6f8b15c|commit]], [[https://git.kernel.org/linus/00080f7fb7a599c26523037b202fb945f3141811|commit]], [[https://git.kernel.org/linus/0718afd47f70cf46877c39c25d06b786e1a3f36c|commit]], [[https://git.kernel.org/linus/f55e017c642051ddc01d77a89ab18f5ee71d6276|commit]], [[https://git.kernel.org/linus/87efb39075be6a288cd7f23858f15bd01c83028a|commit]], [[https://git.kernel.org/linus/e7caa877e5ddac63886f4a8376cb3ffbd4dfe569|commit]], [[https://git.kernel.org/linus/8067ca1dcdfcc2a5e0a51bff3730ad3eef0623d6|commit]], [[https://git.kernel.org/linus/97524b454bc562f4052751f0e635a61dad78f1b2|commit]], [[https://git.kernel.org/linus/f5db130d4443ddf63b49e195782038ebaab0bec9|commit]], [[https://git.kernel.org/linus/dd2e31afba9e3a3107aa202726b6199c55075f59|commit]] = Tracing, perf and BPF = * BPF: Add socket destroy capability [[https://git.kernel.org/linus/18f558876ff0361e8ceb537cdf6fec8936ff6f72|commit]], [[https://git.kernel.org/linus/9378096e8a656fb5c4099b26b1370c56f056eab9|commit]], [[https://git.kernel.org/linus/f44b1c515833c59701c86f92d47b4edd478fb0f3|commit]], [[https://git.kernel.org/linus/7625d2e9741c1f6e08ee79c28a1e27bbb5071805|commit]], [[https://git.kernel.org/linus/e4fe1bf13e09019578b9b93b942fff3d76ed5793|commit]], [[https://git.kernel.org/linus/c96dac8d369ffd713a45f4e5c30f23c47a1671f0|commit]], [[https://git.kernel.org/linus/e924e80ee6a39bc28d2ef8f51e19d336a98e3be0|commit]], [[https://git.kernel.org/linus/4ddbcb886268af8d12a23e6640b39d1d9c652b1b|commit]], [[https://git.kernel.org/linus/176ba657e6aaa61df637558a57acd8b7bf043cb4|commit]], [[https://git.kernel.org/linus/1a8bc2299f4028e9bac36020ffaaec27a0dfb9c1|commit]] * BPF: Add precision propagation for subprogs and callbacks [[https://git.kernel.org/linus/fbc0b0253001c397a481d258a88ce5f08996574f|commit]], [[https://git.kernel.org/linus/5956f3011604f03be073cba0fbe5f399b4d779ec|commit]], [[https://git.kernel.org/linus/e0bf462276b6ee23203365eacb5c599f42a5a084|commit]], [[https://git.kernel.org/linus/407958a0e980b9e1842ab87b5a1040521e1e24e9|commit]], [[https://git.kernel.org/linus/d9439c21a9e4769bfd83a03ab39056164d44ac31|commit]], [[https://git.kernel.org/linus/1ef22b6865a73a8aed36d43375fe8c7b30869326|commit]], [[https://git.kernel.org/linus/f655badf2a8fc028433d9583bf86a6b473721f09|commit]], [[https://git.kernel.org/linus/c50c0b57a515826b5d2e1ce85cd85f24f0da10c2|commit]], [[https://git.kernel.org/linus/fde2a3882bd07876c144f2e00f7ae6893c378180|commit]], [[https://git.kernel.org/linus/3ef3d2177b1a5484908c53d19269b964c488c20f|commit]], [[https://git.kernel.org/linus/c91ab90cea7ae61334c7026daf310f5875dfdee7|commit]] * BPF: Dynptr helpers [[https://git.kernel.org/linus/987d0242d189661f78b77cc4d77f843b15600fed|commit]], [[https://git.kernel.org/linus/540ccf96ddbc173474c32e595787d5622253be3d|commit]], [[https://git.kernel.org/linus/26662d7347a058ca497792c4b22ac91cc415cbf6|commit]], [[https://git.kernel.org/linus/361f129f3cc185af6667aca0bec0be9a020a8abc|commit]], [[https://git.kernel.org/linus/d911ba7ceafd29606df4018bbd87a1642f9e6d88|commit]] * bpftool: Support bpffs mountpoint as pin path for prog loadall [[https://git.kernel.org/linus/2a36c26fe3b8e2cf39e15e80ba1abc889a75da4f|commit]] * BPF: Add LRU internals description and graph [[https://git.kernel.org/linus/1a986518b8a517637f70cd6d7d494bd0cbbf6145|commit]] * bpftool: specify XDP Hints ifname when loading program [[https://git.kernel.org/linus/f46392ee3dec24066e5fb260d9bd497b4cd4d191|commit]] * BPF: Show target_{obj,btf}_id for tracing link [[https://git.kernel.org/linus/9343184cb31fef673566ff37c41a9f418deb9de3|commit]], [[https://git.kernel.org/linus/e859e429511afb21d3f784bd0ccdf500d40b73ef|commit]], [[https://git.kernel.org/linus/d7e45eb4802bbb3343624711e43d23b22fe7cc55|commit]] * Add O_PATH-based BPF_OBJ_PIN and BPF_OBJ_GET support [[https://git.kernel.org/linus/e7d85427ef898afe66c4c1b7e06e5659cec6b640|commit]], [[https://git.kernel.org/linus/2b001b94073be6097b1a4a21defc5cfbb7aa2f9f|commit]], [[https://git.kernel.org/linus/cb8edce28073a906401c9e421eca7c99f3396da1|commit]], [[https://git.kernel.org/linus/3b22f98e5a05feee20699df0870dc5d47c9b61dd|commit]] * BPF: utilize table ID in bpf_fib_lookup helper [[https://git.kernel.org/linus/8ad77e72caae22a1ddcfd0c03f2884929e93b7a4|commit]], [[https://git.kernel.org/linus/d4ae3e587eced73c9b6f82fd8f88606a09ff710c|commit]] * function_graph: Support recording and printing the return value of function [[https://git.kernel.org/linus/a1be9ccc57f07d54278be34eed6bd679bc941c97|commit]], [[https://git.kernel.org/linus/21c094d3f8a6c88dedbd9831631a263d5c49775f|commit]], [[https://git.kernel.org/linus/1256e70a082ad855efe351146dfa39207d5e3e70|commit]], [[https://git.kernel.org/linus/6009177fd9ec7b5ca9b93ecdbadd4bc7e9c48141|commit]] * tracing: Add the file {{{/sys/kernel/tracing/available_filter_functions_addrs}}} that works just the same as available_filter_functions but also shows the addresses of the functions like kallsyms, except that it gives the address of where the fentry/mcount jump/nop is. This is used by BPF to make it easier to attach BPF programs to ftrace hooks [[https://git.kernel.org/linus/83f74441bcb16c324b7bdba0ab4261a44cb1ac21|commit]] * osnoise: Add the file {{{/sys/kernel/tracing/osnoise/per_cpu/cpu/timerlat_fd}}} that when a application opens it, it becomes the task that the timer lat tracer traces [[https://git.kernel.org/linus/4998e7fda149d2392ea6aa9879299d8a32019dbe|commit]], [[https://git.kernel.org/linus/cb7ca871c883eed5132e106cda44b2b060e6f52e|commit]], [[https://git.kernel.org/linus/e88ed227f639ebcb31ed4e5b88756b47d904584b|commit]] * tracing: Add fprobe/tracepoint events [[https://git.kernel.org/linus/cb16330d12741f6dae56aad5acf62f5be3a06c4e|commit]], [[https://git.kernel.org/linus/30460c21ed40a10bf541c4e93ba5e80bb4aac5da|commit]], [[https://git.kernel.org/linus/334e5519c3757019cc591d4539d5aca199bdb114|commit]], [[https://git.kernel.org/linus/4d42a7656d871d80645385b0ac08eff9931c749e|commit]], [[https://git.kernel.org/linus/e2d0d7b2f42dcaf924e9c891c91c9aa22cbbebce|commit]], [[https://git.kernel.org/linus/1b8b0cd754cdbb54058165992456368495a695ac|commit]], [[https://git.kernel.org/linus/b576e09701c7d045bbe5cd85d53e2f34426aa214|commit]], [[https://git.kernel.org/linus/18b1e870a49671745c31434b18bcfdd6f20cb6a1|commit]], [[https://git.kernel.org/linus/fd26290ec89d4eae8570e027df3b8c519d285fd0|commit]], [[https://git.kernel.org/linus/6335265ef2fe95c09d4a123e769778274d86f115|commit]], [[https://git.kernel.org/linus/4231f30fcc34ad91d7faa58fe709992497f86c64|commit]], [[https://git.kernel.org/linus/590e7b2804152eeb4f9c2d7d8f5c0f5ea47cca3d|commit]] * New metricgroup output in perf stat default mode [[https://git.kernel.org/linus/e4c4e8a538a0db071d291bc2dca487e1882a7d4f|commit]], [[https://git.kernel.org/linus/e15e4a3d7da9521632c39a1f1bfa1e30f80e0415|commit]], [[https://git.kernel.org/linus/969a4661440808a820361c25a59d59cd9d3a9978|commit]], [[https://git.kernel.org/linus/556fd664d666c0cc9d5b0d52851b0480c51cf59e|commit]], [[https://git.kernel.org/linus/b0a9e8f81fc45e6d3c9ddf290dabd7f4610f2939|commit]], [[https://git.kernel.org/linus/6a80d794d796d22910c03d3e52a3bf0d885326a7|commit]], [[https://git.kernel.org/linus/e2595550177d8ea42083c9fd8e8a9d4acd5604ec|commit]] * perf: CXL 3.0 Performance Monitoring Unit support [[https://git.kernel.org/linus/143f83e2003a4c3ca0c2558254129569048e0759|commit]], [[https://git.kernel.org/linus/d717d7f3df18494baafd9595fb4bcb9c380d7389|commit]], [[https://git.kernel.org/linus/1ad3f701c3999904d0c6cdea299df16c6cd9878d|commit]], [[https://git.kernel.org/linus/5d7107c72796df3be2ba574f1cf6eca75c60d5ef|commit]], [[https://git.kernel.org/linus/c2b34d442226b69e519eb0ba61939a74d91712d4|commit]] * perf lock contention: Add CSV style output support [[https://git.kernel.org/linus/7b83d597c8cab98caf18e2a3e2198c33068fcbad|commit]], [[https://git.kernel.org/linus/69c5c9930d722dee4312a7427f89733bfb4bf984|commit]], [[https://git.kernel.org/linus/f6027053f82c9b533bb306bff64e4e8c8f92e9e4|commit]], [[https://git.kernel.org/linus/2aefb4cc904f17aad03acc3e05f44cef7801c497|commit]] * perf script: Have consistent output for symbol address [[https://git.kernel.org/linus/0e20f4311254193fbf9eebafb4dc5c922a885397|commit]], [[https://git.kernel.org/linus/2b433fadb1db6f64a9edf22de668118de7e287ed|commit]], [[https://git.kernel.org/linus/af9eb56bfed273a85b8c3f99d3ed7ff979c36ae0|commit]] * perf pmus: Add placeholder core PMU [[https://git.kernel.org/linus/628eaa4e877af8230ef7326d378e15d511c506ba|commit]] * PMU refactoring and improvements [[https://git.kernel.org/linus/7d1b529f164d33ad4514b272bcec65036873d717|commit]], [[https://git.kernel.org/linus/74c075cab1e793fe8418f15eb6e6c88d2197ce1d|commit]], [[https://git.kernel.org/linus/4bf7e81aadfdfb6f2e5197c5d3cf50ab9ddfb286|commit]], [[https://git.kernel.org/linus/e20d1f2fa29707d1fad7a667737257b9494043fd|commit]], [[https://git.kernel.org/linus/1578e63d3ac292abb95767ec197a4ddd094523ce|commit]], [[https://git.kernel.org/linus/ef91871c960ed1e9e790ed66840835fac87614b7|commit]], [[https://git.kernel.org/linus/42249160cc6837396acf3358bc724612ce24d035|commit]], [[https://git.kernel.org/linus/8ec984d53714dfa538f3f5b1e22a309ac18edf63|commit]], [[https://git.kernel.org/linus/5ac72634482143a8be5e04e5d09a2026f6a94315|commit]], [[https://git.kernel.org/linus/b4388dfa3ae5aca7d4d3bbc9b80fe5e483ef78e9|commit]], [[https://git.kernel.org/linus/7b100989b4f6bce7090ef89badf4091b1730d14c|commit]], [[https://git.kernel.org/linus/b167b530eb83dfd791061e1d312236bffde772a4|commit]], [[https://git.kernel.org/linus/4ced2c246e2c9c90a7ea96f4bcd31a0b696b8dd6|commit]], [[https://git.kernel.org/linus/ab1a1c77a38ad1efea4396f271ccde53b58c1b8e|commit]], [[https://git.kernel.org/linus/dd64647ecbba7572e41489c9bc54980aeb434bc2|commit]], [[https://git.kernel.org/linus/1215795cebb24578afd378b23d206014327558c4|commit]], [[https://git.kernel.org/linus/5d9fb6667642ce1e382afd37184ec6acf1bb7626|commit]], [[https://git.kernel.org/linus/178ddf3bad981380ad284ba1d70013cf1fdef981|commit]], [[https://git.kernel.org/linus/ec6a4a8bd3a554674eaa4ac3f423e1a5347427ee|commit]], [[https://git.kernel.org/linus/abe9544ea78a2e0c3cc92b4410a57a9c0732293f|commit]], [[https://git.kernel.org/linus/597a4276fb326163b90754ef7b2a550a6b2b4054|commit]], [[https://git.kernel.org/linus/f24ebe8053514936d4e8cffb707af3a275fa32e5|commit]], [[https://git.kernel.org/linus/875375ea91d8044baddcb62d8333b58f687de444|commit]], [[https://git.kernel.org/linus/1eaf496ed386934f1c2439a120fe84a05194f91a|commit]], [[https://git.kernel.org/linus/15c57a8037c9683fb5c09ecc576a333c02d6f105|commit]], [[https://git.kernel.org/linus/9d6a1df9b2eef52ad03a594b1237a16dbbe34e83|commit]], [[https://git.kernel.org/linus/8e7d8a2eef3e48223a46e3ba676ce01a881a8519|commit]], [[https://git.kernel.org/linus/1dd5f78d8337a7a69c9b76886a82e87524e56a51|commit]], [[https://git.kernel.org/linus/002c4845758e87efee8ec6ba6e6f9f1bcf0c3330|commit]], [[https://git.kernel.org/linus/94f9eb95d954bee0149fd1ce84c239c9e09ae9d8|commit]], [[https://git.kernel.org/linus/6b9da260703096b366ec0fe78d87053e8f577776|commit]] * perf annotate browser: Add '<' and '>' keys for navigation [[https://git.kernel.org/linus/6d491b37e70daeb963e3b589b746d99b8b4b1357|commit]] * perf stat: Add "--per-cache" aggregation option and document it [[https://git.kernel.org/linus/aab667ca8837e45fda0204bed7b59abd634c0b2b|commit]] * Add "(fault)" name injection to kernel probes [[https://git.kernel.org/linus/4ed8f337dee32df71435689c19d22e4ee846e15a|commit]] = Virtualization = * xen: speed up grant-table reclaim [[https://git.kernel.org/linus/c04e9894846c663f3278a414f34416e6e45bbe68|commit]] * xen/evtchn: Introduce new IOCTL to bind static evtchn [[https://git.kernel.org/linus/58f6259b7a08f8d47d4629609703d358b042f0fd|commit]] * vhost: multiple worker support [[https://git.kernel.org/linus/3e11c6eb6ab07de36cde49594e16fed044bf276e|commit]], [[https://git.kernel.org/linus/c011bb669ddc22b0374d747d90467d1b2f80bc05|commit]], [[https://git.kernel.org/linus/737bdb643c4f488defd6c226eb40de2c8f6e3f75|commit]], [[https://git.kernel.org/linus/9784df151a601fa1d6d146f8a7f35a2d875e2976|commit]], [[https://git.kernel.org/linus/0921dddcb5898030f0951816ed685a958acfbde2|commit]], [[https://git.kernel.org/linus/a6fc04739be7cd8a744658fd2734906a6a0eb400|commit]], [[https://git.kernel.org/linus/493b94bf5ae0f6d67bd3728e8c723800d99a13ad|commit]], [[https://git.kernel.org/linus/78af31cc4e147ddb8a7b0db800837ad5db3e2a58|commit]], [[https://git.kernel.org/linus/48ae70dd4d9c448d1d628b4ccbdd1d912cc24215|commit]], [[https://git.kernel.org/linus/0a3eac5239d2ddcfef8cc5b0c40095981536db90|commit]], [[https://git.kernel.org/linus/27eca189114235fde84980b8ee044f42c1d59519|commit]], [[https://git.kernel.org/linus/cef25866f41c45a01a933adb032b0dcfb25b847a|commit]], [[https://git.kernel.org/linus/1cdaafa1b8b4ef6052869c86ba2b41c0cff05957|commit]], [[https://git.kernel.org/linus/c1ecd8e9500797748ae4f79657971955d452d69d|commit]], [[https://git.kernel.org/linus/d74b55e6550225ad0a28f0faa590cc9f780ba392|commit]], [[https://git.kernel.org/linus/228a27cf78afc63a18f744a56740d26570ecaec0|commit]] = Cryptography = * jitter: SHA-3 conditioner [[https://git.kernel.org/linus/bb897c55042e9330bcf88b4b13cbdd6f9fabdd5e|commit]], [[https://git.kernel.org/linus/69f1c387ba700f69e9fdad6d6ce44a3bb774dbff|commit]] * Add akcipher interface without SGs [[https://git.kernel.org/linus/addde1f2c966833f210e9318b17050293086b8c6|commit]], [[https://git.kernel.org/linus/6cb8815f41a966b217c0d9826c592254d72dcc31|commit]], [[https://git.kernel.org/linus/b6d0695bb3c24ebe8dbaaaf61de791d5821a00ac|commit]], [[https://git.kernel.org/linus/e5221fa6a355112ddcc29dc82a94f7c3a1aacc0b|commit]], [[https://git.kernel.org/linus/63ba4d67594ad05b2c899b5a3a8cc7581052dd13|commit]] = Security = * fsverity * Use shash API instead of ahash API [[https://git.kernel.org/linus/8fcd94add6c5c93ed3b9314456e8420914401530|commit]] * improve documentation for builtin signature support [[https://git.kernel.org/linus/672d6ef4c775cfcd2e00172e23df34e77e495e85|commit]] * selinux: deprecated fs ocon [[https://git.kernel.org/linus/8bfbd046a3a8883c476eab1de6eb526f62bdc9d1|commit]] = Networking = * ipconfig: Allow DNS to be overwritten by DHCPACK [[https://git.kernel.org/linus/81ac2722fa198fbfac62575259cf85163f3eeef0|commit]] * Add {{{SCM_PIDFD}}} and {{{SO_PEERPIDFD}}}. {{{SCM_PIDFD}}} is a new type of CMSG type analogical to {{{SCM_CREDENTIALS}}}, but it contains pidfd instead of plain pid, which allows programmers not to care about PID reuse problem. {{{SO_PEERPIDFD}}} allows to get pidfd of peer socket holder pidfd, analogous of {{{SO_PEERCRED}}} which allows to get plain PID [[https://git.kernel.org/linus/6ae930d9dbf2d093157be33428538c91966d8a9f|commit]], [[https://git.kernel.org/linus/5e2ff6704a275be009be8979af17c52361b79b89|commit]], [[https://git.kernel.org/linus/7b26952a91cf65ff1cc867a2382a8964d8c0ee7d|commit]], [[https://git.kernel.org/linus/eee3a0e93924f2aab8ebaa7f2e26fd0f3b33f9e7|commit]], [[https://git.kernel.org/linus/ec80f488252b9ce0536c397364dd2c9cc820c1e1|commit]], [[https://git.kernel.org/linus/97154bcf4d1b7cabefec8a72cff5fbb91d5afb7b|commit]] * IEEE 802.15.4 scan support [[https://git.kernel.org/linus/5d8a8b324ff48c9d9fe4f1634e33dc647d2481b4|commit]], [[https://git.kernel.org/linus/1293fccc9e892712d910ec96079d3717307f1d2d|commit]], [[https://git.kernel.org/linus/9d70c7e10a8953477956570cd4eba14ad404d8a7|commit]], [[https://git.kernel.org/linus/898db3b8f9456608410089c52082ab42a9319217|commit]], [[https://git.kernel.org/linus/cfa1e01ecf516511bfc0fa87f96aa19bc6ee401f|commit]], [[https://git.kernel.org/linus/731cddce6dd110fb2cdee34eddb48599e7251517|commit]], [[https://git.kernel.org/linus/b8e508f42138b42b44f65679d02aad3c200aff68|commit]], [[https://git.kernel.org/linus/79c37ca73a6e9a33f7b2b7783ba6af07a448c8a9|commit]], [[https://git.kernel.org/linus/c265a3a6690b093e542aceb4a7bf8bf6c577e42b|commit]], [[https://git.kernel.org/linus/be8c6d86d558860bbc493ad3fbc51fc96ab0c2e4|commit]], [[https://git.kernel.org/linus/983a974b40f66d202b075ab8ac584c698a3fc141|commit]], [[https://git.kernel.org/linus/bde000ae459f2829ed88e967f7fa7665b4e3afaf|commit]], [[https://git.kernel.org/linus/226730e1aa2844b6e5499a6fe6bea4db17a894a8|commit]], [[https://git.kernel.org/linus/2b13db13af50a5dcdb944723c828915a50f0c3b2|commit]], [[https://git.kernel.org/linus/f0feb34904735ffa21fe7b0c50f9f9527ec74b7a|commit]], [[https://git.kernel.org/linus/ddd9ee7cda122ac55571b8b11b51ef1e71918b63|commit]], [[https://git.kernel.org/linus/44def58f5835bbfaf81902c88460fd86a551f4b7|commit]], [[https://git.kernel.org/linus/e29e3c7ce6d4b2f164ebd717e4794c626fc1c954|commit]], [[https://git.kernel.org/linus/822452fb6c696bb2331649ce6fbb49e49261cc71|commit]], [[https://git.kernel.org/linus/1af3de62f03f651c5e50c0e00f8fed34d07b9df3|commit]] * Enable socket busy polling on -RT [[https://git.kernel.org/linus/c857946a4e262e0f798fe7625fadf85bf1190fc4|commit]] * TCP * Make the first N SYN RTO backoffs linear [[https://git.kernel.org/linus/ccce324dabfe2143519daf50ed8b1ef1d0c542f7|commit]] * Enforce receive buffer memory limits by allowing the tcp window to shrink [[https://git.kernel.org/linus/b650d953cd391595e536153ce30b4aab385643ac|commit]] * wifi * Allow disabling SMPS debugfs controls [[https://git.kernel.org/linus/bc1be54d7eb4ab4c6bd44e9f73d5b44b6c8e761c|commit]] * Disable SMPS override via debugfs [[https://git.kernel.org/linus/7b3b9ac899b54f53f7c9fc07e1c562f56b2187fa|commit]], [[https://git.kernel.org/linus/f1871abd27641c020298b5c7654e1d8341f22e5f|commit]], [[https://git.kernel.org/linus/98d8a00327b2b651f2a00d6d16c6df886fdbf101|commit]], [[https://git.kernel.org/linus/6cf963edbbd3b279185e28e4864c9698ffaa23c3|commit]], [[https://git.kernel.org/linus/6d543b34dbcf6ec30064ae62a88faf60dbff4f8a|commit]] * xstats for tc-taprio [[https://git.kernel.org/linus/6c1adb650c8d85c6cb471dbc900c2468f462995a|commit]], [[https://git.kernel.org/linus/5353599aa74524acbf48c5e78683534f6bdd1ed3|commit]], [[https://git.kernel.org/linus/4802fca8d1af9687a0fd71b729d96726f05192ad|commit]] * pppoe: make number of hash bits configurable [[https://git.kernel.org/linus/96ba44c637b0d30535374f328186a370accab208|commit]] * Support extack Support more VFs in RTM_GETLINK in dump and simplify ethtool uAPI [[https://git.kernel.org/linus/5ab8c41cef30d8b6160a80b69d2eb39d570491ac|commit]], [[https://git.kernel.org/linus/500e1340d1d2695de3f15fc0b3781f593a77acc2|commit]] * ynl: generate code for the ethtool family [[https://git.kernel.org/linus/2d7be507d65e90099c76631bf0448d0b30f7f203|commit]], [[https://git.kernel.org/linus/008bcd6835a2f00a46bc91cad32de50d57d1b196|commit]], [[https://git.kernel.org/linus/33eedb0071c84ee47ab329a90e8e7b0653bcba33|commit]], [[https://git.kernel.org/linus/ed2042cc77f1cef4850a891dc93d80fb1aa6c955|commit]], [[https://git.kernel.org/linus/d4813b11d679c80d4c3e20d27dafcd6d3317a69c|commit]], [[https://git.kernel.org/linus/dddc9f53da3e1e359e56edc8da301e145e3b97df|commit]], [[https://git.kernel.org/linus/2c9d47a095f7d0380e35064121bc8838dbf136cb|commit]], [[https://git.kernel.org/linus/180ad455273a7d3ba95ec21d28c1fee6766f166d|commit]], [[https://git.kernel.org/linus/37c852222712e1968da858961709a179150acd41|commit]], [[https://git.kernel.org/linus/709d0c3b3d4c385793fd12cc57e400c8e036e744|commit]], [[https://git.kernel.org/linus/68335713d2eaf8e3e064c584b39da45fdee6e365|commit]], [[https://git.kernel.org/linus/f561ff232a6b502bda020ac47200e88f0bc5f98a|commit]] * Support more VFs in {{{RTM_GETLINK}}} [[https://git.kernel.org/linus/fa0e21fa44438a0e856d42224bfa24641d37b979|commit]] * netfilter * nft_exthdr: add boolean DCCP option matching [[https://git.kernel.org/linus/b9f9a485fb0eb80b0e2b90410b28cbb9b0e85687|commit]] * Add a GC transaction API to replace the former attempt to deal with races between control plane and GC [[https://git.kernel.org/linus/5f68718b34a531a556f2f50300ead2862278da26|commit]] * Adapt ntables set backend to use GC transaction API [[https://git.kernel.org/linus/f6c383b8c31a93752a52697f8430a71dcbc46adf|commit]] * Netfilter/IPVS updates for net-next [[https://git.kernel.org/linus/04292c695f82b6cf0d25dd5ae494f16ddbb621f6|commit]], [[https://git.kernel.org/linus/4f325e26277b6a1381235008ca6fa97e6cc8f43b|commit]], [[https://git.kernel.org/linus/de6843be3082d416eaf2a00b72dad95c784ca980|commit]], [[https://git.kernel.org/linus/78aa23d0081b2029a5763c4f7d396bf2666c0c87|commit]], [[https://git.kernel.org/linus/96b2ef9b16cb302d0b47c5670d30a05963e0e1e3|commit]], [[https://git.kernel.org/linus/4589725502871e77d06464f731f92fd9173e2be6|commit]], [[https://git.kernel.org/linus/079cd633219d7298d087cd115c17682264244c18|commit]], [[https://git.kernel.org/linus/a412dbf40ff37515acca4bba666f5386aa37246e|commit]] * Netfilter updates for net-next [[https://git.kernel.org/linus/a4878eeae39048e6abe85891c714b49dc13fc08c|commit]], [[https://git.kernel.org/linus/d4b7f29eb85c93893bc27388b37709efbc3c9a0e|commit]], [[https://git.kernel.org/linus/b9f9a485fb0eb80b0e2b90410b28cbb9b0e85687|commit]], [[https://git.kernel.org/linus/61e03e912da8212c3de2529054502e8388dfd484|commit]], [[https://git.kernel.org/linus/8865aea0471c512c2d94220c60a0083cefcb9348|commit]], [[https://git.kernel.org/linus/d671fd82eaa9bceedd48ea2b0679a9a6bbcd6532|commit]], [[https://git.kernel.org/linus/fa502c86566680ac62bc28ec883a069bf7a2aa5e|commit]], [[https://git.kernel.org/linus/a10fa0b489d627911895b64c6530636748dd7911|commit]], [[https://git.kernel.org/linus/e05b5362166b18a224c30502e81416e4d622d3e4|commit]] * mptcp: refactor first subflow init [[https://git.kernel.org/linus/21e43569685de4ad773fb060c11a15f3fd5e7ac4|commit]], [[https://git.kernel.org/linus/7a486c443c89bd949f7a64e0040f704e02710b3c|commit]], [[https://git.kernel.org/linus/617612316953093bc859890e405e1b550c27d840|commit]], [[https://git.kernel.org/linus/a2702a076e73787db660fb8fd07d26a1a3108358|commit]], [[https://git.kernel.org/linus/ddb1a072f858704b3555876877ca38c5b103a215|commit]], [[https://git.kernel.org/linus/8d547809a5d74aacf022d1df7a508c631088aaec|commit]], [[https://git.kernel.org/linus/711bdd5141d81ab21dbe0a533024d594210d5ba4|commit]], [[https://git.kernel.org/linus/e76c8ef5cc5b77debe711717f61a3fbf24904873|commit]], [[https://git.kernel.org/linus/e3d9387f002612093dbeaa272f7930ce5108033f|commit]], [[https://git.kernel.org/linus/85c3222dddc6697dc7513623983a2ba748ba710e|commit]] * mptcp: add some more diag info [[https://git.kernel.org/linus/5dcff89e14555a4ee6cfa132b82f7d13dcb1e80a|commit]], [[https://git.kernel.org/linus/6f06b4d4d1cc676a3f9d947f931ec3866b6c4f6c|commit]], [[https://git.kernel.org/linus/492432074e4fce4f8880213bf009b47adbf94a3a|commit]], [[https://git.kernel.org/linus/aa723d5b3541bfcf9b7493fc1c47e6af6a11b765|commit]] * ieee802154: Active scan support [[https://git.kernel.org/linus/b8866426411c34489b0265bf720b4d917c8d4795|commit]], [[https://git.kernel.org/linus/2622e785f7579e8c92d0fcf55e9d6b3955e4f1a6|commit]], [[https://git.kernel.org/linus/e2c3e6f53a7a8a00ffeed127cfd1b397c3b016f8|commit]], [[https://git.kernel.org/linus/51147284eb7d685a689a5d1b7772faec278a2338|commit]], [[https://git.kernel.org/linus/26f88e4ebd4fbe96fb4326408e2af05644716d76|commit]], [[https://git.kernel.org/linus/d021d218f6d924ff5417c64b2e41d184e4bb32d3|commit]], [[https://git.kernel.org/linus/e29e3c7ce6d4b2f164ebd717e4794c626fc1c954|commit]], [[https://git.kernel.org/linus/ed3557c947e1d4164d370cc2d69dd7eb92706f0a|commit]], [[https://git.kernel.org/linus/44def58f5835bbfaf81902c88460fd86a551f4b7|commit]], [[https://git.kernel.org/linus/5755cd4d9432779027771e43e51d81a2994ed795|commit]], [[https://git.kernel.org/linus/57588c71177f0bfc08509c2c3a9bfe32850c0786|commit]], [[https://git.kernel.org/linus/9bc114504b07207d671593f6f6d787d55dcf91bd|commit]], [[https://git.kernel.org/linus/3accf4762734a69ebd03cba989249c78ac7dfc7e|commit]], [[https://git.kernel.org/linus/822452fb6c696bb2331649ce6fbb49e49261cc71|commit]], [[https://git.kernel.org/linus/1af3de62f03f651c5e50c0e00f8fed34d07b9df3|commit]] * splice work * Replace sendpage with sendmsg(MSG_SPLICE_PAGES) [[https://git.kernel.org/linus/0bcc4025550403ae28d2984bddacafbca0a2f112|commit]], [[https://git.kernel.org/linus/b841b901c452d92610f739a36e54978453528876|commit]], [[https://git.kernel.org/linus/5da4d7b8e6dfd5bd7d61f7fe1338b1e5d5b4f76c|commit]], [[https://git.kernel.org/linus/c5c37af6ecad955acad82a440b812eb9cd73f77f|commit]], [[https://git.kernel.org/linus/ebf2e8860eea66e2c4764316b80c6a5ee5f336ee|commit]], [[https://git.kernel.org/linus/c2ff29e99a764769eb2ce3a1a5585013633ee9a6|commit]], [[https://git.kernel.org/linus/5367f9bbb86a9fa377f8cfc673d9b8a446f3e917|commit]], [[https://git.kernel.org/linus/7ac7c987850c3ec617c778f7bd871804dc1c648d|commit]], [[https://git.kernel.org/linus/f9e7a5fa51fbb6fcb9c1c7e2c89dd7df9e7fe253|commit]], [[https://git.kernel.org/linus/73d7409cfdad7fd08a9203eb2912c1c77e527776|commit]], [[https://git.kernel.org/linus/fb800fa4c1f5aee1238267252e88a7837e645c02|commit]], [[https://git.kernel.org/linus/3dc8976c7ad6ec46954eb99076551e2a2c4114da|commit]], [[https://git.kernel.org/linus/45e5be844ab6b2845b6d2935b61278c5ecae7d38|commit]], [[https://git.kernel.org/linus/26acc982c1c5c2835b0c6981d896329efa3557c3|commit]], [[https://git.kernel.org/linus/5bb3a5cb3e217b838e85661f527818e16ce61bec|commit]], [[https://git.kernel.org/linus/2dc334f1a63a8839b88483a3e73c0f27c9c1791c|commit]], [[https://git.kernel.org/linus/a3bbdc52c38fa95488ca713e54bcb40699c26acf|commit]], [[https://git.kernel.org/linus/e52828cc0109f511bba1dfb41292833c2fd3b6e6|commit]], [[https://git.kernel.org/linus/de17c6857301f1f5b0e71dd064bb816d6628a91d|commit]], [[https://git.kernel.org/linus/c729ed6f5be57b4d164dbbc415554c066e29306b|commit]], [[https://git.kernel.org/linus/345ee3e8126aa042e8b4c61ed9eca42e9334b09e|commit]], [[https://git.kernel.org/linus/c336a79983c7e67a0a163ab4feafa3c273d915be|commit]], [[https://git.kernel.org/linus/2f8bc2bbb0fa87bcf7fb9eeb65eb6d79c5a08895|commit]], [[https://git.kernel.org/linus/dc97391e661009eab46783030d2404c9b6e6f2e7|commit]] * Rewrite splice-to-socket, fix SPLICE_F_MORE and handle MSG_SPLICE_PAGES in AF_TLS [[https://git.kernel.org/linus/4fe38acdac8a71f7cccf347a2e9902bc818ecef7|commit]], [[https://git.kernel.org/linus/81840b3b91aad06053ad2712f3da5d0448eeb0e8|commit]], [[https://git.kernel.org/linus/2dc334f1a63a8839b88483a3e73c0f27c9c1791c|commit]], [[https://git.kernel.org/linus/2bfc66850952b6921b2033b09729ec59eabbc81d|commit]], [[https://git.kernel.org/linus/951ace9951382a90a56e98590e0b9b651e7579b4|commit]], [[https://git.kernel.org/linus/219d92056ba36ca9f79a72e8544874d1bf35b21d|commit]], [[https://git.kernel.org/linus/5da4d7b8e6dfd5bd7d61f7fe1338b1e5d5b4f76c|commit]], [[https://git.kernel.org/linus/45e5be844ab6b2845b6d2935b61278c5ecae7d38|commit]], [[https://git.kernel.org/linus/3dc8976c7ad6ec46954eb99076551e2a2c4114da|commit]] * Switch over users of sendpage() and remove it [[https://git.kernel.org/linus/f8dd95b29d7ef08c19ec9720564acf72243ddcf6|commit]], [[https://git.kernel.org/linus/c729ed6f5be57b4d164dbbc415554c066e29306b|commit]], [[https://git.kernel.org/linus/e52828cc0109f511bba1dfb41292833c2fd3b6e6|commit]], [[https://git.kernel.org/linus/c336a79983c7e67a0a163ab4feafa3c273d915be|commit]], [[https://git.kernel.org/linus/2f8bc2bbb0fa87bcf7fb9eeb65eb6d79c5a08895|commit]], [[https://git.kernel.org/linus/86d7bd6e66e9925f0f04a7bcf3c92c05fdfefb5a|commit]], [[https://git.kernel.org/linus/dc97391e661009eab46783030d2404c9b6e6f2e7|commit]], [[https://git.kernel.org/linus/b848b26c6672c9b977890ba85f5a155e5eb221f0|commit]] * Support abstract unix socket addresses with the rpcbind daemon [[https://git.kernel.org/linus/4388ce05fa38b17e7d9ddabffcb16ed778ee417c|commit]], [[https://git.kernel.org/linus/626590ea4c93814808a8c4e5ffd2aa0d27f05d4b|commit]] * packet scheduler * flower: add cfm support [[https://git.kernel.org/linus/d7ad70b5ef5ab8dedaa403e0e5c711ca1aa8cb14|commit]], [[https://git.kernel.org/linus/7cfffd5fed3e385010583840402f0bf66c4ed147|commit]], [[https://git.kernel.org/linus/1668a55a73f5a3ddde1019695223eed8e23b9436|commit]] * Add layer 2 miss indication and filtering. It adds a single bit to the tc skb extension to indicate that a packet encountered a layer 2 miss in the bridge and extends flower to match on this metadata. This is required for non-DF (Designated Forwarder) filtering in EVPN multi-homing which prevents decapsulated BUM packets from being forwarded multiple times to the same multi-homed host [[https://git.kernel.org/linus/7b4858df3bf7a8d43ed6b58f411543a040c56f10|commit]], [[https://git.kernel.org/linus/d5ccfd90df7fd0a50038a68634c131b8fd081bac|commit]], [[https://git.kernel.org/linus/1a432018c0cdf51a77a2e134b19ba6cab4c29c89|commit]], [[https://git.kernel.org/linus/f4356947f0297b0962fdd197672db7edf9f58be6|commit]], [[https://git.kernel.org/linus/d04e265096784b4cebeb627b21f0f27410d20dc4|commit]], [[https://git.kernel.org/linus/0b9cd74b8d1e07111a048e8eeb15f54f2ed9cbe2|commit]], [[https://git.kernel.org/linus/caa4c58ab5d9078097067cdd8a350ff6796df0ba|commit]], [[https://git.kernel.org/linus/8c33266ae26aa462409f8959624a95aea7831763|commit]] * openvswitch: add support for l4 symmetric hashing [[https://git.kernel.org/linus/e069ba07e6c7af69e119316bc87ff44869095f49|commit]] * xsk: Honor {{{SO_BINDTODEVICE}}} on bind [[https://git.kernel.org/linus/f7306acec9aae9893d15e745c8791124d42ab10a|commit]] * vxlan: Add nolocalbypass option to vxlan [[https://git.kernel.org/linus/69474a8a5837be63f13c6f60a7d622b98ed5c539|commit]] = Architectures = == ARM == * New !SoCs * Samsung Exynos 4212 makes its return after the Samsung Galaxy Express phone is addded at last. The SoC support was originally added in 2012 but removed again in 2017 as it was unused at the time. Also add Samsung Galaxy Tab 3 8.0 boards [[https://git.kernel.org/linus/ac9a78681b921877518763ba0e89202254349d1b|commit]], [[https://git.kernel.org/linus/a1ca56099819f4b2c52bfe23b7be13b0d53a2a4a|commit]], [[https://git.kernel.org/linus/0070e0fcc522aebe2461714074f7637cab70e688|commit]], [[https://git.kernel.org/linus/8a9e495b3a07e04a7d86d9c706a38e69863348ae|commit]], [[https://git.kernel.org/linus/5f7255459587c5f0297eaa2dfb551f936789b082|commit]], [[https://git.kernel.org/linus/043dc30113758f6b18194227447979e100d3061f|commit]], [[https://git.kernel.org/linus/7e98d368887c08a6cb79e79684f851e9bd9a3550|commit]], [[https://git.kernel.org/linus/64f92c24aa57f8bfc389fe6638f0ffb7e4605928|commit]], [[https://git.kernel.org/linus/6175f658ae07804f7c347903b8c6781e0914d3e6|commit]], [[https://git.kernel.org/linus/b77904ba177a9c67b6dbc3637fdf1faa22df6e5c|commit]], [[https://git.kernel.org/linus/b8039b4e40094e81351221275ed61ee7643cdb91|commit]], [[https://git.kernel.org/linus/b4354b9761437ba136329e3f2ea1386e8d483e1c|commit]], [[https://git.kernel.org/linus/41bf1a9f9fbdec5dd1ba69fe26157f42e44dcee4|commit]], [[https://git.kernel.org/linus/514a935fd0d4d522a08257f5acbc5439174c7cf0|commit]] * Amlogic C3 is a Cortex-A35 based smart IP camera chip [[https://git.kernel.org/linus/02310be6f080071e1b9e2021fd6dd655bd842aad|commit]] * Qualcomm MSM8939 (Snapdragon 615), a more featureful variant of the still common MSM8916 (Snapdragon 410), plus support for two devices [[https://git.kernel.org/linus/273a3dc13eb746c7b7abe7ea682811a8dacc89d6|commit]], [[https://git.kernel.org/linus/61550c6c156c3715baf54ab2cdd678c8c35b3803|commit]], [[https://git.kernel.org/linus/1e6dfe47ba020a192d743c7c820b469fd7253813|commit]], [[https://git.kernel.org/linus/f1134f738fad68c51a44216ab0f68a0f086a1a5e|commit]] * Qualcomm SC8180x (Snapdragon 8cx), one of their earlier high-end laptop chips, used in the Lenovo Flex 5G, which is added along with the reference board [[https://git.kernel.org/linus/332dcd71d14527c1d423e29ec3b1e03d0e5eeb3e|commit]], [[https://git.kernel.org/linus/ef6673e8363a61ef941bae05c7913a32a104e20b|commit]], [[https://git.kernel.org/linus/8575f197b077001591ef3ff709cdee48785daf0d|commit]], [[https://git.kernel.org/linus/f3be8a111d7eaf4e291b6c2d51dd0adb39934b32|commit]], [[https://git.kernel.org/linus/8d4236f62f3acbc6a0def79106c13fe7344d8238|commit]], [[https://git.kernel.org/linus/0018761d1564f64d567e119fd9156c473b4592d7|commit]], [[https://git.kernel.org/linus/d20b6c84f56ae3a9823cc0fa5cfad330536ba0d1|commit]], [[https://git.kernel.org/linus/b080f53a8f44eeaa9db9628d8d339ab5a2afb5bd|commit]], [[https://git.kernel.org/linus/494dec9b6f541451b2e82905b0eebd9a4ac9848b|commit]], [[https://git.kernel.org/linus/f890ef18640d44ad7b9cc593706c0cf6b7e44d20|commit]], [[https://git.kernel.org/linus/2ce38cc1e8fea4e251e4563e436104369bf3b322|commit]], [[https://git.kernel.org/linus/20dea72a393c6d5572088b8ad01dbb9e9aca64ce|commit]] * Qualcomm SDX75, the latest generation modem chip that is used as a peripherial in phones but can also run a standalone Linux. Unlike the prior 32-bit SDX65 and SDX55, this now has a 64-bit Cortex-A55 [[https://git.kernel.org/linus/f9a97656ace80c617df2d6003c815877c026a9e3|commit]], [[https://git.kernel.org/linus/0b9d94e1f19acd19613386096d924af2333b620a|commit]], [[https://git.kernel.org/linus/9181bb939984f1ad4f958c2be3ea10fd67344165|commit]] * New boards (32 bit) * Marantec Maveo board based on dhcor imx6ull module [[https://git.kernel.org/linus/145e2732a5e979f37a8dcb88b1ed6d3123213dea|commit]] * Endian 4i Edge 200, based on the armv5 Marvell Kirkwood chip [[https://git.kernel.org/linus/5668d088ee4ea05db9daaae0645d1d1f579b20f9|commit]] * Epson Moverio BT-200 AR glasses based on TI OMAP4 [[https://git.kernel.org/linus/445d5be64be82c11505c41d75a4bde3af41d619b|commit]] * PHYTEC STM32MP1-3 Dev board based on STM32MP15 PHYTEC SOM [[https://git.kernel.org/linus/303f3fe1d88f7e45e0ab63f37c0949953b69fc10|commit]], [[https://git.kernel.org/linus/ab7a5cba8231306fce1125b4aadc9edda076902c|commit]], [[https://git.kernel.org/linus/8b8d017f5334f01646ab04bf4c5c33d9886f0d5c|commit]], [[https://git.kernel.org/linus/2f18e152217d9d784e3ca8270547917cfc7d7440|commit]], [[https://git.kernel.org/linus/559b33d2a8c546c06a4e398da064e4a787ea4aab|commit]], [[https://git.kernel.org/linus/37f92e6930bd68830f3299f905fa8f208cc7a250|commit]], [[https://git.kernel.org/linus/d4b5f1a5a099d28169e05e138c91e69e00e5ab11|commit]], [[https://git.kernel.org/linus/e90227f0f3837ae2552196f26cbd48e576690d70|commit]], [[https://git.kernel.org/linus/27538a18a4fcc7e8e20c9f71f9a622685a9d7c7b|commit]], [[https://git.kernel.org/linus/b195a9d7f72139fe5c51e81684a698c7a8a5f34f|commit]] * ICnova ADB4006 board based on Allwinner A20 [[https://git.kernel.org/linus/f3781521af7f9de723a95a6236dcd4cc88854533|commit]], [[https://git.kernel.org/linus/de2bdfb7f79d5c655eb056d459e02be2c7f13c8b|commit]] * New boards (64 bits) * Three boards based on NXP i.MX8: Emtop SoM & Baseboard [[https://git.kernel.org/linus/cbd3ef64eb9d1be9ec647411547bc7bb8409b11f|commit]], [[https://git.kernel.org/linus/d2bf7abfd2352dd45cc99b2ce8c7344ac539a656|commit]], [[https://git.kernel.org/linus/50552fa6ec91531634f29f9f89e09195ba5bfbbc|commit]], NXP i.MX8MM EVKB board [[https://git.kernel.org/linus/e6e81f10ca7455e9c8367c85d9f0bfac5b0c463f|commit]], [[https://git.kernel.org/linus/b87f4ff57db90677f2c52b1c42c900b142231e00|commit]] and i.MX8MP based Gateworks Venice gw7905-2x device [[https://git.kernel.org/linus/0d5b288c2110e8a7c74daf90a5e030c44a08ae1c|commit]] * NVIDIA IGX Orin [[https://git.kernel.org/linus/be06fedcec0d5796f3a383f0e4409cf1296e75a9|commit]], [[https://git.kernel.org/linus/c95711d7dbc41cc0eb8927313f8482b2b07c8280|commit]] and Jetson Orin Nano boards [[https://git.kernel.org/linus/4d92116266485bc05a7d8cde41fba8845074d152|commit]], [[https://git.kernel.org/linus/5f027147e4796e9fc11083b2ad50a91c1ac36ede|commit]], both based on tegra234 * Qualcomm gains support for reference boards on various members of their IPQ networking SoC series [[https://git.kernel.org/linus/273a3dc13eb746c7b7abe7ea682811a8dacc89d6|commit]], as well as the Sony Xperia M4 Aqua phone, the Acer Aspire 1 laptop [[https://git.kernel.org/linus/4a9f8f8f2adaa05abfdec7c588c8dab3281048f0|commit]], [[https://git.kernel.org/linus/43926a3cb19180b4fc6cd0d72bbefc7e93592f91|commit]], [[https://git.kernel.org/linus/39238382c4991d7d9442de4aa6636b19355be1e9|commit]], and the Fxtec Pro1X board [[https://git.kernel.org/linus/0e59d9e210912e037ec28bd057d06481100f0ba5|commit]] on top of the various reference platforms for their new chips * Rockchips support for several newer boards: Indiedroid Nova (rk3588) [[https://git.kernel.org/linus/47ecb3905715a73b336103cc8d225877ab50143e|commit]], [[https://git.kernel.org/linus/725c47d78ddefd04a94391fafa5f99414c7f88db|commit]], [[https://git.kernel.org/linus/3900160e164bcba23a111a3ba80f06aff7764c34|commit]], Edgeble Neural Compute Module 6B (rk3588) [[https://git.kernel.org/linus/3a9181a43b94c119da9f332cfc048d4b42119db3|commit]], [[https://git.kernel.org/linus/5f06c3f508f73a7c9ae804e1f2a655b4d14d73b3|commit]], FriendlyARM NanoPi R2C Plus (rk3328) [[https://git.kernel.org/linus/d211665c5a833873ee37e501af58adbf028e6b5f|commit]], Anbernic RG353PS (rk3566) [[https://git.kernel.org/linus/4d83538aab4ccb59abdbf7f39568761a8b7d7ea1|commit]], Lunzn Fastrhino R66S/R68S (rk3568) [[https://git.kernel.org/linus/1f8af7aa2796653f5c3c0ed5c4df564ac5b7aba3|commit]], [[https://git.kernel.org/linus/c79dab407afddaf405ee8a825f434fab89fbf0c6|commit]], [[https://git.kernel.org/linus/b9f8ca655d803a49266e73e26729882418407166|commit]] * TI K3/AM625 based PHYTEC phyBOARD-Lyra-AM625 board [[https://git.kernel.org/linus/94a58c5f131d7f0cf735af24574b7626aab77ab1|commit]], [[https://git.kernel.org/linus/3443c1c4ed61c3b9d0d211f81ebfa0b559836646|commit]] and Toradex Verdin family with AM62 COM, carrier and dev boards [[https://git.kernel.org/linus/cf04083c59fbd5e0172dfcdc1f3735dcce42fc28|commit]], [[https://git.kernel.org/linus/c3c53dcacd1c7e4c9127a84b40fd632fedb2a0e8|commit]], [[https://git.kernel.org/linus/7f066473e49ace276274336cd95f3c828ae4d2f8|commit]], [[https://git.kernel.org/linus/50e3424fbb77c853d14143949cdc1c6a8152c479|commit]] * Introduce Nuvoton ma35d1 SoC [[https://git.kernel.org/linus/64b88e9ff6c5bed70c57103bb481ea4d7fcc9548|commit]], [[https://git.kernel.org/linus/4cc2272447b806ba17d4fdfdfadcb9d1c5c3fe1f|commit]], [[https://git.kernel.org/linus/2f8b5eb589cb4afa0f16e9a86f50d289729b95da|commit]], [[https://git.kernel.org/linus/476650a64b6b9467250269432f86c637fc35e835|commit]], [[https://git.kernel.org/linus/0545810f7edaf0c2869eccdd97a3694b5a292e1d|commit]], [[https://git.kernel.org/linus/15b53677e786d94a647d77e1544a7a56fbc4584e|commit]], [[https://git.kernel.org/linus/b69af09847323f67aeb8adbe214f5e2b4ad6b97a|commit]], [[https://git.kernel.org/linus/691521a367cf3c7b3add17addbd4daa6384890d6|commit]], [[https://git.kernel.org/linus/e4bb55d6ccf0f774d879630e048deac6a5b8b8a8|commit]], [[https://git.kernel.org/linus/930cbf92db0184e327293d5e7089be0b08d46371|commit]] * Implement Eager Page Splitting for ARM [[https://git.kernel.org/linus/c14d08c5adb25f397638be3d8dd7f4738fb38272|commit]], [[https://git.kernel.org/linus/02f10845f435fbda4aa2385d4c3a9730c4a5c75a|commit]], [[https://git.kernel.org/linus/e7c05540c694b2f53a4d25e360c39984d521ccb1|commit]], [[https://git.kernel.org/linus/26f457142d7ee2da20a5b701862230e4961423d9|commit]], [[https://git.kernel.org/linus/2f440b72e852be428540579b5813ba2b8236578d|commit]], [[https://git.kernel.org/linus/8f5a3eb7513fc4deae511ce91af1c2c23874a8a7|commit]], [[https://git.kernel.org/linus/6bd92b9d8b02a67d67b6d7351ad5c81321a02017|commit]], [[https://git.kernel.org/linus/ce2b60223800c801b4b519c07aff3aa9c75c2b6d|commit]], [[https://git.kernel.org/linus/e7bf7a490c68b0b64bc05aa0a4f09f6044037db1|commit]], [[https://git.kernel.org/linus/3005f6f29447d4f397c2ba67119fdea222ee51d3|commit]], [[https://git.kernel.org/linus/6acf51666d039857421b6f8a3660301c82649fa5|commit]], [[https://git.kernel.org/linus/a12ab1378a88b38f3af8b1a899b7d8526324ba6f|commit]] * Support for Armv8.8 memcpy instructions in userspace [[https://git.kernel.org/linus/af94aad4c9150cca6781ad134c950fb05dff43f9|commit]], [[https://git.kernel.org/linus/b0c756fe996ac930033882ca56410639e5cad1ec|commit]], [[https://git.kernel.org/linus/306b4c9f7120c485607cbbfa1ac3ecec005d8231|commit]], [[https://git.kernel.org/linus/f32c053b9806e42209d40e9ce7ed6f7f8be3be3b|commit]], [[https://git.kernel.org/linus/b1319c0e955933eae918a8a95c5361378ca86968|commit]], [[https://git.kernel.org/linus/3172613fbcbb0634d91d05601f029da0c1466999|commit]], [[https://git.kernel.org/linus/8536ceaa747174ded7983f13906b225e0c33ac51|commit]], [[https://git.kernel.org/linus/8cd076a67dc8eac5d613b3258f656efa7a54412e|commit]], [[https://git.kernel.org/linus/b7564127ffcb1a26854d7515a0918d775e663639|commit]], [[https://git.kernel.org/linus/3e1dedb29d0f70b0bd10bb83001df8c04fc246eb|commit]], [[https://git.kernel.org/linus/d8a324f102cc894fa0df6849504a9023f3ea5da6|commit]] * Permission Indirection Extension support. Not used in this release, enables future features [[https://git.kernel.org/linus/9e9bb6ede00a84275b65bb8d00812c1e24b5fa7e|commit]], [[https://git.kernel.org/linus/00ac84677d8742022e0a15a6b1ffecfa3739f664|commit]], [[https://git.kernel.org/linus/89b6c3ee498859166be6b0f4d6672b51e478b887|commit]], [[https://git.kernel.org/linus/25bc6f32cd716fcc14d4b31f4451cb7044da3053|commit]], [[https://git.kernel.org/linus/c36ad1943f947eb763fb2eb976a5f6f25150113d|commit]], [[https://git.kernel.org/linus/edc25898f0b6cceed6c90b0e79916bd04de7dd19|commit]], [[https://git.kernel.org/linus/2b760046a2d3d630d42bbe416f5d7f43792a1639|commit]], [[https://git.kernel.org/linus/e43454c44232640bdb71a0c9ce49d39e856e5ebb|commit]], [[https://git.kernel.org/linus/fbff560682323dc171c89b4821308af47f166a8f|commit]], [[https://git.kernel.org/linus/86f9de9db1783b32e8812fe21c2c8cf02cf911ff|commit]], [[https://git.kernel.org/linus/8ef67c67e637809a28f0efeb045aa454c7799a51|commit]], [[https://git.kernel.org/linus/f0af339fc408a55c9f48f5d9ca47059ef1eb36b8|commit]], [[https://git.kernel.org/linus/7c302cfbee1f6cc23d831be4b6cf42f331019e68|commit]], [[https://git.kernel.org/linus/fa4cdccaa58224a12591f2c045c24abc5251bb9d|commit]], [[https://git.kernel.org/linus/7df7170965a28c61f80a57b655b0cc10adb88ab9|commit]], [[https://git.kernel.org/linus/eeda243dfeb996fe236c624796630c16237a18d6|commit]], [[https://git.kernel.org/linus/6b776d385562f5d8fd7f90406f0ef47d1e352fa7|commit]], [[https://git.kernel.org/linus/6c792b7d3c2c901cdd76b760d6676510e83c778d|commit]], [[https://git.kernel.org/linus/ee053e03b08e1b287d9a43152e4623a04cb24fe6|commit]], [[https://git.kernel.org/linus/5f0419a0083b304566fa32c27a0f009634a7f703|commit]] * Add SCMI v3.2 Powercap disable support [[https://git.kernel.org/linus/758cd5fc13b20a5874d33b7d381e78408743f587|commit]], [[https://git.kernel.org/linus/aaffb4cacd4c5546778a6e3b4bb2deef2dde4bd1|commit]] * Add STM32MP25 support [[https://git.kernel.org/linus/a45645472f7762df7c5ee4fabde3a86581012ae4|commit]], [[https://git.kernel.org/linus/619f8ca4a73d376bee4307948aea6cd6177aa1df|commit]], [[https://git.kernel.org/linus/c3053382574a5a829c93fb5ab0bb52d20456e745|commit]], [[https://git.kernel.org/linus/9e4e24414cc6b45bd887d746a59691e295431ddf|commit]], [[https://git.kernel.org/linus/5d30d03aaf78586c37100006ba271d045f730bb5|commit]], [[https://git.kernel.org/linus/3b170e1653c05b067ea6ef616ece961b07714f48|commit]], [[https://git.kernel.org/linus/6defdc268916a6f92a24d3495b22cd9c573e4357|commit]], [[https://git.kernel.org/linus/1c89075497bb6347fcda99442f3505043b4d2fdf|commit]], [[https://git.kernel.org/linus/064433f84e6b69055379aa11a4084627537ee64e|commit]], [[https://git.kernel.org/linus/c9cb7e72e293141d0d6c1d74c26788d3a0605172|commit]] * Add STM32MP25 support [[https://git.kernel.org/linus/a45645472f7762df7c5ee4fabde3a86581012ae4|commit]], [[https://git.kernel.org/linus/619f8ca4a73d376bee4307948aea6cd6177aa1df|commit]], [[https://git.kernel.org/linus/c3053382574a5a829c93fb5ab0bb52d20456e745|commit]], [[https://git.kernel.org/linus/9e4e24414cc6b45bd887d746a59691e295431ddf|commit]], [[https://git.kernel.org/linus/5d30d03aaf78586c37100006ba271d045f730bb5|commit]], [[https://git.kernel.org/linus/3b170e1653c05b067ea6ef616ece961b07714f48|commit]], [[https://git.kernel.org/linus/6defdc268916a6f92a24d3495b22cd9c573e4357|commit]], [[https://git.kernel.org/linus/1c89075497bb6347fcda99442f3505043b4d2fdf|commit]], [[https://git.kernel.org/linus/064433f84e6b69055379aa11a4084627537ee64e|commit]], [[https://git.kernel.org/linus/c9cb7e72e293141d0d6c1d74c26788d3a0605172|commit]] * Add SoC ID for IPQ5312 and IPQ5302 [[https://git.kernel.org/linus/7f6e0028a0ca4317aeb070084e72d44ca39ace7e|commit]] * Add Toradex Verdin AM62 [[https://git.kernel.org/linus/cf04083c59fbd5e0172dfcdc1f3735dcce42fc28|commit]], [[https://git.kernel.org/linus/c3c53dcacd1c7e4c9127a84b40fd632fedb2a0e8|commit]], [[https://git.kernel.org/linus/7f066473e49ace276274336cd95f3c828ae4d2f8|commit]], [[https://git.kernel.org/linus/50e3424fbb77c853d14143949cdc1c6a8152c479|commit]] * Add ftrace direct call for arm64 [[https://git.kernel.org/linus/9cdc3b6a299c6314485bcfb695546c11d35dac4c|commit]], [[https://git.kernel.org/linus/0f59dca63bf2c329e9afeddae2a7ff91cce4cb44|commit]], [[https://git.kernel.org/linus/8564c315876ab86fcaf8e7f558d6a84cb2ce5590|commit]], [[https://git.kernel.org/linus/8c3526fb86060cb53a1f4ca6cc44eb036afcf43e|commit]] * Add initial support for RDP418 of IPQ9574 family [[https://git.kernel.org/linus/e3c98aac28bd8964031ebb057cb6e48fc492d256|commit]], [[https://git.kernel.org/linus/d8a83f8d2e730d4e05e8fc8e1faccbee0f95ca12|commit]] * Add initial support for RDP442 of IPQ5332 family [[https://git.kernel.org/linus/68c4c67156ec0e0e1abe11a90e4bb9bfe34ca722|commit]], [[https://git.kernel.org/linus/a782318023f339213f29372e2ecae696c0ca4a69|commit]] * Add initial support for RDP453 of IPQ9574 family [[https://git.kernel.org/linus/b866fba43698479fef5dd301313e8a73e28c789e|commit]], [[https://git.kernel.org/linus/8a465494d62215ca531dfa0cde993779a77e61aa|commit]] * Add initial support for RDP454 of IPQ9574 family [[https://git.kernel.org/linus/add687cbfc3482ca74949b91b251e76792d25652|commit]], [[https://git.kernel.org/linus/2435d79033f5e7400195ed3b31585c0c053de553|commit]] * Add initial support for RDP474 of IPQ5332 family [[https://git.kernel.org/linus/f471f91a0d63539107004a8e826ff017ed4d2588|commit]], [[https://git.kernel.org/linus/f2f644d85c4495474bf7d598023f550f0669306a|commit]], [[https://git.kernel.org/linus/5aa5dbc254be19b7011cb1f9d3cb7e241d5fc986|commit]] * Add support to configure Coresight Dummy subunit [[https://git.kernel.org/linus/9d3ba0b6c056918355cf36094d6ed63cdd01a2ab|commit]], [[https://git.kernel.org/linus/5911ff4559e45532c1f67257c5731b5e13f5e7a3|commit]], [[https://git.kernel.org/linus/3b79104f80036231a40ba5d15c3e329985029a0f|commit]] * Introduce RPM Master stats [[https://git.kernel.org/linus/a77b2a0b12801a232226d227636236ed89b77043|commit]], [[https://git.kernel.org/linus/0be4392435a6a0e16b3eb56a8815ebdbcd44e1a7|commit]] * KVM: arm64: Allow using VHE in the nVHE hypervisor [[https://git.kernel.org/linus/c4b9fd2ac035a55d1fd98322f4360c9d07530597|commit]], [[https://git.kernel.org/linus/35230be87ec6147c20e7433ab9d41e2fd2664631|commit]], [[https://git.kernel.org/linus/0ddc312b7c73049d982d173fee4c5dabf1727ebb|commit]], [[https://git.kernel.org/linus/e2d6c906f0ac69559da887c0a2c3c10070e746c5|commit]], [[https://git.kernel.org/linus/7a26e1f51e3c26a1b4a1f087e2056f1554365682|commit]], [[https://git.kernel.org/linus/9e7462bbe00d8431694720804a50b8f48d8ed0b0|commit]], [[https://git.kernel.org/linus/659803aef48b1a43bf47c6b105f5e3cee6a1501c|commit]], [[https://git.kernel.org/linus/57e784b4079e9499ea1bafd56a0d422252aa2401|commit]], [[https://git.kernel.org/linus/6f617d3aa643e4ed6929f5b582759f4a73804034|commit]], [[https://git.kernel.org/linus/d0daf5a21e635057e87cc05d6bca012157aa3ab7|commit]], [[https://git.kernel.org/linus/cff3b5cf96edbb9e7448bca6261871272922a0df|commit]], [[https://git.kernel.org/linus/6537565fd9b7f169cda025482f6de2646cf7b60a|commit]], [[https://git.kernel.org/linus/75c76ab5a641b64e872b6e136b5edf8a72009cc6|commit]], [[https://git.kernel.org/linus/aca18585db4fd0ed0bd7420eddcdc39a535194fe|commit]], [[https://git.kernel.org/linus/38cba55008e5fab9181302ea5daf79e2070c9998|commit]], [[https://git.kernel.org/linus/ad744e8cb346743dd76425942910c7b75a782ed0|commit]] * KVM: arm64: FF-A proxy for pKVM [[https://git.kernel.org/linus/048be5fea43deef7e96c0de5ba05515c5cbe28cb|commit]], [[https://git.kernel.org/linus/12bdce4f41197a1a97ba1c711f77d557841e13d9|commit]], [[https://git.kernel.org/linus/bc3888a0f4e979ecf9dd8c33a84b8da8cc130790|commit]], [[https://git.kernel.org/linus/9d0c6a9af9e38efa675e565bd181794deca1188a|commit]], [[https://git.kernel.org/linus/f9112eade788439d721ca3032369fb4bf4c7e222|commit]], [[https://git.kernel.org/linus/43609000177625b1c93c55a16a07aee5a4258260|commit]], [[https://git.kernel.org/linus/0e3bcb49c13567adb821c4251dcfd04ad7e1179f|commit]], [[https://git.kernel.org/linus/634d90cf0ac6562f121a4acd4caec36d695d6aa2|commit]], [[https://git.kernel.org/linus/20936cd11479709ccd5de2dc77ac8063cd9bfad8|commit]], [[https://git.kernel.org/linus/0a9f15fd56742b785ba4d06e64976f1f700b807c|commit]] * KVM: arm64: Work around Ampere1 erratum AC03_CPU_38 [[https://git.kernel.org/linus/6df696cd9bc1ceed0e92e36908f88bbd16d18255|commit]], [[https://git.kernel.org/linus/ce4a36225753a1a5f3641bff47ecd32fb394dd22|commit]], [[https://git.kernel.org/linus/082fdfd13841fa4e38a8b073561d182e195d528c|commit]] * MediaTek Helio X10 MT6795 - MT6331/6332 PMIC Wrapper [[https://git.kernel.org/linus/3ba589b5fe684305bf23c1c7e27bb93d4b9552cf|commit]], [[https://git.kernel.org/linus/db9f132122afe5b2a7bb9ba132b9e562b9ca1aef|commit]], [[https://git.kernel.org/linus/2eb27302346520908f89ee4db80fdba12c686278|commit]], [[https://git.kernel.org/linus/41ae95aaa0d7576a5be1d9fd9225beafc179e019|commit]], [[https://git.kernel.org/linus/10f5c409a81a327743f15441f7fed3975e7a5a0f|commit]], [[https://git.kernel.org/linus/b7f61f9c7ec402633c10f6456415cab04d3838d5|commit]] * Robustify boot sequence and add support for WXN [[https://git.kernel.org/linus/010338d729c1090036eb40d2a60b7b7bce2445b8|commit]], [[https://git.kernel.org/linus/0ddc312b7c73049d982d173fee4c5dabf1727ebb|commit]] * Samsung Galaxy Express SGH-I437 Support [[https://git.kernel.org/linus/2b01dda16124696c4b64edcd31e8c2d37c559998|commit]], [[https://git.kernel.org/linus/9579064cfb1bcf8756c8ffb19eb1193c80ec1af2|commit]], [[https://git.kernel.org/linus/80ce22e5cbe705ff2e113890828d44aa0b3ad96f|commit]] * Support hld delayed init based on Pseudo-NMI for [[https://git.kernel.org/linus/810b560e8985725dbd57bbb3f188c231365eb5ae|commit]], [[https://git.kernel.org/linus/730211182ed083898fa5feb4b28459ffac4c9615|commit]], [[https://git.kernel.org/linus/1fafaa7745eeeeffef7155ab5eeb8cc83d04874f|commit]], [[https://git.kernel.org/linus/94946f9eaac116f2943ec79ec3df1ec2fc92ae07|commit]], [[https://git.kernel.org/linus/d7a0fe9ef6d6484fca4ba55c19091932337d4272|commit]] * perf/arm-cmn: Identifier support [[https://git.kernel.org/linus/ab5d0b38c0475d6ff59f1a6ccf7c668b9ec2e0a4|commit]], [[https://git.kernel.org/linus/7819e05a0dceac20c5ff78ec9b252faf3b76b824|commit]], [[https://git.kernel.org/linus/a1c45d3ebd30cf8b9b1131c1335d603f3c46999c|commit]] * qcom: socinfo: Add v18, v19 support [[https://git.kernel.org/linus/158826c73d48097f843bacc1bcafa6dbc114f4e5|commit]], [[https://git.kernel.org/linus/d9c2a255cfe026c8bf85a39631734f022ecefaff|commit]] * Enable the use of Branch Target Identification (FEAT_BTI) in the hypervisor [[https://git.kernel.org/linus/b53d4a27234955810362f91be679afc12e4c3237|commit]] * perf vendor events arm64: Add !AmpereOne core PMU events [[https://git.kernel.org/linus/a9650b7f6fc09d1659d7851384200b8ebec52cb6|commit]] * perf vendor events arm64: Add default tags for Hisi hip08 L1 metrics [[https://git.kernel.org/linus/f962514052aa5e8973343af1b1ba041d61424405|commit]] == X86 == * Add mitigation for GDS. Gather Data Sampling (GDS) is a hardware vulnerability which allows unprivileged speculative access to data which was previously stored in vector registers [[https://git.kernel.org/linus/8974eb588283b7d44a7c91fa09fcbaf380339f3a|commit]], [[https://git.kernel.org/linus/553a5c03e90a6087e88f8ff878335ef0621536fb|commit]], [[https://git.kernel.org/linus/53cf5797f114ba2bd86d23a862302119848eff19|commit]], [[https://git.kernel.org/linus/81ac7e5d741742d650b4ed6186c4826c1a0631a7|commit]] * Add a Speculative RAS Overflow mitigation. This is a speculative return address stack overflow vulnerability found on AMD processors [[https://git.kernel.org/linus/fb3bd914b3ec28f5fb697ac55c4846ac2d542855|commit]], [[https://git.kernel.org/linus/79113e4060aba744787a81edb9014f2865193854|commit]], [[https://git.kernel.org/linus/1b5277c0ea0b247393a9c426769fde18cff5e2f6|commit]], [[https://git.kernel.org/linus/233d6f68b98d480a7c42ebe78c38f79d44741ca9|commit]], [[https://git.kernel.org/linus/d893832d0e1ef41c72cdae444268c1d64a2be8ad|commit]] * Enable STIBP on AMD if Automatic IBRS is enabled [[https://git.kernel.org/linus/fd470a8beed88440b160d690344fbae05a0b9b1b|commit]] * Parallel CPU bringup. The reason why people are interested in parallel bringup is to shorten the (kexec) reboot time of cloud servers to reduce the downtime of the VM tenants [[https://git.kernel.org/linus/5107e3ebb868d99872e1b64b054ccfcdad79d5d7|commit]], [[https://git.kernel.org/linus/ba831b7b1a517ba7f25d6fa9736a8092d07b0c74|commit]], [[https://git.kernel.org/linus/134a12827bc59484c4d4a3ceabf178c831febbb8|commit]], [[https://git.kernel.org/linus/666e1156b2c514f045827f50263ed2eb9d78671b|commit]], [[https://git.kernel.org/linus/e59e74dc48a309cb848ffc3d76a0d61aa6803c05|commit]], [[https://git.kernel.org/linus/5475abbde77f6d78a052a81e5d5de70e59f7181e|commit]], [[https://git.kernel.org/linus/cded367976587ed4d160ed7d6bb118992a8b82ab|commit]], [[https://git.kernel.org/linus/c7f15dd3f0e9f1d12d1ae21f0bbd61302ef3abcf|commit]], [[https://git.kernel.org/linus/2b3be65d2e4f4bb9358b039b99ad1a391dd3c311|commit]], [[https://git.kernel.org/linus/e94cd1503b153ea753f0c4ed9d5ed12e7abd1306|commit]], [[https://git.kernel.org/linus/a32226fa3b7d33d380494cf94cf1d4f8ebb70004|commit]], [[https://git.kernel.org/linus/d4f28f07c2fe736bce8ca415a86fb74c629200f3|commit]], [[https://git.kernel.org/linus/9d349d47f0e39b4d1b68793ded2459daa1f948f0|commit]], [[https://git.kernel.org/linus/c8b7fb09d1bcfa61d4211f61542e1291e7b4cbad|commit]], [[https://git.kernel.org/linus/22b612e2d53f6e13ce7b55ed565a104512f0eb00|commit]], [[https://git.kernel.org/linus/e464640cf7af12f3c2748065936b95eae1f735ba|commit]], [[https://git.kernel.org/linus/2de7fd26d90729c4e3430f9924b199dea810a9bc|commit]], [[https://git.kernel.org/linus/ab24eb9abb9c60c45119370731735b79ed79f36c|commit]], [[https://git.kernel.org/linus/6f0621238b7e7680d5e26c00aa4cd473314d05b2|commit]], [[https://git.kernel.org/linus/72b11aa7f8f93449141544cecb21b2963416902d|commit]], [[https://git.kernel.org/linus/5356297d12d9ee6f70d09485878904bc41bac422|commit]], [[https://git.kernel.org/linus/bc088f9a0d5bdf12bb18980739336dfcc092e55b|commit]], [[https://git.kernel.org/linus/6d712b9b3a58018259fb40ddd498d1f7dfa1f4ec|commit]], [[https://git.kernel.org/linus/a631be92b996c5db9b368e8b96305d22fb8c4180|commit]], [[https://git.kernel.org/linus/8b5a0f957cc5ca1f68486163d4da4683be3b47aa|commit]], [[https://git.kernel.org/linus/f54d4434c281f38b975d58de47adeca671beff4f|commit]], [[https://git.kernel.org/linus/bea629d57d006733d155bdb65ba4867788da69b6|commit]], [[https://git.kernel.org/linus/f6f1ae9128d2a080ecdd55f85e8a0ca3ed1d58eb|commit]], [[https://git.kernel.org/linus/7e75178a0950c5ceffa2ca3225701b69752f7d3a|commit]], [[https://git.kernel.org/linus/0c7ffa32dbd6b09a87fea4ad1de8b27145dfd9a6|commit]] * pds_vdpa: Add new vDPA driver for AMD/Pensando DSC [[https://git.kernel.org/linus/a37c0191acbd58efab4da43372585207f30e3102|commit]], [[https://git.kernel.org/linus/5d7d82d39eb4cab2c7d0d85baaee0fc45d2c7900|commit]], [[https://git.kernel.org/linus/a16291b5bcbbd75586c8396555a0ee9fd4183372|commit]], [[https://git.kernel.org/linus/a8492cd8cde0906b93c819992d50ac6d79a5cad1|commit]], [[https://git.kernel.org/linus/e0c6de13ff87b917407e8c817c1007c3dc7ece6f|commit]], [[https://git.kernel.org/linus/25d1270b6e9ea893c2fe19a4bd52ebfde22812f4|commit]], [[https://git.kernel.org/linus/94591894df81ce443b0696440b9198fda6615c45|commit]], [[https://git.kernel.org/linus/c16d5a412ed4e0e6e0b02f69c2c65187869659f2|commit]], [[https://git.kernel.org/linus/151cc834f3ddafec869269fe48036460d920d08a|commit]], [[https://git.kernel.org/linus/67f27b8b3a342b988b97b2a4b81e9e894eb502ba|commit]], [[https://git.kernel.org/linus/9a8864d2a8dc5c49acd66284fd382871d99b5db8|commit]] * KVM: x86/mmu: Add "never" option to allow sticky disabling of nx_huge_pages [[https://git.kernel.org/linus/0b210faf337314e4bc88e796218bc70c72a51209|commit]] * KVM: Provide SEV-SNP support for unaccepted memory [[https://git.kernel.org/linus/5dee19b6b2b194216919b99a1f5af2949a754016|commit]], [[https://git.kernel.org/linus/69dcb1e3bbbe7fe092ea7af70e295e43ab0c7bc7|commit]], [[https://git.kernel.org/linus/7006b75592feb1902563ac1decfd98d7e4a0dd6c|commit]], [[https://git.kernel.org/linus/15d9088779b8693cffe47527ea4f9ff8fde4cd03|commit]], [[https://git.kernel.org/linus/6c3211796326a9d35618b866826ca556c8f008a8|commit]], [[https://git.kernel.org/linus/c0461bd16666351f0de11578b1e02dcdae4db736|commit]] * iommu/amd: AVIC Interrupt Remapping Improvements [[https://git.kernel.org/linus/a42f0c7a4118ffa395866cc7f5522d71a86fc4dd|commit]], [[https://git.kernel.org/linus/74a37817bd1567330fb372eb01223e31b45b1cc0|commit]], [[https://git.kernel.org/linus/66419036f68a838c00cbccacd6cb2e99da6e5710|commit]], [[https://git.kernel.org/linus/98aeb4ea5599c5f7fbb1645bdd2050d0be96dfa3|commit]], [[https://git.kernel.org/linus/bccc37a8a2fb002a302a526656c56a793a708670|commit]] * KVM: Add AMD Guest !PerfMonV2 PMU support [[https://git.kernel.org/linus/53550b89220beda42934a76a61313ecf308b2b03|commit]], [[https://git.kernel.org/linus/8de18543dfe34a6aac9deefb0256db2609cfa351|commit]], [[https://git.kernel.org/linus/30dab5c0b65ea580878f36d6ae7ff85f06813387|commit]], [[https://git.kernel.org/linus/c85cdc1cc1ea27573ab15c76f13a06f12530aa54|commit]], [[https://git.kernel.org/linus/13afa29ae489d9b7c1038179f1e2bec74873e471|commit]], [[https://git.kernel.org/linus/6a08083f294cb623fbc882417b28c5646b01f4bf|commit]], [[https://git.kernel.org/linus/d338d8789e64b2d8ed2f82f9364c415d6efa118d|commit]], [[https://git.kernel.org/linus/1c2bf8a6b045a6ac4e75a7a07fde70db63e5a380|commit]], [[https://git.kernel.org/linus/fe8d76c1a6f04387953727ee3e63469956e7360d|commit]], [[https://git.kernel.org/linus/4a2771895ca63a055df815be5e307cce8e85308c|commit]], [[https://git.kernel.org/linus/94cdeebd82111d7b7da5bd4da053eed9e0f65d72|commit]] * resctrl: Implement rename to help move containers' tasks [[https://git.kernel.org/linus/c45c06d4ae63a0714efbfa435c5a8f64a5f35b9b|commit]], [[https://git.kernel.org/linus/8da2b938eb7e2ef407b8ef99def12e3054a99645|commit]], [[https://git.kernel.org/linus/e0a6ede2dd884adb73a7dde80444185b655f7c79|commit]] * Support sub-NUMA clustering on UV [[https://git.kernel.org/linus/fd27bea340012412a5ad1476b0a40381d7407550|commit]], [[https://git.kernel.org/linus/8c646cee0ae3c0a19a7d9fdb847c45c729cae945|commit]], [[https://git.kernel.org/linus/e4860f03779cadff011a7a8685c7157ebc133bda|commit]], [[https://git.kernel.org/linus/35bd896ccc2fa8dfb20df705a44e9d26665f1085|commit]], [[https://git.kernel.org/linus/45e9f9a99529a54a7ed195eea4aad102b9eadb23|commit]], [[https://git.kernel.org/linus/8a50c58519271dd24ba760bb282875f6ad66ee71|commit]], [[https://git.kernel.org/linus/89827568a82d5856f3c8d329d3c2bc0f47385eb9|commit]], [[https://git.kernel.org/linus/73b3108dfd9d53ea565c0777a27007c1c621467d|commit]] * mtrr: fix handling with PAT but without MTRR [[https://git.kernel.org/linus/f6b980646b93a8c585b4ed991b8a34e8fc6ef847|commit]], [[https://git.kernel.org/linus/29055dc74287467bd7a053d60b4afe753832960d|commit]], [[https://git.kernel.org/linus/c957f1f3c498bcce85c04e92e60afbae1fd10cde|commit]], [[https://git.kernel.org/linus/a153f254e5cdf8fa3a1df90a6ffed3063fede154|commit]], [[https://git.kernel.org/linus/03409069520974361ffb510c725305239b78b39f|commit]], [[https://git.kernel.org/linus/34cf2d19552bbe3b72b34fc859a19cd5070c466a|commit]], [[https://git.kernel.org/linus/b5d3c72829b1f2b181cd7c5b426f7deaae452045|commit]], [[https://git.kernel.org/linus/961c6a4326643e6588352b7f1f5d77364415386f|commit]], [[https://git.kernel.org/linus/1ca12099040fec8c6bbcd9fabf37f04ac0d08e48|commit]], [[https://git.kernel.org/linus/061b984aab5845dc958f248b5b0f9040fe45b5e1|commit]], [[https://git.kernel.org/linus/a4316603534cf7f4dcd9f9f1ed170257b987cca9|commit]], [[https://git.kernel.org/linus/8227f40ade2362982505f66f1614b78a3a083ec9|commit]], [[https://git.kernel.org/linus/973df1942068c0cc72244ce7dce5e5aeca03ad5f|commit]], [[https://git.kernel.org/linus/12f0dd8df14285a5604f35ed3af8b8c33e8fd97f|commit]], [[https://git.kernel.org/linus/be946e31bcf2b1c01f1af443c238bc15fe9f6294|commit]] * platform * lenovo-yogabook: Modify to also work on Android version [[https://git.kernel.org/linus/9148cd2eb4450a8e9c49c8a14201fb82f651128f|commit]], [[https://git.kernel.org/linus/711bcc0cb34e96a60e88d7b0260862781de3e530|commit]], [[https://git.kernel.org/linus/9e6380d6573181c555ca1b5019b08d19a9ee581c|commit]], [[https://git.kernel.org/linus/017ad809680c1e59d0b744ccd28e2e94899b4099|commit]], [[https://git.kernel.org/linus/2c437ed302d4ad47cf325a4367e535639f3f16f9|commit]], [[https://git.kernel.org/linus/55b809df481ad862ec6b2081c658bd8bfdeec157|commit]], [[https://git.kernel.org/linus/a6673cfc6b56a2dc41de416f5ea397943297b79a|commit]], [[https://git.kernel.org/linus/76d6778fb21ee5e86b1de102d12b6480fa4fad9e|commit]], [[https://git.kernel.org/linus/01d126ff33c30f15f7984ead6ffdc4088051dc98|commit]], [[https://git.kernel.org/linus/9acf236e95996f56e9d4d1d6e92008b86d4925b4|commit]], [[https://git.kernel.org/linus/f771ec85b626c3e30362841cbc7b82f398e64469|commit]], [[https://git.kernel.org/linus/6555daf9a711c135cb718ce8baaf126232d9ff37|commit]], [[https://git.kernel.org/linus/fe2d4d792e854de5c6efea5d9d036c07e11661d3|commit]], [[https://git.kernel.org/linus/1c4a2e08a84effc7bd20fb68df3455c930ee175e|commit]], [[https://git.kernel.org/linus/37b599ae3fc98bc471790b09915369bba49635dd|commit]], [[https://git.kernel.org/linus/6df1523fa0b7991ea9c8e2ef8f9a238b19309a5d|commit]], [[https://git.kernel.org/linus/fc4f1d88bc6b1780b9c807fab0b79755e7996116|commit]], [[https://git.kernel.org/linus/06ffe5b25eeded829d5b2dd93ba868f3c75720d6|commit]] * lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table [[https://git.kernel.org/linus/db35610a181c18f7a521a2e157f7acdef7ce425f|commit]] * int3472: discrete: Various improvements [[https://git.kernel.org/linus/c39e299a341510eaa4fec5f9cbcceeb5b876a41d|commit]], [[https://git.kernel.org/linus/b52798a86af02776e627b457c2c4c9c49774498f|commit]], [[https://git.kernel.org/linus/d4381dcf34fcde7b10f0fa9f1195a95db96639fb|commit]], [[https://git.kernel.org/linus/f1a582502cdd8c5931a9c4a14ec239470d3a13fa|commit]], [[https://git.kernel.org/linus/45eaf2e2b8bc9bf4beaa30918a25690ae105a913|commit]], [[https://git.kernel.org/linus/899c7b18ef01bcc5c01bd9cfbd6ae837bc5aad5b|commit]] * intel/pmc: Remove Meteor Lake S platform support [[https://git.kernel.org/linus/416a87c972b978d71ab828442d1d48e3bd194855|commit]] * amd/pmf: Add new ACPI ID AMDI0103 [[https://git.kernel.org/linus/5d3acd9d7a44ad9902e98e57013f028d5f4fc86c|commit]] * amd/pmf: Add PMF acpi debug support [[https://git.kernel.org/linus/a82ebb3d800d7baf72122e82ab7c9b240d0a8a56|commit]] * amd/pmf: Add PMF debug facilities [[https://git.kernel.org/linus/63b5dbfdb770254c4fdb58d22b62458308685592|commit]] * amd: pmc: Add new ACPI ID AMDI000A [[https://git.kernel.org/linus/822507ca6affc8930a3919f326c79062354e8283|commit]] * hp-wmi: Add HP Envy special key support [[https://git.kernel.org/linus/f4a31a428d0d2fcd52e874b3e63c52de5839bfa0|commit]] * hp-wmi: Add HP WMI camera switch [[https://git.kernel.org/linus/604915f1c7b22a9c6ecbd6e16b092cdd5981f21e|commit]] * int3472: discrete: Add alternative "AVDD" regulator supply name [[https://git.kernel.org/linus/ebeb3fff9cd197a8890733e0af4eb06d8114cdff|commit]] * think-lmi: Enable opcode support on BIOS settings [[https://git.kernel.org/linus/4ca9c3d404cef529de77af2382fa2e6a1612a1ca|commit]] * Uncore frequency scaling using TPMI [[https://git.kernel.org/linus/8a54e2253e4c25e5b61c9a9bee157bb52da5d432|commit]], [[https://git.kernel.org/linus/9b8dea80e3cb22e1fed4f974841116e10a3dbb35|commit]], [[https://git.kernel.org/linus/01c10f88c9b7ab5767922531167f933cac32e9e9|commit]] * hp-wmi: Add thermal profile for Victus 16-d1xxx [[https://git.kernel.org/linus/2515e54267c98dc91a6273765b4bbf560c52b770|commit]] * ideapad-laptop: Add support for new hotkeys found on ThinkBook 14s Yoga ITL [[https://git.kernel.org/linus/a260f7d726fde52c0278bd3fa085a758639bcee2|commit]] * Improve performance of `csum_partial` [[https://git.kernel.org/linus/688eb8191b475db5acfd48634600b04fd3dda9ad|commit]] * x86/ftrace: Enable HAVE_FUNCTION_GRAPH_RETVAL [[https://git.kernel.org/linus/d938ba17683effd95b44400d30df16fe541f40fd|commit]] * Add hardcoded hypervisor interrupts to /proc/stat [[https://git.kernel.org/linus/504dba50b0c3fa02ec513d7d0405ddffba2d1c0a|commit]] * Avoid relocation information in final vmlinux [[https://git.kernel.org/linus/9d9173e9ceb63660ccad80f41373fd7eb48ff4ac|commit]] * AMD64 EDAC GPU Updates [[https://git.kernel.org/linus/e15885689cf4bc92356e52ea6ef38379a749819a|commit]], [[https://git.kernel.org/linus/c35977b00fa76ce5f3fe9afdb9cffda970c943d5|commit]], [[https://git.kernel.org/linus/4f3fa571a48feb56e7ed1978a27983b89dd2107a|commit]], [[https://git.kernel.org/linus/9c42edd571aa4f8b2125b71e3924eeb0f6a54af1|commit]], [[https://git.kernel.org/linus/4251566ebc1cf95ae26a1e5a24cdac1ac25e942f|commit]] * Fully relocatable alternatives and some NOPs [[https://git.kernel.org/linus/6becb5026b8192e0ed6619d6e7793c2f1288244f|commit]], [[https://git.kernel.org/linus/270a69c4485d7d07516d058bcc0473c90ee22185|commit]], [[https://git.kernel.org/linus/6c480f22212826425b57932f09b1f0abbec85485|commit]], [[https://git.kernel.org/linus/b6c881b248ef9d629ec2365808cb4894991c0837|commit]] * powercap/intel_rapl: Introduce RAPL TPMI support [[https://git.kernel.org/linus/31cb1304ad8bd27b7d2abd8669fb887fb47d8eaf|commit]], [[https://git.kernel.org/linus/1488ac990ac886b1209aa9f94c0c66022bcc8827|commit]], [[https://git.kernel.org/linus/e8e28c2af16b279b6c37d533e1e73effb197cf2e|commit]], [[https://git.kernel.org/linus/98ff639a7289067247b3ef9dd5d1e922361e7365|commit]], [[https://git.kernel.org/linus/cb532e728ee2880be53264752e74945fd2d917ac|commit]], [[https://git.kernel.org/linus/11edbe5c66d624e2e1eec8929d3668d76a574c3b|commit]], [[https://git.kernel.org/linus/045610c383bd6b740bb7e7c780d6f7729249e60d|commit]], [[https://git.kernel.org/linus/a38f300bb23c896d2d132a4502086d4bfec2a25e|commit]], [[https://git.kernel.org/linus/9050a9cd5e4c848e265915d6e7b1f731e6e1e0e6|commit]], [[https://git.kernel.org/linus/f442bd2742174eed6993315ec621275df13f311d|commit]], [[https://git.kernel.org/linus/693c1d7868cf710382c39c2d64cbb55e72b36d66|commit]], [[https://git.kernel.org/linus/bf44b9011df3d6e34a23be77d86540553ba2bbe2|commit]], [[https://git.kernel.org/linus/b4288ce788aaf160f2a706672af2eaef417bb057|commit]], [[https://git.kernel.org/linus/e12dee18b89f1b0d4fc070eda4843f9d806645ca|commit]], [[https://git.kernel.org/linus/9eef7f9da928c54149199e7b3215b82c2d595ccd|commit]] * Add multiple PMCs support in pmc core driver [[https://git.kernel.org/linus/9682cfd1973d01e43c2764c662e6d3291ddf770d|commit]], [[https://git.kernel.org/linus/804951203aa541ad6720c9726c173d18aeb3ab6b|commit]], [[https://git.kernel.org/linus/1c709ae12dad6f7e2dd5becfbac0f5141c2e15fd|commit]], [[https://git.kernel.org/linus/2bcef4529222424559ac9b45948ee9d82c09d9b5|commit]], [[https://git.kernel.org/linus/1b8c7b843c0043dd1b81e162e5b5fbed4b256896|commit]], [[https://git.kernel.org/linus/23e74e3ca6b56d12c14c7369d940187713c85d43|commit]], [[https://git.kernel.org/linus/9f17728d96483dad1cbb3de2a4adcf59d1a04b37|commit]], [[https://git.kernel.org/linus/d2a7bd3690990ab8a8239096ee432ad51985d5b6|commit]] * Fix perf on Intel hybrid CPUs [[https://git.kernel.org/linus/2a939c8695035b11e00239610d88551be34c7a61|commit]], [[https://git.kernel.org/linus/1b114824106ca4686276c94e414e06bf58b0934f|commit]], [[https://git.kernel.org/linus/ccc66c6092802d682537227136dcbd0527027e6f|commit]], [[https://git.kernel.org/linus/327daf34554d20a6aa190dce5a625a555055435e|commit]], [[https://git.kernel.org/linus/2a61d97fb0ff17411aeb808c145209dbcfc34506|commit]], [[https://git.kernel.org/linus/aea8abd7d435262f1db443b163147545098d517f|commit]], [[https://git.kernel.org/linus/f215040aa24534aa8d4c4bf657387f7252e64370|commit]], [[https://git.kernel.org/linus/cbd393afa3ff6ef951e40c3bfbe7538aaf72c9aa|commit]], [[https://git.kernel.org/linus/cde61c605252d3ee2eba3cc966f4871819108955|commit]], [[https://git.kernel.org/linus/5a52817e388bc2beaceff7b2059988987491cb59|commit]], [[https://git.kernel.org/linus/8f8c106886983f7963df76d33bf9e42df8ec3e8a|commit]], [[https://git.kernel.org/linus/9854934b055cfc37b3acdff5323dd2060745a774|commit]], [[https://git.kernel.org/linus/4a7c4eafb74860fd7cb1eecbd2606cdd26809d0a|commit]], [[https://git.kernel.org/linus/a8af6e48c6220992430cd55713679f49c23ac6d2|commit]], [[https://git.kernel.org/linus/c9aeb2e9cc8ee02c6ad469a910a3aa9b083b76cf|commit]], [[https://git.kernel.org/linus/cae256ae75cf2d62187c0477e2e08da71d537fc5|commit]], [[https://git.kernel.org/linus/442eeb77044705f2952a88a1c5d4a902f444bf02|commit]], [[https://git.kernel.org/linus/70c90e4a6b2fbe775b662eafefae51f64d627790|commit]], [[https://git.kernel.org/linus/123361659fa405de8e21bff485fe22a65d85e64e|commit]], [[https://git.kernel.org/linus/ae4aa00a1a9358e0007f6edc71b018a0b0d21190|commit]], [[https://git.kernel.org/linus/8d8632887d74d06df5ef370427a8e2856e011546|commit]], [[https://git.kernel.org/linus/68911aef3d76e74594b8f2dd018693c57d435355|commit]], [[https://git.kernel.org/linus/6fd1e5191591f9d55afe4d23fa35af2a5cf8f81f|commit]], [[https://git.kernel.org/linus/2bdf4d7ea9b66e54948297194d564a71504a5bda|commit]], [[https://git.kernel.org/linus/d7f21df0c991f0909a992c0c7e2d31d4c46d40b4|commit]], [[https://git.kernel.org/linus/8bc75f699c14142021d9ecbf5556ded13a403b64|commit]], [[https://git.kernel.org/linus/996e54bbee825d25706796672926dbac826a0818|commit]], [[https://git.kernel.org/linus/24d80818ce2216ee37308b3b087944efb2479b80|commit]], [[https://git.kernel.org/linus/411ad22ecf0281d666a82aa7f4de90c70365da7d|commit]], [[https://git.kernel.org/linus/003be8c4f71753092bbb86fa9d7ad26dd9fb98db|commit]], [[https://git.kernel.org/linus/c0d68601cbcefaf69018b3e7aff2687316950ace|commit]], [[https://git.kernel.org/linus/aefde50a446b56f592a589e12e89935bea3b85f9|commit]], [[https://git.kernel.org/linus/5ea8f2ccffb23983f02012a2731464586b10fbf3|commit]], [[https://git.kernel.org/linus/e831f3ccf9920fa099d4ebb9d57214cc7ecd2e70|commit]], [[https://git.kernel.org/linus/2aadca4b35427a7c65acc6aa415b38758128b22c|commit]], [[https://git.kernel.org/linus/52c7b4d3f9c12c44b8392765c73cced3be99cec6|commit]], [[https://git.kernel.org/linus/5136e43c6139d4d400effb33643eb171dc4c3bfa|commit]], [[https://git.kernel.org/linus/bd3846d0fea2e8e3375fc54a6556561726f466cf|commit]], [[https://git.kernel.org/linus/dae47d3940a77e1639edb0c5f0596f43bcff8bf8|commit]], [[https://git.kernel.org/linus/1b8012b26f78b2dd124214256481c8643e4465e9|commit]], [[https://git.kernel.org/linus/d6b7dd1107ee24c68f8540f34b0a0483ed5fac07|commit]], [[https://git.kernel.org/linus/8a4859c50fb79fcbbf74963162389b1d3a87e484|commit]], [[https://git.kernel.org/linus/718eabe1f329acedf1470aed67632d65dca5088c|commit]], [[https://git.kernel.org/linus/9a1bc9ea01e2e95ed56801ed946b310f5562abfc|commit]] * Add metric has_event, update intel vendor events [[https://git.kernel.org/linus/4a4a9bf9075fbc753ab20f05347fd1482d4801e4|commit]], [[https://git.kernel.org/linus/eadc0040a9ebfa2ad6debe6df087c549e6e49bd4|commit]], [[https://git.kernel.org/linus/8076dc8c6818eebbb5029bd77eea9848a3c32f3c|commit]], [[https://git.kernel.org/linus/7e74ece31af7f701d2cf8c3529633e3620a61c70|commit]], [[https://git.kernel.org/linus/dfc83cc8776917fbb8452328b56bb2192421a809|commit]], [[https://git.kernel.org/linus/0c9e39421cd00258f7cd17b25ee5fe177a3088dd|commit]], [[https://git.kernel.org/linus/d1363b9454a32cf615d1a4df920e88cb73763af9|commit]], [[https://git.kernel.org/linus/663655c91ce195f912957157d7aaa3e8c06e8b14|commit]], [[https://git.kernel.org/linus/938e4ad3101160481e5502186f95c7469d6bbcbc|commit]], [[https://git.kernel.org/linus/ea3eafa08aa73800a095f974ee4bc230ee055083|commit]], [[https://git.kernel.org/linus/b5d2644da65cfc249e4caf820943dfbfb559bce1|commit]], [[https://git.kernel.org/linus/887e845f8c1ce5b031dbad95d22e56f2e61bb35c|commit]] * Event, metric and metric group improvements [[https://git.kernel.org/linus/c04fcf7c8c4dfdcbfca8b8ec3e7e1fcb6d99e3e3|commit]], [[https://git.kernel.org/linus/7d124303d620cc29baba318bb313edf794c9ef60|commit]], [[https://git.kernel.org/linus/8c61edb840df87f2a5e370c7dfe954d07cf4db2d|commit]], [[https://git.kernel.org/linus/27aebf378b0d8ecb69fa7db88ef016cfb8e6e37a|commit]], [[https://git.kernel.org/linus/c9e7771f28d083dab1afccdd72c3712e31aea4d5|commit]], [[https://git.kernel.org/linus/545dbda74dbcca9df8a90afcfd28f5224e548b35|commit]], [[https://git.kernel.org/linus/b27d3ece5c9b70a87f68f0e52d68fb6eb828cbf8|commit]], [[https://git.kernel.org/linus/e08d2ae9bfc225edaea795e74c58934bdb91d27c|commit]], [[https://git.kernel.org/linus/98f17fb413037393f3046fa5d9687ced1e4eb9c3|commit]], [[https://git.kernel.org/linus/9a5511eadea316f184940f92dfc5da1eecb0bfd9|commit]], [[https://git.kernel.org/linus/b522c8aff810b06810d7791f1ece07758ed26194|commit]], [[https://git.kernel.org/linus/d97b82aead504a631033ebbf49cbe104dc603926|commit]], [[https://git.kernel.org/linus/bc4e41210e337d5df3ecd8a9a07cfd6f2d63815b|commit]], [[https://git.kernel.org/linus/66c6e0c1002771754c27ea5e14eeaa1405e3d088|commit]], [[https://git.kernel.org/linus/6ac2230b55d392e6294ea9f406619ed39fd9050f|commit]] == RISCV == * Add independent irq/softirq stacks support [[https://git.kernel.org/linus/b5e13f3ace78a8159dbad92bb005090a431e36d7|commit]], [[https://git.kernel.org/linus/163e76cc6ef43b7a5e9b6e245a6d6667c9d9b4a7|commit]], [[https://git.kernel.org/linus/dd69d07a5a6c5a9ada85321ab0695e7978fc6f3e|commit]], [[https://git.kernel.org/linus/8574bf8d0ddd46f0bc393381563f59a6f4418a3e|commit]], [[https://git.kernel.org/linus/a7555f6b62e7f5b3a3b783cc6d4c4dafcb8527c8|commit]], [[https://git.kernel.org/linus/d0db02c628793e389538c0e5c3f6491141ea6200|commit]], [[https://git.kernel.org/linus/f0bddf50586da81360627a772be0e355b62f071e|commit]], [[https://git.kernel.org/linus/0bf298ad2b61ae69d38826f3513e5fffc3fe3a53|commit]], [[https://git.kernel.org/linus/ab9164dae27334415537ccf1c3fbabf56b7793b2|commit]], [[https://git.kernel.org/linus/45b32b946a97bb4553bab30c2519bbaac55f39db|commit]] * Add basic ACPI support for RISC-V [[https://git.kernel.org/linus/90502d51ab90032a3cd2e3268ba8f794fe85b534|commit]], [[https://git.kernel.org/linus/24fc18087f4237d98d892280abe97711e0f4bc9e|commit]], [[https://git.kernel.org/linus/7f2e20459b281449b0228338d0dd5b044bc55eb6|commit]], [[https://git.kernel.org/linus/fbb995a7b27c72d83963bf43ed76dcaf0449a2a9|commit]], [[https://git.kernel.org/linus/4d02d88d2b922807307a3574a7b401dcccb870d1|commit]], [[https://git.kernel.org/linus/214c236223b8449177a7e4a4c49dd65892f6cd59|commit]], [[https://git.kernel.org/linus/a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f|commit]], [[https://git.kernel.org/linus/8b7809e289524e02f8f0755ca632ea9e9aefbd0e|commit]], [[https://git.kernel.org/linus/724f4c0df7665a1bb9cb105a20131dfca5c032dd|commit]], [[https://git.kernel.org/linus/f995611994704b5c039731287b897993808e63e3|commit]], [[https://git.kernel.org/linus/e6b9d8eddb1772d99a676a906d42865293934edd|commit]], [[https://git.kernel.org/linus/61946127ab49d0bb47786b8de2aff73a051e054f|commit]], [[https://git.kernel.org/linus/ce92546cd63779445d205e3153defedacf8b08c6|commit]], [[https://git.kernel.org/linus/914d6f44fc50744163e9bba7178644231f77a46a|commit]], [[https://git.kernel.org/linus/396c018332a10a845e8a555ca3fa288c952a37af|commit]], [[https://git.kernel.org/linus/0b144c8189895038cd624035b0cee24869de54f7|commit]], [[https://git.kernel.org/linus/134124acb57f8ad59634d0e4530812205bf55250|commit]], [[https://git.kernel.org/linus/cd12d206685af04b30a222a42137a700bff3c7fd|commit]], [[https://git.kernel.org/linus/714aa1d1c8cad1c005bb93a1ba46dfa145ec2e6f|commit]], [[https://git.kernel.org/linus/0b8e15ca008260cf28b354e27f3d2824f33a18b2|commit]], [[https://git.kernel.org/linus/cc9e654a7e81684091ade9c9d16d8a4e0b6cf53b|commit]] * Enable HAVE_LD_DEAD_CODE_DATA_ELIMINATION [[https://git.kernel.org/linus/782aefb177e8932c558ae55f64206ded7fe1292f|commit]], [[https://git.kernel.org/linus/ab7fa6b05ebbe2a8cc07114014f14fd2326fb80a|commit]], [[https://git.kernel.org/linus/cead443a306262a16056d84d63b5a6a10908eb62|commit]], [[https://git.kernel.org/linus/d4035ff16bfa73915f74cb3d28f878aff1da510a|commit]], [[https://git.kernel.org/linus/c828856b51bb4180c0803c12ffaeb86c41336c11|commit]] * Export Zba, Zbb to usermode via hwprobe [[https://git.kernel.org/linus/16252e018a30486eedcfec81fc313445cac25bea|commit]], [[https://git.kernel.org/linus/c6699baf10647b87b075bf6c65d25b4cd52d4830|commit]], [[https://git.kernel.org/linus/82e9c66e81c814e20ee2a3aafb60a9012c79fb40|commit]], [[https://git.kernel.org/linus/c0baf321038d5fa4273c0dc495d78f39848dd8fc|commit]] * Add vector ISA support [[https://git.kernel.org/linus/d5e45e810e0e08114035d31d88049544c038e6fc|commit]], [[https://git.kernel.org/linus/419d5d38ac5d79dfd899522274c872854cfe17ac|commit]], [[https://git.kernel.org/linus/dc6667a4e7e36f283bcd0264a0be55adae4d6f86|commit]], [[https://git.kernel.org/linus/162e4df137c1fea6557fda3e4cdf5dc6ca6d5510|commit]], [[https://git.kernel.org/linus/b5665d2a94325c3244584f504d039a573cfd63e8|commit]], [[https://git.kernel.org/linus/6b533828726af4e3609aeb6e5f494e936f9a7cde|commit]], [[https://git.kernel.org/linus/74abe5a39d3a110f4c87c8ff34b80705009a96e0|commit]], [[https://git.kernel.org/linus/0a3381a01dcc3d0537732794c007f32e4dfd1efc|commit]], [[https://git.kernel.org/linus/7017858eb2d7ed7a295be02c71124049a6409295|commit]], [[https://git.kernel.org/linus/03c3fcd9941a172abdea84456eefce2d2b7b415c|commit]], [[https://git.kernel.org/linus/3a2df6323defbb42234aaae804a8ad6af397016a|commit]], [[https://git.kernel.org/linus/cd054837243b5f36ff395c21135ff153871180f1|commit]], [[https://git.kernel.org/linus/0c59922c769a1361d4699ef6694b59031767a74e|commit]], [[https://git.kernel.org/linus/a45cedaa1ac0da7b30882afb42ff9d5285e9bb44|commit]], [[https://git.kernel.org/linus/8ee0b41898fa26f66e32237f179b6989c65600d6|commit]], [[https://git.kernel.org/linus/e92f469b0771e6db9688a58c0e34a8342da6a6bc|commit]], [[https://git.kernel.org/linus/76e22fdc2c2658ab595cdda7368d43d2dc16f3f4|commit]], [[https://git.kernel.org/linus/c7cdd96eca2810f5b69c37eb439ec63d59fa1b83|commit]], [[https://git.kernel.org/linus/bf78f1ea6e5108a7ebd55be0853f0716433117a9|commit]], [[https://git.kernel.org/linus/0f4b82579716b12bb88257bd7ea80f25c791fb2c|commit]], [[https://git.kernel.org/linus/50724efcb370c61c64f75614763fb411e087f70c|commit]], [[https://git.kernel.org/linus/1fd96a3e9d5d4febe1a8486590ad52c048d1be77|commit]], [[https://git.kernel.org/linus/7ca7a7b9b635dbf8428f8e3bb8ea9e9ff5c79bfc|commit]], [[https://git.kernel.org/linus/e4bb020f3dbb83912eb6799a9d4bb79da4fd77ec|commit]], [[https://git.kernel.org/linus/fa8e7cce55da3569259dc270801885c420eb50fe|commit]], [[https://git.kernel.org/linus/04a4722eeede8f83ce3fefc67b891bd8e132784a|commit]], [[https://git.kernel.org/linus/7cf6198ce22d92590f9aaa13431001fa97bc0b2b|commit]], [[https://git.kernel.org/linus/1e72695137ef5afd94000b763f7a35899d0a005e|commit]] * Add Sipeed Lichee Pi 4A RISC-V board support [[https://git.kernel.org/linus/c1362fd0f2fdebf5c56d505100ba37600b5c20a5|commit]], [[https://git.kernel.org/linus/a04cc7391d88a6e857611f009d30f49b7551daf3|commit]], [[https://git.kernel.org/linus/413c24b03f4e50f7e8000079d51122e44d8a8f64|commit]], [[https://git.kernel.org/linus/89b0186ab5325fa70852b42d7b0012bb2a1a4891|commit]], [[https://git.kernel.org/linus/da47ce0039632d2e82ee70a86079d7a8b4c92103|commit]], [[https://git.kernel.org/linus/8e396880a864b80381b3f402e36d9c428422315b|commit]], [[https://git.kernel.org/linus/5af4cb0c42c5ee084c40ae37f6ecce839b4f65bc|commit]], [[https://git.kernel.org/linus/1203f584fe66522b0cf294424a35b4cfbc747d71|commit]], [[https://git.kernel.org/linus/318afa0812049ddaff644482b035ab861d2a920c|commit]] * Export va_kernel_pa_offset in vmcoreinfo [[https://git.kernel.org/linus/fbe7d19d2b7fcbd38905ba9f691be8f245c6faa6|commit]] * ftrace: Enable HAVE_FUNCTION_GRAPH_RETVAL [[https://git.kernel.org/linus/b97aec082b51a0728adc9f69494826d32e0d1f8f|commit]] * KVM: Allow Svnapot extension for Guest/VM [[https://git.kernel.org/linus/d75b336225789fb967442feb6cdf9cfc0357b252|commit]] * KVM in-kernel AIA irqchip [[https://git.kernel.org/linus/77cf33c17154b7f8151429f6ba32049afc49f9c3|commit]], [[https://git.kernel.org/linus/f7fec5ecc9b6a6dedf6e38c1d3e7cd6557df5514|commit]], [[https://git.kernel.org/linus/cf55201c7516d1c69859f1157deab02223285f82|commit]], [[https://git.kernel.org/linus/f0607e6215b2329bb8f3117b34ccfc6447e14f22|commit]], [[https://git.kernel.org/linus/00f918f61c56a46d9e09ce21b54b8c21f496c753|commit]], [[https://git.kernel.org/linus/89d01306e34d6ace24e9708cb443df0e53c06ce0|commit]], [[https://git.kernel.org/linus/74967aa208e257d0c26a7dd7dd93a8902b2203e4|commit]], [[https://git.kernel.org/linus/289a007b98b06d9ce4be24e2dda43f6821687e70|commit]], [[https://git.kernel.org/linus/db8b7e97d6137a28b2bfc07e591d54da268f0c36|commit]], [[https://git.kernel.org/linus/5463091a51cfaab8922ac94e5178a05dfa836dbb|commit]] * KVM virtualize AIA CSRs [[https://git.kernel.org/linus/d6f5f6e904be628941eeab7d6ae7d1fb9190c486|commit]], [[https://git.kernel.org/linus/8fe6f7e14c7eeb01c3a1994eba2356400981cb1e|commit]], [[https://git.kernel.org/linus/e290dbb7f73670e06df7f8ec44c3f502c20707d7|commit]], [[https://git.kernel.org/linus/54e43320c2ba0c70258a3aea690da38c6ea3293c|commit]], [[https://git.kernel.org/linus/7d50dd5012013f7c8e3c3e5d0bed78ba85800934|commit]], [[https://git.kernel.org/linus/78f94c082a2f74b78c8b9c779756d8b25317a55a|commit]], [[https://git.kernel.org/linus/6b1e8ba4bac49d99232026cae7eb8db3d338f9c2|commit]], [[https://git.kernel.org/linus/2f4d58f7635aec014428e73ef6120c4d0377c430|commit]], [[https://git.kernel.org/linus/77cf33c17154b7f8151429f6ba32049afc49f9c3|commit]] == LOONGARCH == * Support dbar with different hints [[https://git.kernel.org/linus/e031a5f3f1eddb961a6ded8a21ab8189d8760860|commit]] * Replace kretprobe with rethook [[https://git.kernel.org/linus/7b0a096436c2dac6de77d132e751a8a3328798d5|commit]] * Move Loongson1 PWM timer to clocksource framework [[https://git.kernel.org/linus/9e130e2be4e7ac54de1ecc3fa424ca7ddfb1a748|commit]], [[https://git.kernel.org/linus/b25efff2a63f0d573f409f22e82904db9cc7d577|commit]], [[https://git.kernel.org/linus/e738521a11f13e40af89f66527e59306c4169782|commit]] * Add jump-label implementation [[https://git.kernel.org/linus/f02644e32c9e4bd1a9b286dc0b84f9cbe294f4e2|commit]] * Add SMT (Simultaneous Multi-Threading) support [[https://git.kernel.org/linus/f6f0c9a74a48448583c3cb0f3f067bc3fe0f13c6|commit]] * Introduce hardware page table walker [[https://git.kernel.org/linus/01158487af60cd3915e8c31924144caf29cb0767|commit]] * Modify code about clone timens [[https://git.kernel.org/linus/aa5e65dc0818bbf676bf06927368ec46867778fd|commit]] * Add vector extensions support [[https://git.kernel.org/linus/616500232e632dba8b03981eeccadacf2fbf1c30|commit]] * Add uprobes support for LoongArch [[https://git.kernel.org/linus/3d2c3daf82544283c5597028a8a3efc9ac0fb02b|commit]], [[https://git.kernel.org/linus/49ed320da5f52ec729e7f2f9edbc6e79848455bd|commit]], [[https://git.kernel.org/linus/6e320363339b585a36bf40d74592db3db021e017|commit]], [[https://git.kernel.org/linus/19bc6cb6409289106d38f9ad1b2ecf73980df6b5|commit]], [[https://git.kernel.org/linus/5ee35c769663cb1c5f26e12cad84904dc3002de8|commit]] * Support kmemleak [[https://git.kernel.org/linus/5d553770409de4a98a8c4f8c014559725dcfaa37|commit]] == POWERPC == * Make ELFv2 ABI the default for 64-bit big-endian kernel builds [[https://git.kernel.org/linus/9d90161ca5c7234e80e14e563d198f322ca0c1d0|commit]], [[https://git.kernel.org/linus/8c5fa3b5c4df3d071dab42b04b971df370d99354|commit]], [[https://git.kernel.org/linus/aec0ba7472a7b0c1c293932e7978197f1489a332|commit]], [[https://git.kernel.org/linus/106ea7ffd56b0f9454cd4f625474967f12ac4dbd|commit]] * Add initial Dynamic Execution Control Register (DEXCR) support [[https://git.kernel.org/linus/7eec97b32e0b62f54b7f6afb5df189806b1bb87b|commit]], [[https://git.kernel.org/linus/81e30a5412e4bcdc9d338ffa0cf1f4b90bc63abc|commit]], [[https://git.kernel.org/linus/0ffd60b782ed79349baf28dd3259c872f39274e9|commit]], [[https://git.kernel.org/linus/5bcba4e6c13f0c889da1f9e67ee10accd9ca4c19|commit]], [[https://git.kernel.org/linus/be98fcf7c10dea74e9c3e2cd0018e47bdee67442|commit]], [[https://git.kernel.org/linus/884ad5c52da253e5d38f947cd8d1d9412a47429c|commit]], [[https://git.kernel.org/linus/97228ca375c78bfd960767dcd4919c981add306f|commit]], [[https://git.kernel.org/linus/65d6c884bfbd38235659e6df193345e5ad874043|commit]], [[https://git.kernel.org/linus/b9125c9aa043a7556626e1aafb3190c61c1e2b2b|commit]], [[https://git.kernel.org/linus/bdb07f35a52f40c461c7da06ddcbaca1950fb9e0|commit]], [[https://git.kernel.org/linus/a16e472c3546ba0b8a4be265c008d02ef6aed899|commit]] * powernv/pci: Remove ioda1 support [[https://git.kernel.org/linus/5ac129cdb50b4efda59ee5ea7c711996a3637b34|commit]] * Drop MPC8540_ADS and MPC8560_ADS platform support [[https://git.kernel.org/linus/384e338a9187e479349c97c9cfb36f6060708db8|commit]] * Drop MPC85xx_CDS platform support [[https://git.kernel.org/linus/b751ed04bc5e1b76f2885b846ea8289792a37166|commit]] == S390 == * pkey: add support for ecc clear key [[https://git.kernel.org/linus/9e436c195e2d6d3a0db6921e14ef2c85e559ae5b|commit]] * uvdevice: Expose secret UVCs [[https://git.kernel.org/linus/4255ce017723238dddbb63ba06d760d73b57896a|commit]], [[https://git.kernel.org/linus/ea9d97163523d299022fc78258eccc466d92102a|commit]], [[https://git.kernel.org/linus/44567ca21aaf6f60cb5dcde180b1f6aab9da33dd|commit]], [[https://git.kernel.org/linus/b96b3ce2720145bd981988443288fbc4bdf37854|commit]], [[https://git.kernel.org/linus/2d8a26acaf88a9174bcd44b607c5aa2ca9f5718f|commit]], [[https://git.kernel.org/linus/78d3326e725e8a8b17b8fe1a6beaf8e0ea04de04|commit]], [[https://git.kernel.org/linus/db54dfc9f71cd2df7afd1e88535ef6099cb0333e|commit]] * Select ARCH_SUPPORTS_INT128 [[https://git.kernel.org/linus/fbac266f095de92b93e7c91c71cdca432c2c9275|commit]] == MIPS == * uaccess: emulate Ingenic LXW/LXH/LXHU uaccess [[https://git.kernel.org/linus/6673c2763f6f999fc32cff1833c7d4d6d35f787b|commit]] * ralink: Add support for TP-Link HC220 G5 v1 board [[https://git.kernel.org/linus/ece68749f86230ebf691bd7ee27eb3118140b1f1|commit]], [[https://git.kernel.org/linus/0daf939e0fdfb18520db2bd545111272f14a9fa6|commit]] == PARISC == * Add cacheflush() syscall [[https://git.kernel.org/linus/c6d96328fecdda16e12f3b3c33f3677f4bcef89f|commit]] = Drivers = == Graphics == * sysfs: Expose DRM connector id in each connector sysfs [[https://git.kernel.org/linus/f0038cffa843697501c442eff4468e3ab37031f1|commit]] * sysfs: Link DRM connectors to corresponding Type-C connectors [[https://git.kernel.org/linus/c5c51b2420625faa1f0e363f21dba1de53806ff7|commit]] * atomic: Allow vblank-enabled + self-refresh "disable" [[https://git.kernel.org/linus/9d0e3cac3517942a6e00eeecfe583a98715edb16|commit]] * ttm: add NUMA node id to the pool [[https://git.kernel.org/linus/4482d3c94d7f1d6912521e6de23bb051bfcd084d|commit]] * amdgpu * Enable Colorspace connector property [[https://git.kernel.org/linus/1626761ee4406c51d5afe9d47dd41a29e2049b71|commit]], [[https://git.kernel.org/linus/f96c61fe0383d73732aba72fabb7e2c7ce0b0835|commit]], [[https://git.kernel.org/linus/6120611abc05dd850eff4eb3026f977ac7e34718|commit]], [[https://git.kernel.org/linus/c627087cb164d1675323c7942fa29bded4263dfc|commit]], [[https://git.kernel.org/linus/035d53e0f36da6ce49abf7bea3d9b30a075ff247|commit]], [[https://git.kernel.org/linus/c265f340eaa87aa5f979adfb23d7463af67b7f27|commit]], [[https://git.kernel.org/linus/cb841d27b8767fd88096d06186b5f5de990fd6d0|commit]], [[https://git.kernel.org/linus/15f9dfd545a1edd604648961feadce16791d0f4f|commit]], [[https://git.kernel.org/linus/a0b433c858ac1d2e03cbfd5bb34b9b61906600eb|commit]], [[https://git.kernel.org/linus/2e656827ceed9fb1ba406e7cd11d7b572010add0|commit]], [[https://git.kernel.org/linus/bd49f19039c1806cd10cff8aaec7f90ebf28f0e9|commit]], [[https://git.kernel.org/linus/fd45b6540f513887c172e2082d437209fe8f4a54|commit]], [[https://git.kernel.org/linus/eaa7d8301109092670c5cf3e12c502618d6adc51|commit]] * Enable Freesync Video Mode by default" [[https://git.kernel.org/linus/11b92df8a2f7f4605ccc764ce6ae4a72760674df|commit]] * Add p-state debugging [[https://git.kernel.org/linus/9c25ab167df412a5474dedfd0e7743e76bc89cbe|commit]] * Adding support for VESA SCR [[https://git.kernel.org/linus/4d5f872dbc755114628c236e17421629ec522203|commit]] * Enable FPO + Vactive [[https://git.kernel.org/linus/d062de7b68f27546a45c063b046b66c0a73633db|commit]] * Enable SubVP for high refresh rate displays [[https://git.kernel.org/linus/87f0c16e0eeb672fb888b4e173edff0252e02757|commit]] * Add debugfs for allow_edp_hotplug_detection [[https://git.kernel.org/linus/ee83c930974d4afb5fec3db638a8341b5d1cd3fa|commit]] * Add option to use custom backlight caps [[https://git.kernel.org/linus/5e9252d8415f50095c854c85cf9ebcc894e9ac0d|commit]] * Add pixel rate based CRB allocation support [[https://git.kernel.org/linus/9ba90d760e9354c124fa9bbea08017d96699a82c|commit]] * Enable FW assisted shadowing for GFX11 [[https://git.kernel.org/linus/edd9038000352ba846cba9dfb84d8c397c3b6499|commit]], [[https://git.kernel.org/linus/0db0c0379d15cd811214bdb631a0b6bdcdd22c84|commit]], [[https://git.kernel.org/linus/02527099ddc74244b9d94c93ec54e123fcee5899|commit]], [[https://git.kernel.org/linus/1ba91b54a9051205c2110ed43a7dc5650d49ca0e|commit]], [[https://git.kernel.org/linus/550e5d23f14784e2a625c25fe0c9d498589c9256|commit]], [[https://git.kernel.org/linus/9fa8cc0c444562fa19e20ca20f1c70e15b9d8c13|commit]], [[https://git.kernel.org/linus/3af470cbcc9f40e47fe9b16882f60cd20b438095|commit]], [[https://git.kernel.org/linus/8a93c691248e7ff2b3944107a1ead2671b6854f2|commit]] * Enable more Pstates profile levels for yellow_carp [[https://git.kernel.org/linus/3ffb193969c57afd4096cfb107ca2cc3bb0c55d9|commit]] * amdkfd: Add spatial partitioning support in KFD [[https://git.kernel.org/linus/74c5b85da75475c73a8f040397610fbfcc2c3e78|commit]] * amdkfd: Add device repartition support [[https://git.kernel.org/linus/0c7315e7d5ef9b36ca4db32ffeb34a187cbaf231|commit]] * amdkfd: new event wait support [[https://git.kernel.org/linus/6f582513ad15de729ee5c91dfef946f3c266a207|commit]], [[https://git.kernel.org/linus/4057e6ce3384e079f945a7f69797fc6c2864a90f|commit]] * Introduce AMD GPU ISA Debugging for HSA Compute [[https://git.kernel.org/linus/4f98cf2baf9faee5b6f2f7889dad7c0f7686a787|commit]], [[https://git.kernel.org/linus/d230f1bfe7a1977565ce1e2804ddb7b7a3d911ff|commit]], [[https://git.kernel.org/linus/0ab2d7532b05a3e7c06fd3b0c8bd6b46c1dfb508|commit]], [[https://git.kernel.org/linus/08ca712270028111b22e4b159d11dbd6b770135e|commit]], [[https://git.kernel.org/linus/4504f14338cdc43586189558113faafa8acb9ffe|commit]], [[https://git.kernel.org/linus/257d7b7be26d83768cb07585480d90e875365d5c|commit]], [[https://git.kernel.org/linus/34941e5dc72daff878267c55a9bdb5e055804953|commit]], [[https://git.kernel.org/linus/d3116d9f27b89d363dd528e42fcf4895a15e0c3c|commit]], [[https://git.kernel.org/linus/cde2e087a320bff5d772d82c9fbddaea18daa94a|commit]], [[https://git.kernel.org/linus/01f648202c5390f4c366793b34c27cddad4ca8d7|commit]], [[https://git.kernel.org/linus/bb13d763f251c28b08d996671c5146a2113fc9e7|commit]], [[https://git.kernel.org/linus/d13f050fee94a454323f864fb005c4355600cdbd|commit]], [[https://git.kernel.org/linus/be6f94039e1a91df4b0efc2da9167ca9c17bb532|commit]], [[https://git.kernel.org/linus/33f3437ae1194ef5dedbf275dcf74ed9c114647d|commit]], [[https://git.kernel.org/linus/7cee6a6824a0429a6255abe91b5af01b9a01cd03|commit]], [[https://git.kernel.org/linus/97ae3c8cce96f3bebf883d0812cef5d3fdbe3e64|commit]], [[https://git.kernel.org/linus/0de4ec9a03537bd2b189b5afbf83acd6b72b0258|commit]], [[https://git.kernel.org/linus/a9818854ea7870ec5464d37b72c89f5fc198708e|commit]], [[https://git.kernel.org/linus/218895820e6fccade42a7c3ab9c0a44dec0a1ebc|commit]], [[https://git.kernel.org/linus/69a8c3ae2dea84a6d571e4c1aad306f630f3ccfd|commit]], [[https://git.kernel.org/linus/44b87bb0836c65d1b9d21b01503eb6e9b9297771|commit]], [[https://git.kernel.org/linus/c2d2588c702364ff53916ddd97e2b26fd4f4a317|commit]], [[https://git.kernel.org/linus/455227c4642c5e1867213cea73a527e431779060|commit]], [[https://git.kernel.org/linus/50cff45e274896235d371f16eab67a180e12a732|commit]], [[https://git.kernel.org/linus/a37d23f816b18a324c24d066d5bc453308913bf9|commit]], [[https://git.kernel.org/linus/12fb1ad70d65edc3405884792d044fa79df7244f|commit]], [[https://git.kernel.org/linus/e90bf919f714ae2a658cdfd03238e7be9ce9185c|commit]], [[https://git.kernel.org/linus/101827e13026a981e887527620fe9710adc0e481|commit]], [[https://git.kernel.org/linus/aea1b4738bebd8092bd437ce0b03aa9587fc20a7|commit]], [[https://git.kernel.org/linus/a70a93fa568b4f05aba548dadb673703eccf5480|commit]], [[https://git.kernel.org/linus/e0f85f4690d089cc1a60337decafb1acf7eec45e|commit]], [[https://git.kernel.org/linus/103d5f08ff42b666c61c350be2c3e724c1646918|commit]], [[https://git.kernel.org/linus/5bc20c224bcb863571e8831cdbba23cd61b10ac3|commit]], [[https://git.kernel.org/linus/2b36de971d25daa2ad287114ae3ca11a8f8d49d7|commit]], [[https://git.kernel.org/linus/b17bd5dbf64677682a3bca249c64521d5eabcb38|commit]], [[https://git.kernel.org/linus/12976e6a5ab8fc3766c0304d72f7eec81a109b55|commit]], [[https://git.kernel.org/linus/a159afdad2f6b97e4d18549cff2b53d17e68a412|commit]] * Panel * Lenovo Tab P11 panel [[https://git.kernel.org/linus/4f048de28b90abefff2044f450e882576eb746e9|commit]], [[https://git.kernel.org/linus/aecb583cb997935fb4f4a667a8013469528a8d53|commit]], [[https://git.kernel.org/linus/1eae88fa7b56b3b02d0e003a737fc31d71f3f486|commit]] * Add Samsung S6D7AA0 panel controller driver [[https://git.kernel.org/linus/6810bb390282bb75801832f31d088236503fee89|commit]], [[https://git.kernel.org/linus/dda445651475b5a2a2941adcf1420fe3e9521bcd|commit]], [[https://git.kernel.org/linus/0dd53308f74fcb16aa4e5cb90739b831c4a558de|commit]] * Support Starry-himax83102-j02 and Starry-ili9882t TDDI MIPI-DSI panel [[https://git.kernel.org/linus/1bc2ef065f13043bbefc927e6dc99c82b56ec037|commit]], [[https://git.kernel.org/linus/8716a6473e6c50a5c335f6fa7d6b73779ecf6972|commit]], [[https://git.kernel.org/linus/06c3269cd5748293d77b9ae8d05611f7cc9187df|commit]], [[https://git.kernel.org/linus/0a73471ca1f7a67d9d2967379087d1784ba62855|commit]] * panel-simple: Add BOE EV121WXM-N10-1850 panel support [[https://git.kernel.org/linus/8bb7c7bca5b70f3cd22d95b4d36029295c4274f6|commit]] * panel-simple: Add InnoLux G070ACE-L01 support [[https://git.kernel.org/linus/4b4b96826ba980fef5bbb9caabcff005c6a60294|commit]], [[https://git.kernel.org/linus/1993f598998d7419f5c9fa8459f4919cf5f3643e|commit]] * vkms * Allow full alpha blending on all planes [[https://git.kernel.org/linus/a03f028542779fbdb0130b6a5e15445c94a859e8|commit]], [[https://git.kernel.org/linus/09c2c8c94b3d3b3c259b05bdd5f67f3a0a8e2063|commit]] * Introduce plane rotation property [[https://git.kernel.org/linus/322d716a3e8a74fb75cd0f657647be4df253fd2f|commit]], [[https://git.kernel.org/linus/4a9820343579f65635500d9f9b268ec6d07496e0|commit]], [[https://git.kernel.org/linus/1ce76fae2bc14dd776b0c237456d8bd117c0e617|commit]], [[https://git.kernel.org/linus/cf7f8c671c830302bd382ac640591ee3d6381ad3|commit]], [[https://git.kernel.org/linus/cd0755508d81736d026bc25647a89dfc79162d95|commit]] * simple: Add Ampire AM-800480L1TMQW-T00H [[https://git.kernel.org/linus/410bb21319f69c2ec28aeafe530d00ed2f6a1c54|commit]] * simple: add support for Rocktech RK043FN48H panel [[https://git.kernel.org/linus/13cdd12a9f934158f4ec817cf048fcb4384aa9dc|commit]] * st7703: Add Anbernic RG353V-V2 Panel Support [[https://git.kernel.org/linus/0ed9208cb120086f1b600199c548f00544406fa5|commit]] * shmobile: Fixes and enhancements [[https://git.kernel.org/linus/5c669c4a4c6aa0489848093c93b8029f5c5c75ec|commit]], [[https://git.kernel.org/linus/d92b057f9270d83b4d71ef0a8f97b9eeb2be7a3f|commit]], [[https://git.kernel.org/linus/2a98bad77970103fec992dabba6fad417693c849|commit]], [[https://git.kernel.org/linus/5afe82398ffe5eac5678e74ed2bc24fc95edc2b5|commit]], [[https://git.kernel.org/linus/79972f160f20c82b56a248daf056ef9befcc8912|commit]], [[https://git.kernel.org/linus/4bd65789ba847f39e37e0041c10aad5dff1760b6|commit]] * lcdif: Add i.MX93 LCDIF support [[https://git.kernel.org/linus/fff8013f15204a902977e7520b0ef7648a655aa9|commit]], [[https://git.kernel.org/linus/3f07432025890f1a49c30132420fb0e623a84a20|commit]], [[https://git.kernel.org/linus/5befcdcaf062abcd362c2e761b069424d9e3b2a4|commit]], [[https://git.kernel.org/linus/c62a7b9ca72472f66c86db69bb0d1bb45c3f372b|commit]], [[https://git.kernel.org/linus/dbb32d8564de455b7cd47482d8d65bc70ee44927|commit]], [[https://git.kernel.org/linus/67d0109fb7aef2a378e885a4127f411a04042160|commit]] * bridge: samsung-dsim: Support variable clocking [[https://git.kernel.org/linus/a617b33f7e513f25becf843bc97f8f1658c16337|commit]], [[https://git.kernel.org/linus/54f1a83c72250b182fa7722b0c5f6eb5e769598d|commit]], [[https://git.kernel.org/linus/33d8d14c83bf67aa0d262961a6fda9c40f3c1052|commit]], [[https://git.kernel.org/linus/171b3b1e0f8b8c894f2388e1cf765a56f831ee5e|commit]], [[https://git.kernel.org/linus/89691775f5735fca9dc40e119edcbb52a25b9612|commit]], [[https://git.kernel.org/linus/bb0e13b9e223b218c9f242f8d340a332b4381042|commit]], [[https://git.kernel.org/linus/5769b45abedca0b9d14145e156c180af36139416|commit]] * vc4: hdmi: Broadcast RGB, BT601, BT2020 [[https://git.kernel.org/linus/5a46e490e47e4d821c382288108f193fc88a9282|commit]], [[https://git.kernel.org/linus/bb1b6094c099668e21b1b47c9327c01f5c395997|commit]], [[https://git.kernel.org/linus/d6020f4b26179481c7cb13aa94d7abcdfd8a4326|commit]], [[https://git.kernel.org/linus/7186004485c9b737faae5aad6b8118dd0bc0face|commit]], [[https://git.kernel.org/linus/e3337aea097ffac21ccebd18114656eb88937517|commit]], [[https://git.kernel.org/linus/1d239901770ef8c31ed4ab7c45d6e8f5715783b6|commit]], [[https://git.kernel.org/linus/1eaa6eedb8cf602476d3bf602e090fb26cbfaf1e|commit]], [[https://git.kernel.org/linus/8297ee3f2d1277ddaa6de14c9520ddd9a1afa610|commit]], [[https://git.kernel.org/linus/b2751a4c5b5a7dcdfcea437f403c94a018cda5c9|commit]] * Intel * fdinfo memory stats [[https://git.kernel.org/linus/686b21b5f6ca2f8a716f9a4ade07246dbfb2713e|commit]], [[https://git.kernel.org/linus/0020582a8afe9a8570f80ec503c59bf049a616de|commit]], [[https://git.kernel.org/linus/3f09a0cd4ea3b9d34495450d686227d48e7ec648|commit]], [[https://git.kernel.org/linus/376c25f8ca47084c4f0aff0f14684780756ccef4|commit]], [[https://git.kernel.org/linus/3e9757f5ddb98238226ad68a1609aa313de35adb|commit]], [[https://git.kernel.org/linus/90d63a150b85fd1debb9c01237fb78faee02746a|commit]], [[https://git.kernel.org/linus/5aa857db54ad2e963d65e234f7e4c183cd89c993|commit]], [[https://git.kernel.org/linus/1324680a80ebf6eaba112bd54efa19e23081797d|commit]] * Add i915 parameter to I915_STATE_WARN() [[https://git.kernel.org/linus/6b9bd7c35d32be464591ba704a80ab2db4f2ea4a|commit]] * debugfs: New debugfs for display clock frequencies [[https://git.kernel.org/linus/d7c281eecec0699449ca9ecfff82fe056dddb488|commit]] * Add MTL PMU support for multi-gt [[https://git.kernel.org/linus/a644fde77ff73ee54970c0fc5a64cf7624c8b5b1|commit]], [[https://git.kernel.org/linus/e367d3c45158ba34bb684227d87c52d8d840fd67|commit]], [[https://git.kernel.org/linus/08322dabb5cbce75e210d8df4774fc078ed7161c|commit]], [[https://git.kernel.org/linus/da5d51672874936c08810e63d6dfc670263d5e15|commit]], [[https://git.kernel.org/linus/b319cc594e666061b22331da654606b92730343a|commit]], [[https://git.kernel.org/linus/bc4be0a38b63b6d4d00a58b10e164f56049be2c2|commit]], [[https://git.kernel.org/linus/906bd0fb137ffc361b3ce0d0db07f288db5582ea|commit]] * Add support for MTL GSC SW Proxy [[https://git.kernel.org/linus/e7b05d95cc1bfa1e61557358d936ebb33b0ae4be|commit]], [[https://git.kernel.org/linus/1dd924f6885b1f3bddc586c39467dc9471729c5e|commit]], [[https://git.kernel.org/linus/8a9bf29546a13efd3ed7784b890c2534e995348f|commit]], [[https://git.kernel.org/linus/31cc65b4c7e37eaf645be2d5fdcade56e3fdf8f2|commit]] * mtl: Add C10 and C20 phy support [[https://git.kernel.org/linus/764739d8cef28a3c926bb58a63894a162d9997a2|commit]], [[https://git.kernel.org/linus/626765bb4b2e732e9a1595fc801f696dbde12db9|commit]], [[https://git.kernel.org/linus/7cb3eb334b8c2a06f780abcf38bffbd9efa4cec1|commit]], [[https://git.kernel.org/linus/39bea0ff0f7470a5a812f50b2485d2380759e19b|commit]], [[https://git.kernel.org/linus/a42e65f33c38e3b0191cf6a1bc8ebb6c8289127d|commit]], [[https://git.kernel.org/linus/88d0ecbde90fdf5b78d702f9ec9711d60d35004c|commit]], [[https://git.kernel.org/linus/463cc9402e71deead30bd85335c56a98a1c1c462|commit]], [[https://git.kernel.org/linus/51390cc0e00a378b7c152bb6f63efc0a01b59d20|commit]], [[https://git.kernel.org/linus/6400c215a1c19e40bab513b20d35780e61b291f5|commit]], [[https://git.kernel.org/linus/5836bc5f8d3113ccdda2a10fb86344a9f03698ca|commit]], [[https://git.kernel.org/linus/a5819e51912292e16f14f4c014c384f754002e5e|commit]], [[https://git.kernel.org/linus/ea8af87ae6be578b3b633ad6aa9188b0ce4cd7ee|commit]], [[https://git.kernel.org/linus/4c4cc7ac207f56ed5db5272dab4169d2d40e418d|commit]], [[https://git.kernel.org/linus/62618c7f117eedfd99b2f857885ed004d31df739|commit]], [[https://git.kernel.org/linus/929f527a7b70a5a7810f83c5e8941657413596c3|commit]], [[https://git.kernel.org/linus/f968a25381acbe147c675fdd7a048f170e6cf44b|commit]], [[https://git.kernel.org/linus/f1f9e62737abc4b6481a9a814526bd3e2cfd4d2f|commit]], [[https://git.kernel.org/linus/ac50317e2659143bd1111b1785b5c0fa0ac1f6bf|commit]], [[https://git.kernel.org/linus/237e7be0bf57c2dd36f074d3b03a3291db3b3abf|commit]], [[https://git.kernel.org/linus/73fc3abcb79732c2c9d4745d61b6859f587f01a3|commit]], [[https://git.kernel.org/linus/7dee06bc0ff5ac7341ee3cde8161e58dc43dd9b0|commit]], [[https://git.kernel.org/linus/ee9634282d875083b2a172f0181f5fe6be50c524|commit]], [[https://git.kernel.org/linus/babde06db8858a4fdb4ab3c64e442885487dbd8c|commit]], [[https://git.kernel.org/linus/c0f3faaf936b67e124e9159fb1223a689cf9e15e|commit]], [[https://git.kernel.org/linus/6f0423b06a0cd55133bafb7a69fd2ac1ff7a6750|commit]], [[https://git.kernel.org/linus/4366750a0d2d587ae8335944d723eb43a6c0d94a|commit]], [[https://git.kernel.org/linus/dac6ce66db3e3bdb5dc66f6713929b125612ef01|commit]] * Support Async Flip on Linear buffers [[https://git.kernel.org/linus/937859485aefed1d9df72feb6ea74a84ff5cfa46|commit]] * Allow user to set cache at BO creation [[https://git.kernel.org/linus/81b1b599dfd71c958418dad586fa72c8d30d1065|commit]] * pxp: Add MTL PXP Support [[https://git.kernel.org/linus/d6bf74de0772e233f97a82cc4dad2ec14b14fb28|commit]], [[https://git.kernel.org/linus/5adacf19f6c3fa7d6119878246e9a253867e14c9|commit]], [[https://git.kernel.org/linus/e5e1e6d28ebcc0fe52567b1301c23f05d4c79df7|commit]], [[https://git.kernel.org/linus/dc9ac125d81faf4761574a9f613ebc8eb35717e1|commit]], [[https://git.kernel.org/linus/99afb7cc8c44578615200ea4806b183e1e35a81d|commit]], [[https://git.kernel.org/linus/d1da138f245d4fb46b21d2ddb19504a2831d813f|commit]], [[https://git.kernel.org/linus/9e134ed720b6e69a5c857743daedd403101ca078|commit]], [[https://git.kernel.org/linus/41e65d8790bd96d1caa3cb136a57ac45a131e66d|commit]] * Check HPD during eDP probe [[https://git.kernel.org/linus/40d06b0fae915ec8bbfbde69ee1cfb2d9a2b7a53|commit]], [[https://git.kernel.org/linus/a98ffd6e333583c9c3f57920c505a37eaf5b2586|commit]], [[https://git.kernel.org/linus/d28cdc43b43b77287d7839ef1b94fdaa24d2a444|commit]], [[https://git.kernel.org/linus/dded35acecffe9b6ec881ddd42c6275a38fbfbfc|commit]], [[https://git.kernel.org/linus/cfe5bdfb27fa234505e96f7775d32415ed705f94|commit]], [[https://git.kernel.org/linus/4b736ed40583631e0cf32c55dbc1e5ec0434a74b|commit]], [[https://git.kernel.org/linus/a823c5a825cf9e49b2e20011cd87d93f949c2a27|commit]], [[https://git.kernel.org/linus/5a0fc7a0df6b3525bf3b33fb27eb8d47f7826dc2|commit]], [[https://git.kernel.org/linus/3d7af6cfed6c2df11388b7ac0630ad8015f9e915|commit]], [[https://git.kernel.org/linus/2bea1d7c594dd0643db23a8131c689384d0e5d8c|commit]], [[https://git.kernel.org/linus/7142ec2e939872d541f88123c491f992dfad4e38|commit]], [[https://git.kernel.org/linus/2798e4d1ccd9b3916a8a4088fa24c0338ede9d90|commit]], [[https://git.kernel.org/linus/ce6ea7eeff2db080de4bfd651ae37818a46777cc|commit]], [[https://git.kernel.org/linus/679df6f19f1ebf575f440a704bcb9fe5b6c1f7ed|commit]], [[https://git.kernel.org/linus/39432640ca99e952095b60baf219c8f17c38a55d|commit]], [[https://git.kernel.org/linus/7b801dee5200d3e3aa437cf2df1427c0470d7bf2|commit]], [[https://git.kernel.org/linus/021a62a52fd22c23a2d01cfe816739b5fca10d28|commit]], [[https://git.kernel.org/linus/49d4648b65d03752904ac945aefa60044329a9a3|commit]], [[https://git.kernel.org/linus/b8a13e878a7da0e5e2167ec06a021aa16135bf55|commit]], [[https://git.kernel.org/linus/4cca9676988f185112d5fc6fd1a2d942c2d4ef4d|commit]] * Allow user to set cache at BO creation [[https://git.kernel.org/linus/81b1b599dfd71c958418dad586fa72c8d30d1065|commit]], [[https://git.kernel.org/linus/0fbcf57077c47b444e91b9ce8a243e6f7f53693d|commit]] * msm * SM63(50|75) DPU support [[https://git.kernel.org/linus/7e85676a4523c096ec02ff1abcd1a6dd52604002|commit]], [[https://git.kernel.org/linus/757d591d965f5fc1cc9888ab480988b6ec8e58fa|commit]], [[https://git.kernel.org/linus/ed41005f5b7c6886179c3f7546ebe50ef7d28d5e|commit]], [[https://git.kernel.org/linus/3b7502b0c205323b679596925d963f1e1c1804af|commit]], [[https://git.kernel.org/linus/2a5c1021bc77857d39a15590682f69c33417f1ba|commit]], [[https://git.kernel.org/linus/c2c1217e61bd80b1d21963ec7c2f8ebb9f77c2a0|commit]], [[https://git.kernel.org/linus/5ff3d3a0a09ecf86f7de6089905d8c9297503da2|commit]], [[https://git.kernel.org/linus/ec2ff4d8160f5d6fdf1b5be7a47e3ff29563b0ba|commit]], [[https://git.kernel.org/linus/6ebaa77ce483effb3e21a22bf534517e12af8c39|commit]] * Display support for MSM8226 [[https://git.kernel.org/linus/d01eb3421b101c6f066fc474f567ba902cca0077|commit]], [[https://git.kernel.org/linus/c6e79fd5c80d8d6f9039b498a1203214bdf7695e|commit]], [[https://git.kernel.org/linus/eed3f9c7c36a2dbf01b6a3529a17b015df68b456|commit]], [[https://git.kernel.org/linus/82cf4954a0d5f50fa546753cbf0388e69755c54d|commit]], [[https://git.kernel.org/linus/1531d0b9235e5c8e959fbfe02c90ecd5b2b8de05|commit]], [[https://git.kernel.org/linus/d5fb01ad5eb449ccfd950e946a882639cad168b3|commit]] * dpu: enable INTF_HDMI support [[https://git.kernel.org/linus/5a7a86bfa2cd79c80e4f3bdb01feb15edd08b92b|commit]], [[https://git.kernel.org/linus/e6f756af381f80c064d1f94077b150f8d95b3dab|commit]] * Add DSC 1.2 dpu supports [[https://git.kernel.org/linus/12cef323c903bd8b13d1f6ff24a9695c2cdc360b|commit]], [[https://git.kernel.org/linus/c20c44403e11d572c1adebf557c64017fd9868fd|commit]], [[https://git.kernel.org/linus/108ff1417795eb991ce5c3af77c119e0841136f2|commit]], [[https://git.kernel.org/linus/d45be1ccd3303201e8f7c28aefe28e6e4b168ab8|commit]], [[https://git.kernel.org/linus/8c4094b275f66d725a785d2314c27e00db2141dd|commit]], [[https://git.kernel.org/linus/625cbb077007698060b12d0ae5657a4d8411b153|commit]], [[https://git.kernel.org/linus/761c629d186009517477a0c415ecfbff3063ecbb|commit]], [[https://git.kernel.org/linus/0d1b10c633468e84e64412b8061f6f7f678f14cb|commit]], [[https://git.kernel.org/linus/997ed53dd69379d266fee206774e1c6b1244c178|commit]] * adreno: GPU support on SC8280XP [[https://git.kernel.org/linus/5e7665b5e484b32872bc1f44263940f094ccd814|commit]], [[https://git.kernel.org/linus/eec51ab2fd6f447a993c502364704d0cb5bc8cae|commit]], [[https://git.kernel.org/linus/598a06afca5a2ab4850ce9ff8146ec728cca570c|commit]] * adreno: GMU-less A6xx support (A610, A619_holi) [[https://git.kernel.org/linus/a770dc6105fbd27a8c08557c8ef720c6aa878b4d|commit]], [[https://git.kernel.org/linus/63204be2806b09ab75e03e42c477f69bfd050efc|commit]], [[https://git.kernel.org/linus/87cc0d0a4204b437c4401864350e7c4ee7710f3f|commit]], [[https://git.kernel.org/linus/bd31afe010ea72de2323c9d95b540f08aeada732|commit]], [[https://git.kernel.org/linus/ce8f1381fd4960634e5f2a96bdf6f4eb177bca6e|commit]], [[https://git.kernel.org/linus/6e332c99d1aac34660c22fd1dffc5d6f83d330fa|commit]], [[https://git.kernel.org/linus/3773a57d9c55d77ad6615f7235b91fcac0e6c65e|commit]], [[https://git.kernel.org/linus/277b967829aad7b24327f246087805078a62076e|commit]], [[https://git.kernel.org/linus/05a23a76d35b874dcfab2ad8e8d156d7f24894bd|commit]], [[https://git.kernel.org/linus/df5bb404fa925a1b1fa3893f4976094227fbc1f0|commit]], [[https://git.kernel.org/linus/30f55f3f2374b53a28f08f9a670c1ba7ade3805a|commit]], [[https://git.kernel.org/linus/5a903a44a98471cedf0021fac0a6a64bbe86943f|commit]], [[https://git.kernel.org/linus/9bad37600c89eb6b3ac65faabbb26da21b48ccad|commit]], [[https://git.kernel.org/linus/8296ff0afdf22656683c9cf908ee8abdfa96d03a|commit]], [[https://git.kernel.org/linus/e7fc9398e608a7bc057fe7d50dbdaf3052be59b5|commit]], [[https://git.kernel.org/linus/3e90044d3e4941efafbfcfad8b1b7cfdb6d97a58|commit]], [[https://git.kernel.org/linus/b3bcd583fa6f963be9c8a08405b2cbaeea797a3c|commit]], [[https://git.kernel.org/linus/20c8e39985b9a4442123e0fa6496183d9418e422|commit]], [[https://git.kernel.org/linus/cd036d542afb82adfbbd43c5dbeb7010e8e91ee7|commit]] * meson: add support for MIPI DSI Display [[https://git.kernel.org/linus/0628f2341e96213c9f2d074853b255f65acd3795|commit]], [[https://git.kernel.org/linus/25b3b35cd51ef0d98165666d250a51f39db6a1fc|commit]], [[https://git.kernel.org/linus/6a044642988b5f8285f3173b8e88784bef2bc306|commit]], [[https://git.kernel.org/linus/44e16166e0e9b94d8bcdf55fc0e5fcceca1154f0|commit]], [[https://git.kernel.org/linus/51fc01a03442cce5e4c21375a1ceb2e4ec93c833|commit]], [[https://git.kernel.org/linus/42dcf15f901c8222352da31d622b4ee844068f42|commit]], [[https://git.kernel.org/linus/77d9e1e6b8468f701ab024a060aa9c0339356870|commit]], [[https://git.kernel.org/linus/29c6df0d942454cb43334cf0e36de068f4124b94|commit]], [[https://git.kernel.org/linus/a74c41f6dd83e37e14b07bc6dca795110a6a16d7|commit]] == Power Management == * thermal * Allow selecting the bang-bang governor as default [[https://git.kernel.org/linus/04bf1fe478d81868308bc91b4a1bce50d693f203|commit]] * intel: int340x_thermal: New IOCTLs for Passive v2 table [[https://git.kernel.org/linus/ea197ea2ba572cd350f9fe6224a7d6a8347d91ad|commit]] * qcom/tsens-v0_1: Add support for MSM8226 [[https://git.kernel.org/linus/598e1afca47fdbb302ce8d288b06bcc8728efc6c|commit]] * qcom/tsens-v0_1: Add MSM8909 data [[https://git.kernel.org/linus/4af164c1c11895adcf0181a6c627fbcacf439107|commit]] * armada: Add support for AP807 thermal data [[https://git.kernel.org/linus/62a094e757a75b5d0a63dfe17a7c17ab2da330fd|commit]] * Enable MSM8226 TSENS support [[https://git.kernel.org/linus/0abd6406624cffb9cf011ea41447b0c9f6a48e5f|commit]], [[https://git.kernel.org/linus/2976eec238dcd89475664795f54d4a4d3d05e0f9|commit]], [[https://git.kernel.org/linus/5b1e5d9a21ec2ad0654ce192371ed81b12088c6f|commit]], [[https://git.kernel.org/linus/0f8861c9fc7cc9af6d6f65d6657aa9cf2531b29c|commit]], [[https://git.kernel.org/linus/8d4236f62f3acbc6a0def79106c13fe7344d8238|commit]] == Storage == * scsi: Add Command Duration Limits support [[https://git.kernel.org/linus/8b60e2189fcd8b10b592608256eb97aebfcff147|commit]], [[https://git.kernel.org/linus/6c913257226a25879bfd6226e0ee265e98904ce6|commit]], [[https://git.kernel.org/linus/dffc480d2df1772d6092f46f2b4c5e0de941bd47|commit]], [[https://git.kernel.org/linus/3d848ca1ebc8d8864f25bd461914c93eff82a2d2|commit]], [[https://git.kernel.org/linus/734326937b65cec7ffd00bfbbce0f791ac4aac84|commit]], [[https://git.kernel.org/linus/a6cdc35fab0d813d54744abe2af07d6c49c07d6e|commit]], [[https://git.kernel.org/linus/152e52fb6ff180e97d64585e87fea44c49b8bda8|commit]], [[https://git.kernel.org/linus/62e4a60e0cdb540b314061469e025fd834ff300c|commit]], [[https://git.kernel.org/linus/1b22cfb14142aba7742d307c4f8d7006f919308c|commit]], [[https://git.kernel.org/linus/eafe804bda7ba01da562c43351068b8a76a579af|commit]], [[https://git.kernel.org/linus/390e2d1a587405a522dc6b433d45648f895a352c|commit]], [[https://git.kernel.org/linus/91a8967ca7f4b8eabe021b1ba974a992cfca2a07|commit]], [[https://git.kernel.org/linus/24aeebbf8ea94b5c0cde06350b06e79f5beb28ae|commit]], [[https://git.kernel.org/linus/0de558015286374443cb1920d32bbf54bd045eb7|commit]], [[https://git.kernel.org/linus/673b2fe6ff1da29d9e70bd484903964772dcae3d|commit]], [[https://git.kernel.org/linus/df60f9c64576d6d05b59ec5c34addcd61ef1efb0|commit]], [[https://git.kernel.org/linus/18bd7718b5c489b3161b6c2ab4685d57c1e2da3b|commit]] * ufs: Do not requeue while ungating the clock [[https://git.kernel.org/linus/2ef23e4b537be3b417080bdade7ef48cf9f95266|commit]], [[https://git.kernel.org/linus/c854bcdf5e18a3b672e363138f2f6657a1803170|commit]], [[https://git.kernel.org/linus/b125bb99559e3639764b8d169e3e9b80858fa2af|commit]], [[https://git.kernel.org/linus/6c03c8e9b729a1ca2131a187233f8836a66a277b|commit]], [[https://git.kernel.org/linus/4b68b7f9c46d90c541d39c8b397a86ac0ca4c765|commit]], [[https://git.kernel.org/linus/078f4f4b34d6c2dadabb363d3fc6c84b32927dea|commit]] * Enable {{{IOU_F_TWQ_LAZY_WAKE}}} for NVME passthrough [[https://git.kernel.org/linus/5f3139fc46993b2d653a7aa5cdfe66a91881fd06|commit]], [[https://git.kernel.org/linus/f026be0e1e881e3395c3d5418ffc8c2a2203c3f3|commit]] * Allow to use the block pr_ops with LIO's target_core_iblock module to support cluster applications in VMs. Currently, to use windows clustering or linux clustering (pacemaker + cluster labs scsi fence agents) in VMs with LIO and vhost-scsi, you have to use tcmu or pscsi or use a cluster aware FS/framework for the LIO prfile. This release allows iblock to work like pscsi/tcmu where they can pass a PR command to the backend module [[https://git.kernel.org/linus/7907ad748bdba8ac9ca47f0a650cc2e5d2ad6e24|commit]], [[https://git.kernel.org/linus/c787f1baa5031c22cbe20af17b2ee36ad32957ea|commit]], [[https://git.kernel.org/linus/7ba150834b840f6f5cdd07ca69a4ccf39df59a66|commit]], [[https://git.kernel.org/linus/20bebccbc45db71b4a55c465fcc1be37d5daed0d|commit]], [[https://git.kernel.org/linus/0730b1632b7e803aad81ff19a4fda964a9d97053|commit]], [[https://git.kernel.org/linus/8a8da082e9e46fb8c246822145a2e4920a8d03d5|commit]], [[https://git.kernel.org/linus/f2bf2e7e2d526116aab942aaf1b71a949a570ba6|commit]], [[https://git.kernel.org/linus/d45b446bd81822f5a0c3019f58e6c69f7ce71ce6|commit]], [[https://git.kernel.org/linus/b668f2f5467c3316b67fa04975e2fccb0baec576|commit]], [[https://git.kernel.org/linus/f0614790b77300d69a1f37265f98b68c4835811b|commit]], [[https://git.kernel.org/linus/5fd96a4e15de8442915a912233d800c56f49001d|commit]], [[https://git.kernel.org/linus/be1a7cd2d0ed028ffdd60c65e3734e2a1d8b17df|commit]], [[https://git.kernel.org/linus/28c97ba38ff9c00bc177887c2d8568b7115a44e0|commit]], [[https://git.kernel.org/linus/0217da08c1b904be49ac141442bbc1671d3630e7|commit]], [[https://git.kernel.org/linus/53062ace0b6e47f17cae2db453858c8a369a2fe4|commit]], [[https://git.kernel.org/linus/d9b3275bddd58f1e61171483c3625b5bd0841b71|commit]], [[https://git.kernel.org/linus/8455799d2d4676b746dce3d59cbc8060a6223619|commit]], [[https://git.kernel.org/linus/394f811848827ad23d2b43e94e5d72a24cfbc39f|commit]] * ufs: ufs-pci: Add support for Intel Arrow Lake [[https://git.kernel.org/linus/51031cc3f903e202cb79a27766e10227b9cace97|commit]] * ufs: wb: Add explicit flush_threshold sysfs attribute [[https://git.kernel.org/linus/e3d55626cff32cf7defff7f2053672adc4a712da|commit]] * lpfc: Enhance congestion statistics collection [[https://git.kernel.org/linus/93190ac1d4e7aa5fc959cf6a2bd294c1dfe6ee47|commit]] * qla2xxx: Multi-que support for TMF [[https://git.kernel.org/linus/d90171dd0da50212f5950cc708240831e82f2f91|commit]] * smartpqi: Add new controller PCI IDs [[https://git.kernel.org/linus/fe0375d48513ce0e3d98dbcec5508e1dd09dc5b2|commit]] * smartpqi: Add support for RAID NCQ priority [[https://git.kernel.org/linus/68f7920492be3d193d31b5a6b97e8501d2306b17|commit]] * smartpqi: Add sysfs entry for NUMA node in /sys/block/sdX/device [[https://git.kernel.org/linus/d2c7583f27cc138354a1cd3c990923de7fd2126a|commit]] * ufs: core: mcq: Add ufshcd_abort() and error handler support in MCQ mode [[https://git.kernel.org/linus/a8f9a36e46344ea5bdc301c2fde0389a463bf0a3|commit]], [[https://git.kernel.org/linus/7aa12d2fe89d7b95ad01ca38a291c7ec3efe7599|commit]], [[https://git.kernel.org/linus/8d7290348992f27242dd6a696fa2eede709f0b14|commit]], [[https://git.kernel.org/linus/adf452611677d048203398f489e2175a9068f9f7|commit]], [[https://git.kernel.org/linus/f1304d4420777f82a1d844c606db3d9eca841765|commit]], [[https://git.kernel.org/linus/57d6ef4601c0b7975aab5144c7c3760846362e1c|commit]], [[https://git.kernel.org/linus/ab248643d3d68b30f95ee9c238a5a20a06891204|commit]] == Drivers in the Staging area == * Add Tegra20 parallel video input capture [[https://git.kernel.org/linus/7e3d507ab040c0f21f680c6e23d8432623867b3c|commit]], [[https://git.kernel.org/linus/f17aa778ac36298a8b5648984de6f1b8c8d87705|commit]], [[https://git.kernel.org/linus/b48ece9bb81b2a0e84dfd08432c4f5cdb81f84c0|commit]], [[https://git.kernel.org/linus/2f229d40490534e76ab06c4b3a5627ae08620997|commit]], [[https://git.kernel.org/linus/c1950a111dd87604009496e06033ee248c676424|commit]], [[https://git.kernel.org/linus/40ecb38e5c961174f86bfb4d5b1d2ae821cc45c2|commit]], [[https://git.kernel.org/linus/26b44232f581b2baa8a2e767b52db33a9c7e839b|commit]], [[https://git.kernel.org/linus/983d22f6deb16aca1727ac3713a539650ef37e81|commit]], [[https://git.kernel.org/linus/44977bdc157f4619e919ea448f51ef247ab44f57|commit]], [[https://git.kernel.org/linus/21bd264c1c2608388387f7dcf6916091c9a023e9|commit]], [[https://git.kernel.org/linus/c973880dfbe2b1cf85276c2e6f4fc3478d24d649|commit]], [[https://git.kernel.org/linus/1a3ea975d794181056157412183e4c23ea87353b|commit]], [[https://git.kernel.org/linus/aabec712ce0e5ca2e47904dbc4326de614dc0bbf|commit]], [[https://git.kernel.org/linus/3bc46d752eab89ff2ddbd49cba931cf49d9c5dfb|commit]], [[https://git.kernel.org/linus/ef9435a5b4066e6935b922702446b555565898c9|commit]], [[https://git.kernel.org/linus/89a0f667cb20c53dd9164d72a565a146af0fd11e|commit]], [[https://git.kernel.org/linus/4cbd8479cd2ea6d36597ad7c16860a074d804f85|commit]], [[https://git.kernel.org/linus/b4e2572267a1e91ba6e4813b4d71517cccccdbea|commit]], [[https://git.kernel.org/linus/eeb036ab9ca90bcc0abf917a14983fb8a66b7a28|commit]], [[https://git.kernel.org/linus/e740d199cf0ff1e53ddc2ab067c0a09b55845d68|commit]] * media: staging: max96712: Add support for 3-lane C-PHY [[https://git.kernel.org/linus/6311a0d0220f18c436391b75a5c217f9d27b9b49|commit]] * media: atomisp: Remove a bunch of sensor related custom IOCTLs [[https://git.kernel.org/linus/503bf3090a19b6c7ba620b9c224a9409a41d3c91|commit]] * media: atomisp: ov2680: Implement selection support [[https://git.kernel.org/linus/a5cc2f0dc51964c200dc6cfcdf8a77aa711b7c0c|commit]] * media: atomisp: Add support for sensors which implement selection API / cropping [[https://git.kernel.org/linus/04eca831605390071be83b87774e4987639e6331|commit]] * media: atomisp: Add support for v4l2-async sensor registration [[https://git.kernel.org/linus/8d28ec7e9145ef6308ab3438d73308ec6ea14360|commit]], [[https://git.kernel.org/linus/1aace3da2847a003a3dcadada2820dbb9b4291ec|commit]], [[https://git.kernel.org/linus/d80be6a10cd3855004dc0ba3716fb1c76471dea1|commit]] * media: atomisp: Add enum_framesizes function for sensors with selection / crop support [[https://git.kernel.org/linus/e980fb04e779730b799a4ba712db901a7b08e8f9|commit]], [[https://git.kernel.org/linus/0af9078315c1a737675f041996c02582610b7cfd|commit]] == Networking == * Add a regmap-based mdio driver and drop TSE PCS [[https://git.kernel.org/linus/642af0f92cbe01c4b05eb38a0fe94867a3798b34|commit]], [[https://git.kernel.org/linus/3f58f6dc4d92ed6fae4a4da0d5b091e00ec10fa8|commit]], [[https://git.kernel.org/linus/db48abbaa18e571106711b42affe68ca6f36ca5a|commit]], [[https://git.kernel.org/linus/196eec4062b006575e441ef00339c3ebcea26b8d|commit]], [[https://git.kernel.org/linus/4a670ac3e75e517c96cbd01ef870dbd598c3ce71|commit]], [[https://git.kernel.org/linus/5d1f3fe7d2d54d04b44aa5b9b62b305fdcf653ec|commit]] * Add and use helper for PCS negotiation modes [[https://git.kernel.org/linus/f99d471afa03f770149f1cc60a288b9a08285903|commit]], [[https://git.kernel.org/linus/cdb08aa0473730315dbc088d5394e59622314034|commit]], [[https://git.kernel.org/linus/febf2aaf05641f3258cc30e072aff65cffc7c82c|commit]], [[https://git.kernel.org/linus/f40df95d375dc9c96da541a2c4ac0ce1e630309d|commit]] * Add support for VSC85xx DT RGMII delays [[https://git.kernel.org/linus/31605c01fb242806f5b8c9d08abe11328d514206|commit]], [[https://git.kernel.org/linus/dbb050d2bfc8a91dfa3d020c51633c077a53d18b|commit]] * Add support for partial store and forward [[https://git.kernel.org/linus/cae4bc06b3e41bc6dfd7116a45c1006e50ffe153|commit]], [[https://git.kernel.org/linus/5b32c61a2dac17db3f87c65cada74c9d7f31f4fb|commit]] * Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally [[https://git.kernel.org/linus/fa01eba11f0e57c767a5eab5291c7a01407a00be|commit]] * Bluetooth: btusb: Add device 6655:8771 to device tables [[https://git.kernel.org/linus/022b6101c28a33fa8073b284423b88dc46b03d87|commit]] * Intel Wired LAN Driver Updates 2023-06-22 (ice) [[https://git.kernel.org/linus/a734c43caa4d9a08da521be1a2135cadf1510e75|commit]], [[https://git.kernel.org/linus/469748429ac81f0a6a344637fc9d3b1d16a9f3d8|commit]], [[https://git.kernel.org/linus/f98277479ad85ff1398e11c1e944ba97c3917393|commit]], [[https://git.kernel.org/linus/ad667d626825383b626ad6ed38d6205618abb115|commit]], [[https://git.kernel.org/linus/1dacc49782e67d4316b46329e416c24473c0369c|commit]], [[https://git.kernel.org/linus/b7a0345723385c3cc0438cf4266ccc110dc7b583|commit]] * LED brightness support for Broadcom PHYs [[https://git.kernel.org/linus/57fd7d59b1c7d6f6a1c34863a2bc4ff1f6c92d40|commit]], [[https://git.kernel.org/linus/bd5736e146e35f9eabe8c1bfc0ab00979ae62930|commit]] * RDMA/bnxt_re: Enable low latency push [[https://git.kernel.org/linus/360da60d6c6edb9740de7a8e6d8969d62ceff956|commit]] * RDMA/bnxt_re: driver update for supporting low latency push [[https://git.kernel.org/linus/24ce94782c4878fe25ff15d8c08088a6ca5810e1|commit]], [[https://git.kernel.org/linus/390bf429cc6ce6844f834b1d9ddfbc1125aff1fc|commit]], [[https://git.kernel.org/linus/7d3115eba3e3eef6e0cbe65f05285c5ab28360d7|commit]], [[https://git.kernel.org/linus/ba75fe7b500e71aff8bc3b7096c4ce1dcc649eb3|commit]], [[https://git.kernel.org/linus/3fe9882fbb50eeb724504df5979e9140f8842f76|commit]], [[https://git.kernel.org/linus/0ac20faf5d837b59fb4c041ea320932ed47fd67f|commit]], [[https://git.kernel.org/linus/360da60d6c6edb9740de7a8e6d8969d62ceff956|commit]] * RVU NIX AF driver updates [[https://git.kernel.org/linus/09de114c770fef0c8c586b4dd59431226d873387|commit]], [[https://git.kernel.org/linus/79bc788c038c9c87224d41ba6bbab20b6bf1a141|commit]], [[https://git.kernel.org/linus/bbba125eade7916277ef694d562cc95a39e86487|commit]], [[https://git.kernel.org/linus/b6a072a153277dc590703ada2fd1f53ecb7f8cb9|commit]], [[https://git.kernel.org/linus/4ed6387a61fcc96f46859349b7e7696db9988ed6|commit]], [[https://git.kernel.org/linus/e18aab0470d8f6259be82282ffb3fdcfeaeff6c3|commit]] * Support for Wake-on-LAN for Broadcom PHYs [[https://git.kernel.org/linus/a7e3448086d580abadccff399316c6eb5ecdedbf|commit]], [[https://git.kernel.org/linus/8baddaa9d4bac939004b5058f3ade7e2bf0a6e43|commit]], [[https://git.kernel.org/linus/7e400ff35cbe3b25fc1da1586b6cd9bc426dfb1c|commit]] * TXGBE PHYLINK support [[https://git.kernel.org/linus/c3e382ad6d15a8041ab8a168ad3ff90137ee8a45|commit]], [[https://git.kernel.org/linus/b63f20485e433e6e548df81f5c76556d7f187266|commit]], [[https://git.kernel.org/linus/2f8d1ed793453b9f7a832c96d699bf3dca176280|commit]], [[https://git.kernel.org/linus/c625e72561f6c9bd5d1a86aa4d1d5a68db43d2e0|commit]], [[https://git.kernel.org/linus/04d94236182e4f46bea6a48e3830b27f361f090f|commit]], [[https://git.kernel.org/linus/b83c37315a620fc8dcb5f3cffe4753765228d1f4|commit]], [[https://git.kernel.org/linus/af8de1e307bf1ecbd17d220122832cd093f7a3f8|commit]], [[https://git.kernel.org/linus/854cace61387b6f60734d9ec254443a6894c480d|commit]], [[https://git.kernel.org/linus/08f08f9390e4d7770e400b98eb4a25909593508e|commit]] * USB: zaurus: Add ID for A-300/B-500/C-700 [[https://git.kernel.org/linus/b99225b4fe297d07400f9e2332ecd7347b224f8d|commit]] * Wangxun netdev features support [[https://git.kernel.org/linus/3403960cdf86c967442dccc2bec981e0093f716e|commit]], [[https://git.kernel.org/linus/ef4f3c19f912820c15a6de0aedcc0fda67c7dd3a|commit]], [[https://git.kernel.org/linus/f3b03c655f67834cb25174ac6f2b099c9e68c74d|commit]], [[https://git.kernel.org/linus/6dbedcffcf543afe1297f86fd6620327482a3a98|commit]], [[https://git.kernel.org/linus/6670f1ece2c8c069428ed00c8344b8dbbdcf9748|commit]], [[https://git.kernel.org/linus/7df4af51deb3cf10a23ad6f6ec3079f5af3c049c|commit]] * amd-xgbe: extend 10Mbps support to MAC version 21H [[https://git.kernel.org/linus/6b5f9a87e12d044f513a4f4c0e31ac7b5e988b66|commit]] * ath11k: factory test mode support [[https://git.kernel.org/linus/b43310e44edc823a7f02af1e1e2b4e8a9abc7d91|commit]], [[https://git.kernel.org/linus/86f85575a3f6a20cef1c8bb98e78585fe3a53ccc|commit]], [[https://git.kernel.org/linus/8aeba427296bff6a6051686f1d139c89a0b00e4c|commit]] * bcmgeAdd support for PHY-based Wake-on-LAN [[https://git.kernel.org/linus/7e400ff35cbe3b25fc1da1586b6cd9bc426dfb1c|commit]] * can: kvaser_pciefd: Fixes and improvments [[https://git.kernel.org/linus/7c921556c04f1907e68e57610f315d8873320ad7|commit]], [[https://git.kernel.org/linus/76c66ddf7f899b6a9cbd9098990b90f77a8bea9c|commit]], [[https://git.kernel.org/linus/2d55e9f9b4427e1ad59b974f2267767aac3788d3|commit]], [[https://git.kernel.org/linus/ec681b91befa982477e24a150dd6452427fe6473|commit]], [[https://git.kernel.org/linus/2c470dbbd32ff7f864e77397269cbb7dc453cfa2|commit]], [[https://git.kernel.org/linus/c496adafee686246fdc803183c2506043f99b3af|commit]], [[https://git.kernel.org/linus/1b83d0ba1c11d51342d390db19d8e53128a80b40|commit]], [[https://git.kernel.org/linus/488c07b441f95e0d0d8df0ede4c67319f0f35787|commit]], [[https://git.kernel.org/linus/24aecf55370103cc2d1e3cbb1b8fffcb00482b74|commit]], [[https://git.kernel.org/linus/69335013c4511cf99d3e338d369ccb37d30d6fee|commit]], [[https://git.kernel.org/linus/954fb21268dd59a911dd0b493249eabfa03d0567|commit]], [[https://git.kernel.org/linus/f07008a213640ba5389d924ad0e9e08ea3beed4a|commit]], [[https://git.kernel.org/linus/212f07a21622cbd4bb271b558b2d3ae0652e9875|commit]], [[https://git.kernel.org/linus/6fdcd64ec34dc896335718299c348de99b29a605|commit]] * can: kvaser_usb: Add len8_dlc support [[https://git.kernel.org/linus/843b84640349e56ab96812cd68c19ed7021f4606|commit]] * can: usb: f81604: add Fintek F81604 support [[https://git.kernel.org/linus/88da17436973e463bed59bea79771fb03a21555e|commit]] * chelsio: Support MSG_SPLICE_PAGES [[https://git.kernel.org/linus/116f7b361ebbb6095257c27da327e27000488214|commit]] * dsa: marvell: Add support for mv88e6071 and 6020 switches [[https://git.kernel.org/linus/dd4144e54e811729b2a1ff28e1dab380aad5293e|commit]], [[https://git.kernel.org/linus/71d94a432a15eb710069f5111a1b4459d7e7cd87|commit]], [[https://git.kernel.org/linus/372188c86e4b2adbac41d998ed96ade83eff5494|commit]] * dsa: mv88e6xxx: implement USXGMII mode for mv88e6393x [[https://git.kernel.org/linus/4a56212774acf71a7356026fb11b78228a7ad24d|commit]] * dsa: qca8k: add support for additional modes for netdev trigger [[https://git.kernel.org/linus/2555f35a4f428a9bfdf09aa0459dbfdf59a24a9a|commit]] * ena: Add dynamic recycling mechanism for rx buffers [[https://git.kernel.org/linus/f7d625adeb7bc6a9ec83d32d9615889969d64484|commit]] * fec: turn on XDP features [[https://git.kernel.org/linus/e4ac7cc6e5a45306049ac2337dea0e636adf36be|commit]] * gve: Support IPv6 Big TCP on DQ [[https://git.kernel.org/linus/a695641c8eaac268ad7e373c7e33c00b88b2bcbf|commit]] * ice: allow matching on meta data [[https://git.kernel.org/linus/03592a14b9383bbe1c0d56e7ac4005cea10e711a|commit]], [[https://git.kernel.org/linus/ecd01b69a5f8edda731d8a7cfe33c9ffa0c85700|commit]], [[https://git.kernel.org/linus/40fd749245f2ee32874e563051957cc614cf11e4|commit]], [[https://git.kernel.org/linus/17c6d8357da1ae6a5d92c15efe68f877c3e8b968|commit]], [[https://git.kernel.org/linus/0ef4479d13af4c5516920520d9cf7bcfe801b353|commit]] * igc: XDP kfunc metadata [[https://git.kernel.org/linus/84214ab4689f962b4bfc47fc9a5838d25ac4274d|commit]], [[https://git.kernel.org/linus/915efd8a446b74442039d31689d5d863caf82517|commit]], [[https://git.kernel.org/linus/73b7123de0cfa4f6609677e927ab02cb05b593c2|commit]], [[https://git.kernel.org/linus/d677266755c6e55c43b6755673a1eeae3d452e87|commit]], [[https://git.kernel.org/linus/8416814fffa9cfa74c18da149f522dd9e1850987|commit]], [[https://git.kernel.org/linus/bb323478767d4b4d78380bc9e2c0971ca33442af|commit]] * ionic: add support for ethtool extended stat link_down_count [[https://git.kernel.org/linus/132b4ebfa090492663f84144a1e7afaca54cd58a|commit]] * lan966x: Add support for ES0 VCAP [[https://git.kernel.org/linus/011be872643446a9b7c4485cfc8b5f50b0f93a13|commit]], [[https://git.kernel.org/linus/96b6c8a662a39a9ce3a0dac929e23c8a8d454f37|commit]], [[https://git.kernel.org/linus/85f050002ba99150168078adab6d0f38c0463494|commit]] * lan966x: Add support for PCP, DEI, DSCP [[https://git.kernel.org/linus/1fd22211354a94cb5afa7d7dab1a8e2c5ec1eed8|commit]], [[https://git.kernel.org/linus/a83e463036ef491ba0f7b99f82a12c902a285245|commit]], [[https://git.kernel.org/linus/10c71a97eeeb0fb703225203059d2aeac79acb2a|commit]], [[https://git.kernel.org/linus/0c88d98108c615d9a8c1325857d44792c8924b16|commit]], [[https://git.kernel.org/linus/f8ba50ea13fb38da26aea8e1cba2ab30493e2c71|commit]], [[https://git.kernel.org/linus/363f98b96a43f11cb4c6e4d69199d656d2e5b373|commit]], [[https://git.kernel.org/linus/d38ddd56d90eb156b2708637403fd8a936c0113a|commit]] * mana: Add support for vlan tagging [[https://git.kernel.org/linus/b803d1fded4085d268507a432dac8077ead68971|commit]] * mdio: add clause 73 to ethtool conversion helper [[https://git.kernel.org/linus/e9261467ae86a6544bb602a55a1eab52696e71e3|commit]] * mlx5 updates: [[https://git.kernel.org/linus/962825e534a998025bc23a187c457ec7f9fac764|commit]], [[https://git.kernel.org/linus/222dd185833e464faad2d175c14bca584b6b6dad|commit]], [[https://git.kernel.org/linus/4c103aea4bedfb109e91bed2023178059947fc4c|commit]], [[https://git.kernel.org/linus/86a12124dc0249d60bb5f01497b3a86e99efae6d|commit]], [[https://git.kernel.org/linus/c83e6ab96ef20bcdb5bfb12f42bd2e6734920bfd|commit]], [[https://git.kernel.org/linus/d61bab396115dafc9ad572afa57d464e2e00b396|commit]], [[https://git.kernel.org/linus/7718c1c8ac325019a3d727e994faab9cf2438263|commit]], [[https://git.kernel.org/linus/6ec0b55e72a5c6fb056ad1eea12a3b5a74a402fe|commit]], [[https://git.kernel.org/linus/a33682e4e78e249155abbe5e8ee880d5760b5e28|commit]], [[https://git.kernel.org/linus/f4692ab13a1f7ad2c2098b838c2820c113ce8a07|commit]], [[https://git.kernel.org/linus/de1f0a650824ed1905d5d48190f65f309cee5163|commit]], [[https://git.kernel.org/linus/97bd788efb9052963b43ba41c8aaff3ed12e1ede|commit]], [[https://git.kernel.org/linus/eb8e9fae0a22d07c6a09983ec52a2dcdc9d4d82b|commit]], [[https://git.kernel.org/linus/803ea346bd3ff1ac80fc65cf5899c0ad045d1788|commit]] * mlx5: Add management of EC VF vports [[https://git.kernel.org/linus/a7719b29a82199b90ebbf355d3332e0fbfbf6045|commit]] * mlx5: Bridge, expose FDB state via debugfs [[https://git.kernel.org/linus/791eb78285e8b81bc09bfc6bd928b981eaefb082|commit]] * mlx5: Expose bits for local loopback counter [[https://git.kernel.org/linus/0bd2e6fc78fddf83b9a71a61bdf0c4caca83abe7|commit]], [[https://git.kernel.org/linus/c8013a1f714f6d9f2d8d673177a824c6b9653218|commit]], [[https://git.kernel.org/linus/b3bd68925ebb20942d448405351cf43cac9676a7|commit]], [[https://git.kernel.org/linus/8bbe544e03809514e441994b4b849fdbeadd0068|commit]], [[https://git.kernel.org/linus/2bd3b292955fe0a7eb2f768f36a767eddaedd6da|commit]], [[https://git.kernel.org/linus/5f2cf757f9c56255470c23a2a4a5574a34edad4b|commit]] * mlx5: Update SRIOV enable/disable to handle EC/VFs [[https://git.kernel.org/linus/6d98f314bfca10cebf66e42573c4b362ed2ee17c|commit]], [[https://git.kernel.org/linus/7057fe561988effa0b044b99262bb3712a5892c0|commit]], [[https://git.kernel.org/linus/2059cf51f318681a4cdd3eb1a01a2d62b6a9c442|commit]], [[https://git.kernel.org/linus/3f90840305e2b240749aec7dde23f5262e513641|commit]], [[https://git.kernel.org/linus/e71383fb9cd15a28d6c01d2c165a96f1c0bcf418|commit]], [[https://git.kernel.org/linus/978015f7ef9240acfb078f4c1c0d79459b42f951|commit]] * mlx5e: E-Switch: move debug print of adding mac to correct place [[https://git.kernel.org/linus/292243d13b1821434599fef7b4ea62110ea771c1|commit]], [[https://git.kernel.org/linus/3d7c5f78b8cef1376de95443632212f9042d7e78|commit]], [[https://git.kernel.org/linus/c24246d07a942887fb62cd76229c89efdee6d948|commit]], [[https://git.kernel.org/linus/7eb197fd83a355214346feddd55fe3336125953f|commit]], [[https://git.kernel.org/linus/0279b5454c0e8344f30fcac90db76cf17b6b76c7|commit]], [[https://git.kernel.org/linus/f5d87b47a1d9dc14c048c84935397d97833ac706|commit]] * mlxbf-bootctl: Add sysfs file for !BlueField boot log [[https://git.kernel.org/linus/e9d1b2d0f7d02f75127b3bc243c0f69f8bd05f04|commit]] * mlxsw: spectrum_flower: Add ability to match on layer 2 miss [[https://git.kernel.org/linus/caa4c58ab5d9078097067cdd8a350ff6796df0ba|commit]] * net: dsa: mv88e6xxx: add 88E6361 support [[https://git.kernel.org/linus/9229a9483d80ba1cc7a75a552afff3e5afdf99e0|commit]], [[https://git.kernel.org/linus/ca345931907ff1893f02f5fe1349b16c9fc27e4c|commit]], [[https://git.kernel.org/linus/7a2dd00be869f0bcdcb13f4272913ba7371ab583|commit]], [[https://git.kernel.org/linus/3ba89b28adb21a5d5d78e905e2c3972816606bb4|commit]], [[https://git.kernel.org/linus/2f93493970dfa46779f134f1fb2cd803b8c80ea4|commit]], [[https://git.kernel.org/linus/18e1b7422dffe4c0f897fa63eb074f79d1d9d0a0|commit]], [[https://git.kernel.org/linus/12899f299803d293d8e4d46d67cf2cc1380b9faa|commit]] * nfp: add L4 RSS hashing on UDP traffic [[https://git.kernel.org/linus/57910a47ffe993c2724a916b9e003d84ff0c0df7|commit]] * nfp: improve link modes reading process [[https://git.kernel.org/linus/a731a43e8669a0b430c79a3e38890c27a5847a76|commit]] * ngbe: Add netdev features support [[https://git.kernel.org/linus/50a908a0bd8b9e589fcdcc26f2acd57a253eca8d|commit]] * ngbe: Implement vlan add and remove ops [[https://git.kernel.org/linus/361bf4f47cee800b9740d8e1f8ba73ccc248a934|commit]] * octeontx2-pf: Add support for page pool [[https://git.kernel.org/linus/b2e3406a38f0f48b1dfb81e5bb73d243ff6af179|commit]] * octeontx2-pf: HTB offload support [[https://git.kernel.org/linus/47a9656f168a4b76a1e069ed8a67924ea8c1ac43|commit]], [[https://git.kernel.org/linus/12e7789ad5b476e945aba8edb1161c633cb7db31|commit]], [[https://git.kernel.org/linus/508c58f76ca510956625c945f9b8eb104f2c8208|commit]], [[https://git.kernel.org/linus/ab6dddd2a669a0ecc2ce07485c7a15fadbb5a0aa|commit]], [[https://git.kernel.org/linus/6b4b2ded9c4282deea421eef144ab0ced954721c|commit]], [[https://git.kernel.org/linus/cb748a7ebad79b35a4cb652c2148fbebdcd860f3|commit]], [[https://git.kernel.org/linus/5e6808b4c68d7882971514ab3279926eb07c8b2d|commit]], [[https://git.kernel.org/linus/6cebb6a4b114783af5f4747ffe3ec87d94eccf52|commit]], [[https://git.kernel.org/linus/efe103065ccb4984c094d1547d71d498129cdd89|commit]] * octeontx2-pf: TC flower offload support for rxqueue mapping [[https://git.kernel.org/linus/365eb32e4b456064aea4db61adc0a65b8a09bc80|commit]] * octeontx2-pf: mcs: Support VLAN in clear text [[https://git.kernel.org/linus/030d71fd93b1f0fe6e844c1d790f70c80d828c79|commit]] * pcs: Add 10GBASE-R mode for Synopsys Designware XPCS [[https://git.kernel.org/linus/af8de1e307bf1ecbd17d220122832cd093f7a3f8|commit]] * pcs: Drop the TSE PCS driver [[https://git.kernel.org/linus/196eec4062b006575e441ef00339c3ebcea26b8d|commit]] * pcs: xpcs: cleanups for clause 73 support [[https://git.kernel.org/linus/e9261467ae86a6544bb602a55a1eab52696e71e3|commit]], [[https://git.kernel.org/linus/dc7a51411ec5381a567d02bee683c99713c411d9|commit]], [[https://git.kernel.org/linus/dad987484eaaa7cd7f7f7459f4aee1470d8ec8ef|commit]], [[https://git.kernel.org/linus/6f7b89b45f1e9d8bdf8b4c4dcb8029633905ea85|commit]], [[https://git.kernel.org/linus/3f0360e09c8d92bb0a99c6eeeb2f3f6e7732955e|commit]], [[https://git.kernel.org/linus/1f94ba198bda5738bd26cb7633dca4b33a43dff2|commit]], [[https://git.kernel.org/linus/428d603fcaeb3c8135f9983c35619925f1a56f49|commit]], [[https://git.kernel.org/linus/21234ef16665a78cf8b07182453a8395463865c8|commit]], [[https://git.kernel.org/linus/883a98ede4b67369569f2bd163015b31b03c3278|commit]] * phy: add driver for !MediaTek SoC built-in GE PHYs [[https://git.kernel.org/linus/98c485eaf509bc0e2a85f9b58d17cd501f274c4e|commit]] * phy: broadcom: Add LPI counter [[https://git.kernel.org/linus/e8b6f79b41840c542b7ef45c16b31dd17e1cc6e1|commit]] * phy: dp83869: support mii mode when rgmii strap cfg is used [[https://git.kernel.org/linus/94e86ef1b801d213dfb8543633dec86abb1a457d|commit]] * phy: microchip_t1s: add support for Microchip LAN865x Rev.B0 PHYs [[https://git.kernel.org/linus/972c6d8346333437ae784271e74129b3f0583248|commit]] * renesas: rswitch: Use hardware pause features [[https://git.kernel.org/linus/c87bd91e34e1593584c3b309e8fead833c985855|commit]] * sa8775p-ride: enable the first ethernet port [[https://git.kernel.org/linus/37bd215fc48ef2a399f836d62d2e4a166efb31be|commit]], [[https://git.kernel.org/linus/97b795125704046e0c6708f1079d9c5ca3f2ecfd|commit]], [[https://git.kernel.org/linus/601d06277007e850615b86358bf9c0a143d20faa|commit]], [[https://git.kernel.org/linus/a43274be0eb773851f9e3d987e48495b258c79e6|commit]], [[https://git.kernel.org/linus/9fc68f23a6d3729ccbeb6ca7da6de0bc399f9ddb|commit]], [[https://git.kernel.org/linus/9bc580609139cfc1f559cdc4bfb2f4862b38503d|commit]], [[https://git.kernel.org/linus/7b5e64a9382528d5e3db0fe714b03090a4b1433b|commit]], [[https://git.kernel.org/linus/302555a0ae3362b38eddd1df9b8d4b176050fc92|commit]], [[https://git.kernel.org/linus/c265735ff5b1f13272e2bfb196f5c55f9b3c9bac|commit]], [[https://git.kernel.org/linus/97f73bc59e1620c70635be68ab7ee91779bdf03e|commit]], [[https://git.kernel.org/linus/f2b1758554eb026939407ed03e38dd5d43978cb4|commit]], [[https://git.kernel.org/linus/0dec3b48aa4edb653ba8ed8a62970bc0698f5bc1|commit]], [[https://git.kernel.org/linus/feeb27165c46c1956c9ee002d306a2ed196fa5f0|commit]], [[https://git.kernel.org/linus/25c4a0769443d77c74fe73c80a978e28b08dc976|commit]], [[https://git.kernel.org/linus/463120c31c58bbca0237dd6ae73d20f77609c749|commit]], [[https://git.kernel.org/linus/aa571b6275fb60da443c490ebeef021a6897d332|commit]], [[https://git.kernel.org/linus/d0e3d29f8771068a6f8df2a148080c449bc5b046|commit]], [[https://git.kernel.org/linus/8c4d92e82d500a65e7dba101ea38e4f3499dc428|commit]], [[https://git.kernel.org/linus/683ef77158cbb56ede2a524751b150cec340128a|commit]], [[https://git.kernel.org/linus/ff499a0fbb2352bff15d75c13afe46decf90d7eb|commit]], [[https://git.kernel.org/linus/48c99529998026e21a78f84261d24c0b93c1027e|commit]], [[https://git.kernel.org/linus/120ab6c06f69b39e54c949542fa85fd49ff51278|commit]] * sfc: Add devlink dev info support for EF10 [[https://git.kernel.org/linus/998b85f0468f0b4784da69c087f52149ae7ded13|commit]] * sfc: TC encap actions offload [[https://git.kernel.org/linus/e16ca7fb9ffb0d51ddf01e450a1043ea65b5be3f|commit]], [[https://git.kernel.org/linus/b4da4235dc69427fbdb66c9fbdf094ac76cdf745|commit]], [[https://git.kernel.org/linus/69819d3bc4086dd5a268600d1cbd65c39eda1672|commit]], [[https://git.kernel.org/linus/f1363154c47468725611f264fc2e50833800dc3b|commit]], [[https://git.kernel.org/linus/7e5e7d800011adf4aeda615f8a1bc31c0c1e2bb9|commit]], [[https://git.kernel.org/linus/a1e82162af0b8ae9e65320ca405c6327edb99648|commit]] * sfc: more flexible encap matches on TC decap rules [[https://git.kernel.org/linus/28fa3ac487c6d30aaa10570481c27b6adfc492b3|commit]], [[https://git.kernel.org/linus/56beb35d85e290b71372d7ee1093621f6abb6e96|commit]], [[https://git.kernel.org/linus/3c9561c0a5b988be3dfd24ea1de2301b95efc640|commit]], [[https://git.kernel.org/linus/b6583d5e9e94adce1be61ec59fef4e129f0bc68a|commit]] * sfp: add support for HXSX-ATRI-1 copper SFP+ module [[https://git.kernel.org/linus/ac2e8e3cfe48439a2403b3d616fb654db313e362|commit]] * sfp: add support for a couple of copper multi-rate modules [[https://git.kernel.org/linus/5859a99b52254be356d3cca2e40f7f371ef24b0a|commit]] * sfp: add support for control of rate selection [[https://git.kernel.org/linus/418c1214741cf3ac5e420382a85c4f8a40586024|commit]], [[https://git.kernel.org/linus/d47e5a430dfd8b15739a118e4a2add5fa90347fd|commit]], [[https://git.kernel.org/linus/a9fe964e7aaeb3fc06a91c21269d0ac8b5afcea8|commit]], [[https://git.kernel.org/linus/97a492050aa5e15507fd7b8774e7adaf8d6e4bb5|commit]], [[https://git.kernel.org/linus/1974fd3bf0f04589dea1a4a76273bbc8fd5760f6|commit]], [[https://git.kernel.org/linus/dc18582211b34bce8250ddf3cac2a2230e192120|commit]], [[https://git.kernel.org/linus/fc082b39d0a29891ab4b54c88a40f42385103f71|commit]] * stmmac: dwmac-sogfpga: use the lynx pcs driver [[https://git.kernel.org/linus/5d1f3fe7d2d54d04b44aa5b9b62b305fdcf653ec|commit]] * stmmac: xgmac: add ethtool per-queue irq statistic support [[https://git.kernel.org/linus/af8eacf2b42e0a736a7a2a1379fb6c0b7fd66da4|commit]] * tools: ynl: generate code for the ethtool family [[https://git.kernel.org/linus/2d7be507d65e90099c76631bf0448d0b30f7f203|commit]], [[https://git.kernel.org/linus/008bcd6835a2f00a46bc91cad32de50d57d1b196|commit]], [[https://git.kernel.org/linus/33eedb0071c84ee47ab329a90e8e7b0653bcba33|commit]], [[https://git.kernel.org/linus/ed2042cc77f1cef4850a891dc93d80fb1aa6c955|commit]], [[https://git.kernel.org/linus/d4813b11d679c80d4c3e20d27dafcd6d3317a69c|commit]], [[https://git.kernel.org/linus/dddc9f53da3e1e359e56edc8da301e145e3b97df|commit]], [[https://git.kernel.org/linus/2c9d47a095f7d0380e35064121bc8838dbf136cb|commit]], [[https://git.kernel.org/linus/180ad455273a7d3ba95ec21d28c1fee6766f166d|commit]], [[https://git.kernel.org/linus/37c852222712e1968da858961709a179150acd41|commit]], [[https://git.kernel.org/linus/709d0c3b3d4c385793fd12cc57e400c8e036e744|commit]], [[https://git.kernel.org/linus/68335713d2eaf8e3e064c584b39da45fdee6e365|commit]], [[https://git.kernel.org/linus/f561ff232a6b502bda020ac47200e88f0bc5f98a|commit]] * usb: qmi_wwan: add Quectel EM05GV2 [[https://git.kernel.org/linus/d4480c9bb9258db9ddf2e632f6ef81e96b41089c|commit]] * usb: qmi_wwan: add u-blox 0x1312 composition [[https://git.kernel.org/linus/eaaacb085144e7e950061bfd6d097eb87f7513d7|commit]] * usbnet: ipheth: add CDC NCM support [[https://git.kernel.org/linus/a2d274c62e44b1995c170595db3865c6fe701226|commit]] * v3: ath11k: MBSSID and EMA support in AP mode. [[https://git.kernel.org/linus/a08dbb04d7365a04d52882143cf196005bfc88c3|commit]], [[https://git.kernel.org/linus/5a81610acf66c4ad6e1a1fbd09f3f555fca863b1|commit]], [[https://git.kernel.org/linus/cf604e72bc6e6db68c7fcaa8779b03ec14b8d2fa|commit]], [[https://git.kernel.org/linus/c82dc33f252fd8883be66f2d0230af0fd734c683|commit]], [[https://git.kernel.org/linus/cb9bea773c85e372931cd7a177db4165adf29d95|commit]], [[https://git.kernel.org/linus/335a92765d308dfe22826f5562cd4b4389b45e71|commit]], [[https://git.kernel.org/linus/87bd401138161008fdb82fbca6e213af117bfeb9|commit]] * wifi: ath11k: Add HTT stats for PHY reset case [[https://git.kernel.org/linus/2d4f9093e2d8531ad0a2bb98fe5b36dc8addf2a2|commit]] * wifi: ath11k: add support default regdb while searching board-2.bin for WCN6855 [[https://git.kernel.org/linus/88ca89202f8e8afb5225eb5244d79cd67c15d744|commit]] * wifi: ath11k: factory test mode support [[https://git.kernel.org/linus/b43310e44edc823a7f02af1e1e2b4e8a9abc7d91|commit]] * wifi: ath12k: Add support to parse new WMI event for 6 GHz regulatory [[https://git.kernel.org/linus/342527f35338d9373f307e24662f174008b571b2|commit]] * wifi: iwlwifi: Separate reading and parsing of reduce power table [[https://git.kernel.org/linus/380bf72d1b1dc3cb2572acd9b61153e79413b036|commit]], [[https://git.kernel.org/linus/875d035f37ec06a27c61abd9103178ae5a674672|commit]], [[https://git.kernel.org/linus/8ae3e23195188a925b9a3e05f34f114441d97e14|commit]], [[https://git.kernel.org/linus/372a714808c8ec4f4ae4915c734d80d7f504997c|commit]] * wifi: iwlwifi: fw: Add new ODM vendor to ppag approved list [[https://git.kernel.org/linus/58e682768938cd8e8cd9fbd46adcbdb9afa4cee4|commit]], [[https://git.kernel.org/linus/cec74584dc19a604c39a9b77a819b35e684e6e4c|commit]], [[https://git.kernel.org/linus/dbb6f2307b84e8aaaa60f7ba0b17cb1a333e2216|commit]], [[https://git.kernel.org/linus/3f3022694f62476df562244ee2a72819e98eec89|commit]], [[https://git.kernel.org/linus/8dd1039f8fab9ed9514d601be5988aa72ab2c077|commit]], [[https://git.kernel.org/linus/fa53608b525fa8d32770783f4f9e59eafd905cc4|commit]], [[https://git.kernel.org/linus/5cd4ef0d02737f3e8372cb388e7da78f1238782e|commit]], [[https://git.kernel.org/linus/204bfec9168ddd869a05e7f70dc5b0a9ae513722|commit]], [[https://git.kernel.org/linus/e9b63341dc15d8ee20b04e174f41873a44ca3f34|commit]] * wifi: iwlwifi: limit EHT capabilities based on PCIe link speed [[https://git.kernel.org/linus/3a9690d030d8572736e07b912deea5547dd94db3|commit]], [[https://git.kernel.org/linus/c6b9d5664bc41f187b3c5327613569743e006154|commit]], [[https://git.kernel.org/linus/c0a2f8194456af2759050a10f6d3111ad2b321da|commit]], [[https://git.kernel.org/linus/35bd6f1d043d089fcb60450e1287cc65f0095787|commit]], [[https://git.kernel.org/linus/a6cc6ccb1c8ae9cbabd3dc4cf98c2b835bed2f6d|commit]], [[https://git.kernel.org/linus/2db72b8a700943aa54dce0aabe6ff1b72b615162|commit]], [[https://git.kernel.org/linus/1a528ab1da324d078ec60283c34c17848580df24|commit]], [[https://git.kernel.org/linus/de1076008148460fe273e6d39158faffcc954991|commit]], [[https://git.kernel.org/linus/4eca0fd5da06c084a60f9a6626df6343293bfecb|commit]], [[https://git.kernel.org/linus/69f778271f3ea4bd3d8b523c985aeea10d6b6f1a|commit]] * wifi: iwlwifi: pcie: also drop jacket from info macro [[https://git.kernel.org/linus/e3597e28a2fab5e260dcbfde20c12025ee250b72|commit]], [[https://git.kernel.org/linus/3fd31289d5de8392c914db4f8cb36e0999afdac2|commit]], [[https://git.kernel.org/linus/bfed356b4fc4e24d0cc73a81d51d193353629e73|commit]], [[https://git.kernel.org/linus/ecf11f4e4950defa89ca9d813ba9684c19d85f6e|commit]], [[https://git.kernel.org/linus/31aeae2446d50665b6ec51d564f5e7fe751d53d4|commit]], [[https://git.kernel.org/linus/399762de769c4ec7d82220feb83de9bca30e5ef0|commit]], [[https://git.kernel.org/linus/f4daceae4087bbb3e9a56044b44601d520d009d2|commit]], [[https://git.kernel.org/linus/a701177bd4bc37b9775da8daf255864da3fecaf9|commit]], [[https://git.kernel.org/linus/fd006d60e83389f806d8a215c78ae608b9070bbb|commit]] * wifi: rtl8xxxu: Add AP mode support for 8188f [[https://git.kernel.org/linus/ac48499e2bf5b06e09e256039e56e695e9c2c667|commit]], [[https://git.kernel.org/linus/25ed009cc0aafd946008e323da5da43311ed4ac7|commit]], [[https://git.kernel.org/linus/cde8848cad0bb4f03388f07d65e5fa0e8d35861b|commit]], [[https://git.kernel.org/linus/f5db4d11fda182eea4e639e80b0404f7b8a43c01|commit]], [[https://git.kernel.org/linus/20d59515489442e8899158514f9997662cb47ce5|commit]], [[https://git.kernel.org/linus/fd5440f9311fa8ebeded0551be90a972118b1598|commit]], [[https://git.kernel.org/linus/d59a105acc03e1f36b522017e57cccae2243abe2|commit]], [[https://git.kernel.org/linus/2be2eed4c39b962df15c33813f741e0f8f68fd65|commit]], [[https://git.kernel.org/linus/40d02ff2b1868dbf3c3f33aadfe4200b6614f52b|commit]], [[https://git.kernel.org/linus/726e478ce1b3f8738c4e6f6a9683b64dcfb5b219|commit]], [[https://git.kernel.org/linus/9aa45598d0540b7797673bb29d458ec16e42513d|commit]], [[https://git.kernel.org/linus/769f326322e7328eeedc94fd33979683347fa7c7|commit]], [[https://git.kernel.org/linus/89819a6511441bac45f2f04f10880895e01a6ce7|commit]], [[https://git.kernel.org/linus/66dcb574418eac0b09121d37ea0b52dede021887|commit]], [[https://git.kernel.org/linus/07342528f7c8b7ca156ee6d8c132e42579b37bb9|commit]], [[https://git.kernel.org/linus/19b396c241cfdcb4431491d07ff586f78436754a|commit]], [[https://git.kernel.org/linus/b468481c9ad39449695376efd381ce3737e32aab|commit]], [[https://git.kernel.org/linus/b9a07c443a82432c4679a5a026b53e1e454d9a40|commit]] * wifi: rtl8xxxu: Support USB RX aggregation for the newer chips [[https://git.kernel.org/linus/6dc28456aa172b6e4dcc8e0914026b4026ae0a05|commit]] * wifi: rtl8xxxu: Support new chip RTL8192FU [[https://git.kernel.org/linus/c98411dc8cf6c15b8dbbfb37475bcc08b8958880|commit]] * wifi: rtw88: Add support for the SDIO based RTL8723DS chipset [[https://git.kernel.org/linus/a3b125ceb45e1acd21c9bcb6d3a5c52897d536e6|commit]] * wifi: rtw89: 8851b: add basic chip information of 8851B [[https://git.kernel.org/linus/c8d89bf6b82f421dda16526233aba264d1331332|commit]], [[https://git.kernel.org/linus/99ff8da56322cda9eb9b37021e27b127c2d1cad8|commit]], [[https://git.kernel.org/linus/a24be8bbcbd22cfa53134f6dd399f026874aaa72|commit]], [[https://git.kernel.org/linus/0789881aa3703b2ceb4c0f9a9c7d69f3fb7efd8d|commit]], [[https://git.kernel.org/linus/ce816ab54bc927f893e17e7e6b9b68e30dd4b4a1|commit]], [[https://git.kernel.org/linus/b6335d91607d6297d3f586e8a4dc6ce8f90652e7|commit]], [[https://git.kernel.org/linus/2273dd724a6c6083e126828e56ff9a0a78913449|commit]], [[https://git.kernel.org/linus/85d1539c0273402911cee89cde1190cd4aec731f|commit]] * wifi: rtw89: 8851b: add more chip_ops to support 8851b [[https://git.kernel.org/linus/40bb2ab49c369b78d1cb37ed63b8a85f3102b239|commit]], [[https://git.kernel.org/linus/f03bd0429f9bc2718ee250b05eb48dc081d4f6b7|commit]], [[https://git.kernel.org/linus/4885b17ebb92b3cc54e1064ffe52f688ca83d5c7|commit]], [[https://git.kernel.org/linus/31df6df89f9394bc544a4ebad62584d56bff1677|commit]], [[https://git.kernel.org/linus/e948213fb8560f6d6af6058351758f13a35c9f8d|commit]], [[https://git.kernel.org/linus/f4244d7fbc9163a44272c0a9d86fd0784d28f386|commit]] * wifi: rtw89: 8851b: add to enable 8851BE [[https://git.kernel.org/linus/76f2516f79373e17974ce03c52eba4cfea8483e9|commit]], [[https://git.kernel.org/linus/68a2cb6b0669bf96bbb203cbb81e57ad122ded42|commit]], [[https://git.kernel.org/linus/92aa2643235d72bb01206259362d4e0a845ba02a|commit]], [[https://git.kernel.org/linus/791af3fb2decc11b2994f7020378dffecd654fcd|commit]], [[https://git.kernel.org/linus/4cfad52a5df718a615f8de5ba14370d99537db4c|commit]], [[https://git.kernel.org/linus/c4ff50149885723f24ef9bc3b0220ee20bca3e03|commit]], [[https://git.kernel.org/linus/14820388aafb10cd051b0883e92326f5f2012ed4|commit]] * wifi: rtw89: 8851b: enable firmware features of hw_scan and crash_trigger [[https://git.kernel.org/linus/9c52e8bf07c7097e09503fcad7cb156deffef619|commit]], [[https://git.kernel.org/linus/b25e755e5e418aa7b537b8b2a2506c34c53df2d5|commit]], [[https://git.kernel.org/linus/db67b03b04b4363251c0d8eecaf7a631449b6f3d|commit]], [[https://git.kernel.org/linus/57369e2aa2eb9812368c6cf3c4378d1fbe9e8c8a|commit]] * wifi: rtw89: 8851b: rfk: add more RF calibrations [[https://git.kernel.org/linus/fe8a168266eb65d41ebee0b801fffb5278f92a1b|commit]], [[https://git.kernel.org/linus/0194a95cbe721a1eff4af2587b09213b088281b0|commit]], [[https://git.kernel.org/linus/3f2da9fc17f66af17a1349d4d32f6a6ba245b94d|commit]] * wifi: rtw89: 8851b: update 8851b to improve abnormal samples [[https://git.kernel.org/linus/f5993f39f3a734ba8e84913dfd69d56d997e0aa1|commit]], [[https://git.kernel.org/linus/b067acb1325abe06159768c351f149b8b621392c|commit]], [[https://git.kernel.org/linus/b686bc67e0437eb5791bca6ec89479470ef40513|commit]], [[https://git.kernel.org/linus/76a7c7acaa78b1a4ab59868808fadbeb7a939b81|commit]], [[https://git.kernel.org/linus/076031a09ae9e9394a56805aab92973612763d7e|commit]] * wifi: rtw89: support U-NII-4 5.9GHz channels [[https://git.kernel.org/linus/e897b0bef38a8b40101c0e6e009395506c256460|commit]], [[https://git.kernel.org/linus/a002f98123dd5e6b6d66c1b42a37dfd6e25ade4c|commit]], [[https://git.kernel.org/linus/e3b77c06c8863a53a0d80f7dcaff923c590e3edd|commit]] * wifi: rtw89: support antenna diversity [[https://git.kernel.org/linus/f243bca13893f126476dd1db7705b4ad54b4d3c7|commit]], [[https://git.kernel.org/linus/9805500606c256cf61ef73a767d7e797fe5ba18e|commit]], [[https://git.kernel.org/linus/f48453e058d763e895bde7b072f25b7b519a3500|commit]], [[https://git.kernel.org/linus/f6b24241cbec5236c061f90d52acb3d9430f2d43|commit]], [[https://git.kernel.org/linus/4bb223a19f9b8c226b357ceedad47a00d88fef3a|commit]], [[https://git.kernel.org/linus/a90c613d099ff63587b60bfcfb0f4f1a7bb83252|commit]], [[https://git.kernel.org/linus/e3715859c75322fae560c46384f944006f367515|commit]], [[https://git.kernel.org/linus/5feecb40e735b7cb4173328fabfc49ddc2b3b1bc|commit]] * wwan: iosm: enable runtime pm support for 7560 [[https://git.kernel.org/linus/e4f5073d53be6cec0c654fac98372047efb66947|commit]] * xstats for tc-taprio [[https://git.kernel.org/linus/6c1adb650c8d85c6cb471dbc900c2468f462995a|commit]], [[https://git.kernel.org/linus/5353599aa74524acbf48c5e78683534f6bdd1ed3|commit]], [[https://git.kernel.org/linus/4802fca8d1af9687a0fd71b729d96726f05192ad|commit]] == Audio == * (FEATURED) Add MIDI 2.0 support [[https://git.kernel.org/linus/6b39e30dce18114e3fc27074cee9a2b91a3639d1|commit]], [[https://git.kernel.org/linus/09b62892ddeeb38c11979979e3c65a14dba5fdc6|commit]], [[https://git.kernel.org/linus/fb3bd1215909866d6105224abe1566fd52695859|commit]], [[https://git.kernel.org/linus/0b70151328781a89c89e4cf3fae21fc0e98d869e|commit]], [[https://git.kernel.org/linus/127ae6f6dad2edb2201e27b7e6fa72994b537fad|commit]], [[https://git.kernel.org/linus/30fc139260d46e9bdc06e46eec91e9ff61eb387e|commit]], [[https://git.kernel.org/linus/fa030f666d2431be5310c0c0fef254e2e205d4cc|commit]], [[https://git.kernel.org/linus/bb1bf4fa5953418c131796ee745c59899d34a149|commit]], [[https://git.kernel.org/linus/f8ddb0fb3289dfb6f064b1f0573fd4f032189e9e|commit]], [[https://git.kernel.org/linus/ff49d1df79aef7580fe3ac99d17c3f886655d080|commit]], [[https://git.kernel.org/linus/06cf3bf09d83944382b36c7617277619f25f49e4|commit]], [[https://git.kernel.org/linus/d9c99876868c861afd0e9ce2cea407bbc446b3c9|commit]], [[https://git.kernel.org/linus/6b41e64a5d17ec01380bc7ad10afd90e63beca19|commit]], [[https://git.kernel.org/linus/0b5288f5fe63eab687c14e5940b9e0d532b129f2|commit]], [[https://git.kernel.org/linus/ec362b63c4b560006666998c582edc76a2f77910|commit]], [[https://git.kernel.org/linus/f4487c42aae596f02e0cb02a028d2a107ec1737d|commit]], [[https://git.kernel.org/linus/f80e6d60d677be1d4dbbcdbf97379b8fbcf97ff0|commit]], [[https://git.kernel.org/linus/ea46f79709b6262f12c8ca24f32bfe8d638152ee|commit]], [[https://git.kernel.org/linus/d0c8308fc58b3f02868388b294a94d501c816900|commit]], [[https://git.kernel.org/linus/94c5b717ada970c0136a9369f620d11773b38a51|commit]], [[https://git.kernel.org/linus/7c3f0d3d3a1147f7eee79e090d0b047ab5fd3068|commit]], [[https://git.kernel.org/linus/4f92eb792e9336a46480655ed18e8b59e2a6505c|commit]], [[https://git.kernel.org/linus/1359905383834ed5fc294fad3954d40dbcf770af|commit]], [[https://git.kernel.org/linus/afb72505e4614a2ccefe3440d37dec3a2273c330|commit]], [[https://git.kernel.org/linus/46397622a3fa8372b8fda0f04b33d16923b03b1b|commit]], [[https://git.kernel.org/linus/74661932ac5ecb12e4378f41083be6ac17804e71|commit]], [[https://git.kernel.org/linus/177ccf811df4a893df339a72dc732bb26b66d055|commit]], [[https://git.kernel.org/linus/ff166a9d19fab3d77f50e9413df046fb1d7c01cc|commit]], [[https://git.kernel.org/linus/a3ca3b30800da0a334e2d6eb68d123ec8e2d2bf6|commit]], [[https://git.kernel.org/linus/e9e02819a98a50fefe2f8016b1e5237742637cd1|commit]], [[https://git.kernel.org/linus/329ffe11a014834fdef9167c7ea24bd459829f86|commit]], [[https://git.kernel.org/linus/81fd444aa371261cd33f31d4ffd80faeeeab0cc9|commit]], [[https://git.kernel.org/linus/4025f0e627e127c79d372c6227b9a200406329f9|commit]], [[https://git.kernel.org/linus/d2d247e35eeea8331150d7708211a013aabccb5b|commit]], [[https://git.kernel.org/linus/e85b9260569dc3893bc084ec18ef48e199525ef8|commit]], [[https://git.kernel.org/linus/d2b706077792a366fac8c1db2f1b4406ad7da482|commit]], [[https://git.kernel.org/linus/6b39e30dce18114e3fc27074cee9a2b91a3639d1|commit]] * uapi: pcm: control the filling of the silence samples for drain [[https://git.kernel.org/linus/a4bb75c4f19db711676e6bf6a278d932a5e7667b|commit]] * soundwire: qcom: add support for v2.0.0 controller [[https://git.kernel.org/linus/312355a6a9f688e48d044283b87abf22d2e56aee|commit]] * hda/cs8409: Support new Dell Dolphin Variants [[https://git.kernel.org/linus/7c761166399bedfc89c928bef8015546d85a9099|commit]] * hda/realtek: Add support for DELL Oasis 13/14/16 laptops [[https://git.kernel.org/linus/de90f5165b1cda3f1b5975165e2da8a69dfae1d6|commit]] * hda/realtek: Support ASUS G713PV laptop [[https://git.kernel.org/linus/8019a4ab3d80c7af391a646cccff953753fc025f|commit]] * hda/relatek: Enable Mute LED on HP 250 G8 [[https://git.kernel.org/linus/d510acb610e6aa07a04b688236868b2a5fd60deb|commit]] * hda: Add Loongson LS7A HD-Audio support [[https://git.kernel.org/linus/28bd137a3c8e105587ba8c55b68ef43b519b270f|commit]] * rawmidi: UMP support [[https://git.kernel.org/linus/e3a8a5b726bdd903de52bee6ba7c935c09d07ee8|commit]] * usb-audio: Add support for Mythware XA001AU capture and playback interfaces [[https://git.kernel.org/linus/788449ae57f4273111b779bbcaad552b67f517d5|commit]] * Implement the new Virtual PCM Test Driver [[https://git.kernel.org/linus/315a3d57c64c55901d6fe5a5eef3b3e51d215381|commit]] * ALSA: seq: Allow suppressing UMP conversions [[https://git.kernel.org/linus/329ffe11a014834fdef9167c7ea24bd459829f86|commit]], [[https://git.kernel.org/linus/81fd444aa371261cd33f31d4ffd80faeeeab0cc9|commit]], [[https://git.kernel.org/linus/4025f0e627e127c79d372c6227b9a200406329f9|commit]], [[https://git.kernel.org/linus/d2d247e35eeea8331150d7708211a013aabccb5b|commit]], [[https://git.kernel.org/linus/e85b9260569dc3893bc084ec18ef48e199525ef8|commit]], [[https://git.kernel.org/linus/d2b706077792a366fac8c1db2f1b4406ad7da482|commit]], [[https://git.kernel.org/linus/6b39e30dce18114e3fc27074cee9a2b91a3639d1|commit]] * emu10k1: various improvements to the DSP-based mixer code [[https://git.kernel.org/linus/27564c61ab1dbd47ba232949f87c8a1043210993|commit]], [[https://git.kernel.org/linus/ad326d4a1364f9d677204b1e005ee8eb2a0b6558|commit]] * soundwire: add support for ACE2.x [[https://git.kernel.org/linus/4f5706f16c99d70a610eaade8273ea99152d2959|commit]], [[https://git.kernel.org/linus/27c433ce081ffbd59e6c785770c871d1785c3b41|commit]], [[https://git.kernel.org/linus/6f23f4e2c62b086d92b6ee707843e8bf821283d7|commit]], [[https://git.kernel.org/linus/6ab915b9c355caa1f80e9e383892052523f49d1f|commit]], [[https://git.kernel.org/linus/e40e0e11fe64a0ac93fb11c3c448b844516bc6ee|commit]], [[https://git.kernel.org/linus/881cf1e9df731e6dc238ca83067c17c782e2a059|commit]], [[https://git.kernel.org/linus/ec2c9dbe5392cd17b7b1144918350d67cfbb9ff7|commit]], [[https://git.kernel.org/linus/be1798d0d7153bb9900fd6a05f4f34b9bee2c287|commit]], [[https://git.kernel.org/linus/e52cae0bb40c238c0ac1e6c2ff1fb63037fe741c|commit]], [[https://git.kernel.org/linus/312316d5a16c46ae0630dda574b243dba06195c6|commit]], [[https://git.kernel.org/linus/806f5abd9ce7af9b0140976095e57614364d4011|commit]], [[https://git.kernel.org/linus/d3565643dda3260dcb7c17b57759e35a02908d17|commit]], [[https://git.kernel.org/linus/f40bb2446f1e27f14fff97b811ed862ef73a6583|commit]], [[https://git.kernel.org/linus/d2f0daf6f1278128af9e7b0b79a4c3f9614f7ec5|commit]], [[https://git.kernel.org/linus/4d1e2464a1104b85f47bb8d5f60698b265aceda5|commit]], [[https://git.kernel.org/linus/f90ba30170f2330ed050cf4b795723fe9730f418|commit]], [[https://git.kernel.org/linus/b8e39bc4c20f97b0077a90f7e129b066fcdfdc69|commit]], [[https://git.kernel.org/linus/7ba18639a9f00eab530b10e417fffccdbeb9418f|commit]], [[https://git.kernel.org/linus/6bac0d8d1b4c2dd0fc90b64451ffb88a206adda0|commit]], [[https://git.kernel.org/linus/bcf71917c9ddd6714126e6115bfa26ea482d7afb|commit]], [[https://git.kernel.org/linus/32c3aa85fb9b19fc0fcb705e3406eec75e8b8f5a|commit]], [[https://git.kernel.org/linus/1d905d355ef329d2e4fbe04569dea7cb041419c1|commit]], [[https://git.kernel.org/linus/02428406a0b0016c9a4d286f98bac8d9af0c1bed|commit]], [[https://git.kernel.org/linus/8bff8c49c85b073e5086d98b0a47a9ad7b52198a|commit]], [[https://git.kernel.org/linus/0127104507b1cfb7d79e0c56668431145f873bbf|commit]], [[https://git.kernel.org/linus/6dd0776ddde8ae187c04803c53becd55eccf4fc3|commit]] * soundwire: improve bus reset [[https://git.kernel.org/linus/67672134aaafd520a61dda448a662336e8fde236|commit]], [[https://git.kernel.org/linus/46b56a5cd2ff496c0707ae3deae849f12b86e534|commit]], [[https://git.kernel.org/linus/ffc363d970d1d04be0f12b2252aa21aaef3ecfd0|commit]], [[https://git.kernel.org/linus/94f89950850e1421c46fb44bc94c433cbe5dba00|commit]] * emu10k1: improvements mostly to the I/O routing mixers for E-MU cards [[https://git.kernel.org/linus/9b00a1e9b1aedd70fd397335f5e41609b6e6109b|commit]], [[https://git.kernel.org/linus/dc39bb3e4c25b784899cce572e539055898b2c73|commit]], [[https://git.kernel.org/linus/536438f1def68eb56fe611c07d2a6ec73ab4a5b1|commit]], [[https://git.kernel.org/linus/511cbe8f59e30cd09a04c1dbafe6337d9111e88a|commit]], [[https://git.kernel.org/linus/cc766807a208bfa06c204be784ec099fb25c87a4|commit]], [[https://git.kernel.org/linus/1fc710f06aa8f33abab4fdded9463eefdff7d390|commit]], [[https://git.kernel.org/linus/97f1582e92c91e77bcf4af3dbf445c6694eb2dff|commit]], [[https://git.kernel.org/linus/f69d705d3972fae19b4b00c7643efdd3d2953f25|commit]], [[https://git.kernel.org/linus/6f3609f8a3da1214cd78f8a8a2ee2dab8fcc4505|commit]], [[https://git.kernel.org/linus/216abe45cf4addba4e4c1eb2fae24762ffdefe9e|commit]] * emu10k1: refactoring of the playback voice management [[https://git.kernel.org/linus/f26a4cf087cbfc9dc71bb3812e8e11ccac0d4d61|commit]], [[https://git.kernel.org/linus/3eb5b1d0a11d1daf85243eb06f813cf83752e1d0|commit]], [[https://git.kernel.org/linus/b840f8d8fcb3df9e65bb6782a9072897b6ea117d|commit]], [[https://git.kernel.org/linus/82a9fa6e9e3c769f7edc62810c9718997cada53d|commit]], [[https://git.kernel.org/linus/bdb3b567b84e321c51786aba2a05ec23bb90bfdf|commit]], [[https://git.kernel.org/linus/b4fea2d3f25b5f3ad6b230f91e61151165f6d023|commit]], [[https://git.kernel.org/linus/a915d60426d4348a0b91f9870e299056fd604a32|commit]] * emu10k1: various improvements to the DSP-based mixer code [[https://git.kernel.org/linus/a746516d75fd734e6af1d9a53bacbdef790e76d1|commit]], [[https://git.kernel.org/linus/bb5ceb43b7bfa166fd5d739d51ad46c1cfb225e3|commit]], [[https://git.kernel.org/linus/1a38ae579606dae836dced573d5ffa78cce6fc48|commit]], [[https://git.kernel.org/linus/6175ccd1a98136203bf88279cebcc6514ec15bdd|commit]], [[https://git.kernel.org/linus/de0dc31070a54d146bb5e7e5a739c9588034165c|commit]], [[https://git.kernel.org/linus/1298bc978afba0a507cedd0a91e53267ca152804|commit]], [[https://git.kernel.org/linus/bcdbd3b7888e1db89b7b2f7c78237c9ed5c2ebb1|commit]] * emu10k1: improvements related to the switchable word clock of E-MU cards [[https://git.kernel.org/linus/1359886227e52c27c0a230769f3be4c486e36299|commit]], [[https://git.kernel.org/linus/60985241bfc61c6d6d85a78e0f29c866c546c7f5|commit]], [[https://git.kernel.org/linus/e73b597e63ebad26d9dee5feb5d47251ed53b8a4|commit]], [[https://git.kernel.org/linus/19b89d15fa978c7e6327287f90d1dde15aff01c4|commit]], [[https://git.kernel.org/linus/e68235c8aae9af08a868e4a4337daf2bcb4f6a92|commit]], [[https://git.kernel.org/linus/6cc844504638b0d1429be729b2d66be92276e24b|commit]], [[https://git.kernel.org/linus/ca533448a0936cd1c9f8e158af36f0657ed4d66e|commit]], [[https://git.kernel.org/linus/3ac251420be2bbc9f5e83281661dbfaf05983f69|commit]], [[https://git.kernel.org/linus/58cc6133cc27496c1f041f302e13c33f0867be8a|commit]] * emu10k1: multi-channel playback related improvements [[https://git.kernel.org/linus/6dbecb9b51321bfaf8e7f26fc163d547abcbee86|commit]], [[https://git.kernel.org/linus/11ee59bdac36ae4b500301a6a3ccf586d3968d92|commit]], [[https://git.kernel.org/linus/f4ab59503989cce2c12a3c6337779218a5538ddd|commit]] * ASoC * Add Google Chameleon v3 codec driver [[https://git.kernel.org/linus/61ed303496eb7e18491ee617dec2403f75d5168c|commit]] * Add Google Chameleon v3 i2s driver [[https://git.kernel.org/linus/702648721db590b3425c31ade294000e18808345|commit]] * Add support for Loongson I2S controller [[https://git.kernel.org/linus/d84881e06836dc1655777a592b4279be76ad7324|commit]] * Intel: ADL: Moving amp only boards into end of the table. [[https://git.kernel.org/linus/c3a3c06e05c244374fb773c80e4055a5e8aa45f7|commit]], [[https://git.kernel.org/linus/1529d344dd49059c114c200dbe1c1a55d45ea120|commit]], [[https://git.kernel.org/linus/5dc51e50457a1ddafad47fcd668910a5bd91106f|commit]], [[https://git.kernel.org/linus/43cdea08a4acc8f61daf0050f713314f0bfbedf7|commit]], [[https://git.kernel.org/linus/85565f8047668b6727127df539f7a6ecc0f9b9c0|commit]], [[https://git.kernel.org/linus/fcb3f0fb4c7255b7617d3d0e98414ab36ddcbee3|commit]], [[https://git.kernel.org/linus/dea4138d7794f3041f6969bff637b7e5ed89ae90|commit]], [[https://git.kernel.org/linus/164e5dc17525181c05563f0a06796f1a363801d5|commit]], [[https://git.kernel.org/linus/a0503817c0be5ea15164f64e06350e3363466021|commit]] * Intel: machine driver updates [[https://git.kernel.org/linus/224be454efe6c90360a09887556d0d07dd2ad2a4|commit]], [[https://git.kernel.org/linus/8899672f8847f1ac7767b1431266c01741047e37|commit]], [[https://git.kernel.org/linus/0db94947c9d3da16aa31d152b7d26fab78b02cb9|commit]], [[https://git.kernel.org/linus/289e1df00e49a229a1c924c059242e759a552f01|commit]], [[https://git.kernel.org/linus/b06e33aa0ad46bb1cc68c0cec61f86a183f8dd43|commit]], [[https://git.kernel.org/linus/f0c8d83ab1a3532ebeb1a89acb649be01657aed8|commit]], [[https://git.kernel.org/linus/700581ede41d029403feec935df4616309696fd7|commit]], [[https://git.kernel.org/linus/bf10d002b69da64001a22763ba46ccc1405de8ba|commit]], [[https://git.kernel.org/linus/dfe25fea968dc4884e12d471c8263f0f611b380a|commit]] * Add Chameleon v3 ASoC audio [[https://git.kernel.org/linus/98be58f2b517b212b57b8493dab92312a52614ac|commit]], [[https://git.kernel.org/linus/702648721db590b3425c31ade294000e18808345|commit]], [[https://git.kernel.org/linus/61ed303496eb7e18491ee617dec2403f75d5168c|commit]], [[https://git.kernel.org/linus/6f2c1e7c2546f9eab0031843fb7346e49ba69102|commit]], [[https://git.kernel.org/linus/580bac2a2c6f7d106be6d0ee0f0f310be49368b3|commit]], [[https://git.kernel.org/linus/f63550e2b165208a2f382afcaf5551df9569e1d4|commit]] * Intel: ADL: Enable HDMI-In capture feature support for non-I2S codec boards [[https://git.kernel.org/linus/5376d37b2a8bf7382cd627504e27c5e42cdc820f|commit]] * Intel: soc-acpi-intel-mtl-match: add rt712 ID [[https://git.kernel.org/linus/9efa6f46bc8b606df4226630c668af0e9d25ba7f|commit]] * Intel: soc-acpi-intel-tgl-match: add rt712 ID [[https://git.kernel.org/linus/a2f4d70921f218db768cf3e879fe87dea0a354a5|commit]] * Intel: sof-sdw: add Dell SKU 0B34 [[https://git.kernel.org/linus/332f618756e61bee564e0919f97faef788c6a6e6|commit]] * sof_rt5682: Add mtl support RT1019P speaker [[https://git.kernel.org/linus/b20c81371a96b87478d2430d80615df189d17cd8|commit]] * Intel: sof_sdw: add multi dailink support for a codec [[https://git.kernel.org/linus/d3fc5c4da599482a3ada60b26b22fa7de9c6da42|commit]] * Intel: sof_sdw: add new mapping for HP Spectre x360 [[https://git.kernel.org/linus/49d1f3ccc876eec87be41b5ee816d723b9a53ae2|commit]] * Intel: sof_sdw: add rt712 support [[https://git.kernel.org/linus/5360c67046385f90406ec17e367ba9aeb42d5459|commit]] * Intel: sof_sdw: add rt713 support [[https://git.kernel.org/linus/fbaaf80d8cf6f5da4397108efceca99abfaebbc8|commit]] * SOF: mediatek: add mt8188 audio support [[https://git.kernel.org/linus/0f3d5585ad20a23bf70d09deae2e0d84e745055e|commit]] * add N cpus to M codecs dai link support [[https://git.kernel.org/linus/ac950278b0872c87bcef6153fd9c119265c8ba83|commit]] * codecs: wsa884x: Add WSA884x family of speakers [[https://git.kernel.org/linus/aa21a7d4f68a0a5067578cbb93c136ab5ac09cfa|commit]] * fsl-asoc-card: add nau8822 support [[https://git.kernel.org/linus/1075df4bdeb320bbf94a1f6d3761391264eb2c7f|commit]] * jz4740-i2s: Add support for X1000 SoC [[https://git.kernel.org/linus/bb1b282da4be8af998de7b5a2c600af6ef01aa4f|commit]] * loongson: Add Loongson ASoC Sound Card Support [[https://git.kernel.org/linus/d24028606e7642261d33ad2a50aed940d35cfb66|commit]] * max98388: add amplifier driver [[https://git.kernel.org/linus/6a8e1d46f0621c15d2993c5e847f4f264102f93d|commit]] * mediatek: common: soundcard driver add dai_fmt support [[https://git.kernel.org/linus/c0e7390e6d3f42b9a15a0e72add21facb8e17790|commit]] * mediatek: mt8188-mt6359: support new board with nau88255 [[https://git.kernel.org/linus/9f08dcbddeb307793bbfff036db213d2cdf03a50|commit]] * rt722-sdca: Add RT722 SDCA driver [[https://git.kernel.org/linus/7f5d6036ca0059f749414380e19bfc346961353c|commit]] * ssm3515: Add new amp driver [[https://git.kernel.org/linus/4ac690bbae02e26e36e133becd86babb657126ef|commit]] * tas2781: Add tas2781 driver [[https://git.kernel.org/linus/678f38eba1f2fe33ff700e85390ac98393e609ef|commit]], [[https://git.kernel.org/linus/915f5eadebd29ba185ac506766a90120153b7e14|commit]], [[https://git.kernel.org/linus/ef3bcde75d06d65f78ba38a30d5a87fb83a5cdae|commit]], [[https://git.kernel.org/linus/3e4ecd6c4e14e1eff8f52bd89240399e7dac881c|commit]] * qcom: add display port module support. [[https://git.kernel.org/linus/c7895b75865bb4413c7f29f1dcb7fd0593e9255c|commit]], [[https://git.kernel.org/linus/4c2be53f411c25b569c8fe3f91d0acfc4c5b8392|commit]], [[https://git.kernel.org/linus/a8ab65417d92803d15cc9aca461ecd9fdb3f2d81|commit]], [[https://git.kernel.org/linus/90848a2557fec0a6f1a35e58031a1f6f5e44e7d6|commit]], [[https://git.kernel.org/linus/2f6860e6133fca937d18b66faa32c460cef7ddad|commit]] * qcom: audioreach: add compress offload support [[https://git.kernel.org/linus/5b7e984e22c43d217b3224b3118e5c8c88a5b708|commit]], [[https://git.kernel.org/linus/9d11a5431c929c5057e06ff86002f337980caa9e|commit]], [[https://git.kernel.org/linus/69bff594592b0582c36b3aae819deaad0e09eafd|commit]], [[https://git.kernel.org/linus/c7548f5990fb35ccf2bd731570d3cff7df9e1d2e|commit]], [[https://git.kernel.org/linus/e41521b6e2b3c965c64ff3dcd69042db003c3ef4|commit]], [[https://git.kernel.org/linus/2c954a3714b3b0d98354cb6801f88b0ef7c1249d|commit]], [[https://git.kernel.org/linus/88b60bf047fd15b75a0d7b78322ad53f917976ce|commit]], [[https://git.kernel.org/linus/c0c87738a19d3e6d15dac4174d4b90c38a615112|commit]], [[https://git.kernel.org/linus/c337bf33c41de423fa4d7353bd66d3c14df92445|commit]], [[https://git.kernel.org/linus/b3f736d126d69ef3f3cc4f6b68795478954b2cf4|commit]], [[https://git.kernel.org/linus/c317d148a2b02c4756832fb4bd00a6480d874606|commit]] * amd: ps: add !SoundWire support [[https://git.kernel.org/linus/9bd1f9dbbf9b395e0f18661850fc923d129729af|commit]], [[https://git.kernel.org/linus/d1351c30ac8a6cf61b0bbe9fcbc8d2851cd44f3c|commit]], [[https://git.kernel.org/linus/e1cb350610ce88d9995b8b287930d3ba821d9f2b|commit]], [[https://git.kernel.org/linus/f722917350ee0b802a62d888f4e8b23bd5f1f641|commit]], [[https://git.kernel.org/linus/298d4f7b176538d41356d145c044442b8456a14e|commit]], [[https://git.kernel.org/linus/5a06c3ac4cf9a8ca5edf99a07a1129ae25ab581e|commit]], [[https://git.kernel.org/linus/7b33594130405cbcfdef2a4c582f9c67aef8d292|commit]], [[https://git.kernel.org/linus/6e8f7cb4cbae8e2b03190d26674a14be22d7df53|commit]], [[https://git.kernel.org/linus/198c93e2fc0b74ae520393118d7cb02762c04bf3|commit]] * Intel: mtl: Enable multicore support [[https://git.kernel.org/linus/a23b51b2c31c47036d0a9ae498094c428b1d8015|commit]], [[https://git.kernel.org/linus/fd4e9e9bfa0b1c63946fde2ff61440ff1e5eb75b|commit]], [[https://git.kernel.org/linus/c6d15567a4d5dd51ecccc332d514c6dc21bce652|commit]], [[https://git.kernel.org/linus/1b167ba8a20152041d3af0c0cbbfd710f1e93e4b|commit]] == Tablets, touch screens, keyboards, mouses == * uinput: allow injecting event times [[https://git.kernel.org/linus/3a2df60200a03f78173f1fd831aa54c08464dcde|commit]] * pwm-vibra: add support for enable GPIO [[https://git.kernel.org/linus/bcf784985e35fc39d682f0dde750162e7f54a1f0|commit]] * atmel_mxt_ts: support capacitive keys [[https://git.kernel.org/linus/9780432158de0a0da88c3b506d6bdf63da43bc75|commit]] * HID * nvidia-shield: Initial driver implementation with Thunderstrike support [[https://git.kernel.org/linus/09308562d4afb1abc66366608fa1cb9de783272f|commit]], [[https://git.kernel.org/linus/13d02c69e4788f700377677a6cc4247a2869b17d|commit]], [[https://git.kernel.org/linus/f88af60e74a5b31be1551ffb9af216c8a800501c|commit]] * logitech-hidpp: Add wired USB id for Logitech G502 Lightspeed [[https://git.kernel.org/linus/a343a7682acc56182d4b54777c358f5ec6d274e7|commit]] * asus: Add support for ASUS ROG Z13 keyboard [[https://git.kernel.org/linus/74e47b2c52ed43701bf59a98bc703b7c246ba43e|commit]] * asus: add keycodes for 0x6a, 0x4b, and 0xc7 [[https://git.kernel.org/linus/73920f615159b3539520657612b006ee24ea83f0|commit]] * microsoft: Add rumble support to latest xbox controllers [[https://git.kernel.org/linus/f5554725f30475b05b5178b998366f11ecb50c7f|commit]] * i2c-hid: goodix: Add support for "goodix, no-reset-during-suspend" property [[https://git.kernel.org/linus/7607f12ba735f04e0ef8718dabadf3a765c9a477|commit]] * logitech-hidpp: Add USB and Bluetooth IDs for the Logitech G915 TKL Keyboard [[https://git.kernel.org/linus/48aea8b445c422a372cf15915101035a47105421|commit]] * apple: Option to swap only left side mod keys [[https://git.kernel.org/linus/72e49cadea390556ca60fad973740ddc5587e408|commit]] * intel-ish-hid: ipc: Add Arrow Lake PCI device ID [[https://git.kernel.org/linus/4982126e3029cd59fbd1da0d9cc0365a0585fe64|commit]] == TV tuners, webcams, video capturers == * Add AV1 uAPI [[https://git.kernel.org/linus/9de30f579980b498606a9c2440b73ae3b670771b|commit]] * i2c: add ov01a10 image sensor driver [[https://git.kernel.org/linus/0827b58dabff5b2ba624e8c776573ddb18172c01|commit]] * mediatek: vcodec: support stateless AV1 decoder [[https://git.kernel.org/linus/2f5d0aef37c64c30da17a74a82cb782a4a943545|commit]] * mediatek: vcodec: support stateless hevc decoder [[https://git.kernel.org/linus/2674486aac7d9c95ceb77daf7c30f862d4295c1c|commit]] * mediatek: vcodec: Add debugfs file for decode and encode [[https://git.kernel.org/linus/7866e124394d2c0e8e57b29d8c62ef362896c705|commit]], [[https://git.kernel.org/linus/404500ba8009ae8fa29edbb871b9bc2591b39c76|commit]], [[https://git.kernel.org/linus/5e488a4fd8595817e74b255d33868e03f57ad16f|commit]], [[https://git.kernel.org/linus/07b7e505ff13f6c8493291bc0b24c6303a6b224f|commit]], [[https://git.kernel.org/linus/6d5aea131f4d99ec0de79d3bd8e8e15ee05563e4|commit]], [[https://git.kernel.org/linus/5910584b560b7db374d00d65ba608eb0b156eb11|commit]], [[https://git.kernel.org/linus/cc770218226534d921d2adb0819e00014ce471c5|commit]], [[https://git.kernel.org/linus/d78b9d6671decdaedb539635b1d0a34f8f5934f8|commit]] * rcar-isp: Add support for R-Car V4H [[https://git.kernel.org/linus/8e85c1ad3d49f5a51947d74b66b7b6a255fd370c|commit]] * rcar-vin: Add support for R-Car V4H [[https://git.kernel.org/linus/a650b821fa57989deab9f7274a33af6ffab28e7e|commit]] * uvcvideo: Enable Intel !RealSense metadata for devices [[https://git.kernel.org/linus/e33ae66a2e22f65c8e43ef95b614d42a685789d6|commit]] * AV1 stateless decoder for RK3588 [[https://git.kernel.org/linus/1fb38c3cfd39ada092a0a1588a119bf297494b9d|commit]], [[https://git.kernel.org/linus/2ef3372355f63fc1a29310ce9064fb76fe0806ed|commit]], [[https://git.kernel.org/linus/86c256be5848b2515702832ce93f748d9ffbebea|commit]], [[https://git.kernel.org/linus/fc91af075512386facb5f1a84fe85dcf28f68767|commit]], [[https://git.kernel.org/linus/aa1e34c85b9e04ed7c4bb9798094799938eb0525|commit]], [[https://git.kernel.org/linus/53421e73b6a20cf0952c9428d003c45a10435776|commit]], [[https://git.kernel.org/linus/7040ed4ee68cae6d4571ab5b7ce1311de13f74c1|commit]], [[https://git.kernel.org/linus/1b9ef2744c5e7d68e940794827cc8f035e6460ef|commit]], [[https://git.kernel.org/linus/c0d0e579db4ee81a71fd1c81aad66caa236723fe|commit]], [[https://git.kernel.org/linus/727a400686a2c0d25015c9e44916a59b72882f83|commit]], [[https://git.kernel.org/linus/d8ebe59e7b36bce848426c43cd2ccacc03c82c0a|commit]], [[https://git.kernel.org/linus/003afda97c6510f33d1ebcd96ca39661f3bf922f|commit]], [[https://git.kernel.org/linus/80c7373a456e71a41e40f0cfb32e32b9572262ce|commit]] * venus: add support for 10 bit decoding [[https://git.kernel.org/linus/3095607739d820fc691ab0cc6b85e801f74d2dc5|commit]], [[https://git.kernel.org/linus/58b64dd09fd83542effd621daf65b53114904619|commit]], [[https://git.kernel.org/linus/996d215547a877406e601439bd6533d8524d27db|commit]], [[https://git.kernel.org/linus/08998cf30f66862916b7b21784f0640677415492|commit]] * media: vivid: Extend FPS rates offered by simulated webcam [[https://git.kernel.org/linus/f0b4a2c037c0ab1affdf0937aee84314ab9c4fee|commit]] == Universal Serial Bus == * (FEATURED) thunderbolt: Initial USB4 v2 support [[https://git.kernel.org/linus/4796efdd16a8066919a3ff479e0bbc14bac816ff|commit]], [[https://git.kernel.org/linus/2ad3e1314cafad9a8edbefed2b19d2a101cdb4fc|commit]], [[https://git.kernel.org/linus/6e21007d0f7e6723bb67e79aa3d0081419c403e8|commit]], [[https://git.kernel.org/linus/e111fb92513771cbcae70d0aa855c3ca20f48c1b|commit]], [[https://git.kernel.org/linus/235d019481bcaa38a1d407f8513c54209aa387b8|commit]], [[https://git.kernel.org/linus/0fc70886569c8459c4494ba9ef8c4ef34b81e781|commit]], [[https://git.kernel.org/linus/14200a2631dd1f041201985e2a757d2d06ba2524|commit]], [[https://git.kernel.org/linus/6e19d48ea0d8aeee5688e5718cf2143d281864f3|commit]], [[https://git.kernel.org/linus/ee22d52aeef1ed417fc7fddc6a7ba047e78f7003|commit]], [[https://git.kernel.org/linus/75abb4f5fff2314eef15887663a8dcfa062b4f67|commit]], [[https://git.kernel.org/linus/0209c808a56e6469f0ed50dd2e70c3aec074bf90|commit]], [[https://git.kernel.org/linus/6f14a210661ce03988ef4ed3c8402037c8e06539|commit]], [[https://git.kernel.org/linus/f2bfa944080dcbb8eb56259dfd2c07204cbee17e|commit]], [[https://git.kernel.org/linus/7c81a578cbd1124265c07895395f0a5f30fab5d1|commit]], [[https://git.kernel.org/linus/322ff701ffed52fb1cade855b2145a3b4316ccd7|commit]], [[https://git.kernel.org/linus/d49b4f043d63bddf4c1836623b8ae800878ed2e3|commit]], [[https://git.kernel.org/linus/fd4d58d1fef9ae9b0ee235eaad73d2e0a6a73025|commit]], [[https://git.kernel.org/linus/8d73f6b8e0487ac0ed4acd883a6788b2492a5692|commit]], [[https://git.kernel.org/linus/2d7e047297983dd29c29c41b8b7034d64f861aa2|commit]], [[https://git.kernel.org/linus/481012b479fe6d8dd4e01d739c359a8d99d074a9|commit]] * Add sysfs entry for usb device state [[https://git.kernel.org/linus/83cb2604f641cecadc275ca18adbba4bf262320f|commit]] * Introduced new Cadence USBHS Driver [[https://git.kernel.org/linus/0ca2026eea104adc1d0d356bca35915a1ab6e3e9|commit]], [[https://git.kernel.org/linus/3eb1f1efe2045e7083048f4cc4257d0df51899b8|commit]], [[https://git.kernel.org/linus/07a3aef249a1a084b081002e7cbab3873dfb58ae|commit]], [[https://git.kernel.org/linus/41e2f976b558ca71fb79dbc7874c4fc91370b5d6|commit]] * cdns3: Add !StarFive JH7110 USB driver [[https://git.kernel.org/linus/bfb46b424652a3396b92ca3c96c169ade9b45b8d|commit]] * dwc3: core: add support for realtek !SoCs custom's global register start address [[https://git.kernel.org/linus/ec5eb43813a4c775b5abf20f50461037bca7c4e5|commit]] * meson: support Amlogic A1 USB OTG controller [[https://git.kernel.org/linus/be877fbf8968f870279c8384b41c6bd6c3863068|commit]], [[https://git.kernel.org/linus/a9889e71b5e90665bfa90d8dd350caa2d3ee7797|commit]], [[https://git.kernel.org/linus/6bae03b0484b54f699d69339fbec5658e885c224|commit]] * serial: option: add LARA-R6 01B PIDs [[https://git.kernel.org/linus/ffa5f7a3bf28c1306eef85d4056539c2d4b8eb09|commit]] * serial: option: add Quectel EC200A module support [[https://git.kernel.org/linus/857ea9005806e2a458016880278f98715873e977|commit]] * serial: option: support Quectel EM060K_128 [[https://git.kernel.org/linus/4f7cab49cecee16120d27c1734cfdf3d6c0e5329|commit]] * serial: simple: add Kaufmann RKS+CAN VCP [[https://git.kernel.org/linus/dd92c8a1f99bcd166204ffc219ea5a23dd65d64f|commit]] * typec: add support for the nb7vpq904m Type-C Linear Redriver [[https://git.kernel.org/linus/88d8f3ac9c67e2d00db671dbb0af50efb7c358cb|commit]] * typec: qcom: Add Qualcomm PMIC Type-C driver [[https://git.kernel.org/linus/a4422ff221429c600c3dc5d0394fb3738b89d040|commit]] * typec: support Audio Accessory mode on FSA4480 [[https://git.kernel.org/linus/25a2bc21c86392223142dcbd5bc92e598a950678|commit]], [[https://git.kernel.org/linus/c7054c31c1c94dbfe0ddf7c327f72f020d47c6c9|commit]], [[https://git.kernel.org/linus/ef1e29c6f6ad1e327d07b078e37a1eddd832e8e4|commit]] * typec: tcpm: add get max power support [[https://git.kernel.org/linus/8be558dcffe69b078b34b1fa93b82acaf4ce4957|commit]] * xhci: Add ZHAOXIN xHCI host U1/U2 feature support [[https://git.kernel.org/linus/d5e234ff08a45a7a08a52173ed793b3c125ab88d|commit]] * xhci: tegra: enable stream protocol support [[https://git.kernel.org/linus/397376765249555800749d012b301609c62ae963|commit]] == Serial Peripheral Interface (SPI) == * Add support for Renesas CSI [[https://git.kernel.org/linus/83c624d8842d7f6c0780bc7658cb8fa67c0501f1|commit]] * dw: Add 32 bpw support to SPI DW DMA driver [[https://git.kernel.org/linus/5147d5bfddc807e990a762aed0e56724afeda663|commit]] * dw: Add compatible for Intel Mount Evans SoC [[https://git.kernel.org/linus/0760d5d0e9f0c0e2200a0323a61d1995bb745dee|commit]] * spi-qcom-qAdd DMA mode support [[https://git.kernel.org/linus/b5762d95607e74eec91ef39c7902f127c80d43aa|commit]] * sun6i: add support for R329/D1/R528/T113s SPI controllers [[https://git.kernel.org/linus/046484cb214b43dc4463343e8c49133d9edb5454|commit]] * Improve polling mode of s3c64xx driver [[https://git.kernel.org/linus/97a03a9b9361108bbd82446661367e0082a68518|commit]], [[https://git.kernel.org/linus/d1a7718ee8dbcc488d3243d52e19c755123e0024|commit]], [[https://git.kernel.org/linus/3456674f54d3cfdedb28ce8a3db2b6f975392ac8|commit]], [[https://git.kernel.org/linus/1ee806718d5ef7de31c6063c4493f3d6527c9427|commit]] * spi: stm32: add spi device mode [[https://git.kernel.org/linus/3dcce5b3ff095628458c9daa2d69bbc7dca6686f|commit]], [[https://git.kernel.org/linus/6f486556abe35f2e6684f95241acbc463342d3eb|commit]], [[https://git.kernel.org/linus/4f2b39dc2d14d4fc55d7a3a140ac07eaa761b701|commit]], [[https://git.kernel.org/linus/01fa9edd8bcf1c4fe330ea000c3da9ecf76c76a0|commit]], [[https://git.kernel.org/linus/e40335fcb89acb274d05deffad9225e973278ec9|commit]] == Watchdog == * sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) [[https://git.kernel.org/linus/009637de1f65cff452ad49554d1e8ef9fda99e43|commit]] * xilinx_wwdt: Add Versal window watchdog support [[https://git.kernel.org/linus/12984cea1b8c54104f8ac7f5609dfcc0752ad741|commit]] == CPU Frequency scaling == * armada-8k: add ap807 support [[https://git.kernel.org/linus/8eec6e740b564ec5e1da59ab7070b89aa23c9973|commit]] * ti-cpufreq: Add support for AM62A7 [[https://git.kernel.org/linus/5008e4c8c31c65bbe080cbfc1383602d1abf076e|commit]] * Enable amd-pstate active mode by default [[https://git.kernel.org/linus/965262ef71c475857d0984a5eee57694b207a113|commit]], [[https://git.kernel.org/linus/32f80b9adfdb43f8af248596724f59dde938a190|commit]], [[https://git.kernel.org/linus/c88ad30e3f861c7be4e3b4995554e2b0754059b7|commit]] == Voltage, current regulators, power capping, power supply == * supply: axp20x_usb_power: Add support for AXP192 [[https://git.kernel.org/linus/af1dcd3d2d37c85b7ff9315227a5cf28e1b80d1b|commit]] * reset: qcom-pon: add support for pm8941-pon [[https://git.kernel.org/linus/4dea2fd6e83c4aaa47c68987d4c68d39b5ae9654|commit]] * supply: add Qualcomm PMI8998 SMB2 Charger driver [[https://git.kernel.org/linus/8648aeb5d7b70e13264ff5f444f22081d37d4670|commit]] * regulator * Add Renesas PMIC RAA215300 driver [[https://git.kernel.org/linus/7bce16630837c705f72e8fd53a11ae8c236236f4|commit]] * Add support for TI TPS6287x regulators [[https://git.kernel.org/linus/7b0518fbf2befd7c4afb81eb06c95c8fc93998be|commit]] * axp20x: Add AXP15060 support [[https://git.kernel.org/linus/9e72869d0fe12aba8cd489e485d93912b3f5c248|commit]] * axp20x: Add support for AXP313a variant [[https://git.kernel.org/linus/60fd7eb89670d2636ac3156881acbd103c6eba6a|commit]] * max77541: Add ADI MAX77541/MAX77540 Regulator Support [[https://git.kernel.org/linus/c2b2afe6c8811290e4207dcb1d627def32a970f8|commit]] * rk808: add rk806 support [[https://git.kernel.org/linus/f991a220a44726c54c2332569a2a80bf074aa775|commit]] * tps6594-Add driver for TI TPS6594 regulators [[https://git.kernel.org/linus/f17ccc5deb4d024bb52fd3433471e77ab7ae9ad8|commit]] == Real Time Clock (RTC) == * Add rtc driver for the Loongson family chips [[https://git.kernel.org/linus/1b733a9ebc3d8011ca66ec6ff17f55a440358794|commit]] * isl1208: Add support for the built-in RTC on the PMIC RAA215300 [[https://git.kernel.org/linus/fdd63f65ac25d0851dade4c7ba94a7a882b8d9c2|commit]] * Remove the Loongson-1 RTC driver [[https://git.kernel.org/linus/9fb23090658adbd7f8f44bf5c38aa3fc4b1699bd|commit]] == Pin Controllers (pinctrl) == * at91-pio4: Enable Push-Pull configuration [[https://git.kernel.org/linus/772be1da8e51ad087b88372e8df10ba4a571f9af|commit]] * axp209: Add support for GPIO3 on the AXP209 [[https://git.kernel.org/linus/44825e5ead0f3e8dda4bbc1c20175c42942659ab|commit]] * intel: Add Intel Meteor Lake-S pin controller support [[https://git.kernel.org/linus/34ce984c24e69abc271f855cfe2969f444f3b98b|commit]] * qcom: Add IPQ5018 pinctrl driver [[https://git.kernel.org/linus/725d1c8916583f9c09e5f05e5a55dd47fdca61c1|commit]] * qcom: Add SDX75 pincontrol driver [[https://git.kernel.org/linus/0f9367525ad32eef888400106312709053798a53|commit]] * qcom: spmi-gpio: Add PM8953 support [[https://git.kernel.org/linus/cbbe077815144ad98fd2ea724d9ec3dade09ca92|commit]] * rk805: Add rk806 pinctrl support [[https://git.kernel.org/linus/924764aa5f2e705f46f548611e6a9d6b986ae880|commit]] * stm32: add stm32mp257 pinctrl support [[https://git.kernel.org/linus/619f8ca4a73d376bee4307948aea6cd6177aa1df|commit]] * tegra: Add Tegra234 pinmux driver [[https://git.kernel.org/linus/6d8257ca39884a90bbb61e3441f7d578abc53bac|commit]] == Multi Media Card (MMC) == * mmci: Add support for SW busy-end timeouts [[https://git.kernel.org/linus/b1a665932dc23cad0b8af2745cd9713f9e930d63|commit]] * Update MMCI driver for STM32MP25 [[https://git.kernel.org/linus/1f9f2cf3145e67dc5bbc0ac25b52bfa11b17a882|commit]], [[https://git.kernel.org/linus/88167e6c2e8e5d99f83a4d1d466e1d9c35c8f596|commit]], [[https://git.kernel.org/linus/ea9ca04119734c2b84691276fef2c018e9fd68ae|commit]], [[https://git.kernel.org/linus/27bdc37c390af01af72ad3750cafe19b459bdf93|commit]], [[https://git.kernel.org/linus/83efc782dcb74a1289b2f390e1ab134d1e90085d|commit]], [[https://git.kernel.org/linus/b5c3eb3857976050cde3d7300015f3ab40bf27b1|commit]] * Add Genesys Logic GL9767 support [[https://git.kernel.org/linus/f3a5b56c1286444204c95ba78e1b03961aac580c|commit]], [[https://git.kernel.org/linus/d2754355512e51c1e6c37975ccc5bdca635b3718|commit]], [[https://git.kernel.org/linus/17b492117b00ead1fa0a53035b2fb98b04ba35f4|commit]], [[https://git.kernel.org/linus/0e92aec2efa04a9e0a5b3a927dab06773dd814ca|commit]] == Memory Technology Devices (MTD) == * spinand: gigadevice: add support for GD5F2GQ5xExxH [[https://git.kernel.org/linus/ef1560b670bd28ca3230c7f5ad29c6a211fb1adb|commit]] * spinand: macronix: Add support for serial NAND flash [[https://git.kernel.org/linus/1a50947df5b3a574c4c97891f8deb8de6500be6c|commit]] * rawnand: add basic sandisk manufacturer ops [[https://git.kernel.org/linus/12ac188b9355618dbaa892eb795f48845cf7b1af|commit]] * rawnand: add support for the Sandisk SDTNQGAMA chip [[https://git.kernel.org/linus/a6a8a1e16c14b5c93bec202ba2f1c8d7c9173571|commit]] == Industrial I/O (iio) == * adc: max77541: Add ADI MAX77541 ADC Support [[https://git.kernel.org/linus/04c9a8eb722ff6ebafd95217bed4faf6193e7e46|commit]] * adc: rockchip_saradc: Add support for RK3588 [[https://git.kernel.org/linus/757953f8ec6916084e0c22218d1d0482e9fc6682|commit]] * imu: mpu6050: Add support for the ICM 20600 IMU [[https://git.kernel.org/linus/23cf1846f4395c61e2dd4309a344e937689702fd|commit]] * light: Add support for TI OPT4001 light sensor [[https://git.kernel.org/linus/9a9608418292bb8733805c3f3123dfe0454fadac|commit]] * light: ROHM BU27008 color sensor [[https://git.kernel.org/linus/41ff93d14f784695b5019bc1451dfd4eb2b30d9d|commit]] * magnetometer: st_accel: Add LSM303D [[https://git.kernel.org/linus/a9e19f636036567284ef41008b930f5730acd974|commit]] * mlx90614: Add MLX90615 support [[https://git.kernel.org/linus/7699e975e54a47de79de9fcc4b83df61ecd86cd5|commit]] * potentiometer: Add support for the Renesas X9250 potentiometers [[https://git.kernel.org/linus/66bfc528a6fd5225e59ea4bbca0665aad38f1567|commit]] * pressure: Honeywell mprls0025pa pressure sensor [[https://git.kernel.org/linus/713337d9143ed1ccc70e2dab6633e8e6b0186ad5|commit]] * st_sensors: Add ACPI support for lsm303d to the LSM9DS0 IMU driver [[https://git.kernel.org/linus/598e971fabf8c7c560896394b06175330b1c1aba|commit]] * st_sensors: Add lsm303d support to the LSM9DS0 IMU driver [[https://git.kernel.org/linus/c0f68439ae06c8612e4d64e24b70a5c82fcdede6|commit]] == Multi Function Devices (MFD) == * axp20x: Add support for AXP192 [[https://git.kernel.org/linus/63eeabbc9dbddd7381409feccd9082e5ffabfe59|commit]] * axp20x: Add support for AXP313a PMIC [[https://git.kernel.org/linus/75c8cb2f4cb218aaf4ea68cab08d6dbc96eeae15|commit]] * max77541: Add ADI MAX77541/MAX77540 PMIC Support [[https://git.kernel.org/linus/e0cbc202388af454eb771043b20db6dfe68199ec|commit]] * rk8xx: Add rk806 support [[https://git.kernel.org/linus/210f418f8ace9f056c337f7945e0ae3e242b3389|commit]] * tps65219: Add support for soft shutdown via sys-off API [[https://git.kernel.org/linus/3df4c63675203da74385b00dd72ae90cc59dd710|commit]] == Pulse-Width Modulation (PWM) == * mediatek: Add support for MT7981 [[https://git.kernel.org/linus/967da67a745fb73fd0fc7aa61fd197b76fceb273|commit]] * Add Renesas RZ/G2L MTU3a PWM driver [[https://git.kernel.org/linus/254d3a727421ccc935f085eaa9bae51cb6c9df25|commit]] * Add microchip soft ip corePWM driver [[https://git.kernel.org/linus/2bf7ecf7b4fffd87d8eb5c072395239d6ff54728|commit]] == Inter-Integrated Circuit (I2C + I3C) == * i801: Add support for Intel Meteor Lake SoC-S [[https://git.kernel.org/linus/e755ef0095ba5a56f8dcb759a7c3b4f3db28ab21|commit]] * i801: Add support for Intel Meteor Lake PCH-S [[https://git.kernel.org/linus/bcfc2ab7f43508ec6e80353768a77aedc883e568|commit]] * designware: Add driver support for Wangxun 10Gb NIC [[https://git.kernel.org/linus/2f8d1ed793453b9f7a832c96d699bf3dca176280|commit]] == Hardware monitoring (hwmon) == * corsair-psu: update Series 2022 and 2023 support [[https://git.kernel.org/linus/741ed0856d5ef94c2dbdbf58cb13d262d89505bb|commit]] * Add MAX31827 driver [[https://git.kernel.org/linus/16d60ba8fdc4c6e4745005889dea6ed82b6b5cbd|commit]] * Add HP WMI Sensors driver [[https://git.kernel.org/linus/23902f98f8d4811ab84dde6419569a5b374f8122|commit]] * aht10: Add support for compatible aht20 [[https://git.kernel.org/linus/d2abcb5cc88577f996ab505c8102254aba7062d8|commit]] * aquacomputer_d5next: Add support for Aquacomputer Leakshield [[https://git.kernel.org/linus/b3d3be6c4cd1908b9ffdb3d347de232a6c34a0a9|commit]] * asus-ec-sensors: add ROG Crosshair X670E Hero [[https://git.kernel.org/linus/790dec13c0128dfec5b6bf28bef433661875e634|commit]] * corsair-psu: add support for reading PWM values and mode [[https://git.kernel.org/linus/0d67bbc48c7397bc97fa91c9b9c66c6570451131|commit]] * it87: Add support for 4 fans chips [[https://git.kernel.org/linus/5a4417bc67cd2cb24667f226667dba66d284de8b|commit]], [[https://git.kernel.org/linus/39a6dcf640a5fc0aa880a8cf8871755fdbd42a5e|commit]], [[https://git.kernel.org/linus/bd5940221b7d49addfa5e80f3cf8fcd7cedd4dc5|commit]] * it87: Allow for chips with only 4 temp sensors [[https://git.kernel.org/linus/339c8f2484a110fd94af4d045e2be9bf25800381|commit]] * nct6683: Add another customer ID for NCT6687D sensor chip on some MSI boards [[https://git.kernel.org/linus/7c415ed8673470fbe18ce4a3694e5776d4db2456|commit]] * nct6755: Add support for NCT6799D [[https://git.kernel.org/linus/aee395bb190564a3fa22aa65c60812c25410e94a|commit]] * oxp-sensors: Add AYANEO 2 and Geek models [[https://git.kernel.org/linus/f415cb6c0ffece69eb60eca9750a2877c7985c89|commit]] * oxp-sensors: Add new DMI match for OXP Mini [[https://git.kernel.org/linus/7d0c2c61b1a4d1cf5641b35b491fe58ffafe26bc|commit]] * oxp-sensors: Add support for AOKZOE A1 PRO [[https://git.kernel.org/linus/4dbbaf8fbdbd13adc80731b2452257857e4c2d8b|commit]] * oxp-sensors: Add tt_toggle attribute on supported boards [[https://git.kernel.org/linus/be144ee49127216b456da26f1a32b6ba281ac505|commit]] * pmbus/max16601: Add support for new revisions of MAX16508 [[https://git.kernel.org/linus/450d1a8ce1e5f1cadd402ae62013afff50a5cc9c|commit]] * sht3x: Add new non-stardard sysfs attribute [[https://git.kernel.org/linus/af5ab550125f1bbae0ba89ed8e1994a11f40b96a|commit]] * sht3x: add medium repeatability support [[https://git.kernel.org/linus/3d2c211c0d2b5955b4ec9a1af7d59e8bed00c7fe|commit]] * sht3x: complement sysfs interface for sts3x [[https://git.kernel.org/linus/fbb5a7fee063fe97009ff28df8cd0e4af3202683|commit]] == General Purpose I/O (gpio) == * aggregator: Support delay for setting up individual GPIOs [[https://git.kernel.org/linus/b466622cecb9b14577ff0ed3e0bc4756dbe1d3d3|commit]] * Add gpio delay driver [[https://git.kernel.org/linus/cf5dec80c4e23ac1677b8ef9aafe5a7b87bb18c3|commit]] * tps65219: add GPIO support for TPS65219 PMIC [[https://git.kernel.org/linus/57e30e00bd5baacdf99450d69981ec9192592e3c|commit]] * mlxbf3: Add gpio driver support [[https://git.kernel.org/linus/cd33f216d241520385a5166ae73a0771197a9f0b|commit]] == Leds == * Add AW20xx driver [[https://git.kernel.org/linus/36a87f371b7a1b69584a40c873c0b62dc87d3f80|commit]] * Add Intel Cherry Trail Whiskey Cove PMIC LED driver [[https://git.kernel.org/linus/047da762b9a937d60c16e2c8392c326e5ab11a1d|commit]] * cht-wcove: Add support for breathing mode use hw_pattern sysfs API [[https://git.kernel.org/linus/5b916aa755551058c0e88e45a8c7db31d7718d59|commit]] * flash: leds-qcom-flash: Add PMI8998 support [[https://git.kernel.org/linus/0ae8dc1a1a998c7b6b866cb83de83bea5740fb8e|commit]] * Introduce new LED hw control APIs [[https://git.kernel.org/linus/ed554d3f945179c5b159bddfad7be34b403fe11a|commit]], [[https://git.kernel.org/linus/052c38eb17e866c5b4cd43924e7a5e20167b55c0|commit]], [[https://git.kernel.org/linus/8aa2fd7b66980ecd2e45e95af61cf7eafede1211|commit]], [[https://git.kernel.org/linus/28a6a2ef18ad840a390d519840c303b03040961c|commit]], [[https://git.kernel.org/linus/4fd1b6d47a7a38e81fdc6f8be2ccd4216b3f93db|commit]], [[https://git.kernel.org/linus/6352f25f9fadba59d5df2ba7139495759ccc81d5|commit]], [[https://git.kernel.org/linus/c84c80c7388f887b10dafd70fc55bc6c5fe9fa5a|commit]], [[https://git.kernel.org/linus/7c145a34ba6e380616af93262fcab9fc7261d851|commit]], [[https://git.kernel.org/linus/33ec0b53befff2c0a7f3aa19ff08556d60585d6b|commit]], [[https://git.kernel.org/linus/0316cc5629d15880dd3f097d221c55ca648bcd61|commit]], [[https://git.kernel.org/linus/947acacab5ea151291b861cdfbde16ff5cf1b08c|commit]], [[https://git.kernel.org/linus/e0256648c831af13cbfe4a1787327fcec01c2807|commit]], [[https://git.kernel.org/linus/4f53c27f772e27e4cf4e5507d6f4d5980002cb6a|commit]] * leds-mt6323: Add support for MT6331 leds [[https://git.kernel.org/linus/9540989ca85b91a34ecde8877f385a299c9c1ccc|commit]] * leds-mt6323: Add support for WLEDs and MT6332 [[https://git.kernel.org/linus/9bb0a9e0626ccaaff268de12d4cde4d4c3c3c9d7|commit]] * qcom-lpg: Add support for PMI632 LPG [[https://git.kernel.org/linus/d11a79dd047e18dd0b76bc9abebb8470858856d6|commit]] * trigger: netdev: add additional modes [[https://git.kernel.org/linus/d5e01266e7f5fa12400d4c8aa4e86fe89dcc61e9|commit]], [[https://git.kernel.org/linus/f22f95b9ff1551c9bab13104131929f33d51f23f|commit]] * Add support for MT6331 and MT6332 LEDs [[https://git.kernel.org/linus/020378ab90813793fc4c1ddabe0a726850cdd899|commit]], [[https://git.kernel.org/linus/0642b7e8384226aedfe82f6bc8242fbf2454ec6d|commit]], [[https://git.kernel.org/linus/3ec0b29e596270fd02bbe1656c5005e0c38b8ce0|commit]], [[https://git.kernel.org/linus/9bef14141f2b912345280ba10e6e8318d0bb054b|commit]], [[https://git.kernel.org/linus/4c58b6d906dc99554f1767c574b68ce8e133fcbb|commit]], [[https://git.kernel.org/linus/9540989ca85b91a34ecde8877f385a299c9c1ccc|commit]], [[https://git.kernel.org/linus/9bb0a9e0626ccaaff268de12d4cde4d4c3c3c9d7|commit]] * trigger: netdev: expose hw_control status via sysfs [[https://git.kernel.org/linus/b655892ffd6d89b0c7407e099c40dbde82ee3f03|commit]] == DMA engines == * ti: k3-udma: Add support for !J721S2 CSI BCDMA instance [[https://git.kernel.org/linus/ceb434d56826b39ff9d5700804c4b22cb091c1a2|commit]] * dw-edma: Add HDMA DebugFS support [[https://git.kernel.org/linus/353d5c241e83c4de04ca5ec0d7922bfb0809aa25|commit]] * dw-edma: Add support for native HDMA [[https://git.kernel.org/linus/e74c39573d35e9ac441090ff8183aa3dc2540649|commit]] == Cryptography hardware acceleration == * ccp: Add support for PCI device 0x156E [[https://git.kernel.org/linus/bb4185e595e476d4ceccd366bca39762823c5a2e|commit]] * ccp: Add support for PCI device 0x17E0 [[https://git.kernel.org/linus/4aa0931be8f0a2b1571dd24611b26602d2285a1a|commit]] * octeontx2: add support for AF to CPT PF uplink mbox [[https://git.kernel.org/linus/5c553114ce7633e76626136b43577553027d01ff|commit]] * starfive: Add drivers for crypto engine [[https://git.kernel.org/linus/4b66c6aa285e65c634188c5ef3da1af06488e5bc|commit]], [[https://git.kernel.org/linus/42ef0e944b0119e9987819af0a5a04d32d5e5edf|commit]], [[https://git.kernel.org/linus/7883d1b28a2b0e62edcacea22de6b36a1918b15a|commit]] * starfive: Add RSA algo to drivers [[https://git.kernel.org/linus/df12284ad3dc1db11bdc784265a4947d3db29c06|commit]], [[https://git.kernel.org/linus/445a4aaf5842073e4130b1d6dbe3785284d9615f|commit]] == PCI == * pciehp: Simplify Attention Button logging [[https://git.kernel.org/linus/5054133a88622943783e370ede795e725f39a485|commit]] * tegra194: Add interconnect support in Tegra234 [[https://git.kernel.org/linus/9365bf006f53d04b69d560ef7e2bf4be4c4d693a|commit]] * Add support for MHI Endpoint function driver [[https://git.kernel.org/linus/ff2f19d6f1fcb6128950263c3ea46ff1aefec54f|commit]], [[https://git.kernel.org/linus/081c715dfd50542e89df5ee12a8e32e7ed936cd1|commit]], [[https://git.kernel.org/linus/a504c965588b781f864364e897917a2c7b48ea5b|commit]], [[https://git.kernel.org/linus/a1f6c3d7d3a2fdcb7bf77da17a17944c81ca13de|commit]], [[https://git.kernel.org/linus/6360efb96b19d89990b2a5bf3a73c689a429f5da|commit]], [[https://git.kernel.org/linus/c47c74b7217a3a142d6c7f0371d8e0240acb21a0|commit]], [[https://git.kernel.org/linus/8f05cd35c73b97b9df759dd70e3ad26bc7482a7d|commit]], [[https://git.kernel.org/linus/1bf5f25324f7f6a52c3eb566ec5f78f6a901db96|commit]], [[https://git.kernel.org/linus/39cce0875121ce31b90467811de807c46aed9f0f|commit]] * pci: Work around ASMedia ASM2824 PCIe link training failures [[https://git.kernel.org/linus/33a176abcc4cd4ed3d65512ed96d7b73f2565ed7|commit]], [[https://git.kernel.org/linus/08e3ed12ca8615b078ea19488fb45b084e5de16b|commit]], [[https://git.kernel.org/linus/a89c82249c3763780522f763dd2e615e2ea114de|commit]] == Clock == * loongson1: Move PWM timer to clocksource framework [[https://git.kernel.org/linus/e738521a11f13e40af89f66527e59306c4169782|commit]] * keystone: syscon-Add support for audio refclk [[https://git.kernel.org/linus/6acab96ee33703497f30b66efa553a7d0ebd5c0f|commit]] * qcom: apss-ipq-pll: Add support for IPQ9574 [[https://git.kernel.org/linus/20beb85f7a018da6fc5d07d343a1622902d38d24|commit]] * qcom: videocc-sm8550: Add video clock controller driver for SM8550 [[https://git.kernel.org/linus/f53153a37969c185d51e388ad51a23807e2605a1|commit]] * ralink: add clock and reset driver for MTMIPS !SoCs [[https://git.kernel.org/linus/6f3b15586eef736831abe6a14f2a6906bc0dc074|commit]] * samsung: Re-add support for Exynos4212 CPU clock [[https://git.kernel.org/linus/40b4ffe5e921a8db911a7e5ffe3ad8da86ac0dfd|commit]] * Add video clock controller driver for SM8450 [[https://git.kernel.org/linus/441fe711be3842552e32fe884bd9f47f170892cb|commit]], [[https://git.kernel.org/linus/1e910b2ba0edd639cc89b5495a3a832b28f77c7f|commit]], [[https://git.kernel.org/linus/22ff170d4551756e3e4ef57253c43e8c3fffefed|commit]] * SM8350 VIDEOCC [[https://git.kernel.org/linus/fd0b5b106fcab4b1127c72eb818e0e24f0447fc7|commit]], [[https://git.kernel.org/linus/2aae5eaa941e356b5f6e78c207c7dc3a93286622|commit]] * SM8450 GPUCC [[https://git.kernel.org/linus/728692d49edce3cdc77be92f3c79a6c56f81e531|commit]], [[https://git.kernel.org/linus/63f4e4b6f54cdde98ca9c484724d4012989e3454|commit]], [[https://git.kernel.org/linus/a0e0ec7424c99a0459b44fbf0459de9728be37ab|commit]], [[https://git.kernel.org/linus/d4113d5f2bc9b58d3243df0edd2c42247181dbdd|commit]] * clk: qcom: sc8280xp: add lpasscc reset control [[https://git.kernel.org/linus/bfc43a9c0ce5f3fcf98c972d7b7f21a742b7c957|commit]], [[https://git.kernel.org/linus/83da70da40c93f3515aebcd5f2b8ff6283f64ee3|commit]], [[https://git.kernel.org/linus/a5c9c3ba243ab9a7695b7125d06758f43952b58b|commit]], [[https://git.kernel.org/linus/c2ef1ec97c1fb932d0cccaee71270f56898b9cd0|commit]], [[https://git.kernel.org/linus/532bbadcb511e8477b83b4152a199bf7ffc4350c|commit]], [[https://git.kernel.org/linus/318da4837d75efb2411b86b39427b7047b41204a|commit]] * Add GCC and RPMHCC support for sdx75 [[https://git.kernel.org/linus/9092d1083a6253757c7f9449340173443c81768c|commit]], [[https://git.kernel.org/linus/1c305ea86bc32b3f38413ef3dbb1f3c288da024e|commit]], [[https://git.kernel.org/linus/379d72721bc4308fbc038e9858b7d2e9191725b5|commit]], [[https://git.kernel.org/linus/1c2360ff58162ab3a91c619ab8172c0061174151|commit]], [[https://git.kernel.org/linus/108cdc09b2dea5110533bba495b6953ca9c7c2a9|commit]] * add Amlogic A1 clock controller drivers [[https://git.kernel.org/linus/02f1e17c4106a24fabb27e1419cbcb144b4faa1b|commit]], [[https://git.kernel.org/linus/b6ec400aa153b27e056b2dfc5e830b724c053a04|commit]], [[https://git.kernel.org/linus/e6c6ddb397e2b1b084996b72a745c7b7b5974f10|commit]], [[https://git.kernel.org/linus/28f3be518081b2127f98105fa9735a19812a33ca|commit]], [[https://git.kernel.org/linus/98872da6c6b6c78d15ca9231ed99461cbcc5612f|commit]], [[https://git.kernel.org/linus/84af914404dbc01f388c440cac72428784b8a161|commit]] * Add infra_ao reset support for MT8188 Soc [[https://git.kernel.org/linus/2cf4ec53446fa5ab6f860b10a4d825311c40518d|commit]], [[https://git.kernel.org/linus/18eb864f1a2df1956a2829edd58d5d9e9e73bc19|commit]] == PHY ("physical layer" framework) == * cadence: salvo: add access for USB2PHY [[https://git.kernel.org/linus/88bc4cda5e27a63061d83ba031bc69526180c3a1|commit]] * Add debugfs files [[https://git.kernel.org/linus/91694772067203a554354a08bfad294b81fff5ad|commit]] * hisilicon: Add inno-usb2-phy driver for Hi3798MV100 [[https://git.kernel.org/linus/3940ffc6549206d79707887c5bf3ecd58769f1ee|commit]] * mediatek: tphy: add debugfs files [[https://git.kernel.org/linus/e45076007e358ff1e934ab009cf68ee723f6f1fd|commit]] * qcom-qmp-usb: add support for updated qcm2290 / sm6115 binding [[https://git.kernel.org/linus/1178c93c0ab70f8f758b529ef40386e1a3cc5646|commit]] * ti: gmii-sel: Add support for SGMII mode [[https://git.kernel.org/linus/6a301188420ae53d8606ef4c5584fc015574e1f9|commit]] * PHY-GMII-SEL: Add support for !J784S4 SoC [[https://git.kernel.org/linus/efd658807d3fb838ba79bedecfe45cc838283ac4|commit]], [[https://git.kernel.org/linus/8d087a09c7017f1425f3f1d36807eb4988410942|commit]] * phy: qcom-qmp-combo: Support orientation switching [[https://git.kernel.org/linus/6c0237db15fa26eccafb4c875ff0e70b11f9322f|commit]], [[https://git.kernel.org/linus/02545aa31008e1f4fb6875cdd13c415ddf95a24c|commit]], [[https://git.kernel.org/linus/77cbca3a12d3b9501973bdecd28f28b5c2184bf2|commit]], [[https://git.kernel.org/linus/815891eee668795deea07f5d1eb43e0d6089c930|commit]], [[https://git.kernel.org/linus/2851117f8f4218043e4c05d24494fee66e932cbe|commit]], [[https://git.kernel.org/linus/1904c3f578dce06760160cc5b728c960cd7db633|commit]], [[https://git.kernel.org/linus/42b08375498e74f094425fad10d10c338fd29858|commit]] * arm64: qcom: sa8775p-ride: enable the first ethernet port [[https://git.kernel.org/linus/37bd215fc48ef2a399f836d62d2e4a166efb31be|commit]], [[https://git.kernel.org/linus/97b795125704046e0c6708f1079d9c5ca3f2ecfd|commit]], [[https://git.kernel.org/linus/601d06277007e850615b86358bf9c0a143d20faa|commit]], [[https://git.kernel.org/linus/a43274be0eb773851f9e3d987e48495b258c79e6|commit]], [[https://git.kernel.org/linus/9fc68f23a6d3729ccbeb6ca7da6de0bc399f9ddb|commit]], [[https://git.kernel.org/linus/9bc580609139cfc1f559cdc4bfb2f4862b38503d|commit]], [[https://git.kernel.org/linus/7b5e64a9382528d5e3db0fe714b03090a4b1433b|commit]], [[https://git.kernel.org/linus/302555a0ae3362b38eddd1df9b8d4b176050fc92|commit]], [[https://git.kernel.org/linus/c265735ff5b1f13272e2bfb196f5c55f9b3c9bac|commit]], [[https://git.kernel.org/linus/97f73bc59e1620c70635be68ab7ee91779bdf03e|commit]], [[https://git.kernel.org/linus/f2b1758554eb026939407ed03e38dd5d43978cb4|commit]], [[https://git.kernel.org/linus/0dec3b48aa4edb653ba8ed8a62970bc0698f5bc1|commit]], [[https://git.kernel.org/linus/feeb27165c46c1956c9ee002d306a2ed196fa5f0|commit]], [[https://git.kernel.org/linus/25c4a0769443d77c74fe73c80a978e28b08dc976|commit]], [[https://git.kernel.org/linus/463120c31c58bbca0237dd6ae73d20f77609c749|commit]], [[https://git.kernel.org/linus/aa571b6275fb60da443c490ebeef021a6897d332|commit]], [[https://git.kernel.org/linus/d0e3d29f8771068a6f8df2a148080c449bc5b046|commit]], [[https://git.kernel.org/linus/8c4d92e82d500a65e7dba101ea38e4f3499dc428|commit]], [[https://git.kernel.org/linus/683ef77158cbb56ede2a524751b150cec340128a|commit]], [[https://git.kernel.org/linus/ff499a0fbb2352bff15d75c13afe46decf90d7eb|commit]], [[https://git.kernel.org/linus/48c99529998026e21a78f84261d24c0b93c1027e|commit]], [[https://git.kernel.org/linus/120ab6c06f69b39e54c949542fa85fd49ff51278|commit]] * Add phy tuning support for imx8mq-usb [[https://git.kernel.org/linus/b2e75563dc3926ff6ec7344ada456758340ef37b|commit]], [[https://git.kernel.org/linus/63c85ad0cd811ed43653a5e17b7c4172ad1bb023|commit]] * PHY: Add multilink DP support in Cadence Torrent PHY driver [[https://git.kernel.org/linus/1b0524fc2137be74702ac1c7a71e82631a9e0681|commit]], [[https://git.kernel.org/linus/c756cc1621efa911bc54ae2aa3651564fa94e0da|commit]], [[https://git.kernel.org/linus/ede775a87bee11a8ef9181c5769dd44938e7f54f|commit]], [[https://git.kernel.org/linus/72a5ce33b8d17a6646be0e0573eb7cc5fed76e06|commit]] == EDAC (Error Detection And Correction) == * amd64: Add support for ECC on family 19h model 60h-7Fh [[https://git.kernel.org/linus/6c79e42169fe10308d72051950c411b3524c7aa9|commit]] * amd64: Add support for AMD heterogeneous Family 19h Model 30h-3Fh [[https://git.kernel.org/linus/9c42edd571aa4f8b2125b71e3924eeb0f6a54af1|commit]] * npcm: Add NPCM memory controller driver [[https://git.kernel.org/linus/d244c610f1d9a9d2976192c1d7e114a59fba02e0|commit]] == Various == * counter: i8254: Introduce the Intel 8254 interface library module [[https://git.kernel.org/linus/d428487471ba6640ee8bcdabaf830aec08b85400|commit]] * extcon: usbc-tusb320: add accessory detection support [[https://git.kernel.org/linus/18eb81d804c41c98b7e831560ebb933375496529|commit]] * extcon: usbc-tusb320: add usb_role_switch support [[https://git.kernel.org/linus/df101446a402bb1bc164f3445d2f028a1dbec6ac|commit]] * firmware: arm_scmi: Augment SMC/HVC to allow optional parameters [[https://git.kernel.org/linus/5f2ea10a808aef0086ad46240fab0a3e7ae90e95|commit]] * firewire: deliver hardware time stamp for asynchronous transaction [[https://git.kernel.org/linus/dc7c51638f4660cc6c72b5c8151970341b6d9587|commit]], [[https://git.kernel.org/linus/6add87e9764dd308006b078cbdbf36d5a611cc9b|commit]], [[https://git.kernel.org/linus/7c22d4a92bb26f2357b27446138c8be54f88caed|commit]], [[https://git.kernel.org/linus/865efffb2d11402bc6f96c7e390b89384e9d209d|commit]], [[https://git.kernel.org/linus/dcadfd7f7c74ef9ee415e072a19bdf6c085159eb|commit]], [[https://git.kernel.org/linus/39ce342c3a4b763d774c531323d6573af389f332|commit]], [[https://git.kernel.org/linus/147e9d3af34a92ff567c58b0e89099d26787faba|commit]], [[https://git.kernel.org/linus/fc2b52cf2e0e48938b65e20fae7099e54ef74c76|commit]], [[https://git.kernel.org/linus/d8527cab6c311da34193b7c04f4d363fc2d72458|commit]], [[https://git.kernel.org/linus/1ef147710b54d47f4108c802d8ee6f3d27fe922d|commit]], [[https://git.kernel.org/linus/e27b3939128a1d99a4c84f35e4f3897dae73ccd0|commit]], [[https://git.kernel.org/linus/fe971f9163b67b5338dfe4a0e4ce1cfa1b6cd325|commit]] * hwrng: cn10k - Add extended trng register support [[https://git.kernel.org/linus/506579e88caf882b91ff2c62a203af793f468183|commit]] * iio: accel: st_accel: Add LSM303D [[https://git.kernel.org/linus/9445368bca2f62cadfcf98e06219f784ae94dce0|commit]] * mailbox: tegra: add support for Tegra264 [[https://git.kernel.org/linus/602dbbacc3ef9b0a8102202bbde9a5f253677cf0|commit]] * mei: gsc_proxy: add gsc proxy driver [[https://git.kernel.org/linus/1dd924f6885b1f3bddc586c39467dc9471729c5e|commit]] * memory: atmel-sdramc: remove the driver [[https://git.kernel.org/linus/d3369a4b6f0164b8869a097547846ed4e5c9c47f|commit]] * memory: tegra: Add memory clients for Tegra234 [[https://git.kernel.org/linus/aecc83f11dd8712f9b0bcdb4cf1eb0f30f12b226|commit]] * memory: tegra: Add software memory clients in Tegra234 [[https://git.kernel.org/linus/80b19e09c8fb04a6397278b1c16403042629614f|commit]] * nvmem: core: add support for fixed cells *layout* [[https://git.kernel.org/linus/27f699e578b1a72df89dfa3bc42e093a01dc8d10|commit]] * nvmem: imx: support i.MX93 OCOTP [[https://git.kernel.org/linus/22e9e6fcfb5042cb6d6c7874c459b034800092f1|commit]] * nvmem: rockchip-otp: Add support for RK3588 [[https://git.kernel.org/linus/8ab099fafbbc8c9607c399d21a774784a6cb8b45|commit]] * regmap: Add debugfs file for forcing field writes [[https://git.kernel.org/linus/b629c698eae745eb51b6d92395e2eee44bbf5f49|commit]] * reset: Add Nuvoton ma35d1 reset driver support [[https://git.kernel.org/linus/e4bb55d6ccf0f774d879630e048deac6a5b8b8a8|commit]] * reset: oxnas: remove obsolete reset driver [[https://git.kernel.org/linus/ac59ed9cdb80bdb7f6584af5253790f51a9404a7|commit]] * TI TPS6594 PMIC support (Core, ESM, PFSM) [[https://git.kernel.org/linus/a5f00e38eeb41f2f976f037d36b6bf3ee5afdb15|commit]], [[https://git.kernel.org/linus/325bec7157b3859b45b9471447f5d130ab8a8723|commit]], [[https://git.kernel.org/linus/875fdd0787e41e4dfc4161461514ec3b1230458f|commit]], [[https://git.kernel.org/linus/a0df3ef087f8aaebbdf205b1b2e126ec9ef6b113|commit]], [[https://git.kernel.org/linus/dce548889650c188a1078064d038fb72f3fd1c11|commit]], [[https://git.kernel.org/linus/9e66fb52449538406cea43e9f3889c391350e76e|commit]] * hwtracing: Improve PTT filter interface and some fixes [[https://git.kernel.org/linus/a3ecaba7017f5d02d1ad60229cc14d5f0cda0c20|commit]], [[https://git.kernel.org/linus/556ef09392dbc2d0b9aad5fd880d5d11addfc40d|commit]], [[https://git.kernel.org/linus/6373c463ac894e41cab24469d1947ff91aaea486|commit]], [[https://git.kernel.org/linus/45c90292ad0e275ef4b870838b3b5273b3ef8ade|commit]], [[https://git.kernel.org/linus/6c50384ef8b94a527445e3694ae6549e1f15d859|commit]] * tty: serial: Add Nuvoton ma35d1 serial driver support [[https://git.kernel.org/linus/930cbf92db0184e327293d5e7089be0b08d46371|commit]] * vfio/pci-core: Add capability for !AtomicOp completer support [[https://git.kernel.org/linus/a5bfe22db2a4a1ae467f31cfa1d72043eb9f1877|commit]] * vfio/pci: Support dynamic allocation of MSI-X interrupts [[https://git.kernel.org/linus/a65f35cfd504e5135540939cffd4323083190b36|commit]], [[https://git.kernel.org/linus/6578ed85c7d63693669bfede01e0237d0e24211a|commit]], [[https://git.kernel.org/linus/d977e0f7663961368f6442589e52d27484c2f5c2|commit]], [[https://git.kernel.org/linus/8850336588fbcccdca484b91631819eabaafd915|commit]], [[https://git.kernel.org/linus/b156e48fffa9f1caea490e4812a1451adb5c0ef4|commit]], [[https://git.kernel.org/linus/63972f63a63f9c3b113cac34dc8692a7c9ae671d|commit]], [[https://git.kernel.org/linus/b205153689326d22e48b22f21d1ae593df9e85d3|commit]], [[https://git.kernel.org/linus/9cd0f6d5cbb6fda09aa83beb8146c287a552017e|commit]], [[https://git.kernel.org/linus/dd27a707003818fc8435d8621527d4b3af7d2ab1|commit]], [[https://git.kernel.org/linus/e4163438e01583194d043c07adce326b29786f94|commit]], [[https://git.kernel.org/linus/6c8017c6a58d06c2fcce3b034944ad056ccf02ce|commit]] * vfio/cdx: add support for CDX bus [[https://git.kernel.org/linus/234489ac561300ceed33e64c3bf3a810b9e2051d|commit]] * Tegra234 Memory interconnect support [[https://git.kernel.org/linus/9a38cb27668e275ed912e67388cf11f454a24cc6|commit]], [[https://git.kernel.org/linus/e852af72a7f21f4d25994365af86a92438d68014|commit]], [[https://git.kernel.org/linus/205b3d02d57ce6dce96f6d2b9c230f56a9bf9817|commit]], [[https://git.kernel.org/linus/9365bf006f53d04b69d560ef7e2bf4be4c4d693a|commit]], [[https://git.kernel.org/linus/1582e1d1b244e195c869957e08f06c53aa78c688|commit]] * memory: atmel-sdramc: remove the driver [[https://git.kernel.org/linus/bfac19e239a7d3e98946fa7df362fcbfd40da4cf|commit]] * clk: qcom: msm8996: add support for the CBF clock [[https://git.kernel.org/linus/375cccc6593650ab9436d3d5fad7eabd7085fff3|commit]], [[https://git.kernel.org/linus/0ac2a08f42ce5c06d5d1216eac59c046961acd4f|commit]], [[https://git.kernel.org/linus/8bb8688c1d73f21f413e4ea2a37fbbb90997f2bd|commit]] * Add support for !HiSilicon SoC uncore PMU [[https://git.kernel.org/linus/6ce4ef94195da926245b58311119ed9d52428fdc|commit]], [[https://git.kernel.org/linus/1a51688474c0d395b864e98236335fba712e29bf|commit]], [[https://git.kernel.org/linus/312eca95e28d40694aee7c78a18ac0ecfd6d8159|commit]], [[https://git.kernel.org/linus/ea8d1c062a0e876e999e4f347daeb598d5e677ab|commit]] * accel/habanalabs: add more debugfs stub helpers [[https://git.kernel.org/linus/78e9b217d78e9f69c5699ccff18794ea03be597f|commit]] * cxl * Add background cmd handling machinery [[https://git.kernel.org/linus/ccadf1310fb0bc8d2cbcd14f94a6279c12ea9bee|commit]] * Add sanitization handling machinery [[https://git.kernel.org/linus/0c36b6ad436a38b167af16e6c690c890b8b2df62|commit]] * Introduce security state sysfs file [[https://git.kernel.org/linus/9968c9dd568e83f57fdc1f6127f8b369a0594991|commit]] * Support Secure Erase [[https://git.kernel.org/linus/180ffd338c35057c3e8521d55555ae3b36b67fa6|commit]] * Wire up Sanitization support [[https://git.kernel.org/linus/48dcdbb16e5dc0947f949ce17bc2d09a625a0d5c|commit]] * Add a firmware update mechanism and cxl_test emulation [[https://git.kernel.org/linus/9521875bbe0055805557fff0b08fd9a29d02b7bc|commit]], [[https://git.kernel.org/linus/b46c5fa57cc60692412f616ac66ab624a941fdb3|commit]], [[https://git.kernel.org/linus/6e4ca04af73e689bcfdad9047cd248ed93491e95|commit]], [[https://git.kernel.org/linus/f6448cb5f2f378c70d280581590e062f13ff52b3|commit]] = Pull requests = * [[https://git.kernel.org/torvalds/c/be5b52dc144415a88ce785575ec9b6d989fc5ac6|nios2 updates]] * [[https://git.kernel.org/torvalds/c/9d9a9bf07ed9b09af3696997f02a557b428be092|s390 updates]] * [[https://git.kernel.org/torvalds/c/a1257b5e3b7f8a21faf462d0118067fe31e71ffb|rust updates]] * [[https://git.kernel.org/torvalds/c/1f268d6d2c244baf2c7769f33782ca532717723d|auxdisplay update]] * [[https://git.kernel.org/torvalds/c/5c1c88cddb79d3ed3fb1d02a3eaf529eded76f05|ntfs updates]] * [[https://git.kernel.org/torvalds/c/64bf6ae93e08787f4a6db8dddf671fd3a9c43916|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/2eedfa9e27ed7b22d9c06d8d072ad2dbce4fd635|vfs rename locking updates]] * [[https://git.kernel.org/torvalds/c/1f2300a7382119a857cc09e95db6e5d6fd813163|vfs file handling updates]] * [[https://git.kernel.org/torvalds/c/c0a572d9d32fe1e95672f24e860776dba0750a38|vfs mount updates]] * [[https://git.kernel.org/torvalds/c/f7976a6493b3f00c4d057a37d9e63c322154ef8c|nfsd updates]] * [[https://git.kernel.org/torvalds/c/4d483ab702c5cd5e8953a123e0aab734af09cc77|fscrypt update]] * [[https://git.kernel.org/torvalds/c/74774e243c5ff0903df22dff67be01f2d4a7f00c|fsverity updates]] * [[https://git.kernel.org/torvalds/c/098c5dd9cf96fc6d7f35429561ef58cd7c5fcecf|erofs updates]] * [[https://git.kernel.org/torvalds/c/e940efa936be65866db9ce20798b13fdc6b3891a|zonefs updates]] * [[https://git.kernel.org/torvalds/c/cc423f6337d0a5ff1906f3b3d465d28c0d1705f6|btrfs updates]] * [[https://git.kernel.org/torvalds/c/3eccc0c886b1796f95a289c9d127c8ca1a254bd5|splice updates]] * [[https://git.kernel.org/torvalds/c/0aa69d53ac7c30f6184f88f2e310d808b32b35a5|io_uring updates]] * [[https://git.kernel.org/torvalds/c/a0433f8cae3ac51f59b4b1863032822aaa2d8164|block updates]] * [[https://git.kernel.org/torvalds/c/cef2dd76531fda106fa698b6b7ee3e87b1622c08|debugobjects update]] * [[https://git.kernel.org/torvalds/c/0017387938993553fe8e08bd9bcf398fb609d136|irq updates]] * [[https://git.kernel.org/torvalds/c/7cffdbe3607a6cc2dc02d135e13732ec36bc4e28|x86 boot updates]] * [[https://git.kernel.org/torvalds/c/9244724fbf8ab394a7210e8e93bf037abc859514|SMP updates]] * [[https://git.kernel.org/torvalds/c/cd336f6562d3d7646a9cf071b902db200a1dd77b|timer updates]] * [[https://git.kernel.org/torvalds/c/88afbb21d4b36fee6acaa167641f9f0fc122f01b|x86 core updates]] * [[https://git.kernel.org/torvalds/c/e5ce2f196fb9ab35fe18dcfd2bc17883db7bbe33|EDAC updates]] * [[https://git.kernel.org/torvalds/c/aa35a4835e4f4c113c29bc7ea64cfecb951d51b8|RAS updates]] * [[https://git.kernel.org/torvalds/c/8c69e7afe9588f9259a6422c6619d7643c76d12c|x86 instruction alternatives updates]] * [[https://git.kernel.org/torvalds/c/59035135b32280fd394ba5765c6f4de24f48353e|x86 build update]] * [[https://git.kernel.org/torvalds/c/3e5822e0f99e429fa8b03c956dad890179b5b3b1|x86 resource control updates]] * [[https://git.kernel.org/torvalds/c/2c96136a3f8dad6bfe35b003fb8b312f13a107e8|x86 confidential computing update]] * [[https://git.kernel.org/torvalds/c/941d77c77339d2dd1cda8911da63da3c67e90860|x86 cpu updates]] * [[https://git.kernel.org/torvalds/c/a3d763f0b34d94a4f2b2e3075350a19d589630f3|x86 irq updates]] * [[https://git.kernel.org/torvalds/c/36db314440502c1a3a283ba5a16cb5075c19f3d9|x86 platform updates]] * [[https://git.kernel.org/torvalds/c/5dfe7a7e52ccdf60dfd11ccbe509e4365ea721ca|x86 tdx updates]] * [[https://git.kernel.org/torvalds/c/19300488c9d9c9ed539ab3f4f1bfc0050c9a4482|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/f810c182366acd2eb7eb5efb3c06b1fc9f719835|m68k updates]] * [[https://git.kernel.org/torvalds/c/2b603cd5b78fe79af0498824fbd9281b1fba6a75|ARM updates]] * [[https://git.kernel.org/torvalds/c/2605e80d3438c77190f55b821c6575048c68268e|arm64 updates]] * [[https://git.kernel.org/torvalds/c/bb6950556d4b1dd1226c1f09e84b53cb37e5340f|ACPI updates]] * [[https://git.kernel.org/torvalds/c/40e8e98f512fc76891ae2328a63e2e4ffdbe3010|power management updates]] * [[https://git.kernel.org/torvalds/c/8d7868c41df58edabc4e408d119a1aef58a54d9d|thermal control updates]] * [[https://git.kernel.org/torvalds/c/1ef6663a587ba3e57dc5065a477db1c64481eedd|chrome platform updates]] * [[https://git.kernel.org/torvalds/c/af96134dc8562f9fcbb8358af36f6086619a29ab|RCU updates]] * [[https://git.kernel.org/torvalds/c/b19edac5992da0188be98454ca592621d3d89844|nolibc updates]] * [[https://git.kernel.org/torvalds/c/9ba92dc1de0a25e72b0cddb30386bf611e6cb46e|KUnit updates]] * [[https://git.kernel.org/torvalds/c/dedbf31ac8a57eaa29b6e4f9745dadffa83dd947|kselftest updates]] * [[https://git.kernel.org/torvalds/c/a3540495324af9b7fa95b62da2ccbf7cdb4e3622|documentation updates]] * [[https://git.kernel.org/torvalds/c/04fc8904d5d18a132f5ad67b79ee980b6602c8c6|arm documentation move]] * [[https://git.kernel.org/torvalds/c/4aacacee8617424e1dacead8d830e5b768eb3e53|x86 microcode loader updates]] * [[https://git.kernel.org/torvalds/c/4baa098a147d76a9ad1a6867fa14286db52085b6|misc x86 updates]] * [[https://git.kernel.org/torvalds/c/dc43fc753bb5946e91ccdce9f393074675379a00|x86 mtrr updates]] * [[https://git.kernel.org/torvalds/c/12dc010071131aeabd6626a14809e6d3af266bd4|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/e8f75c0270d930ef675fee22d74d1a3250e96962|SGX update]] * [[https://git.kernel.org/torvalds/c/ed3b7923a816ded62dccef377c9ee346c7d3b1b4|scheduler updates]] * [[https://git.kernel.org/torvalds/c/bc6cb4d5bc3a44197de30784eae71d8ba28483eb|locking updates]] * [[https://git.kernel.org/torvalds/c/a193cc7506fde23185a7c0d99474a03a8ec5ee4c|perf events updates]] * [[https://git.kernel.org/torvalds/c/4d6751815b1d3057423b3feb156bd1525b7183e2|x86 mm updates]] * [[https://git.kernel.org/torvalds/c/6f612579be9d0ff527ca2e517e10bfaf08cc1860|objtool updates]] * [[https://git.kernel.org/torvalds/c/8d8026f376c8e46cc90c59de91256d8ee4322ad8|xtensa updates]] * [[https://git.kernel.org/torvalds/c/6a46676994607a1bde51cba71c1b0d373a555f45|s390 updates]] * [[https://git.kernel.org/torvalds/c/18eb3b6dff007f2e4ef4f0d8567dfb5cdb6086fc|xen updates]] * [[https://git.kernel.org/torvalds/c/7ab044a4f42aecba23db5ce96e763e5ec807bf42|workqueue updates]] * [[https://git.kernel.org/torvalds/c/72dc6db7e3b692f46f3386b8dd5101d3f431adef|ordered workqueue creation updates]] * [[https://git.kernel.org/torvalds/c/6e2332e0ab532eb01f1fde39080dbfa9bf65c4cf|cgroup updates]] * [[https://git.kernel.org/torvalds/c/26642864f8b212964f80fbd69685eb850ced5f45|landlock updates]] * [[https://git.kernel.org/torvalds/c/cae72026b5ecf059687ccb431cb0e5965e863fea|audit update]] * [[https://git.kernel.org/torvalds/c/729b39ec1bdb7e1ca594e14069d05f682d9ab868|selinux updates]] * [[https://git.kernel.org/torvalds/c/21953eb16c2a6ebc039126d63acf84b286a58a02|lsm updates]] * [[https://git.kernel.org/torvalds/c/b4c7f2e6ef40f545054a902e4708ed908d562318|integrity subsystem updates]] * [[https://git.kernel.org/torvalds/c/98be618ad03010b1173fc3c35f6cbb4447ee2b07|smack updates]] * [[https://git.kernel.org/torvalds/c/d416a46c954ef0b753595ebfe6bb0988a24c2a57|execve updates]] * [[https://git.kernel.org/torvalds/c/8ad78685ffa6e3836b5b32197bffb03ee3389bec|pstore updates]] * [[https://git.kernel.org/torvalds/c/582c161cf38cf016cd573af6f087fa5fa786949b|hardening updates]] * [[https://git.kernel.org/torvalds/c/6aeadf7896bff4ca230702daba8788455e6b866e|arm64 documentation move]] * [[https://git.kernel.org/torvalds/c/6e17c6de3ddf3073741d9c91a796ee696914d8a0|mm updates]] * [[https://git.kernel.org/torvalds/c/77b1a7f7a05c673c187894b4ae898a8c0cdc776c|non-mm updates]] * [[https://git.kernel.org/torvalds/c/4171a9aa235988fc5cb19d84d493496cb73e6988|regmap updates]] * [[https://git.kernel.org/torvalds/c/362067b6d5ca5b59a849a8e1183fb51d616fcf19|regulator updates]] * [[https://git.kernel.org/torvalds/c/84fccbba93103b22044617e419ba20e1403b4a65|spi updates]] * [[https://git.kernel.org/torvalds/c/1364b4068a421d99fb4da8b570e54525096b1cef|mtd updates]] * [[https://git.kernel.org/torvalds/c/89181f544ffa4da682b0145738342f9b78b9e8dc|MMC updates]] * [[https://git.kernel.org/torvalds/c/4e3c09e95499e83dafc93860d56070a76d20e830|module updates]] * [[https://git.kernel.org/torvalds/c/6a8cbd9253abc1bd0df4d60c4c24fa555190376d|sysctl updates]] * [[https://git.kernel.org/torvalds/c/3a8a670eeeaa40d87bd38a587438952741980c18|networking changes]] * [[https://git.kernel.org/torvalds/c/9471f1f2f50282b9e8f59198ec6bb738b4ccc009|expand-stack]] * [[https://git.kernel.org/torvalds/c/acd1d46b0ddec686d4170b2205bc08c88d5d4d74|hwmon updates]] * [[https://git.kernel.org/torvalds/c/ff7ddcf0db48a7d9ae536eb0875428117be1d1f1|clk updates]] * [[https://git.kernel.org/torvalds/c/e5476f57b32621eb8eab892a908df4d0b4808835|gpio updates]] * [[https://git.kernel.org/torvalds/c/675285ad819293844018aa8096ba9a6d7c77b90b|fbdev updates]] * [[https://git.kernel.org/torvalds/c/0e382fa72bbf0610be40af9af9b03b0cd149df82|HID updates]] * [[https://git.kernel.org/torvalds/c/86e203edf24bb327ce8fcd3c5c8c6bf530a846df|input updates]] * [[https://git.kernel.org/torvalds/c/f8824e151fbfa0ac0a258015d606ea6f4a10251b|sound updates]] * [[https://git.kernel.org/torvalds/c/1b722407a13b7f8658d2e26917791f32805980a2|drm updates]] * [[https://git.kernel.org/torvalds/c/be3c213150dc4370ef211a78d78457ff166eba4e|overlayfs update]] * [[https://git.kernel.org/torvalds/c/b9d02c224d00a412d9c7fb1f92c358604038a783|jfs updates]] * [[https://git.kernel.org/torvalds/c/53ea167b212f675e40420498e46fa31553b406ac|ext4 updates]] * [[https://git.kernel.org/torvalds/c/9e06150d3c04d1a5028a485263912ea892545d2f|xfs updates]] * [[https://git.kernel.org/torvalds/c/0a37714f96d5746268dc09bdd400a215f180ba9b|dlm updates]] * [[https://git.kernel.org/torvalds/c/18c9901d7435b20b13357907bac2c0e3b0fd4cd6|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/c6b0271053e7a5ae57511363213777f706b60489|misc filesystem updates]] * [[https://git.kernel.org/torvalds/c/18f38fedfa71b5b7e954fc8f1e31bda75d8f1d7c|devicetree updates]] * [[https://git.kernel.org/torvalds/c/b775d6c5859affe00527cbe74263de05cfe6b9f9|MIPS updates]] * [[https://git.kernel.org/torvalds/c/6c1561fb900524c5bceb924071b3e9b8a67ff3da|ARM SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/a9025a5f16ed610ea28a188cb0946cb71fafff17|new ARM SoC support]] * [[https://git.kernel.org/torvalds/c/e4c8d01865118ab148f77bdb54ec9c0c181d90a3|ARM SoC driver updates]] * [[https://git.kernel.org/torvalds/c/0873694a339821277d9f2cae7ef981a1283b44f5|ARM SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/bf1fa6f15553df04f2bdd06190ccd5f388ab0777|ARM SoC updates]] * [[https://git.kernel.org/torvalds/c/632f54b4d60bfe0701f43d0bc387928de6e3dcfb|slab updates]] * [[https://git.kernel.org/torvalds/c/d35ac6ac0e80e55bcea79af18d935f19a3e8554c|iommu updates]] * [[https://git.kernel.org/torvalds/c/31929ae00890d921618b0b449722dcdf4a4416cc|iommufd updates]] * [[https://git.kernel.org/torvalds/c/7ede5f78a0d74b574791c7eb0e2ca6e54b80c93c|rdma updates]] * [[https://git.kernel.org/torvalds/c/1e6d5dea34325df8dc204575cd0726cd5f2b864f|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/075e333591e6aee7b0008dd6c14c361bb1509821|memblock updates]] * [[https://git.kernel.org/torvalds/c/112e7e21519422b6f2bb0fa8061f5685e9757170|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/d8b0bd57c2d68eb500f356f0f9228e6183da94ae|powerpc updates]] * [[https://git.kernel.org/torvalds/c/533925cb760431cb496a8c965cfd765a1a21d37e|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/cccf0c2ee52d3bd710be3a3f865df1b869a68f11|tracing updates]] * [[https://git.kernel.org/torvalds/c/d2a6fd45c5c4a5c5fdfe6c57f74f630e61d8d9a0|probes updates]] * [[https://git.kernel.org/torvalds/c/b30d7a77c53ec04a6d94683d7680ec406b7f3ac8|perf tools updates]] * [[https://git.kernel.org/torvalds/c/1546cd4bfda49fd6faad47eb30f4e744e2d79a8f|ata updates]] * [[https://git.kernel.org/torvalds/c/ca7ce08d6a063e0ccb91dc57f9bc213120d0d1a7|SCSI updates]] * [[https://git.kernel.org/torvalds/c/6cdbb0907a3c562723455e351c940037bdec9b7a|device mapper updates]] * [[https://git.kernel.org/torvalds/c/9c3255a8f3946a4c8844f1e2e093313f3b71cb30|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/28968f384be3c064d66954aac4c534a5e76bf973|pin control updates]] * [[https://git.kernel.org/torvalds/c/9070577ae9d6065e447d422bdf85a09f89eaa9e8|pci updates]] * [[https://git.kernel.org/torvalds/c/b25f62ccb490680a8cee755ac4528909395e0711|VFIO updates]] * [[https://git.kernel.org/torvalds/c/5d95ff84e62be914b4a4dabfa814e4096b05b1b0|crypto updates]] * [[https://git.kernel.org/torvalds/c/937d96d2d567fe0d86a2f39a7f988bf31c66d3e6|EFI updates]] * [[https://git.kernel.org/torvalds/c/f4ce392b03722b62804909aadbce6ff4f9c50b91|livepatching update]] * [[https://git.kernel.org/torvalds/c/8976e9d0039574b2336044fa5e3adb717f3ba54b|ksmbd server updates]] * [[https://git.kernel.org/torvalds/c/a507db1d8fdc39802415e4d2ef6d1aecd67927fa|smb client updates]] * [[https://git.kernel.org/torvalds/c/170ab6c51a42a8a1c1a7ce09367b578db6f2f383|flexible-array update]] * [[https://git.kernel.org/torvalds/c/0a1c979c6b7dfe5b6c105d0f0f9f068b5eb07e25|nvdimm and DAX updates]] * [[https://git.kernel.org/torvalds/c/d25f002575146d67b5ebea541e6db3696c957c25|CXL updates]] * [[https://git.kernel.org/torvalds/c/ad2885979ea6657fa8d3da51a301ec0e998ad8e7|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/dfab92f27c600fea3cadc6e2cb39f092024e1fef|NFS client updates]] * [[https://git.kernel.org/torvalds/c/995b406c7e972fab181a4bb57f3b95e59b8e5bf3|arch/csky update]] * [[https://git.kernel.org/torvalds/c/ed77ac92a17c5138c5b5d792ab226c3188217053|parisc updates]] * [[https://git.kernel.org/torvalds/c/5def00ca25fa5697cfe352e675dc7c03116b2403|i2c updates]] * [[https://git.kernel.org/torvalds/c/a901a3568fd26ca9c4a82d8bc5ed5b3ed844d451|iomap updates]] * [[https://git.kernel.org/torvalds/c/a74195876b95fce5f1c5b051b8c3b01e1b18a83b|i3c updates]] * [[https://git.kernel.org/torvalds/c/b349de4c91e6ad761c2beecc796615bcb64b36e6|RTC updates]] * [[https://git.kernel.org/torvalds/c/99bdeae21d254056a1072cb6de19e6f9b7f52496|mailbox updates]] * [[https://git.kernel.org/torvalds/c/b8ec70ab66b09ee9e081a38b8625b5accb388176|MFD updates]] * [[https://git.kernel.org/torvalds/c/c156d4af4354091c38a1cbef62c0b1574e8c4394|LED updates]] * [[https://git.kernel.org/torvalds/c/0a8d6c9c7128a93689fba384cdd7f72b0ce19abd|backlight updates]] * [[https://git.kernel.org/torvalds/c/44aeec836da880c73a8deb2c7735c6e7c36f47c3|Char/Misc updates]] * [[https://git.kernel.org/torvalds/c/fc75f2164593554e3ec36261cec0588c8ed32641|driver core updates]] * [[https://git.kernel.org/torvalds/c/db9c6d1d7fcc6dc803f042bf3d29bbff91837f57|staging driver updates]] * [[https://git.kernel.org/torvalds/c/868a9fd9480785952336e5f119e1f75877c423a8|tty/serial driver updates]] * [[https://git.kernel.org/torvalds/c/56cbceab928d7ac3702de172ff8dcc1da2a6aaeb|USB / Thunderbolt driver updates]] * [[https://git.kernel.org/torvalds/c/eded37770c9f80ecd5ba842359c4f1058d9812c3|kgdb updates]] * [[https://git.kernel.org/torvalds/c/e8069f5a8e3bdb5fdeeff895780529388592ee7a|kvm updates]] * [[https://git.kernel.org/torvalds/c/a8d70602b186f3c347e62c59a418be802b71886d|virtio updates]] * [[https://git.kernel.org/torvalds/c/6afb24a0fe7294f004ee6c43b10251ff86218d56|hwspinlock update]] * [[https://git.kernel.org/torvalds/c/02676ecca76cea4316c8a1e867850d88f6149806|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/0df241385b69616f5d7d41824348528b189ffd01|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/69c9f23070f8b4651b17557a0108d07b87437ede|HSI updates]] * [[https://git.kernel.org/torvalds/c/e50df24979fd02f920aa7baada714a58bc61bfd9|more block updates]] * [[https://git.kernel.org/torvalds/c/406fb9eb198a05fa61c31ec8a6e667c8440749c8|firewire updates]] * [[https://git.kernel.org/torvalds/c/b869e9f49964aace737a5a3fadd958ea94e96288|more clk updates]] * [[https://git.kernel.org/torvalds/c/ccf46d85318327e5aebaae53f1fe33cc31ed1fd1|more power management updates]] * [[https://git.kernel.org/torvalds/c/94c76955e86a5a4f16a1d690b66dcc268c156e6a|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/538140ca602b1c5f3870bef051c93b491045f70a|more overlayfs updates]] * [[https://git.kernel.org/torvalds/c/04f2933d375e3f90d4435b7b518d3065afd1fa25|scope-based resource management infrastructure]] * [[https://git.kernel.org/torvalds/c/2a95b03d4cf780611ac6903fddc79e6d9789966e|more parisc architecture updates]] * [[https://git.kernel.org/torvalds/c/2784d74bcc811e9d743398da38552e6f9c73e96b|tracing tooling updates]] * [[https://git.kernel.org/torvalds/c/15ac468614e5e4fee82e1eb32568f427b0e51adc|media updates]] * [[https://git.kernel.org/torvalds/c/fe1de55167963a1c0ebe1579e37a8a41495f0a81|soundwire updates]] * [[https://git.kernel.org/torvalds/c/b9861581641225262b836508ec2980e1c4fd0c91|more devicetree updates]] * [[https://git.kernel.org/torvalds/c/ace1ba1c9038b30f29c5759bc4726bbed7748f15|pwm updates]] * [[https://git.kernel.org/torvalds/c/bb8e7e9f0bc47d01bea310808ab8c27f6484d850|more xfs updates]] * [[https://git.kernel.org/torvalds/c/73a3fcdaa73200e38e38f7e8a32c9b901c5b95b5|f2fs updates]] * [[https://git.kernel.org/torvalds/c/7afb9d76bc513cb8a2409092dbd3610524a198fe|phy updates]] * [[https://git.kernel.org/torvalds/c/c17414a273b81fe4e34e11d69fc30cc8b1431614|sh updates]] * [[https://git.kernel.org/torvalds/c/c91e587be8e2680786cbf0b87fa7ae92c345857f|watchdog updates]] * [[https://git.kernel.org/torvalds/c/0b907305022beb1a4cf5b9f6d776483a2356c841|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/7b82e90411826deee07c180ec35f64d31051d154|asm-generic updates]] * [[https://git.kernel.org/torvalds/c/a452483508d7b70b0f6c69e249ec0b3ea2330b5c|more s390 updates]] * [[https://git.kernel.org/torvalds/c/7210de3a328c4df5cb8b25b2ef5703c72d8842e9|mode documentation updates]] * [[https://git.kernel.org/torvalds/c/94e0d43e51ff8577ad273032bb1cacfd68e9297b|more ACPI updates]] * [[https://git.kernel.org/torvalds/c/70806ee18a871140a73a2524a29865e1d904348c|apparmor updates]] * [[https://git.kernel.org/torvalds/c/4f6b6c2b2f86b7878a770736bf478d8a263ff0bc|more RISC-V updates]] * [[https://git.kernel.org/torvalds/c/36b93aed9ec07607e26630ecf210e065662f6b0d|ntfs3 updates]] * [[https://git.kernel.org/torvalds/c/3290badd1bb8c9ea91db5c0b2e1a635178119856|ceph updates]] * [[https://git.kernel.org/torvalds/c/ad8258e87729e4337569c4b7d30cfdd4b299179d|bitmap updates]] * [[https://git.kernel.org/torvalds/c/c206353dfdf026dafd42679cf82d6f0a89781e36|more perf tools updates]] * [[https://git.kernel.org/torvalds/c/84dc5aa3f0d861281d353e4b7f4ea03da31e9aba|more i2c updates]] * [[https://git.kernel.org/torvalds/c/7fcd473a6455450428795d20db7afd2691c92336|more SCSI updates]] * [[https://git.kernel.org/torvalds/c/cff068739688791cf7a8f427b7ca6230d798914a|NTB updates]] * [[https://git.kernel.org/torvalds/c/4770353b660abc8b1a5d2afc233b6061d48e7d80|more smb client updates]] * [[https://git.kernel.org/torvalds/c/a9943ad3dddb04763e73649ade8ed726a17b5ec3|irq update]] == Other new sources == * LWN's merge window [[https://lwn.net/Articles/937006/|part 1]], [[https://lwn.net/Articles/936418/|part 2]]. * Phoronix [[https://www.phoronix.com/review/linux-65-features|Linux 6.5 Features]]