#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers, memory management #pragma description Summary of the changes and new features merged in the Linux kernel during the development cycle Linux 6.10 [[https://lore.kernel.org/lkml/CAHk-=wjV_O2g_K19McjGKrxFxMFDqex+fyGcKc3uac1ft_O2gg@mail.gmail.com/T/#u|has been released]] on Sunday, 14 Jul 2024 Summary: This release includes the new mseal(2) system call to protect memory from unwanted modificatiosn; NT synchronization primitives that allow better compatibility and performance with Windows; a memory profiler for the kernel; support for integrity and security to TPM2 transactions; multi-size THP numa balancing; posted interrupts for faster high-end virtualization; zone write plugging for faster IO with zoned devices; and faster io_uring send zerocopy performance. As always, there are many other features, new drivers, improvements and fixes. <> = Prominent features = == mseal(2) to protect memory from unwanted modificatinos == The `mseal(2)` system call protects a given virtual memory range against modifications, such as changes to their permission. This system call improves the security stance on memory corruption bugs, as an attacker cannot simply write to arbitrary memory and point the code to it. Documentation: [[https://www.kernel.org/doc/html/latest/userspace-api/mseal.html|Introduction of mseal]] Recommended LWN article: [[https://lwn.net/Articles/958438/|mseal() gets closer]] == memprofiling, a memory profiler for the kernel == This release includes a profiling infrastructure that provides a low overhead mechanism to make all kernel allocations in the system visible. It can be used to monitor memory usage, track memory hotspots, detect memory leaks, identify memory regressions. Not just for debug kernels, overhead is low enough to be deployed in production. Documentation: [[https://www.kernel.org/doc/html/latest/mm/allocation-profiling.html|Memory allocation profiling]] == NT synchronization primitives, for better compatibility with Windows == This release introduces a new optional char misc driver, {{{/dev/ntsync}}}, which is used to implement Windows NT synchronization primitives that are too expensive to implement in top of other existing Linux primitives. This is expected to be used by Wine to significantly speed up lots of applications like games. Recommended LWN article: [[https://lwn.net/Articles/961884/|Windows NT synchronization primitives for Linux]] == Add integrity and security to TPM2 transactions == The interest in securing the TPM against interposers, both active and passive has risen to fever pitch with the demonstration of key recovery against windows bitlocker, and subsequently the same attack being successful against all the Linux TPM based security solutions. This release adds support for TPM bus encryption and integrity protection. The key pair on TPM side is generated from so called null random seed per power on of the machine. This supports the TPM encryption of the hard drive by adding layer of protection against bus interposer attacks. Documentation: [[https://www.kernel.org/doc/html/latest/security/tpm/tpm-security.html|TPM Security]] == Multi-size THP numa balancing == The anonymous page allocation already supported multi-size transparent huge pages (mTHP) but the numa balancing still prohibits mTHP migration even though it is an exclusive mapping, which is unreasonable. This release supports mTHP numa balancing. The NUMA balancing algorithm for mTHP will follow the THP strategy as the basic support == Posted interrupts for faster high-end virtualization == This release adds support for posted interrupts, a virtualization feature which allows to inject interrupts directly into a guest without host interaction. This is only relevant for high end servers with multiple device queues per CPU attached where multiple devices, e.g. NVME storage, raise interrupts with a high frequency. In the default mode these interrupts are handles independently and therefore require a full roundtrip of interrupt entry/exit; utilizing posted interrupts this roundtrip overhead can be avoided by coalescing these interrupt entries to a single entry for the posted interrupt notification. == Zone write plugging for faster IO with zoned devices == This release introduces zone write plugging (ZWP) as the new mechanism to control the ordering of writes to zoned block devices. ZWP replaces zone write locking (ZWL) which was implemented only by mq-deadline. ZWP also allows emulating zone append operations using regular writes for zoned devices that do not natively support this operation (e.g. SMR HDDs). This significantly speeds up some operations on Zoned storage devices == Faster io_uring send zerocopy performance == This release greatly improves send zerocopy performance in io_uring, by enabling coalescing of sent buffers. MSG_ZEROCOPY already does this with send(2) and sendmsg(2), but the io_uring side did not. In local testing, the crossover point for send zerocopy being faster is now around 3000 byte packets, and it performs better than the sync syscall variants as well. = Core (various) = * vfs: relax linkat() AT_EMPTY_PATH - aka flink() - requirements [[https://git.kernel.org/linus/42bd2af5950456d46fdaa91c3a8fb02e680f19f5|commit]] * statx: stx_subvol [[https://git.kernel.org/linus/2a82bb02941fb53d1f8df2a360e7798ae3d9d962|commit]] * sysrq: Add support to replay kernel log on consoles via sysrq [[https://git.kernel.org/linus/1b743485e27f3d874695434cc8103f557dfdf4b9|commit]], [[https://git.kernel.org/linus/693f75b91a9171e99f84fc193e39f48e21ba4a4f|commit]] * fcntl: To let userspace know whether two file descriptors refer to the same struct file [[https://git.kernel.org/linus/c62b758bae6af16fee94f556091fa74883a96b1e|commit]] * task scheduler * fair: allow disabling sched_balance_newidle with sched_relax_domain_level [[https://git.kernel.org/linus/0f1c74befa656305ecc85c954dc31f84c1cc26e1|commit]], [[https://git.kernel.org/linus/287372fa39f579a61e17b000aa74c8418d230528|commit]], [[https://git.kernel.org/linus/a1fd0b9d751f840df23ef0e75b691fc00cfd4743|commit]] * debug: Increase SCHEDSTAT_VERSION to 16 [[https://git.kernel.org/linus/11b0bfa5d463b17cac5bf6b94fea4921713530c3|commit]] * io_uring * Accept tweaks [[https://git.kernel.org/linus/d3da8e98592693811c14c31f05380f378411fea1|commit]], [[https://git.kernel.org/linus/7dcc758cca432510f77b2fe1077be2314bc3785b|commit]] * Propagate back queue status on accept [[https://git.kernel.org/linus/ac287da2e0ea5be2523222981efec86f0ca977cd|commit]], [[https://git.kernel.org/linus/7951e36ac620a9ba1bae0ac0ddd62d2e82285725|commit]], [[https://git.kernel.org/linus/0645fbe760afcc5332c858d1cbf416bf77ef3c29|commit]], [[https://git.kernel.org/linus/92ef0fd55ac80dfc2e4654edfe5d1ddfa6e070fe|commit]] * Support to inject result for NOP [[https://git.kernel.org/linus/deb1e496a83557896fe0cca0b8af01c2a97c0dc6|commit]], [[https://git.kernel.org/linus/3d8f874bd620ce03f75a5512847586828ab86544|commit]] * Implement io_uring notification (ubuf_info) stacking [[https://git.kernel.org/linus/6fe4220912d19152a26ce19713ab232f4263018d|commit]], [[https://git.kernel.org/linus/5a569469b973cb7a6c58192a37dfb8418686e518|commit]], [[https://git.kernel.org/linus/65bada80dec1f2108a751644773b2120bd789934|commit]], [[https://git.kernel.org/linus/7ab4f16f9e2440e797eae88812f800458e5879d2|commit]] * Improve async state handling [[https://git.kernel.org/linus/4a3223f7bfda14c532856152b12aace525cf8079|commit]], [[https://git.kernel.org/linus/f5b00ab2221a26202da7d10542a98203075bfdf8|commit]], [[https://git.kernel.org/linus/790b68b32a678b65b161861f83b2b782b6b9246b|commit]], [[https://git.kernel.org/linus/3ba8345aec886a3a01331e944a6a8568bf94bd10|commit]], [[https://git.kernel.org/linus/c6f32c7d9e09bf1368447e9a29e869193ecbb756|commit]], [[https://git.kernel.org/linus/50220d6ac8ff31eb065fba818e960f549fb89d4d|commit]], [[https://git.kernel.org/linus/6498c5c97ce73770ed227eb52b14d21c8343fd5b|commit]], [[https://git.kernel.org/linus/9f8539fe299c250af42325eccff66e8b8d1f15da|commit]], [[https://git.kernel.org/linus/75191341785eef51f87ff54b0ed9dfbd5a72e7c2|commit]], [[https://git.kernel.org/linus/d80f940701302e84d1398ecb103083468b566a69|commit]], [[https://git.kernel.org/linus/a9165b83c1937eeed1f0c731468216d6371d647f|commit]], [[https://git.kernel.org/linus/0d10bd77a1be0742a12e1bcf0554a4bcbdbc0f35|commit]], [[https://git.kernel.org/linus/cca6571381a0bdc88021a1f7a4c2349df21279f7|commit]], [[https://git.kernel.org/linus/d6f911a6b22f8e48aec82cd5f6b5a14dc76a56c3|commit]], [[https://git.kernel.org/linus/e2ea5a7069133c01fe3dbda95d77af7f193a1a52|commit]], [[https://git.kernel.org/linus/d10f19dff56eac5ae44dc270336b18071a8bd51c|commit]], [[https://git.kernel.org/linus/5eff57fa9f3aae3acbcaf196af507eec58955f3b|commit]], [[https://git.kernel.org/linus/e10677a8f6980dbae2e866b8320d90bae07e87ee|commit]], [[https://git.kernel.org/linus/414d0f45c316221acbf066658afdbae5b354a5cc|commit]] * (FEATURED) Send and receive bundles [[https://git.kernel.org/linus/3e747dedd47b6250390abfc08dc0aa4817d3c052|commit]], [[https://git.kernel.org/linus/ac5f71a3d9d7eb540f6bf7e794eb4a3e4c3f11dd|commit]], [[https://git.kernel.org/linus/35c8711c8fc4c16ad2749b8314da5829a493e28e|commit]], [[https://git.kernel.org/linus/a05d1f625c7aa681d8816bc0f10089289ad07aad|commit]], [[https://git.kernel.org/linus/2f9c9515bdfde9e4df1f35782284074d3625ff8a|commit]] * timekeeping: Handle potential multiplication overflow [[https://git.kernel.org/linus/e8e9d21a5df655a62ab4611fd437fb7510d2f85c|commit]], [[https://git.kernel.org/linus/3094c6db1cba0bbca6ea19c777762c26fee747d7|commit]], [[https://git.kernel.org/linus/d0304569fb019d1bcfbbbce1ce6df6b96f04079b|commit]], [[https://git.kernel.org/linus/fb82fe2fe8588745edd73aa3a6229facac5c1e15|commit]], [[https://git.kernel.org/linus/456e3788bc7164c1c8298045e04068b8e3d8e413|commit]], [[https://git.kernel.org/linus/5b26ef660a690e424d9548fdf0565d4172d5d88f|commit]], [[https://git.kernel.org/linus/9af4548e828aa2ea66f54433c5747f64124a6240|commit]], [[https://git.kernel.org/linus/e809a80aa0bcf802f99407c23fd6be6fd4eb250a|commit]], [[https://git.kernel.org/linus/670be12ba8f5d20ee2fb0531be6977005cd62401|commit]], [[https://git.kernel.org/linus/e84f43e34faf85816587f80594541ec978449d6e|commit]], [[https://git.kernel.org/linus/0c68458b0a5878d735572b4f4d91219a1db7c784|commit]], [[https://git.kernel.org/linus/a729a63c6b2ebd8bc37646519d404f005ea8f1b2|commit]], [[https://git.kernel.org/linus/c8e3a8b6f2e62661d838ae222774121ae23777a4|commit]], [[https://git.kernel.org/linus/1beb35ec615f676d49d68b6dc23c7418ba8ff145|commit]], [[https://git.kernel.org/linus/135225a363ae67bc90bde7a2cbbe1ea0f152ba22|commit]], [[https://git.kernel.org/linus/e98ab3d4159e6bab4e391f376a1e548dd4d32524|commit]] * workqueues: implement disable/enable_work() and the delayed_work counterparts to block future executions [[https://git.kernel.org/linus/f09b10b6f442656524d2ee26e45966401a14f54b|commit]], [[https://git.kernel.org/linus/7245d24f874d781cf3f1530e6d24e1e0eba4269a|commit]], [[https://git.kernel.org/linus/c5f5b9422a49e9bc1c2f992135592ed921ac18e5|commit]], [[https://git.kernel.org/linus/e9a8e01f9b133c145dd125021ec47c006d108af4|commit]], [[https://git.kernel.org/linus/d355001fa9370df8fdd6fca0e9ed77063615c7da|commit]], [[https://git.kernel.org/linus/1211f3b21c2aa0d22d8d7f050e3a5930a91cd0e4|commit]], [[https://git.kernel.org/linus/134874e2eee9380c2700411d4844cbc29297bc01|commit]], [[https://git.kernel.org/linus/86898fa6b8cd942505860556f3a0bf52eae57fe8|commit]], [[https://git.kernel.org/linus/456a78eef2670d0e9521e87f35a056de8fec7fb2|commit]], [[https://git.kernel.org/linus/c5140688d19a4579f7b01e6ca4b6e5f5d23d3d4d|commit]], [[https://git.kernel.org/linus/bccdc1faafaf32e00d6e4dddca1ded64e3272189|commit]], [[https://git.kernel.org/linus/7cf4783b31607ad13b84bed14ea2ca446364985a|commit]], [[https://git.kernel.org/linus/978b8409eab15aa733ae3a79c9b5158d34cd3fb7|commit]], [[https://git.kernel.org/linus/cdc6e4b329bc82676886a758a940b2b6987c2109|commit]], [[https://git.kernel.org/linus/afe928c1dc611bec155d834020e0631e026aeb8a|commit]] * xarray: inline xas_descend to improve performance [[https://git.kernel.org/linus/ba591801a3df861b3b327f6122b9de4ef213aae6|commit]] * tools/nolibc: add support for uname(2) [[https://git.kernel.org/linus/0adab2b6b7336fb6ee3c6456a432dad3b1d25647|commit]] * Rust * 1.78.0 upgrade [[https://git.kernel.org/linus/56f64b370612d8967df2c2e0cead805444d4e71a|commit]], [[https://git.kernel.org/linus/00280272a0e5d98055e4d47db38a9b4b5517520e|commit]], [[https://git.kernel.org/linus/7c81aa85eee536f36ad79339bbbc7528a49d30fe|commit]] * time: Add Ktime [[https://git.kernel.org/linus/48b7f4d29ac8fcdc35a97ce38e4aecdee83b0e3f|commit]] * Arc methods for linked list [[https://git.kernel.org/linus/a0a4e17013f68739733028bba89673cdbb9caabd|commit]], [[https://git.kernel.org/linus/51f6af86de35bfd12a005caf457f2ec834193de8|commit]] * Allocation APIs [[https://git.kernel.org/linus/26f09e9b3a0696f6fe20b021901300fba26fb579|commit]], [[https://git.kernel.org/linus/08d3f54928796557fc832467ad54f04908fc14e4|commit]], [[https://git.kernel.org/linus/5ab560ce12ed0df3450968cfe4211e398ff2a8d7|commit]], [[https://git.kernel.org/linus/03989773a94490383b062912feb0c4d175f20845|commit]], [[https://git.kernel.org/linus/11795ae4cc430192fb9aee2c1142e313cbce3ec5|commit]], [[https://git.kernel.org/linus/2c1092853f163762ef0aabc551a630ef233e1be3|commit]], [[https://git.kernel.org/linus/31d94d8f586df55e7dce47a67a8428f46d09f906|commit]], [[https://git.kernel.org/linus/cc41670e06383c08f3afdd7a19b782d03ae4d63a|commit]], [[https://git.kernel.org/linus/b6a006e21b822d1dd262fa249ff71a2991e7b319|commit]], [[https://git.kernel.org/linus/9d0441bab775d2daa51370909b8648e27d0eb47d|commit]], [[https://git.kernel.org/linus/c34aa00d1d7dd482dc48660ad594cb693334de2d|commit]] * Add `Module::as_ptr` [[https://git.kernel.org/linus/d0f0241d8d8b71b3f5fdf0592e6e6b0e44d5d5c0|commit]] * rtla usage improvements [[https://git.kernel.org/linus/cdbf71962bb07493d67fee34536a5724a8bb5886|commit]], [[https://git.kernel.org/linus/fb9e90a67ee9a42779a8ea296a4cf7734258b27d|commit]], [[https://git.kernel.org/linus/a40e5e4dd0207485dee75e2b8e860d5853bcc5f7|commit]], [[https://git.kernel.org/linus/f5c0cdad6684aa4212346f48554636ec2ab98434|commit]], [[https://git.kernel.org/linus/5f0769331a965675cdfec97c09f3f6e875d7c246|commit]], [[https://git.kernel.org/linus/e9a4062e1527238c5649d0f4be794a8566fd77c9|commit]], [[https://git.kernel.org/linus/1462501c7a8d565f5949d3d5635b2111d889aaaa|commit]], [[https://git.kernel.org/linus/285dcb7665ae83d07f194a517ba290f02d4f5f73|commit]] * rtla: Add --trace-buffer-size option [[https://git.kernel.org/linus/e9a4062e1527238c5649d0f4be794a8566fd77c9|commit]] * ring-buffer: Have mmapped ring buffer keep track of missed events [[https://git.kernel.org/linus/fe832be05a8eee5f1488cbcc2c562dd82d079fd6|commit]] * RCU: Reduce synchronize_rcu() latency [[https://git.kernel.org/linus/0fd210baa07a9e3f15df1bc687293eafb119283a|commit]], [[https://git.kernel.org/linus/dfd458a95d78ce31855fe06bbfde4f4fe60c40db|commit]], [[https://git.kernel.org/linus/2053937a310a3982de9d33af3db2dbd2b32b66e4|commit]], [[https://git.kernel.org/linus/462df2f543ae360e79fcaa1b498d2a1a0c2a5b63|commit]], [[https://git.kernel.org/linus/988f569ae041ccc93a79d98d1b0043dff4d7e9b7|commit]] * (FEATURED) NT synchronization primitive driver [[https://git.kernel.org/linus/25b9cadb1ee3434b92de9096d4a2ae91820146bf|commit]], [[https://git.kernel.org/linus/dc806bd48abc1b8a4ae72709a37e65db42a32048|commit]], [[https://git.kernel.org/linus/b46271ec40a05580d55f917c9ac52cb93553160a|commit]] * lib: add version into /proc/allocinfo output [[https://git.kernel.org/linus/a38568a0b46d4a0dbe48f4642cbe2f885c525643|commit]] * coredump: Enable dynamic configuration of max file note size [[https://git.kernel.org/linus/4bbf9c3b53e637eb3a14ee27b996300ce88e752a|commit]] * kbuild: enable some -Wextra warnings by default [[https://git.kernel.org/linus/9fdd02aa59886300b60e1cc0a4af3653796d9bd8|commit]], [[https://git.kernel.org/linus/7789bf05529889a39bcf4cd17a68521de063b88b|commit]], [[https://git.kernel.org/linus/2c1460d3b49aa3a05c50dcc371a67b559fc68ac7|commit]], [[https://git.kernel.org/linus/06bb7fc0feee32d95abc51c3226f598f30eaa261|commit]], [[https://git.kernel.org/linus/f5982cceb34700d15974bc38d667e280902da6d0|commit]], [[https://git.kernel.org/linus/52f80bb181a9a1530ade30bc18991900bbb9697f|commit]], [[https://git.kernel.org/linus/c40845e3195d074b34f8f8e400e28c9403a06588|commit]], [[https://git.kernel.org/linus/fe0b1e9a73d60f01fdc391925be74e823af7c91d|commit]], [[https://git.kernel.org/linus/cf770af5645a41a753c55a053fa1237105b0964a|commit]], [[https://git.kernel.org/linus/908dd508276da13a9b50c208577365d26692eb43|commit]], [[https://git.kernel.org/linus/bd2a70e97a11b0f63a2027e1c376a18c0496908d|commit]] * IOMMU memory observability [[https://git.kernel.org/linus/212c5c078d83d780cf2873ca931df135771e8bb7|commit]], [[https://git.kernel.org/linus/75114cbaa136fc50de3a339c85124b20466a7c46|commit]], [[https://git.kernel.org/linus/95b18ef9c69157ded5ece1136377cf8123b597f0|commit]], [[https://git.kernel.org/linus/06c375053cefc3a2f383d200596abe5ab3fb35f9|commit]], [[https://git.kernel.org/linus/bd3520a93a84cd8c3897283e5891a9106fcf5acc|commit]] * Detect interrupt storm in softlockup [[https://git.kernel.org/linus/e9a9292e2368e9be4a48aae6ff8aafa3433133e6|commit]], [[https://git.kernel.org/linus/d7037381d00286aa4beb631c401da761ee564c94|commit]], [[https://git.kernel.org/linus/25a4a015118037809c97d089d69e927737e589e1|commit]], [[https://git.kernel.org/linus/99cf63c56661be0a0c42f79b56f37a4aa34b4779|commit]], [[https://git.kernel.org/linus/86d2a2f51fbada84e377665df06b5a479a1edc99|commit]] * Fixes and cleanups to fs-writeback [[https://git.kernel.org/linus/0cfe4bdfb85256488bff2ec420d1c23a10ec3550|commit]], [[https://git.kernel.org/linus/6a1ee87176ffed1d9e749bc66a2ad85be2d7dbb7|commit]], [[https://git.kernel.org/linus/d92109891f21cf367caa2cc6dff11a4411d917f4|commit]], [[https://git.kernel.org/linus/2ddc93461214507b8e50ba7218d6260be8d623d1|commit]], [[https://git.kernel.org/linus/ac0c18f2c693f0e7a44dbbb36b14d5141e5d20e5|commit]], [[https://git.kernel.org/linus/ba679de9c3fc511f457ea0ad8f5a22e9152fa07b|commit]], [[https://git.kernel.org/linus/639924abc1ae28eb05893a402081e8e6cff23b8a|commit]] * modules: jit/text allocator [[https://git.kernel.org/linus/14e56fb2ed1dbc3c3171d12ab435b0f691f6f215|commit]], [[https://git.kernel.org/linus/7582b7be16d0ba90e3dbd9575a730cabd9eb852a|commit]], [[https://git.kernel.org/linus/12af2b83d0b17ec8b379b721dd4a8fbcd5d791f3|commit]], [[https://git.kernel.org/linus/f6bec26c0a7364d3506a3e12dab7c228ef32bd65|commit]], [[https://git.kernel.org/linus/0cdf5876c4b251eaa2b8c43cfe7bfaa8d8dcea2c|commit]], [[https://git.kernel.org/linus/1b750c2fbf82fd704255d1975db39d9b429922f0|commit]], [[https://git.kernel.org/linus/2c9e5d4a008293407836d29d35dfd4353615bd2f|commit]], [[https://git.kernel.org/linus/0cc2dc4902f425e346d46deeea2352d9fba75375|commit]], [[https://git.kernel.org/linus/0a956d52e6fc31c52e5f21a134659a28e958480d|commit]], [[https://git.kernel.org/linus/38762155fdda3af2cfca371b555a72187259acfd|commit]], [[https://git.kernel.org/linus/e2effa2235d9c7d0e9410637a2602bc69ee4f800|commit]], [[https://git.kernel.org/linus/00be875879fa676a18415e32f98194db05ee93dc|commit]], [[https://git.kernel.org/linus/223b5e57d0d50b0c07b933350dbcde92018d3080|commit]], [[https://git.kernel.org/linus/bc6b94d3ea062454ca889884db99e145efffcb93|commit]], [[https://git.kernel.org/linus/e8dbc6a87580d00a4746fbe1e7167e988d3061bc|commit]], [[https://git.kernel.org/linus/4d7b321a9ce0782a953874ec69acc2b12b9cb2cd|commit]] * Unified cross-architecture kernel-mode FPU API [[https://git.kernel.org/linus/a28e4b672f042eb38d9b09f9d1fdf58c07052da4|commit]], [[https://git.kernel.org/linus/eb4a6de4962ecacb5717a45057efc60bb2eca892|commit]], [[https://git.kernel.org/linus/77acc6b55ae46f52bfa4eca52c9fe627f5c3ba3f|commit]], [[https://git.kernel.org/linus/cb2b7b7de805cd649851fb8f2f36df3b8425682e|commit]], [[https://git.kernel.org/linus/06a990b6e0f58ad8bf2f1b5ee17b7e6106b764f1|commit]], [[https://git.kernel.org/linus/9613736d852dce2376a848e6e9af091c422a947e|commit]], [[https://git.kernel.org/linus/c41624315b602da32f59e70baa825c5f11fea892|commit]], [[https://git.kernel.org/linus/6cbd1d6d36c5d8312de99d1dfa3bec40ac840ce0|commit]], [[https://git.kernel.org/linus/b11b998e983119e27b33210a0128b27df6ae5f78|commit]] = File systems = * BTRFS * Add a shrinker for extent maps [[https://git.kernel.org/linus/5fa8a6baff817c1b427aa7a8bfc1482043be6d58|commit]], [[https://git.kernel.org/linus/f1d97e76915285013037c487d9513ab763005286|commit]], [[https://git.kernel.org/linus/002f3a2ce8b07d03aa46ed977ca86cdb30f3d668|commit]], [[https://git.kernel.org/linus/c2fbd812d749757c5abc6f995a7741da0653a4f4|commit]], [[https://git.kernel.org/linus/0d89a15e1a0dcc861481ee696ec332c998140510|commit]], [[https://git.kernel.org/linus/6c566def955cab6ae420d1c901674b8254d9d480|commit]], [[https://git.kernel.org/linus/956a17d9d050761e34ae6f2624e9c1ce456de204|commit]], [[https://git.kernel.org/linus/e778724a5ef04e7144cb766a6904bdbe842695ee|commit]], [[https://git.kernel.org/linus/6a3a9113ae1dbed188f0481815dcc94846a7b2e7|commit]], [[https://git.kernel.org/linus/65bb9fb00b7012a78b2f5d1cd042bf098900c5d3|commit]] * Restrain lock extent usage during writeback [[https://git.kernel.org/linus/0ab540995ae049f1536260b0f6124483e685b593|commit]], [[https://git.kernel.org/linus/d456c25dbb2385fa081e615793c797cbcd412724|commit]], [[https://git.kernel.org/linus/6b0a63a4fa3142d1cb0069b9c7bf02270412d96f|commit]], [[https://git.kernel.org/linus/c0707c9e1e36d56cef7b3c8de5c5fdcb14f34aa5|commit]], [[https://git.kernel.org/linus/7c9acd440f4d1124122639928ac4ff69082bbd3a|commit]], [[https://git.kernel.org/linus/6eecfa22403e2c322a91f7654ade7f126adc55c2|commit]], [[https://git.kernel.org/linus/00009d7bcb0ccc4479e1178790751e95cb36d7c4|commit]], [[https://git.kernel.org/linus/8325f41a564acf39f1251c0423e97eb73c85a56f|commit]], [[https://git.kernel.org/linus/a0766d8f35d8c7b3df319ccfd6e85b4a07c1f0bd|commit]], [[https://git.kernel.org/linus/cd241a8f554c258e92a694f6aa07e90b89ddebe6|commit]], [[https://git.kernel.org/linus/0332967b4d657754c914b2a1951ae2d4ed3d99bd|commit]], [[https://git.kernel.org/linus/0e128d4e41735b37d9450b4e622b427189afb191|commit]], [[https://git.kernel.org/linus/aa5ccf29173acfaa8aa2fdd1421aa6aca1a50cf2|commit]], [[https://git.kernel.org/linus/0ed30c17f699d5df73c445999b0114c5859d1145|commit]], [[https://git.kernel.org/linus/7034674b8a070361b3149fdae377f5b80d5f860f|commit]], [[https://git.kernel.org/linus/0586d0a89e77d717da14df42648ace4a9fd67981|commit]], [[https://git.kernel.org/linus/aa56b0aa91692c51142c3c7e4ab7665e84f792f5|commit]] * Speedup NOCOW write path (throughput +9% on a sample test) [[https://git.kernel.org/linus/236e3107fc807d38a62691b3e276d7a190a67953|commit]], [[https://git.kernel.org/linus/afcb80624f5bc2fd2f40dc8a7f4fc2198a68e40f|commit]], [[https://git.kernel.org/linus/c0dce8b6a3b257b8492260f2ea41b7056b795295|commit]], [[https://git.kernel.org/linus/d800a9065b1e44e1cceb05990e7ebe73284b5f6d|commit]], [[https://git.kernel.org/linus/8d2a83a97f1c86d23161b4d2e37e1b2c5220710a|commit]], [[https://git.kernel.org/linus/fb90e1caf00d0797d355c8f15d004e41edf22e96|commit]] * Inline b-tree locking functions, improvement in metadata-heavy workloads [[https://git.kernel.org/linus/f40ca9cb581009f92f35351acf0129165c3729ee|commit]] * compression: migrate to folio interfaces [[https://git.kernel.org/linus/400b172b8cdcff87038697169fe9e4222120dd9a|commit]], [[https://git.kernel.org/linus/98fe01af7ebe44bcc11afe4b4d681e27b959adb4|commit]], [[https://git.kernel.org/linus/6de3595473b0bae11102ef6db40e6f2334f13ed2|commit]], [[https://git.kernel.org/linus/11e03f2f4b79eac2176d8ae5120bc9857e7fbb29|commit]], [[https://git.kernel.org/linus/ae0d22a7fcb63863742c58be11b9e75ce2cbc9f5|commit]] * Convert put_file_data() to folios [[https://git.kernel.org/linus/01b69bf9906bf5bbea79c5427e318a836d5d14e3|commit]] * F2FS * Assign the write hint per stream by default [[https://git.kernel.org/linus/7643f3fe27729b20e6fcf6b314b00b8b93504356|commit]] * Support to map continuous holes or preallocated address [[https://git.kernel.org/linus/9f0f6bf4271488b3d3a290ba119a0e0a08df2cc6|commit]], [[https://git.kernel.org/linus/ac7805be6cffd5a16f86872c4e56c28a1433b222|commit]] * Use folios [[https://git.kernel.org/linus/92f750d847c997ff4b0f04d83443af00fb729ba3|commit]], [[https://git.kernel.org/linus/96ea46f30b2657375fc7695f78ddb2cb50413509|commit]], [[https://git.kernel.org/linus/ed54eed355675f79d9322c07d92f38037fc6b514|commit]], [[https://git.kernel.org/linus/db92e6c729d87e6f5b0f467f01a96dbf1e452106|commit]] * NFS * Add atomic_open for NFSv3 to handle O_TRUNC correctly [[https://git.kernel.org/linus/7c6c5249f061b64fc6b5b90bc147169a048691bf|commit]] * Don't enable NFS v2 by default [[https://git.kernel.org/linus/d1404e46ae4688c74e7504195f4fe253bcce1522|commit]] * Trivial GET_DIR_DELEGATION support [[https://git.kernel.org/linus/33a1e6ea73e5f1defe6706f006c0930a82ebdaaa|commit]] * Force all NFSv4.2 COPY requests to be synchronous [[https://git.kernel.org/linus/8d915bbf39266bb66082c1e4980e123883f19830|commit]] * Expand the implementation of OFFLOAD_STATUS [[https://git.kernel.org/linus/cc63c21682a51e24338baf30424b2987e05a556a|commit]], [[https://git.kernel.org/linus/a8483b9ad92c9d07122efe8697f0f42f6c41d1b1|commit]] * Convert write_threads, write_version and write_ports to netlink commands [[https://git.kernel.org/linus/cf619507ae8d30b5735e9356d85a8df2bcf2b6ca|commit]], [[https://git.kernel.org/linus/16a471177496c8e04a9793812c187a2c1a2192fa|commit]], [[https://git.kernel.org/linus/9077d59847896745712dff00839eac14f84b21f8|commit]], [[https://git.kernel.org/linus/924f4fb003ba114c60b3c07a011dcd86a8956cd1|commit]], [[https://git.kernel.org/linus/0842b4c80bc7162a803b1558dc6d887e0e8feb39|commit]], [[https://git.kernel.org/linus/a79ec2aecb1b3d9c59241a6155a5554b236de9b7|commit]], [[https://git.kernel.org/linus/5a939bea25be9793d9aa5d8494df667dfe625e6b|commit]] * XFS * Atomic file content exchanges. A new XFS_IOC_EXCHANGE_RANGE ioctl is added to exchange ranges of bytes between two files atomically [[https://git.kernel.org/linus/5b9932f6001c70b984e8c9c2fe09e443beb4baba|commit]], [[https://git.kernel.org/linus/9a64d9b3109d01cca0b83c1d36538b7a37c5284e|commit]], [[https://git.kernel.org/linus/1518646eef26c220e9256906260ecaaa64503522|commit]], [[https://git.kernel.org/linus/6c08f434bd33f88cf169e9e43c7a5e42fb3f2118|commit]], [[https://git.kernel.org/linus/966ceafc7a437105ecfe1cadb3747b2965a260ca|commit]], [[https://git.kernel.org/linus/42672471f938cdab2573f32ce23915b78f0578f4|commit]], [[https://git.kernel.org/linus/5fd022ec7d420dfca1eaaf997923a5d4dd0dcf62|commit]], [[https://git.kernel.org/linus/497d7a2608f8b7329e92bdaaf745ca127a582ad9|commit]], [[https://git.kernel.org/linus/da165fbde23b84591b6ccdf6749277d2d767b770|commit]], [[https://git.kernel.org/linus/33a9be2b7016e79f47c4c1b523a0aa59d41893c0|commit]], [[https://git.kernel.org/linus/e62941103faa2eedba6a155316e059a490c743a6|commit]], [[https://git.kernel.org/linus/b3e60f84838d5abc3a73d7ef0fc595dd1041c565|commit]], [[https://git.kernel.org/linus/14f19991020b3c712d626727c17599f134cc6efa|commit]], [[https://git.kernel.org/linus/f783529bee39c3fa1451728007eb4890a94f2638|commit]], [[https://git.kernel.org/linus/0730e8d8ba1d1507f1d7fd719e1f835ce69961fe|commit]] * Add Parent Pointers attributes to each inode. The attribute name containing the parent inode, generation, and directory offset, while the attribute value contains the file name. This feature will enable future optimizations for online scrub, shrink, nfs handles, verity, or any other feature that could make use of quickly deriving an inodes path from the mount point [[https://git.kernel.org/linus/63211876ced33fbb730f515e8d830de53533fc82|commit]], [[https://git.kernel.org/linus/f49af061f49c004fb6df7f791f39f9ed370f767b|commit]], [[https://git.kernel.org/linus/9713dc88773d066413ae23aa474b13241507a89e|commit]], [[https://git.kernel.org/linus/a64e0134754bf88021e937aa34f1fbb5b524e585|commit]], [[https://git.kernel.org/linus/98493ff878859eb0adefbc57a49ad47a92dfd252|commit]], [[https://git.kernel.org/linus/8337d58ab2868f231a29824cd86d2e309bd36fa9|commit]], [[https://git.kernel.org/linus/f041455eb5773eda3291903ad6d1f33d4798e9a2|commit]], [[https://git.kernel.org/linus/a918f5f2cd2c9d2bf94f485c5cebbf47fb0627df|commit]], [[https://git.kernel.org/linus/5773f7f82be5aa98e4883566072d33342814cebe|commit]], [[https://git.kernel.org/linus/ae673f534a30976ce5e709c4535a59c12b786ef3|commit]], [[https://git.kernel.org/linus/297da63379c6cba504a33aa7c526f36b148d4610|commit]], [[https://git.kernel.org/linus/a08d6729637428b6ef8c6a5a94d8c6db7b805a44|commit]], [[https://git.kernel.org/linus/7dba4a5fe1c5cdf0859830380c52f29295cbf345|commit]], [[https://git.kernel.org/linus/fb102fe7fe02e70f8a49cc7f74bc0769cdab2912|commit]], [[https://git.kernel.org/linus/b7c62d90c12c6cc86f10b8a62cefe0029374b6ff|commit]], [[https://git.kernel.org/linus/f1097be220fa938de5114db57a1ddb5de2bf6046|commit]], [[https://git.kernel.org/linus/5d31a85dcc1fa4c5d4a925c6da67751653a700ba|commit]], [[https://git.kernel.org/linus/d2d18330f63cd70b50eddac76de7c59a36f2faa7|commit]], [[https://git.kernel.org/linus/5a8338c88284df4e9e697225aa65f2709333a659|commit]], [[https://git.kernel.org/linus/1c12949e50e191933c08758ae53e31b852e730d6|commit]], [[https://git.kernel.org/linus/daf9f884906bcfcffe26967aee9ece893fba019b|commit]], [[https://git.kernel.org/linus/8f4b980ee67fe53a77b70b1fdd8e15f2fe37180c|commit]], [[https://git.kernel.org/linus/af69d852dfe62b925d0df401eafad40698c889c6|commit]], [[https://git.kernel.org/linus/b8c9d4253da43c02b287831f7e576568f24fbe58|commit]], [[https://git.kernel.org/linus/233f4e12bbb2c5fb1588b857336a26e8bb6942af|commit]], [[https://git.kernel.org/linus/7dafb449b7922c1eec6fee3ed85b679d51f0f431|commit]], [[https://git.kernel.org/linus/5f98ec1cb5c264e4815e21d632ee0b3d6e700e3d|commit]], [[https://git.kernel.org/linus/7ea816ca4043c2bc6052f696b6aebe2c22980a03|commit]], [[https://git.kernel.org/linus/6ed858c7c678218aa8df9d9e75d5e9955c105415|commit]], [[https://git.kernel.org/linus/67ac7091e35bd34b75c0ec77331b53ca052e0cb3|commit]] * Scrubbing for parent pointers [[https://git.kernel.org/linus/61b3f0df5c235806d372aaf696ce9aee7746d18f|commit]], [[https://git.kernel.org/linus/b961c8bf1fc3d0232209a49f47d1cd7a55b7a861|commit]], [[https://git.kernel.org/linus/0d29a20fbdba89501bd2ac003faeee666c9a5008|commit]], [[https://git.kernel.org/linus/8ad345306d1eba337a3b88f9acbe762f9e770f76|commit]], [[https://git.kernel.org/linus/77ede5f44b0d86c2ec812442846f512884009766|commit]], [[https://git.kernel.org/linus/59a2af9086f0d60fc8de7346da67db7d764c7221|commit]], [[https://git.kernel.org/linus/e7420e75ef04787bc51688fc9bbca7da4d164a1e|commit]], [[https://git.kernel.org/linus/bf61c36a45d4c215994699a7a06a00c58d22e8a2|commit]], [[https://git.kernel.org/linus/086e934fe9c741f25a269ae74cc891eaf3f5c4e2|commit]] * Online repair for parent pointers [[https://git.kernel.org/linus/e7420e75ef04787bc51688fc9bbca7da4d164a1e|commit]], [[https://git.kernel.org/linus/bf61c36a45d4c215994699a7a06a00c58d22e8a2|commit]], [[https://git.kernel.org/linus/086e934fe9c741f25a269ae74cc891eaf3f5c4e2|commit]], [[https://git.kernel.org/linus/5769aa41ee34d4d1cc2b35376107b8e9694698f0|commit]], [[https://git.kernel.org/linus/76fc23b695f4717bb5e7b616eaad7d6213fdea9f|commit]], [[https://git.kernel.org/linus/8559b21a64d983315bdf1bd9f8dfdf732c56d057|commit]], [[https://git.kernel.org/linus/e5d7ce0364d8ee6821fd93814885c3bef775b9c3|commit]], [[https://git.kernel.org/linus/b334f7fab57a07fbece40648b4a22ab3f173bd48|commit]], [[https://git.kernel.org/linus/65a1fb7a11291f361d36e6ebf3bb5e60e9ca8d13|commit]], [[https://git.kernel.org/linus/13db7007892694c891fc37feccbd2ac8f227af78|commit]], [[https://git.kernel.org/linus/55edcd1f86474f973fccf5c5ccc8bc7908893142|commit]], [[https://git.kernel.org/linus/6efbbdeb140603351e1413aee79e789bf2279a2b|commit]], [[https://git.kernel.org/linus/a26dc21309af68623b82b4e366cbbeb5a85ce65b|commit]], [[https://git.kernel.org/linus/7be3d20bbeda6602d6c5f67ec2b8f189a07ea0e3|commit]], [[https://git.kernel.org/linus/3f50ddbf4b470f8566f99a83597da50180d937c0|commit]], [[https://git.kernel.org/linus/327ed702d84034879572812f580cb769848af7ae|commit]] * RT delalloc support [[https://git.kernel.org/linus/330c4f94b0d73e440de3f738a625e38defe1bc15|commit]], [[https://git.kernel.org/linus/b7e23c0e2e3b1c520a3370f058870b914071a470|commit]], [[https://git.kernel.org/linus/9871d0963751293bf0587759a9b6b8f808e35c7c|commit]], [[https://git.kernel.org/linus/de37dbd0ccc6933fbf4bd7b3ccbc5ac640e80b28|commit]], [[https://git.kernel.org/linus/5e1e4d4fc79c6e5f80864860208ceae27dead8a2|commit]], [[https://git.kernel.org/linus/f30f656e25eb72c4309e76b16fa45062e183a2ee|commit]], [[https://git.kernel.org/linus/dc1b17a25c321c8f1b4f90f9d6f8afb1d132b69c|commit]], [[https://git.kernel.org/linus/7e77d57a1fea5f6bfe166210385ba9f227a606d1|commit]], [[https://git.kernel.org/linus/7099bd0f243fa7511de6e95b0b8807ba7d3e5204|commit]], [[https://git.kernel.org/linus/727f8431638fdb5dc9ce9c81bdcc33fb416d45ee|commit]], [[https://git.kernel.org/linus/da2b9c3a8d2cbdeec3f13cebf4c6c86c13e1077e|commit]], [[https://git.kernel.org/linus/bd1753d8c42b6bd5d9a81c81d1ce6e3affe3a59f|commit]], [[https://git.kernel.org/linus/6a94b1acda7e7262418e23f906c12a2b08b69d12|commit]] * Vectorize scrub kernel calls [[https://git.kernel.org/linus/271557de7cbfdecb08e89ae1ca74647ceb57224f|commit]], [[https://git.kernel.org/linus/be7cf174e908b1f350dd3ae4fbdf335f22af3273|commit]], [[https://git.kernel.org/linus/c77b37584c2d1054452853e47e42c7350b8fe687|commit]], [[https://git.kernel.org/linus/b27ce0da60a523fc32e3795f96b2de5490642235|commit]], [[https://git.kernel.org/linus/4ad350ac58627bfe81f71f43f6738e36b4eb75c6|commit]] * Create temporary files for online repair [[https://git.kernel.org/linus/cab23a4233c601668da51dd53776f1f83d0dccee|commit]], [[https://git.kernel.org/linus/84c14ee39dd388d73054181c70b3f42af7ddc238|commit]], [[https://git.kernel.org/linus/20a3c1ecc35d2aa9ee1276e1cfd485689f29b662|commit]], [[https://git.kernel.org/linus/5befb047b9f4de1747bf48c63cab997a97e0088b|commit]] * Online repair of realtime summaries [[https://git.kernel.org/linus/e81ce4241318d5ec943b4fe205953498a66ca071|commit]], [[https://git.kernel.org/linus/56596d8bffd2f3c80d9844835e6c118d89b67ca9|commit]], [[https://git.kernel.org/linus/abf039e2e4afde98e448253f9a7ecc784a87924d|commit]] * Online repair of extended attributes [[https://git.kernel.org/linus/d2bd7eef4f217fc3e1ddf18b4f4eac848886bfa0|commit]], [[https://git.kernel.org/linus/629fdaf5f5b1b7f7107ed4de04e0991a99501ced|commit]], [[https://git.kernel.org/linus/e47dcf113ae348678143cc935a1183059c02c9ad|commit]], [[https://git.kernel.org/linus/0ee230dec2626ef25dc96abd47b84494f9c251e3|commit]], [[https://git.kernel.org/linus/40190f9f918aaf3355c8f777e6e658ea3bf77870|commit]] * Online repair of symbolic links [[https://git.kernel.org/linus/2651923d8d8db00a57665822f017fa7c76758044|commit]] * Move orphan files to lost and found [[https://git.kernel.org/linus/1e58a8ccf2597c9259a8e71a2bffac5e11e12ea0|commit]], [[https://git.kernel.org/linus/e6c9e75fbe792e1fb3bc7e7efce5c6bb015023c5|commit]], [[https://git.kernel.org/linus/73597e3e42b4a15030e6f93b71b53a04377ea419|commit]] * Online repair of directories [[https://git.kernel.org/linus/b1991ee3e7cf852e95a3498801303cfbb4468681|commit]], [[https://git.kernel.org/linus/a07b45576264e77ea1a781b552873e76b8b0dacc|commit]], [[https://git.kernel.org/linus/cc22edab9ea7f3ebcb61d41a417d4397e9b7b128|commit]], [[https://git.kernel.org/linus/34c9382c128270d0f4c8b36783b30f3c8085b2dd|commit]] * Detect and correct directory tree problems [[https://git.kernel.org/linus/928b721a11789a9363d6d7c32a1f3166a79f3b5f|commit]], [[https://git.kernel.org/linus/d54c5ac80f8f180eb064ca255d61a879aef6f06d|commit]], [[https://git.kernel.org/linus/37056912d5721324ac28787a4f903798f7361099|commit]], [[https://git.kernel.org/linus/3f31406aef493b3f19020909d29974e28253f91c|commit]] * SMB * netfs, cifs: Delegate high-level I/O to netfslib [[https://git.kernel.org/linus/742b3443e23104fc81edbeccfb993ae350aae981|commit]], [[https://git.kernel.org/linus/b593634424d4ff1319226eb0187c634b0b819224|commit]], [[https://git.kernel.org/linus/dc5939de82f149633d6ec1c403003538442ec9ef|commit]], [[https://git.kernel.org/linus/1a5b4edd97cee40922ca8bfb91008338d3a1de60|commit]], [[https://git.kernel.org/linus/753b67eb630db34e36ec4ae1e86c75e243ea4fc9|commit]], [[https://git.kernel.org/linus/69c3c023af25edb5433a2db824d3e7cc328f0183|commit]], [[https://git.kernel.org/linus/7c1ac89480e8d5d34d38a868642216c8f05ee602|commit]], [[https://git.kernel.org/linus/3ee1a1fc39819906f04d6c62c180e760cd3a689d|commit]], [[https://git.kernel.org/linus/2f99c0bce6d30851313c150369cabfd74e594a45|commit]], [[https://git.kernel.org/linus/a975a2f22cdce7ec0c678ce8d73d2f6616cb281c|commit]], [[https://git.kernel.org/linus/c20c0d7325abd9a8bf985a934591d75d514a3d4d|commit]], [[https://git.kernel.org/linus/40fb4828d5f6fc9dfe549e4fd8c9d705dea1315a|commit]], [[https://git.kernel.org/linus/3758c485f6c9124d8ad76b88382004cbc28a0892|commit]], [[https://git.kernel.org/linus/56257334e8e0075515aedc44044a5585dcf7f465|commit]], [[https://git.kernel.org/linus/ab58fbdeebc7f9fe8b9bc202660eae3a10e5e678|commit]], [[https://git.kernel.org/linus/edea94a69730b74a8867bbafe742c3fc4e580722|commit]] * CEPH * Check the cephx mds auth access in client side [[https://git.kernel.org/linus/d8fc89815f67db960d1684e1c89c36292a981250|commit]], [[https://git.kernel.org/linus/ded67830403710a60a4bb00136c0d21ca0cd7dc5|commit]], [[https://git.kernel.org/linus/2827badaf8162157271027ea6cc13056890f3e93|commit]], [[https://git.kernel.org/linus/845ae9d4926fa69d27e0912e4404d848d19c79a0|commit]] * EROFS * Zstandard compression support [[https://git.kernel.org/linus/7c35de4df1056a5a1fb4de042197b8f5b1033b61|commit]] * Add a reserved buffer pool for lz4 decompression [[https://git.kernel.org/linus/0f6273ab46375b62c8dd5c987ce7c15877602831|commit]] * EXT4 * Add support for FS_IOC_GETFSSYSFSPATH [[https://git.kernel.org/linus/fb092d407262eb4278f3d1ca24da54396a038c62|commit]] * FUSE * Add initial support for fs-verity [[https://git.kernel.org/linus/9fe2a036a23ceeac402c4fde8ec37c02ab25f133|commit]] * UDF * Convert UDF to folios [[https://git.kernel.org/linus/f5985ef281f9efff3e8291123fdb8a748b506951|commit]], [[https://git.kernel.org/linus/e29741676fac5d4430b3d2b799a5ff671ea9f023|commit]], [[https://git.kernel.org/linus/d08f069cc2dafddf81b23db2ead45539b12cd0c2|commit]], [[https://git.kernel.org/linus/db6754090a4f99c67e05ae6b87343ba6e013531f|commit]], [[https://git.kernel.org/linus/b591dfb8330e30da0dcc8f5466c6f18173cdab32|commit]], [[https://git.kernel.org/linus/2f1c1bd7b18768377ff4a84974d77e6e8b371a67|commit]], [[https://git.kernel.org/linus/d257d924a3fc6fe26594fba221c8be62f043b8d0|commit]] * OCFS2 * Improve write IO performance when fragmentation is high [[https://git.kernel.org/linus/1868f4aa5a4a72bbe0b7db6c1d4ee666824c3895|commit]], [[https://git.kernel.org/linus/525350221beb55bc6795595443d4cdeecb68ebec|commit]], [[https://git.kernel.org/linus/f51dac026f75863004ebfb7885cec98e6d3172bb|commit]], [[https://git.kernel.org/linus/4eb7b93e03101fd3f35e69affe566e4b1e3e3dca|commit]] * OPENPROMFS * Finish conversion to the new mount API [[https://git.kernel.org/linus/8f27829974b025d4df2e78894105d75e3bf349f0|commit]] * ISOFS * Convert isofs to use the new mount API [[https://git.kernel.org/linus/1b17a46c9243e9421ee1ac6d628604bbc4ae2201|commit]] * MINIX * Convert minix to use the new mount api [[https://git.kernel.org/linus/7cd7bfe59328741185ef6db3356489c22919e59b|commit]] * FREEVXFS * Convert freevxfs to the new mount API [[https://git.kernel.org/linus/b01e1a6359df16d432bfdfb31b04da78236f45b8|commit]] * OVERLAYFS * Implement tmpfile [[https://git.kernel.org/linus/9a87907de3597a339cc129229d1a20bc7365ea5f|commit]] * QNX6 * Convert qnx6 to use the new mount api [[https://git.kernel.org/linus/491681d44bf24fa9c33981d634d967cab2f59f78|commit]] * TRACEFS/DEBUGFS * Convert debugfs & tracefs to the new mount API [[https://git.kernel.org/linus/78ff640819496212feea29c62174f3eb3c837134|commit]], [[https://git.kernel.org/linus/a20971c187522f5a7cd8e961e7e9c88f31ea2bed|commit]] * NILFS2 * Convert to use the new mount API [[https://git.kernel.org/linus/36defdd9d7c605ba042962ef1eeb66a9d3ff5884|commit]] = Memory management = * (FEATURED) Introduce mseal [[https://git.kernel.org/linus/a52b4f11a2e17109c4b9f7df4ff19215b1752efc|commit]], [[https://git.kernel.org/linus/5c11c52046eb0f7252574bad161db53d0345ea50|commit]], [[https://git.kernel.org/linus/4926c7a52de75c7219a04de7fa857ab30653704d|commit]], [[https://git.kernel.org/linus/8be7258aad44b5e25977a98db136f677fa6f4370|commit]], [[https://git.kernel.org/linus/ff388fe5c481d39cc0a5940d1ad46f7920f1d646|commit]] * (FEATURED) Memory allocation profiling: Low overhead per-callsite memory allocation profiling. Not just for debug kernels, overhead low enough to be deployed in production [[https://git.kernel.org/linus/e26d8769da6d4c7319fdd4ddb497caa7d87a6c5c|commit]], [[https://git.kernel.org/linus/8a2f11878771da65b8ac135c73b47dae13afbd62|commit]], [[https://git.kernel.org/linus/d224eb0287fbd84f4f13eca042c7f08f87138f3b|commit]], [[https://git.kernel.org/linus/8d469d0bee74d3f2d02f0b232933a3f084d9cbf7|commit]], [[https://git.kernel.org/linus/53ed0af4964229595b60594b35334d006d411ef0|commit]], [[https://git.kernel.org/linus/a4ffad5b77f17bd8ad2a220d6eb0278bc07a5a17|commit]], [[https://git.kernel.org/linus/be25d1d4e822a703b19043baff916aec6ac4362d|commit]], [[https://git.kernel.org/linus/21c690a349baab895dc68ab70d291e1598d7109d|commit]], [[https://git.kernel.org/linus/60fa4a9e232317217aaf8bb956079f6b8c79fb28|commit]], [[https://git.kernel.org/linus/239d6c96d86f8a42d799b9a85c09cc7f36aef3f8|commit]], [[https://git.kernel.org/linus/916cc5167cc6f81651f4460d9a35c939ad18ecff|commit]], [[https://git.kernel.org/linus/0069455bcbf9ea73ffe4553ed6d2b4e4cad703de|commit]], [[https://git.kernel.org/linus/45012241ec5d5870d986e66c8ce20a0f6212e6f8|commit]], [[https://git.kernel.org/linus/09c46563ff6d5f090211e48ff1fdba0ec7f4c97f|commit]], [[https://git.kernel.org/linus/22d407b164ff79de42d21f37d99f9ee7abdd51c8|commit]], [[https://git.kernel.org/linus/88ae5fb755b0d45f790b392f578924d1ca5693a7|commit]], [[https://git.kernel.org/linus/26865a1bfae00cf7b060b6356016e3cf0cd13eff|commit]], [[https://git.kernel.org/linus/47a92dfbe01f41bcbf359250ccb3caa589763abf|commit]], [[https://git.kernel.org/linus/dcfe378c81f72f146890ce1dcfdcc742d3b66924|commit]], [[https://git.kernel.org/linus/4b8736964640fe160724e7135dc62883bddcdace|commit]], [[https://git.kernel.org/linus/9ea9cd8e61a1f8dd304a3c8531b20f27ed5446d5|commit]], [[https://git.kernel.org/linus/a5674119f0faa46f6ebdfcfa92342535b7f54e67|commit]], [[https://git.kernel.org/linus/a7f13d0f4b02fcc5ab2be5a31efd7ce8add9d10a|commit]], [[https://git.kernel.org/linus/c789b5fe38f386bbdec8c9c41e9af52d3775e16c|commit]], [[https://git.kernel.org/linus/9e54dd8b64dccdf5336172bf905017a6f97ee18d|commit]], [[https://git.kernel.org/linus/1438d349d16b78d88f9e978a4a5496f078c8191b|commit]], [[https://git.kernel.org/linus/cc92eba1c88b1f74e0f044df2738f4e4b22f1e4e|commit]], [[https://git.kernel.org/linus/768c33be1b3166791bd554abd105154719eba43d|commit]], [[https://git.kernel.org/linus/690da22dbfa85aa9f3ce06f40656c0b67e53cc80|commit]], [[https://git.kernel.org/linus/a473573964e51dcb6efc182f773cd3924be4a184|commit]], [[https://git.kernel.org/linus/24e44cc22aa3112082f2ee23137d048c73ca96d5|commit]], [[https://git.kernel.org/linus/ccdabb1d7f7a09810495ac57c0154a9913791dd2|commit]], [[https://git.kernel.org/linus/8f30d2660a38bef82af039065bd383fa73b35e39|commit]], [[https://git.kernel.org/linus/7bd230a26648ac68ab3731ebbc449090f0ac6a37|commit]], [[https://git.kernel.org/linus/9f0ee883ec7fa10f4e0a9f46e6b0eb4dd106ec93|commit]], [[https://git.kernel.org/linus/b951aaff503502a7fe066eeed2744ba8a6413c89|commit]], [[https://git.kernel.org/linus/53ce720359b8f4b531c5b8bd7fa06d74bca45f0a|commit]] * slub: Reduce memory consumption in extreme scenarios [[https://git.kernel.org/linus/9198ffbd2b494daae3a67cac1d59c3a2754e64cd|commit]] * Reduce memory consumption by memcg stats [[https://git.kernel.org/linus/4715c6a753dccd15fd3a8928168f57e349205bd4|commit]], [[https://git.kernel.org/linus/acb5fe2f1aff090ff3d32328f3028c9fb72453ec|commit]], [[https://git.kernel.org/linus/70a64b7919cbd6c12306051ff2825839a9d65605|commit]], [[https://git.kernel.org/linus/aab6103b97f1c7ca6cf33e78d5e6916e53fc265c|commit]], [[https://git.kernel.org/linus/59142d87ab03b8ff969074348f65730d465f42ee|commit]], [[https://git.kernel.org/linus/a94032b35e5f97dc1023030d92998418c9feb27b|commit]], [[https://git.kernel.org/linus/0667c7870a186e15ca7a21e0936070f0977bc80e|commit]], [[https://git.kernel.org/linus/ff48c71c26aaefb090c108d8803abdf0c75f00a9|commit]] * zram: add max_pages param to recompression [[https://git.kernel.org/linus/34efe1c3b688944d9817a5faaab7aad870182c59|commit]] * Swap-out mTHP without splitting [[https://git.kernel.org/linus/5ed890ce5147855c5360affd5e5419ed68a54100|commit]], [[https://git.kernel.org/linus/3931b871c4936c00c4e27c469056d8da47a3493f|commit]], [[https://git.kernel.org/linus/a62fb92ac12ed39df4930dca599a3b427552882a|commit]], [[https://git.kernel.org/linus/14c62da21b2b865f4fc0c49edd74ed7299927d35|commit]], [[https://git.kernel.org/linus/bb7064dc09ff90015ddc7d818dd8fefb8ca5b936|commit]], [[https://git.kernel.org/linus/845982eb264bc64b0c3242ace217fb574f56a299|commit]], [[https://git.kernel.org/linus/9faaa0f8168bfcd81469b0724b25ba3093097a08|commit]] * Accelerate pagefault when badaccess [[https://git.kernel.org/linus/0cec9541dcc550ce4a710c9a789f5f24e7c1d66d|commit]], [[https://git.kernel.org/linus/faab3d0f250aba863b19bb2d72daea0ae90a1d5d|commit]], [[https://git.kernel.org/linus/6ea02ee489799317c6640ac014c49b1d1b7124c5|commit]] * damon: add a DAMOS filter type for page granularity access recheck [[https://git.kernel.org/linus/6daea38215e6a046892f87a8ff2c61f791de4ddd|commit]], [[https://git.kernel.org/linus/2d8b24654feabc62ed9e132911319f1c48ab0256|commit]], [[https://git.kernel.org/linus/180d928e55a8160a421aa96b522dc317a6f52140|commit]] * Improve anon_vma scalability for anon VMAs [[https://git.kernel.org/linus/737019cf6ac5babb75645ad324aeead7bc04749d|commit]], [[https://git.kernel.org/linus/73b4a0cd8243709870701349611722ba3c351815|commit]], [[https://git.kernel.org/linus/a373baed5a9dca65a4d9fa55e61800a18c9936f1|commit]], [[https://git.kernel.org/linus/3be51060599ff01899b6d8c3f8aca456506cf5ea|commit]] * page_table_check: support userfault wr-protect entries [[https://git.kernel.org/linus/8430557fc584657559bfbd5150b6ae1bb90f35a0|commit]] * page_alloc: allowing mTHP compaction to capture the freed page directly [[https://git.kernel.org/linus/231f8c7127e37edcd4d9e3f87e0f9fcf0e90d902|commit]] * Add per-order mTHP alloc and swpout counters [[https://git.kernel.org/linus/a14421ae2a99378c4103bb03606465ab13e75509|commit]], [[https://git.kernel.org/linus/42248b9d34ea1be1b959d343fff465906cb787fc|commit]], [[https://git.kernel.org/linus/d0f048ac39f6a71566d3f49a5922dfd7fa0d585b|commit]], [[https://git.kernel.org/linus/ec33687c674934dfefd782a8ffd58370b080b503|commit]] * Transfer page to folio in KSM [[https://git.kernel.org/linus/72556a4c06646b7e314ee0920796699c9d4a8b47|commit]], [[https://git.kernel.org/linus/40d707f33db5e6d7da37b701955a3f662a741b02|commit]], [[https://git.kernel.org/linus/f39b6e2dc18efcc7f8d55cdf62c8c6cad47d1f06|commit]], [[https://git.kernel.org/linus/b8b0ff244ddca0d475c91c9accf144e25311a951|commit]], [[https://git.kernel.org/linus/452e862f4315d8e5e839fe1dc220fd2716be6d3a|commit]], [[https://git.kernel.org/linus/b91f94729d050eec86ae7ef084aa3805146c0a67|commit]], [[https://git.kernel.org/linus/79899cce33e0887c06d41e767aa543aaaaef48e2|commit]], [[https://git.kernel.org/linus/6f528de2986e179bf4a100dcc8db2a6703aa7885|commit]], [[https://git.kernel.org/linus/9d5cc14093594f0a5f8318cc70208bbbe71f5fce|commit]] * gup: remove the hugetlb slow gup path after a previous refactor work, so that slow gup now uses the exact same path to process all kinds of memory including hugetlb [[https://git.kernel.org/linus/9cb28da54643ad464c47585cd5866c30b0218e67|commit]], [[https://git.kernel.org/linus/f3c94c625fe38823cc8010e60b9cc23fbf058ee3|commit]], [[https://git.kernel.org/linus/24334e78e8e3ca6c8e51dad67d779b1ed40988a6|commit]], [[https://git.kernel.org/linus/4418c522f683f2d73e9573847e98904c2b777654|commit]], [[https://git.kernel.org/linus/a12083d721d703f985f4403d6b333cc449f838f6|commit]], [[https://git.kernel.org/linus/b979db1611a63b207dbc47706de989ac113ea898|commit]], [[https://git.kernel.org/linus/1b1676180246232308885c4f37fee01cf898fdb2|commit]], [[https://git.kernel.org/linus/ac3830c3b2666d08063f633a95cb838b7f8db90e|commit]], [[https://git.kernel.org/linus/878b0c4516210b613468fea827f4cc0f71b87970|commit]], [[https://git.kernel.org/linus/35a76f5c0863fc6b570bf02ab6dbf4cd65d1e001|commit]], [[https://git.kernel.org/linus/239e9a90c887d33e9339870a650d2bd621b95674|commit]], [[https://git.kernel.org/linus/caf8cab7985794d7cc8b85143b11e258ea5c8a44|commit]] * vmalloc: eliminated the lock contention from twice to once [[https://git.kernel.org/linus/aaab830ad887629156ef17097c2ad24ce6fb8177|commit]] * Make the hugetlb migration strategy consistent [[https://git.kernel.org/linus/353dc187840100fabeb946bb9573bc5ca5e04fcb|commit]], [[https://git.kernel.org/linus/42d0c3fbb5811fbfb663d8ede1d7ffba02e7ae18|commit]], [[https://git.kernel.org/linus/e42dfe4e0a51b476dcc6f1461c51fdb1b76573aa|commit]] * madvise: enhance lazyfreeing with mTHP in madvise_free [[https://git.kernel.org/linus/dce7d10be4bbd31412c4bedd3a8bb2d25b96e025|commit]], [[https://git.kernel.org/linus/96ebdb032096f67e37b582cd2ea2558c402f878b|commit]], [[https://git.kernel.org/linus/89e86854fb0aa6e20c0f3d88285fa9cedef4f4e0|commit]], [[https://git.kernel.org/linus/1b68112c40395b3b0fed3c8bb648e2d9d0b37ec2|commit]] * batch mm counter updating in filemap_map_pages() [[https://git.kernel.org/linus/ceca44991f3dd5a67b4e0ded6379c5e93e84cb31|commit]], [[https://git.kernel.org/linus/1f2d8b4421bd0da2c97fb8bad5cc85fc929fef64|commit]] * mapcount for large folios + page_mapcount() cleanups [[https://git.kernel.org/linus/f0376c71093577ab9ca30721f8a7f5795d1e88c7|commit]], [[https://git.kernel.org/linus/6eca32567455db2db38b1126e0d6ad8f0e5c3ed9|commit]], [[https://git.kernel.org/linus/7441d34922ba1aba7bbb069c27bcaabdc515f34e|commit]], [[https://git.kernel.org/linus/4103b93b07bceac30bc83cbce81693bb2ea93c22|commit]], [[https://git.kernel.org/linus/3aeea4fc835d31235947787c2b8dcbc255131106|commit]], [[https://git.kernel.org/linus/c2e65ebc02fb60b64a1c5689fe2c6f60d0fc1626|commit]], [[https://git.kernel.org/linus/31ce0d7ef8412e3f38cf90bb90b7436130c60614|commit]], [[https://git.kernel.org/linus/5f8856cdae5db200844630e660f1a64eb1560578|commit]], [[https://git.kernel.org/linus/607065804b3b2943d8f99da88744b389a8226dc1|commit]], [[https://git.kernel.org/linus/f2f8a7a006dca086d942eec2e469f8d831b62443|commit]], [[https://git.kernel.org/linus/46d62de7ad1286854e0c2944ad26a1c1b1a5f191|commit]], [[https://git.kernel.org/linus/7115936ac10abd0997f2937e4305cb679d47b592|commit]], [[https://git.kernel.org/linus/02faa73f174c4d1e11cb9a421f9a8eac0dd881f1|commit]], [[https://git.kernel.org/linus/0a7bda48012b521579898fca1fc157c53014afee|commit]], [[https://git.kernel.org/linus/eefb9b2725e395d58119a92eb8eaea8f2504b5eb|commit]], [[https://git.kernel.org/linus/05c5323b2a344c19c51cd1b91a4ab9ae90853794|commit]], [[https://git.kernel.org/linus/658670607fae51ed2f8a64fcbfcd407bf820dd4f|commit]], [[https://git.kernel.org/linus/33d844bb8433d0474b11615c06feb3607f609821|commit]] * Implements the "init_mlocked_on_free" boot option. When this boot option is enabled, any mlock'ed pages are zeroed on free [[https://git.kernel.org/linus/ba42b524a0408b5f92bd41edaee1ea84309ab9ae|commit]] * (FEATURED) Support multi-size THP numa balancing [[https://git.kernel.org/linus/d2136d749d76af980b3accd72704eea4eab625bd|commit]], [[https://git.kernel.org/linus/6b0ed7b3c77547d2308983a26db11a0d14a60ace|commit]] * filemap: optimize folio adding and splitting [[https://git.kernel.org/linus/6758c1128ceb45d1a35298912b974eb4895b7dd9|commit]], [[https://git.kernel.org/linus/a4864671ca0bf51c8e78242951741df52c06766f|commit]], [[https://git.kernel.org/linus/b2ebcf9d3d5a0108f640d8c8200ece8848045725|commit]], [[https://git.kernel.org/linus/de60fd8ddeda2b41fbe11df11733838c5f684616|commit]] * zswap same-filled and limit checking cleanups [[https://git.kernel.org/linus/c074e1467f8546c8f8c9ea2128fb8bf8c4579418|commit]], [[https://git.kernel.org/linus/e87b881489085b4832ad417da653739cbace49e7|commit]], [[https://git.kernel.org/linus/82e0f8e47b406bb5948c2300a02ac6ede21532c1|commit]], [[https://git.kernel.org/linus/4ea3fa9dd2e9c58920d73b1b2cd6bcc6f14ae0e0|commit]] * zswap: replace RB tree with xarray [[https://git.kernel.org/linus/796c2c23e14e754b1b72bed450f03d6f69f29358|commit]] * Improved Memory Tier Creation for CPUless NUMA Nodes [[https://git.kernel.org/linus/cf93be18fa1bb837fa1e3015a9919953fff6ef22|commit]], [[https://git.kernel.org/linus/a72a30af550c08423de1b9feecb6ceeddc434889|commit]] = Block layer = * Improve visibility of writeback: 1) /sys/kernel/debug/bdi/xxx/stats show writeback info of whole bdi instead of only writeback info in root cgroup 2) debug file /sys/kernel/debug/bdi/xxx/wb_stats to show per wb writeback 3) wb_monitor.py script to monitor basic writeback info of running system [[https://git.kernel.org/linus/826881a7f66557143df5c7f9f401509aa1a7fa5c|commit]], [[https://git.kernel.org/linus/881f1bb5e25c8982ed963b2d319fc0fc732e55db|commit]], [[https://git.kernel.org/linus/4b5bbc39d7a637a135fd8b3ef86e60a6a7301e9d|commit]], [[https://git.kernel.org/linus/e32e27009fb0d42c9ce9e01c5d96769897d1fa70|commit]] * Support to account io_ticks precisely [[https://git.kernel.org/linus/99dc422335d8b2bd4d105797241d3e715bae90e9|commit]] * (FEATURED) Zone write plugging [[https://git.kernel.org/linus/39051dd85f2870624c3fc7a099b11c67fb822aed|commit]], [[https://git.kernel.org/linus/f4f84586c8b9c7d5312d6f8fb4db1e12f2b83c27|commit]], [[https://git.kernel.org/linus/d9f1439a30d607f7bd06494ea2a63018b7d46380|commit]], [[https://git.kernel.org/linus/63b5385e781417e73bda3fd652c2199826afda6e|commit]], [[https://git.kernel.org/linus/ecfe43b11b02ffeb24c203af7d3947417d412cf7|commit]], [[https://git.kernel.org/linus/99a9476b27e89525cef653b91e542baf61f105d2|commit]], [[https://git.kernel.org/linus/9b1ce7f0c6f82e241196febabddba5fab66c8f05|commit]], [[https://git.kernel.org/linus/6f8fd758de63bab513c551bb1796a14f8cdc40d9|commit]], [[https://git.kernel.org/linus/843283e96e5a3d8379579ac13ce9cbf75522ffde|commit]], [[https://git.kernel.org/linus/fde02699c242e88a71286677d27cc890a959b67f|commit]], [[https://git.kernel.org/linus/f211268ed1f9bdf48f06a3ead5f5d88437450579|commit]], [[https://git.kernel.org/linus/11be0cb5fe25603472831f85abb32f0112239238|commit]], [[https://git.kernel.org/linus/bca150f0d4edbf02002efa3309bb8e8c9d6596c9|commit]], [[https://git.kernel.org/linus/a0508c36efa838b16aa93a23e3583d68d3ef6c33|commit]], [[https://git.kernel.org/linus/dd850ff3eee428b4e1276bd51263dd937643ba19|commit]], [[https://git.kernel.org/linus/b85a3c1b7978f942fa5bf8cfe22b6a6aaa49d3b7|commit]], [[https://git.kernel.org/linus/e4eb37cc0f3ed8971c50dddfbeb35a799e5b504e|commit]], [[https://git.kernel.org/linus/9b3c08b90fc212de58c34621d83e74977170b2cd|commit]], [[https://git.kernel.org/linus/dd291d77cc90eb6a86e9860ba8e6e38eebd57d12|commit]], [[https://git.kernel.org/linus/c0da26f950a355ef3540ca8d215351e1ed4cac47|commit]], [[https://git.kernel.org/linus/946dd71ed87dfa8d72f1404f906e1ae413a62d0f|commit]], [[https://git.kernel.org/linus/997a1f08b4d4283687477470bcc256dfd33ba9d0|commit]], [[https://git.kernel.org/linus/97abee507b4b71d43dc1c1d3de4739db2c86c0ac|commit]], [[https://git.kernel.org/linus/a98b05b02f0f1f9f4a504564070af208b70214d0|commit]], [[https://git.kernel.org/linus/d2a9b5fdc16941243bbd8b360cb6e4fd62f41265|commit]], [[https://git.kernel.org/linus/ccdbf0aad2523ca133cceb22ce0f8306730e7ac3|commit]] * NCQ Priority sysfs sttributes for libsas [[https://git.kernel.org/linus/e595ae7d072990e2f61beb5fbe758fd0971e9d11|commit]], [[https://git.kernel.org/linus/9fa095ae65472a3fb82ac5e27a31abf2ede74ae8|commit]], [[https://git.kernel.org/linus/b4d3ddd2df7531e35c5f4e0b048d0999851747ae|commit]], [[https://git.kernel.org/linus/abeded46bc1922e2249f6665654b5d81e7c5e1f1|commit]] * Add LIBSAS_SHT_BASE for libsas [[https://git.kernel.org/linus/ad802f7f27fc9f8a2dd463b815d10aca8a3cc668|commit]], [[https://git.kernel.org/linus/4f378a7501b2a6cd886a1422fbd7e7fa12770598|commit]], [[https://git.kernel.org/linus/d53e4d77568abf5cf135f65b0ed369a6d73af3e9|commit]], [[https://git.kernel.org/linus/bcd39f639e9e10e2b2d63604ec7c011cd21e52c1|commit]] * brd: implement discard support [[https://git.kernel.org/linus/9ead7efc6f3f2b46c4ec68209bca4888cfbd4c19|commit]] * dm-crypt: add the optional "high_priority" flag [[https://git.kernel.org/linus/5268de78e1e61c828174cb2ac7d9c566a97cce69|commit]] * dm-crypt: export sysfs of all workqueues [[https://git.kernel.org/linus/2285e1496dc68787a626145cfb0904a1b6cc5501|commit]] * blk-throttle: support enable and disable during runtime [[https://git.kernel.org/linus/a3166c51702bb00b8f8b84022090cbab8f37be1a|commit]], [[https://git.kernel.org/linus/bf20ab538c81bb32edab86f503fc0c55d8243bbc|commit]] * Add a partscan sysfs attribute for disks [[https://git.kernel.org/linus/a4217c6740dc64a3eb6815868a9260825e8c68c6|commit]] * ufs: exynos: Add support for Tensor gs101 SoC [[https://git.kernel.org/linus/d11e0a318df84f2542316ec8cc0fa4034240ee66|commit]] * ufs: exynos: Add EXYNOS_UFS_OPT_TIMER_TICK_SELECT option [[https://git.kernel.org/linus/9238cad67969e7001e296eaedcdffc63fc38ab30|commit]] * ufs: exynos: Add EXYNOS_UFS_OPT_UFSPR_SECURE option [[https://git.kernel.org/linus/449adb00d4f7870eb07adedd34e4a4b69036ec12|commit]] * ufs: Remove support for old UFSHCI versions [[https://git.kernel.org/linus/a33a502d50fddc85e8d5072cf39ff8fe19ba3025|commit]] = Tracing, perf and BPF = * Add bpf_link support for sk_msg and sk_skb progs [[https://git.kernel.org/linus/8ba218e625f0dfb3ef46fe0721dcdf565726ff76|commit]], [[https://git.kernel.org/linus/a15d58b2bc82abd8c4c994af158b0410424a18d3|commit]], [[https://git.kernel.org/linus/1f3e2091d25b2b140967480177fcaee2f0eebfb1|commit]], [[https://git.kernel.org/linus/849989af61added13b2a9005608b1cf46f36f88b|commit]], [[https://git.kernel.org/linus/699c23f02c65cbfc3e638f14ce0d70c23a2e1f02|commit]] * bpf: Introduce kprobe_multi session attach [[https://git.kernel.org/linus/535a3692ba7245792e6f23654507865d4293c850|commit]], [[https://git.kernel.org/linus/adf46d88ae4b2557f7e2e02547a25fb866935711|commit]], [[https://git.kernel.org/linus/5c919acef85147886eb2abf86fb147f94680a8b0|commit]], [[https://git.kernel.org/linus/2ca178f02b2f4e523e970894def16282e4adbc39|commit]], [[https://git.kernel.org/linus/7b94965429f2fa32a83e1275c6bf6ed0add08603|commit]], [[https://git.kernel.org/linus/0983b1697aefbf69f465f907b934b89bbce467ea|commit]], [[https://git.kernel.org/linus/a3a5113393ccfad2eb23ca091aa6e55b5bd67eb4|commit]] * perf bench uprobe: Add uretprobe variant of uprobe benchmarks [[https://git.kernel.org/linus/988052f4bfcc4ee893ea19e9d9ce888cc8578e5a|commit]], [[https://git.kernel.org/linus/459fee7b508231cd4622b3bd94aaa85e8e16b888|commit]] * perf annotate: Add TUI support for data type profiling [[https://git.kernel.org/linus/0bfbe661a21f7c77a22eb978e0de3b672041e502|commit]], [[https://git.kernel.org/linus/6cdd977ec24e1538b35a08bde823a74b69e829f2|commit]], [[https://git.kernel.org/linus/d9aedc12d3477ab72ec48bb7abb0f038c902c937|commit]], [[https://git.kernel.org/linus/9b561be15febda6f9b314c9eab51e157f8f34dea|commit]], [[https://git.kernel.org/linus/eb833488631b171e693a6917eb17b41fdedda659|commit]], [[https://git.kernel.org/linus/2b08f219d592d5b3d17db9a3850a9d793e6c9d83|commit]], [[https://git.kernel.org/linus/d001c7a7f473674353311a79cf140d054b26afcd|commit]] * perf script: Add capstone support for '-F +brstackdisasm' [[https://git.kernel.org/linus/d812044688dfe73e1b309689d58d06f50a15e618|commit]] * Remaining bits of data type profiling [[https://git.kernel.org/linus/ยบ|commit]], [[https://git.kernel.org/linus/bdc80ace07106a62b51d1752869df29dbd65ad2c|commit]], [[https://git.kernel.org/linus/bd62de08084c24a4ff1b1875d53cc4cc1ea2312d|commit]], [[https://git.kernel.org/linus/02e17ca917423c622da10ac6bd0924c17462962e|commit]], [[https://git.kernel.org/linus/f5b095924d0c1c2f0698df07c54887d92c39fd3a|commit]], [[https://git.kernel.org/linus/5cdd3fd7995a7a07b1654ea37e0fcc3c64f0cc44|commit]], [[https://git.kernel.org/linus/b3c95109c131fcc959d2473e7c384d8cc62d23d0|commit]], [[https://git.kernel.org/linus/eb9190afaed6afd5ed54bb0a3269eec338663858|commit]], [[https://git.kernel.org/linus/932dcc2c39aedf54ef291bc0b4129a54f5fe1e84|commit]], [[https://git.kernel.org/linus/1ebb5e17ef21b492ee60654d4e22cbfb3763661f|commit]], [[https://git.kernel.org/linus/cbaf89a8c5b467f99dd930f24a698f3fa338b012|commit]], [[https://git.kernel.org/linus/0a41e5d6849b4f705c377d34799485b546764970|commit]], [[https://git.kernel.org/linus/eb8a55e01de9a671e130b4c0e5b483997f4f491f|commit]], [[https://git.kernel.org/linus/437683a9941891c17059d99561eb3ce85e0f51fa|commit]], [[https://git.kernel.org/linus/4f903455befa257c50422a4570c4dca0020a1fc8|commit]], [[https://git.kernel.org/linus/b508965d35321534e84daf8946b2cc5f64517db9|commit]], [[https://git.kernel.org/linus/1894c59fdb63692f5ba2576875cc558b856935ca|commit]], [[https://git.kernel.org/linus/52a09bc24c6a4deeeb8030476a7663b6696d73f0|commit]], [[https://git.kernel.org/linus/7a838c2fd2ac81e10bedcd912153a74ca662b309|commit]], [[https://git.kernel.org/linus/55ee3d005d62279d3951a26d5c211a4d9aebc222|commit]], [[https://git.kernel.org/linus/ad62edbfc55b23347539c8c6fff9a70de17c4b95|commit]], [[https://git.kernel.org/linus/06b2ce75386df04b7aea53818ed3c42ee50ec426|commit]] * Introduce bpf_wq [[https://git.kernel.org/linus/81f1d7a583fa1fa14f0c4e6140d34b5e3d08d227|commit]], [[https://git.kernel.org/linus/8e83da9732d91c60fdc651b2486c8e5935eb0ca2|commit]], [[https://git.kernel.org/linus/25025e0aab2f91a93a1557b299a79814559b4dc2|commit]], [[https://git.kernel.org/linus/ad2c03e691be3268eefc75ff1d892db3f0e79f62|commit]], [[https://git.kernel.org/linus/56b4a177ae6322173360a93ea828ad18570a5a14|commit]], [[https://git.kernel.org/linus/eb48f6cd41a0f7803770a76bbffb6bd5b1b2ae2f|commit]], [[https://git.kernel.org/linus/8290dba51910d36721ced6ccf03049ed6b7ea2ce|commit]], [[https://git.kernel.org/linus/e3d9eac99afd94980475833479332fefd74c5c2b|commit]], [[https://git.kernel.org/linus/01b7b1c5f3cc029bdd2652eba61e953ccd286c0e|commit]], [[https://git.kernel.org/linus/073f11b0264310b85754b6a0946afee753790c66|commit]], [[https://git.kernel.org/linus/b4abee7c1ae3d59440e7915da28c6d2cd394738a|commit]], [[https://git.kernel.org/linus/be2749beff62e0d63cf97fe63cabc79a68443139|commit]], [[https://git.kernel.org/linus/d940c9b94d7e6d9cff288623e3e8bf5fdea98b79|commit]], [[https://git.kernel.org/linus/d56b63cf0c0f71e1b2e04dd8220b408f049e67ff|commit]], [[https://git.kernel.org/linus/fc22d9495f0b32d75b5d25a17b300b7aad05c55d|commit]], [[https://git.kernel.org/linus/246331e3f1eac905170a923f0ec76725c2558232|commit]] * BPF raw tracepoint support for BPF cookie [[https://git.kernel.org/linus/51146ff0fae309a558bc8ab6cbf6cfda17356993|commit]], [[https://git.kernel.org/linus/36ffb2023e3703a64266ca5fed30f710b1263c70|commit]], [[https://git.kernel.org/linus/68ca5d4eebb8c4de246ee5f634eee26bc689562d|commit]], [[https://git.kernel.org/linus/d4dfc5700e867b22ab94f960f9a9972696a637d5|commit]], [[https://git.kernel.org/linus/6b9c2950c912780ce113079c9c52041b1e2a611a|commit]] * Introduce bpf_preempt_{disable,enable} [[https://git.kernel.org/linus/3134396f1cba939783b87c63dae3a54708285a9a|commit]], [[https://git.kernel.org/linus/fc7566ad0a826cdc8886c5dbbb39ce72a0dc6333|commit]] * Allow invoking kfuncs from BPF_PROG_TYPE_SYSCALL progs [[https://git.kernel.org/linus/1bc724af00cc48ef03e3fa6d7a2f6731ac915c37|commit]], [[https://git.kernel.org/linus/a8e03b6bbb2cc7cf387d1ce335e4ce4c3bdfef9b|commit]] * Introduce kprobe_multi session attach [[https://git.kernel.org/linus/0983b1697aefbf69f465f907b934b89bbce467ea|commit]], [[https://git.kernel.org/linus/a3a5113393ccfad2eb23ca091aa6e55b5bd67eb4|commit]], [[https://git.kernel.org/linus/adf46d88ae4b2557f7e2e02547a25fb866935711|commit]], [[https://git.kernel.org/linus/5c919acef85147886eb2abf86fb147f94680a8b0|commit]], [[https://git.kernel.org/linus/535a3692ba7245792e6f23654507865d4293c850|commit]], [[https://git.kernel.org/linus/7b94965429f2fa32a83e1275c6bf6ed0add08603|commit]] * Add BPF_PROG_TYPE_CGROUP_SKB attach type enforcement in BPF_LINK_CREATE [[https://git.kernel.org/linus/095ddb501b39b7842e5da555915ad89e370b9888|commit]], [[https://git.kernel.org/linus/d70b2660e75b85bdaa9d75f9c4224c2f6f89cf23|commit]], [[https://git.kernel.org/linus/543576ec15b17c0c93301ac8297333c7b6e84ac7|commit]] * add mrtt and srtt as ctx->args for BPF_SOCK_OPS_RTT_CB [[https://git.kernel.org/linus/876373985efb87844ca7cacd2d1d3ef4c9398c9c|commit]], [[https://git.kernel.org/linus/7eb4f66b38069eec9c86c9d115f0bba1cf73ef2c|commit]], [[https://git.kernel.org/linus/48e2cd3e3dcfe04f212df4fb189fa04c2a87b980|commit]] * Support mark in bpf_fib_lookup [[https://git.kernel.org/linus/59b418c7063d30e0a3e1f592d47df096db83185c|commit]], [[https://git.kernel.org/linus/6efec2cb06411a577125b5f531a852c08ead1209|commit]], [[https://git.kernel.org/linus/5311591fbb349fe9f5c555dcba3b13a5831aa72d|commit]] * bpf: Improve program stats run-time calculation [[https://git.kernel.org/linus/ce09cbdd988887662546a1175bcfdfc6c8fdd150|commit]] * tracing: allow user space to memory map the ring buffer ([[https://docs.kernel.org/trace/ring-buffer-map.html|Documentation]]). It will get all the write sub-buffers as well as reader sub-buffer (that is not written to). It can send an ioctl to change which sub-buffer is the new reader sub-buffer [[https://git.kernel.org/linus/75961e55415cdc368ca2d7f6203fb627c259d58a|commit]], [[https://git.kernel.org/linus/a1e0dd7ce38af3fb1a3bc54a222a7c5e4eaa4202|commit]], [[https://git.kernel.org/linus/cf9f0f7c4c5bb45e7bb270e48bab6f7837825a64|commit]], [[https://git.kernel.org/linus/117c39200d9d760cbd5944bb89efb7b9c51965aa|commit]], [[https://git.kernel.org/linus/c09d4167b550f91ecf5c3db883eea314edc7f532|commit]] * tracing: support '%pd' and '%pD' for print file name [[https://git.kernel.org/linus/ee97e5e135c6fc937c4c81e0341c6513e2e6d44c|commit]], [[https://git.kernel.org/linus/c01768b05e306d8c8d5997356ff427f5d53c7d20|commit]], [[https://git.kernel.org/linus/5e37460f5f9266bcd037137f1bd9eb24b9940faf|commit]], [[https://git.kernel.org/linus/20fe4d07bde67ec26716835b61be2c4eeca1c6bc|commit]], [[https://git.kernel.org/linus/d9b15224dd8ff83b2aef87e4cd5ad10c875ef7d6|commit]] * tracing: Add the ::microcode field to the mce_record tracepoint [[https://git.kernel.org/linus/186d7ef52c1f0c41450dedbdf6d6325d0a84e4c5|commit]] * tracing: Add the ::ppin field to the mce_record tracepoint [[https://git.kernel.org/linus/98430645e383404e5f6f784cabbb08ebb4ac5499|commit]] * libbpf: support "module:function" syntax for tracing programs [[https://git.kernel.org/linus/8f8a024272f3e335854515b41638bdf89c6d3146|commit]] * libbpf: BPF raw tracepoint support for BPF cookie [[https://git.kernel.org/linus/51146ff0fae309a558bc8ab6cbf6cfda17356993|commit]], [[https://git.kernel.org/linus/36ffb2023e3703a64266ca5fed30f710b1263c70|commit]], [[https://git.kernel.org/linus/68ca5d4eebb8c4de246ee5f634eee26bc689562d|commit]], [[https://git.kernel.org/linus/d4dfc5700e867b22ab94f960f9a9972696a637d5|commit]], [[https://git.kernel.org/linus/6b9c2950c912780ce113079c9c52041b1e2a611a|commit]] * libbpf: API to partially consume items from ringbuffer [[https://git.kernel.org/linus/4d22ea94ea33550538b3b14429d52cb9f96ad2c3|commit]], [[https://git.kernel.org/linus/13e8125a22763557d719db996f70c71f77c9509c|commit]], [[https://git.kernel.org/linus/5bd2ed658231b0698211e94efb06393836a4539d|commit]] * libbpf: Introduce kprobe_multi session attach [[https://git.kernel.org/linus/0983b1697aefbf69f465f907b934b89bbce467ea|commit]], [[https://git.kernel.org/linus/a3a5113393ccfad2eb23ca091aa6e55b5bd67eb4|commit]], [[https://git.kernel.org/linus/adf46d88ae4b2557f7e2e02547a25fb866935711|commit]], [[https://git.kernel.org/linus/5c919acef85147886eb2abf86fb147f94680a8b0|commit]], [[https://git.kernel.org/linus/535a3692ba7245792e6f23654507865d4293c850|commit]], [[https://git.kernel.org/linus/7b94965429f2fa32a83e1275c6bf6ed0add08603|commit]] * uprobes: two common case speed ups [[https://git.kernel.org/linus/cdf355cc60e388d992bdd205b8ee70dc4d533461|commit]], [[https://git.kernel.org/linus/1b8f85defbc82e2eb8f27c5f6060ea507ad4d5a3|commit]], [[https://git.kernel.org/linus/3eaea21b4d27cff0017c20549aeb53034c58fc23|commit]] * uprobes: speedup performance when many are executing uprobes [[https://git.kernel.org/linus/0dc715295d4143d1659879f7f50ad4e9a6f6a99c|commit]] = Virtualization = * virtio-fs: introduce multi-queue support [[https://git.kernel.org/linus/47411a06c0c44b3c9dc2feffb0d97785ec9aaa68|commit]], [[https://git.kernel.org/linus/103c2de111bf32f7c36a0ce8f638b114a37e0b76|commit]] * virtio-net: support device stats [[https://git.kernel.org/linus/d806e1ff79e65f9cf7932286555fc2855e721ae5|commit]], [[https://git.kernel.org/linus/0cfe71f45f420e412fda2395807a56c453a6e0b6|commit]], [[https://git.kernel.org/linus/34cfe87221363d98160f74788dd060b1c43bae0d|commit]], [[https://git.kernel.org/linus/de6df26ffced76137349be241a579b4fffaf5703|commit]], [[https://git.kernel.org/linus/aff5b0e605b06e3d803fb198425753c8391ffb3d|commit]], [[https://git.kernel.org/linus/d888f04c09bb2c2fc60f84ccba87a9ff727b13d4|commit]], [[https://git.kernel.org/linus/d86769b9d23c3907349163933adb9dad8059918b|commit]], [[https://git.kernel.org/linus/941168f8b40e50518a3bc6ce770a7062a5d99230|commit]] * pvpanic: add support for normal shutdowns [[https://git.kernel.org/linus/7b51b13733214b0491e935ff6ffc64a5730caa2a|commit]] * Low speed Hyper-V devices support [[https://git.kernel.org/linus/ec314f61e4fc2d3dd6ea78aa18a5ac276eb1a8e3|commit]], [[https://git.kernel.org/linus/f366d322aea782cf786aa821d5accdc1609f9e10|commit]], [[https://git.kernel.org/linus/e566ed5b64177a0c07b677568f623ed31d23406d|commit]], [[https://git.kernel.org/linus/547fa4ffd799ad48bf96e60efd24985adeec35de|commit]], [[https://git.kernel.org/linus/e8c4bd6c6e6b7e7b416c42806981c2a81370001e|commit]], [[https://git.kernel.org/linus/82b0945ce2c2d636d5e893ad50210875c929f257|commit]], [[https://git.kernel.org/linus/45bab4d746510ac2bdd9102bf152db617ef96a6b|commit]] * vmgenid: add devicetree bindings support [[https://git.kernel.org/linus/7b1bcd6b50a615671d4dcb0ad0378a2660a1a368|commit]], [[https://git.kernel.org/linus/a4aded1ff5759a2ab754699c0408be79c9ebdda4|commit]], [[https://git.kernel.org/linus/e07606713a908eee8099883c8c830ebe33aaf748|commit]] * vfio/qat: Add vfio_pci driver for Intel QAT SR-IOV VF devices [[https://git.kernel.org/linus/bb208810b1abf1c84870cfbe1cc9cf1a1d35c607|commit]] * Coalesced Interrupt Delivery with posted MSI [[https://git.kernel.org/linus/43650dcf6d6322ec2d0938bb51f755810ffa783a|commit]], [[https://git.kernel.org/linus/4ec8fd037139a4d8afb2a5c7edb4a17f9449a035|commit]], [[https://git.kernel.org/linus/ed1e48ea43703002dc202ac7f3b0b0b9981ec2f0|commit]], [[https://git.kernel.org/linus/2254808b53d92c9fe7b645b2f43acc55f22cdce6|commit]], [[https://git.kernel.org/linus/ce0a92871179f8ca58ae8e3cf50e726a163bf831|commit]], [[https://git.kernel.org/linus/699f67512f04cbaee965fad872702c06eaf440f6|commit]], [[https://git.kernel.org/linus/1b03d82ba15e895776f1f7da2bb56a9a60e6dfed|commit]], [[https://git.kernel.org/linus/f5a3562ec9dd29e61735ccf098d8ba05cf6c7c72|commit]], [[https://git.kernel.org/linus/7fec07fd217800c5174f51d8869518807e9aa144|commit]], [[https://git.kernel.org/linus/fef05a078b6fa1e9047e0486f1f6daf70664fd12|commit]] * Consolidate domain cache invalidation [[https://git.kernel.org/linus/129dab6e1286525fe5baed860d3dfcd9c6b4b327|commit]], [[https://git.kernel.org/linus/06792d06798931696dd78f65024de4cc66f2fd5b|commit]], [[https://git.kernel.org/linus/c4d27ffaa8eb034ec438a9aedfe202ce81e15312|commit]], [[https://git.kernel.org/linus/65442507026a79e2de8014880e6ba376b8b44584|commit]], [[https://git.kernel.org/linus/886f816c2f01f768384e78f91b3c0ff66920b53f|commit]], [[https://git.kernel.org/linus/446a68c58d2e5b8140d474f1a74082aebeee9bb0|commit]], [[https://git.kernel.org/linus/deda9a7bf38fb9846ff3fb83179ca07437b1511c|commit]], [[https://git.kernel.org/linus/3b1d9e2b2d6856eabf5faa12d20c97fef657999f|commit]], [[https://git.kernel.org/linus/8ebc22366ed8bb2cbcf215bfa3fabb4f36d10a91|commit]], [[https://git.kernel.org/linus/a600ccd0a347e8f9c9f35f229e1ccd0dca9374c4|commit]], [[https://git.kernel.org/linus/4e589a53685c7658f9055fcedbce15bd4cc41134|commit]], [[https://git.kernel.org/linus/4f609dbff51b3c98d5fc841758a20be74ab3f132|commit]] * vduse: add support for networking devices [[https://git.kernel.org/linus/894452180d732413fd29fa95a4820560fa44ca4a|commit]], [[https://git.kernel.org/linus/56e71885b0349241c07631a7b979b61e81afab6a|commit]], [[https://git.kernel.org/linus/a115b5716fc9a64652aa9cb332070087178ffafa|commit]] = Cryptography = * BPF crypto API framework [[https://git.kernel.org/linus/52578f7f53ff8fe3a8f6f3bc8b5956615c07a16e|commit]], [[https://git.kernel.org/linus/8000e627dc98efc44658af6150fd81c62d936b1b|commit]], [[https://git.kernel.org/linus/91541ab192fc7f573e6c711ba9c2ae22a299c408|commit]], [[https://git.kernel.org/linus/fda4f71282b21a8cf230b656781efb0a41371fd4|commit]], [[https://git.kernel.org/linus/3e1c6f35409f9e447bf37f64840f5b65576bfb78|commit]] * Remove CONFIG_CRYPTO_STATS [[https://git.kernel.org/linus/29ce50e078b857977202205394f200a25889636e|commit]] * X.509: Introduce scope-based x509_certificate allocation [[https://git.kernel.org/linus/5c6ca9d936654a135b459c846885e08966e5e5bf|commit]] * IAA stats bugfixes and simplifications [[https://git.kernel.org/linus/43698cd6c02ddcf3b4ffb34e5da0be3e801027fe|commit]], [[https://git.kernel.org/linus/c21fb22df63d51bb26d34023b0d9651a15442eb6|commit]], [[https://git.kernel.org/linus/956cb8a37039306379a1a926ccb1b55e08ffae80|commit]], [[https://git.kernel.org/linus/19b0ed5ddc8b554d1dfc34f870dc56e706ed205a|commit]] * Add support for NIST P521 to ecdsa [[https://git.kernel.org/linus/3ba2ae361402f28754adf873954a22bf97b856a9|commit]], [[https://git.kernel.org/linus/e7fb062754ef9f656ee004f2be8f59ce8a79bffb|commit]], [[https://git.kernel.org/linus/114e80437e0e48b967d0bd533a4c8ff1186ce12f|commit]], [[https://git.kernel.org/linus/d67c96fb97b5811e15c881d5cb72e293faa5f8e1|commit]], [[https://git.kernel.org/linus/a7d45ba77d3d20ba029532090da4cbf058d3f36b|commit]], [[https://git.kernel.org/linus/4dc50330a437e91063c68da074574bf6459d68a5|commit]], [[https://git.kernel.org/linus/703ca5cda1ea04735e48882a7cccff97d57656c3|commit]], [[https://git.kernel.org/linus/dcee6068d4ab503bdb3eed6561c4ce7c7e2175f6|commit]], [[https://git.kernel.org/linus/288b46c57c658d3c798de0c9154e1215bdde8476|commit]], [[https://git.kernel.org/linus/526d23fc2dd03a749297f5ef5edcbfb8c492dcfd|commit]], [[https://git.kernel.org/linus/c0d6bd1fd367a5374bff7e3f3bdf47beb84893c8|commit]], [[https://git.kernel.org/linus/48e8d3a5f4f902f2bcd70cc88ff784aa7d6d2c63|commit]], [[https://git.kernel.org/linus/dee45a607abbd52fd572622c281010037a85544b|commit]] = Security = * Add integrity and security to TPM2 transactions [[https://git.kernel.org/linus/033ee84e5f01c86997cde29947805e9781ddf233|commit]], [[https://git.kernel.org/linus/d0a25bb961e6e5650083a4f15768e3075f7d8db7|commit]], [[https://git.kernel.org/linus/6519fea6fd372b2247a48d72dcb23e14de70b4ea|commit]], [[https://git.kernel.org/linus/52ce7d9731ed8fada505b5ac33fb1df0190fb8c3|commit]], [[https://git.kernel.org/linus/d926ee92e84146ff85877b15d9ac0c7cd7c422c6|commit]], [[https://git.kernel.org/linus/acd5eb4f50241c5e3c2e0056c0e2151295796416|commit]], [[https://git.kernel.org/linus/3d2daf9d592e435c46a91841602e52ecbad48602|commit]], [[https://git.kernel.org/linus/089e0fb3f773a23a17b9945b0abeb075cb7c7186|commit]], [[https://git.kernel.org/linus/4f0feb5463cc6783c9145e707f93c54e7bb1112e|commit]], [[https://git.kernel.org/linus/fefb9f12726bebce74be7b95e259594696d0c423|commit]], [[https://git.kernel.org/linus/1085b8276bb4239daa7008f0dcd5c973e4bd690f|commit]], [[https://git.kernel.org/linus/d2add27cf2b823a8c1f8caf7ff10c98070df71f5|commit]], [[https://git.kernel.org/linus/699e3efd6c645c741ea4d6d58282c56b6d108cf7|commit]], [[https://git.kernel.org/linus/17d89b2e2f76e8ae129467665ea7462401f37aa4|commit]], [[https://git.kernel.org/linus/11189d6828ba4aa77916fdf4fcaebc304b349b51|commit]], [[https://git.kernel.org/linus/cf792e903affdf585f20fea41ea4f9b4eac124ab|commit]], [[https://git.kernel.org/linus/40813f1879e7b7d33bf70bcd67fb443e8e52247b|commit]], [[https://git.kernel.org/linus/e1b72e1b11109bd81577950538a17bc0428e647f|commit]], [[https://git.kernel.org/linus/37e2ee16d67d17926085cbd0500dd78ca747e59c|commit]], [[https://git.kernel.org/linus/eb24c9788cd90db397b3e41322aff4a5557623b4|commit]], [[https://git.kernel.org/linus/1b6d7f9eb150305dcb0da4f7101a8d30dcdf0497|commit]], [[https://git.kernel.org/linus/f135440447af5156de91272ee52ccedcf0796e94|commit]] * Support signatures on stacked filesystem [[https://git.kernel.org/linus/a652aa59068bd78d96a1ab6ea7c0c4d3c79fb5e8|commit]], [[https://git.kernel.org/linus/cd9b909a117210bfd77a89bb06a3154c1fc51b51|commit]], [[https://git.kernel.org/linus/3253804773c0613a1bad5bfea2edf172b760d8b6|commit]], [[https://git.kernel.org/linus/f2b3fc42f6ce19524d8ecaf9f878456ed8c50914|commit]], [[https://git.kernel.org/linus/5e2e4d0ea5c2c886c4a082890be6a1c2ee064605|commit]], [[https://git.kernel.org/linus/c21632b66895eb23c05e4eeedb68128fb243d168|commit]], [[https://git.kernel.org/linus/47add87ad181473e5ef2438918669540ba5016a6|commit]], [[https://git.kernel.org/linus/309e2b775da8b2c28fccc4ac2621801f06920ce0|commit]], [[https://git.kernel.org/linus/faf994811e0548df854e5fd946f3094725fcd9b5|commit]], [[https://git.kernel.org/linus/1f65e57dc5417b166843438bef31c70b9a5208fe|commit]] * landlock: IOCTL support. It makes ioctl(2) requests for device files restrictable with Landlock, in a way that is useful for real-world applications [[https://git.kernel.org/linus/c67593a03129967eae8939c4899767182eb6d6cd|commit]], [[https://git.kernel.org/linus/f83d51a5bdfe5ab56c27fd5dfe01c613b37e2dad|commit]], [[https://git.kernel.org/linus/bce605e0cfa55da513b672500dd838be1ef41de7|commit]], [[https://git.kernel.org/linus/3ecf19e56843a6fe65f109c773728c36d220f947|commit]], [[https://git.kernel.org/linus/d1654fd98be731b08d2b7b857ef2026df6767e3d|commit]], [[https://git.kernel.org/linus/dd6d32afdf5f1869a8f543e8efdd191f7e4b0368|commit]], [[https://git.kernel.org/linus/943aa818cd6606a1385130bc72f5066b82fe4346|commit]], [[https://git.kernel.org/linus/b25f7415eb4108aa32dd3e74289d7f997090708f|commit]], [[https://git.kernel.org/linus/cd13738d44c9863ce54243fdcc2d228233f23355|commit]], [[https://git.kernel.org/linus/56ffd377c7abe670ba5f024328e0c0fc0f49920c|commit]], [[https://git.kernel.org/linus/7954a1d155975a3fbc9570151358738f59605121|commit]], [[https://git.kernel.org/linus/a3746da89faf985132e428056d147b743b7174e4|commit]] * ima: add crypto agility support for template-hash algorithm [[https://git.kernel.org/linus/9fa8e76250082a45d0d3dad525419ab98bd01658|commit]] * TEE driver for Trusted Services [[https://git.kernel.org/linus/7a318a70a42057692f191ff49c289cd3e27e21f5|commit]], [[https://git.kernel.org/linus/3912b1f576b10093d6cd50bf8b4c3404c6c132ec|commit]], [[https://git.kernel.org/linus/c835e5a3153cae2956efdbb9948b90f2b9e5e64d|commit]], [[https://git.kernel.org/linus/cf4441503e20a0c0a36e0a98dcf57de3d3844c91|commit]], [[https://git.kernel.org/linus/0439fcff304acdedfc493dbf900dce86922fd31f|commit]] = Networking = * af_unix: Reimplement GC. Old implementation locks each inflight socket's receive queue and requires trickiness in other places [[https://git.kernel.org/linus/a15702d8b3aad8ce5268c565bd29f0e02fd2db83|commit]], [[https://git.kernel.org/linus/118f457da9ed58a79e24b73c2ef0aa1987241f0e|commit]], [[https://git.kernel.org/linus/3484f063172dd88776b062046d721d7c2ae1af7c|commit]], [[https://git.kernel.org/linus/aed6ecef55d70de3762ce41c561b7f547dbaf107|commit]], [[https://git.kernel.org/linus/29b64e354029cfcf1eea4d91b146c7b769305930|commit]], [[https://git.kernel.org/linus/ad081928a8b0f57f269df999a28087fce6f2b6ce|commit]], [[https://git.kernel.org/linus/2aa0cff26ed53bc8d4855292b501759435ffdd38|commit]], [[https://git.kernel.org/linus/bfdb01283ee8f2f3089656c3ff8f62bb072dabb2|commit]], [[https://git.kernel.org/linus/7c349ed090318b1c88a3e5dff3b24f732296edce|commit]], [[https://git.kernel.org/linus/42f298c06b30bfe0a8cbee5d38644e618699e26e|commit]], [[https://git.kernel.org/linus/77e5593aebba823bcbcf2c4b58b07efcd63933b8|commit]], [[https://git.kernel.org/linus/dcf70df2048d27c5d186f013f101a4aefd63aa41|commit]], [[https://git.kernel.org/linus/6ba76fd2848e107594ea4f03b737230f74bc23ea|commit]], [[https://git.kernel.org/linus/22c3c0c52d32f41cc38cd936ea0c93f22ced3315|commit]], [[https://git.kernel.org/linus/ba31b4a4e1018f5844c6eb31734976e2184f2f9a|commit]], [[https://git.kernel.org/linus/4090fa373f0e763c43610853d2774b5979915959|commit]] * Use SMP threads for backlog NAPI (or optional). [[https://git.kernel.org/linus/765b11f8f4e20b7433e4ba4a3e9106a0d59501ed|commit]], [[https://git.kernel.org/linus/80d2eefcb4c84aa9018b2a997ab3a4c567bc821a|commit]], [[https://git.kernel.org/linus/dad6b97702639fba27a2bd3e986982ad6f0db3a7|commit]], [[https://git.kernel.org/linus/56364c910691f6d10ba88c964c9041b9ab777bd6|commit]] * Add support for Power over Ethernet (PoE) [[https://git.kernel.org/linus/33d21bd1c81d899d8b97d375d8ee9a3bfa65b1fa|commit]], [[https://git.kernel.org/linus/f562202fedadacdd39f954a371259c2d820aa9b4|commit]], [[https://git.kernel.org/linus/edd79f084ad40991c28341ae07c9f429fac799aa|commit]], [[https://git.kernel.org/linus/9be9567a7c59b7314ea776f56945fe3fc28efe99|commit]], [[https://git.kernel.org/linus/47e0dd53c5eb9dab66689592523f31ea39fc32fa|commit]], [[https://git.kernel.org/linus/9c1de033afad216d02fb4efec22d40dd000e72c2|commit]], [[https://git.kernel.org/linus/9a993845189004a923b78d0df643e47970147337|commit]], [[https://git.kernel.org/linus/20e6d190ffe1c8922500d7a4b21bb7fbc703d712|commit]], [[https://git.kernel.org/linus/4d18e3ddf427d93a2895a1c9d61477e1f1726cad|commit]], [[https://git.kernel.org/linus/d83e13761d5b0568376963729abcccf6de5a43ba|commit]], [[https://git.kernel.org/linus/b58be8db6327b21e0c7fbee559b8eb47f5110efe|commit]], [[https://git.kernel.org/linus/b17181a88fb90d7eab51ab7576e8985cc2a8d1bc|commit]], [[https://git.kernel.org/linus/f8586411e40ea8152c7a030e4f1d9bd9005e2628|commit]], [[https://git.kernel.org/linus/57b30d2a5475eb837fe1124f15f93a2a230c7bf3|commit]], [[https://git.kernel.org/linus/29e28d1d7a16a3f6dba55c1df5cc6e0f9edf3017|commit]] * TCP * Add TCP fraglist GRO support, allowing chaining multiple TCP packets and forwarding them together. Useful for small switches / routers which lack basic checksum offload in some scenarios (e.g. PPPoE) [[https://git.kernel.org/linus/c9d1d23e5239f41700be69133a5769ac5ebc88a8|commit]], [[https://git.kernel.org/linus/bee88cd5bd83d40b8aec4d6cb729378f707f6197|commit]], [[https://git.kernel.org/linus/8d95dc474f85481652a0e422d2f1f079de81f63c|commit]], [[https://git.kernel.org/linus/8928756d53d5b99dcd18073dc7738b8ebdbe7d96|commit]], [[https://git.kernel.org/linus/7516b27c555c1711ec17a5d891befb6986e573a3|commit]], [[https://git.kernel.org/linus/80e85fbdf19ecc4dfa31ecf639adb55555db02fe|commit]] * Implement reset reason mechanism to detect [[https://git.kernel.org/linus/215d40248bde5562a21e4c6cdeaeca0495c9365a|commit]], [[https://git.kernel.org/linus/b533fb9cf4f7c6ca2aa255a5a1fdcde49fff2b24|commit]], [[https://git.kernel.org/linus/6be49deaa09576c141002a2e6f816a1709bc2c86|commit]], [[https://git.kernel.org/linus/5691276b39daf90294c6a81fb6d62d667f634c92|commit]], [[https://git.kernel.org/linus/5cb2cb3cb20cb2618c877a50db3c013449cc4e75|commit]], [[https://git.kernel.org/linus/120391ef9ca8fe8f82ea3f2961ad802043468226|commit]] * Increase the default TCP scaling ratio [[https://git.kernel.org/linus/697a6c8cec03c2299f850fa50322641a8bf6b915|commit]] * Avoid sending too small packets [[https://git.kernel.org/linus/8ee602c635206ed012f979370094015857c02359|commit]], [[https://git.kernel.org/linus/d5b38a71d3334bc87931997f1b0a16464bbbe2ba|commit]], [[https://git.kernel.org/linus/22555032c513e62fe744d4cdd553539897e8e922|commit]] * Socket option to check for MPTCP fallback to TCP [[https://git.kernel.org/linus/c084ebd77a00b1a16d9daa57b6ecdfdf1f43c78a|commit]] * Small optimization when TCP_TW_SYN is processed [[https://git.kernel.org/linus/d13b05962369bade0fb8e2d55af56492f866cd36|commit]] * Remove 64 KByte limit for initial tp->rcv_wnd value [[https://git.kernel.org/linus/378979e94e953c2070acb4f0e0c98d29260bd09d|commit]] * Accept bare FIN packets under memory pressure [[https://git.kernel.org/linus/2bd99aef1b19e6da09eff692bc0a09d61d785782|commit]] * Add support for SO_PEEK_OFF socket option [[https://git.kernel.org/linus/05ea491641d338422edbd87af3b311c16ea762f5|commit]] * Introduce PHY listing and link_topology tracking [[https://git.kernel.org/linus/32bb4515e34469975abc936deb0a116c4a445817|commit]], [[https://git.kernel.org/linus/c29451aefcb42359905d18678de38e52eccb3bb5|commit]], [[https://git.kernel.org/linus/63d5eaf35ac36cad00cfb3809d794ef0078c822b|commit]], [[https://git.kernel.org/linus/9c5625f559ad6fe9f6f733c11475bf470e637d34|commit]], [[https://git.kernel.org/linus/d078d480639a4f3b5fc2d56247afa38e0956483a|commit]], [[https://git.kernel.org/linus/034fcc210349b873ece7356905be5c6ca11eef2a|commit]], [[https://git.kernel.org/linus/02018c544ef113e980a2349eba89003d6f399d22|commit]], [[https://git.kernel.org/linus/95132a018f00f5dad38bdcfd4180d1af955d46f6|commit]], [[https://git.kernel.org/linus/2ab0edb505faa9ac90dee1732571390f074e8113|commit]], [[https://git.kernel.org/linus/dedd702a35793ab462fce4c737eeba0badf9718e|commit]], [[https://git.kernel.org/linus/7db69ec9cfb8b4ab50420262631fb2d1908b25bf|commit]] * hsr: Introduce !RedBox support (HSR-SAN to be more precise) for HSR networks [[https://git.kernel.org/linus/542e645c4a4d7dc9a6ef6bbf0e4249fc113728d1|commit]], [[https://git.kernel.org/linus/40b90bf60ce10310baa7c4c2537cb3ee6ab622b9|commit]], [[https://git.kernel.org/linus/154a82cb64be2f6f88f8eabd0d0353ea66adae43|commit]], [[https://git.kernel.org/linus/680fda4f671452d99401f294f20b60b3fdf24191|commit]], [[https://git.kernel.org/linus/5055cccfc2d1cc1a7306f6bcdcd0ee9521d707f5|commit]] * page_poll allocation error injection [[https://git.kernel.org/linus/9da271f825e42156058a2eb09360bc993853bbba|commit]], [[https://git.kernel.org/linus/ff4b2bfa63bd07cca35f6e704dc5035650595950|commit]], [[https://git.kernel.org/linus/32a4ca1361d7a51e5003d4af4dfbf570f1b5fd00|commit]], [[https://git.kernel.org/linus/12b6c3a0380a220edb03691689167be13faa4f45|commit]], [[https://git.kernel.org/linus/0f0cdf312ecc06e63fbba95caf2844e2c405b076|commit]], [[https://git.kernel.org/linus/ee2512d6bf4168998f3c218fb33ed50544e69e3c|commit]] * Add TX stop/wake counters [[https://git.kernel.org/linus/c39add9b24237a4b4d8455643af9db42ef08b40d|commit]], [[https://git.kernel.org/linus/b56035101e1cdd9c4420ea5da17f09f87fb69285|commit]] * Support dumping a single netdev in qstats [[https://git.kernel.org/linus/23710925928310ec481fc0909a4d44ef89f4241a|commit]], [[https://git.kernel.org/linus/8af4f60472fce1f22db5068107b37bcc1a65eabd|commit]], [[https://git.kernel.org/linus/652332e3f1d6209dab372e0dfc7a5bbe209bf698|commit]], [[https://git.kernel.org/linus/ce05d0f20368b583b43c99a7c8673e8a7187b76b|commit]] * Add a ynl spec for nftables and extends ynl with a --multi command line option that makes it possible to send transactional batches for nftables [[https://git.kernel.org/linus/bf2ac490d28c21a349e9eef81edc45320fca4a3c|commit]], [[https://git.kernel.org/linus/ba8be00f68f5c70eb1df2193251a579923bd9501|commit]], [[https://git.kernel.org/linus/0a966d606c681b891fc7ef2e3ace67ac507a221d|commit]], [[https://git.kernel.org/linus/1ee73168713758515b5a0d6346f58556c9aa72ae|commit]] * ipv4: Remove RTO_ONLINK [[https://git.kernel.org/linus/5618603f5d063c8d769d2e64cd440f787567fd13|commit]] * ipvlan: handle NETDEV_DOWN event [[https://git.kernel.org/linus/229783970838887e72083820efb9270b7f276a11|commit]] * ipvs: allow some sysctls in non-init user namespaces [[https://git.kernel.org/linus/2b696a2a101d36530227056b43e5c4ec05bcefc2|commit]] * l2tp: Support different protocol versions with same IP/port quadruple [[https://git.kernel.org/linus/364798056f518b0bf2f17cd9eaf0dd4e856d7393|commit]] * devlink: series of minor improvements [[https://git.kernel.org/linus/8910f93b95706b4b11485bb0f318f88918a46b04|commit]], [[https://git.kernel.org/linus/3bb946c9d323f4b47b87bd73134125d562f72448|commit]] * devlink: Add port function attribute for IO EQs [[https://git.kernel.org/linus/93197c7c509d0c872de8b4fa17b44db175633f5c|commit]], [[https://git.kernel.org/linus/5af3e3876d567fb79a355bec1cb48e432d69b4fb|commit]] * mptcp * small improvements, fix and clean-ups [[https://git.kernel.org/linus/00797af95f5eedfcec9b247c7e06efbc789e8f6e|commit]], [[https://git.kernel.org/linus/76a86686e3f0ca68b555131ceefa141a57340ed0|commit]], [[https://git.kernel.org/linus/bd11dc4fb969ec148e50cd87f88a78246dbc4d0b|commit]], [[https://git.kernel.org/linus/ce5f6f71b029f6a96267a7d876da4a055d7d1611|commit]], [[https://git.kernel.org/linus/a65198136eaa15b74ee0abf73f12ef83d469a334|commit]], [[https://git.kernel.org/linus/7fad5b37561175527e92a17bc6a71009b0b718e2|commit]], [[https://git.kernel.org/linus/26bc7a6a0beed882032aa7c945e44d7e82887073|commit]], [[https://git.kernel.org/linus/73c900aa3660dae2050af456d1031d098ab4cb1d|commit]] * display "last time" actions info [[https://git.kernel.org/linus/22724c89892f5d08a350941734125194b8f97c21|commit]], [[https://git.kernel.org/linus/18d82cde743237def9f80171e32be1153f5cadac|commit]] * smc: SMC intra-OS shortcut with loopback-ism [[https://git.kernel.org/linus/c8df2d449f645f90a67aaa05a617e6e86c3f1c5e|commit]], [[https://git.kernel.org/linus/04791343d858242dc2bd25e05be480ad1591e900|commit]], [[https://git.kernel.org/linus/46ac64419ded7bcbe1fb8d0f4df3258384a425c2|commit]], [[https://git.kernel.org/linus/c3a910f2380fe294d14e42af66af3d3eed8fecbf|commit]], [[https://git.kernel.org/linus/45783ee85bf337693a99e03cd6142fdcfb06585d|commit]], [[https://git.kernel.org/linus/cc0ab806fc52e77f961b275ebb58024bd0e7adf2|commit]], [[https://git.kernel.org/linus/784c46f5467c3cd516e518de211e26611da5c0fb|commit]], [[https://git.kernel.org/linus/4398888268582cb51b69c6ee94f551bb8d37d12f|commit]], [[https://git.kernel.org/linus/d1d8d0b6c7c68b0665456831fa779174ebd78f90|commit]], [[https://git.kernel.org/linus/f7a22071dbf316c982fb44308874bd7ad9ac2091|commit]], [[https://git.kernel.org/linus/ae2be35cbed2c8385e890147ea321a3fcc3ca5fa|commit]] * ethtool HW timestamping statistics [[https://git.kernel.org/linus/2e0e148c727061009d3db5f436f51890bbb49a80|commit]], [[https://git.kernel.org/linus/adda5401807882f5575364442cd583462fc40ae4|commit]], [[https://git.kernel.org/linus/cd429012f078395c5bfa558e2e81e882b48023b0|commit]], [[https://git.kernel.org/linus/0e9c127729be19adcdf2f5cc1f3450a4322fdf3a|commit]], [[https://git.kernel.org/linus/ca3e10c4d83ad6bb611d07857aade7078c87ad99|commit]], [[https://git.kernel.org/linus/3579032c08c1d313bb53e67e97e9ea77bed48014|commit]] * udpencap: Remove Obsolete UDP_ENCAP_ESPINUDP_NON_IKE Support [[https://git.kernel.org/linus/aeb48a428d7dbe636203ae892e981bcc3e2ac042|commit]] * xfrm: Introduce direction attribute for SA. It aims to streamline the SA configuration process and enhance the clarity of existing SA attributes [[https://git.kernel.org/linus/dcf280ea0aad87e70ef1646d579d11f8a52f8b67|commit]], [[https://git.kernel.org/linus/451b509678978250702bd833c69276e70531f07a|commit]], [[https://git.kernel.org/linus/304b44f0d5a4c2f91f82f7c31538d00485fb484c|commit]], [[https://git.kernel.org/linus/601a0867f86cbb5e137ce485a7eb60cbf9fc5180|commit]], [[https://git.kernel.org/linus/a4a87fa4e96c7746e009de06a567688fd9af6013|commit]] * cfg80211/mac80211 * patches from our internal tree 2024-03-18 [[https://git.kernel.org/linus/97f8df4db4c8ef50b659d8b228c1f42fe111e7c8|commit]], [[https://git.kernel.org/linus/a17a58ad2ff24f0d201fa5f9939182f3757d1737|commit]], [[https://git.kernel.org/linus/134d715e9ee2611edfb51774608ad465266bb3ef|commit]], [[https://git.kernel.org/linus/56cc479188f70bbb6eacbe5ed1e43d96c91ccc6a|commit]], [[https://git.kernel.org/linus/c121514df0daa800cc500dc2738e0b8a1c54af98|commit]], [[https://git.kernel.org/linus/0dfedd48ac539eb8d83e00830346a23a6e98f9f8|commit]], [[https://git.kernel.org/linus/c7378d7d8be0b44d03c990a2686e64d038c694a5|commit]], [[https://git.kernel.org/linus/2e6bd24339a6ff04413b2e49c0f2672d6f0edfa5|commit]], [[https://git.kernel.org/linus/e475355022cf7e6468bcf98bf316ad561e4c58dd|commit]], [[https://git.kernel.org/linus/b7793a1a2f370c28b17d9554b58e9dc51afcfcbd|commit]], [[https://git.kernel.org/linus/dc63b1d08335a6440aac916a20394531c8417683|commit]], [[https://git.kernel.org/linus/ff30bf1e42644e48611aeb637d964fbd88e4fd27|commit]], [[https://git.kernel.org/linus/385972ded343d127e382294e8721a980fb20c106|commit]], [[https://git.kernel.org/linus/6943e00331bb26e78edb2969165e750864a6bc6d|commit]] * cfg80211: handle color change per link [[https://git.kernel.org/linus/91d2b6ee137dc709c8012d4e02c28a308f6753a2|commit]] * Bluetooth: HCI: Remove HCI_AMP support [[https://git.kernel.org/linus/84a4bb6548a29326564f0e659fb8064503ecc1c7|commit]] = Architectures = * ARM * Add the arm64.no32bit_el0 command line option [[https://git.kernel.org/linus/1279e8d0dcead53cf1f51e926a1cf6d2a79332d6|commit]] * Add USER_STACKTRACE support [[https://git.kernel.org/linus/410e471f87465f04d7ae7f8ed16ef8e7a3b5517c|commit]] * Speed up boot with faster linear map creation [[https://git.kernel.org/linus/0e9df1c905d8293d333ace86c13d147382f5caf9|commit]], [[https://git.kernel.org/linus/1fcb7cea8a5f7747e02230f816c2c80b060d9517|commit]], [[https://git.kernel.org/linus/5c63db59c5f89925add57642be4f789d0d671ccd|commit]] * mm: Enable userfaultfd write-protect [[https://git.kernel.org/linus/5b32510af77bdb275b022dc0d6d5b9c61751065b|commit]], [[https://git.kernel.org/linus/55564814a838f1d2429dc757294df798f5262bd2|commit]], [[https://git.kernel.org/linus/f0f5863a0fb0fb48a5881c3f6acca1958899dd76|commit]], [[https://git.kernel.org/linus/b28c74e259675aa0eade6be5d5efaa4d72e06c83|commit]] * bpf: Add support for BPF Arena [[https://git.kernel.org/linus/4dd31243e30843d5f63bccfb0369146e4de1a130|commit]], [[https://git.kernel.org/linus/339af577ec05c8fc0b96f23579614ae853d913ab|commit]] * bpf: Add support for lse atomics in bpf_arena [[https://git.kernel.org/linus/e612b5c1d3ee325aff991b4078b4999bf6bac096|commit]] * KVM: Add NV support for ERET and PAuth [[https://git.kernel.org/linus/213b3d1ea1612c6d26153be446923831c4534689|commit]], [[https://git.kernel.org/linus/814ad8f96e929fa9c60bd360d2f7bccfc1df0111|commit]], [[https://git.kernel.org/linus/95537f06b9e826766f32e513d714e1cda468ef15|commit]], [[https://git.kernel.org/linus/dd0717a998f77f449c70bee82626cbf9913fe78d|commit]], [[https://git.kernel.org/linus/80d8b55a57a18b0b1dac951ea28bfd657b14facc|commit]], [[https://git.kernel.org/linus/719f5206a8fd8336d23ccda6fe2a3287fbfb4c92|commit]], [[https://git.kernel.org/linus/6ccc971ee2c61a1ffb487e46bf6184f7df6aacfb|commit]], [[https://git.kernel.org/linus/f4f6a95bac49144c0d507c24af9905bb999a4579|commit]], [[https://git.kernel.org/linus/a07e9345615fb7e7dd4fd5d88d5aaf49085739d0|commit]], [[https://git.kernel.org/linus/15db034733e4df3ca8ab4bf0a593a8a9b4860541|commit]], [[https://git.kernel.org/linus/1b06b99f25e0c957feb488ff8117a37f592c3866|commit]], [[https://git.kernel.org/linus/4cc3f31914d6df9dba8825db933d19c60028f5a8|commit]], [[https://git.kernel.org/linus/04ab519bb86df10bb8b72054fce9af1d72c36805|commit]], [[https://git.kernel.org/linus/6f57c6be2a0889cc0fd32b0cd2eb25dfee20dde3|commit]], [[https://git.kernel.org/linus/279946ada1f26a905061d0d6f134fff9e7b14239|commit]] * errata: Add workaround for Arm errata 3194386 and 3312417 [[https://git.kernel.org/linus/7187bb7d0b5c7dfa18ca82e9e5c75e13861b1d88|commit]], [[https://git.kernel.org/linus/0ce85db6c2141b7ffb95709d76fc55a27ff3cdc1|commit]], [[https://git.kernel.org/linus/02a0a04676fa7796d9cbc9eb5ca120aaa194d2dd|commit]], [[https://git.kernel.org/linus/ebfc726eae3f31bdb5fae1bbd74ef235d71046ca|commit]] * Add a build target for Flat Image Tree [[https://git.kernel.org/linus/7a23b027ec17b2eb9c8ad9b09006502f3fa38215|commit]], [[https://git.kernel.org/linus/0dc1670bd0cef948ce782d6b3902af9bf8604beb|commit]] * mm: swap: support THP_SWAP on hardware with MTE [[https://git.kernel.org/linus/f238b8c33c6738f146bbfbb09b78870ea157c2b7|commit]] * Device Tree Sources * allwinner: Add Anbernic RG35XX (Plus/H/2024) support [[https://git.kernel.org/linus/0d185df6c9ff841be2460d2f4610de22f326d5dc|commit]], [[https://git.kernel.org/linus/398e5fdf60ed2482115732f12c88f199d27afb75|commit]], [[https://git.kernel.org/linus/0923a6c604fc68300d9b9f8e1205d9abd3025cf6|commit]], [[https://git.kernel.org/linus/6bc6bf8a940a686c4c11ce3a49427e62e355010c|commit]] * Add support for Airoha EN7581 Soc [[https://git.kernel.org/linus/78b08cf6313061499948126aebdf00e1079e4d21|commit]], [[https://git.kernel.org/linus/428ae88ef519f2009fac37563de76ffa6f93046f|commit]] * rockchip: Add Radxa ROCK 3C [[https://git.kernel.org/linus/ee219017ddb50be14c60d3cbe3e51ac0b2008d40|commit]] * Add ArmSom Sige7 board [[https://git.kernel.org/linus/90a5434fc4b4c09fc0b5e4364e8594dabeae0d8d|commit]], [[https://git.kernel.org/linus/81c828a67c78bb03ea75819c417c93c7f3d637b5|commit]], [[https://git.kernel.org/linus/d21ca7a353d3677f0b9c730fb37f7abd373cc9ea|commit]] * allwinner: Add Tanix TX1 support [[https://git.kernel.org/linus/04a9963b4aa5f1f0b7714a28471e0c67ee0d864c|commit]], [[https://git.kernel.org/linus/8ee9a40d05641acb3db0250c1392e008e11753cb|commit]] * freescale: Add Toradex Colibri iMX8DX [[https://git.kernel.org/linus/a92a74691b216004e3a9257774e74b171655bb70|commit]], [[https://git.kernel.org/linus/6f4154f0acdcae79ff120a37c34addee673685c3|commit]], [[https://git.kernel.org/linus/6930b76e685c9c5ab84880f49e5024a7cdb96d86|commit]], [[https://git.kernel.org/linus/6bea37186e622a9875d2872f2040f0eeadb89fda|commit]] * Xperia 1 V support [[https://git.kernel.org/linus/6e4f7e53991ca7e70dc7d5d9d66c833091e1f6ae|commit]], [[https://git.kernel.org/linus/39c596304e44781c1950ea0cbf178d6433ff9c71|commit]], [[https://git.kernel.org/linus/212729551c4186a1a1cbd80379375b1b54488369|commit]], [[https://git.kernel.org/linus/91fc74458d833dbc999aa04ca34c2a197711a0b6|commit]], [[https://git.kernel.org/linus/8d4e652d1b2539196efaef051956fa29e22e9c10|commit]], [[https://git.kernel.org/linus/d0af0537e28f6eace02deed63b585396de939213|commit]], [[https://git.kernel.org/linus/93395f9a8d52b89868d75e278adaf002f99dec22|commit]] * Add Support for RK3326 !GameForce Chi [[https://git.kernel.org/linus/4c4f33be7e4d476566246e7166c54ef175287e00|commit]], [[https://git.kernel.org/linus/387974a21a63b1c7efcbc19c48b9930f6ef5ac63|commit]], [[https://git.kernel.org/linus/59237fc04ee1c4cdf62ad5dba18244713970e36f|commit]] * rockchip: add Forlinx OK3588-C [[https://git.kernel.org/linus/ae914513b2f566d995a41638b643ac8589b6275e|commit]], [[https://git.kernel.org/linus/dbda7254e7df661fd4022c07dda3a7c9660eee47|commit]], [[https://git.kernel.org/linus/f7a9a80da93178fe43b72f13dd55d717b5efff21|commit]] * Add Protonic MECSBC board support [[https://git.kernel.org/linus/6f9dfb7358535136e49d6fe9d31409f20f8cb9a7|commit]], [[https://git.kernel.org/linus/6eb006d7c8271d4ff811b8f13b40e527d35d88e1|commit]] * Add pmic pca9451a support [[https://git.kernel.org/linus/cd290abbdab3fb4db403b6fc0ae4038b22268bee|commit]], [[https://git.kernel.org/linus/0f3b73eb1440d18d2236ac660d4aa76fd726bec7|commit]], [[https://git.kernel.org/linus/54c7a04ea3afa6c566e57b342b8e0ff6e488cdd7|commit]] * Add support for Emcraft Systems NavQ+ kit [[https://git.kernel.org/linus/682729a9d506d066afc8b0563cbeed69c54cce68|commit]], [[https://git.kernel.org/linus/9cdddb03339874f3039955bfb5432bec29407b19|commit]], [[https://git.kernel.org/linus/101e72eeb5ec119fededcc12446fe31e8237aee4|commit]] * NXP S32G3 SoC initial bring-up [[https://git.kernel.org/linus/44b305a2de85b810135ec99f5bd3d67e1ba14232|commit]], [[https://git.kernel.org/linus/66486ed8d0e15ede429227119abe3ae3d79a8763|commit]], [[https://git.kernel.org/linus/15f3df361720de343d125ca01b7b456b8d16327f|commit]], [[https://git.kernel.org/linus/61f1a8f4abba8795d8e81df1bdee03da9000f0e1|commit]] * rockchip: add wolfvision pf5 mainboard [[https://git.kernel.org/linus/28799a7734a0e1a38d01b511ca08d33d8cf91b6c|commit]], [[https://git.kernel.org/linus/6be2ad17acb76c47e544864467680a7b738d7eb8|commit]], [[https://git.kernel.org/linus/37a6d5864fb8226c97eefa59a79de57571e1fee8|commit]], [[https://git.kernel.org/linus/0be29f76633a447e15fc58066ea47688974e68d9|commit]] * Add device tree source for the Au-Zone Maivin AI Vision Starter Kit [[https://git.kernel.org/linus/cba15a6237652c07ed01aaa73623deb68473a940|commit]] * Baisc devicetree support for Amlogic A4 and A5 [[https://git.kernel.org/linus/a654af36fe8b54e360fcf155b785df3aa0eab73e|commit]], [[https://git.kernel.org/linus/6ef63301fa37087414342269bc02a2a930e81779|commit]], [[https://git.kernel.org/linus/a652d67a84575e09b52614a2f81399772d52876b|commit]], [[https://git.kernel.org/linus/7e05175cb7be232450e70fe75ba2a852947eecc8|commit]], [[https://git.kernel.org/linus/8b8e6e24eca07efb4860c97aa773dd36fa3a1164|commit]] * Document ASUS RT-AC3200 and ASUS RT-AC5300 and add device trees [[https://git.kernel.org/linus/4dd01a3721bd0fb1e855ce881c3ee93209449e5d|commit]], [[https://git.kernel.org/linus/961dedc6b4e4ed1c516bc91930d79249192cb959|commit]], [[https://git.kernel.org/linus/b116239094d8ff99ecf3183729c5d459487aec34|commit]], [[https://git.kernel.org/linus/5b4ce81fc1cc8c3361dfd8bc8b0a04a8c2012508|commit]], [[https://git.kernel.org/linus/6fd2ec4283288afe966ff3f6b3cf4e19cdd77570|commit]] * qcom: msm8974: Add Samsung Galaxy S5 China support [[https://git.kernel.org/linus/01088e255a27f396dcbc412e10b26cd14be5ff19|commit]], [[https://git.kernel.org/linus/873d845a357a4d89700cb1bb5b3da68890756f50|commit]], [[https://git.kernel.org/linus/a730364f16ddc65268d828acdbf17f2a762e84be|commit]], [[https://git.kernel.org/linus/16dcf57734620edea32339df2ff8875da00a34c1|commit]] * sun5i: Add PocketBook 614 Plus support [[https://git.kernel.org/linus/caa67b061f60bc0d44e0bb53179a5415da7a913d|commit]], [[https://git.kernel.org/linus/fa4c4df71498cd69fe01c831f60470d1622a4a33|commit]] * qcom: Add support for Motorola Moto G (2013) [[https://git.kernel.org/linus/49481b6a8f35017af23e9fdfb644095f50a474e3|commit]], [[https://git.kernel.org/linus/4785ec47ec890fe66f31ee886a767dbdf2ea6bae|commit]] * Split sony-castor into shinano-common and add Sony Xperia Z3 [[https://git.kernel.org/linus/8d91a5a4a6f5aff714a14ac4a86931aa789655d8|commit]], [[https://git.kernel.org/linus/53426f53eda5e4a17197a8bc7dd1045601db407e|commit]] * imx6ull: add seeed studio NPi dev board [[https://git.kernel.org/linus/e3b5697195c875dd297c83592763b1c1449983b7|commit]], [[https://git.kernel.org/linus/17800d911f45bf8fa706da10fcb4c65d6a1b32bb|commit]] * imx: Add UNI-T UTi260B thermal camera board [[https://git.kernel.org/linus/a1aa1852124130bd1f2c5c6100894b711a5d9b69|commit]] * Add device trees for ASrock E3C256D4I & SPC621D8HM3 [[https://git.kernel.org/linus/c44211af1aa9c6b93178a3993e18a7ebffab7488|commit]], [[https://git.kernel.org/linus/11726eb66dfe18a9019a292f88a0d4b00cf924f0|commit]], [[https://git.kernel.org/linus/dc4a65fdfe635da9d6a76032aa1f729c6a3c0edd|commit]], [[https://git.kernel.org/linus/a3af34284f6dea582f2a6d6dbf08b7c9eb9fc9b7|commit]] * aspeed: x4tf: Add dts for asus x4tf project [[https://git.kernel.org/linus/d8bdd1e8acd54631a59c56f637b18816c5381f61|commit]], [[https://git.kernel.org/linus/dfb3bc5f4d5db43b53efde8835d85d59531b68b0|commit]] * aspeed: Remove Facebook Cloudripper dts [[https://git.kernel.org/linus/1bd612936b558f6868ea1c5734e72fcea3bc49f2|commit]] * Add device tree for IBM system1 BMC [[https://git.kernel.org/linus/e83c420ade3fc7d11ce0d69960582806a803833e|commit]], [[https://git.kernel.org/linus/828e3a94e0edd56f721fcb4b91e40f500e6636b1|commit]] * Add Meta(Facebook) Harma BMC(AST2600) [[https://git.kernel.org/linus/bb3776e564d2190db0ef45609e66f13c60ce5b48|commit]], [[https://git.kernel.org/linus/1e25f2aed7aec527b28fe998603315fcf32a0dd4|commit]] * aspeed: asrock: Add ASRock X570D4U BMC [[https://git.kernel.org/linus/f373cffbdc46f287dd01bb7c4cfbf0b8c9a52d4e|commit]], [[https://git.kernel.org/linus/59f78076807652902bcae8e7926f7467e0a09f3e|commit]] * Add device trees for ASrock E3C256D4I & SPC621D8HM3 [[https://git.kernel.org/linus/c44211af1aa9c6b93178a3993e18a7ebffab7488|commit]], [[https://git.kernel.org/linus/11726eb66dfe18a9019a292f88a0d4b00cf924f0|commit]], [[https://git.kernel.org/linus/dc4a65fdfe635da9d6a76032aa1f729c6a3c0edd|commit]], [[https://git.kernel.org/linus/a3af34284f6dea582f2a6d6dbf08b7c9eb9fc9b7|commit]] * Support !MediaTek MT8188 Media Data Path 3 (MDP3) [[https://git.kernel.org/linus/dfd78c1e1c1628b5c5b4d7b4cd4d51f3ef6593ff|commit]] * Add device tree source for the Au-Zone Maivin AI Vision Starter Kit [[https://git.kernel.org/linus/cba15a6237652c07ed01aaa73623deb68473a940|commit]] * iommu: Add support for Translation Buffer Units [[https://git.kernel.org/linus/b8ca7ce709f8210c13eec022e87a12111db5d745|commit]], [[https://git.kernel.org/linus/414ecb030870a31262e5fd29fd372ee73b32a6be|commit]], [[https://git.kernel.org/linus/960be6e10d4fcb18cfe863e0ceb3213a75eecb81|commit]], [[https://git.kernel.org/linus/54a75d8f14c5ecb6636942765f976fb4633e010c|commit]], [[https://git.kernel.org/linus/d374555ef993433f4d2e08b700dbd27788427d61|commit]] * imx8mp: Add support for HDMI [[https://git.kernel.org/linus/dc23fba7063867ed745cb6f0bd27a0dc5f558dbc|commit]], [[https://git.kernel.org/linus/cc1de24853245e79ed06a9975cebea197c622166|commit]], [[https://git.kernel.org/linus/f490d0cb9360466f6df0def3eccc47fabba9775b|commit]], [[https://git.kernel.org/linus/6ad082bee9025fa8e0ef8ee478c5a614b9db9e3d|commit]], [[https://git.kernel.org/linus/28aff8c2050112f45a26baa2569366ac797b698a|commit]], [[https://git.kernel.org/linus/bcf1b3eec61f2e35f4a0516a882b452ab9fc49b3|commit]], [[https://git.kernel.org/linus/fc67d663aabdfddbba8e16a40c3f6a973face509|commit]], [[https://git.kernel.org/linus/d0f4b70eb9a9ed05a37d963655698906cd4dac9a|commit]], [[https://git.kernel.org/linus/059c53e877ca6e723e10490c27c1487a63e66efe|commit]], [[https://git.kernel.org/linus/f6772c5882d2229b4e0d9aadbcac3eb922e822c0|commit]], [[https://git.kernel.org/linus/697624ee8ad557ab5417f985d2c804241a7ad30d|commit]], [[https://git.kernel.org/linus/8933d29e7703f6f905bc84186b915b0ab4fe03bb|commit]] * Support Neoverse-V2 for Perf Arm SPE [[https://git.kernel.org/linus/f4d9d9dcc70b96b5e5d7801bd5fbf8491b07b13d|commit]] * Add initial ARM MHUv3 mailbox support [[https://git.kernel.org/linus/8608471262ddf4b8ed4120d7211251e8b8dcbda9|commit]], [[https://git.kernel.org/linus/1a0703ede4493bd74f9c6b53f782b749e175a88e|commit]] * meson: add support for MIPI DSI Display [[https://git.kernel.org/linus/2a885bad5ba4d553758d3f1689000cee8e6dae87|commit]], [[https://git.kernel.org/linus/fde2d69c1626bebb3a8851909c912e582db1ca95|commit]], [[https://git.kernel.org/linus/bb5aa08572b5313157c093a09d53ebf2efda3dc1|commit]], [[https://git.kernel.org/linus/b70cb1a21a54236be24c03787eecc40c451158c3|commit]], [[https://git.kernel.org/linus/ef5a84d716042871599ff7c8ff571a6390b99718|commit]], [[https://git.kernel.org/linus/6f1c2a12ed1138c3e680935718672d361afee372|commit]], [[https://git.kernel.org/linus/5c9837374ecf55a1fa3b7622d365a0456960270f|commit]] * Acer Aspire 1 embedded controller [[https://git.kernel.org/linus/d3e815eaab582398ac2257d73399c8cf741bf64b|commit]], [[https://git.kernel.org/linus/2b3efb7c515111eaa009f014b16bce8417fb2828|commit]], [[https://git.kernel.org/linus/363c8aea25728604537b170a1cc24e2f46844896|commit]], [[https://git.kernel.org/linus/6c4d24d60eb887015ae0356b4fc58cd06e74da31|commit]] * Add SoC identification for Renesas RZ/V2H SoC [[https://git.kernel.org/linus/27e51e83891bb4b9c806bae1ffb17c44fd8ea459|commit]], [[https://git.kernel.org/linus/0be9a322307994443e854efd6a05b129c26ce287|commit]], [[https://git.kernel.org/linus/d4319f220f577156200ad43c823e22be05f34523|commit]], [[https://git.kernel.org/linus/66010ba94c9b9c273eb9682132d6b809440b9013|commit]] * qcom: Add !X1E80100 platform and SMB2360 PMIC [[https://git.kernel.org/linus/e025171d1ab1edf286c102f7adecafd51c3a84c3|commit]], [[https://git.kernel.org/linus/e876303c6f18da4c649d97f6d488ee0a850ad384|commit]], [[https://git.kernel.org/linus/734364d0ddee6c145705bac89400266c972efc0b|commit]] * soc: mediatek: mtk-mutex: Add support for MT8188 VPPSYS [[https://git.kernel.org/linus/26bb17dae6fa3c828b53d86839589edc1a523d91|commit]] * SCMI multiple vendor protocol support [[https://git.kernel.org/linus/fc110108b98305efa24bb8c355e90b5cc2a01a5f|commit]] * arm_scmi: Add basic support for SCMI v3.2 pincontrol protocol [[https://git.kernel.org/linus/2145af01b9cb326b7dd202a4281976fae614183e|commit]] * Add initial ARM MHUv3 mailbox support [[https://git.kernel.org/linus/8608471262ddf4b8ed4120d7211251e8b8dcbda9|commit]], [[https://git.kernel.org/linus/1a0703ede4493bd74f9c6b53f782b749e175a88e|commit]] * firmware: arm_ffa: Add support for FFA_MSG_SEND2 [[https://git.kernel.org/linus/02c19d84c7c5026624d181b8e4cdc8488134d013|commit]] * POWERPC * crash: Kernel handling of CPU and memory hotplug [[https://git.kernel.org/linus/849599b702ef8977fcd5b2f27c61ef773c42bb88|commit]], [[https://git.kernel.org/linus/79365026f86948b52c3cb7bf099dded92c559b4c|commit]], [[https://git.kernel.org/linus/f5f0da5a7b18fab383bac92044fd8f4f288c9d38|commit]], [[https://git.kernel.org/linus/118005713e35a1893c6ee47ab2926cca277737de|commit]], [[https://git.kernel.org/linus/b741092d59761b98781fcb4f3f521312ed8d5006|commit]], [[https://git.kernel.org/linus/0857beff9c1ec8bb421a8b7a721da0f34cc886c0|commit]] * Make fadump resilient with memory add/remove events [[https://git.kernel.org/linus/57e6700145c5d1f49c52137e9163f73ec5441256|commit]], [[https://git.kernel.org/linus/bc446c5acabadeb38b61b565535401c5dfdd1214|commit]], [[https://git.kernel.org/linus/c6c5b14dac0d1bd0da8b4d1d3b77f18eb9085fcb|commit]] * fadump: pass additional args to dump capture kernel [[https://git.kernel.org/linus/3416c9daa6b13c0e2a656d4e2dee8de95f9a38cf|commit]], [[https://git.kernel.org/linus/683eab94da75bcf55a9c65e0c31d0529edebe86d|commit]], [[https://git.kernel.org/linus/78d5cc15fb7d1b2683f0baf418a9a870c02319fb|commit]] * Add dynamic DEXCR support [[https://git.kernel.org/linus/9930fba02a1c587849aea1e6c5688168013c065f|commit]], [[https://git.kernel.org/linus/9c4866b209ad31cae7c832d45c6137ce6a993ca0|commit]], [[https://git.kernel.org/linus/75171f06c4507c3b6b5a69d793879fb20d108bb1|commit]], [[https://git.kernel.org/linus/bbd99922d0f4518518282217159666c679c6a0d1|commit]], [[https://git.kernel.org/linus/d7228a58d9438d6f219dc7f33eab0d1980b3bd2f|commit]], [[https://git.kernel.org/linus/f88723a609787254f7645eb6ac261b8363e8a5bc|commit]], [[https://git.kernel.org/linus/5bfa66bf86d792bbcc76bc09cf99a2ae9d6e0eec|commit]], [[https://git.kernel.org/linus/628d701f2de5b9a16d1dd82bea68fd895f56f1a1|commit]], [[https://git.kernel.org/linus/9248edf31ab28723fb00900ecb8bacdb05eeefff|commit]] * bpf: enable kfunc call [[https://git.kernel.org/linus/61688a82e047a4166436bf2665716cc070572ffa|commit]] * dts: add power management nodes to FSL chips [[https://git.kernel.org/linus/b12ba096b89084d1e2d6ebdb71b852eeebef95d3|commit]] * X86 * vdso: Handle potential multiplication overflow [[https://git.kernel.org/linus/e8e9d21a5df655a62ab4611fd437fb7510d2f85c|commit]], [[https://git.kernel.org/linus/3094c6db1cba0bbca6ea19c777762c26fee747d7|commit]], [[https://git.kernel.org/linus/d0304569fb019d1bcfbbbce1ce6df6b96f04079b|commit]], [[https://git.kernel.org/linus/fb82fe2fe8588745edd73aa3a6229facac5c1e15|commit]], [[https://git.kernel.org/linus/456e3788bc7164c1c8298045e04068b8e3d8e413|commit]], [[https://git.kernel.org/linus/5b26ef660a690e424d9548fdf0565d4172d5d88f|commit]], [[https://git.kernel.org/linus/9af4548e828aa2ea66f54433c5747f64124a6240|commit]], [[https://git.kernel.org/linus/e809a80aa0bcf802f99407c23fd6be6fd4eb250a|commit]], [[https://git.kernel.org/linus/670be12ba8f5d20ee2fb0531be6977005cd62401|commit]], [[https://git.kernel.org/linus/e84f43e34faf85816587f80594541ec978449d6e|commit]], [[https://git.kernel.org/linus/0c68458b0a5878d735572b4f4d91219a1db7c784|commit]], [[https://git.kernel.org/linus/a729a63c6b2ebd8bc37646519d404f005ea8f1b2|commit]], [[https://git.kernel.org/linus/c8e3a8b6f2e62661d838ae222774121ae23777a4|commit]], [[https://git.kernel.org/linus/1beb35ec615f676d49d68b6dc23c7418ba8ff145|commit]], [[https://git.kernel.org/linus/135225a363ae67bc90bde7a2cbbe1ea0f152ba22|commit]], [[https://git.kernel.org/linus/e98ab3d4159e6bab4e391f376a1e548dd4d32524|commit]] * purgatory: Switch to the position-independent small code model [[https://git.kernel.org/linus/cba786af84a0f9716204e09f518ce3b7ada8555e|commit]] * perf/rapl: Add support for Intel Arrow Lake and Lunar Lake [[https://git.kernel.org/linus/0a07d3c7a1d205b47d9f3608ff4e9d1065d63b6d|commit]], [[https://git.kernel.org/linus/51031cc3f903e202cb79a27766e10227b9cace97|commit]] * Take NUMA node into account when allocating per-CPU cpumasks [[https://git.kernel.org/linus/e0a9ac192fd62322b932c6018db60217b3ad866d|commit]] * mce: Implement recovery for errors in TDX/SEAM non-root mode [[https://git.kernel.org/linus/7911f145de5fecbee1d67f27f73bec12f0fbc472|commit]] * perf/amd: add LBR capture support outside of hardware events [[https://git.kernel.org/linus/9794563d4d053b1b46a0cc91901f0a11d8678c19|commit]], [[https://git.kernel.org/linus/a4d18112e5317c120bcadeb486fbe950f749bb5e|commit]], [[https://git.kernel.org/linus/1eddf187e5d087de4560ec7c3baa2f8283920710|commit]], [[https://git.kernel.org/linus/0dbf66fa7e80024629f816c2ec7a9f3d39637822|commit]] * Enable shadow stacks for x32 [[https://git.kernel.org/linus/2883f01ec37dd8668e7222dfdb5980c86fdfe277|commit]] * crypto * Faster AES-XTS on modern x86_64 CPUs [[https://git.kernel.org/linus/aa2197f566479a204fcadb3205160837c3b82f66|commit]], [[https://git.kernel.org/linus/d6371688101223a355860d2eff51907e1aea984e|commit]], [[https://git.kernel.org/linus/996f4dcbd231ec022f38a3c27e7fc45727e4e875|commit]], [[https://git.kernel.org/linus/7d4700d16186b9295d1419625c822cfa1d27fb7b|commit]], [[https://git.kernel.org/linus/ee63fea005be4a84a50603269ac9ca2c9bf9c6ca|commit]], [[https://git.kernel.org/linus/e787060bdfa35f8b40ef4d277a345ee35b41039f|commit]] * aes-xts: additional tuning [[https://git.kernel.org/linus/543ea178fbfadeaf79e15766ac989f3351349f02|commit]], [[https://git.kernel.org/linus/e619723a857dfdcf0050713f12b3916816cd8d12|commit]], [[https://git.kernel.org/linus/2717e01fc3fb4d37b625b9bd6cf161d0d9d5c4b5|commit]] * aes-xts: handle CTS encryption more efficiently [[https://git.kernel.org/linus/1d27e1f5c8f7ade40f0e85ddecbe9158393265e5|commit]] * bpf: Add support for certain atomics in bpf_arena to x86 JIT [[https://git.kernel.org/linus/d0a2ba197bcbeaa795c5c961d927bcaf55964669|commit]], [[https://git.kernel.org/linus/d503a04f8bc0c75dc9db9452d8cc79d748afb752|commit]] * boot: Add a fallthrough annotation [[https://git.kernel.org/linus/dd0716c2b87792ebea30864e7ad1df461d4c1525|commit]] * KVM * Add SEV-ES hypervisor support for GHCB protocol version 2 [[https://git.kernel.org/linus/4af663c2f64a8d252e690c60cf8b8abf22dc2951|commit]], [[https://git.kernel.org/linus/8d1a36e42be6b0864c2c30f94536663b6f08fb48|commit]], [[https://git.kernel.org/linus/ae01818398236ad6d8ecd6970334baf0b7c57409|commit]], [[https://git.kernel.org/linus/d916f00316b206255164392eeb2aca5f87cdb18a|commit]] * SEV: allow customizing VMSA features [[https://git.kernel.org/linus/4dd5ecacb9a45cece10cc8279d8739584c5025ef|commit]], [[https://git.kernel.org/linus/d18c8648166e34d93b9d4a48e975bb24514d4a16|commit]], [[https://git.kernel.org/linus/8c53183dbaa23db7a650197b92566772b38c1e12|commit]], [[https://git.kernel.org/linus/605bbdc12bc8839b97f8755d74fc3fd4bf206588|commit]], [[https://git.kernel.org/linus/517987e3fb1909415b9231ef167e2a79208aaa73|commit]], [[https://git.kernel.org/linus/0d7bf5e5b00a131cc02ecadbbf42563c0721aaeb|commit]], [[https://git.kernel.org/linus/4c180a57b03a3fec46a66c608ff525bf26b3a3be|commit]], [[https://git.kernel.org/linus/eb4441864e03dab04754f0b5c7ebbc98ceee099c|commit]], [[https://git.kernel.org/linus/4f5defae708992dd2658a45c8d09e57517432e5a|commit]], [[https://git.kernel.org/linus/dfc083a181bac7d36992d21274e6f5820d5518ef|commit]], [[https://git.kernel.org/linus/535e7b4b5ef220be374b895684f274872aebd0f8|commit]], [[https://git.kernel.org/linus/26c44aa9e076ed83d7793c55ac5082086a89c0cd|commit]], [[https://git.kernel.org/linus/1ff3c89032a8f241502a0ba8a95fe0133707a061|commit]], [[https://git.kernel.org/linus/2a955c4db1dd37ea312e57a3556107cdd4d2538e|commit]], [[https://git.kernel.org/linus/ac5c48027bacb1b5525120db6d013373e0520b50|commit]], [[https://git.kernel.org/linus/546d714b0880f20572d21ece5b9544c0e37a7a49|commit]], [[https://git.kernel.org/linus/4ebb105e6c6f374fdc4e0302000e9fee1e2f5936|commit]] * platform * Show Lunar Lake S0ix blocker counter in PMC Core [[https://git.kernel.org/linus/86cc9c70fb6a881a92e51017438ed84d46010471|commit]], [[https://git.kernel.org/linus/d8dc1b95dec9586dacfc3963c94b3f89c8a95a2b|commit]], [[https://git.kernel.org/linus/4f3eec14729eced6ef5ef7242b63ca14377d87fe|commit]] * x86-android-tablets: Add swnode for Xiaomi pad2 indicator LED [[https://git.kernel.org/linus/fcc6220ddc7e54d8442287273d0cb8c415ada022|commit]] * x86-android-tablets: Add Lenovo Yoga Tablet 2 Pro 1380F/L [[https://git.kernel.org/linus/b2ed33e8d486ab2f1920131dd76fab38c8ef3550|commit]], [[https://git.kernel.org/linus/3eee73ad42c3899d97e073bf2c41e7670a3c575c|commit]], [[https://git.kernel.org/linus/3de0f2627ef849735f155c1818247f58404dddfe|commit]] * wmi: Add MSI WMI Platform driver [[https://git.kernel.org/linus/9c0beb6b29e75cacd5fdc63ce6d8502e73e782b8|commit]] * touchscreen_dmi: Add support for setting touchscreen properties from cmdline [[https://git.kernel.org/linus/0b178b02673998f5acca5a0365a8858ca45beedb|commit]] * touchscreen_dmi: Add info for 2 new models [[https://git.kernel.org/linus/3050052613790e75b5e4a8536930426b0a8b0774|commit]], [[https://git.kernel.org/linus/7c8639aa41343fd7b3dbe09baf6b0791fcc407a1|commit]] * thinkpad_acpi: Refactor hotkey handling and add support for some new hotkeys [[https://git.kernel.org/linus/c1a8c7f1dc2ff4e0041fd333317bca06615fbb9e|commit]], [[https://git.kernel.org/linus/8f0215401204cff64a9bcaa950002d4456f7c6b3|commit]], [[https://git.kernel.org/linus/1a22cb1c4430aec49ea19346bc656805273c0e8c|commit]], [[https://git.kernel.org/linus/31456ffa7b73f2b46b07b9b863eed332d05f5c23|commit]], [[https://git.kernel.org/linus/fd1e3344d13f1eedb862804dd1d2d5e184cf8eae|commit]], [[https://git.kernel.org/linus/42f7b965de9dad87857723422115a1a36fd2e169|commit]], [[https://git.kernel.org/linus/9e5d6b982c5491a4590fa2d4b5494527c4527407|commit]], [[https://git.kernel.org/linus/33dc2efda4e2ec48a77338c75b55325801492f09|commit]], [[https://git.kernel.org/linus/5a3fc7a898574ec665ed8841691ce372fe22b992|commit]], [[https://git.kernel.org/linus/7545dc754b5555dbef2c966cce3fab48d8f22a68|commit]], [[https://git.kernel.org/linus/e7e630e0b516a03b52e662625858709c93540ba2|commit]], [[https://git.kernel.org/linus/4a3725d7612d67cace3390ce467544397d9a3f2d|commit]], [[https://git.kernel.org/linus/d3272c744518b3ccecec12c1e1dd4366f69d0854|commit]], [[https://git.kernel.org/linus/99ce461c845adb5877c21d960b369aa86b8e1f41|commit]], [[https://git.kernel.org/linus/56b3667d4ed34fe21de878b49eb964facc75b0d4|commit]], [[https://git.kernel.org/linus/b070f13c978b7fe9e21f0b539f1eabadd103a100|commit]], [[https://git.kernel.org/linus/33ecfb852280bdeee906015a7d171a40abf9683d|commit]], [[https://git.kernel.org/linus/e397c564298c2e91aea3887990da8e8eddb65277|commit]], [[https://git.kernel.org/linus/0a1f7f576082cad93d2c663fc0a5f0108aad5105|commit]], [[https://git.kernel.org/linus/d761684afda3a784b9e5e88281d4f52cc0cffa08|commit]], [[https://git.kernel.org/linus/32c284b7bc4357c755edf5d09ec932f40ebf9928|commit]], [[https://git.kernel.org/linus/a9b0b1ee59a79d0d3853cba9a4b7376ea15be21f|commit]], [[https://git.kernel.org/linus/276d91599f828d97bf579674a24a40662cd8ab41|commit]], [[https://git.kernel.org/linus/ba69660627eadb0983483fff376dceb55a773562|commit]] * add FnLock LED class device to ideapad laptops [[https://git.kernel.org/linus/07f48f668fac64d13156461aa05602e129cbabba|commit]], [[https://git.kernel.org/linus/692c80760fa9c463e3690b0f09b881538b3bb4be|commit]], [[https://git.kernel.org/linus/7ab6c64663a001723e7febbf444afce93910d26b|commit]] * asus-wmi: add new features, clean up, fixes [[https://git.kernel.org/linus/892fc4b57dc576326a25b55833ae63d1310f113d|commit]], [[https://git.kernel.org/linus/7e7a5dee49732ed01a3a17c9a3edf027fb9457fe|commit]], [[https://git.kernel.org/linus/eb3bac90549a226df204a57eac45bbe5d6b4a0cf|commit]], [[https://git.kernel.org/linus/ae834a549ec1d4cf372ffba1af1c14148807af55|commit]], [[https://git.kernel.org/linus/f81d13df1aa8b02fa8c6ac4b396dcda92fdfdac0|commit]], [[https://git.kernel.org/linus/a94e8a56f9e1258d2f4ce613976207d0c02eb181|commit]], [[https://git.kernel.org/linus/5fc378183d94186a768d6727fe5610d34f0dc4f6|commit]], [[https://git.kernel.org/linus/e0ae0ecce4869f841ea7cb20fca1b2c865c13339|commit]], [[https://git.kernel.org/linus/88c0ef69dd881d8acceb62c48b66674367c962b7|commit]] * Add lenovo WMI camera button driver [[https://git.kernel.org/linus/fe7af61159b85c2e78b4626be282e7fc9c487d46|commit]] * Support partitioned systems [[https://git.kernel.org/linus/fe4211d21fee3672b251f9a535eaf0a0cf0b51e1|commit]], [[https://git.kernel.org/linus/9d1d36268f3d8276aefd1fad4e0a415dc8c36edd|commit]], [[https://git.kernel.org/linus/59eb0814d6a3541f55b1d6e3d52df1226de41f3e|commit]], [[https://git.kernel.org/linus/1192534407d0f8ab9a0503052777260ae74968c3|commit]], [[https://git.kernel.org/linus/7e8a09e05a0f0ccaf6b2a16f12ed6edc8e62c47d|commit]], [[https://git.kernel.org/linus/2920141fc149f71bad22361946417bc43783ed7f|commit]], [[https://git.kernel.org/linus/e4e365b43460f9b2421164b6b661d138f87edad3|commit]], [[https://git.kernel.org/linus/8c5a689eef5b1c1eaddd17b0b1f2609d3f66c5b0|commit]], [[https://git.kernel.org/linus/c8405cc815151a8b2fa6f7510ede8256228e45da|commit]], [[https://git.kernel.org/linus/afad97495836774e882b475d6569df5b9e95e73e|commit]] * ISST: Support SST-BF and SST-TF per level [[https://git.kernel.org/linus/76f09e22027fc0dbec1e9c82898d9059b4455df6|commit]] * Add new MeeGoPad ANX7428 Type-C Cross Switch driver [[https://git.kernel.org/linus/2513563edc984c3cf05bca1244b46de06daa4755|commit]] * Add new Dell UART backlight driver [[https://git.kernel.org/linus/d9bab776ed9e50fa076d2b42544b0c612be16d7c|commit]], [[https://git.kernel.org/linus/484bae9e4d6acb5eec39e1ea47f9aa43f11b154d|commit]] * Add ACPI quickstart button driver [[https://git.kernel.org/linus/23f1d8b47d125dcd8c1ec62a91164e6bc5d691d0|commit]], [[https://git.kernel.org/linus/f1cacd216dea03e14999c782cd8429b03c90e0f8|commit]] * amd/pmc: Add AMD MP2 STB functionality [[https://git.kernel.org/linus/2dc77993cb5eb311d6bb5584d30c3d1d42d9fa4a|commit]] * amd: pmc: Add new ACPI ID AMDI000B [[https://git.kernel.org/linus/ac0729c1258a12bbda6815ebf59a4910cf7c9097|commit]] * amd: pmf: Add new ACPI ID AMDI0105 [[https://git.kernel.org/linus/d2ae6ed27e82dc10a4dc9f4da6bbedd2ca110773|commit]] * Intel On Demand: Adds driver and tool support for a new "current" meter that allows reading the most current, but not attested, value of the meter counters [[https://git.kernel.org/linus/76f2bc17428c890754d11aa6aea14b332ba130c5|commit]], [[https://git.kernel.org/linus/09d70ded6c566fd00886be32c26d0b2004ef239c|commit]], [[https://git.kernel.org/linus/688ee9b9ec6cbf238aa3874e742221279b5e7667|commit]], [[https://git.kernel.org/linus/d9a4b2aaec4c6f6c9ba1a956d0cf118e439e941c|commit]], [[https://git.kernel.org/linus/7c277d4d16bac2e21ebb53e583d8db0b08cbdeb1|commit]], [[https://git.kernel.org/linus/53310fe98c7b7a48b31e8e6e556a25a1238a7691|commit]], [[https://git.kernel.org/linus/a66f962f67ebbbdf7c82c6652180930c0169cf13|commit]], [[https://git.kernel.org/linus/46b5e5eb1d41175bcf360d32f7b30f48cdbf99dc|commit]], [[https://git.kernel.org/linus/f24644581ba92c901bbc2b69a1a6f6d178ee59d4|commit]] * perf intel pt: Update instruction decoder for APX and other new instructions [[https://git.kernel.org/linus/159039af8c074a14545fd695c38d2772b3c98b12|commit]], [[https://git.kernel.org/linus/87bbaf1a4be4904fcf04a024e7c1d9f9d1fa945b|commit]], [[https://git.kernel.org/linus/59162e0c11d7257cde15f907d19fefe26da66692|commit]], [[https://git.kernel.org/linus/b8000264348979b60dbe479255570a40e1b3a097|commit]], [[https://git.kernel.org/linus/a5dd673ab7d269e4a5b6565fc2b5c6295a079605|commit]], [[https://git.kernel.org/linus/690ca3a3067f760bef92ca5db1c42490498ab5de|commit]], [[https://git.kernel.org/linus/eada38d575a2b947b3ffefd570fea90a5a17feb3|commit]], [[https://git.kernel.org/linus/9dd3612895de3d967ebd607423571bd6b0854ccc|commit]] * intel_th: pci: Add Granite Rapids support [[https://git.kernel.org/linus/e44937889bdf4ecd1f0c25762b7226406b9b7a69|commit]] * intel_th: pci: Add Lunar Lake support [[https://git.kernel.org/linus/f866b65322bfbc8fcca13c25f49e1a5c5a93ae4d|commit]] * iommu/amd: SVA Support (Part 4) - SVA and IOPF [[https://git.kernel.org/linus/1af95763e0a33e854b4c0a961756719eb8a2b74d|commit]], [[https://git.kernel.org/linus/eaca8889a1ef50783bcaad143668b735d136fe46|commit]], [[https://git.kernel.org/linus/a0c47f233e683e6a81fced5c9c9cef6fa0da9446|commit]], [[https://git.kernel.org/linus/c9e8701132e6cc162d082e7dad8a2e9110f5f8fd|commit]], [[https://git.kernel.org/linus/c5ebd09625391000026b0860952e05d0f7fc4519|commit]], [[https://git.kernel.org/linus/978d626b8f1a239acc635323d731c77eae54eb61|commit]], [[https://git.kernel.org/linus/c4cb23111103a841c2df30058597398443bcad5f|commit]], [[https://git.kernel.org/linus/65442507026a79e2de8014880e6ba376b8b44584|commit]], [[https://git.kernel.org/linus/db44bd517ff2de4224fdb0e9c0db426572f9fa11|commit]], [[https://git.kernel.org/linus/405e2f122b83363f6793c5cb086cede536495b4f|commit]], [[https://git.kernel.org/linus/9433d5b2ace529d8a66863d4b5127c6c4ca6e4c2|commit]], [[https://git.kernel.org/linus/25efbb055863079bbd47b32fc6d3c4a6f082daf1|commit]], [[https://git.kernel.org/linus/7c5b7176f0c3996adbe853adb1f857bd4f82b1e2|commit]], [[https://git.kernel.org/linus/e08fcd901c4301c150a8212df28df7f4d4811988|commit]], [[https://git.kernel.org/linus/61928bab9d26b147d41d9b9a4d2328d0e1d6c0c0|commit]] * iommu/amd: Enable Guest Translation after reading IOMMU feature register [[https://git.kernel.org/linus/de111f6b4f6a3010020825d22a068f416bc29c95|commit]] * stm class/intel_th: Updates for v6.10 [[https://git.kernel.org/linus/c4a30def564d75e84718b059d1a62cc79b137cf9|commit]], [[https://git.kernel.org/linus/79b510c49207489f7e019b4c397b04d22b4dfd8d|commit]], [[https://git.kernel.org/linus/146bb64e49393317418630c85d0e1dbdf7e996e2|commit]], [[https://git.kernel.org/linus/748c7ebac8dbcf54c2840a9a74fc9efeb4d76b7f|commit]], [[https://git.kernel.org/linus/07cf835689d700d46d88b5bbffc32bc210319f5f|commit]], [[https://git.kernel.org/linus/854afe461b009801a171b3a49c5f75ea43e4c04c|commit]], [[https://git.kernel.org/linus/2e1da7efabe05cb0cf0b358883b2bc89080ed0eb|commit]], [[https://git.kernel.org/linus/a4f813c3ec9d1c32bc402becd1f011b3904dd699|commit]], [[https://git.kernel.org/linus/ee27f44e1592d849cb90b1f1c38cae0c7e32defa|commit]], [[https://git.kernel.org/linus/872d28001be56b205bd9b3f97cea1571a1bde317|commit]], [[https://git.kernel.org/linus/3df463865ba42b8f88a590326f4c9ea17a1ce459|commit]], [[https://git.kernel.org/linus/988001c735944015a99292e4d996f052a0f5c0b7|commit]], [[https://git.kernel.org/linus/24644ae031e71491e729d415d88c3cea98288c39|commit]], [[https://git.kernel.org/linus/3c720592908014979873b7611333300641263d2d|commit]], [[https://git.kernel.org/linus/d758a8fa8ce0566947677f7e70bf70c57ad9445c|commit]] * powercap: Introduce TPMI RAPL PMU support [[https://git.kernel.org/linus/963a9ad3c589dc0f922697faea53c69098083945|commit]], [[https://git.kernel.org/linus/575024a8aa7cf1dff49b94092f774ed1c90586be|commit]] * powercap: intel_rapl: Add support for ArrowLake-H platform [[https://git.kernel.org/linus/94baae2b91818ad3167a0ba429438242b196fb88|commit]] * RISCV * bpf * Add support for BPF Arena [[https://git.kernel.org/linus/21ab0b6d0cfcb8aa98e33baa83f933f963514027|commit]], [[https://git.kernel.org/linus/633a6e01d1a20b24a16899094c249a8cb2aad4b2|commit]] * Inline helpers in arm64 and riscv JITs [[https://git.kernel.org/linus/1ae6921009e5d72787e07ccc04754514ccf6bc99|commit]], [[https://git.kernel.org/linus/19c56d4e5be102cd118162b9f72d9c6d353e76fc|commit]] * KVM: RISC-V SBI v2.0 PMU improvements and Perf sampling in KVM guest [[https://git.kernel.org/linus/c2f41ddbcdd75689d9f512638a40263e3127be93|commit]], [[https://git.kernel.org/linus/08fb07d6dcf7101c1c98782f2b4e27aca7f855c3|commit]], [[https://git.kernel.org/linus/4ace2573d13ee22ebc5bb90efca6c2c9b27b2ef8|commit]], [[https://git.kernel.org/linus/9408a23fac62d31de067bd2b0099eb9151395345|commit]], [[https://git.kernel.org/linus/5ef2f3d4e747c7851678ad2b70e37be886a8c9eb|commit]], [[https://git.kernel.org/linus/3a21b37c47f8ea7e7efcb7173d82e0ab147bbcb1|commit]], [[https://git.kernel.org/linus/3ddb6d4df67dad5a8501ffe3133eb31e0717acf4|commit]], [[https://git.kernel.org/linus/b737fc24a12ceb6c393d9d68def6a6608fdf11cc|commit]], [[https://git.kernel.org/linus/158cb9e61cb7f9ed07384584fe34fb9c39590293|commit]], [[https://git.kernel.org/linus/3203b9474356503ac5a28030b5d46d85a6491c5f|commit]], [[https://git.kernel.org/linus/5d4acb7f2e1af1a5160870dbd11d2bd3a86007ed|commit]], [[https://git.kernel.org/linus/98ce906bd0a64b59da894263b1ce0d2c19c70893|commit]], [[https://git.kernel.org/linus/4e21f2238ad5c26d8a9be5fc8771d4e5d544d706|commit]], [[https://git.kernel.org/linus/2196c066f13861919a83b3b3ffda08a79cf87bdd|commit]], [[https://git.kernel.org/linus/16b0bde9a37c0af404318ca3cf64a11edccb8777|commit]], [[https://git.kernel.org/linus/7dda24bacc05ae4e43b75aab347e4df07e002502|commit]], [[https://git.kernel.org/linus/57990ab90ce31aadac0d5a6293f5582e24ff7521|commit]], [[https://git.kernel.org/linus/d1927f64e0e1094f296842e127138cb5f3bf3c6d|commit]], [[https://git.kernel.org/linus/b994cdfcdf7b9681d3986538d0aa37835cc0a285|commit]], [[https://git.kernel.org/linus/8f486ced2860e1023d402d20bf8d785b6f040086|commit]], [[https://git.kernel.org/linus/c69f9cb0595ff91759b1ff361d19068e16574229|commit]], [[https://git.kernel.org/linus/13cb706e28d9d4d3259954eb08c57b990e4429ea|commit]], [[https://git.kernel.org/linus/97be675bfdb5086a6ad1aeeaa43df78b1afd5a0d|commit]], [[https://git.kernel.org/linus/a8625217a054ca058cf74742e58c2c88460eb202|commit]] * cmpxchg: enable lockless lockref implementation [[https://git.kernel.org/linus/7845f52256e7b8bc97d17b629ea03c87775f2b48|commit]], [[https://git.kernel.org/linus/79d6e4eae9662b9103fecf94d52b44deca56743c|commit]], [[https://git.kernel.org/linus/eb1e5037294652ddf1437f62292c0727183f11ae|commit]] * Create and document PR_RISCV_SET_ICACHE_FLUSH_CTX prctl [[https://git.kernel.org/linus/4202f62cb64b8a04782435f1006c322af2d2619b|commit]], [[https://git.kernel.org/linus/decde1fa209323c77a7498e803350c5f3e992d62|commit]], [[https://git.kernel.org/linus/6a08e4709c58cb324a6324f07acec54e7764c32f|commit]], [[https://git.kernel.org/linus/6b9391b581fddd8579239dad4de4f0393149e10a|commit]], [[https://git.kernel.org/linus/bebc345413f5fb4c8fafb59ff0bd8509197627e6|commit]] * starfive: add Milkv Mars board device tree [[https://git.kernel.org/linus/07da6ddf510beb47c059f515cbb92835e146aeb1|commit]], [[https://git.kernel.org/linus/ac9a37e2d6b6373d657366a365d9e05b32221e3d|commit]], [[https://git.kernel.org/linus/4c536aa462f1e2981147487ca29382f4d48f44b6|commit]], [[https://git.kernel.org/linus/b9a1481f259ca3b3ec197df945e57e4ffaeceaaa|commit]], [[https://git.kernel.org/linus/5e7922abddd4aab1dd604aa3fc7905d2c638c92b|commit]], [[https://git.kernel.org/linus/9276badd9d03ddadc83dc5db35198bcb2503ced9|commit]], [[https://git.kernel.org/linus/0ffce9d49abd9492ea4959ebd3a6e9c12bf3ed70|commit]], [[https://git.kernel.org/linus/ffddddf4aa8d0119c5fba6005b10a1e253a19b59|commit]] * hwprobe: export Zihintpause ISA extension [[https://git.kernel.org/linus/63f93a3ca891fd90353cf81f5d2fc4cbc3508f1a|commit]] * Enable building 64-bit kernels with rust support [[https://git.kernel.org/linus/70a57b247251aabadd67795c3097c0fcc616e533|commit]] * AIA Support [[https://git.kernel.org/linus/2333df5ae51ead2188d07c99e841e159a664741e|commit]], [[https://git.kernel.org/linus/ca8df97fe6798afbe395fc4a8e23bac0c7fbd248|commit]], [[https://git.kernel.org/linus/21a8f8a0eb35ceb21e2c9ddd87468bc3b5ac87c0|commit]], [[https://git.kernel.org/linus/027e125acdbad79e9a7274940e8bf92299b208af|commit]], [[https://git.kernel.org/linus/0151a8db49b0a88f967dca0ea5ae2bee2d67b22a|commit]], [[https://git.kernel.org/linus/0eebc69db358fd2f6fe34cc4db6428df6a540dd7|commit]], [[https://git.kernel.org/linus/3b806a5a1a39d593d6fe0def2ef474402f551f91|commit]], [[https://git.kernel.org/linus/5c5a71d0434093cd42d09afd4e2032c0b16a7da8|commit]], [[https://git.kernel.org/linus/f4e116b2c5eec0dc1ab65e7105c180d4f8627b39|commit]] * S390 * ipl: Introduce sysfs attribute 'scp_data' for dump ipl [[https://git.kernel.org/linus/24bf80f78e5ad45bc3e0886cef86def712bdf3ed|commit]] * stackstrace: Detect vdso stack frames [[https://git.kernel.org/linus/62b672c4ba90e726cc39b5c3d6dffd1ca817e143|commit]] * mm: Uncouple physical vs virtual address spaces [[https://git.kernel.org/linus/c98d2ecae08f02bd2dccd24e7e485e9f0211db65|commit]] * cio: export CHPID operating speed [[https://git.kernel.org/linus/0f987e6caa3c93f36e277624234880459848fa34|commit]] * cio: export extended channel-path-measurement data [[https://git.kernel.org/linus/2dc8903af775ecd51e42c0a2e7afa0e98d1bde45|commit]] * cio: export measurement data for all CMGs [[https://git.kernel.org/linus/5e6bb10ee523d85d688aacaa13405d651ad16214|commit]] * vfio-ap: ap_config sysfs attribute for mdevctl automation [[https://git.kernel.org/linus/3113a29e25fe072d6eb0abccd695d7cc72ac9b6f|commit]], [[https://git.kernel.org/linus/8fb456bc9f9b136d5369f8fdd54597edd692d36d|commit]], [[https://git.kernel.org/linus/f3e3a4008c1d06707fd57664e3071f43b417762d|commit]], [[https://git.kernel.org/linus/e12aa0b5b2fbf324daf62245e76083e6065ec47c|commit]], [[https://git.kernel.org/linus/6e6973948ce6911e35cb559bc53de4156b4a9675|commit]] * ALPHA * cleanups for 6.10 (add clone3 support, drop support of old hardware, etc) [[https://git.kernel.org/linus/3018fdf7bd9ebca7d094e302bbc7ed328820b325|commit]], [[https://git.kernel.org/linus/4bf859076b16f1b7b096ac1f98039a362cee999e|commit]], [[https://git.kernel.org/linus/4e57b6817880946a3a78d5d8cad1ace363f7e449|commit]], [[https://git.kernel.org/linus/d92f1456a198a78788b03ff0f40db187dab63e65|commit]], [[https://git.kernel.org/linus/397c66c2c989ff98a5016c69cb1547676d596fd1|commit]], [[https://git.kernel.org/linus/d2b1e353dacc1bd0e28be9ec9687e3b408e733c6|commit]], [[https://git.kernel.org/linus/430ad3f0ddd7bb0f6ed8c4c45bbce67e2c7ed396|commit]], [[https://git.kernel.org/linus/a4184174be36369c3af8d937e165f28a43ef1e02|commit]], [[https://git.kernel.org/linus/b973afe9d805d04230f55743bda1e34ce5ff8940|commit]], [[https://git.kernel.org/linus/f81f335a56a8e90d5cac38b79661e6fbf35249f1|commit]], [[https://git.kernel.org/linus/5d7531517427429e31d7bb84c00b0c7bec30e280|commit]], [[https://git.kernel.org/linus/20e84a6f3350931859e766e2c8033db48f140c4c|commit]], [[https://git.kernel.org/linus/0ec60e28711fc23afd3a64e9a402d08fb83188c3|commit]], [[https://git.kernel.org/linus/5759b57f03ca07b465dc394112d8f383ef671a82|commit]], [[https://git.kernel.org/linus/82c525bfafb48bc637100348274d824fda494c70|commit]] * LOONGARCH * KVM * Add pv ipi support on !LoongArch VM [[https://git.kernel.org/linus/9753d3037964fffa5c57de8c57168dc1a4832dd4|commit]], [[https://git.kernel.org/linus/316863cb62fe7aaea30e7ef8e6481f1ba414b044|commit]] * Add mmio trace events support [[https://git.kernel.org/linus/7b7e584f90bf670d5c6f2b1fff884bf3b972cad4|commit]] * ARC * Add eBPF JIT support [[https://git.kernel.org/linus/f122668ddcce450c2585f0be4bf4478d6fd6176b|commit]] * OPENRISC * OpenRISC FPU and Signal handling fixups [[https://git.kernel.org/linus/4dc70e1aadfadf968676d983587c6f5d455aba85|commit]], [[https://git.kernel.org/linus/1f33446d0efb101eafad92daf08f711f60daae1a|commit]], [[https://git.kernel.org/linus/c88cfb5cea5f8f9868ef02cc9ce9183a26dcf20f|commit]], [[https://git.kernel.org/linus/ee7e551d28aa03664ead6b45154e20644a2f1040|commit]], [[https://git.kernel.org/linus/c8fdf82ee3447eb5459c3c2e2808a92c96374d4a|commit]] = Drivers = == Graphics == * intel i915 * Implemnt vblank sycnhronized mbus joining changes [[https://git.kernel.org/linus/96c420d5016e5bec57dccb161744c43366b72eca|commit]], [[https://git.kernel.org/linus/359e4f4fed29e446157d98cc7cbdc4ebaae81dd7|commit]], [[https://git.kernel.org/linus/8d7fc2612e4a161a63ed6cddcfe8d3205717b54d|commit]], [[https://git.kernel.org/linus/34d127e2bdef73a923aa0dcd95cbc3257ad5af52|commit]], [[https://git.kernel.org/linus/bea9898561f1d38915128c57fd280a91e5048579|commit]], [[https://git.kernel.org/linus/8c5dbb5039fd7ed4eb0062eaed793f86ee536dd7|commit]], [[https://git.kernel.org/linus/c8361cd3c449055683f4c3f40b129a14fa564918|commit]], [[https://git.kernel.org/linus/2e4d1769b988015a80a3ff1e974756db2821eaf7|commit]], [[https://git.kernel.org/linus/48b85304c00c3b523a44d4cd96a8160becf3e3a4|commit]], [[https://git.kernel.org/linus/3aecee90ac12a351905f12dda7643d5b0676d6ca|commit]], [[https://git.kernel.org/linus/a2e83f27cc06b4f366e8d70ebc1d2659bd16ab62|commit]], [[https://git.kernel.org/linus/e8333ab22cd8c750b7c14d3da7c0eef3ba85527f|commit]], [[https://git.kernel.org/linus/31df4904a56f9b4fdf3ff022a75956f01057f51d|commit]], [[https://git.kernel.org/linus/d91254e932b2a4e443f6086a8e511bba35108fce|commit]] * Bigjoiner modeset sequence redesign and MST support [[https://git.kernel.org/linus/578ff98403cef6284430934616bc4debf3017d0f|commit]], [[https://git.kernel.org/linus/b7ce28038f8ddaaa1300f6abcae951c2ff554935|commit]], [[https://git.kernel.org/linus/e16bcbb011868abd9ed052f5957b77ad3f79fc67|commit]], [[https://git.kernel.org/linus/f3b93eaea3198179126e137dc12ed180d581a9b5|commit]], [[https://git.kernel.org/linus/d403b060933b39f636cae6f5e89cd1522099e553|commit]], [[https://git.kernel.org/linus/3607b30836ae01ff9b2f33ded070901644cb2a21|commit]] * Add new PCI IDs to DG2 platform in driver [[https://git.kernel.org/linus/2bcf0f9bb33d7199a7ba02c2a38c25a4f7f22c3a|commit]] * ALPM AUX-Less [[https://git.kernel.org/linus/71cdfa8cad300caa7afcbba09776bbc8dcfa9e39|commit]], [[https://git.kernel.org/linus/1ccbf135862bc4bcafde0dcbb2180740fddd830c|commit]], [[https://git.kernel.org/linus/0dd21f83698344f008331b2ef7687efb278d8942|commit]], [[https://git.kernel.org/linus/da6a9836ac090403e7ffa59e47b4b8c70386d064|commit]], [[https://git.kernel.org/linus/295099580f0464759c4e3649062272ca64d5d992|commit]] * Remove support for UHBR13.5 [[https://git.kernel.org/linus/ddf8a8bbb5643265883bab0c59adf0648422c4bb|commit]] * DMC wakelock implementation [[https://git.kernel.org/linus/700c34019555392a348f8c03237c1ebb5bf53eb4|commit]], [[https://git.kernel.org/linus/8a8dcb23b6b359c292376439f6946637e376fd83|commit]], [[https://git.kernel.org/linus/fe3b3ed7ff5e570131a787f6d59f3b7245c48077|commit]], [[https://git.kernel.org/linus/765425f598c20841c0d46a36099e2763d2bf3f03|commit]] * Improvments for tc358775 with support for tc358765 [[https://git.kernel.org/linus/005102727d9e5b6fe3e84fb82b9a1880b0844f22|commit]], [[https://git.kernel.org/linus/a4ed72e85c465c18ab8db232669ad7e556c34aac|commit]], [[https://git.kernel.org/linus/123f125550741ca69fda8a3a1baa2230fc596616|commit]], [[https://git.kernel.org/linus/efcfac3e8e37e755ba4207b78209bd6613e59442|commit]], [[https://git.kernel.org/linus/ec710af54a1cf0c905865e5276bd38fea8fce57d|commit]], [[https://git.kernel.org/linus/51debb6d4a2118f6a46dd36b84a82a5a73fa8236|commit]], [[https://git.kernel.org/linus/4aa5fc8dbb85e8e2c486ede4056ca3d4e757c50d|commit]], [[https://git.kernel.org/linus/733daaebe2504e0261f5249d11f4796d0614539d|commit]], [[https://git.kernel.org/linus/30ea09a182cb37c4921b9d477ed18107befe6d78|commit]] * bridge * Improvments for tc358775 with support for tc358765 [[https://git.kernel.org/linus/005102727d9e5b6fe3e84fb82b9a1880b0844f22|commit]], [[https://git.kernel.org/linus/a4ed72e85c465c18ab8db232669ad7e556c34aac|commit]], [[https://git.kernel.org/linus/123f125550741ca69fda8a3a1baa2230fc596616|commit]], [[https://git.kernel.org/linus/efcfac3e8e37e755ba4207b78209bd6613e59442|commit]], [[https://git.kernel.org/linus/ec710af54a1cf0c905865e5276bd38fea8fce57d|commit]], [[https://git.kernel.org/linus/51debb6d4a2118f6a46dd36b84a82a5a73fa8236|commit]], [[https://git.kernel.org/linus/4aa5fc8dbb85e8e2c486ede4056ca3d4e757c50d|commit]], [[https://git.kernel.org/linus/733daaebe2504e0261f5249d11f4796d0614539d|commit]], [[https://git.kernel.org/linus/30ea09a182cb37c4921b9d477ed18107befe6d78|commit]] * LVDS Controller Support for SAM9X75 SoC [[https://git.kernel.org/linus/e95752752eaf06c860811ac5ddf9badf6c1b43ca|commit]], [[https://git.kernel.org/linus/179b0769fc5fc193d7837bdcb6ddee118a0fa9b8|commit]], [[https://git.kernel.org/linus/c24177ca3b27e5a7ddaab8d330cedecd7eb9244a|commit]] * ast * Detect connector status for VGA and SIL164 [[https://git.kernel.org/linus/10021ef27310279c850cf6cb38542c443a995e92|commit]], [[https://git.kernel.org/linus/42f4980da575ffbb1ff73bd8ffdd79662a23e8f6|commit]], [[https://git.kernel.org/linus/0872fee2e1c8a0503006b5dab0ec32901b0bf247|commit]], [[https://git.kernel.org/linus/90170b186ff552ec080ede18b7c3c2aeb6d5b993|commit]], [[https://git.kernel.org/linus/d66cdb638a49a47e616456ffbd1ec4722bc8fda6|commit]], [[https://git.kernel.org/linus/225a8d0bd93eb87fe49947069075260031bad8af|commit]], [[https://git.kernel.org/linus/dfff99cb56904087e35dbecec3d482aa8a95436a|commit]], [[https://git.kernel.org/linus/c0af492c872b949cf3e8b91ef66094bc5f81e181|commit]], [[https://git.kernel.org/linus/8463b66b41add540ef99f5950f42fa10d1a01023|commit]], [[https://git.kernel.org/linus/d95e92e195a6ccb49faa27433bcbb654a3f79b1b|commit]], [[https://git.kernel.org/linus/0a7f04b433fc7c77d8c03eb6b2f32196a3d9b0c5|commit]], [[https://git.kernel.org/linus/e14ab3037383f4e3d026e2aea1ad53644a3735ed|commit]], [[https://git.kernel.org/linus/660ed6ba8f62faab67c0d5c615de82e1a65a4d3f|commit]] * amd * Add SMU 14.0 support [[https://git.kernel.org/linus/6627d845ac33a105625044c8ce8fa0d17cfda40f|commit]], [[https://git.kernel.org/linus/0c1195ca0d02a3db2599738a944bb6a36f6fa234|commit]], [[https://git.kernel.org/linus/7fc712f67ebe0ec3f431c39d63043e2d7b064489|commit]], [[https://git.kernel.org/linus/cd6d69dd9be2b0e586accf82943e9f5b5c592c96|commit]], [[https://git.kernel.org/linus/ee26087f91f027ba7c4905c3801c0368da5aea5f|commit]], [[https://git.kernel.org/linus/ad3e54ab9e38f220b55a1a1299e21a9fd93f2948|commit]], [[https://git.kernel.org/linus/fe6cd9152464ed086fbeb45b6118ca386ee7aca2|commit]] * DC Patches Feb 28, 2020 [[https://git.kernel.org/linus/2d5bb791e24f43b6b4231b7973009987bbcc9b06|commit]], [[https://git.kernel.org/linus/86e9523fb0efce27095d3086473c739cce720d01|commit]], [[https://git.kernel.org/linus/eb004d3ff061a5d3339e5f4981530f40d1212b65|commit]], [[https://git.kernel.org/linus/21afc872fbc29cd68cfde816d1df4d55848c3f61|commit]], [[https://git.kernel.org/linus/88867807564e28409d8220419da7559364109a2a|commit]], [[https://git.kernel.org/linus/f57269f85b284f3a8154e208d7b1eb2abe652eb2|commit]], [[https://git.kernel.org/linus/26fbcb3da77efc77bd7327b7916338d773cca484|commit]], [[https://git.kernel.org/linus/2d7f3d1a5866705be2393150e1ffdf67030ab88d|commit]], [[https://git.kernel.org/linus/f1b8479dc997a0e625f3d94920cd778f55e299b5|commit]], [[https://git.kernel.org/linus/460ea5b3b61604171e6668ce1db2d640c4c8ae7f|commit]], [[https://git.kernel.org/linus/75eb8f7df65c5e6eb22a5aff8deb60ce0b65de1a|commit]], [[https://git.kernel.org/linus/7fb19d9510937121a1f285894cffd30bc96572e3|commit]], [[https://git.kernel.org/linus/c90835b0648edb78f4630b89a2897972c3571cbd|commit]], [[https://git.kernel.org/linus/d62d5551dd615f9e488b13595d69b308cd019e16|commit]], [[https://git.kernel.org/linus/e4251d110154b6c4090d0188404345ded4ecefbe|commit]], [[https://git.kernel.org/linus/2a2d6fd86328f555e2bffc3a7445418112a16013|commit]], [[https://git.kernel.org/linus/eed4edda910fe34dfae8c6bfbcf57f4593a54295|commit]], [[https://git.kernel.org/linus/8e054b0f1e71531762b8ded7f66c1b4af734671b|commit]], [[https://git.kernel.org/linus/bd1c92a1623048ec6c73567ca5a229d28e18c968|commit]], [[https://git.kernel.org/linus/1c5c36530a573de1a4b647b7d8c36f3b298e60ed|commit]], [[https://git.kernel.org/linus/caef6c453cf29b3ae619afd551cf3a0d333a3600|commit]], [[https://git.kernel.org/linus/288c0254a0b0c9980dba9df7d5afadf27280b99c|commit]], [[https://git.kernel.org/linus/2c8c7a2cd8b7c1a2373391fc0220c6c9859fa43c|commit]], [[https://git.kernel.org/linus/e64b3f55e458ce7e2087a0051f47edabf74545e7|commit]], [[https://git.kernel.org/linus/27f03bc680ef7e0f18b4cacba96f29674d93d817|commit]], [[https://git.kernel.org/linus/9bbe787877096e9d4e9dec37059b251840906579|commit]], [[https://git.kernel.org/linus/a568c4947ee1279c5e411bc9afc60233b23bed7d|commit]], [[https://git.kernel.org/linus/f30a3bea92bdab398531129d187629fb1d28f598|commit]], [[https://git.kernel.org/linus/334b56cea5d9df5989be6cf1a5898114fa70ad98|commit]], [[https://git.kernel.org/linus/4f5b8d78ca43fcc695ba16c83ebfabbfe09506d6|commit]], [[https://git.kernel.org/linus/94040c2cbb1a872ff779da06bf034ccfee0f9cba|commit]], [[https://git.kernel.org/linus/54d9490314afd1339f40fb7bd631b82920dc2742|commit]], [[https://git.kernel.org/linus/3d066f9547dd58329b526db44f42c487a7974703|commit]], [[https://git.kernel.org/linus/2f72e02f2f54a3ccee7808db80ff8ae474a5fcba|commit]] * DC Patches March 18, 2024 [[https://git.kernel.org/linus/b5b6d6251579a29dafdad25f4bc7f3ff7bfd2c86|commit]], [[https://git.kernel.org/linus/b1edfb91fc70f25aaed1d2ebb507c434220057a8|commit]], [[https://git.kernel.org/linus/ffd8e4a3261ba2101445750a0d9fab4b35aa6662|commit]], [[https://git.kernel.org/linus/398a16e1f03b6b583b94c7ab080aa38432fb0502|commit]], [[https://git.kernel.org/linus/aae9734b5eb7c4cce9020ecb58bb24db63014a5a|commit]], [[https://git.kernel.org/linus/f2703a3596a279b0be6eeed4c500bdbaa8dc3ce4|commit]], [[https://git.kernel.org/linus/c26dce0fd9457fd4a00454fe5a2ce7cf3eca21df|commit]], [[https://git.kernel.org/linus/b72a7e0fd0f8d235f885f84642e5c71f4e058c4b|commit]], [[https://git.kernel.org/linus/40a2a2b257db81b42827adf6a7aaa24a7d86460a|commit]], [[https://git.kernel.org/linus/052af44ffae7728a7ac3965cde0e60331eac2e42|commit]], [[https://git.kernel.org/linus/796d6a37ff5ffaf9f2dc0f3f4bf9f4a1034c00de|commit]], [[https://git.kernel.org/linus/7777fab989b5d006903188c966058ebcd2d6342a|commit]], [[https://git.kernel.org/linus/119badce8bfdfd059468b9e78694333579713570|commit]], [[https://git.kernel.org/linus/93ddf00f874c26e078ba01010bc126f521d49e7f|commit]], [[https://git.kernel.org/linus/69e3be6893a7e668660b05a966bead82bbddb01d|commit]], [[https://git.kernel.org/linus/6619168fe1828e55d5de2a26262101ee2a508d73|commit]], [[https://git.kernel.org/linus/e42e96360e2d96cb78b6a192899e536e2fefd0a7|commit]], [[https://git.kernel.org/linus/5b53390e4bceb584c50b1c738d666d6b18cad8c4|commit]], [[https://git.kernel.org/linus/4cad092b989e11c66e747f03cd609a9ef74444ac|commit]], [[https://git.kernel.org/linus/3be6a63e06573d4e55fabda8873b73327cf73da8|commit]], [[https://git.kernel.org/linus/0ba7ad7e42ea9d38c39d98137af3ad6a18f2ee8f|commit]], [[https://git.kernel.org/linus/b04c21abe21ff56f7a4da8a53c2779575192ffaf|commit]], [[https://git.kernel.org/linus/29fd17cee17c98c978ff27da29c825cbaf08b9d5|commit]], [[https://git.kernel.org/linus/a63dce3a4ba917a440c8e17de6d808bcea313f7e|commit]], [[https://git.kernel.org/linus/34124947837fd91d76312f5fd47b68515fe176ac|commit]], [[https://git.kernel.org/linus/48d3cfb3189a88e1670f609f8bd7d55839d531cf|commit]], [[https://git.kernel.org/linus/22194e71ea8928c3a9a02ba88a21749b88d6dd8c|commit]], [[https://git.kernel.org/linus/6a3c243fdcf13adfaeb60a6d524104c937e3fdac|commit]], [[https://git.kernel.org/linus/414998f2a017b2463e84cfccb32a42af191f3780|commit]], [[https://git.kernel.org/linus/621cf07a3f25337b17becd4c9486308c0988ea49|commit]], [[https://git.kernel.org/linus/2e52dd1ee409bf14aae65b01e084857fedef8a7a|commit]], [[https://git.kernel.org/linus/c59b2767e06ce6448291d71bb44a0821755c8573|commit]], [[https://git.kernel.org/linus/bcebe44f6bb6d9a85e0710d0086bc3956e6887ba|commit]], [[https://git.kernel.org/linus/41812783057c01e4e5f1eec649607e4773124dba|commit]], [[https://git.kernel.org/linus/7cc9196675234d4de0e1e19b9da1a8b86ecfeedd|commit]], [[https://git.kernel.org/linus/d5586e2f5367829880932c8f057f4df9445056cc|commit]], [[https://git.kernel.org/linus/cf8c498694a443e28dc1222f3ab94677114a4724|commit]], [[https://git.kernel.org/linus/689898ca00187ef0c2c943e187d6e56d39c4c678|commit]], [[https://git.kernel.org/linus/8803bfffb7f81a6e62950ce772bd4d02b02b1adf|commit]], [[https://git.kernel.org/linus/17e74e11ac2b46e7514705ae7abfb93ac0e20bd6|commit]], [[https://git.kernel.org/linus/ca07561ac70b00b5c2b5af727b3d0b6a4f91bee2|commit]] * DC Patches Mar 25 2024 [[https://git.kernel.org/linus/54935663d3ace0129a6805386fcef3ddd5477934|commit]], [[https://git.kernel.org/linus/1576978f05d1ee61c87c2f3e9e3086686ff29531|commit]], [[https://git.kernel.org/linus/a9d51813a3332d99d271e500b0c5ab1266b821c0|commit]], [[https://git.kernel.org/linus/5034b935f62a43ed669aea491ff1a86fd995df3a|commit]], [[https://git.kernel.org/linus/9d43241953f729626a7d452417a2832092a9ec1d|commit]], [[https://git.kernel.org/linus/e4067957363742c762eb68041367e5ea9a465f60|commit]], [[https://git.kernel.org/linus/af114efe8d24b5711cfbedf7180f2ac1a296c24b|commit]], [[https://git.kernel.org/linus/514e816d2239bfbb11b63a4e33c8882b11ad3d61|commit]], [[https://git.kernel.org/linus/865d38e690c664f08b26f75731223cc80ec589e8|commit]], [[https://git.kernel.org/linus/9712b64d6f3f173aff10322fd22dc3678758b8c3|commit]], [[https://git.kernel.org/linus/7b4c74cf22d7584d1eb4a959ad807d6ddf34a126|commit]], [[https://git.kernel.org/linus/a13ad81951c1334a2ddd0225929552f2eb7f074c|commit]], [[https://git.kernel.org/linus/e9a09a198bfe276f303b455392739086a948a6f4|commit]], [[https://git.kernel.org/linus/f341055b10bd8be55c3c995dff5f770b236b8ca9|commit]], [[https://git.kernel.org/linus/506d32ee9f9b65c9680ff15ceb8c4c1e91fe71d8|commit]], [[https://git.kernel.org/linus/e37f5bd8cbdc5f20ff86c13686b1a2b8f0f5bdc6|commit]], [[https://git.kernel.org/linus/02367f52901932674ff2a9c5208b6c11ccf39802|commit]], [[https://git.kernel.org/linus/8cffa89bd5e2827fefb0740a8375274230ad4c5f|commit]], [[https://git.kernel.org/linus/fbc836cdbf9feaf15e84025c4ee52f425e861446|commit]], [[https://git.kernel.org/linus/b5f524b3ebef1646cf3ec8003452ad889fc59243|commit]], [[https://git.kernel.org/linus/285a7054bf81ffebcd00807017e1d2eb756ad892|commit]], [[https://git.kernel.org/linus/57b1ce8384c71d59c48081a9cca91d22f1984a2d|commit]] * DC Patches April 3, 2024 [[https://git.kernel.org/linus/38caf642e547c34b27d0d5d0ce2659623edfe40c|commit]], [[https://git.kernel.org/linus/08f7c681177b209a02740aa2c58d11fcf83d6e4d|commit]], [[https://git.kernel.org/linus/dc21cf28a1c90cf96446a66d03b92a77a23a1ed8|commit]], [[https://git.kernel.org/linus/d76c0a23b557c6ebb3fac32548100d76a1e0ce23|commit]], [[https://git.kernel.org/linus/2c84f4c1df056366fee0cd0071c0a1215af5ff24|commit]], [[https://git.kernel.org/linus/24e9727b39caea8e9009d8f5bea582623182dda0|commit]], [[https://git.kernel.org/linus/b0f52f1807338dd77ca04c909bfa541403ea5b36|commit]], [[https://git.kernel.org/linus/9850a1c44ca90b0e2865467c67b4de45a67b3410|commit]], [[https://git.kernel.org/linus/0d38f6009e4e4e511fb5c3c673d54bf0c242c4b7|commit]], [[https://git.kernel.org/linus/66ef7b9162b89fa91ef03e5f72fc754516074f5e|commit]], [[https://git.kernel.org/linus/364b1c1de6de36c1b28690265c904c682aecc266|commit]], [[https://git.kernel.org/linus/a842b7fe7f807c928ad8eee794b4682d479c2028|commit]], [[https://git.kernel.org/linus/038e2e2e0150f1649d40f7d915561cdf9e4dd5bf|commit]], [[https://git.kernel.org/linus/3ca7317809fc247336e6a602e855be76dfee9a77|commit]], [[https://git.kernel.org/linus/7dc363e66258ae41823e0f360101a1e10ca6d4cb|commit]], [[https://git.kernel.org/linus/4a5b171299e59d51322f4c6bd376c5acbeca0a4a|commit]], [[https://git.kernel.org/linus/5324e2b205a2d7252356e95152507678d0b7da96|commit]], [[https://git.kernel.org/linus/339126b5294468409bfb4cd49ec4745d1b7bf3bf|commit]], [[https://git.kernel.org/linus/9c78dc956a51d05e4f3a5980aff0b083b8cf3a4d|commit]], [[https://git.kernel.org/linus/8f5951172b6dbda75a9cdf5990650e1cf8b1dd22|commit]], [[https://git.kernel.org/linus/27e718ac8b8194d13eee5738c4d3fd247736186e|commit]], [[https://git.kernel.org/linus/af1c41858da107eba7e0cf7b23b08c1957014d70|commit]], [[https://git.kernel.org/linus/1abfb9f9c767ca4c98c12ba2754abfe3ecf5ce8c|commit]], [[https://git.kernel.org/linus/2fa5d653bd473a8ebec64fdf363bffb4075176cd|commit]], [[https://git.kernel.org/linus/5c786f1c5434b59c5abe1b087c6abd30f3747f6b|commit]], [[https://git.kernel.org/linus/bc87d666c05a13e6d4ae1ddce41fc43d2567b9a2|commit]], [[https://git.kernel.org/linus/a41aa6a7d0a6687fe4eff9822cb799082cc0975c|commit]], [[https://git.kernel.org/linus/ded99dacb2d6e154349b442050a91c1651dae853|commit]] * DC Patches April 22, 2024 [[https://git.kernel.org/linus/46fe9cb1a9e62f4e6229f48ae303ef8e6c1fdc64|commit]], [[https://git.kernel.org/linus/a01b64f31d65bdc917d1afb4cec9915beb6931be|commit]], [[https://git.kernel.org/linus/3626a6aebe62ce7067cdc460c0c644e9445386bb|commit]], [[https://git.kernel.org/linus/b77bef36015c501f1e0f51db72c55e6dcd8bdd48|commit]], [[https://git.kernel.org/linus/71dfa617ea9f18e4585fe78364217cd32b1fc382|commit]], [[https://git.kernel.org/linus/fc3408e63a8d8fa15d224e9d424345e5eba1e93a|commit]], [[https://git.kernel.org/linus/9a35d205f466501dcfe5625ca313d944d0ac2d60|commit]], [[https://git.kernel.org/linus/be53bd4f00aa4c7db9f41116224c027b4cfce8e3|commit]], [[https://git.kernel.org/linus/d2a10a1727b3948019128e83162f22c65859f1fd|commit]], [[https://git.kernel.org/linus/a4812f2fcb8f12fc4adff3d37507af32864f2356|commit]], [[https://git.kernel.org/linus/4fdd07cec81d970995588294528dcfb1d096bc29|commit]], [[https://git.kernel.org/linus/5e66f6eaa290093c4542ed216c298000713f92e5|commit]], [[https://git.kernel.org/linus/903940b0b7c7f48e9743c65ae7cd65267083539f|commit]], [[https://git.kernel.org/linus/ce42ba4f928466698b8beb21a7b1011a687789a6|commit]], [[https://git.kernel.org/linus/892b41b16f6163e6556545835abba668fcab4eea|commit]], [[https://git.kernel.org/linus/8e6a3116e3b5d62a76577f330d535739a33980e1|commit]] * amdgpu: support MES command SET_HW_RESOURCE1 in sriov [[https://git.kernel.org/linus/f6ac0842364a5721c02e9dd1c956eb51c7431ff3|commit]] * host1x * Add Tegra Security Engine driver [[https://git.kernel.org/linus/0d23cacb2ae0fc9d8d40f36cb37ad272b3249ffe|commit]], [[https://git.kernel.org/linus/4d4d3fe6b3cc2a0b2a334a08bb9c64ba1dcbbea4|commit]], [[https://git.kernel.org/linus/0880bb3b00c855fc244b7177ffdaafef4d0aa1e0|commit]], [[https://git.kernel.org/linus/cc370ff85bae5373330518e4ebb2d36c0ca8a470|commit]], [[https://git.kernel.org/linus/17048b225b0307b7b271b2fa4f5479fa688e3694|commit]] * Add plane SIZE_HINTS property [[https://git.kernel.org/linus/42118c5f6853a28c132ab1ae6efe3893b051e0d2|commit]], [[https://git.kernel.org/linus/9677547d836299497ba2da1ad59851e200109ca1|commit]] * drm/{i915,xe}: Convert fbdev to DRM client [[https://git.kernel.org/linus/71ec16f45ef8d10e20c58e85f7d3644e324d3c13|commit]], [[https://git.kernel.org/linus/7d4e13bd50829c89e2fbbdf63406e68bbf836859|commit]], [[https://git.kernel.org/linus/3143c0c95ad99118f9ea0ff6107f67518d2856e2|commit]], [[https://git.kernel.org/linus/acc29d5095b01c0eda6a7b4948a805ce699523e3|commit]], [[https://git.kernel.org/linus/762f8c13b8ca4b861d28a529fa56b7960d71b892|commit]], [[https://git.kernel.org/linus/f3a36cb5d97e49945b00f0a78ce6e6a4c5223806|commit]] * xe * Expose user fence from xe_sync_entry [[https://git.kernel.org/linus/977e5b82e0901480bc201342d39f855fc0a2ef47|commit]] * Add new PCI IDs to DG2 platform [[https://git.kernel.org/linus/0bd25f78c4fc97ec61ebaf6147973ddc2e15c7b6|commit]] * Add support to configure SR-IOV VFs [[https://git.kernel.org/linus/ac6598aed1b36d0301fa43732ad40d440dc86620|commit]], [[https://git.kernel.org/linus/9e56d026c6be4ad124b47dc5ea000bbb888841e0|commit]], [[https://git.kernel.org/linus/bda438b8badc34d4752c46adf4ce0e5524e230ff|commit]], [[https://git.kernel.org/linus/c7201728f9832b0822dcc4f2843ffb050059ee2b|commit]], [[https://git.kernel.org/linus/1f2880bab254918dd596153de77fcbee6947c6bc|commit]], [[https://git.kernel.org/linus/3f11bcc6564f4e890d023437f63adaa102d3d78e|commit]] * Add proper detection of the SR-IOV PF mode [[https://git.kernel.org/linus/3df49b2e71ba28bfb468df9752f23c270bf1f273|commit]], [[https://git.kernel.org/linus/146e4384956926d95c7636020adb5c4949c690da|commit]], [[https://git.kernel.org/linus/e806fac0bd35512ac4590d89dabe0eb15a1721c4|commit]] * Add support to configure GuC SR-IOV policies [[https://git.kernel.org/linus/48b05e3c3dbbac4275c3e94bed68a36bec6bddfe|commit]], [[https://git.kernel.org/linus/0ddc1e0721d410ae09a8ea4cbfebfb20bc1e2e03|commit]], [[https://git.kernel.org/linus/bbc8a6fb83afc41ba4e8d2564314d7a4d01db0cb|commit]], [[https://git.kernel.org/linus/25f2e04b91d4fefbf9ee4890d774f82c8570ccc5|commit]], [[https://git.kernel.org/linus/0bdd5b16ba0444f41d538f5927cb9b995d684594|commit]] * Minimal support for VF state management [[https://git.kernel.org/linus/aed2c1d70aa008b83c806d33d55b1f782f4fff41|commit]], [[https://git.kernel.org/linus/476f6c48d1fa6a2253cbb5fdf755727632c03972|commit]] * Enable LNL display [[https://git.kernel.org/linus/c834a080a0134e7bd0cb18c3a2b0dd674794d182|commit]], [[https://git.kernel.org/linus/1c00164d4cd1f513ea44a1b068490e52e7cbf04f|commit]], [[https://git.kernel.org/linus/5372a54d7a3cf32c761d2896276b72b495bcb497|commit]], [[https://git.kernel.org/linus/452269e2f0ea180a4bc39fd4643df7fe2ea0bb8e|commit]], [[https://git.kernel.org/linus/dfdfc609bb71521ac22a2ff91f608644bf7e7b6d|commit]], [[https://git.kernel.org/linus/1c06552a703c6a4256976a1615d262b5a0d754e5|commit]], [[https://git.kernel.org/linus/9161e31181440e4882f78e02783e40325dc82e27|commit]], [[https://git.kernel.org/linus/66a0e0681392420b326f00ba732e6bda099eda29|commit]] * /hwmon: Add infra to support card power and energy attributes [[https://git.kernel.org/linus/345dadc4f68b1bd87bd9650b1397a6b75a2573d7|commit]] * HDCP Enablement [[https://git.kernel.org/linus/152f2df954d8703f8bb4807603d279fd8f173071|commit]], [[https://git.kernel.org/linus/c3fbdabd3181034e7c9b0c49bf8737499d21fafd|commit]] * Introduce GuC context ID Manager [[https://git.kernel.org/linus/e6e7eff6275cb5d1e78df12f61cd083b819de381|commit]], [[https://git.kernel.org/linus/f4fb157cd0cc4b48aefef89189daf2658cbfc347|commit]], [[https://git.kernel.org/linus/68fac8ab0f9d51abd93edee38e8dadf2705c0b4f|commit]], [[https://git.kernel.org/linus/f88beeed82700697745aa3290f5a12c7b1b1bbe7|commit]] * Add support for Wa KLVs [[https://git.kernel.org/linus/c151ff5c9053338ca9c7fc6fa6435e210cfd5ca7|commit]], [[https://git.kernel.org/linus/d6da81a4785ca6e2f0ea9082424e725e8aad69b4|commit]] * Add Battlemage support [[https://git.kernel.org/linus/b5c2ca0372dcf5bb7403032ca609c9df1fb23bfc|commit]], [[https://git.kernel.org/linus/e9c22984e9d81cbaebb3e1085d2f510258ef63c4|commit]], [[https://git.kernel.org/linus/90d308655e414669833c01721e203fa4876ba6d9|commit]], [[https://git.kernel.org/linus/7cd05ef89c9d1c63cbf2bb904c831073eb919228|commit]], [[https://git.kernel.org/linus/27cc23111a664bbf086e74fd4e14d38634f4b834|commit]], [[https://git.kernel.org/linus/e391ab659b547676b15ba058786e91d1d1d3ad4d|commit]], [[https://git.kernel.org/linus/8d315b803b7c4bf363625cc1d11b4a4402bdc93d|commit]], [[https://git.kernel.org/linus/74671d23ca1803123de2d2eaf73f6b91b6b51f55|commit]], [[https://git.kernel.org/linus/183620f9ae3c8ebd9e126e07020b235d34547eb4|commit]], [[https://git.kernel.org/linus/bdf59bbd9aea39ce3eca088e84a01717867bd5d4|commit]], [[https://git.kernel.org/linus/41bb543f5598fb44e0e8dbd723f5821be83b466b|commit]] * Add Arrow Lake H support [[https://git.kernel.org/linus/6a9b38cc68a03b948df1f3fcb907c7557cfc315c|commit]] * vmwgfx * vblank and crc generation support [[https://git.kernel.org/linus/d4c972bff3129a9dd4c22a3999fd8eba1a81531a|commit]], [[https://git.kernel.org/linus/a60ccade88f926e871a57176e86a34bbf0db0098|commit]], [[https://git.kernel.org/linus/b32233accefff1338806f064fb9b62cf5bc0609f|commit]], [[https://git.kernel.org/linus/7b0062036c3b71b4a69e244ecf0502c06c4cf5f0|commit]], [[https://git.kernel.org/linus/cd2eb57df1b8bbac90daad622b2f1ef00640c38c|commit]] * Add a drm panic handler [[https://git.kernel.org/linus/41e54853cae973ce812346d4c2b37a2aa6e02dcf|commit]], [[https://git.kernel.org/linus/879b3b6511fe92b1b93dfc543961347289a8aeaa|commit]], [[https://git.kernel.org/linus/813ca3aa8fecaca9cf81f831d2e036d997ac3ee7|commit]], [[https://git.kernel.org/linus/9544309775c334c9cc5f7d88be3daccc846199d1|commit]], [[https://git.kernel.org/linus/bf9fb17c6672868d95126321762c8fdfe0ff0a2a|commit]], [[https://git.kernel.org/linus/e2a1cda3e0c784740751d46431973dcee32cf108|commit]] * phantor: Add a driver for CSF-based Mali GPUs [[https://git.kernel.org/linus/64bc5bd055a0b8cf96328287a8d60facdaae9edf|commit]], [[https://git.kernel.org/linus/fac9b22df4b1108f7fa5a087a77f922489861484|commit]], [[https://git.kernel.org/linus/647810ec247641eb5aec8caef818919a4518a0b1|commit]], [[https://git.kernel.org/linus/546b366600ef34847702f43bb2d22f914d19eae0|commit]], [[https://git.kernel.org/linus/4bdca11507928a4c9174e9b7240e9d058c12a71d|commit]], [[https://git.kernel.org/linus/d72f049087d4f973f6332b599c92177e718107de|commit]], [[https://git.kernel.org/linus/0c272fc9b0d6e559835ebfe6bdf3b8c12a570d17|commit]], [[https://git.kernel.org/linus/5fe909cae118a757a77afb37174b99436a36d2e2|commit]], [[https://git.kernel.org/linus/de85488138247d034eb3241840424a54d660926b|commit]], [[https://git.kernel.org/linus/abbf1590de22a6d2240a59383477da50d1402f6a|commit]], [[https://git.kernel.org/linus/2718d91816eeed03c09c8abe872e45f59078768c|commit]], [[https://git.kernel.org/linus/8a1cc07578bf42d85f008316873d710ff684dd29|commit]], [[https://git.kernel.org/linus/5cd894e258c4b0b92b9b475309cea244e590d194|commit]], [[https://git.kernel.org/linus/9cca48fa4f8933a2dadf2f011d461329ca0a8337|commit]] * panfrost * Replace fdinfo's profiling debugfs knob [[https://git.kernel.org/linus/b12f3ea7c1884c0c79e516ed9ffee7c7058a61c3|commit]] * panel * add support for LG SW43408 panel [[https://git.kernel.org/linus/069a6c0e94f99437652dbb7229a56233c7d39968|commit]], [[https://git.kernel.org/linus/b724455e89ea9be900b81492897aadebcdc5ba92|commit]], [[https://git.kernel.org/linus/de1c705c50326acaceaf1f02bc5bf6f267c572bd|commit]], [[https://git.kernel.org/linus/bf6302ec0af206ae260aee817acc59320f263481|commit]] * Add Innolux G121XCE-L01 LVDS display support [[https://git.kernel.org/linus/f7ad2ce5fd89ab5d146da8f486a310746df5dc9e|commit]] * Add Support for RK3326 GameForce Chi [[https://git.kernel.org/linus/4c4f33be7e4d476566246e7166c54ef175287e00|commit]], [[https://git.kernel.org/linus/387974a21a63b1c7efcbc19c48b9930f6ef5ac63|commit]], [[https://git.kernel.org/linus/59237fc04ee1c4cdf62ad5dba18244713970e36f|commit]] * panel-simple: add support for Crystal Clear CMT430B19N00 [[https://git.kernel.org/linus/751b58418250a56329d35de29329f547c43e7c7f|commit]], [[https://git.kernel.org/linus/2fbb050335f8195b86ebcdf498a6c171bba10f8d|commit]], [[https://git.kernel.org/linus/fe67bfbd23b0ccfaaa5de9f9176c6283c628cea1|commit]] * Add POWERTIP PH128800T006-ZHC01 panel [[https://git.kernel.org/linus/fd6aa8f2dcb7236e511c1a58d82c2a178170e6ff|commit]], [[https://git.kernel.org/linus/3b2304cfeddd141523cb50cc1a3ba7624b865011|commit]] * Add Startek KD050HDFIA020-C020A support [[https://git.kernel.org/linus/77880bd4512e261372dfc3f49a5ed44fde9d3fa5|commit]], [[https://git.kernel.org/linus/9fb8aaff8eef56c1822e5267e52d4ab8ebb5b523|commit]] * Pixel 3a Panel [[https://git.kernel.org/linus/67eabc0553a32c491fdb392ff2358a0384562050|commit]], [[https://git.kernel.org/linus/bf0390e2c95bf630b22dddc7cde5f83762b658e5|commit]], [[https://git.kernel.org/linus/2689b33b88641a3b9a8cc411a0c8094cbed7e871|commit]] * Add Khadas TS050 V2 panel support [[https://git.kernel.org/linus/26f9339212db569310d4b0ef4284efcbb462a86f|commit]], [[https://git.kernel.org/linus/0546e01d5a0269f02b4aa227f44b30a5a5558792|commit]] * Add driver for Raydium RM69380-based DSI panels [[https://git.kernel.org/linus/9a314ea512b7db9d38107ea0284b56f805b8fc9a|commit]], [[https://git.kernel.org/linus/4f888782d30276b08a32fa3d9b5c13b7dc123e28|commit]] * Add BOE NT116WHM-N44 and CMN N116BCA-EA1 [[https://git.kernel.org/linus/dcb6c8ee6acc6c347caec1e73fb900c0f4ff9806|commit]] * Add AUO B120XAN01.0 [[https://git.kernel.org/linus/1864c45deb770a4814006dc95876e66edf0f2fe8|commit]] * msm * Support devcoredump on a750 [[https://git.kernel.org/linus/f3f8207d8aed806e99c30749b1f190a5b0330b37|commit]], [[https://git.kernel.org/linus/b636a6d20da60678f3f349e8c7bc01592ca59a32|commit]], [[https://git.kernel.org/linus/0eb61e200e2425f905d7e102a6303daa58ccf353|commit]], [[https://git.kernel.org/linus/106414f8b603460651aab2cb606c485f2ede5115|commit]], [[https://git.kernel.org/linus/6408a1b5a7d7a9273f51824deec8865aee48d28b|commit]] * Rework the eDP/DP modes and add support for X1E80100 [[https://git.kernel.org/linus/1a3749c379173113aa1ad11ee62a97a503023616|commit]], [[https://git.kernel.org/linus/d8f177ba1b983e478a8d83ca94b49371129e2c34|commit]] * mediatek * Add GAMMA 12-bit LUT support for MT8188 [[https://git.kernel.org/linus/60cb97cc915228b36697f75228ffdfb152b01c93|commit]], [[https://git.kernel.org/linus/7f08e806a03e0453a0de27137b668d4de52fcd49|commit]], [[https://git.kernel.org/linus/83b71b7851e498489379815f75f55a4e84dbde40|commit]] * meson * add support for MIPI DSI Display [[https://git.kernel.org/linus/2a885bad5ba4d553758d3f1689000cee8e6dae87|commit]], [[https://git.kernel.org/linus/fde2d69c1626bebb3a8851909c912e582db1ca95|commit]], [[https://git.kernel.org/linus/bb5aa08572b5313157c093a09d53ebf2efda3dc1|commit]], [[https://git.kernel.org/linus/b70cb1a21a54236be24c03787eecc40c451158c3|commit]], [[https://git.kernel.org/linus/ef5a84d716042871599ff7c8ff571a6390b99718|commit]], [[https://git.kernel.org/linus/6f1c2a12ed1138c3e680935718672d361afee372|commit]], [[https://git.kernel.org/linus/5c9837374ecf55a1fa3b7622d365a0456960270f|commit]] == Power Management == * Mediatek thermal sensor driver support for MT8186 and MT8188 [[https://git.kernel.org/linus/8c25958f71d8c173b81cb422a44c5743beb76af7|commit]], [[https://git.kernel.org/linus/62194e637d16ac9b61eec0bfe6d5f662efcddbe7|commit]], [[https://git.kernel.org/linus/554bca31308ab8234bac505d0b86d9082b549a40|commit]], [[https://git.kernel.org/linus/5b3367e28a2c47d74bd566b96854ef0de3caa6d7|commit]], [[https://git.kernel.org/linus/2cc0b1a2169b0f4af83cc5a52a1693c8ab2e2f1d|commit]], [[https://git.kernel.org/linus/a2ca202350f97bced8dac4cbfbb3cbf855973e57|commit]], [[https://git.kernel.org/linus/a4c1ab2f4c6c94edfc6481edf37e141079e24f1d|commit]], [[https://git.kernel.org/linus/684cbb49f9ceed6be0f33dac9d62089e7cd1c032|commit]], [[https://git.kernel.org/linus/11e6f4c3144743b2b2c26a5cd58ae3696379b3ab|commit]], [[https://git.kernel.org/linus/78c88534e5e1f8c5334c380b626c6ee91b62161b|commit]], [[https://git.kernel.org/linus/f4745f546e6077e3ed2bab90e931154519e96ae0|commit]] * loongson2: Add Loongson-2K2000 support [[https://git.kernel.org/linus/734b5def91b594d3aa1147d60c45eded139ce2eb|commit]] * amlogic: introduce A1 SoC family Thermal Sensor controller [[https://git.kernel.org/linus/7fcd7dfa5ec29afe0b3fe8ad6a5f42c19e71d6be|commit]], [[https://git.kernel.org/linus/63d96b1253169126a791d6b1b0ef2e708ffb0d75|commit]] * netlink/intel_hfi: Enable HFI feature only when required [[https://git.kernel.org/linus/afdaff3706918b7414e0741c4c5c20a12726a207|commit]], [[https://git.kernel.org/linus/cf580ad490514cca4abbfef710fe4099738abfbd|commit]] * x86/intel-speed-select: Support multiple dies [[https://git.kernel.org/linus/a801f0ee563b8180caf186493806a145a75b4a3c|commit]], [[https://git.kernel.org/linus/9ea48bdfd5b19a81edfd9dcc12b8af6bb319c6d8|commit]] * tools/power turbostat: version 2024.05.10 [[https://git.kernel.org/linus/4e7ee02300805d26d9731fd24c4de8e10a43ffea|commit]], [[https://git.kernel.org/linus/256d218ec6aea99855dc5c54af550fcff96fc732|commit]], [[https://git.kernel.org/linus/f04fcc7ac8ceb87933244cca28759d0fac6103ce|commit]], [[https://git.kernel.org/linus/d3e6f6253895f499b63bac261b81732f9efc4902|commit]], [[https://git.kernel.org/linus/ae3326ac5742506409a03ce5d69716a8dba4eabc|commit]], [[https://git.kernel.org/linus/1f9e46da9cba54d12880948fd2adac31bb0eaadb|commit]], [[https://git.kernel.org/linus/0451adf4d46d5df91f888a3d010a4109aa23a7ae|commit]], [[https://git.kernel.org/linus/29fea61cd8d4d0e646022c0479aa35381cf1e990|commit]], [[https://git.kernel.org/linus/cda203388687aa075db6f8996c3c4549fa518ea8|commit]], [[https://git.kernel.org/linus/3559ea813ad3a9627934325c68ad05b18008a077|commit]], [[https://git.kernel.org/linus/231ce08b662a58d4392da998699b3d4a7e2e87cf|commit]], [[https://git.kernel.org/linus/0e39702fbbcdb16ad349439065d24a3bb5e2f331|commit]], [[https://git.kernel.org/linus/196eca020600470ca44da94c65607e7a98aa9d3c|commit]], [[https://git.kernel.org/linus/c8b246ea2ea5771f2a0ca6f6a9a520406e6b6eb7|commit]], [[https://git.kernel.org/linus/78464d7681f79bb48995c3d29d7e93d27ba69bca|commit]] * ACPI: DPTF: Add Lunar Lake support [[https://git.kernel.org/linus/79b510c49207489f7e019b4c397b04d22b4dfd8d|commit]] * bus: _OSC fixes [[https://git.kernel.org/linus/403ad17c06509794fdf6e4d4b3070bd5b56e2a8e|commit]], [[https://git.kernel.org/linus/d0d4f1474e36b195eaad477373127ae621334c01|commit]], [[https://git.kernel.org/linus/a8a967a243d71dd635ede076020f665a4df51c63|commit]], [[https://git.kernel.org/linus/6e8345f23ca37d6d41bb76be5d6a705ddf542817|commit]], [[https://git.kernel.org/linus/95d43290f1e476b3be782dd17642e452d0436266|commit]] * NHLT: Access and query helpers [[https://git.kernel.org/linus/a640acab545b21ed1f347376f34d34e461ea92ba|commit]], [[https://git.kernel.org/linus/659a9490ccfbfad4aa5ab351f8a6f5f83ce5ed6c|commit]], [[https://git.kernel.org/linus/82b8acc06ea48b69c2482ac2ac994656c3740d08|commit]], [[https://git.kernel.org/linus/2f7d7ea44adbe7497b225bbb7bfc29e3c792094d|commit]] * efi/cxl-cper: Report CPER CXL component events through trace events [[https://git.kernel.org/linus/f9c683386f5bc0364615138ce2b14be50848dbcf|commit]], [[https://git.kernel.org/linus/671a794c33c6e048ca5cedd5ad6af44d52d5d7e5|commit]], [[https://git.kernel.org/linus/26a1a86dd093a10d0653429bf013dae6e95dccbf|commit]], [[https://git.kernel.org/linus/4c115c9c1f81a6efe2bd68fcefec6836f7f3dc71|commit]], [[https://git.kernel.org/linus/6d0fc416c42a98b39a74151376928d577873941c|commit]], [[https://git.kernel.org/linus/6eade110754c085cee9e46f4d87d2c3ea4e59e8c|commit]], [[https://git.kernel.org/linus/207a1f82301de0b4123f00a8d26ea55bb2484757|commit]], [[https://git.kernel.org/linus/dc97f6344f205b0dfa144e1b3e16d6dc05383d57|commit]] * ACPICA 20240322 [[https://git.kernel.org/linus/ed5addd09827566df237df16357c514e2f18a9cb|commit]], [[https://git.kernel.org/linus/66536b86c57365840cd468d9c608b7833a7a0890|commit]], [[https://git.kernel.org/linus/a210accc067ad18d55ea19b6d7a9d9176d809a74|commit]], [[https://git.kernel.org/linus/2e94dc11898042eb528eda3e09db242529722916|commit]], [[https://git.kernel.org/linus/e1d3f9d46f17e762d2dd4027456386509a6e6774|commit]], [[https://git.kernel.org/linus/c15fe3916b77bc809577898c0d5037b1bfd4183b|commit]], [[https://git.kernel.org/linus/7f35712c2da2b92e03baf618fe469c64591d96fd|commit]], [[https://git.kernel.org/linus/fe1c408d50604f6013ca273d14b0ffeb845f23b1|commit]], [[https://git.kernel.org/linus/cd1b30824ff270201c43c41b9b829a369cb4e944|commit]], [[https://git.kernel.org/linus/5a02527783caae57535e0742262cd96b7167f983|commit]], [[https://git.kernel.org/linus/86645830e665cc0cd96ffff3ed2bd72237eb0378|commit]], [[https://git.kernel.org/linus/e19481071d0afe3b05cbb6602d7a53599e3e8506|commit]] * AEST: Support AEST V2 [[https://git.kernel.org/linus/e049249013b13297817a1b0a33bbedec0ebca293|commit]] == Storage == * scsi: lpfc: Add support for 32 byte CDBs [[https://git.kernel.org/linus/af20bb73ac2591631d504f3f859f073bcdb7e11e|commit]] == Drivers in the Staging area == * atomisp: Changes for libcamera support [[https://git.kernel.org/linus/ca16a64bfc7c9898566ebd907078e830e6e2836b|commit]], [[https://git.kernel.org/linus/c7922162961b9e8d846e7c4cb8727c6039261393|commit]], [[https://git.kernel.org/linus/ce5547e7e64a11b6b724cf6b3d13d6bf6782e03e|commit]], [[https://git.kernel.org/linus/95146b9de7ab69fd2d799b573586a8c8a9e552b8|commit]], [[https://git.kernel.org/linus/c1dc6f5a2774a543b5f669c88bfcc68fcdc48b5e|commit]], [[https://git.kernel.org/linus/185883b28bf66f27e854a1ea2324f645be1df640|commit]], [[https://git.kernel.org/linus/e4d2abc7af5e8940bc092da54be65faec97e30c4|commit]], [[https://git.kernel.org/linus/dc37768447ac52170ec039a2e92f8e9a4501bc06|commit]] * atomisp: Further media-controller related fixes + dead code removal [[https://git.kernel.org/linus/f1aa35ab594321cad3855de844ec3837f08ad205|commit]], [[https://git.kernel.org/linus/659a66995fc75e0a945c8999574e0d358a3889fd|commit]], [[https://git.kernel.org/linus/7a0848d9818c5a00a3c252f1077e142fadcba8db|commit]], [[https://git.kernel.org/linus/74350ed0787e82cc6af5b7cd1d4d4cc1db5b29d4|commit]], [[https://git.kernel.org/linus/cca331a64cffcce1b96ee353bafefa8ff0335240|commit]], [[https://git.kernel.org/linus/52cc673b8d085255eacaebbf78525e2f33a9f95c|commit]], [[https://git.kernel.org/linus/20a7f79982b5437bc8af44785326c59cf2f77378|commit]], [[https://git.kernel.org/linus/8ff6604cd35e44a822a327ac981b0609c5d5cf83|commit]], [[https://git.kernel.org/linus/b0525740af7c1c5cccd9de62677e3d9fdc24b83e|commit]], [[https://git.kernel.org/linus/61d9b1ffc68f109f987811e6d31d6440608f6e5c|commit]], [[https://git.kernel.org/linus/a0821ca14bb808800e444e01f074e32dc4c0d161|commit]], [[https://git.kernel.org/linus/e838b8c69e45bbb00bd2a861d8fbb94d4d933b22|commit]], [[https://git.kernel.org/linus/ca9ff7227931811fa13f197d6748a211419acd16|commit]], [[https://git.kernel.org/linus/f468ff16f5524cdccf182a1fa7c0558421d2acbc|commit]], [[https://git.kernel.org/linus/1a1ce0c308136e2bfdf326e1100809fe34558a4e|commit]], [[https://git.kernel.org/linus/36a1418540cea31789d87bcdbbe9f86ed309d039|commit]], [[https://git.kernel.org/linus/2eee9581745441080ad0bb4df0e159a44b686fc5|commit]], [[https://git.kernel.org/linus/1c3432df2339c6fcc4399ea2299ad565bdb506e4|commit]], [[https://git.kernel.org/linus/2ab6c22d61e49518b6abd10105b747bc11780b95|commit]], [[https://git.kernel.org/linus/2bcbeeb2979d6f97c150ed88488b16e2bf83bf64|commit]], [[https://git.kernel.org/linus/8ddcec87f2d7f7c5d150884a2c496dd3b4817b40|commit]], [[https://git.kernel.org/linus/0445126fcaad0e13e6bc7a788c9ddb4e75739f59|commit]], [[https://git.kernel.org/linus/e03a5d3e95f22d15d8dfd97b1d31ea6247931b48|commit]] * wlan-ng: Remove broken driver prism2_usb [[https://git.kernel.org/linus/20952655235dd9b1447829591774f1d8561f7c6a|commit]] * pi433: Remove unused driver [[https://git.kernel.org/linus/eb563dc752d33b0a5d4952964af15ca892f59524|commit]] == Networking == * Introduce STM32 Firewall framework [[https://git.kernel.org/linus/c83509527529c1fcd9c1bf341d101a2372649484|commit]], [[https://git.kernel.org/linus/161e83f538183897c23644f5576b10f3c03df521|commit]], [[https://git.kernel.org/linus/a182084572533d48818fefc6c4af1b8f8853c447|commit]], [[https://git.kernel.org/linus/02ec75edaa94a28b4e89ca6594ae988918be3dc5|commit]], [[https://git.kernel.org/linus/ad4263523f5175e9cff7be72c9fb4b4a56a8b451|commit]], [[https://git.kernel.org/linus/a06b9560eb6c5cc50f9604179b1c72f52b904eb9|commit]], [[https://git.kernel.org/linus/eac9fba67f47b75e78d57d00fffb9d59a3331379|commit]], [[https://git.kernel.org/linus/f9b497f7fb8c322ee27808154122553ceafc17c3|commit]], [[https://git.kernel.org/linus/d7218d3c9e078072a02eeb1d1aced8d1ad1537c8|commit]], [[https://git.kernel.org/linus/7666e9ec9b58f64e4a1a462620ae3d0015ee39bf|commit]], [[https://git.kernel.org/linus/5c9668cfc6d7c7de30fa57fa0a6c0ddc93462969|commit]], [[https://git.kernel.org/linus/c1c67654df0713539f9b5e8f84ce8fc573465efb|commit]], [[https://git.kernel.org/linus/2eeb74c449e910851fa48f4868ec0edadaa28f08|commit]] * Add DCB and DSCP support for KSZ switches [[https://git.kernel.org/linus/a1ea57710c9d9ed2d615ef0244863e6802c5a8bb|commit]], [[https://git.kernel.org/linus/c631250a24f59c76b705633dc9744772d3db8e88|commit]], [[https://git.kernel.org/linus/c2e722657f18272a8b8711e94b29466f253715e6|commit]], [[https://git.kernel.org/linus/97278f8f109a31e626aa8f3bc984eb10a704ecc4|commit]], [[https://git.kernel.org/linus/cbc7afffc5ec581d3781c49fe9c8e8c661e5217b|commit]], [[https://git.kernel.org/linus/5f5109af47535bc613c12a089dded425a373a12f|commit]], [[https://git.kernel.org/linus/768cf8413883892c6ff0db783a0295a60886ec33|commit]], [[https://git.kernel.org/linus/96c6f337951a03ab40e13a44cf5ea59b14725721|commit]], [[https://git.kernel.org/linus/3bcb8968654dd2a3c3db6ee55b9abac74454100e|commit]], [[https://git.kernel.org/linus/a16efc61d2895ebd9e80ec46365c70827138a1fa|commit]], [[https://git.kernel.org/linus/328de4671dd67f8fe88e4b0ac11b4f9afb92966d|commit]], [[https://git.kernel.org/linus/ea1078d94ce067c9377340c64435d3ac61e08500|commit]] * mlxsw: Improve events processing performance [[https://git.kernel.org/linus/3b0b3019dbea1a110ff01896e00fe30804bf78bc|commit]], [[https://git.kernel.org/linus/c0d9267873bc0960f65ea43cca72d63dbe34202f|commit]], [[https://git.kernel.org/linus/5d01ed2e970812a5e1947ef2ce421a2fce68c45b|commit]], [[https://git.kernel.org/linus/6b3d015cdb2aee8361e061387d70fdc8f4dd0b9a|commit]], [[https://git.kernel.org/linus/e28d8aba4381a7b056baef2e8c1422a72dcde0b5|commit]] * igc: Add Tx hardware timestamp request for AF_XDP zero-copy packet [[https://git.kernel.org/linus/15fd021bc4270273d8f4b7f58fdda8a16214a377|commit]] * ice: use less resources in switchdev [[https://git.kernel.org/linus/ee4e52719ce474af339f4b81ece2ce9ecf920dfd|commit]], [[https://git.kernel.org/linus/44ba608db50970dbb7eae1dca13ebcbf9485b4e7|commit]], [[https://git.kernel.org/linus/defd52455aee4a0922e45155d6a348f02a99b775|commit]], [[https://git.kernel.org/linus/50d62022f45580e2fc9b62fca486e6d0ea287c40|commit]], [[https://git.kernel.org/linus/8c67b7a914cca1a5a8e1446f1b684df928ebf963|commit]], [[https://git.kernel.org/linus/4498159a509328e903a692504a0ba1624754bc3e|commit]], [[https://git.kernel.org/linus/33bf1e86231dbd62f06f0ca3cdf5995eb7d077d5|commit]], [[https://git.kernel.org/linus/9cba6e1767bf8286563ae8907d6e595c365d3e92|commit]] * ice: add additional E830 device ids [[https://git.kernel.org/linus/a8e682f03748f72e82e89f178c1838305e789bb2|commit]], [[https://git.kernel.org/linus/4fd104018cb87188143f39e8bc0bf0a9fd32e53e|commit]] * ice: Support flow director ether type filters [[https://git.kernel.org/linus/ae67389c53928418975b46d13b51fde4e40ee15f|commit]], [[https://git.kernel.org/linus/0a66e976430402d0064687853fddc33088faa98a|commit]] * ice: Support 5 layer Tx scheduler topology [[https://git.kernel.org/linus/9afff0de30db149a1bf440db26a3ddd6a4f260d8|commit]], [[https://git.kernel.org/linus/91427e6d9030611b27a4150ad3c59e4db3f02b8c|commit]], [[https://git.kernel.org/linus/927127cda11ab91ebba84f74c70b56cb4160c569|commit]], [[https://git.kernel.org/linus/5625ca5640caa3fb797f155601d56379d260d6ba|commit]], [[https://git.kernel.org/linus/109eb29172847df26dca40ac095a3e1b17bd4a44|commit]], [[https://git.kernel.org/linus/cc5776fe183208115e42c044497e193e4671a2b9|commit]] * ice: Introduce switch recipe reusing [[https://git.kernel.org/linus/0545cc86767e044b0c7bbcbbf59698a2ad78e0c5|commit]], [[https://git.kernel.org/linus/4ebc5f25d0819f3a89f3664ffdaae104bf4d9483|commit]], [[https://git.kernel.org/linus/d29a8134c78232213fb88f20d7ae865ec364e367|commit]], [[https://git.kernel.org/linus/22118810fc7cc98f3afb38919348060ab67ddc5b|commit]], [[https://git.kernel.org/linus/817b18965b58a6e5fb6ce97abf01b03a205a6aea|commit]], [[https://git.kernel.org/linus/118c6bde78fe4173da1b86c51de26cdf0f9b9153|commit]], [[https://git.kernel.org/linus/c75a33c84b83ffbb8b8b58a6bf4dea69dba21326|commit]], [[https://git.kernel.org/linus/95ad92d687e78c90e720174ffdf7a728add95b9e|commit]] * ice: add PFCP filter support [[https://git.kernel.org/linus/b44759705f7dc95d539d145b4c2edcaf079e7c33|commit]], [[https://git.kernel.org/linus/117aef12a7b1b797bce9f66b156c65eab850b5b5|commit]], [[https://git.kernel.org/linus/5b2be2ab76d11e20dda502712858dd0c2d4dfcd0|commit]], [[https://git.kernel.org/linus/6dd514f48110ebb4bf36875b9e7e02d07b589caa|commit]], [[https://git.kernel.org/linus/784feaa65dfd2695f837842bcd151db0add4cb17|commit]], [[https://git.kernel.org/linus/2312dfdfab34884b0403c8a370a0e12910fe41ef|commit]], [[https://git.kernel.org/linus/10a04ff09bcc39e0044190ffe9f00f998f13647c|commit]], [[https://git.kernel.org/linus/5832c4a77d6931cebf9ba737129ae8f14b66ee1d|commit]], [[https://git.kernel.org/linus/a37fbe666c016fd89e4460d0ebfcea05baba46dc|commit]], [[https://git.kernel.org/linus/7adaf37f7f104a7ee5f150af491674ccbbfc4114|commit]], [[https://git.kernel.org/linus/f3e28876b6e0b80cc35bf4a7bd854ce1035ea985|commit]], [[https://git.kernel.org/linus/4ca532d64648d4776d15512caed3efea05ca7195|commit]], [[https://git.kernel.org/linus/c1023f5634b9bfcbfff0dc200245309e3cde9b54|commit]], [[https://git.kernel.org/linus/7d8296b250f2eed73f1758607926d4d258dea5d4|commit]], [[https://git.kernel.org/linus/72cc1980a0ef3ccad0d539e7dace63d0d7d432a4|commit]], [[https://git.kernel.org/linus/76c8764ef36a5d37ea2e551bda28ac7f028383ba|commit]], [[https://git.kernel.org/linus/3f5ef5109f6a054ce58b3bec7214ed76c9cc269f|commit]] * gve: enable ring size changes [[https://git.kernel.org/linus/834f9458f2fdb48dfb95976934c1594d086a956d|commit]], [[https://git.kernel.org/linus/ed4fb326947dc486f97c66168f6ac50f5d1efd19|commit]], [[https://git.kernel.org/linus/b94d3703c1a6a57323256a687f4cbdabfffbe408|commit]], [[https://git.kernel.org/linus/5dee3c702c20b62bc12b72edb495740bf06d97b3|commit]], [[https://git.kernel.org/linus/4cbc70f6ec5e06f93e617d3f2d7f8dc47c0c9067|commit]] * gve: Implement queue api [[https://git.kernel.org/linus/9a5e0776d11f1ac9c740a6e24ff0e0facb6e3ddb|commit]], [[https://git.kernel.org/linus/770f52d5a0ed9ea3e3b8f04927eac520cab97935|commit]], [[https://git.kernel.org/linus/dcecfcf21bd139f90f94f630ae86122a98267685|commit]], [[https://git.kernel.org/linus/242f30fe692e5f6407a27a3e9b64f23c9c9b5c83|commit]], [[https://git.kernel.org/linus/c93462b914dbf46b0c0256f7784cc79f7c368e45|commit]], [[https://git.kernel.org/linus/087b24de5c825c53f15a9481b94f757223c20610|commit]], [[https://git.kernel.org/linus/af9bcf910b1f86244f39e15e701b2dc564b469a6|commit]], [[https://git.kernel.org/linus/864616d97a4505a719d5f67c29d31776038d39ef|commit]], [[https://git.kernel.org/linus/5abc37bdcbc5a32f7c5cb21f5c0334cbf0e81752|commit]], [[https://git.kernel.org/linus/ee24284e2a1075966f0f2c5499c59b7d2b9bc2de|commit]] * gve: Add counter adminq_get_ptype_map_cnt to stats report [[https://git.kernel.org/linus/3bcbc67be1b7e7f6dc48a5b6687a511e5fd7cf81|commit]] * gtp: updates for net-next (v3) [[https://git.kernel.org/linus/e4f88f7381fa551ff4ad059930a729a0ef2b405f|commit]], [[https://git.kernel.org/linus/e075880459a8554e43b6c03487375283f22ccb9f|commit]], [[https://git.kernel.org/linus/b6fc0956ac532d1b35f6f517c083603b5e150b0d|commit]], [[https://git.kernel.org/linus/e30ea48b5e7ebc09c4277a478727d195ca231cef|commit]], [[https://git.kernel.org/linus/c75fc0b9e5be7350ab1c73a0dcd48e9a8985ce24|commit]], [[https://git.kernel.org/linus/750771d0ca76817e15fef1211b9748ae7ed3aff6|commit]], [[https://git.kernel.org/linus/045a7c15e7910bcce379386390c0353c944e386a|commit]], [[https://git.kernel.org/linus/514eef9c2a711b4c24b97bb456d39695a6fe1775|commit]], [[https://git.kernel.org/linus/559101a707842b4fc39cddef03f5dbcaa7820c6d|commit]], [[https://git.kernel.org/linus/c6461ec97b256856e6736454f00af70d9d12f171|commit]], [[https://git.kernel.org/linus/5858ae44e289ac6c809af3fe81b9a6ed41914d41|commit]], [[https://git.kernel.org/linus/b77732f05ebbc8d1452577a67f28c0cf3ee59684|commit]] * bnxt_en: PTP and RSS updates [[https://git.kernel.org/linus/ecb342bb6098fa13f2719f8baaab4475e404f784|commit]], [[https://git.kernel.org/linus/b09353437b28ff8786e60aa9bd560a4474facfc0|commit]], [[https://git.kernel.org/linus/604041643a858bc1d3926e0a32ebc482e8beaee2|commit]], [[https://git.kernel.org/linus/61c814bf4ad7c4422796e53e9489965e9257abac|commit]], [[https://git.kernel.org/linus/2f4f9fe5bf5fe0eff7e3f372353b30e600e33c20|commit]], [[https://git.kernel.org/linus/1dcd70ba2437b52d18f3ad4cc65931a74bdcb353|commit]], [[https://git.kernel.org/linus/b3d0083caf9abd495e1fc0016b0b29bbfeee99af|commit]], [[https://git.kernel.org/linus/7de3c2218eed77ed4771521459a18bef938f7089|commit]], [[https://git.kernel.org/linus/0895926f725ac6e4d163eb4b964199a5e81fbf40|commit]], [[https://git.kernel.org/linus/fea41bd766342a734e0562945254b65c22c6c3b4|commit]], [[https://git.kernel.org/linus/a4c11166a69619f1fd0118a0790c46872836240a|commit]], [[https://git.kernel.org/linus/77a614f7499edd47549f31730f50cb043b699a8b|commit]] * bnxt_en: Update for net-next [[https://git.kernel.org/linus/4e474addc05a51c3515a88b54dbf21a10b747b23|commit]], [[https://git.kernel.org/linus/e193f53aed21ad8fed5b87238c006090d75c9d18|commit]], [[https://git.kernel.org/linus/8635ae8e99a670b38198b7561c6c57b13418f108|commit]], [[https://git.kernel.org/linus/fba2e4e5dbab399eb8801801471ac69f9baeba98|commit]], [[https://git.kernel.org/linus/d5ab32e9b02dc228444add3502261ad68391bf30|commit]], [[https://git.kernel.org/linus/0ae1fafc8be6d4271a8ad66b4695e123a4e8cef1|commit]], [[https://git.kernel.org/linus/1614f06e09ad6b271c6ed8ffd87ccf89ec51526c|commit]] * bnxt_en: Updates for net-next [[https://git.kernel.org/linus/54d0b84f400290df93127ef9a562745464908ffb|commit]], [[https://git.kernel.org/linus/895621f1c81695da7660fe909173e9f98619e89c|commit]], [[https://git.kernel.org/linus/f79d7a9f1c9d0cba9ae3d0cfd743c277d78dcf45|commit]], [[https://git.kernel.org/linus/a75fbb3aa47a62d76d8b07b49db9e2f0e08fbba7|commit]], [[https://git.kernel.org/linus/3c163f35bd50314d4e70ed9e83e1d8d83c473325|commit]], [[https://git.kernel.org/linus/de21ec442d411b17a2386cb6683acd18b047506d|commit]] * RDMA/mana_ib: Implement RNIC CQs [[https://git.kernel.org/linus/44b607ad4cdf23ae8f796b95bd14709fa06f7728|commit]], [[https://git.kernel.org/linus/f79edef79b6a2161f4124112f9b0c46891bb0b74|commit]], [[https://git.kernel.org/linus/3e41105263d5d74840c0d117278894b428f02841|commit]], [[https://git.kernel.org/linus/5843415916852983d3aaddc87b57630af9b0adad|commit]], [[https://git.kernel.org/linus/e73c882f0a0149d8cad79f87b28cbbc9b4ed9ebe|commit]] * RDMA/hns: Support DSCP [[https://git.kernel.org/linus/ee20cc17e9d8fd85225e18351637460f3482be2f|commit]] * RDMA/mana_ib: Enable RNIC adapter and populate it with GIDs [[https://git.kernel.org/linus/8859f009ace237ffc165c95edcc113d3824b9bf3|commit]], [[https://git.kernel.org/linus/1a79c2b9d4a08788cf1554981f10d23fbad77d11|commit]], [[https://git.kernel.org/linus/4bda1d5332ec1b00262ad53f6a4cfa88190a048d|commit]], [[https://git.kernel.org/linus/98b889c43935c43ad15783dbfb1e59b4ee7f4a56|commit]], [[https://git.kernel.org/linus/faafb8b126ad6043663a77e6b234bca932f60694|commit]], [[https://git.kernel.org/linus/8b184e4f1c328d9b37994f66224550befdefe49b|commit]] * RDMA/core: Add an option to display driver-specific QPs in the rdmatool [[https://git.kernel.org/linus/fd3af5e21866b776713b8c60556153d758995fb7|commit]], [[https://git.kernel.org/linus/e18fa0bbcedf82aaa1db27079ef6a43e11367592|commit]] * Bluetooth: qca: Support downloading board id specific NVM for WCN7850 [[https://git.kernel.org/linus/e41137d8bd1a8e8bab8dcbfe3ec056418db3df18|commit]] * Bluetooth: Add support for !MediaTek MT7922 device [[https://git.kernel.org/linus/8c0401b7308cb7f37fb85bb84f6dfd0df749fd43|commit]] * Bluetooth: btintel: Add support for BlazarI [[https://git.kernel.org/linus/87ad06a20f1c8b521070ebe4cb78f68673c14a8c|commit]] * Bluetooth: btintel: Add support for Filmore Peak2 (BE201) [[https://git.kernel.org/linus/5c9f6a7853926ab1eca68208ea5bcd0684fc91ad|commit]] * Bluetooth: btintel: Add support to download intermediate loader [[https://git.kernel.org/linus/f3b845e0aea321b7f2e93195e2e5c5ef28407db6|commit]] * Bluetooth: btintel_pcie: Add support for PCIe transport [[https://git.kernel.org/linus/c2b636b3f788d10486a6691ad6dd3ec4c93bd78e|commit]] * Bluetooth: btusb: Add USB HW IDs for MT7921/MT7922/MT7925 [[https://git.kernel.org/linus/129d329286f624b0ccd66e904a2c27eb4d5196e5|commit]] * mlx5 misc patches [[https://git.kernel.org/linus/595f41608dbae55268f63f629acc95a1e0f08a65|commit]], [[https://git.kernel.org/linus/30f8d23814ea4bb0229a78f7f8f36500c2e2d962|commit]], [[https://git.kernel.org/linus/9ac9299d41f6b67c9b99f1522824572e50a292f8|commit]], [[https://git.kernel.org/linus/07e1bc785a91e1cb621ac6a098acb222fb0811cf|commit]], [[https://git.kernel.org/linus/89b34322d29381c916933f4728be7cfd08271442|commit]], [[https://git.kernel.org/linus/c788d79cfa6b68b1068b25e9cdff25d6035ed191|commit]], [[https://git.kernel.org/linus/e2d515eb8fcdde06da49be981e13f0c7be4f0b16|commit]], [[https://git.kernel.org/linus/404c76783f322120266a4ef659abe418dc74f5c6|commit]], [[https://git.kernel.org/linus/19b85f1b37ce1d97158ca2b1d7c1a3b3e640c813|commit]], [[https://git.kernel.org/linus/27ea84ab35f5980d3b1a71381da8d62f7a4b54be|commit]], [[https://git.kernel.org/linus/137f3d50ad2a0f2e1ebe5181d6b32a5541786b99|commit]] * mlx5e: Improve ethtool coalesce support and support per-queue configuration [[https://git.kernel.org/linus/445a25f6e1a2f6a132b06af6ede4f3c9b5f9af68|commit]], [[https://git.kernel.org/linus/a5e89a3f353b931e917b77e7cf6719c8e8d64c54|commit]], [[https://git.kernel.org/linus/eca1e8a62888a31c8dcfad79457232594be40c1a|commit]], [[https://git.kernel.org/linus/7ec56914d3ac0a84a71836296ffd35df0e88007b|commit]] * mlx5e rc2 misc patches [[https://git.kernel.org/linus/958f56e4838579544fbc5183073518c7c4d22d44|commit]], [[https://git.kernel.org/linus/919b38a916b4c616f1ead7d551de74bfcbe13e3c|commit]], [[https://git.kernel.org/linus/4aafb8ab2a626ac714931ec7894cf16df948b359|commit]], [[https://git.kernel.org/linus/d4383ce15f5bb0e889406961372d31199f3f6edc|commit]] * mlx5e: ethtool HW timestamping statistics [[https://git.kernel.org/linus/2e0e148c727061009d3db5f436f51890bbb49a80|commit]], [[https://git.kernel.org/linus/adda5401807882f5575364442cd583462fc40ae4|commit]], [[https://git.kernel.org/linus/cd429012f078395c5bfa558e2e81e882b48023b0|commit]], [[https://git.kernel.org/linus/0e9c127729be19adcdf2f5cc1f3450a4322fdf3a|commit]], [[https://git.kernel.org/linus/ca3e10c4d83ad6bb611d07857aade7078c87ad99|commit]], [[https://git.kernel.org/linus/3579032c08c1d313bb53e67e97e9ea77bed48014|commit]] * mlx5 misc patches [[https://git.kernel.org/linus/db5944e16cd80efcbfe0bf1d067fdcc2f710d246|commit]], [[https://git.kernel.org/linus/bcee093751f87dff6ace6355da06e62fd04189a3|commit]], [[https://git.kernel.org/linus/e0e6adfe8c20f1b633017e4dafec1b06117da2df|commit]] * mlx5 misc patches [[https://git.kernel.org/linus/595f41608dbae55268f63f629acc95a1e0f08a65|commit]], [[https://git.kernel.org/linus/30f8d23814ea4bb0229a78f7f8f36500c2e2d962|commit]], [[https://git.kernel.org/linus/9ac9299d41f6b67c9b99f1522824572e50a292f8|commit]], [[https://git.kernel.org/linus/07e1bc785a91e1cb621ac6a098acb222fb0811cf|commit]], [[https://git.kernel.org/linus/89b34322d29381c916933f4728be7cfd08271442|commit]], [[https://git.kernel.org/linus/c788d79cfa6b68b1068b25e9cdff25d6035ed191|commit]], [[https://git.kernel.org/linus/e2d515eb8fcdde06da49be981e13f0c7be4f0b16|commit]], [[https://git.kernel.org/linus/404c76783f322120266a4ef659abe418dc74f5c6|commit]], [[https://git.kernel.org/linus/19b85f1b37ce1d97158ca2b1d7c1a3b3e640c813|commit]], [[https://git.kernel.org/linus/27ea84ab35f5980d3b1a71381da8d62f7a4b54be|commit]], [[https://git.kernel.org/linus/137f3d50ad2a0f2e1ebe5181d6b32a5541786b99|commit]] * mlx5e: Improve ethtool coalesce support and support per-queue configuration [[https://git.kernel.org/linus/445a25f6e1a2f6a132b06af6ede4f3c9b5f9af68|commit]], [[https://git.kernel.org/linus/a5e89a3f353b931e917b77e7cf6719c8e8d64c54|commit]], [[https://git.kernel.org/linus/eca1e8a62888a31c8dcfad79457232594be40c1a|commit]], [[https://git.kernel.org/linus/7ec56914d3ac0a84a71836296ffd35df0e88007b|commit]] * mlx5e rc2 misc patches [[https://git.kernel.org/linus/958f56e4838579544fbc5183073518c7c4d22d44|commit]], [[https://git.kernel.org/linus/919b38a916b4c616f1ead7d551de74bfcbe13e3c|commit]], [[https://git.kernel.org/linus/4aafb8ab2a626ac714931ec7894cf16df948b359|commit]], [[https://git.kernel.org/linus/d4383ce15f5bb0e889406961372d31199f3f6edc|commit]] * mlx5e: ethtool HW timestamping statistics [[https://git.kernel.org/linus/2e0e148c727061009d3db5f436f51890bbb49a80|commit]], [[https://git.kernel.org/linus/adda5401807882f5575364442cd583462fc40ae4|commit]], [[https://git.kernel.org/linus/cd429012f078395c5bfa558e2e81e882b48023b0|commit]], [[https://git.kernel.org/linus/0e9c127729be19adcdf2f5cc1f3450a4322fdf3a|commit]], [[https://git.kernel.org/linus/ca3e10c4d83ad6bb611d07857aade7078c87ad99|commit]], [[https://git.kernel.org/linus/3579032c08c1d313bb53e67e97e9ea77bed48014|commit]] * mlx5 misc patches [[https://git.kernel.org/linus/db5944e16cd80efcbfe0bf1d067fdcc2f710d246|commit]], [[https://git.kernel.org/linus/bcee093751f87dff6ace6355da06e62fd04189a3|commit]], [[https://git.kernel.org/linus/e0e6adfe8c20f1b633017e4dafec1b06117da2df|commit]] * sfp: allow use 2500base-X for 2500base-T modules [[https://git.kernel.org/linus/8a3163b6714be5f544846a2c200916d848556d57|commit]] * pse-pd: Add support for Power over Ethernet (PoE) [[https://git.kernel.org/linus/33d21bd1c81d899d8b97d375d8ee9a3bfa65b1fa|commit]], [[https://git.kernel.org/linus/f562202fedadacdd39f954a371259c2d820aa9b4|commit]], [[https://git.kernel.org/linus/edd79f084ad40991c28341ae07c9f429fac799aa|commit]], [[https://git.kernel.org/linus/9be9567a7c59b7314ea776f56945fe3fc28efe99|commit]], [[https://git.kernel.org/linus/47e0dd53c5eb9dab66689592523f31ea39fc32fa|commit]], [[https://git.kernel.org/linus/9c1de033afad216d02fb4efec22d40dd000e72c2|commit]], [[https://git.kernel.org/linus/9a993845189004a923b78d0df643e47970147337|commit]], [[https://git.kernel.org/linus/20e6d190ffe1c8922500d7a4b21bb7fbc703d712|commit]], [[https://git.kernel.org/linus/4d18e3ddf427d93a2895a1c9d61477e1f1726cad|commit]], [[https://git.kernel.org/linus/d83e13761d5b0568376963729abcccf6de5a43ba|commit]], [[https://git.kernel.org/linus/b58be8db6327b21e0c7fbee559b8eb47f5110efe|commit]], [[https://git.kernel.org/linus/b17181a88fb90d7eab51ab7576e8985cc2a8d1bc|commit]], [[https://git.kernel.org/linus/f8586411e40ea8152c7a030e4f1d9bd9005e2628|commit]], [[https://git.kernel.org/linus/57b30d2a5475eb837fe1124f15f93a2a230c7bf3|commit]], [[https://git.kernel.org/linus/29e28d1d7a16a3f6dba55c1df5cc6e0f9edf3017|commit]] * phy: marvell: implement cable test for 88E1111 [[https://git.kernel.org/linus/d133ef1ee2a256ba5a589493cd28dccfede6af11|commit]] * phy: micrel: add Microchip KSZ 9477 to the device table [[https://git.kernel.org/linus/54a4e5c16382e871c01dd82b47e930fdce30406b|commit]] * phy: aquantia: add support for AQR114C PHY ID [[https://git.kernel.org/linus/c278ec644377249aba5b1e1ca2b5705fd1c0132c|commit]] * phy: marvell: add basic support of 88E308X/88E609X family [[https://git.kernel.org/linus/ada9841e3e665bb320d2eedcf33f640198e2378d|commit]] * phy: air_en8811h: Add the Airoha EN8811H PHY driver [[https://git.kernel.org/linus/71e79430117d56c409c5ea485a263bc0d8083390|commit]] * Introduce PHY listing and link_topology tracking [[https://git.kernel.org/linus/fe1eb24bd5ade085914248c527044e942f75e06a|commit]], [[https://git.kernel.org/linus/32bb4515e34469975abc936deb0a116c4a445817|commit]], [[https://git.kernel.org/linus/c29451aefcb42359905d18678de38e52eccb3bb5|commit]], [[https://git.kernel.org/linus/63d5eaf35ac36cad00cfb3809d794ef0078c822b|commit]], [[https://git.kernel.org/linus/9c5625f559ad6fe9f6f733c11475bf470e637d34|commit]], [[https://git.kernel.org/linus/d078d480639a4f3b5fc2d56247afa38e0956483a|commit]], [[https://git.kernel.org/linus/034fcc210349b873ece7356905be5c6ca11eef2a|commit]], [[https://git.kernel.org/linus/02018c544ef113e980a2349eba89003d6f399d22|commit]], [[https://git.kernel.org/linus/95132a018f00f5dad38bdcfd4180d1af955d46f6|commit]], [[https://git.kernel.org/linus/2ab0edb505faa9ac90dee1732571390f074e8113|commit]], [[https://git.kernel.org/linus/dedd702a35793ab462fce4c737eeba0badf9718e|commit]], [[https://git.kernel.org/linus/7db69ec9cfb8b4ab50420262631fb2d1908b25bf|commit]] * intel: introduce {, Intel} Ethernet common library [[https://git.kernel.org/linus/ce230f4f8981e2a7f06b71c22cc742cfe91a525d|commit]], [[https://git.kernel.org/linus/e6c91556b97f855436fa45f75e69165d671012a7|commit]], [[https://git.kernel.org/linus/53844673d555290010dd3d6de1365af72e9839c8|commit]], [[https://git.kernel.org/linus/920d86f3c5529d658bb9576ae9120a2330d9b220|commit]], [[https://git.kernel.org/linus/87a927efa7d9f95f3acd4fc04b8f3bc809f0f465|commit]], [[https://git.kernel.org/linus/306ec721d043bbe5e818d59fbb37c28d999b5d8b|commit]], [[https://git.kernel.org/linus/97cadd3d3ce3df32647011233a35a1597bb7a55b|commit]], [[https://git.kernel.org/linus/ef9226cd56b718c79184a3466d32984a51cb449c|commit]], [[https://git.kernel.org/linus/a1d6063d9f2f4f4f4ed1733ed3f3f63244c4afb5|commit]], [[https://git.kernel.org/linus/5fa4caff59f251bf9f766fc48c9f0a774a9216a0|commit]] * hns3: Support some features for the HNS3 ethernet driver [[https://git.kernel.org/linus/a1e5de0d07a3b2db047fe8ba0063d129672f979a|commit]], [[https://git.kernel.org/linus/8a4bda8cb9e43e1fae96c4c4aa94069f49dc3a68|commit]], [[https://git.kernel.org/linus/b20250afcfb4d3b94ae520ae7afed591ebe5cb5b|commit]], [[https://git.kernel.org/linus/2a1a1a7b5fd778ccf22ee530fd4dec7f7d597056|commit]] * ti: am65-cpts: Enable RX HW timestamp for PTP packets using CPTS FIFO [[https://git.kernel.org/linus/c03a6fd398269e345ee808cdced311fd01215c18|commit]], [[https://git.kernel.org/linus/c459f606f66dfdb14aef5a7927c2f4b274682fee|commit]] * ti: am65-cpsw: Add minimal XDP support to TI AM65 CPSW Ethernet driver [[https://git.kernel.org/linus/8acacc40f7337527ff84cd901ed2ef0a2b95b2b6|commit]], [[https://git.kernel.org/linus/84d767a3c0b5e6b7d13bcaa64405c0613138161f|commit]], [[https://git.kernel.org/linus/cd8ff81f747fdf5df75a634b9b90aef2716d84fd|commit]] * ENA driver changes May 2024 [[https://git.kernel.org/linus/48673ef444317f44c80da4fe98442dd56ed78cac|commit]], [[https://git.kernel.org/linus/b37b98a3a0c1198bafe8c2d9ce0bc845b4e7a9a7|commit]], [[https://git.kernel.org/linus/62a261f6c1dda0d0b26918cf31da8053c846a0a5|commit]], [[https://git.kernel.org/linus/1cc0a47daa7a2778ac8ab6e2699b605193602607|commit]], [[https://git.kernel.org/linus/97776caf6c6e3a932d8e1410e6810cbfcb69d42d|commit]] * dsa: realtek: fix LED support for rtl8366 [[https://git.kernel.org/linus/32d617005475a71ebcc4ec8b2791e8d1481e9a10|commit]], [[https://git.kernel.org/linus/4f580e9aced1816398c1c64f178302a22b8ea6e2|commit]], [[https://git.kernel.org/linus/5edc6585aafefa3d44fb8a84adf241d90227f7a3|commit]] * dsa: microchip: add DCB and DSCP support for KSZ switches [[https://git.kernel.org/linus/a1ea57710c9d9ed2d615ef0244863e6802c5a8bb|commit]], [[https://git.kernel.org/linus/c631250a24f59c76b705633dc9744772d3db8e88|commit]], [[https://git.kernel.org/linus/c2e722657f18272a8b8711e94b29466f253715e6|commit]], [[https://git.kernel.org/linus/97278f8f109a31e626aa8f3bc984eb10a704ecc4|commit]], [[https://git.kernel.org/linus/cbc7afffc5ec581d3781c49fe9c8e8c661e5217b|commit]], [[https://git.kernel.org/linus/5f5109af47535bc613c12a089dded425a373a12f|commit]], [[https://git.kernel.org/linus/768cf8413883892c6ff0db783a0295a60886ec33|commit]], [[https://git.kernel.org/linus/96c6f337951a03ab40e13a44cf5ea59b14725721|commit]], [[https://git.kernel.org/linus/3bcb8968654dd2a3c3db6ee55b9abac74454100e|commit]], [[https://git.kernel.org/linus/a16efc61d2895ebd9e80ec46365c70827138a1fa|commit]], [[https://git.kernel.org/linus/328de4671dd67f8fe88e4b0ac11b4f9afb92966d|commit]], [[https://git.kernel.org/linus/ea1078d94ce067c9377340c64435d3ac61e08500|commit]] * virtio-net: support device stats [[https://git.kernel.org/linus/d806e1ff79e65f9cf7932286555fc2855e721ae5|commit]], [[https://git.kernel.org/linus/0cfe71f45f420e412fda2395807a56c453a6e0b6|commit]], [[https://git.kernel.org/linus/34cfe87221363d98160f74788dd060b1c43bae0d|commit]], [[https://git.kernel.org/linus/de6df26ffced76137349be241a579b4fffaf5703|commit]], [[https://git.kernel.org/linus/aff5b0e605b06e3d803fb198425753c8391ffb3d|commit]], [[https://git.kernel.org/linus/d888f04c09bb2c2fc60f84ccba87a9ff727b13d4|commit]], [[https://git.kernel.org/linus/d86769b9d23c3907349163933adb9dad8059918b|commit]], [[https://git.kernel.org/linus/941168f8b40e50518a3bc6ce770a7062a5d99230|commit]] * virtio_net: Support RX hash XDP hint [[https://git.kernel.org/linus/aa37f8916d20cf58437d507fc9599492a342b3cd|commit]] * Add TX stop/wake counters [[https://git.kernel.org/linus/c39add9b24237a4b4d8455643af9db42ef08b40d|commit]], [[https://git.kernel.org/linus/b56035101e1cdd9c4420ea5da17f09f87fb69285|commit]] * Support describing the MDIO bus [[https://git.kernel.org/linus/2c60c4c008d4b05b9b65bf88f784556208029333|commit]], [[https://git.kernel.org/linus/a87590c45c87424953118e8a43f36d967f3ca406|commit]] * add support for RTL8168M [[https://git.kernel.org/linus/39f59c72ad3a1eaab9a60f0671bc94d2bc826d21|commit]] * add PFCP filter support [[https://git.kernel.org/linus/b44759705f7dc95d539d145b4c2edcaf079e7c33|commit]], [[https://git.kernel.org/linus/117aef12a7b1b797bce9f66b156c65eab850b5b5|commit]], [[https://git.kernel.org/linus/5b2be2ab76d11e20dda502712858dd0c2d4dfcd0|commit]], [[https://git.kernel.org/linus/6dd514f48110ebb4bf36875b9e7e02d07b589caa|commit]], [[https://git.kernel.org/linus/784feaa65dfd2695f837842bcd151db0add4cb17|commit]], [[https://git.kernel.org/linus/2312dfdfab34884b0403c8a370a0e12910fe41ef|commit]], [[https://git.kernel.org/linus/10a04ff09bcc39e0044190ffe9f00f998f13647c|commit]], [[https://git.kernel.org/linus/5832c4a77d6931cebf9ba737129ae8f14b66ee1d|commit]], [[https://git.kernel.org/linus/a37fbe666c016fd89e4460d0ebfcea05baba46dc|commit]], [[https://git.kernel.org/linus/7adaf37f7f104a7ee5f150af491674ccbbfc4114|commit]], [[https://git.kernel.org/linus/f3e28876b6e0b80cc35bf4a7bd854ce1035ea985|commit]], [[https://git.kernel.org/linus/4ca532d64648d4776d15512caed3efea05ca7195|commit]], [[https://git.kernel.org/linus/c1023f5634b9bfcbfff0dc200245309e3cde9b54|commit]], [[https://git.kernel.org/linus/7d8296b250f2eed73f1758607926d4d258dea5d4|commit]], [[https://git.kernel.org/linus/72cc1980a0ef3ccad0d539e7dace63d0d7d432a4|commit]], [[https://git.kernel.org/linus/76c8764ef36a5d37ea2e551bda28ac7f028383ba|commit]], [[https://git.kernel.org/linus/3f5ef5109f6a054ce58b3bec7214ed76c9cc269f|commit]] * octeontx2-pf: Add support for offload tc with skbedit mark action [[https://git.kernel.org/linus/6a57f091622a1251c2826f7380577049199b80ea|commit]] * nfp: series of minor driver improvements [[https://git.kernel.org/linus/8910f93b95706b4b11485bb0f318f88918a46b04|commit]], [[https://git.kernel.org/linus/3bb946c9d323f4b47b87bd73134125d562f72448|commit]] * netdevsim: add NAPI support [[https://git.kernel.org/linus/1cf2704242180351d156fb48c334b319ae6b0759|commit]], [[https://git.kernel.org/linus/693aa9470d8273a0ded8b211a8f5f7c0835adf30|commit]] * usb: qmi_wwan: add Lonsung U8300/U9300 product [[https://git.kernel.org/linus/bc1b7f02c8feff2ec6f242493f17d4a5d43afb50|commit]] * ti: Support ICSSG-based Ethernet on AM65x SR1.0 devices [[https://git.kernel.org/linus/95c2e689331ee53b850ea4c996831ce64a91aea2|commit]], [[https://git.kernel.org/linus/604e603d73ec75365d9a2325991c0234ca420ac5|commit]], [[https://git.kernel.org/linus/e1900d7ba9c9fd9edb214c43d2826876a5a35057|commit]], [[https://git.kernel.org/linus/7f5ac1a02242b6d100b6f788dffa9e8681983ee1|commit]], [[https://git.kernel.org/linus/e654b85a693e3cad58cf248c0770c02c346c8824|commit]], [[https://git.kernel.org/linus/dc073430db8d3f28460ea3ec1901e34bf7e8c0f2|commit]], [[https://git.kernel.org/linus/0a74a9de79c142e6c6fdedc22e55933034efd24a|commit]], [[https://git.kernel.org/linus/8623dea207a7ec01ccb69bf14fd172da9be5a1dc|commit]], [[https://git.kernel.org/linus/6d6a5751cd8e4d78b2d9093c0ba3fbfed551e8cb|commit]], [[https://git.kernel.org/linus/ce95cb4c8d26b6917debf0eb1cd7c05230c0e7aa|commit]] * stmmac: Add support for RZN1 GMAC devices [[https://git.kernel.org/linus/f360446ec1d06df0e7d13db44945a0ffb9f2d17d|commit]], [[https://git.kernel.org/linus/d5c50937d50f396ef97817e30361827ac5b166c2|commit]], [[https://git.kernel.org/linus/f9cdff1bdacc947bcd182ea69d94b9f5b32ff328|commit]], [[https://git.kernel.org/linus/ab5588703981e5560cce47988187aa15005c766f|commit]], [[https://git.kernel.org/linus/81b418a6565757128afc6f74dd997598f8adb1b2|commit]], [[https://git.kernel.org/linus/f0ef433fc264b70a415257dba126acbe3fda666b|commit]] * sparx5: add support for port mirroring [[https://git.kernel.org/linus/ed3af5fd08ebe3b39cdd37ec2a473ef98e05ce39|commit]], [[https://git.kernel.org/linus/5af946f4bb421cac8b6936b59ffdd426279c0b2e|commit]], [[https://git.kernel.org/linus/2ac99ed9c3ef43abcdc20210c67f4d1d901fe1a1|commit]], [[https://git.kernel.org/linus/4e50d72b3b95fd1ba678f1fab395c3f45105d6bd|commit]], [[https://git.kernel.org/linus/1ede4acf045ced70d9b72465e2e968aec71e0a42|commit]], [[https://git.kernel.org/linus/8c82bfdd84998c2d78dda0f4a32ecc7b91f7ea8d|commit]] * sparx5: Add support for flower actions mirred and redirect [[https://git.kernel.org/linus/1164b8e0b108507b41e2564a9461bc0a6e38283c|commit]], [[https://git.kernel.org/linus/48ba00da2eb4b54a7e6ed2ca3a9f2e575dff48c9|commit]] * rtw89: wow: support more exchange in WoWLAN mode [[https://git.kernel.org/linus/786737b6b708006bdf61ecb9bdce2e1283bd7be0|commit]], [[https://git.kernel.org/linus/ed9a3c0d4dd9ce79ff7f65238164a96da1b52dbf|commit]], [[https://git.kernel.org/linus/baaf806e4632a259cc959fd1c516c2d9ed48df6d|commit]], [[https://git.kernel.org/linus/e765370fdcedf2653a991fdb5fc852be9e569891|commit]], [[https://git.kernel.org/linus/58ed86e1666b3afaef8c303cfa6a734c96efeb85|commit]], [[https://git.kernel.org/linus/92790c4e50d2016a625395087974edce8b02fa68|commit]], [[https://git.kernel.org/linus/940cd99625de8c75209b1169e6cd5698075c0a37|commit]], [[https://git.kernel.org/linus/a79264e8c7d378ef4792b66e118d4f5e759795e3|commit]], [[https://git.kernel.org/linus/0291633afef8db6606caede253b217ed661272ed|commit]], [[https://git.kernel.org/linus/9076bf365e132eea6d0e17c78e079a4e4c6b976e|commit]], [[https://git.kernel.org/linus/803a96f477beafd002c50d09d74e043a552ccaf9|commit]], [[https://git.kernel.org/linus/ff53fce5c78ba27ec7eb0baff7ef9648fde7ad8e|commit]] * rtw89: improve compatibility of download firmware and PCI PHY [[https://git.kernel.org/linus/a78d33a1286ccba088e422720e00f36b2d76dd7d|commit]], [[https://git.kernel.org/linus/5b919d726b613c78d4dc463dd9f90c55843fd1b3|commit]], [[https://git.kernel.org/linus/973719185ad1313345029ae66b492f8ce7428551|commit]], [[https://git.kernel.org/linus/a9e1b0ec5bdeedcf062416af4081aa005f8bf1e7|commit]] * rtw89: coex: update BT-coexistence mechanism for 8922A [[https://git.kernel.org/linus/b952cb0a6e2d2e6942de3f8c6a1bd985815b9550|commit]], [[https://git.kernel.org/linus/de656c77c72e4571386277f9ae1dcc341896bb6e|commit]], [[https://git.kernel.org/linus/b5d8d19de28478e679f6977b07a8aa0091c6e889|commit]], [[https://git.kernel.org/linus/ac83ba93b22d32799f7fc36b838b0808b4b040c6|commit]], [[https://git.kernel.org/linus/a4f19fd7dcea99970927df1dac5bba60b905f4d3|commit]], [[https://git.kernel.org/linus/45deb9e6a60b6ff6a623d0ff355f0ea5289776b7|commit]], [[https://git.kernel.org/linus/c95d34c7d6763156fd9fc6b6da66b80c24b9abd5|commit]], [[https://git.kernel.org/linus/89d06325364a7e615e71bde2ed4689611749a2ef|commit]], [[https://git.kernel.org/linus/4ea11e4db3550ee655b411b43498552e8c6ead01|commit]] * rtw89: add BT-coexistence materials for 8922A and enable 8922AE [[https://git.kernel.org/linus/f95d9045b987c890ba7bebdd04ea9713f5a00d01|commit]], [[https://git.kernel.org/linus/bd120fa34f77f9af4b3affaddb19fc4448e20ed4|commit]], [[https://git.kernel.org/linus/69cf60501642b4b84e800f4b3dc851d0a6e5ca8c|commit]], [[https://git.kernel.org/linus/4e430ca430325f4324a424695e3f3481b2fb7a5b|commit]], [[https://git.kernel.org/linus/89d58c931b595ef8393a07edd51b05ad8b2c1e9c|commit]], [[https://git.kernel.org/linus/a7d6f8d0c6d23e5c03ee7df88725e23597c8b6de|commit]] * rtw89: coex: complete BT-coexistence mechanism for 8922A [[https://git.kernel.org/linus/efb85ded5c202381af20202e7bf238c7118c7448|commit]], [[https://git.kernel.org/linus/11173c7062dbd38ff67a1f11a086b769a90d2340|commit]], [[https://git.kernel.org/linus/e5d0305a2b558471c964e55f3291972c73dfbb4a|commit]], [[https://git.kernel.org/linus/b60b46863375a57f73aa5679bba19c350c269a21|commit]], [[https://git.kernel.org/linus/430d80e79477fac970d8e26dabd761ba403b4989|commit]], [[https://git.kernel.org/linus/416a445ec328c53ad5f24e000182ac027f0f9cf5|commit]], [[https://git.kernel.org/linus/947cbc6ead46c27039c13c3732d729541b2288be|commit]], [[https://git.kernel.org/linus/1a5565d81285a2f92643db5c26d5390c22fe6826|commit]] * rtw89: 8922a: update 8922A settings along with current firmware [[https://git.kernel.org/linus/d2b6da242454ee886729aad7020dfda7995bc26b|commit]], [[https://git.kernel.org/linus/e2e32a192ef14308322c4d6eb78742e8b8afbf4b|commit]], [[https://git.kernel.org/linus/6599924c1c27ea7778716724176360b40be46527|commit]] * Add support for RTL8723CS/RTL8703B [[https://git.kernel.org/linus/b0ec946c543ba4217c1f70d2f8075e3d1c2cebcf|commit]], [[https://git.kernel.org/linus/c75065b1ebfc450249e13805f8fdd275e461cefe|commit]], [[https://git.kernel.org/linus/da2abdcdbbb8c498fcfb2bc88ba56028bccdbc8a|commit]], [[https://git.kernel.org/linus/9bb762b3a957faffb4ba596165525521c07ad2eb|commit]], [[https://git.kernel.org/linus/1f30e95b1646c1c5b0fa82b6762634505a81bb87|commit]], [[https://git.kernel.org/linus/ff88b74882669e8b1931730b2401dbc2bece1355|commit]], [[https://git.kernel.org/linus/61a486bcd7820ddaa4adc110bfa96f0b3ec3fd8c|commit]], [[https://git.kernel.org/linus/23c21068c2969b79ee7578b5394bed9972f290dc|commit]], [[https://git.kernel.org/linus/64be03575f9e9772ebdebc7f067d533348602083|commit]] * rtl8xxxu: WPA3 support [[https://git.kernel.org/linus/cbfbb4ddbc8503478e0a138f9a31f61686cc5f11|commit]], [[https://git.kernel.org/linus/55e2843dd33a55f448579f1ab69aabe6f7077b04|commit]] * rtl8xxxu: Add LED control code for RTL8723BU [[https://git.kernel.org/linus/feaedb05fc47f3078eecdefa317db8e79a24b0e2|commit]] * mt76: mt7925: add EHT radiotap support in monitor mode [[https://git.kernel.org/linus/97d7ab9f51ecdc56d6daab8b7f50d49401d8f50e|commit]] * mt76: mt7921e: add LED control support [[https://git.kernel.org/linus/06777c8fdda53687a69eb5a782c443d6e2da1dcc|commit]] * mt76: mt7921: introduce mt7920 PCIe support [[https://git.kernel.org/linus/4a40fcbfe3ab4846670b59b81c914ed7e7dac2b3|commit]] * mt76: enable spectrum management [[https://git.kernel.org/linus/59f4c57306bae62f66356556cfbdd40444683c09|commit]] * cfg80211/mac80211 patches from our internal tree 2024-03-20 [[https://git.kernel.org/linus/2f51c87a156c2ee30bf6a66694c64856177c5303|commit]], [[https://git.kernel.org/linus/6e02ba7c9e0a28a87efe5a179462515e7a47008e|commit]], [[https://git.kernel.org/linus/3c9ff1a1e1d5e58f0610d408e07e372f5cf15740|commit]], [[https://git.kernel.org/linus/21e29016d5d25a2dcee2e30108f5f0d87bdb398d|commit]], [[https://git.kernel.org/linus/a0b9ecffc3cb4ad7eb02e57838fdbc1ba985d183|commit]], [[https://git.kernel.org/linus/80b0aacd1ad046b46d471cf8ed6203bbd777f988|commit]], [[https://git.kernel.org/linus/e69b6cbebd2fab2bfe9e83e2e102d1bd85b3625a|commit]] * iwlwifi: updates - 2024-05-05 [[https://git.kernel.org/linus/a1efeb823084020c31412cc8f2b5d110ad3e58a3|commit]], [[https://git.kernel.org/linus/950a3f5f3f8dbe9d32d6495b017448d7caf0219f|commit]], [[https://git.kernel.org/linus/ec0d43d26f2ca40d3bfb0678985a6ed1e9ed3887|commit]], [[https://git.kernel.org/linus/e619ad55b9fd535b266a9fbcdc48cc3a3e08d746|commit]], [[https://git.kernel.org/linus/2f33561ea8f98c9bbe99d09c4075fbdd648502bd|commit]], [[https://git.kernel.org/linus/2f876f910b34061b0c4bb744dee3174c9881da1f|commit]], [[https://git.kernel.org/linus/4c66a73f0796dacc2ff0d4af75794ec843ceb3d1|commit]], [[https://git.kernel.org/linus/966a4d9bd3070c7458cf0719fa118b8a0ed7602e|commit]], [[https://git.kernel.org/linus/e5bf75dc46e16842a29903cecd22ae7b7a1cd4e4|commit]], [[https://git.kernel.org/linus/ae7fe563e572dde754e905c85ae575a4a2726eaa|commit]], [[https://git.kernel.org/linus/72c19df24a3e352b5eefd6657cf8d4051ccf77c5|commit]], [[https://git.kernel.org/linus/bc6a7fae761cc1a2c0c3699cfcabcfebca021481|commit]], [[https://git.kernel.org/linus/1d52e8ca4cba508011fb5a50b968116a2317642a|commit]], [[https://git.kernel.org/linus/f23caa392a1b9914424f33d17b6d3ee9b34fb125|commit]], [[https://git.kernel.org/linus/8ecdc570781d1664516323a52152493c856df215|commit]] * iwlwifi: updates - 2024-03-11 [[https://git.kernel.org/linus/38b3998dfba31f2085e02010614fe28acdba9082|commit]], [[https://git.kernel.org/linus/9938fa0bdba18a44a3c358727668e3323fd00670|commit]], [[https://git.kernel.org/linus/4e9a7215962905b1e2cf7d38708d306dfe42134f|commit]], [[https://git.kernel.org/linus/180c2921e1d5e29581e7dc09d36d6be9734e42e7|commit]], [[https://git.kernel.org/linus/847d7353e5a95d4df339dd86f5a4fb69f41eff75|commit]], [[https://git.kernel.org/linus/bbd6d0f8bc5141954db84165100ba4b430a9bb45|commit]], [[https://git.kernel.org/linus/8176c8380081ea8cddaa85cfaa2ef90d0335128b|commit]], [[https://git.kernel.org/linus/1758f979b20c9742a0f3fac69f7ef89b26161f3e|commit]], [[https://git.kernel.org/linus/e06370371ab7aa6c98228a8348bce4efcf7f5455|commit]], [[https://git.kernel.org/linus/2964b57fb0632f48b9df1ed10c724460d6346629|commit]], [[https://git.kernel.org/linus/bbe806c294c9c4cd1221140d96e5f367673e393a|commit]], [[https://git.kernel.org/linus/a26fe2d09dc1d5fae6e9c05b211db9282c7b8a1f|commit]], [[https://git.kernel.org/linus/c1e458b987f2533227f6e3afeeae875b9858e06b|commit]], [[https://git.kernel.org/linus/d90ab6e317d1975006859a89fd9a7dbcb534ed05|commit]] * iwlwifi: updates - 2024-04-16 [[https://git.kernel.org/linus/a9bf72d835989d116a5662398b82cd456dc3c82e|commit]], [[https://git.kernel.org/linus/54fa45dd2c47d04ab36d644ea1c4cee14c06abb2|commit]], [[https://git.kernel.org/linus/287bc41b88958429c6d7cabc243ceb340597f1fa|commit]], [[https://git.kernel.org/linus/1b9b7d37c87c17b98d293e1317238373f296ebab|commit]], [[https://git.kernel.org/linus/bde2f9b420f69297455df7fb68792e486c04a9b4|commit]], [[https://git.kernel.org/linus/48ac6c8ed719478ab8b3035406319c7c98a8f134|commit]], [[https://git.kernel.org/linus/30ce039094b5e5842f78ec8525235cd74b9848a7|commit]], [[https://git.kernel.org/linus/492bc4e49facfdacfebbe39eead37ac54713670d|commit]], [[https://git.kernel.org/linus/9c28ead0d4eeb8b8d30b6e4ead18c24f6476e02f|commit]], [[https://git.kernel.org/linus/2887af4d22f90bcddd3ff9a6eb93ecdaab3acd94|commit]], [[https://git.kernel.org/linus/0bcc2155983e03c41b21a356af87ae839a6b3ead|commit]], [[https://git.kernel.org/linus/76f9864d7ac6d04036ba85a8616e2361f2d2d06c|commit]], [[https://git.kernel.org/linus/07bf5297d392069021055800ef48a1106a5c85b5|commit]], [[https://git.kernel.org/linus/585ba158233f97da05d9bcc59d13ddf45135c8c9|commit]], [[https://git.kernel.org/linus/9c6921121961cc0cecccb95652be6d98116f854b|commit]], [[https://git.kernel.org/linus/6cf7df9f013f44b1f94da75e3e01410231535430|commit]] * iwlwifi: updates - 2024-05-06 [[https://git.kernel.org/linus/df966c93f5a9c060df525272d9c1eb37795a88f5|commit]], [[https://git.kernel.org/linus/9875b54762a7055bc59c436950c73dd112765e6c|commit]], [[https://git.kernel.org/linus/05fe96061d175a9ee71e9cd0a4636237d08a79ef|commit]], [[https://git.kernel.org/linus/2e194efa38093f5f216802f08afc5b4b0a615ccf|commit]], [[https://git.kernel.org/linus/4e8a56aab3fb8cdf7843bc24d67ca25440085f1a|commit]], [[https://git.kernel.org/linus/2848df961f18824fa707960477827e8772d451c6|commit]], [[https://git.kernel.org/linus/bf0212fd8faa55131bfe5765ccbbaaeb156b5046|commit]], [[https://git.kernel.org/linus/b31b77b73d65d5b0a763243ca3a5c3fda3b02816|commit]], [[https://git.kernel.org/linus/653a90f6b226d8f95d06cb6c0bf5473f99582cc9|commit]], [[https://git.kernel.org/linus/126ec41e5467289a04b35a165909b884503c1a8e|commit]], [[https://git.kernel.org/linus/0897fc66ac02560682b4da79b4b1d6a0bcd68a95|commit]], [[https://git.kernel.org/linus/97320888cb1582312bb171f4d8b5adc96e630333|commit]], [[https://git.kernel.org/linus/ff907d97448689806526ee889aa937fd682a626a|commit]], [[https://git.kernel.org/linus/05f10dad0380027cfc3e6f2ef818748c86b9d23e|commit]], [[https://git.kernel.org/linus/fc612222416ce206e01d7509b013bad41a051d83|commit]] * iwlwifi: updates - 2024-03-20 [[https://git.kernel.org/linus/6b3e87cc0ca5f61a781c3abc651f0eb5a20f6e58|commit]], [[https://git.kernel.org/linus/2783ab506eaa36dbef40bda0f96eb49fe149790e|commit]], [[https://git.kernel.org/linus/96833fb3c7abfd57bb3ee2de2534c5a3f52b0838|commit]], [[https://git.kernel.org/linus/f473a7fd6d604c972853561fef853ea62d965647|commit]], [[https://git.kernel.org/linus/21317d18d0541ca27f03309aebee2ce542b94716|commit]], [[https://git.kernel.org/linus/17f64517bf5c26af56b6c3566273aad6646c3c4f|commit]], [[https://git.kernel.org/linus/19d82bdedaf2db0bfb3762dda714ea803065eed5|commit]], [[https://git.kernel.org/linus/54cb0d049ad3f6c207d1b425c7f8ade4061ea5de|commit]], [[https://git.kernel.org/linus/e69b6cbebd2fab2bfe9e83e2e102d1bd85b3625a|commit]], [[https://git.kernel.org/linus/b97b0c04f895003ec60b08879180068889d19c9e|commit]], [[https://git.kernel.org/linus/8598826012efd8b04b2121dcd6347b843b0c0d16|commit]], [[https://git.kernel.org/linus/91bb52416854dfd581efe6e2a0aca8dc655f043e|commit]], [[https://git.kernel.org/linus/e78d7877308989ef91b64a3c746ae31324c07caa|commit]], [[https://git.kernel.org/linus/6795a37161fb1b58a8f11ea1a10baf810ebc5b5d|commit]], [[https://git.kernel.org/linus/f2c2799e1f5d9edfbb45a73af1f7d455f5304f2e|commit]], [[https://git.kernel.org/linus/9737da2f00d6409ae48a79d4dddd9362b230aa31|commit]], [[https://git.kernel.org/linus/73c184e1fe29cb4c4a01c8628763d8fe7bc81707|commit]] * iwlwifi: updates - 2024-04-15 [[https://git.kernel.org/linus/641d7fccb506c9bc565d1d8d858abf95bde75daf|commit]], [[https://git.kernel.org/linus/aa80f4844b16df3e2cf12f2ee9decbe824190d86|commit]], [[https://git.kernel.org/linus/20af85e2de60bd4a66f6e84a8c39f27c6eff70fc|commit]], [[https://git.kernel.org/linus/bada85a3f584763deadd201147778c3e791d279c|commit]], [[https://git.kernel.org/linus/91d80986d13b7241f162be01a54d89fd7332d15a|commit]], [[https://git.kernel.org/linus/dbfff5bf9292714f02ace002fea8ce6599ea1145|commit]], [[https://git.kernel.org/linus/c60fc06def4e7fa13d65aa833cc676fd4f4b2bcb|commit]], [[https://git.kernel.org/linus/22d0d3338e373e38ed5502cdbdf41c011b21570f|commit]], [[https://git.kernel.org/linus/554fa7114f24f6a74096e15959adf8512df63cc7|commit]], [[https://git.kernel.org/linus/332ff43251855fead212f689b6e045809bc9acde|commit]] * iwlwifi: updates - 2024-03-19 [[https://git.kernel.org/linus/1c78d39f4ede227e50e36165b3a76bc7c37ead02|commit]], [[https://git.kernel.org/linus/62bdd97598f8be82a24f556f78336b05d1c3e84b|commit]], [[https://git.kernel.org/linus/8f892e225f416fcf2b55a0f9161162e08e2b0cc7|commit]], [[https://git.kernel.org/linus/a615323f7f90838887ae583007fd2e069ba985ad|commit]], [[https://git.kernel.org/linus/414adede2da82c6160176bd8e346401cc21f631f|commit]], [[https://git.kernel.org/linus/eb561c29930c83b8544863553d386cb3be0eae61|commit]], [[https://git.kernel.org/linus/2b6fb6fb7bdd0f8ddda366ff8aca8974b829e22a|commit]], [[https://git.kernel.org/linus/84ace57c22d3c3b08245ff96ff4d68c2a28b44eb|commit]], [[https://git.kernel.org/linus/1758f979b20c9742a0f3fac69f7ef89b26161f3e|commit]], [[https://git.kernel.org/linus/c2ace6300600c634553657785dfe5ea0ed688ac2|commit]], [[https://git.kernel.org/linus/38b3998dfba31f2085e02010614fe28acdba9082|commit]], [[https://git.kernel.org/linus/045a5b645dd59929b0e05375f493cde3a0318271|commit]], [[https://git.kernel.org/linus/06a093807eb7b5c5b29b6cff49f8174a4e702341|commit]], [[https://git.kernel.org/linus/8b251253a2b3e35e3bff801b257444bf3b7886ff|commit]], [[https://git.kernel.org/linus/6decbba7f4e64d9092bd6b19bbeeaa7e1c5cbeb5|commit]] * ath12k: initial debugfs support [[https://git.kernel.org/linus/137b3ee27ab1b27dba081542476054836978ca45|commit]] * ath12k: debugfs: radar simulation support [[https://git.kernel.org/linus/f51d917b73307a8547c65c3cc86a672a7b4ba98d|commit]] * ath12k: add support to handle beacon miss for WCN7850 [[https://git.kernel.org/linus/b0afabc4d7e0bb435f63990eff72dd9f2591bf5a|commit]] * ath12k: Add single wiphy support [[https://git.kernel.org/linus/0148e40c9f0ace0a7eaeff30a86b45090b50733f|commit]], [[https://git.kernel.org/linus/b5068bc9180d06a5ac242b0f9263047c14f86211|commit]], [[https://git.kernel.org/linus/d01c08ed6fdb03e16c90a9f9740864b094c3c663|commit]], [[https://git.kernel.org/linus/d258f16ba10f48e5678d8575d8487564c70fa09b|commit]], [[https://git.kernel.org/linus/4f242b1d6996af14f98cb1093d26cdacd6a83ad7|commit]], [[https://git.kernel.org/linus/b8ce837ea264e22fbe0bc7aaffaccdf2081ddf69|commit]], [[https://git.kernel.org/linus/5a6af83c397ddfd0ed1ab872b89bd626506e675b|commit]], [[https://git.kernel.org/linus/ba12f08f3167464dad506a1ac0d065901befa2c1|commit]], [[https://git.kernel.org/linus/cec77a252407c5957d109ea59bc64def2031465d|commit]], [[https://git.kernel.org/linus/0d6e6736ed9f3ffb3a7f6ab6240bbb31a8fb3187|commit]], [[https://git.kernel.org/linus/314876885bdcc3d6bae77c24846179b3f327e2c2|commit]], [[https://git.kernel.org/linus/0da00e45ee9ab1858a80a855f9acdc9cc87175b8|commit]] * ath12k: ACPI support [[https://git.kernel.org/linus/6f957eaf79356a32e838f5f262ee9a60544b1d5b|commit]], [[https://git.kernel.org/linus/7b5f3cbfb4680d5072fcb0c68ee141f8db491081|commit]], [[https://git.kernel.org/linus/12bccacbcd9e4f83bb26994634b4da388cebb476|commit]], [[https://git.kernel.org/linus/f965333e491e36adb0fa91e389fba8685b704fb6|commit]], [[https://git.kernel.org/linus/576771c9fa21a38bcf390b5ecc610441574e5014|commit]] * ath11k: P2P support for QCA6390/WCN6855/QCA2066 [[https://git.kernel.org/linus/f8c0799b2428a2599a540b0ba1e180a6e3460699|commit]], [[https://git.kernel.org/linus/575ec73cb8803b4e149df5ff5cdb9f1ce3735554|commit]], [[https://git.kernel.org/linus/fe3cbdfc4f5837401729e77e86da553d1e86f2bd|commit]], [[https://git.kernel.org/linus/ef860c6a3adfc5f3fc5b5c96fc0e1856c944a1d1|commit]], [[https://git.kernel.org/linus/6c7c30adf79eff6141e43434314a03fd9de0dc1c|commit]], [[https://git.kernel.org/linus/28035a88f8b3cc849e4b13b9b5f5dd0aa1e18365|commit]] == Audio == * intel_ace2x: read DOAIS and DODS from _DSD properties [[https://git.kernel.org/linus/a0df7e04eab07cb2c08517209f792a8070504f0d|commit]], [[https://git.kernel.org/linus/75933ba58dd49ded547ad0d00c74c0cb862530f9|commit]], [[https://git.kernel.org/linus/3b0b441a297e7fe11baab51439a81cd6a336ed64|commit]], [[https://git.kernel.org/linus/80962485f62c3c33730407a8059c6292194cb887|commit]] * soundwire: intel: add support for link clock source selection [[https://git.kernel.org/linus/a206d2e3409f58733c9097523e5f62ebb920fbbf|commit]], [[https://git.kernel.org/linus/5b3f661b244973374626f7cc798cea91345786e8|commit]], [[https://git.kernel.org/linus/7eca9c722eed80f76cd272a52d9fa98f89322e7e|commit]], [[https://git.kernel.org/linus/d0a69cd0369a390cc1c100e52e78a273695a170c|commit]], [[https://git.kernel.org/linus/8292c815bbb71ea9f86331c3d07d2b9530b93565|commit]], [[https://git.kernel.org/linus/769d69812b42f0fc710bdf16b9f3979c959910b7|commit]], [[https://git.kernel.org/linus/09ee49e3de6bcecc57028682c673d180ec2d436b|commit]] * pcm: adding 705.6/768kHz rates; DSD and 768kHz in aloop [[https://git.kernel.org/linus/3e2f2235b526e0238d4c77fe3396bc6308c5426b|commit]], [[https://git.kernel.org/linus/ad88ea67b135f74a9f32dc5404a35c773b2a3925|commit]], [[https://git.kernel.org/linus/ef7a4f979bd8201324b2bcd30277c14aba889f50|commit]] * Add support for Lenovo Thinkbooks [[https://git.kernel.org/linus/82f3daed2d3590fa286a02301573a183dd902a0f|commit]], [[https://git.kernel.org/linus/b32f92d1af3789038f03c2899e3be0d00b43faf2|commit]] * soundwire: qcom: allow multi-link on newer devices [[https://git.kernel.org/linus/ce5e811e069168898ae2ff02a90de68637ed7dc4|commit]] * hda/realtek: Enable headset mic on !IdeaPad 330-17IKB 81DM [[https://git.kernel.org/linus/b1fd0d1285b1eae8b99af36fb26ed2512b809af6|commit]] * hda/realtek: Enable headset mic of JP-IK LEAP W502 with ALC897 [[https://git.kernel.org/linus/45e37f9ce28d248470bab4376df2687a215d1b22|commit]] * hda/realtek: Support Lenovo Thinkbook 16P Gen 5 [[https://git.kernel.org/linus/75f2ea939b5c694b36aad8ef823a2f9bcf7b3d7d|commit]] * hda/realtek: Support Lenovo Thinkbook 13x Gen 4 [[https://git.kernel.org/linus/4ecb16d9250e6fcf8818572bf317b6adae16515b|commit]] * hda/realtek: Add support for ASUS Zenbook 2024 HN7306W [[https://git.kernel.org/linus/21a522f935e476e5c0119f5a1f6d2278cff57daa|commit]] * hda: Add Intel BMG PCI ID and HDMI codec vid [[https://git.kernel.org/linus/e8336a63de03eab16927abe1fc686c3ea10b27c6|commit]] * usb-audio: Add name for HP Engage Go dock [[https://git.kernel.org/linus/2d95e8d48499fbb14ee7c1b93c73938bb0751275|commit]] * usb-audio: Add sampling rates support for Mbox3 [[https://git.kernel.org/linus/44f69ddccb66bcdf969c44d8bb5d4dea4d6b2933|commit]] * Add support for Lenovo Thinkbook 13X [[https://git.kernel.org/linus/25f46354dca912c84f1f79468fd636a94b8d287a|commit]], [[https://git.kernel.org/linus/7a62ab91801960b22fbeba7c67b08bd1169b7893|commit]] * scarlett2: Add S/PDIF source selection controls [[https://git.kernel.org/linus/d5ca9ad58e15e4169d75c54b2b4dfebaaee0931f|commit]] * scarlett2: Add support for Vocaster [[https://git.kernel.org/linus/e30ea5340c25d41484d551f61d8c93106989019b|commit]], [[https://git.kernel.org/linus/b1b3b258242c4e7c70b8da09904a8c5e2aadaa3a|commit]], [[https://git.kernel.org/linus/1e48ddb7d71f6a48f5d871864046e33fd94deb99|commit]], [[https://git.kernel.org/linus/1b65088958cadab04d5d34a8615e2466b1b48ecb|commit]], [[https://git.kernel.org/linus/b64678eb4e703aa7631d75d622bd295a717e74a8|commit]], [[https://git.kernel.org/linus/16a7b277c40615befb21eb9420f743dc157d67bd|commit]], [[https://git.kernel.org/linus/5738cf65e892904d27f91ec974c47669c5f5eab4|commit]], [[https://git.kernel.org/linus/5bfb7c2ae4275be338d2a1a85904b97835a13ec5|commit]], [[https://git.kernel.org/linus/bff5421a2c3fd12c719d69662bd92af20359e606|commit]], [[https://git.kernel.org/linus/4074f8d23278e9e32aabe9dba60f6dddaf68e6ef|commit]], [[https://git.kernel.org/linus/87b73d48a58359922a98352091c4ccb6f463df55|commit]], [[https://git.kernel.org/linus/7d20f7b4f337ac075cf79f5047e68ea46189743f|commit]], [[https://git.kernel.org/linus/4390095126eecb83fd02877aec651a24fec99a43|commit]], [[https://git.kernel.org/linus/23715a2176bc747cac4d5b5291419d51c6ac1a9e|commit]] * ASoC * dapm-graph: new tool to visualize DAPM state [[https://git.kernel.org/linus/e7bb43898bcf54da7ffb4819a04c8428f7db24db|commit]] * sunxi: sun4i-i2s: Support 32-bit audio formats [[https://git.kernel.org/linus/863f94ac5f4481a7c5665e8152d551701ac71bf3|commit]] * nau8325: new driver [[https://git.kernel.org/linus/c0a3873b9938bfaa77bd337cad33266a50a6583f|commit]] * Intel: cml_rt1011_rt5682: delete driver [[https://git.kernel.org/linus/ca571e5a2e45b1a4113af2370fd1cf895f0b46d4|commit]] * PCM6240: mixer-test report [[https://git.kernel.org/linus/ec77cad8d55c0fb39c0b17a682f78df4b92373a5|commit]], [[https://git.kernel.org/linus/6bb1b70690766367e166b8ff59f4b5f9739f7964|commit]], [[https://git.kernel.org/linus/d537f7b52d71110a98cd7230cce1b56ae7c8ea71|commit]], [[https://git.kernel.org/linus/1324eafd37aa5c5b970c1b48a857acc81f0685c8|commit]] * nau8325: Modify driver code and dtschema. [[https://git.kernel.org/linus/2ae143fb3a057ad7d0a5f833386116441bfd5172|commit]], [[https://git.kernel.org/linus/baef58b1b09ac0e9339e021144b921560482c8bd|commit]], [[https://git.kernel.org/linus/2e4c003b3672085267a358ebf82129b4e08dd64f|commit]] * Drop soc-topology ABI v4 support [[https://git.kernel.org/linus/fe4a074542563c539f6285de1ec78b47f9c9da7d|commit]], [[https://git.kernel.org/linus/4ba509bf3988f36b536b49b9e7022a6358f87f56|commit]], [[https://git.kernel.org/linus/82c192540b242a8bf3c3d4140905650df9f327d4|commit]], [[https://git.kernel.org/linus/c57468dc1f80a4a3bf6dd271688837d3c1f26e75|commit]], [[https://git.kernel.org/linus/251ea652050e715886b272f831cf5016150a60c8|commit]] * Intel: avs: Switch to acpi-nhlt [[https://git.kernel.org/linus/d3f36e78d7ba0ed3e8f518c62c4663650bf6cd6a|commit]], [[https://git.kernel.org/linus/f5d20b253d1a51aadb8881d899caaaa989217e89|commit]] * SOF: Intel: mtl/lnl: Improve firmware boot state handling [[https://git.kernel.org/linus/3dc2682870ea8f5a7749c069dfc4e0040e69cb5d|commit]], [[https://git.kernel.org/linus/40bdf121a3ed91281196068e50789888e4b1d2d2|commit]], [[https://git.kernel.org/linus/1f1b820dc3c65b6883da3130ba3b8624dcbf87db|commit]], [[https://git.kernel.org/linus/bbdf9af261adca039de29e7fc1faff367bf7e9a0|commit]], [[https://git.kernel.org/linus/6b1c1c47e76f0161bda2b1ac2e86a219fe70244f|commit]], [[https://git.kernel.org/linus/26187f44aabdf3df7609b7c78724a059c230a2ad|commit]] * Add support for jack detection to codec present in A64 SoC [[https://git.kernel.org/linus/21fa98f4197bb3365dda1417708b318f403c13c1|commit]], [[https://git.kernel.org/linus/d5961e43b28668088087befbf4f7a043bd0ae65c|commit]], [[https://git.kernel.org/linus/c556814b926c3f16fdca3d18cac793ccf0d14c44|commit]], [[https://git.kernel.org/linus/c0454d31e05062b1c7df7eef21855ba1f56c5158|commit]] * Add support for the internal RK3308 audio codec [[https://git.kernel.org/linus/c7c12024ebadbbfd98d82c06edabc41d568ad51a|commit]], [[https://git.kernel.org/linus/b5ffc424360eaced41f405f0e38bcabe61fecf39|commit]], [[https://git.kernel.org/linus/30d72458624bb1ba7bab1c7a1d5f4c42f512010c|commit]], [[https://git.kernel.org/linus/cce4cbb157493483f03c21213753b66425a31430|commit]], [[https://git.kernel.org/linus/d75a21611a6e723d81db3f827e131ad39b69186c|commit]], [[https://git.kernel.org/linus/9e2ab4b18ebd46813fc3459207335af4d368e323|commit]], [[https://git.kernel.org/linus/9fdd7b45da18b84d5e7d5a6b8b4b0167910f2d13|commit]], [[https://git.kernel.org/linus/4ed0915f5bc4bcc81bca783a5b984f3d81e9764e|commit]] * SOF: cppcheck fixes and debugfs addition [[https://git.kernel.org/linus/ff9496dacf3485aa3f86d9b8e63d497541b36fa6|commit]], [[https://git.kernel.org/linus/175428b2b3eeacf90dcc171d5915d6b4dc86e917|commit]], [[https://git.kernel.org/linus/458e3870507f7ebd26a2f5c7e925d5b31a873114|commit]], [[https://git.kernel.org/linus/dbb6ca68b55ddf23d0b6de782c7641624a285fc2|commit]], [[https://git.kernel.org/linus/f690cdcc01a5b549715fefe22a98962e7672516b|commit]] * Drop soc-topology ABI v4 support [[https://git.kernel.org/linus/fe4a074542563c539f6285de1ec78b47f9c9da7d|commit]], [[https://git.kernel.org/linus/4ba509bf3988f36b536b49b9e7022a6358f87f56|commit]], [[https://git.kernel.org/linus/82c192540b242a8bf3c3d4140905650df9f327d4|commit]], [[https://git.kernel.org/linus/c57468dc1f80a4a3bf6dd271688837d3c1f26e75|commit]], [[https://git.kernel.org/linus/251ea652050e715886b272f831cf5016150a60c8|commit]] * ti: davinci-i2s: Add features to McBSP driver [[https://git.kernel.org/linus/08e02fa48429c34db231cc3b58b940de2f7caf35|commit]], [[https://git.kernel.org/linus/eeed92c0c0829e63c04a9f2c0c1926a4a48f6c0a|commit]], [[https://git.kernel.org/linus/f07e51c51e44a6e4e6d003f3bccbbf8a1b2cda0d|commit]], [[https://git.kernel.org/linus/1c03f42f01d212a79f7cd6e91eb8d8c624a843ec|commit]], [[https://git.kernel.org/linus/92e7bb2b6aa374c130dcf052f2c52f63c5b75d38|commit]], [[https://git.kernel.org/linus/609302ca04a3177463b0fbf4d5fc55a3ab4f900d|commit]], [[https://git.kernel.org/linus/904fb8f843a99ae7473d184412b6c7bd46a51593|commit]], [[https://git.kernel.org/linus/091b440ffd7cb542fd45c39dddd56bd870f9e180|commit]], [[https://git.kernel.org/linus/22a1dd652de329394ca81dd2fe046444920c96dc|commit]], [[https://git.kernel.org/linus/eff21f5f8ea01834835ebe35995dba40f8435795|commit]], [[https://git.kernel.org/linus/714ffb8d36f94bdc6d576417b451e9c568c83894|commit]], [[https://git.kernel.org/linus/6b1517b30d6dc9442d92f0273726f1e7390eff2c|commit]], [[https://git.kernel.org/linus/94d57c541dbdd350a91baeee94d3f5148e1d4dd7|commit]] * Intel: boards: updates - part1 [[https://git.kernel.org/linus/22247e402d824546cdd6ec422c0dc51181269d54|commit]], [[https://git.kernel.org/linus/a7963f6ecc4be8a331d7740cb276651f2045e92c|commit]], [[https://git.kernel.org/linus/9be229ffc7a46c645a39d5993a2709d9936e046a|commit]], [[https://git.kernel.org/linus/996727aad856e55f6e65fdc6093281e51f0534da|commit]], [[https://git.kernel.org/linus/109896246a5311aa05692ecf38c0d71e1837fe23|commit]], [[https://git.kernel.org/linus/cf22d15ecf61c783e6903f3409e78d439f9c9b4a|commit]], [[https://git.kernel.org/linus/61cafaeab5bca2d3e6a68ee8fa92b5c10b8610ca|commit]], [[https://git.kernel.org/linus/2b384bcd2cb727edb5647692134f4eec2f0a32ae|commit]], [[https://git.kernel.org/linus/5da85a3523b5acd3a00347cae32ae2ffe4f4ac8a|commit]], [[https://git.kernel.org/linus/528ee84f0fe08788b2e72aad7bc8a13dd2a169ca|commit]], [[https://git.kernel.org/linus/ed61b2ef5aa0036ef1dc593c191e762386a92cc5|commit]], [[https://git.kernel.org/linus/3b6378bb8baf519e641151dcdb9171c2bdecb7b7|commit]], [[https://git.kernel.org/linus/b020aff0ec6ec089bd3e07bd6b58623826752ff7|commit]], [[https://git.kernel.org/linus/96258c3348e1a2cb6842175a0ac895ef3963f2e2|commit]], [[https://git.kernel.org/linus/94e9dd5b38bc3d04f86c4a876f3b4b397add248b|commit]], [[https://git.kernel.org/linus/54bac56954a7c36eb8d1c7047b63133635999eb8|commit]], [[https://git.kernel.org/linus/b497654f1d3d95c37c8f2c6950047e022be04a2e|commit]], part2 [[https://git.kernel.org/linus/cc983803081aa6a1a5ed9375cb7d01cd5c1da570|commit]], [[https://git.kernel.org/linus/266c9b27cb0a2c11de5956ee4bd7e1266d0baa36|commit]], [[https://git.kernel.org/linus/8166bdd2c560e59e9a6ec0c868b996294d8428d1|commit]], [[https://git.kernel.org/linus/59ffeb15b2f7b44cf934fd778dc0d98a35aa6a84|commit]], [[https://git.kernel.org/linus/aa238217d69b15edc709887248eec5c01370b453|commit]], [[https://git.kernel.org/linus/bee2fe44679f1e6a5332d7f78587ccca4109919f|commit]], [[https://git.kernel.org/linus/0d7b9880db92e1eb07bdd4dc097e574512b894a9|commit]], [[https://git.kernel.org/linus/0703329606a237c3604230603d58254a8bdf4b81|commit]], [[https://git.kernel.org/linus/13112a34d83e0b3c925ff9818e0819ad2fe97e42|commit]], [[https://git.kernel.org/linus/9c09bef69fe9376953348bb367c869f3d16c758c|commit]], [[https://git.kernel.org/linus/4d96a7f000f04e8041606f074dec5cb21bb4824d|commit]], [[https://git.kernel.org/linus/087777347bea060f82fa97827e7d1f625c0f9376|commit]], [[https://git.kernel.org/linus/c577b747b9a0ad32047dcfa01d0ea7e2441cf590|commit]], [[https://git.kernel.org/linus/0e2c1dd08607de04912b963f5df470d6a6969496|commit]], [[https://git.kernel.org/linus/aac976aa3c6a37175eec9d3eb912cd92aa8c3a0b|commit]], [[https://git.kernel.org/linus/13e698e8ee70cebfcaead8188e77d3e90f94498d|commit]], [[https://git.kernel.org/linus/914c43ab50f49656f378e748f894f9532ed19a26|commit]], [[https://git.kernel.org/linus/b48f238585a49983ae51f77d6494bcfcaad8f217|commit]], [[https://git.kernel.org/linus/59bf457d80551003a06d32f5c3d1da7f64a3d420|commit]], [[https://git.kernel.org/linus/1329f5b0d9d0b26021b6bd469a41139b9ccef58a|commit]], [[https://git.kernel.org/linus/634ffef9cbc41b9db2b45974969dda06219ffce1|commit]], [[https://git.kernel.org/linus/961e694749fb8ddb8591512216e2fa6b4e3f42e2|commit]], [[https://git.kernel.org/linus/5f14d70b7f6e9deb97893d5c09dd0986e92b7021|commit]], [[https://git.kernel.org/linus/84aa440e02f3b44e927e274b9946b4c79608de43|commit]], [[https://git.kernel.org/linus/92551948174d079b12541437f51cbe3e17d9dd24|commit]], [[https://git.kernel.org/linus/22f2a5e71030c5da938c4d3c50f2159582ee2362|commit]], [[https://git.kernel.org/linus/d36bfa329ae6d94e435d11960936023c03df0d64|commit]], [[https://git.kernel.org/linus/c2c7a8b3848127f3355109d72c865b7741af9f0c|commit]], [[https://git.kernel.org/linus/c2473a0e50f74b1ea9cc0070048d932d9b57c3ac|commit]], [[https://git.kernel.org/linus/a2e620e4ac87c80e0987bd74c0c345b0da02b33e|commit]], [[https://git.kernel.org/linus/17750bc6519f7fb4905e63e3855e4e32b01f9419|commit]], [[https://git.kernel.org/linus/df19c6cd0fd0418b779f9c627b159d7ab77bff71|commit]], [[https://git.kernel.org/linus/45bbc14fb94698b43636ec18d0df2440934139e7|commit]], [[https://git.kernel.org/linus/27fd36aefa0013bea1cf6948e2e825e9b8cff97a|commit]], [[https://git.kernel.org/linus/19b629f581320999ddb9f6597051b79cdb53459c|commit]], part3 [[https://git.kernel.org/linus/439c69f80961b75d5b52fda08073ee2af63e731d|commit]], [[https://git.kernel.org/linus/528ee84f0fe08788b2e72aad7bc8a13dd2a169ca|commit]], [[https://git.kernel.org/linus/6d90e02ae8aa6bedf77110075e7eef3f24f6a8a3|commit]], [[https://git.kernel.org/linus/2e723a79ec609871116d216309c1b89d2f61b713|commit]], [[https://git.kernel.org/linus/1504a768f6045157437693fbfb50ae63ca86ec61|commit]], [[https://git.kernel.org/linus/bd1222ad1746ab4325b982c720c7099c78c7b731|commit]], [[https://git.kernel.org/linus/4b95706b4a25c239aa7a7d7feb455c364c181db2|commit]], [[https://git.kernel.org/linus/a2e678fe951c3820db705a2cb20ec0a32d752033|commit]], [[https://git.kernel.org/linus/a17fea3880aea23fd8821ff0660268a680e0326b|commit]], [[https://git.kernel.org/linus/d5dd7f4fc0b5633fc9fb665803f5e95d564c7331|commit]], [[https://git.kernel.org/linus/94a944a8c4f9e0de87cc9c5bdf8861ae2f64d874|commit]], [[https://git.kernel.org/linus/1934906b26bf8d1bd798fa11bf7058bf380101a0|commit]], [[https://git.kernel.org/linus/c0d12cc63aadf2668b3856fb35757d3a66bbab11|commit]], [[https://git.kernel.org/linus/9196d8acd7f91758872108958dfded7684628444|commit]], [[https://git.kernel.org/linus/57ad033ce09d4d0c866ac558fc3c4cf53cfb2599|commit]], [[https://git.kernel.org/linus/3822d41469fc20fdff0d83b20324b382ee7bd0e7|commit]], part4 [[https://git.kernel.org/linus/5f14536b5176ed6c78dde545de89d7420aa1683b|commit]], [[https://git.kernel.org/linus/1934906b26bf8d1bd798fa11bf7058bf380101a0|commit]], [[https://git.kernel.org/linus/3822d41469fc20fdff0d83b20324b382ee7bd0e7|commit]], [[https://git.kernel.org/linus/0f8edb15fb6e436f0da7ab25ffcbcaab3def7e8c|commit]], [[https://git.kernel.org/linus/082fb301e048e84669234afb80fe27e6fa87efb4|commit]], [[https://git.kernel.org/linus/dcc2cd8000d11a046680a7476b0d96b0b956454a|commit]], [[https://git.kernel.org/linus/4fee07fbf47d2a5f1065d985459e5ce7bf7969f0|commit]], [[https://git.kernel.org/linus/6136d879f3c2240db636d614a1c39f17c6ceaf36|commit]], [[https://git.kernel.org/linus/7fda0efaa5fe6e93bb79a3a540a4b881ef788f66|commit]], [[https://git.kernel.org/linus/fe18a4be97d4064c9f3113f819780162cc586f16|commit]], [[https://git.kernel.org/linus/744866d28fe6b1a651e63d03a57e06d66e3d460a|commit]], [[https://git.kernel.org/linus/b10cb955c6c0b8dbd9a768166d71cc12680b7fdf|commit]], [[https://git.kernel.org/linus/551fb5593c2bd34e8711efe01dddf22d9c6200b2|commit]], part5 [[https://git.kernel.org/linus/34c43ad927da59d032e263ee3ae1528c1ed31780|commit]], [[https://git.kernel.org/linus/2086b55fd6ddcaa92e473ba7017f6a986870337e|commit]], [[https://git.kernel.org/linus/69d0f88b9aebb5749ab0dbaead7414d718994380|commit]], [[https://git.kernel.org/linus/da5244180281a18c4c7859674fec308514aaf629|commit]], [[https://git.kernel.org/linus/b831b4dca48dbe0f1f7705b44460dd9ca7f2f940|commit]], [[https://git.kernel.org/linus/02e6f7cb487f18e1171ae6d12ad1066fbd25176d|commit]], [[https://git.kernel.org/linus/628cc5d0c4bd6a3f70c793968f8e2546afc8c3a3|commit]], [[https://git.kernel.org/linus/33e59e50ee7610473c85030edca73ad3df60b5c1|commit]], [[https://git.kernel.org/linus/6be269d274353d2604bf49b92f703610cb4734e9|commit]], [[https://git.kernel.org/linus/6d339113df3ab510ce075a18ccb10a20cb325d4e|commit]], [[https://git.kernel.org/linus/64bfd26d982ec29123c65949229fa12c15f7df8f|commit]], [[https://git.kernel.org/linus/0bab4cfd7c1560095e29919e2ebe01783b9096dc|commit]], part6 [[https://git.kernel.org/linus/395f23e9206d71a0090fc15a9062f93c6e4cd4bc|commit]], [[https://git.kernel.org/linus/8d6114b81d72c522f1ad55cd84ed37699d58c840|commit]], [[https://git.kernel.org/linus/3d84e070253eb853e3190a23994aa3074615efd1|commit]], [[https://git.kernel.org/linus/e91d54f8b1bd3393d91fd754a1c40df6f408e84b|commit]], [[https://git.kernel.org/linus/76fb0d3221833e87b9150ba06728cdde215ec687|commit]], [[https://git.kernel.org/linus/12e5fe68d0bb079cc5228d09280c1d82a61f0d18|commit]], [[https://git.kernel.org/linus/5b093b0b47efefbb928c4d3a5e982bbeaefda44c|commit]], [[https://git.kernel.org/linus/b5aaf6a56dcafc2aeefdc7da1f9f86fa5cfa8df7|commit]], [[https://git.kernel.org/linus/76f33e2f93d63eaac93458fdfde3a505b8e73fa2|commit]], [[https://git.kernel.org/linus/3b3ed4752600b6462c184edc3284dcc277891aa6|commit]], [[https://git.kernel.org/linus/c7f9523d21d49b56498ac58e4b1afcb930eb551a|commit]], [[https://git.kernel.org/linus/082fb301e048e84669234afb80fe27e6fa87efb4|commit]], [[https://git.kernel.org/linus/f46b768b7281e4ef784d06788be2f941c13eddde|commit]], [[https://git.kernel.org/linus/44567d3d62dfe9df514299a98429a59129e0a2d0|commit]], [[https://git.kernel.org/linus/e1435a1feb18e198155d16d3d6b500d46e0625c0|commit]], [[https://git.kernel.org/linus/35ca48662cdf0749a2b9931d625690967fbce032|commit]], [[https://git.kernel.org/linus/d2d377fc22d23fd38188ea90b051584069a299a2|commit]], [[https://git.kernel.org/linus/a21515b5aaff57bf2f4160380aa7eedcd0113c96|commit]], [[https://git.kernel.org/linus/4524b1e3ef7884e0a54484dce8d921be7a06af13|commit]], [[https://git.kernel.org/linus/a0cf86d813d22d80046d83e9b36c1c2308903956|commit]], [[https://git.kernel.org/linus/207255f3ae4d0cf5034666652668be572d9c5c1e|commit]], [[https://git.kernel.org/linus/e895d16f4e8f0e5d90d7188e8fd9c507a97fb8b7|commit]], part7 [[https://git.kernel.org/linus/c3c5ac4bd7d7019f2e3ad1720572d53226fe656e|commit]], [[https://git.kernel.org/linus/1628e1c8f6f1446460fc33a06f52e5ce52ac587a|commit]], [[https://git.kernel.org/linus/70d470f05f0b5bb8dea67915cac6ed6308120a89|commit]], [[https://git.kernel.org/linus/84e0a19adb73d7cec5a43e02f9e2d2aafc5c7176|commit]], [[https://git.kernel.org/linus/3895aa82b665d43b24ba1ac307e20df3396a6b65|commit]], [[https://git.kernel.org/linus/426c43ae9549559f5f5fd405bf464f9fa175e418|commit]], [[https://git.kernel.org/linus/15ce635f396bdb416a41840bfb5e911128585e4d|commit]], [[https://git.kernel.org/linus/2e3bc94796776e2695054183e7324d1a6ac27837|commit]], [[https://git.kernel.org/linus/2bb765f053910339126626d49ae851b937d06206|commit]], [[https://git.kernel.org/linus/01c266af92f4d24d44939e7d21c36e898caaa18f|commit]], [[https://git.kernel.org/linus/922edacfadf8ca0c9a13788badaf18d41db29cd1|commit]], [[https://git.kernel.org/linus/9a9d31b149f3a71ad0835ea295743482601dd322|commit]], [[https://git.kernel.org/linus/b533ed0d85cb64f9323b4221fcaad41259b08556|commit]], [[https://git.kernel.org/linus/f77ae7fcdc47630eb7653983f3c57ac44103aebc|commit]], [[https://git.kernel.org/linus/eed867325e4b825a16946539275364699eed83d9|commit]], [[https://git.kernel.org/linus/4c11132a886ea93865e205e2d92d810722237b48|commit]] == Tablets, touch screens, keyboards, mouses == * Add event code for accessibility key [[https://git.kernel.org/linus/0c7dd00de018ff70b3452c424901816e26366a8a|commit]] * Add support for vibrator in multiple PMICs [[https://git.kernel.org/linus/9e0631695eac16e0102b9961c3b750c987d24f7f|commit]], [[https://git.kernel.org/linus/ca7755adf0f20865705dd621534d50beb4f1057c|commit]], [[https://git.kernel.org/linus/6d84ec254a2283c7a97a89b0dbdc4a6854bf395f|commit]] * edt-ft5x06: add support for !FocalTech FT5452 and FT8719 [[https://git.kernel.org/linus/832f54c9ccd3a3f32d1db905462d3c58b4df52bd|commit]], [[https://git.kernel.org/linus/fe962300973046147cd6b582fb71aae81e2509be|commit]] * xpad: add support for Machenike G5 Pro Controller [[https://git.kernel.org/linus/e7647cbaba0e3792d03fa538e58d063ec8c8b35c|commit]] * silead - Always support 10 fingers [[https://git.kernel.org/linus/84b26f509c1b9c8b3c3c63d75912701f151fd148|commit]], [[https://git.kernel.org/linus/38a38f5a36da9820680d413972cb733349400532|commit]] * Add support for "Do Not Disturb" [[https://git.kernel.org/linus/22d6d060ac77955291deb43efc2f3f4f9632c6cb|commit]] * HID * intel-ish-hid: ipc: Add Lunar Lake-M PCI device ID [[https://git.kernel.org/linus/b06271e897cc28f1e6c668c432ab7f1078db1584|commit]] * nintendo: use ida for LED player id [[https://git.kernel.org/linus/5307de63d71d0b2303a8c645493a36021bedd800|commit]] * Add !WinWing Orion2 throttle support [[https://git.kernel.org/linus/266c990debad2f9589c7a412e897a8e312b09766|commit]] * Extend HID-BPF kfuncs (was: allow HID-BPF to do device IOs) [[https://git.kernel.org/linus/2c0e8ced7d4bf746923fc424415844d695f07808|commit]], [[https://git.kernel.org/linus/685dadafbde29dc3d6b7a13be284d684b06d4d4f|commit]], [[https://git.kernel.org/linus/5599f80196612efde96dbe6ef18f6ecc0cb4ba19|commit]], [[https://git.kernel.org/linus/c8a1495947ffcab18d9a85144ab4abc570720e65|commit]], [[https://git.kernel.org/linus/4171954f56fb6da8cc8ceebf54b78b874278a198|commit]], [[https://git.kernel.org/linus/9be50ac30a83896a753ab9f64e941763bb7900be|commit]], [[https://git.kernel.org/linus/db624e82c55f227b84ac9ebfa3de2f6f5fad666b|commit]] * Add quirk for Logitech Casa touchpad [[https://git.kernel.org/linus/dd2c345a94cfa3873cc20db87387ee509c345c1b|commit]] * logitech: add a few Logitech HID++ device IDs [[https://git.kernel.org/linus/b88ee22809eb7fc9e196c24f43077cd7783eed9b|commit]] * hid-steam: Add Deck IMU support [[https://git.kernel.org/linus/3347e1654f24dbbd357ea4e3c0d8dcc12d8586c7|commit]] * intel-ish-hid: Implement loading firmware from host feature [[https://git.kernel.org/linus/25247cf689db28a9a7bc7efd4efc7441f763a74a|commit]], [[https://git.kernel.org/linus/579a267e4617d705f6c795e5e755b01f1f87eff3|commit]], [[https://git.kernel.org/linus/6b2a374adfa8b58e2da2ca07245c2774fd6ea9b4|commit]], [[https://git.kernel.org/linus/f7ae3091a9e208ee94260382027d19456205dbe0|commit]], [[https://git.kernel.org/linus/806a4c35d7970768915cdaee3ef0ca463a0b7fc5|commit]] * Asus [[https://git.kernel.org/linus/9727d04aa6d58e131128b4178e742c423480d476|commit]], [[https://git.kernel.org/linus/e901f10adb1f387fff1082297065a0da0191b83d|commit]], [[https://git.kernel.org/linus/08b50c6b0b0940a304b481346cc187d489c6a751|commit]], [[https://git.kernel.org/linus/2c82a7b20f7b7afcfacdde230e1233efc9c881e5|commit]], [[https://git.kernel.org/linus/59d2f5b7392e988a391e6924e177c1a68d50223d|commit]] * Include current HID-BPF fixes in tree [[https://git.kernel.org/linus/03899011df4b2bb0f9b3ac57b1044b161a336f31|commit]], [[https://git.kernel.org/linus/51de9ee0a6c7f0d06fa7b80ff2ef9f3f661c3eb6|commit]], [[https://git.kernel.org/linus/aa7e560454a90d4fe9924500f1ae2a3779806b85|commit]], [[https://git.kernel.org/linus/89ea968a9d759f71ac7b8d50949a8e5e5bcb1111|commit]], [[https://git.kernel.org/linus/d9e78973921d215a6453b609a6326dab9dbc5a60|commit]], [[https://git.kernel.org/linus/1c046d09c6ba4ff5fb959b2d195cacadb2ae6977|commit]], [[https://git.kernel.org/linus/04b3e5ab055553e074ea54ef316982b55cdde96b|commit]], [[https://git.kernel.org/linus/e906463087cec0a179ddcafe08aeef5899af6b00|commit]], [[https://git.kernel.org/linus/c6b03c736a523902bb53bb9897f5c75292b3424b|commit]], [[https://git.kernel.org/linus/ e14d88d9b8dae40c6f612c6fc74b7d03d12f3c94|commit]], [[https://git.kernel.org/linus/1b2c3caf7839adff892d8397995803d93e347974|commit]], [[https://git.kernel.org/linus/e0599675a32cb994a076a4b40d3e42d8353a5bb7|commit]], [[https://git.kernel.org/linus/a7def2e51c667578140d9aa3282533463ed3df91|commit]], [[https://git.kernel.org/linus/65ad580a14e875c2d8c027cf1a2ca03b849ff843|commit]], [[https://git.kernel.org/linus/9f1bf4c225329d27e85fc1c5b5af9e6ebf4a8ff3|commit]], [[https://git.kernel.org/linus/0bc8f89f40403cfbc3c6e676b0bee240a9349d3f|commit]], [[https://git.kernel.org/linus/4e6d2a297dd5be26ad409b7a05b20bd033d1c95e|commit]], [[https://git.kernel.org/linus/b22cbfb42c19a378cca5fae3a98395225af05384|commit]], [[https://git.kernel.org/linus/0cd1465cac52d7d5b4584a29f97bddc5e8bb421f|commit]] * xpad: add support for ASUS ROG RAIKIRI PRO [[https://git.kernel.org/linus/cee77149ebe9cd971ba238d87aa10e09bd98f1c9|commit]] == TV tuners, webcams, video capturers == * Add REMOVE_BUF ioctl [[https://git.kernel.org/linus/5fb19f20926127d082d7dbc2b5c4d7b0b215ce03|commit]], [[https://git.kernel.org/linus/a3293a85381ec9680aa2929547fbc76c5d87a1b2|commit]], [[https://git.kernel.org/linus/6662edcd32ccf939849cd1cd4ff04733a20ef97a|commit]], [[https://git.kernel.org/linus/f5131d5ce49ef942a3bda5f4a0f6228b1ea40eee|commit]], [[https://git.kernel.org/linus/d7cdb5946f6394c92916ea9502393b7ffe11fed9|commit]], [[https://git.kernel.org/linus/2f2419502f6957b110dbc7d4b75e764e5f370ec2|commit]], [[https://git.kernel.org/linus/a286b0837e1390c558aabebc4f10b25b1f05bdce|commit]], [[https://git.kernel.org/linus/6e423b75d0492e82fa6f057c615427ebd7ebe76c|commit]], [[https://git.kernel.org/linus/fe19aab844ad76a4e001082f633b1ac34f2a943d|commit]] * Generic line based metadata, without sensor API changes [[https://git.kernel.org/linus/91e99e5a0bed1084ab5db2a69923b248039408ae|commit]], [[https://git.kernel.org/linus/89345c2a6ff9c48c5f1ea336e66e46dfc38a467a|commit]], [[https://git.kernel.org/linus/21828609f0a652d825f73dca621f783a2f225762|commit]], [[https://git.kernel.org/linus/7ba432f01c8a59a7b9345095c98dce6983dd7aea|commit]], [[https://git.kernel.org/linus/38c84932de9cdef7472ff6ecf3214533ba517176|commit]], [[https://git.kernel.org/linus/83a22a07cd9d51b7ffd18a8904e1857061eda28f|commit]], [[https://git.kernel.org/linus/1bfef49741fde3fa4a4d3276352e25a6a2a86499|commit]], [[https://git.kernel.org/linus/f28bdda2f87aa0c299ad3ddef3e1fa5134ae8e47|commit]], [[https://git.kernel.org/linus/72364b91ce022ded4aa541c62f51c10a65fb3498|commit]], [[https://git.kernel.org/linus/c580efb94abed05f99bb80245abe96cf5d49128c|commit]], [[https://git.kernel.org/linus/744910906d3010253ac283769f9e47c47136a05a|commit]], [[https://git.kernel.org/linus/1d92152339587174363c3c9f7561de95646d5625|commit]], [[https://git.kernel.org/linus/ac5214a47336b8a8f7e54f406ee4f7eed9223599|commit]], [[https://git.kernel.org/linus/cd2c75454d74f275adcda2409569c13fd037eca9|commit]] * qcom: camss: Add sc8280xp support [[https://git.kernel.org/linus/682f4968084a3d3eed08718b23fe9b6777dd6c2a|commit]], [[https://git.kernel.org/linus/ebdd4f225538f4e978adfe33c32f7cc21eadb270|commit]], [[https://git.kernel.org/linus/6209899de7039b566696c87326125dac5e8badbc|commit]], [[https://git.kernel.org/linus/bc5191e5799e446b01dcc9004dec39c4cf68ff4f|commit]], [[https://git.kernel.org/linus/809b482896742b30bcdaf2e2b2860acd1b0aa75d|commit]], [[https://git.kernel.org/linus/4f94419ef428057a21114a686930b3884c5e644f|commit]], [[https://git.kernel.org/linus/f2a7ffab981f855b9bdbd7946271d7cddeda886e|commit]] * mipi-csis: Emit {{{V4L2_EVENT_FRAME_SYNC}}} events [[https://git.kernel.org/linus/58a5650fdc49bdc66b0bc123f22dbc683982987c|commit]] * IR remote control for AVerMedia TD310 [[https://git.kernel.org/linus/9789ea6ab6868ef59062de867cc6a62ccbf49703|commit]] * chips-media: wave5: Add hrtimer based polling support [[https://git.kernel.org/linus/ed7276ed2fd02208bfca9f222ef1e7b2743d710d|commit]] * Intel IPU6 and IPU6 input system drivers [[https://git.kernel.org/linus/f50c4ca0a82003b8a542c3332fd292cf1bc355a2|commit]], [[https://git.kernel.org/linus/7c833d204f6b9247c6df4321f475df5c3cb80600|commit]], [[https://git.kernel.org/linus/ba124c8cf3b775c1575fc557203527e211d1fdc5|commit]], [[https://git.kernel.org/linus/fb26412f83ba3d200a74071e10d8fef4f594bb50|commit]], [[https://git.kernel.org/linus/9163d83573e43094c1cd350573bde9a18059be63|commit]], [[https://git.kernel.org/linus/33116eb12c6b29889cc161058ae0ee4124821b6f|commit]], [[https://git.kernel.org/linus/1e7eeb301696c3959fbf95052a03516723f7fd0a|commit]], [[https://git.kernel.org/linus/d3bd039cd2a00989f7bd4ab3677b504ae0f63eac|commit]], [[https://git.kernel.org/linus/3c1dfb5a69cf836f513a2a49113ee946a4b9d95d|commit]], [[https://git.kernel.org/linus/6288e28dce9bae24068b7341ebd72a7d176a3539|commit]], [[https://git.kernel.org/linus/25fedc021985a66a357a599ab771d6b495b6f78c|commit]], [[https://git.kernel.org/linus/a11a5570a09dbcbe3b8813bd9fb7e9c630afdbf4|commit]], [[https://git.kernel.org/linus/e42ae51b7628f589477588ae5837e4e5875a2d92|commit]], [[https://git.kernel.org/linus/b71f777d897a88688faf9348099c11c70602a3af|commit]], [[https://git.kernel.org/linus/ab29a2478e709b8fbb4715c51709275907c185db|commit]], [[https://git.kernel.org/linus/cb3117b074aefb0320d8d728a0a7f277a121adbd|commit]], [[https://git.kernel.org/linus/d06fc8b6c3eb9f2ad034330dd833d5192e3f1016|commit]], [[https://git.kernel.org/linus/f625e8d7ffc19dd0c67d9e371120b0f6cd6b93f0|commit]] * Omnivision OV4689 refactoring and improvements [[https://git.kernel.org/linus/398eca199e0fbb4306ce031c9d8e7ab811bc6a9d|commit]], [[https://git.kernel.org/linus/bf475d32eee5fa71f9533d3200d7b6116e2ef7ac|commit]], [[https://git.kernel.org/linus/d1e90c251f474481cc2e9b13ca32d2426c20bd45|commit]], [[https://git.kernel.org/linus/d8bca3ed1d70652e68b07799171d471026b7b3e2|commit]], [[https://git.kernel.org/linus/f3adec37876426bdc4144ce0b6a13e9665bc384a|commit]], [[https://git.kernel.org/linus/62911fead5311f7f9e029ac662397738ad592d63|commit]], [[https://git.kernel.org/linus/05e8c95e751d2921faee24bedac93c7508bd605a|commit]], [[https://git.kernel.org/linus/ec43d634d55fb9c541ce8c7b3bcf687c3141a1df|commit]], [[https://git.kernel.org/linus/6b3ad3bc4fc726ebc7fc48b6624e5a5a9f75093b|commit]], [[https://git.kernel.org/linus/4b26d50b33637b5b0e6dd84a4e0f38036999a192|commit]], [[https://git.kernel.org/linus/0938116491fa8558b86ef255f4246660b1695237|commit]], [[https://git.kernel.org/linus/af9874c95a284221187c2baf8e656fb292ae6cca|commit]], [[https://git.kernel.org/linus/48f3197a2135aa554d5fb55e5ad5f7712d041f55|commit]], [[https://git.kernel.org/linus/d015aaaf2329959c2f72e361350452cd2f3f4d9f|commit]], [[https://git.kernel.org/linus/8fe37e596b020d6d0727b7557bc3ad2a08f0a177|commit]], [[https://git.kernel.org/linus/43452335224bc0cbd605c6aee82b5c9c33e94cc6|commit]] * hi556: Add reset / clk / regulator support [[https://git.kernel.org/linus/901c9229172392a119f34aa94b95247a2574173e|commit]], [[https://git.kernel.org/linus/363589bf110aa0352a203112af16685dd9cb56c1|commit]], [[https://git.kernel.org/linus/1a140854bc8c9d258ddb31912b80f63faf760144|commit]], [[https://git.kernel.org/linus/07d81b507df5622db40104c64dace3387bbe23b9|commit]] * ov2680: Add all controls required by libcamera [[https://git.kernel.org/linus/bcbafe5a0548511f6153121d8f978d764dbe013b|commit]], [[https://git.kernel.org/linus/d84d4ceea91e07dfed58fd8e7bb6b29264c195c9|commit]], [[https://git.kernel.org/linus/9293aafe3745f2a2bb678a14eb589af4e6ee5ffe|commit]], [[https://git.kernel.org/linus/bd8ae7a1c11ed7dda0d534f541704eb764ba02df|commit]], [[https://git.kernel.org/linus/d89218e48d4ef39fca69fcb6a42a8184c1310833|commit]], [[https://git.kernel.org/linus/3faaec99ca0c11ca65e4f81807f1d4d81e3dacb1|commit]], [[https://git.kernel.org/linus/8af071c4511ba004a69075020c982e67893ed449|commit]] * Add driver for the Raspberry Pi <5 CSI-2 receiver [[https://git.kernel.org/linus/adb1d4655e53829658f42f13bd81657528a7a60d|commit]], [[https://git.kernel.org/linus/05a9eadb95fe47d0f1b56ac433d01570ce54dcd3|commit]], [[https://git.kernel.org/linus/1810477630404ed798f97e4babee4d6dd07a6095|commit]], [[https://git.kernel.org/linus/7b4e7a4ff1583367bca6895b18d3572baa970ba5|commit]], [[https://git.kernel.org/linus/392cd78d495f36c201eb5cc425b01017d493e094|commit]] * qcom: camss: Add sc8280xp support [[https://git.kernel.org/linus/682f4968084a3d3eed08718b23fe9b6777dd6c2a|commit]], [[https://git.kernel.org/linus/ebdd4f225538f4e978adfe33c32f7cc21eadb270|commit]], [[https://git.kernel.org/linus/6209899de7039b566696c87326125dac5e8badbc|commit]], [[https://git.kernel.org/linus/bc5191e5799e446b01dcc9004dec39c4cf68ff4f|commit]], [[https://git.kernel.org/linus/809b482896742b30bcdaf2e2b2860acd1b0aa75d|commit]], [[https://git.kernel.org/linus/4f94419ef428057a21114a686930b3884c5e644f|commit]] == Universal Serial Bus == * dwc2: add support for Sophgo CV18XX/SG200X series SoC [[https://git.kernel.org/linus/63aa7ab955e7d028d3be59ebc2960e105497c70d|commit]], [[https://git.kernel.org/linus/c92ed34281417fbdc91b7570e83df39066fc9e72|commit]] * dwc3-glue: support for Google Tensor gs101 [[https://git.kernel.org/linus/9b780c845fb60e1c0f5ec192fee835c72142173b|commit]], [[https://git.kernel.org/linus/fdd78ff04ccc96f628c2f93e0d48ab0a74bf34ef|commit]] * Add multiport support for DWC3 controllers [[https://git.kernel.org/linus/6410c8033ba74bf6be19515be5164161abd5ef63|commit]], [[https://git.kernel.org/linus/2bfc9916a0e49a65557d8f5332effdce9ddeb7e0|commit]], [[https://git.kernel.org/linus/921e109c6200741499ad0136e41cca9d16431c92|commit]], [[https://git.kernel.org/linus/89d7f962994604a3e3d480832788d06179abefc5|commit]], [[https://git.kernel.org/linus/eb3f1d9e42b1499152442e97b51bc1bcfee29d71|commit]], [[https://git.kernel.org/linus/5df44c6f4f396b1451f97e734f5812d962f0120f|commit]], [[https://git.kernel.org/linus/ca58c4ae75b65e1d78408b134f129ea91e9595b8|commit]], [[https://git.kernel.org/linus/30a46746ca5a1ef4dad3ea72be4fd01872f89ac2|commit]], [[https://git.kernel.org/linus/a160e1202ca318a85c70cf5831f172cc79a24c57|commit]] * misc: uss720: improve support for Belkin {{{F5U002}}} devices [[https://git.kernel.org/linus/fabce53c240fa43c0deacd020f9563b36792c757|commit]], [[https://git.kernel.org/linus/d24f05964f2dc5677c8b1f09a6ad42137467d1f0|commit]], [[https://git.kernel.org/linus/51fcd7ec9df6c8e771339a03211dabd3e565f73d|commit]], [[https://git.kernel.org/linus/3295f1b866bfbcabd625511968e8a5c541f9ab32|commit]] * dwc2: Updates for new core v5.00a [[https://git.kernel.org/linus/4483ef3c1685290251f7caf18377f793e0901460|commit]], [[https://git.kernel.org/linus/f8453bbde06c5d515b8487eb443d26307b2eec23|commit]], [[https://git.kernel.org/linus/f73220f7fda1034b17fd5739965b73066ba6e305|commit]], [[https://git.kernel.org/linus/bc5d81b8012ce51e0ed137500d92c6b146e45732|commit]], [[https://git.kernel.org/linus/799d9c2750b885ad46d5eea9fb1a331b31e1cde5|commit]], [[https://git.kernel.org/linus/535a88dc7d61b740bba4fdbe2b0b5a517d8d1820|commit]], [[https://git.kernel.org/linus/7fd22e5bcaa5b1224fe3fb2196c26f1a14e843ff|commit]] * misc: onboard_hub: add support for XMOS XVF3500 [[https://git.kernel.org/linus/dd84ac9765410c4375f88457dcb86f126a5eb18d|commit]], [[https://git.kernel.org/linus/5b5858e467fa68c8aeeed1bd9256f2a284503ea2|commit]], [[https://git.kernel.org/linus/31e7f6c015d9eb35e77ae9868801c53ab0ff19ac|commit]], [[https://git.kernel.org/linus/ff508c0e9707608f217bfc6b1a9166822150f3ea|commit]], [[https://git.kernel.org/linus/ec1848cd5df426f57a7f6a8a6b95b69259c52cfc|commit]], [[https://git.kernel.org/linus/ef83531c8e4a5f2fc9c602be7e2a300de1575ee4|commit]], [[https://git.kernel.org/linus/70ab96e92106ecd03b39a39ce58c6c237eb0be66|commit]] * serial: option: add Telit FN912 rmnet compositions [[https://git.kernel.org/linus/9a590ff283421b71560deded2110dbdcbe1f7d1d|commit]] * serial: option: add Fibocom FM350-GL [[https://git.kernel.org/linus/2604e08ff251dba330e16b65e80074c9c540aad7|commit]] * serial: option: add Telit generic core-dump composition [[https://git.kernel.org/linus/4298e400dbdbf259549d69c349e060652ad53611|commit]] * serial: option: add Netprisma LCUK54 series modules [[https://git.kernel.org/linus/dc6dbe3ed28795b01c712ad8f567728f9c14b01d|commit]] * serial: option: add support for Foxconn T99W651 [[https://git.kernel.org/linus/3c841d54b63e4446383de3238399a3910e47d8e2|commit]] * serial: option: add Rolling RW350-GL variants [[https://git.kernel.org/linus/ae420771551bd9f04347c59744dd062332bdec3e|commit]] == Serial Peripheral Interface (SPI) == * spi_amd: Add support for SPI MEM framework [[https://git.kernel.org/linus/6defadbe6cbc3a87dc39c119a6748d19bfba0544|commit]] * Add multi mode support for omap-mcspi [[https://git.kernel.org/linus/09f347cdd451a9670ce43d6d1736a0b2065cb079|commit]], [[https://git.kernel.org/linus/e64d3b6fc9a388d7dc516668651cf4404bffec9b|commit]], [[https://git.kernel.org/linus/d153ff4056cb346fd6182a8a1bea6e12b714b64f|commit]], [[https://git.kernel.org/linus/67bb37c05a6b56e0e1f804706145a52f655af3f1|commit]] * Add add spi-nand flash controller driver for EN7581 [[https://git.kernel.org/linus/78d9435323103f23a20fb3c2f6db8c682ece5b3e|commit]], [[https://git.kernel.org/linus/a403997c12019d0f82a9480207bf85985b8de5e7|commit]] * Add bridged amplifiers to cs42l43 [[https://git.kernel.org/linus/1f05252a3a95bb898413126d3cd480fed4edab0e|commit]], [[https://git.kernel.org/linus/439fbc97502ae16f3e54e05d266d103674cc4f06|commit]], [[https://git.kernel.org/linus/ed8921188f3568ba1659ff041f21e83565c74ec2|commit]], [[https://git.kernel.org/linus/8a101146bcf014060530d71eba8edc52eca257f7|commit]], [[https://git.kernel.org/linus/9d50f95bc0d5df56f2591b950a251d90bffad094|commit]] == Watchdog == * lenovo_se10_wdt: Watchdog driver for Lenovo SE10 platform [[https://git.kernel.org/linus/1f6602c8ed1eccac4fa83e338d02aafe3a0e2c0a|commit]] * watchdog: Detect interrupt storm in softlockup [[https://git.kernel.org/linus/e9a9292e2368e9be4a48aae6ff8aafa3433133e6|commit]], [[https://git.kernel.org/linus/d7037381d00286aa4beb631c401da761ee564c94|commit]], [[https://git.kernel.org/linus/25a4a015118037809c97d089d69e927737e589e1|commit]], [[https://git.kernel.org/linus/99cf63c56661be0a0c42f79b56f37a4aa34b4779|commit]], [[https://git.kernel.org/linus/86d2a2f51fbada84e377665df06b5a479a1edc99|commit]] * watchdog: allow nmi watchdog to use raw perf event [[https://git.kernel.org/linus/393fb313a2e150b768e4850658679e2afff431e9|commit]], [[https://git.kernel.org/linus/602ba77361160d99c77e3dadf7d891364f8c71b3|commit]] == Serial == * exar: add Connect Tech serial cards to Exar driver [[https://git.kernel.org/linus/f7ce07062988a26b83ca1448df8d1e4a9232d962|commit]], [[https://git.kernel.org/linus/c6795fbffc4547b40933ec368200bd4926a41b44|commit]], [[https://git.kernel.org/linus/477f6ee694fbd07047fecd37a9992bbe22a36323|commit]], [[https://git.kernel.org/linus/393b520a99b21d9ec6d4bb32e7c05bbb4f6dc777|commit]], [[https://git.kernel.org/linus/c69fddf12ffcf375d24ccc32c94546d56b1ba2e8|commit]], [[https://git.kernel.org/linus/5aa84fd8d0592ee72387bd807a052a52abaad360|commit]], [[https://git.kernel.org/linus/209a20d4bd91761f801116bb155758e45e9340a8|commit]] == CPU Frequency scaling == * sun50i: Add Allwinner H616 support [[https://git.kernel.org/linus/8a93720329d4d24c352b035e0532f756c8ecf546|commit]], [[https://git.kernel.org/linus/e2e2dcd2e944fe6167cb731864f8a1343f1bbee7|commit]], [[https://git.kernel.org/linus/3e057e05b3b281bcc29db573eb51f87ee6b5afc0|commit]], [[https://git.kernel.org/linus/6ae07744cf334b750762ba881492c0cfba524b38|commit]], [[https://git.kernel.org/linus/83d4e044310a7d26d1a5443c23451d4b9da9ada3|commit]], [[https://git.kernel.org/linus/9cf3415ade2d7598d78d2ce6d35d6d6d06132201|commit]], [[https://git.kernel.org/linus/09d0aaa0ae9c80ff9569393b206226c1008801b1|commit]], [[https://git.kernel.org/linus/fa5aec9561cfc4f4370983ca5818c90227c9d90e|commit]], [[https://git.kernel.org/linus/6cc4bcceff9af0e6be9738096d95e4ba75e75123|commit]] * Rework system pressure interface to the scheduler [[https://git.kernel.org/linus/97450eb909658573dcacc1063b06d3d08642c0c1|commit]], [[https://git.kernel.org/linus/c281afe24fc51691e65f59ea66eefa14cbdfa0e7|commit]], [[https://git.kernel.org/linus/f1f8d0a224227e4f19a8a8881dc6355bdfc51230|commit]], [[https://git.kernel.org/linus/75d659317bb136d849a10a30ffe7e0462c982d29|commit]] * mediatek: Add support for MT7988A [[https://git.kernel.org/linus/b69ec356db1a7c4703b1a9edc82ee1dfdd296b97|commit]] == Voltage, current regulators, power capping, power supply == * rk808: Add RK816 support [[https://git.kernel.org/linus/5eb068da74a0b443fb99a89d9e5062691649c470|commit]] * Add X-Powers AXP717 PMIC support [[https://git.kernel.org/linus/d2ac3df75c3a995064cfac0171e082a30d8c4c66|commit]], [[https://git.kernel.org/linus/b5bfc8ab2484e8e62ae3ffccaecfe5d82c19f51f|commit]], [[https://git.kernel.org/linus/3bfe7fe6c0ea23c406a52291da3fb656df9be1ae|commit]], [[https://git.kernel.org/linus/4628b804555773daa982d9578d89fe04fcdde374|commit]] * Add pmic pca9451a support [[https://git.kernel.org/linus/cd290abbdab3fb4db403b6fc0ae4038b22268bee|commit]], [[https://git.kernel.org/linus/0f3b73eb1440d18d2236ac660d4aa76fd726bec7|commit]], [[https://git.kernel.org/linus/5edeb7d312628961046eec9b26a7e72f44baf846|commit]] * sun20i: Add Allwinner D1 LDOs driver [[https://git.kernel.org/linus/4e70b26c873dfff317039458a6ea66314bbdce99|commit]], [[https://git.kernel.org/linus/622bab1884847fcf3f9bfdf1d534fac3a5fe859f|commit]] * New API for voltage reference supplies [[https://git.kernel.org/linus/48b6faae69a432b76e453c73ff5210bf5affa936|commit]], [[https://git.kernel.org/linus/d72fd5228c9f2136a3143daf5c7822140211883a|commit]], [[https://git.kernel.org/linus/cffb8d74bd4e9dd0653c7093c4a5164a72c52b1f|commit]], [[https://git.kernel.org/linus/b250c20b64290808aa4b5cc6d68819a7ee28237f|commit]] * Add support for TI TPS65224 PMIC [[https://git.kernel.org/linus/9d855b8144e6016357eecdd9b3fe7cf8c61a1de3|commit]], [[https://git.kernel.org/linus/91020aecc8136174429d41a6dae3de7cf39f8000|commit]], [[https://git.kernel.org/linus/436250638b6d8e6cf8dceed82cdbbfc90ce3a775|commit]], [[https://git.kernel.org/linus/91fbd800649f62bcc6a002ae9e0c0b6b5bb3f0d0|commit]], [[https://git.kernel.org/linus/84ccfaee29fe46e305244a69c4471e83629ad5d1|commit]], [[https://git.kernel.org/linus/00c826525fbae0230f6c3e9879e56d50267deb42|commit]], [[https://git.kernel.org/linus/02716864fd5a53e057dcecdb36c807be6494120c|commit]], [[https://git.kernel.org/linus/f8e5fc60e6666b46ce113b6b6de221ebba88668f|commit]], [[https://git.kernel.org/linus/2088297159178ffc7c695fa34a7a88707371927d|commit]] * Add RK816 PMIC support [[https://git.kernel.org/linus/9f4e899c286b5127e2443d50e37ee2112efbfa2c|commit]], [[https://git.kernel.org/linus/1bd97d64b5f0c01d03ecc9473ccfcf180dbbf54a|commit]], [[https://git.kernel.org/linus/e9006f81faf8e438ea83626db578610e49f31576|commit]], [[https://git.kernel.org/linus/06dfb41b1cf8d64327e5c4391e165f466506c4f0|commit]] == Real Time Clock (RTC) == * Add a driver for Epson RX8111 RTC [[https://git.kernel.org/linus/f8c81d15f4bb585f229a1f5f609a8544b89933ff|commit]], [[https://git.kernel.org/linus/c6a2fb6d14bfe321fa516fb5558e19d176e2ae52|commit]] == Pin Controllers (pinctrl) == * arm_scmi: Add SCMI v3.2 pincontrol protocol basic support [[https://git.kernel.org/linus/eb524cb651b794f2529e36deb6b18523adc9ecaa|commit]] * Add GPIO support for various PMICs [[https://git.kernel.org/linus/6acc46f8c065f5282be8577db696d098442f808f|commit]], [[https://git.kernel.org/linus/ae6f9707d704c6a919caa0aa959970003e1391a0|commit]] * Add support for TI TPS65224 PMIC [[https://git.kernel.org/linus/9d855b8144e6016357eecdd9b3fe7cf8c61a1de3|commit]], [[https://git.kernel.org/linus/91020aecc8136174429d41a6dae3de7cf39f8000|commit]], [[https://git.kernel.org/linus/436250638b6d8e6cf8dceed82cdbbfc90ce3a775|commit]], [[https://git.kernel.org/linus/91fbd800649f62bcc6a002ae9e0c0b6b5bb3f0d0|commit]], [[https://git.kernel.org/linus/84ccfaee29fe46e305244a69c4471e83629ad5d1|commit]], [[https://git.kernel.org/linus/00c826525fbae0230f6c3e9879e56d50267deb42|commit]], [[https://git.kernel.org/linus/02716864fd5a53e057dcecdb36c807be6494120c|commit]], [[https://git.kernel.org/linus/f8e5fc60e6666b46ce113b6b6de221ebba88668f|commit]], [[https://git.kernel.org/linus/2088297159178ffc7c695fa34a7a88707371927d|commit]] * Add RK816 PMIC support [[https://git.kernel.org/linus/9f4e899c286b5127e2443d50e37ee2112efbfa2c|commit]], [[https://git.kernel.org/linus/1bd97d64b5f0c01d03ecc9473ccfcf180dbbf54a|commit]], [[https://git.kernel.org/linus/e9006f81faf8e438ea83626db578610e49f31576|commit]], [[https://git.kernel.org/linus/06dfb41b1cf8d64327e5c4391e165f466506c4f0|commit]] == Multi Media Card (MMC) == * Add tuning algorithm for delay chain [[https://git.kernel.org/linus/9dff65bb5e09903c27d9cff947dff4d22b6ea6a1|commit]], [[https://git.kernel.org/linus/d3182932bb070e7518411fd165e023f82afd7d25|commit]], [[https://git.kernel.org/linus/d465234493bb6ad1b9c10a0c9ef9881b8d85081a|commit]], [[https://git.kernel.org/linus/387c1bf7dce0dfea02080c8bdb066b5209e92155|commit]], [[https://git.kernel.org/linus/6231d99dd4119312ad41abf9383e18fec66cbe4b|commit]], [[https://git.kernel.org/linus/f4a5ddddb15252b61279ea3ebce4b17f6360434c|commit]], [[https://git.kernel.org/linus/a66db8167ad913efe3d925afe96fcdf2283de796|commit]], [[https://git.kernel.org/linus/b1b661c47cc49aca830d8de57ae9d8dda639cbbd|commit]] * sdhci-of-dwcmshc: Add CQE support [[https://git.kernel.org/linus/f12e39dbf3e6eb521435085712addc131d803bfd|commit]], [[https://git.kernel.org/linus/53ab7f7fe412abd294262e86459f17d965cd65b9|commit]], [[https://git.kernel.org/linus/52bf134fca61f0cdb400f4b27766149ca6e1550c|commit]] * sdhci-acpi: Add some DMI quirks to fix various issues on Bay Trail devices [[https://git.kernel.org/linus/431946c0f640c93421439a6c928efb3152c035a4|commit]], [[https://git.kernel.org/linus/b3855668d98cf9c6aec2db999dd27d872f8ba878|commit]], [[https://git.kernel.org/linus/a92a73b1d9249d155412d8ac237142fa716803ea|commit]], [[https://git.kernel.org/linus/63a7cd660246aa36af263b85c33ecc6601bf04be|commit]], [[https://git.kernel.org/linus/ef3eab75e17191e5665f52e64e85bc29d5705a7b|commit]], [[https://git.kernel.org/linus/f3521d7cbaefff19cc656325787ed797e5f6a955|commit]] == Industrial I/O (iio) == * adc: ad7944: Add support for "3-wire mode" [[https://git.kernel.org/linus/346ae0e8276fe6fc5f0b7496e53343e1739ff5b0|commit]] * dac: ti-dac5571: Add DAC081C081 support [[https://git.kernel.org/linus/3d797af1d69a23571ec89dc4d95eb0e0e971d3d8|commit]] * health: max30102: add support for max30101 [[https://git.kernel.org/linus/c71af78d9bf2edd9777113e7a9cbacc518318976|commit]], [[https://git.kernel.org/linus/0a2c44324f3be607345834234259c0a1eaf65c1e|commit]] * temperature: ltc2983: small improvements [[https://git.kernel.org/linus/3af9c5bed1b8f284f3d7d479c77adf60ad059e91|commit]], [[https://git.kernel.org/linus/47ef0501a9cc25c88dcac2b57ed3bab4da53f3d5|commit]], [[https://git.kernel.org/linus/d4bd9a58d81beeb2fab89085b97ba10ed10f09bc|commit]] * Add support for additional AD717x models [[https://git.kernel.org/linus/393310526b4aaeb291d68c5b34f78f1bddae487a|commit]], [[https://git.kernel.org/linus/88a1ffc690676b16f64ae8254253489b907c68e7|commit]] * adc: ad7944: new driver [[https://git.kernel.org/linus/baef58b1b09ac0e9339e021144b921560482c8bd|commit]], [[https://git.kernel.org/linus/d1efcf8871db514ae349a24790afd1632ba31030|commit]], [[https://git.kernel.org/linus/59346366e56f8abf72ed2eb081da4abbfd4d5575|commit]] * humidity: hdc3020: add power and reset management [[https://git.kernel.org/linus/11b9cd748e3107df5c5e040a4daa986a3c6d8b75|commit]], [[https://git.kernel.org/linus/24fe2386818682ae7503a2bc210f0baa4d9902ab|commit]], [[https://git.kernel.org/linus/f77f50ca1a236ae213d1b9cef4ac042090c98ae6|commit]] * imu: inv_icm42600: add support of ICM-42688-P [[https://git.kernel.org/linus/88b49449f25ddab6d10e4ba4fad225cb81d0a6d8|commit]], [[https://git.kernel.org/linus/6a9e5518287ba3807968ba2213b5636e572567ad|commit]] * pressure: dps310: support negative temperature values [[https://git.kernel.org/linus/5826711e841450755cae32bacc59f6465075db94|commit]], [[https://git.kernel.org/linus/c046bb5d9512e3c00b0e17c581f50bbb6c641d58|commit]], [[https://git.kernel.org/linus/b8189beb2c87cb7aae114734baf19d2bd33342ce|commit]], [[https://git.kernel.org/linus/9dd6b32e76ff714308964cd9ec91466a343dcb8b|commit]] * imu: inv_icm42600: add support of ICM-42686-P [[https://git.kernel.org/linus/a1432b5b4f4c44473ee97152c2f356d372ccd45c|commit]], [[https://git.kernel.org/linus/3b0c13361298af009756d040176c8417c5f8146c|commit]] * ad9467: support interface tuning [[https://git.kernel.org/linus/7ecb8ee5c93be9f00cbf090f7f53b2a32d995184|commit]], [[https://git.kernel.org/linus/c66eabcc1ca64dbf20d0758ce210a85fa83f4b21|commit]], [[https://git.kernel.org/linus/f9cd2b3bf48b108c7935fa06e833e85b5f1d0119|commit]], [[https://git.kernel.org/linus/09415814cd1d0b90b898f81d6ad6a1c0a2e22d32|commit]], [[https://git.kernel.org/linus/fbc186055b41a49678ae3b2793020e67dfd8f7aa|commit]], [[https://git.kernel.org/linus/2fa3b4c4a78a5db3502ab9e32630ea660ff923d0|commit]] * dac: support IIO backends on the output direction [[https://git.kernel.org/linus/2d1af46cfe2efff7dbfab5041399641e19c30f81|commit]], [[https://git.kernel.org/linus/a33486d38ea8f2b1446c4dbda8639eb19af6018b|commit]], [[https://git.kernel.org/linus/04ae3b1a76b77f98a4a0c8ed2c544007334fc680|commit]], [[https://git.kernel.org/linus/fb09febafd160b7aefd9e61f710a0c50f0472403|commit]], [[https://git.kernel.org/linus/e77603d5468b9093c111a998a86604e21a9e7f48|commit]], [[https://git.kernel.org/linus/a094de22e2efc2ec7f540d10d1edb7038f863925|commit]], [[https://git.kernel.org/linus/87800c4342a29d4e1c378ce72d27e3976d094ffa|commit]], [[https://git.kernel.org/linus/3afb27d15f8ddaa5ce5781d18bb249c683d29260|commit]], [[https://git.kernel.org/linus/c1b91566580c245cf1147745d174be5e059ace6b|commit]], [[https://git.kernel.org/linus/4e3949a192e45a8e3543dbdbc853b90c3c25692e|commit]] * adc: ad7944: implement chain mode support [[https://git.kernel.org/linus/633e3015cae062a424a6dd5099710adfe83a5e14|commit]], [[https://git.kernel.org/linus/64ce7d4348be630badad2af22030bebf028b2861|commit]] * adc: ad7173: add AD7173 driver [[https://git.kernel.org/linus/76a1e6a4280211b1ceffec4f79f96e492c661229|commit]], [[https://git.kernel.org/linus/7b0c9f8fa3d25622c21eeaa2c095c8a36b8b08b7|commit]], [[https://git.kernel.org/linus/3d50d03f21949625534c81b744b8e42765623e9e|commit]] * Add support for additional AD717x models [[https://git.kernel.org/linus/393310526b4aaeb291d68c5b34f78f1bddae487a|commit]], [[https://git.kernel.org/linus/88a1ffc690676b16f64ae8254253489b907c68e7|commit]], [[https://git.kernel.org/linus/37ae8381ccda3c79d100677d29b233e207700b2b|commit]] * Support for Avago APDS9306 Ambient Light Sensor [[https://git.kernel.org/linus/620d1e6c7a3fcc54c641f091e07b9040f13def19|commit]], [[https://git.kernel.org/linus/f31f1f27b0e37badd68b68aa8b426108520cc814|commit]], [[https://git.kernel.org/linus/2f8608f71bfecd9aaeb571ea688e66e4ba225d12|commit]], [[https://git.kernel.org/linus/c6ae0bce6bf39042796df9fb1e857b596047f0a5|commit]], [[https://git.kernel.org/linus/9278524c48658a0ddccf69a0c185129951d15853|commit]] * humidity: hdc3020: add power and reset management [[https://git.kernel.org/linus/f764c293a1f8a4ee849d377a804e3940a208ad0b|commit]], [[https://git.kernel.org/linus/11b9cd748e3107df5c5e040a4daa986a3c6d8b75|commit]], [[https://git.kernel.org/linus/24fe2386818682ae7503a2bc210f0baa4d9902ab|commit]], [[https://git.kernel.org/linus/f77f50ca1a236ae213d1b9cef4ac042090c98ae6|commit]] * Add WoM feature as an IIO event [[https://git.kernel.org/linus/305914d018077a125b0541b196ed080804f72106|commit]], [[https://git.kernel.org/linus/5537f653d9be09a591063395c0d9ae97c6a4b23f|commit]], [[https://git.kernel.org/linus/d0e79bebce8b11f100a9c9b43852c2ed98dcac51|commit]], [[https://git.kernel.org/linus/0b70c0844955a7d0fd24048e53fdd62e94f4e0e9|commit]] == Multi Function Devices (MFD) == * Add RK816 PMIC support [[https://git.kernel.org/linus/9f4e899c286b5127e2443d50e37ee2112efbfa2c|commit]], [[https://git.kernel.org/linus/1bd97d64b5f0c01d03ecc9473ccfcf180dbbf54a|commit]], [[https://git.kernel.org/linus/e9006f81faf8e438ea83626db578610e49f31576|commit]], [[https://git.kernel.org/linus/06dfb41b1cf8d64327e5c4391e165f466506c4f0|commit]] * Add support for TI TPS65224 PMIC [[https://git.kernel.org/linus/9d855b8144e6016357eecdd9b3fe7cf8c61a1de3|commit]], [[https://git.kernel.org/linus/91020aecc8136174429d41a6dae3de7cf39f8000|commit]], [[https://git.kernel.org/linus/436250638b6d8e6cf8dceed82cdbbfc90ce3a775|commit]], [[https://git.kernel.org/linus/91fbd800649f62bcc6a002ae9e0c0b6b5bb3f0d0|commit]], [[https://git.kernel.org/linus/84ccfaee29fe46e305244a69c4471e83629ad5d1|commit]], [[https://git.kernel.org/linus/00c826525fbae0230f6c3e9879e56d50267deb42|commit]], [[https://git.kernel.org/linus/02716864fd5a53e057dcecdb36c807be6494120c|commit]], [[https://git.kernel.org/linus/f8e5fc60e6666b46ce113b6b6de221ebba88668f|commit]], [[https://git.kernel.org/linus/2088297159178ffc7c695fa34a7a88707371927d|commit]] * Add X-Powers AXP717 PMIC support [[https://git.kernel.org/linus/d2ac3df75c3a995064cfac0171e082a30d8c4c66|commit]], [[https://git.kernel.org/linus/b5bfc8ab2484e8e62ae3ffccaecfe5d82c19f51f|commit]], [[https://git.kernel.org/linus/3bfe7fe6c0ea23c406a52291da3fb656df9be1ae|commit]], [[https://git.kernel.org/linus/4628b804555773daa982d9578d89fe04fcdde374|commit]] * rohm-bd71828: Add power off [[https://git.kernel.org/linus/dd1086f43dc7205b451ae95e37d4813a9c28611d|commit]], [[https://git.kernel.org/linus/26cc3ab984cd00e95cb58ba5aaea4238ea56c700|commit]], [[https://git.kernel.org/linus/714ae2ab78078a23b5aa72b517b3402354d5685d|commit]] * rsmu: support I2C SMBus access [[https://git.kernel.org/linus/53d3ff7be4a67841d7302c8d5e6521124959fdc1|commit]] == Inter-Integrated Circuit (I2C + I3C) == * dw: Add hot-join support [[https://git.kernel.org/linus/1d08326020fba690cbb7b8f1b38ab4eab6745969|commit]] * Add RIIC support for Renesas RZ/V2H SoC [[https://git.kernel.org/linus/a45f95d7480544fdaa9d566cb4956d0ca5d0dc33|commit]], [[https://git.kernel.org/linus/748ee3b2a477821957adfe0ee7d1fd11d0f9a512|commit]], [[https://git.kernel.org/linus/26c7871100f2933a2827b217320366e89cef5a4c|commit]], [[https://git.kernel.org/linus/c1f39c62eb09fa2e692a9377295ecbd0740c0914|commit]] == Hardware monitoring (hwmon) == * dell-smm: Add Dell G5 5505 to DMI table [[https://git.kernel.org/linus/df43ade4cb49f5b4a18bf9e737117dfbb7dbd21a|commit]] * pmbus: Add driver for ADP1050 [[https://git.kernel.org/linus/04f175954daee54e7c50dd831ee15e8a36fe5648|commit]] * Add EC Chip driver for Lenovo ThinkStation motherboards [[https://git.kernel.org/linus/70118f85e6538f5c376f57a3e8d621f1f3448754|commit]] * pmbus: Add support for Infineon XDP710 [[https://git.kernel.org/linus/cffa8fb56a85e5715d215d2aac99975c74cb1d6b|commit]], [[https://git.kernel.org/linus/35fe06d94e39528dad7bc646c35dfd120c0fe82a|commit]] * emc1403: Add support for EMC1428 and EMC1438 [[https://git.kernel.org/linus/c82337843dd7c0723e7ce2b86e5ed89d71f1c7c3|commit]] * Add adm1281 support [[https://git.kernel.org/linus/916300902725b362d5008ee10825a39056f0b095|commit]], [[https://git.kernel.org/linus/379bb1f4d590d85311a5227b99b46905bd9985ac|commit]] * aquacomputer_d5next: Support for Octo flow sensor and pulses [[https://git.kernel.org/linus/bf7b5a12bdd92b7ff6003b855b5034fb88e99e4b|commit]], [[https://git.kernel.org/linus/120584c728a69d119f5b970df17052153ad6f438|commit]] * nzxt-kraken3: Add support for NZXT Kraken 2023 models [[https://git.kernel.org/linus/8ec8d6c50984ca0f8ee160a9adac4b1c8f88d468|commit]], [[https://git.kernel.org/linus/cbeb479ff4cd42f970e8149b18fcfd12b2180c46|commit]] == General Purpose I/O (gpio) == * Add Intel Granite Rapids-D vGPIO driver [[https://git.kernel.org/linus/ecc4b1418e2399753af7ef304d01f45e8e942286|commit]] == Leds == * trigger: pattern: Add support for hrtimer [[https://git.kernel.org/linus/aa172ba73948e2152e258ead7e9ddbd806e809b0|commit]] * trigger: audio: Remove this trigger [[https://git.kernel.org/linus/ab2ab9e69ef9734b875ce6d43fe3f9f90135daae|commit]] * simatic-ipc-leds-gpio: Add support for module BX-59A [[https://git.kernel.org/linus/6b0d685d75a70ef9c9558efb0374ec4a9aaf95d2|commit]] * qcom-lpg: Add support for PMI8950 PWM [[https://git.kernel.org/linus/2573c25e2c482b53b6e1142ff3cd28f6de13e659|commit]] == DMA engines == * fsl-sdma: Some improvement for fsl-sdma [[https://git.kernel.org/linus/d9a63a45180ec0f42313dfb8c05b6a59b4ab626b|commit]], [[https://git.kernel.org/linus/458bb56d53c9758ef873b4f373660b1f02b98d86|commit]], [[https://git.kernel.org/linus/a20f10d6accb9f5096fa7a7296e5ae34f4562440|commit]], [[https://git.kernel.org/linus/288109387becd8abadca5c063c70a07ae0dd7716|commit]], [[https://git.kernel.org/linus/802ef223101fec83d92e045f89000b228904a580|commit]] * Add JH8100 support for snps,dw-axi-dmac [[https://git.kernel.org/linus/559a6690187ee0ab7875f7c560d3d19e35423fb3|commit]], [[https://git.kernel.org/linus/2ccf7a5d9c50f3eaa21ae560332d5f986b8f25e6|commit]] * fsl-edma: add 8ulp support [[https://git.kernel.org/linus/d8d4355861d874cbd1395ec0edcbe4e0f6940738|commit]], [[https://git.kernel.org/linus/b14f56beb289ff67fe484d720bf09092163f90c8|commit]], [[https://git.kernel.org/linus/9a5000cf70bcfcb5dd4e5b4bae0a01fb9bdf9fa1|commit]], [[https://git.kernel.org/linus/6aa60f79e6794bbbc571ea4e0501b9fcc26026e2|commit]], [[https://git.kernel.org/linus/cee8cbfc7be8ff9f3ccf258134f9ab2c273abb75|commit]] == Cryptography hardware acceleration == * qat: enable QAT GEN4 SRIOV VF live migration for QAT GEN4 [[https://git.kernel.org/linus/3fa1057e35474c715608635a0bf7452397580bfd|commit]], [[https://git.kernel.org/linus/bbfdde7d195ffc9c10598055c449b24c50a0cd25|commit]], [[https://git.kernel.org/linus/1f8d6a163c20751629801c737a8cfd06f2002b4c|commit]], [[https://git.kernel.org/linus/867e801005e9e76f7ae2d143fed0da440150c64d|commit]], [[https://git.kernel.org/linus/1894cb1de656cfde345c3b2690e379be1eb9db96|commit]], [[https://git.kernel.org/linus/0fce55e5334d380d8a09f80ba9c9b68eeea6971d|commit]], [[https://git.kernel.org/linus/84058ffb919bf6a6aac24d2baf7fce442d24f390|commit]], [[https://git.kernel.org/linus/680302d191b043cf3abe4076794de10171a4ca93|commit]], [[https://git.kernel.org/linus/f0bbfc391aa7eaa796f09ee40dd1cd78c6c81960|commit]] * Add Tegra Security Engine driver [[https://git.kernel.org/linus/0d23cacb2ae0fc9d8d40f36cb37ad272b3249ffe|commit]], [[https://git.kernel.org/linus/4d4d3fe6b3cc2a0b2a334a08bb9c64ba1dcbbea4|commit]], [[https://git.kernel.org/linus/0880bb3b00c855fc244b7177ffdaafef4d0aa1e0|commit]], [[https://git.kernel.org/linus/cc370ff85bae5373330518e4ebb2d36c0ca8a470|commit]], [[https://git.kernel.org/linus/17048b225b0307b7b271b2fa4f5479fa688e3694|commit]] * Support Data Co-Processor (DCP) as trusted keys backend [[https://git.kernel.org/linus/28c5f596ae3d1790cdc96fa5fc7370f934abfb2e|commit]], [[https://git.kernel.org/linus/633cb72fb6969e420518fee4b2ae6040688ecc5a|commit]], [[https://git.kernel.org/linus/2e8a0f40a39cc253002f21c54e1b5b995e5ec510|commit]], [[https://git.kernel.org/linus/3d16af0b4cfac4b2c3b238e2ec37b38c2f316978|commit]], [[https://git.kernel.org/linus/b85b253e23bc985ecb0dad329da2147fb396223c|commit]], [[https://git.kernel.org/linus/df866688d49ccbe4efcd2a3e7d1e1b5e6ee1aa71|commit]] == PCI == * Support discovery version 2 [[https://git.kernel.org/linus/eebab7e3eb4bb906a8ebc3b70d28059ff1d9271c|commit]] == Clock == * Introduce clock support for Airoha EN7581 SoC [[https://git.kernel.org/linus/66bc47326ce2a319add7e933d9340215711236ac|commit]], [[https://git.kernel.org/linus/457e74667f452d7f071ad2b2d9313ec62ebc4b02|commit]], [[https://git.kernel.org/linus/0a382be005cf8e7ac1b6ed25f47c2f599b1ff6af|commit]] * sophgo: add clock support for Sophgo CV1800/SG2000 !SoCs [[https://git.kernel.org/linus/18e8c6d2cced6c57d62813f49b57eeb8ee02f984|commit]], [[https://git.kernel.org/linus/80fd61ec46124eb83b29de3647a565f69979e753|commit]], [[https://git.kernel.org/linus/3b8d2042122846e3e61b184f9d17690d31a885a4|commit]], [[https://git.kernel.org/linus/50e45d3b03fd20d663dc8e76fc881ba722403676|commit]], [[https://git.kernel.org/linus/bb7b3419627eb34f3466022d1f4b3c942c09712d|commit]], [[https://git.kernel.org/linus/1cce3e61af6a89aa4b01189257fba73e46244b2d|commit]] * Add Loongson-2k0500 and Loongson-2k2000 clock support [[https://git.kernel.org/linus/4f149dd4786afd5e5a023e96fb988e4f8b44e8ed|commit]], [[https://git.kernel.org/linus/9796ec0bd04bb0e70487127d44949ca0554df5d3|commit]], [[https://git.kernel.org/linus/5aa9d3a79bc66f2cc9ef9e89ffe7f37a96d47ce8|commit]], [[https://git.kernel.org/linus/0b1bfd15f3f9ffb1e36c88861e9ada3f58ccb234|commit]], [[https://git.kernel.org/linus/267325629ee3f04b519c4070a0ac65e86354d94f|commit]], [[https://git.kernel.org/linus/85d4daa59555182f9c8b9f5fe951049a6d0aed0f|commit]] * Introduce STM32MP257 clock driver [[https://git.kernel.org/linus/948a4db95dc8c86e70357c20fe2aede7fab69219|commit]], [[https://git.kernel.org/linus/fd7a1c90ba4c6e618596eb44a69977801f9cccdd|commit]], [[https://git.kernel.org/linus/df5df1257c9f2af6621976f1e18a088182230d06|commit]], [[https://git.kernel.org/linus/239d5fb3ba79b1c2aa257569e55739a07c161c37|commit]] * Add support i.MX95 BLK CTL module clock features [[https://git.kernel.org/linus/5224b189462ff70df328f173b71acfd925092c3c|commit]], [[https://git.kernel.org/linus/c6e87b066756ec4b3f5f9061b508f3bd724ec652|commit]], [[https://git.kernel.org/linus/b773f5ad2bfd2d00bd2c5ea7022bc5b86d23a1b7|commit]], [[https://git.kernel.org/linus/977b07f769970aec97b907cfc93fb681ecffc9fe|commit]] * qcom: clk-rcg2: introduce support for multiple conf for same freq [[https://git.kernel.org/linus/e88f03230dc07aa3293b6aeb078bd27370bb2594|commit]], [[https://git.kernel.org/linus/89da22456af0762477d8c1345fdd17961b3ada80|commit]], [[https://git.kernel.org/linus/d06b1043644a1831ab141bbee2669002bba15b0f|commit]] * HSI0 and HSI2 support for Google Tensor gs101 [[https://git.kernel.org/linus/093c290084a494844f1650e70755b8912292ee14|commit]], [[https://git.kernel.org/linus/1891e4d487554ef66350308c3603ed07b6557f17|commit]], [[https://git.kernel.org/linus/86124c76683e31033180f1d31e7543863ce6d850|commit]], [[https://git.kernel.org/linus/4982a4a2092ee9f7334d8f119a6a15d8165f7a04|commit]], [[https://git.kernel.org/linus/01aea123b11c7ebbdd64b2df3a4a5a7ad86a460d|commit]] == PHY ("physical layer" framework) == * qcom: eusb2-repeater: Add support for SMB2360 [[https://git.kernel.org/linus/67076749e093ffb3c82ba6225d41c88f8c816472|commit]], [[https://git.kernel.org/linus/f8d27a7e0ae36c204bffe4992043b2bb42ca8580|commit]] * qcom-qmp-ufs: Add support for SM8475 [[https://git.kernel.org/linus/ef2bd6c969830c7e42c23bcaf9d533db77420512|commit]], [[https://git.kernel.org/linus/5787731c7467faeb1bcbe5a64e1a86fb7987bbaa|commit]] * HSI2, UFS & UFS phy support for Tensor GS101 [[https://git.kernel.org/linus/9238cad67969e7001e296eaedcdffc63fc38ab30|commit]], [[https://git.kernel.org/linus/6f9f0d564b0411f8d86d73c7cb6b2703839e8a96|commit]], [[https://git.kernel.org/linus/0338e1d2f933a4ec7ae96ed1f40c39b899e357d7|commit]], [[https://git.kernel.org/linus/b5f5fe4b317c0fbda725a44d9c92d97930ad68e9|commit]], [[https://git.kernel.org/linus/6d1434a7d95939d21cf300f73040e3e6a02e84f8|commit]], [[https://git.kernel.org/linus/c1cf725db1065153459f0deb69bd4d497a5fd183|commit]], [[https://git.kernel.org/linus/d11e0a318df84f2542316ec8cc0fa4034240ee66|commit]], [[https://git.kernel.org/linus/449adb00d4f7870eb07adedd34e4a4b69036ec12|commit]], [[https://git.kernel.org/linus/c9deb9a4f574b49bfd00be88aba470659d2db671|commit]], [[https://git.kernel.org/linus/fdd78ff04ccc96f628c2f93e0d48ab0a74bf34ef|commit]], [[https://git.kernel.org/linus/a4de58a9096b471f9dc1c2bc6bfaa8aa48110c31|commit]], [[https://git.kernel.org/linus/01aea123b11c7ebbdd64b2df3a4a5a7ad86a460d|commit]], [[https://git.kernel.org/linus/093c290084a494844f1650e70755b8912292ee14|commit]], [[https://git.kernel.org/linus/86124c76683e31033180f1d31e7543863ce6d850|commit]], [[https://git.kernel.org/linus/724e4fc053fe217d0ed477517ae68db11feab1f5|commit]], [[https://git.kernel.org/linus/f2c6d0fa197a1558f4ef50162bb87e6644af232d|commit]] * Add driver for !MediaTek XFI T-PHY [[https://git.kernel.org/linus/ac4aa9dbc702329c447d968325b055af84ae1b59|commit]], [[https://git.kernel.org/linus/0409516a2d29fcaca53ed4c90c22f11af9600199|commit]] * RK3588 USBDP support [[https://git.kernel.org/linus/e18e5e8188f2671abf63abe7db5f21555705130f|commit]], [[https://git.kernel.org/linus/33f393a2a990e16f56931ca708295f31d2b44415|commit]], [[https://git.kernel.org/linus/2f70bbddeb457580cef3ceb574506083b9272188|commit]], [[https://git.kernel.org/linus/7cdf7efefc02189cf9a228d4c5c4253d273e9b1a|commit]], [[https://git.kernel.org/linus/494532921aacb496529d544fedfdb3a7b43dfef0|commit]], [[https://git.kernel.org/linus/a75d8056e9fefa82ca2bd75a32febc44411cc5c0|commit]], [[https://git.kernel.org/linus/b37146b5a555dd871cb0805446826ab2fc8d285a|commit]], [[https://git.kernel.org/linus/abe68e0ca71dddce0e5419e35507cb464d61870d|commit]], [[https://git.kernel.org/linus/4e07a95f7402de092cd71b2cb96c69f85c98f251|commit]], [[https://git.kernel.org/linus/af7ec140ddc1815bc462109792d95bcad05cfbc4|commit]] * qcom-qmp-pcie: add x4 lane EP support for sa8775p [[https://git.kernel.org/linus/82b7487b8eb93e82ace92866560de3d4952555db|commit]] * Add USB Support on Qualcomm's QDU/QRU1000 Platform [[https://git.kernel.org/linus/495341664af1d9ab4bb5a71f3ffcb08659cf8fa7|commit]], [[https://git.kernel.org/linus/c5b324b1a7628c393f99058d2464592791617cc9|commit]], [[https://git.kernel.org/linus/f75a4b3a6efccfc879d078cc9b5c21ef8a8dc392|commit]], [[https://git.kernel.org/linus/fbd3b6fe36242562bcd70464cfa8ee0fb26882d6|commit]] * qcom: edp: Add support for !X1E80100 [[https://git.kernel.org/linus/874bc7be1e08bca7d47cfa2dba57164f73a30219|commit]], [[https://git.kernel.org/linus/db83c107dc295a6d26727917dc62baa91a1bf989|commit]], [[https://git.kernel.org/linus/9eb8e3dd297f976aec24e07c5e3ca1e79629140b|commit]], [[https://git.kernel.org/linus/5d5607861350db4020b3d74c02837ffc008701d9|commit]] == Various == * accel/qaic: Add Sahara implementation for firmware loading [[https://git.kernel.org/linus/76b801aa219836c2ccc17f2b5a434450de4a2321|commit]] * accel/qaic: Add debugfs entries [[https://git.kernel.org/linus/d294948c2ce4e1c85f452154469752cc9b8e876d|commit]], [[https://git.kernel.org/linus/e495e523b888a6155f82c767d34c8d712a41ee54|commit]], [[https://git.kernel.org/linus/b05d357244e93ad073bed27a22668cf418e847fa|commit]], [[https://git.kernel.org/linus/5f8df5c6def641c164ed1b673d47a41fdd0013f8|commit]] * Introduce STM32 Firewall framework [[https://git.kernel.org/linus/c83509527529c1fcd9c1bf341d101a2372649484|commit]], [[https://git.kernel.org/linus/161e83f538183897c23644f5576b10f3c03df521|commit]], [[https://git.kernel.org/linus/a182084572533d48818fefc6c4af1b8f8853c447|commit]], [[https://git.kernel.org/linus/02ec75edaa94a28b4e89ca6594ae988918be3dc5|commit]], [[https://git.kernel.org/linus/ad4263523f5175e9cff7be72c9fb4b4a56a8b451|commit]], [[https://git.kernel.org/linus/a06b9560eb6c5cc50f9604179b1c72f52b904eb9|commit]], [[https://git.kernel.org/linus/eac9fba67f47b75e78d57d00fffb9d59a3331379|commit]], [[https://git.kernel.org/linus/f9b497f7fb8c322ee27808154122553ceafc17c3|commit]], [[https://git.kernel.org/linus/d7218d3c9e078072a02eeb1d1aced8d1ad1537c8|commit]], [[https://git.kernel.org/linus/7666e9ec9b58f64e4a1a462620ae3d0015ee39bf|commit]], [[https://git.kernel.org/linus/5c9668cfc6d7c7de30fa57fa0a6c0ddc93462969|commit]], [[https://git.kernel.org/linus/c1c67654df0713539f9b5e8f84ce8fc573465efb|commit]], [[https://git.kernel.org/linus/2eeb74c449e910851fa48f4868ec0edadaa28f08|commit]] * bus: mhi: host: Add a new API for getting channel doorbell offset [[https://git.kernel.org/linus/553f94fc7667259e47a9318e9e5702c9a814d637|commit]] * Add stm32 timer events support [[https://git.kernel.org/linus/29646ee33cc34b322578e923a121a3ba5eedc22b|commit]], [[https://git.kernel.org/linus/efec660d78f06cd1101b3300ebfef4918cc0f63f|commit]], [[https://git.kernel.org/linus/b3306362b89880da4d7c3280009da946ba42e762|commit]], [[https://git.kernel.org/linus/5679d5f76ca781c46212db3e274e610aeea62af9|commit]], [[https://git.kernel.org/linus/1aed15275b7ce17b5ebdfc112a76e0d7165ed46b|commit]], [[https://git.kernel.org/linus/f7131297d638ffc9a63005464f7108e0dfdda8b6|commit]], [[https://git.kernel.org/linus/f7630270b67836bedc518e96fb4c64b11fe3fb5e|commit]], [[https://git.kernel.org/linus/b73d03b3474212028f5b41675b0f30273c7ffa58|commit]], [[https://git.kernel.org/linus/7a6c69f2be82e60a57d75ef9ad29fac0aa3d619e|commit]], [[https://git.kernel.org/linus/2c70ccd45985f1e458f9785fc8cf9b8c48e3807f|commit]] * Add log related mailbox commands [[https://git.kernel.org/linus/206f9fa9d55592c8cea0ccf84a5242b7c7cf3748|commit]], [[https://git.kernel.org/linus/940325add1c54e3018277d6d783ec419262729e8|commit]] * efi/cxl-cper: Report CXL CPER events through tracing [[https://git.kernel.org/linus/dc97f6344f205b0dfa144e1b3e16d6dc05383d57|commit]], [[https://git.kernel.org/linus/671a794c33c6e048ca5cedd5ad6af44d52d5d7e5|commit]] * firewire: add tracepoints events for asynchronous communication [[https://git.kernel.org/linus/624a8535f7036d8c4de1481b72704daa7f7fd43e|commit]], [[https://git.kernel.org/linus/c5deb01849688fd5d9dd5113e81a7426b78bf02c|commit]], [[https://git.kernel.org/linus/6503df36128b56685367172ebb7b0765c466f485|commit]], [[https://git.kernel.org/linus/06cc078c078e58402dd42cdffe95872bf4c97c90|commit]], [[https://git.kernel.org/linus/2c945b10d7a6ef923e945ef031e9cfa78671fb3f|commit]], [[https://git.kernel.org/linus/e8cd3e4f2761e9d2c8b023207509aaaf675c9adf|commit]], [[https://git.kernel.org/linus/944b06840a73a23c096b2582b960a0a1e3678d43|commit]], [[https://git.kernel.org/linus/75527d8d9e5ec374b9b0d70c712fec78b4bb693f|commit]], [[https://git.kernel.org/linus/aa5c5edc08c5f92753e9182c6d5f9e8caa2466d9|commit]], [[https://git.kernel.org/linus/2a0b46a988267bcbd50af76e66fc35f83507f6a8|commit]], [[https://git.kernel.org/linus/4af43614186815cc026925aa4f612fb4ebfce02c|commit]], [[https://git.kernel.org/linus/57614c28843d4ec34c12ca67dd11411396aab55d|commit]] * xilinx-selectmap: add new driver [[https://git.kernel.org/linus/4a1f12b5b50dd7d8ad681be701b2b00521c9d201|commit]], [[https://git.kernel.org/linus/edea3ab58f8edd5f72d31f891ab4f34382e97e3a|commit]], [[https://git.kernel.org/linus/4a8fd33517daa6020f10c31f609f9ec8a07775f8|commit]], [[https://git.kernel.org/linus/a52e3a9dba347134ee53ebfe68b7b22548a387b0|commit]] * zynqmp: Enable Bufferless IPIs for Versal based SOCs [[https://git.kernel.org/linus/0ac39d85a7415cb2e68a8d239f3d2f67175a14fe|commit]], [[https://git.kernel.org/linus/41bcf30100c521c73f0fcf05c3dc31967e6408be|commit]], [[https://git.kernel.org/linus/6efb495826a905814e2aaa68dc756694686e864f|commit]] * Support MT8188 SCP core 1 [[https://git.kernel.org/linus/faba7db431294e0684d08a51b1f04cda75473d93|commit]], [[https://git.kernel.org/linus/c08a824945009aefcb4d70705f195ad15fe26e64|commit]], [[https://git.kernel.org/linus/928a55ab1b419ba160e33c1bdee86904f110b638|commit]], [[https://git.kernel.org/linus/91e0d560b9fdd48b4bd62167fce14f4188b6e2fd|commit]] * misc: tps6594-pfsm: Add TI TPS65224 PMIC PFSM [[https://git.kernel.org/linus/91020aecc8136174429d41a6dae3de7cf39f8000|commit]] * remoteproc: zynqmp: Add coredump support [[https://git.kernel.org/linus/fec2601f2003b9e9820ab5057607df7fff61cfaf|commit]] * pmic-arb: Add support for multiple buses [[https://git.kernel.org/linus/02922ccbb330128a5cf70f28e9d06b2eb0594796|commit]], [[https://git.kernel.org/linus/9799873717398e8fa1727482e578b9d777da645e|commit]], [[https://git.kernel.org/linus/345fbbca3f76b7904219c0bf953dd6dc906680dd|commit]], [[https://git.kernel.org/linus/83bfd7a81fc4d287658ddcd9490d7545f7693aa5|commit]], [[https://git.kernel.org/linus/e72efb5d4f0470fbbe310ecd75770e2fdc97682b|commit]], [[https://git.kernel.org/linus/994ac434b7261ac2d89c65c7fa75fa697bfd7054|commit]], [[https://git.kernel.org/linus/8bc03763e15b6783fdf149677d89a84e935aea8c|commit]] * stm class: sys-t: Improve ftrace source handling [[https://git.kernel.org/linus/3c720592908014979873b7611333300641263d2d|commit]] * bus: mhi: host: Add sysfs entry to force device to enter EDL [[https://git.kernel.org/linus/17553ba8e19dee8770b3dcc597d49dcc3418f3b0|commit]] * renesas: rzg2l: Add support for power domains [[https://git.kernel.org/linus/670c672608a1ffcbc7ac0f872734843593bb8b15|commit]], [[https://git.kernel.org/linus/f33dca9ed6f41c8acf2c17c402738deddb7d7c28|commit]], [[https://git.kernel.org/linus/0c8a59b3113ef6184d1e4cf2fb911c641d5172e3|commit]], [[https://git.kernel.org/linus/b6cc692ac67a75b97a2d524d8e2fd2d59b20248a|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/d65e1a0f305ba3e7aabf6261a37bb871790d9f93|s390 updates]] * [[https://git.kernel.org/torvalds/c/6c60000f0b9ae7da630a5715a9ba33042d87e7fd|SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/14a60290edf6d947b9e2210f7a223bcc6af1716a|SoC driver updates]] * [[https://git.kernel.org/torvalds/c/0c2212926dc2ead410031977839af9157a895013|ARM SoC code changes]] * [[https://git.kernel.org/torvalds/c/6d1346f1bcbf2724dee8af013cdab9f7b581435b|SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/736676f5c3abd1fc01c41813a95246e892937f6d|alpha updates]] * [[https://git.kernel.org/torvalds/c/c0b9620bc3f0a0f914996cc6631522d41870a9e0|RCU updates]] * [[https://git.kernel.org/torvalds/c/2e57d1d6062af11420bc329ca004ebe3f3f6f0ee|cmpxchg updates]] * [[https://git.kernel.org/torvalds/c/ee20260136095c8037d8f94f0471eb9f7e3da99f|LKMM documentation updates]] * [[https://git.kernel.org/torvalds/c/c07ea940a011343fdaec12cd74b4ff947ba6f893|kcsan update]] * [[https://git.kernel.org/torvalds/c/cd97950cbcabe662cd8a9fd0a08a247c1ea1fb28|slab updates]] * [[https://git.kernel.org/torvalds/c/c024814828f72b1ae9cc2c338997b2d9826c80f6|trusted keys updates]] * [[https://git.kernel.org/torvalds/c/b19239143e393d4b52b3b9a17c7ac07138f2cfd4|TPM updates]] * [[https://git.kernel.org/torvalds/c/25c73642cc5baea5b91bbb9b1f5fcd93672bfa08|keys updates]] * [[https://git.kernel.org/torvalds/c/8815da98e06a930ce7e6a1ffaf1b1590e79fd94f|documentation updates]] * [[https://git.kernel.org/torvalds/c/c117a437f25db7d88831816cb3a40ee556535ce2|vfs iomap updates]] * [[https://git.kernel.org/torvalds/c/1b0aabcc9a35e729a6c7ce71e725fd63513b35de|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/103fb219cf57fc3641d92af2f4f438080cea3efc|vfs mount API conversions]] * [[https://git.kernel.org/torvalds/c/ef31ea6c2774c015946d2ffa26795766f7caaa42|netfs updates]] * [[https://git.kernel.org/torvalds/c/f4e8d80292859809ea135e9f4c43bae47e4f58bc|vfs rw iterator updates]] * [[https://git.kernel.org/torvalds/c/9961a785944601e32f185ea696347b22ffda634c|io_uring updates]] * [[https://git.kernel.org/torvalds/c/0c9f4ac808b017a0013cee92a30de980550145d5|block updates]] * [[https://git.kernel.org/torvalds/c/1ba58f1ae9b2c07e2b736d187eb25ac8910a7613|seccomp update]] * [[https://git.kernel.org/torvalds/c/92f74f7f4083cb7b1fdab807cbbe4f5ece534fbc|execve updates]] * [[https://git.kernel.org/torvalds/c/87caef42200cd44f8b808ec2f8ac2257f3e0a8c1|hardening updates]] * [[https://git.kernel.org/torvalds/c/84c7d76b5ab6a52e1b3d8101b9f910c128dca396|crypto updates]] * [[https://git.kernel.org/torvalds/c/8f5b5f78113e881cb8570c961b0dc42b218a1b9e|Rust updates]] * [[https://git.kernel.org/torvalds/c/59729c8a76544d9d7651287a5d28c5bf7fc9fccc|chrome platform updates]] * [[https://git.kernel.org/torvalds/c/a7c840ba5fa78d7761b9fedc33d69cef44986d79|chrome platform firmware updates]] * [[https://git.kernel.org/torvalds/c/48fc82c40bc29a80361b1eab0e4a9494628a7144|locking updates]] * [[https://git.kernel.org/torvalds/c/17ca7fc22f4bbc795e4d136449521b2fecb88e06|perf events updates]] * [[https://git.kernel.org/torvalds/c/6e5a0c30b616bfff6926ecca5d88e3d06e6bf79a|scheduler updates]] * [[https://git.kernel.org/torvalds/c/019040fb8144fd24097e8260ec0fe231634bfc81|tip tree documentation update]] * [[https://git.kernel.org/torvalds/c/d791a4da6be46559393b23beab73d2ca20518864|x86 asm updates]] * [[https://git.kernel.org/torvalds/c/9d8e0d52a2a4c4ab87da01cb17f15f1ec6cee826|x86 boot updates]] * [[https://git.kernel.org/torvalds/c/7e3591453de3ce12e0d6d6d4e80ff3bb659e4d70|x86 oops message cleanup]] * [[https://git.kernel.org/torvalds/c/d71ec0ed03ae4318746ad379ab2477e5da853c7d|x86 build updates]] * [[https://git.kernel.org/torvalds/c/c4273a66921219803b70491469c8d248909cd185|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/ecd83bcbed7ad657c80b784eaced84e097e63de7|x86 cpu updates]] * [[https://git.kernel.org/torvalds/c/31a568b54c0f828b8e45b178a8a7f5907084943b|x86 entry cleanup]] * [[https://git.kernel.org/torvalds/c/963795f7583c5bd1a93a041b0dc382505bf82d60|x86 fpu updates]] * [[https://git.kernel.org/torvalds/c/eabb6297abd3115220c8072e463780efc549bc97|x86 mm updates]] * [[https://git.kernel.org/torvalds/c/e76f69b91e1ad11e9df68ba6ca4b4ad2bf39915c|x86 percpu updates]] * [[https://git.kernel.org/torvalds/c/5f487cd8290f3ae742cee18d92f2bb0063dc471c|x86 platform updates]] * [[https://git.kernel.org/torvalds/c/a5131c3fdf2608f1c15f3809e201cf540eb28489|x86 shadow stacks]] * [[https://git.kernel.org/torvalds/c/796aec4a5b5850967af0c42d4e84df2d748d570b|DSA and IAA accelerator mis-alignment fix]] * [[https://git.kernel.org/torvalds/c/eba77c0477312c7b614338b24a8cf533695d1257|EDAC updates]] * [[https://git.kernel.org/torvalds/c/b4864f6565ab57d6418ec469330e320f77eeee95|RAS update]] * [[https://git.kernel.org/torvalds/c/25c7cb05fa61078d99d56fda36bd6d0a1638139d|x86 asm alternatives updates]] * [[https://git.kernel.org/torvalds/c/5186ba33234c9a90833f7c93ce7de80e25fac6f5|x86 resource control updates]] * [[https://git.kernel.org/torvalds/c/a1907ccdfe4a35265f6572e4b8c2da6d1f0a663e|x86 microcode loader updates]] * [[https://git.kernel.org/torvalds/c/964bbdfdf01d9b365809726313da967cb1dafb96|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/61deafa9ecf3f6d00c570774b0b38f439be543ac|x86 APIC update]] * [[https://git.kernel.org/torvalds/c/2d9db778ddca079228ef10e60bceea06b34b0eaa|timers and timekeeping updates]] * [[https://git.kernel.org/torvalds/c/a9d9ce3fbc2761e69c5daeb99156a5d06eb79ae5|x86 timers update]] * [[https://git.kernel.org/torvalds/c/6bfd2d442af5c373042f196eef1915e1f6ac058a|interrupt subsystem updates]] * [[https://git.kernel.org/torvalds/c/9776dd36095be19f5a0ad9f07a4fc221d2a0609a|x86 interrupt handling updates]] * [[https://git.kernel.org/torvalds/c/1338acfe629ddd955fd524fc01e26bca4f1bb22b|m68k updates]] * [[https://git.kernel.org/torvalds/c/103916ffe24969a4c938ccfe89e956fe7d9339fd|arm64 updates]] * [[https://git.kernel.org/torvalds/c/c59cebe8ff779df029d19e5525d4557fd70a769b|sh updates]] * [[https://git.kernel.org/torvalds/c/590103732442b4bb83886f03f2ddd39d129c3289|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/4b768bf062db22e042a731e4c385bb0b4fa21a0e|nolibc updates]] * [[https://git.kernel.org/torvalds/c/896d3fce84e7798520eb11b0e53abdcfb47b21be|kunit updates]] * [[https://git.kernel.org/torvalds/c/4b95dc87362aa57bdd0dcbad109ca5e5ef3cbb6c|kselftest updates]] * [[https://git.kernel.org/torvalds/c/f952b6c863090464c148066df9f46cb3edd603da|thermal control updates]] * [[https://git.kernel.org/torvalds/c/0c181b1d97dc4deaa902da46740e412c0d0bf9fb|power management updates]] * [[https://git.kernel.org/torvalds/c/101b7a97143a018b38b1f7516920a7d7d23d1745|ACPI updates]] * [[https://git.kernel.org/torvalds/c/fffe418b2f97ebf1e65267852169a00c682152a5|regmap updates]] * [[https://git.kernel.org/torvalds/c/07bbfc6aba1efe332d9994b2995c9bea0cd3b25f|regulator updates]] * [[https://git.kernel.org/torvalds/c/e2b4a5bf32ffd0f5964e9949a82232fe5363b123|spi updates]] * [[https://git.kernel.org/torvalds/c/a8cc7eb996f751e20c8c6454601b9184f010aa07|hwmon updates]] * [[https://git.kernel.org/torvalds/c/00fddaf58854717a075f3690c828b61290701e7e|hte/timestamp update]] * [[https://git.kernel.org/torvalds/c/9d81e2d5a9e4befa119e40742a60c366e15d76ce|pwm updates]] * [[https://git.kernel.org/torvalds/c/ce952d8f0e9b58dc6a2bde7e47ca7fa7925583cc|gpio updates]] * [[https://git.kernel.org/torvalds/c/614da38e2f7afe9e01c6e359dfa09285f26fa381|HID updates]] * [[https://git.kernel.org/torvalds/c/1b10b390d945a19747d75b34a6e01035ac7b9155|EFI updates]] * [[https://git.kernel.org/torvalds/c/47e9bff7fc042b28eb4cf375f0cf249ab708fdfa|erofs updates]] * [[https://git.kernel.org/torvalds/c/a3d1f54d7aa4c3be2c6a10768d4ffa1dcb620da9|btrfs updates]] * [[https://git.kernel.org/torvalds/c/6fffab6676853d52cfdbb030365354252a66a20a|dlm updates]] * [[https://git.kernel.org/torvalds/c/9518ae6ec57ada7d6c373588036163bf7aaf1c50|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/eafb55a3ee31ec4f982855bdaa5b692bde2d498f|orangefs update]] * [[https://git.kernel.org/torvalds/c/fc883e7a500fcded49e5d295737c7af6ba9fe7b9|fscrypt update]] * [[https://git.kernel.org/torvalds/c/b47c18232a85ae064ad923de402f0a21d46155e2|fsverity update]] * [[https://git.kernel.org/torvalds/c/b2665fe61d8a51ef70b27e1a830635a72dcc6ad8|ata updates]] * [[https://git.kernel.org/torvalds/c/113d1dd9c8ea2186d56a641a787e2588673c9c32|SCSI updates]] * [[https://git.kernel.org/torvalds/c/4f8b6f25eb1e51febd426da764a0b0ea652ad238|device mapper updates]] * [[https://git.kernel.org/torvalds/c/b850dc206a57ae272c639e31ac202ec0c2f46960|firewire updates]] * [[https://git.kernel.org/torvalds/c/1b294a1f35616977caddaddf3e9d28e576a1adbc|networking updates]] * [[https://git.kernel.org/torvalds/c/4cd4e4b88100a33d96ec4f83bdb0e4e754e24c97|lsm updates]] * [[https://git.kernel.org/torvalds/c/ccae19c6239ae810242d2edc03b02bdcc12fc5ab|selinux updates]] * [[https://git.kernel.org/torvalds/c/353ad6c0839431146fdee3ff16f9dd17a2809ee4|integrity updates]] * [[https://git.kernel.org/torvalds/c/46c6d2b186915176be5acc5d4b6f9793eb32a0c7|asymmetric keys update]] * [[https://git.kernel.org/torvalds/c/db5d28c0bfe566908719bec8e25443aabecbb802|drm updates]] * [[https://git.kernel.org/torvalds/c/d34672777da3ea919e8adb0670ab91ddadf7dea0|fbdev updates]] * [[https://git.kernel.org/torvalds/c/33e02dc69afbd8f1b85a51d74d72f139ba4ca623|sound updates]] * [[https://git.kernel.org/torvalds/c/1ab1bd2f6a5fd876d1980d6ade74ce5f83807baf|smb client updates]] * [[https://git.kernel.org/torvalds/c/a19264d0868dfd65d7222b37ffe41068b53d473a|printk updates]] * [[https://git.kernel.org/torvalds/c/8c06da67d0bd3139a97f301b4aa9c482b9d4f29e|livepatching update]] * [[https://git.kernel.org/torvalds/c/a49468240e89628236b738b5ab9416eae8f90c15|modules updates]] * [[https://git.kernel.org/torvalds/c/c405aa3ea36c1f973a9f10bbcfabc9aeeb38040c|nvdimm updates]] * [[https://git.kernel.org/torvalds/c/2e9250022e9f2c9cde3b98fd26dcad1c2a9aedf3|CXL updates]] * [[https://git.kernel.org/torvalds/c/f4b0c4b508364fde023e4f7b9f23f7e38c663dfe|KVM updates]] * [[https://git.kernel.org/torvalds/c/de6fef50eaf40789b11841474726fd918a3a84a1|cgroup updates]] * [[https://git.kernel.org/torvalds/c/3c999d1ae3c75991902a1a7dad0cb62c2a3008b4|workqueue updates]] * [[https://git.kernel.org/torvalds/c/6fd600d742744dc7ef7fc65ca26daa2b1163158a|media updates]] * [[https://git.kernel.org/torvalds/c/8b35a3bb33b57bc2cb2694a50e49e0ea01b9ff6f|pmdomain updates]] * [[https://git.kernel.org/torvalds/c/8b06f7538a1bb6ad15969114e31be7a99420125b|MMC updates]] * [[https://git.kernel.org/torvalds/c/b426433c03a6eb547515edbe74ebb3a90b9979dd|MTD updates]] * [[https://git.kernel.org/torvalds/c/ea5f6ad9ad9645733b72ab53a98e719b460d36a6|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/4853f1f6ace32c68a04287353e428c4cfc3fa8ed|ARM updates]] * [[https://git.kernel.org/torvalds/c/ff2632d7d08edc11e8bd0629e9fcfebab25c78b4|powerpc updates]] * [[https://git.kernel.org/torvalds/c/7ee332c9f12bc5b380e36919cd7d056592a7073f|parisc updates]] * [[https://git.kernel.org/torvalds/c/06f054b1fee83415fe35204845708988fc16ef22|devicetree updates]] * [[https://git.kernel.org/torvalds/c/91b6163be404e36baea39fc978e4739fd0448ebd|sysctl updates]] * [[https://git.kernel.org/torvalds/c/e9d682518076b38ae76f9fe45ba4fa9e324274f7|bootconfig updates]] * [[https://git.kernel.org/torvalds/c/70a663205d5085f1d82f7058e9419ff7612e9396|probes updates]] * [[https://git.kernel.org/torvalds/c/594d28157f2d55c4f17f2e18c778da098446e594|tracing updates]] * [[https://git.kernel.org/torvalds/c/53683e408013407848bd598da15641b2f0979351|tracing ring buffer updates]] * [[https://git.kernel.org/torvalds/c/fa3889d970da8f95bdd90fb5a07d521810be5678|tracing user-event updates]] * [[https://git.kernel.org/torvalds/c/26aa834ff2eef00a863a64b1a94a5a88a94eb963|tracing tool updates]] * [[https://git.kernel.org/torvalds/c/f08a1e912d3e60bf3028ea1c5199a609d12cd37c|networking fixes]] * [[https://git.kernel.org/torvalds/c/89721e3038d181bacbd6be54354b513fdf1b4f10|more io_uring updates]] * [[https://git.kernel.org/torvalds/c/2fc0e7892c10734c1b7c613ef04836d57d4676d5|landlock updates]] * [[https://git.kernel.org/torvalds/c/f0cd69b8cca6a5096463644d6dacc9f991bfa521|random number generator updates]] * [[https://git.kernel.org/torvalds/c/0cc6f45cecb46cefe89c17ec816dc8cd58a2229a|iommu updates]] * [[https://git.kernel.org/torvalds/c/ff9a79307f89563da6d841da8b7cc4a0afceb0e2|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/619b92b9c8fe5369503ae948ad4e0a9c195c2c4a|clk updates]] * [[https://git.kernel.org/torvalds/c/85d46148f8a07aa80199e52a2755304a27837caa|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/56172ac1024d2cb9194ea42fe76d05c0748863f4|HSI update]] * [[https://git.kernel.org/torvalds/c/25f4874662fb0d43fc1d934dd7802b740ed2ab5f|rdma updates]] * [[https://git.kernel.org/torvalds/c/61ea647ed190af8ed5c5adece2fb5ee33eb3cd22|nfsd updates]] * [[https://git.kernel.org/torvalds/c/7991c92f4cc50b971fcb4d05087e490dc47a6857|ext4 updates]] * [[https://git.kernel.org/torvalds/c/61307b7be41a1f1039d1d1368810a1d92cb97b44|mm updates]] * [[https://git.kernel.org/torvalds/c/fe0d43f23110ec80aea1f94eeb1e6ddab9ef453f|perf event updates]] * [[https://git.kernel.org/torvalds/c/a76056285f5d64740b461d70b062225ba80f0ac2|kgdb updates]] * [[https://git.kernel.org/torvalds/c/a90f1cd105c6c5c246f07ca371d873d35b78c7d9|turbostat updates]] * [[https://git.kernel.org/torvalds/c/16dbfae867cdeb32f3d24cea81193793d5decc61|bcachefs updates]] * [[https://git.kernel.org/torvalds/c/eb6a9339efeb6f3d2b5c86fdf2382cdc293eca2c|non-mm updates]] * [[https://git.kernel.org/torvalds/c/2de68638aa7c0da594d23b1aa025fc5a801c427e|pin control updates]] * [[https://git.kernel.org/torvalds/c/0a07e09085e5cff1c8415ebd2ce9b087cf3acc73|i2c updates]] * [[https://git.kernel.org/torvalds/c/a913d94eef59f6d1d907c3214f12827144bab6a5|watchdog updates]] * [[https://git.kernel.org/torvalds/c/80f9d9023058e156eb09226ac339f56a8411bc8a|dmi updates]] * [[https://git.kernel.org/torvalds/c/6e51b4b5bbc07e52b226017936874715629932d1|MIPS updates]] * [[https://git.kernel.org/torvalds/c/daa121128a2d2ac6006159e2c47676e4fcd21eab|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/5af9d1cf3906171de28f1c395264f29088bdd267|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/bb6b206216f599cd5d4362394c6704a36e14f1ff|isofs, udf, quota, ext2, and reiserfs updates]] * [[https://git.kernel.org/torvalds/c/119d1b8a5d49138b151d3450ceb207dc439f7085|xfs updates]] * [[https://git.kernel.org/torvalds/c/72ece20127a366518d91c5ab8e9dd8bf7d7fdb2f|f2fs updates]] * [[https://git.kernel.org/torvalds/c/30aec6e1bb617e1349d7fa5498898d7d4351d71e|vfio updates]] * [[https://git.kernel.org/torvalds/c/1b036162097060e7e762b601de6517d9f2c7514e|more SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/3eb3c33c1d87029a3832e205eebd59cfb56ba3a4|asm-generic cleanups]] * [[https://git.kernel.org/torvalds/c/8f6a15f095a63a83b096d9b29aaff4f0fbe6f6e6|coccinelle updates]] * [[https://git.kernel.org/torvalds/c/5ad8b6ad9a08abdbc8c57a51a5faaf2ef1afc547|vfs blocksize updates]] * [[https://git.kernel.org/torvalds/c/38da32ee70b876f5b8bea7c4135eff46339c18f2|bdev bd_inode updates]] * [[https://git.kernel.org/torvalds/c/fa8151cabfaa4166feeb6e8a4df428d7c3d9fecd|trusted keys fixes]] * [[https://git.kernel.org/torvalds/c/f0bae243b2bcf2b160ae547463bf542762beef8f|pci updates]] * [[https://git.kernel.org/torvalds/c/e66128fa8e7e38ebd0b0c95578f8020aec6c0dee|rpmsg updates]] * [[https://git.kernel.org/torvalds/c/ab7b884a34ffda718cb93c772f575e45e8241c62|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/34dcc466103e1de5376db85b043bdde19fa0c0ff|mailbox updates]] * [[https://git.kernel.org/torvalds/c/d4e034b4c43f289a4d96144e209f47f453aae4f8|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/8053d2ffc4502bbb50a78c805d964e65a6de1803|generic phy updates]] * [[https://git.kernel.org/torvalds/c/b9dd56e813af002f45f6a494414d4a05dfdaa30e|soundwire updates]] * [[https://git.kernel.org/torvalds/c/334e5639fc4e20752d46552abefc5311351e3bee|m68knommu update]] * [[https://git.kernel.org/torvalds/c/2a8120d7b4827380f30b57788ff92ec5594e2194|more s390 updates]] * [[https://git.kernel.org/torvalds/c/3413efa8885d7a714c54c6752eaf49fd17d351c9|bdev flags update]] * [[https://git.kernel.org/torvalds/c/b6394d6f715919c053c1450ef0d7c5e517b53764|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/4865a27c66fda6a32511ec5492f4bbec437f512d|bitmap updates]] * [[https://git.kernel.org/torvalds/c/29c73fc794c83505066ee6db893b2a83ac5fac63|perf tools updates]] * [[https://git.kernel.org/torvalds/c/4f2d34b65b40937b43c38ba34ece5aa3bc210e0d|fuse updates]] * [[https://git.kernel.org/torvalds/c/0e22bedd758643bc2cc161d54aa181e329da0ab3|overlayfs updates]] * [[https://git.kernel.org/torvalds/c/f33fda22a775d7c6d9b14757f94a535c0698c73a|microblaze updates]] * [[https://git.kernel.org/torvalds/c/4f05e82003d1c20da29fa593420b8d92e2c8d4e6|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/0bfbc914d9433d8ac2763a9ce99ce7721ee5c8e0|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/a85629f435a4e724c414a6ae3e2f327272ab11af|MFD updates]] * [[https://git.kernel.org/torvalds/c/7eae27cd12a2d305ffad41a8e10cff3bb8c0dcb0|backlight updates]] * [[https://git.kernel.org/torvalds/c/f3033eb79136dd27b17e7a192fac0155ceab5eb8|LED updates]] * [[https://git.kernel.org/torvalds/c/89601f675b008ed0fd66c060fb23354a106436bb|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/f6b8e86b7a65495d3947a1d1fc22183c52f786f6|tty / serial updates]] * [[https://git.kernel.org/torvalds/c/be81389c82e2c1ed0997629cb3d910f584666e33|staging driver updates]] * [[https://git.kernel.org/torvalds/c/d90be6e4aaf23cd4a2c202891399cbafe669aaab|driver core updates]] * [[https://git.kernel.org/torvalds/c/5f16eb0549ab502906fb2a10147dad4b9dc185c4|char/misc and other driver subsystem updates]] * [[https://git.kernel.org/torvalds/c/f8a6e48c6c6dc30dbd423a3f4b082df625664730|trivial x86 code generation annoyances]] * [[https://git.kernel.org/torvalds/c/5c6f4d68e2aca67e425b7227369ec9fde8adfb6d|more mm updates]] * [[https://git.kernel.org/torvalds/c/c760b3725e52403dc1b28644fb09c47a83cacea6|more non-mm updates]] * [[https://git.kernel.org/torvalds/c/2ef32ad2241340565c35baf77fc95053c84eeeb0|virtio updates]] * [[https://git.kernel.org/torvalds/c/bca2a25d3be779fbdf912de8e1ded6dcd483845d|sparc updates]] * [[https://git.kernel.org/torvalds/c/d6a326d694e77fd1d90ae40ad3c73a6af0eb1b8d|tracing cleanup]] * [[https://git.kernel.org/torvalds/c/b4d88a60fe0e126b245583c5003584cf6751e536|more block updates]] * [[https://git.kernel.org/torvalds/c/6d69b6c12fce479fde7bc06f686212451688a102|NFS client updates]] * [[https://git.kernel.org/torvalds/c/0eb03c7e8e2a4cc3653eb5eeb2d2001182071215|tracefs/eventfs updates]] * [[https://git.kernel.org/torvalds/c/9ea370f3416ecc4b22d49b24e2c7fdc9c9ba3a0e|input updates]] * [[https://git.kernel.org/torvalds/c/dcb9f48667824399e496113f2374d08e6aa59770|more erofs updates]] * [[https://git.kernel.org/torvalds/c/02c438bbfffeabf8c958108f9cf88cdb1a11a323|more btrfs updates]] * [[https://git.kernel.org/torvalds/c/9351f138d1dcbe504cd829abe590ba7f3387f09c|xen updates]] * [[https://git.kernel.org/torvalds/c/f1f9984fdc5e37303d7180ff7a85dfecb8e57e85|more RISC-V updates]] * [[https://git.kernel.org/torvalds/c/0b32d436c015d5a88b3368405e3d8fe82f195a54|more mm updates]] * [[https://git.kernel.org/torvalds/c/2313022ec5942e3ddd2e4e57002ed71926887f87|UML updates]] * [[https://git.kernel.org/torvalds/c/6951abe8f37b1f4f9a0e7c036873f0ab4f56abf1|jffs2 updates]] * [[https://git.kernel.org/torvalds/c/4286e1fceb8c99f25332dc7e85f9879408caa45a|i3c updates]] * [[https://git.kernel.org/torvalds/c/54f71b0369c9d8dcf23c13ddab2a097115c5f572|RTC updates]] * [[https://git.kernel.org/torvalds/c/89b61ca478dcb66625fb36f3b47ef4e0eae2e461|ntfs3 updates]] * [[https://git.kernel.org/torvalds/c/74eca356f6d4429497a097a8ed4dfa76c441bab9|ceph updates]] * [[https://git.kernel.org/torvalds/c/56676c4c06f19215fbf8b8813c73d63c986270f8|ipmi updates]] = Other news sites = * LWN's merge window [[https://lwn.net/Articles/973687/|part 1]], [[https://lwn.net/Articles/974869/|part 2]] * Phoronix's [[https://www.phoronix.com/review/linux-610-features|Linux 6.10 feature overview]]