#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description Summary of the changes and new features merged in the Linux kernel during the 6.17 development cycle Linux 6.17 [[https://lore.kernel.org/all/CAHk-=wiX38oG6=xFBNLO0pnjqHfxzjd6-1kZ5Nv9HfqNC2PoFA@mail.gmail.com/|was released]] on Sunday, 28 September 2025. Summary: This release includes an easier way to select CPU bug mitigations, based on chosen attack vectors that will be updated as new CPU bugs are discovered. It also adds new file_getattr/file_setattr system calls for setting extended file attributes with openat(2) semantics, better and more secure core dumping, initial priority inheritance support for solving priority inversion, unconditionally compilation of the task scheduler with SMP support, per NUMA node proactive reclaim for better control of memory reclaim on NUMA systems, a new fallocate(2) flag for more efficient writing of zeroes, and support for linear temporal logic monitors in the runtime verification. As always, there are many other features, new drivers, improvements and fixes. You might be interested in the list of changes done by LWN: [[https://lwn.net/Articles/1031713/|part 1]], [[https://lwn.net/Articles/1032095/|part 2]]. <> = Prominent features = == Easier CPU bug mitigation selection == This release proposes new kernel command line options to make it easier to control which CPU mitigations are applied. These options select relevant mitigations based on chosen attack vectors. Administrators are encouraged to consider which attack vectors are relevant and disable all others in order to recoup system performance. When new relevant CPU vulnerabilities are found, they will be added to these attack vector controls so administrators will likely not need to reconfigure their command line parameters as mitigations will continue to be correctly applied based on the chosen attack vector controls. * Documentation: [[https://docs.kernel.org/next/admin-guide/hw-vuln/attack_vector_controls.html|Attack Vector Controls]] * Recommended LWN article: [[https://lwn.net/Articles/1013640/|Better CPU vulnerability mitigation configuration]] == New file_getattr/file_setattr system calls == This release include two new syscalls {{{file_getattr()}}} and {{{file_setattr()}}}, which can be used to set extended file attributes. They take dir fd in conjunction with a pathname argument. The syscall then operates on inode opened according to openat(2) semantics. This is an alternative to {{{FS_IOC_FSGETXATTR/FS_IOC_FSSETXATTR}}}ioctl with a difference that file don't need to be open as file can be referenced with a path instead of fd. By having this one can manipulated filesystem inode attributes not only on regular files but also on special ones. == Better and more secure core dumping == This release continues building on top of [[https://kernelnewbies.org/Linux_6.16#Add_support_for_sending_coredumps_over_an_AF_UNIX_socket|features incorporated in past release]], and extends the coredump socket to allow the coredump server to tell the kernel how to process individual coredumps, which allows for fine-grained coredump management. This scheme allows for safer core dumping. * Recommended LWN article: [[https://lwn.net/Articles/1024160/|Slowing the flow of core-dump-related CVEs]] == Initial priority inheritance support for solving priority inversion == A common way to solve the problem of [[https://en.wikipedia.org/wiki/Priority_inversion||priority inversion]] is priority inheritance: a lower priority task will inherit the priority of a higher-priority task when they are competing for a shared resourced (lock). This release adds an initial version of proxy execution: a mechanism for mutex-owning tasks to inherit the scheduling context of higher priority waiters. Currently limited to a single runqueue and conditional on {{{CONFIG_EXPERT}}}, and other limitations. * Recommended LWN article: [[https://lwn.net/Articles/1030842/|A proxy-execution baby step]] == Unconditionally compile task scheduler with SMP support == This is not a feature, but rather an interesting change that shows where the world is heading. In this release, the task scheduler has removed code that is specific for single-processor systems, leaving only the multiprocessor code available. This does not mean that you cannot run Linux on a single-processor system. Rather, it means that the code paths that were specific for those systems have been removed, and from now on, the multiprocessor-specific code will handle these systems, by detecting only one processor. The consequence of this change is simplification and removal of many lines of code and `#ifdef` code in the task scheduler. * Recommended LWN article: [[https://lwn.net/Articles/1023575/|An end to uniprocessor configurations]] == Per NUMA node proactive reclaim, for better control of memory reclaim on NUMA systems == This release adds support for allowing proactive reclaim in general on a NUMA system. per-node interface extends support for beyond a memcg-specific interface, respecting the current semantics of {{{memory.reclaim}}}: respecting aging LRU and not supporting artificially triggering eviction on nodes belonging to non-bottom tiers. This allows userspace to do {{{echo 512M swappiness=10 > /sys/devices/system/node/nodeX/reclaim}}} == Introduce a new fallocate(2) flag, for more efficient writing of zeroes == Currently, userspace can use {{{fallocate(2)}}} to quickly create a pre-allocated file. However, on most filesystems, such as ext4 and XFS, this creates pre-allocation blocks in an unwritten state, and the {{{FALLOC_FL_ZERO_RANGE}}} flag also behaves similarly. The extent state must be converted to a written state when the user writes data into this range later, which can trigger numerous metadata changes and consequent journal I/O. We need a method to create a pre-allocated file with written extents that can be used for pure overwriting. At the moment, the only method available is to create an empty file and write zero data into it, which is slow and consumes a considerable amount of disk bandwidth Fortunately, with the development and more and more widely used of flash-based storage devices, we can efficiently write zeros to SSDs using the unmap write zeroes command if the devices do not write physical zeroes to the media. For example, if SCSI SSDs support the UMMAP bit or NVMe SSDs support the DEAC bit, the write zeroes command does not write actual data to the device, instead, NVMe converts the zeroed range to a deallocated state, which works fast and consumes almost no disk write bandwidth. This release introduce a new flag {{{FALLOC_FL_WRITE_ZEROES}}}, into {{{fallocate(2)}}} to use it. == Runtime Verification: Support for Linear temporal logic monitors == (See [[https://docs.kernel.org/trace/rv/runtime-verification.html|this documentation]] for more details on what Runtime Verification is) Real-time applications may have design flaws causing them to have unexpected latency. For example, the applications may raise page faults, or may be blocked trying to take a mutex without priority inheritance. However, while attempting to implement DA monitors for these real-time rules, deterministic automaton is found to be inappropriate as the specification language. The automaton is complicated, hard to understand, and error-prone. For these cases, linear temporal logic is found to be more suitable, concise and intuitive. This release adds support for expressing * Documentation: [[https://docs.kernel.org/trace/rv/monitor_rtapp.html|Real-time application monitors]] * Recommended LWN article: [[https://lwn.net/Articles/1030685/|Extending run-time verification for the kernel]] = Core (various) = * (FEATURED) Introduce file_getattr and file_setattr syscalls [[https://lore.kernel.org/linux-api/20250630-xattrat-syscall-v6-0-c4e3bc35227b@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/2f952c9e8fe13c6ee15c05189f1f87c1a70b866c|commit]], [[https://git.kernel.org/linus/defdd02d783c6fa22d0005bdc238ccd9174faf20|commit]], [[https://git.kernel.org/linus/bd14e462bb52f5bbfc56f10f758f617c05dbd63c|commit]], [[https://git.kernel.org/linus/276e136bff7edcdecc6e206c81594ef06aa40743|commit]], [[https://git.kernel.org/linus/be7efb2d20d67f334a7de2aef77ae6c69367e646|commit]] * coredump: extend the coredump socket to allow the coredump server to tell the kernel how to process individual coredumps. This allows for fine-grained coredump management. Userspace can decide to just let the kernel write out the coredump, or generate the coredump itself, or just reject it [[https://git.kernel.org/linus/fb4366ba8f1c86a72ffcb2b6f349e05cf77897d0|commit]], [[https://git.kernel.org/linus/a5715af549b2ee0139ff965d337cfd1a5f7ee615|commit]], [[https://git.kernel.org/linus/67c3a0b0ad1a78d7ee9c3aadaed22561f7f85466|commit]], [[https://git.kernel.org/linus/3a2c977c463c68bf6fcd0138d15efa5f3adc743c|commit]], [[https://git.kernel.org/linus/0da3e3822cfabf062945e449f91ea3ca529eeaa4|commit]], [[https://git.kernel.org/linus/edfe3bdbbb52339cd8c2366402f2702c5ebc15c7|commit]], [[https://git.kernel.org/linus/6dfc06d328b70af22c577bb908c97f8841b9f4fc|commit]], [[https://git.kernel.org/linus/8a25350fa430a28d0595a6d14af661d4f151b123|commit]], [[https://git.kernel.org/linus/70e3ee31282d293c794fb5bbec8efe495c32044b|commit]], [[https://git.kernel.org/linus/7bbb05dbea38e56d9f6ac7ac1040f93b0808cbce|commit]], [[https://git.kernel.org/linus/a961c737cda8f172e108da881691cadafb9a061e|commit]], [[https://git.kernel.org/linus/4f599219f71399ac2092d2e06b2cc38e50c45c53|commit]], [[https://git.kernel.org/linus/9f29a347d7b1b2022dfc6e5a93d4f2a7b34f5d4d|commit]], [[https://git.kernel.org/linus/5153053692987035a82bb4a6714ea12a5bd2bfdc|commit]], [[https://git.kernel.org/linus/d6527db34d08d7d411c377a25c05fff30eeba9ea|commit]], [[https://git.kernel.org/linus/3a4db72d0368c5f618e18a12580d5c5dca7b2839|commit]], [[https://git.kernel.org/linus/4a9f5d7fb6649af534c36aa8cc9c1aa51b172ad9|commit]], [[https://git.kernel.org/linus/8434fac512d35597488b13e23cc85e2903f5c8ae|commit]], [[https://git.kernel.org/linus/377d7860c960ac8e672881bc50353d867e2f94a4|commit]], [[https://git.kernel.org/linus/7a568fcdad7c75a1ee196921cf651de607c2c5d5|commit]], [[https://git.kernel.org/linus/cfd6c12293d7cc257f27770399a3d8f11bf7d25c|commit]], [[https://git.kernel.org/linus/ae20958b37acf82da4928910ca6351719b5ddba7|commit]], [[https://git.kernel.org/linus/19272b37aa4f83ca52bdf9c16d5d81bdd1354494|commit]], [[https://git.kernel.org/linus/12b5b138d111db0588492002fdd8089af61b80e5|commit]], [[https://git.kernel.org/linus/994dc26302ed744960ad74932eb206b49c0ebb44|commit]], [[https://git.kernel.org/linus/474dd09d22df1d3bae9211078185aab9b6f1635e|commit]], [[https://git.kernel.org/linus/be227ba8215f08aaeb9bfc3ce5f1db8763e7b490|commit]], [[https://git.kernel.org/linus/59cd658eaf404e3634624b25afc3233066bea34c|commit]], [[https://git.kernel.org/linus/c8e7ce2aa11c1beb06ba7ccceb31396fd8d7464f|commit]], [[https://git.kernel.org/linus/e04f97c8be29523bae2576fceee84a4b030406fb|commit]] * Refactor write_begin/write_end (allows adding Ext4 IOCB_DONTCACHE support [[https://lore.kernel.org/linux-fsdevel/20250716093559.217344-1-chentaotao@didiglobal.com/T/|(cover)]], [[https://git.kernel.org/linus/e7b840fd4956da86e93a8258155cf3e127f509e7|commit]], [[https://git.kernel.org/linus/048832a3f4003113c3a0f060b08376c103622099|commit]], [[https://git.kernel.org/linus/e9d8e2bf23206825ca9b4d3caf587945ba807939|commit]], [[https://git.kernel.org/linus/b799474b9aeb46ec698874d4de1a799de8b5f64f|commit]] * (FEATURED) fallocate: Introduce {{{FALLOC_FL_WRITE_ZEROES}}} flag. Filesystems that support this operation should allocate written extents and issue zeroes to the specified range of the device. [[https://lore.kernel.org/linux-fsdevel/20250619111806.3546162-1-yi.zhang@huaweicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/0c40d7cb5ef3af260e8c7f88e0e5d7ae15d6ce57|commit]], [[https://git.kernel.org/linus/545fb46e5bc6ffaa303181bd3878db506a0f0fa6|commit]], [[https://git.kernel.org/linus/50634366de8629fdb96c5dd7ea595f9b61835dfc|commit]], [[https://git.kernel.org/linus/6dffe079fe363ca976d26fe7e8f0b3e84b4c796f|commit]], [[https://git.kernel.org/linus/2c46eab8da6ade4ef2ac62b045b2203f18b0d745|commit]], [[https://git.kernel.org/linus/7bd43cc79cab3850f34da0a31d5b042b701590ef|commit]], [[https://git.kernel.org/linus/562108d56bd9b93bec64fe9333a805b129c13001|commit]], [[https://git.kernel.org/linus/912b6038fe5c985fac06285f8019fd74cab67e81|commit]], [[https://git.kernel.org/linus/f4265b8d32c49ff95711e6fef7d05245a2905b30|commit]] * Crashkernel reservation from cma [[https://lore.kernel.org/linux-kernel/aEqnxxfLZMllMC8I@dwarf.suse.cz/T/|(cover)]], [[https://git.kernel.org/linus/35c18f2933c596b4fd6a98baee36f3137d133a5f|commit]], [[https://git.kernel.org/linus/ab475510e0422bb5672d465f9d0f523d72fdb7f1|commit]], [[https://git.kernel.org/linus/ce1bf19a34dfa1f418037cebe11f5d2c7adf9d1e|commit]], [[https://git.kernel.org/linus/e1280f3071f11abc1bacd84937ecf077dce449f3|commit]], [[https://git.kernel.org/linus/bf8be1c3610829056e5445282ca92ca7b7a4ba7b|commit]] * sleep: add kernel parameter to disable asynchronous suspend/resume [[https://git.kernel.org/linus/f747cde5e71b1701a107c3a2e223e5b4a6cb4c52|commit]] * Allow reaped pidfds receive in scm_pidfd [[https://lore.kernel.org/linux-kernel/20250703222314.309967-1-aleksandr.mikhalitsyn@canonical.com/T/|(cover)]], [[https://git.kernel.org/linus/9bedee7cdf4cb7f9a4928f10567b326eaab8125d|commit]], [[https://git.kernel.org/linus/ee47976264cd499426c89328827970ffb6acd406|commit]], [[https://git.kernel.org/linus/30580dc96a3e6e146006e811ad1d01ef8a82a509|commit]], [[https://git.kernel.org/linus/2b9996417e4ec231c91818f9ea8107ae62ef75ad|commit]], [[https://git.kernel.org/linus/2775832f71e53a294c93fa4b343a71787a87e5d3|commit]], [[https://git.kernel.org/linus/c679d17d3f2d895b34e660673141ad250889831f|commit]], [[https://git.kernel.org/linus/861bdc6314a49520d9b3778b763461517c1321c0|commit]] * binfmt_elf: Remove the 4k limitation of program header size [[https://git.kernel.org/linus/8030790477e839b94a10032c490132e47926cb02|commit]] * Add compatibility option for content of /proc/cgroups [[https://git.kernel.org/linus/646faf36d7271c597497ca547a59912fcab49be9|commit]] * cgroup: nmi safe css_rstat_updated [[https://lore.kernel.org/bpf/20250617195725.1191132-1-shakeel.butt@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/1257b8786ac689a2ce5fe3e1741c65038035adc6|commit]], [[https://git.kernel.org/linus/36df6e3dbd7e7b074e55fec080012184e2fa3a46|commit]], [[https://git.kernel.org/linus/6af89c6ca71742e9227e6f8172a86ce1ee16aa85|commit]], [[https://git.kernel.org/linus/8dcb0ed834a3ec037c153c7757240ede9a8c9808|commit]] * handle, pidfs: allow open_by_handle_at() purely based on file handle [[https://lore.kernel.org/linux-fsdevel/20250624-work-pidfs-fhandle-v2-0-d02a04858fe3@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/cc678bf7aa9e2e6c2356fd7f955513c1bd7d4c97|commit]], [[https://git.kernel.org/linus/774adcb55f159167fe0dfd343174fdedba3ae2f4|commit]], [[https://git.kernel.org/linus/f7be8a333253cc319f5c6456b5cdab2a57b7351b|commit]], [[https://git.kernel.org/linus/a0d8051cfd8145eb49dbd0c0c2f174d09da77796|commit]], [[https://git.kernel.org/linus/1c5484395f9f8b7bf0702f34aa3406353e45d7ec|commit]], [[https://git.kernel.org/linus/a4c746f06853f91d3759ae8aca514d135b6aa56d|commit]], [[https://git.kernel.org/linus/cd5d2006327b6d8488612cb8c03ad7304417c8f2|commit]], [[https://git.kernel.org/linus/b95361481b1e5bd3627835b7e4b921d5a09e68a4|commit]], [[https://git.kernel.org/linus/914e6b1e85c5715ca2e7ec6293c05c71e9a98e86|commit]] * More fsnotify hook optimizations [[https://lore.kernel.org/linux-fsdevel/20250708143641.418603-1-amir73il@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/08da98e1b2f76cdbacf84b9affaa75960dbce515|commit]], [[https://git.kernel.org/linus/0d4c4d4ea443babab6ec1a79f481260963fc969a|commit]] * futex: Use RCU-based per-CPU reference counting [[https://lore.kernel.org/linux-kernel/20250710110011.384614-1-bigeasy@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/a255b78d14324f8a4a49f88e983b9f00818d1194|commit]], [[https://git.kernel.org/linus/56180dd20c19e5b0fa34822997a9ac66b517e7b3|commit]], [[https://git.kernel.org/linus/fb3c553da7fa9991f9b1436d91dbb78c7477c86a|commit]], [[https://git.kernel.org/linus/760e6f7befbab9a84c54457a8ee45313b7b91ee5|commit]], [[https://git.kernel.org/linus/16adc7f136dc143fdaa0d465172d7a1e6d5ae3c5|commit]], [[https://git.kernel.org/linus/7497e947bc1d3f761b46c2105c8ae37af98add54|commit]] * io_uring * cmd for tx timestamps [[https://lore.kernel.org/io-uring/cover.1750065793.git.asml.silence@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/2410251cde0bac9f660f276307d6c967466eef0c|commit]], [[https://git.kernel.org/linus/162151889267089bb920609830c35f9272087c3f|commit]], [[https://git.kernel.org/linus/b95575495948a81ac9b0110aa721ea061dd850d9|commit]], [[https://git.kernel.org/linus/ac479eac22e81c0ff56c6bdb93fad787015149cc|commit]], [[https://git.kernel.org/linus/9e4ed359b8efad0e8ad4510d8ad22bf0b060526a|commit]] * mock: add basic infra for test mock files [[https://lore.kernel.org/io-uring/cover.1750599274.git.asml.silence@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/3a0ae385f69e9b2d87c9b017c4ffb5567c015197|commit]], [[https://git.kernel.org/linus/4aac001f780388b252534396feaf49b250eae27f|commit]], [[https://git.kernel.org/linus/d1aa0346571436203a24cc3fc0c80f14cabbd630|commit]], [[https://git.kernel.org/linus/2f71d2386f4feed5bfb9ee7b3d2c0ad953db1fa5|commit]], [[https://git.kernel.org/linus/0c98a44329c10bf904434524425cb42043513bd6|commit]], [[https://git.kernel.org/linus/e448d578264a9512d38deb8c418954d5f3e20712|commit]] * net: Allow to do vectorized send [[https://git.kernel.org/linus/6f02527729bd31ca4e473bff19fda4ccd5889148|commit]] * Add cap for multishot recv receive size [[https://git.kernel.org/linus/e227c8cdb47b586ebf20b6b4caca0a30bb7e6b68|commit]], [[https://git.kernel.org/linus/3919b695932dd1990b5c7fd44fc52361f8e2ac5f|commit]], [[https://git.kernel.org/linus/6a8afb9fff6478e7944794f089181e93df1c728a|commit]] * nop: add {{{IORING_NOP_TW}}} completion flag [[https://git.kernel.org/linus/cb9ccfb404e700dc0db59d68242d79fe386bb3f0|commit]] * uring_cmd copy avoidance [[https://git.kernel.org/linus/4d811e395bbe54ba2febb3940d4b6c4741f360a6|commit]], [[https://git.kernel.org/linus/af19388a973877b2349df46c4487a789cd3148ed|commit]], [[https://git.kernel.org/linus/ead21053bf34941c7c7bf680d29b8d15af5406de|commit]], [[https://git.kernel.org/linus/ecf47d452ced9be162831192fcfb3e9f5cdcde7f|commit]] * net: Support multishot receive len cap [[https://git.kernel.org/linus/0ebc9a7ecf6acecf8bdf3a3cb02b6073df4a2288|commit]] * pidfs: persistent info & xattrs [[https://lore.kernel.org/linux-fsdevel/20250618-work-pidfs-persistent-v2-0-98f3456fd552@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/1a1ad73aa1a66787f05f7f10f686b74bab77be72|commit]], [[https://git.kernel.org/linus/bda3f1608d993419fa247dc11263fc931ceca58a|commit]], [[https://git.kernel.org/linus/bda3f1608d993419fa247dc11263fc931ceca58a|commit]], [[https://git.kernel.org/linus/75215c972581d3934e76a57690cf838d7ceab399|commit]], [[https://git.kernel.org/linus/8ec7c826d97b390879df2a03dfb035c70af86779|commit]], [[https://git.kernel.org/linus/5ee83f8d1af4d069475eabd9a5ed551b3d2cf9a8|commit]], [[https://git.kernel.org/linus/0f93d71b9d17a8b3fcb38b5e66ac5bd94f56a8de|commit]], [[https://git.kernel.org/linus/804d6794497e6f3992d156e07d01e22b037ce09e|commit]], [[https://git.kernel.org/linus/d718249bbac664c24a34ed472d627381d4505e00|commit]], [[https://git.kernel.org/linus/c007d95221397eda24e7d6b4ac5a5d699ea2f1ca|commit]], [[https://git.kernel.org/linus/f769b3db24fa9ef48abcb515c50de1abeeaa0281|commit]], [[https://git.kernel.org/linus/91d837cae3c7856cdca23dc6e8ec8954d887e970|commit]], [[https://git.kernel.org/linus/49fba3725910c54878212ca08b968b9e1285866c|commit]], [[https://git.kernel.org/linus/49fba3725910c54878212ca08b968b9e1285866c|commit]], [[https://git.kernel.org/linus/8c2ab04135682d0f5b1eb1c74ac5f328b65015ea|commit]], [[https://git.kernel.org/linus/f9fac1f48c20a29f2c39c9a9b96d539ad1636824|commit]] * rtla/timerlat: Support actions on threshold and on end [[https://lore.kernel.org/linux-trace-kernel/20250626123405.1496931-1-tglozar@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/8b6cbcac76af2e6e8ac0330a4aab342d08ca7a5d|commit]], [[https://git.kernel.org/linus/6ea082b171e00bb68b749426f03d9d7e833e9f51|commit]], [[https://git.kernel.org/linus/3b78670e3a932c654dedf88807e70e19719cb0cb|commit]], [[https://git.kernel.org/linus/8d933d5c89e80a818019fa5e0c060387bd145216|commit]], [[https://git.kernel.org/linus/3aadb65db5d656b003232e92d9d18de4e5161416|commit]], [[https://git.kernel.org/linus/916a9c5b03a7694a7eae5420fbf2fd763395ff14|commit]], [[https://git.kernel.org/linus/4e26f84abfbbfa88a66f8a3b7e5ea9e494d3caf3|commit]], [[https://git.kernel.org/linus/04f837165b9480d6d6d8b00bbc1298762f3f0e4d|commit]], [[https://git.kernel.org/linus/70165c78e31d84b4712cc535b1e0fa1674f1dab3|commit]] * rust * Add bug/warn abstractions [[https://lore.kernel.org/linux-kernel/20250502094537.231725-1-fujita.tomonori@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/8c8efa93db68bb9fbdb46b93d5b66ff18bdf3d18|commit]], [[https://git.kernel.org/linus/8ad470d4e3dcd3db95d8bda6d35909a2ce897ca7|commit]], [[https://git.kernel.org/linus/826230970a44a50227d4884835ea8a0f8825fe03|commit]], [[https://git.kernel.org/linus/dff64b072708ffef23c117fa1ee1ea59eb417807|commit]] * Add acpi match table support for rust drivers [[https://lore.kernel.org/devicetree/20250620150914.276272-1-igor.korotin.linux@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/56a789f776f24e6b132ec00d4c27672ed4e2ec57|commit]], [[https://git.kernel.org/linus/c69072d3a10976e48da97758a78c35305c24eeba|commit]], [[https://git.kernel.org/linus/9da36b9faed26f634c9f04a0f2cf7625c08f5d65|commit]], [[https://git.kernel.org/linus/a74931eb59cf6b914e1b9471d9abd4429176f6af|commit]], [[https://git.kernel.org/linus/0f549d25858dfef9decd0b99a82ff4bc9095a51f|commit]], [[https://git.kernel.org/linus/7a5cb145a9ce844be41ca5ed26e7d8d7c41dec7d|commit]], [[https://git.kernel.org/linus/ec3ef2175e16360605c7e1b409ceaa77be6521a8|commit]], [[https://git.kernel.org/linus/8411e6f06a022679a642c236724944057b90e60e|commit]], [[https://git.kernel.org/linus/140a9d0437b2a0d82e05b33973d9fc42c1d1c2ea|commit]] * bits: add support for bits/genmask macros [[https://git.kernel.org/linus/cc84ef3b88f407e8bd5a5f7b6906d1e69851c856|commit]] * More rust bindings for device property reads [[https://lore.kernel.org/linux-kernel/20250611102908.212514-1-remo@buenzli.dev/T/|(cover)]], [[https://git.kernel.org/linus/a2801affa7103862d549050401a9f53b3365fca4|commit]], [[https://git.kernel.org/linus/658f23b59251e15cc9263cfe5157d5757a293017|commit]], [[https://git.kernel.org/linus/d3393e845038f5fd32c24b841bb4b6026aa1cf4b|commit]], [[https://git.kernel.org/linus/ecea2459818383c2886ec1cff81cce7e70d99893|commit]], [[https://git.kernel.org/linus/9bd791d9413b4b65e203c4ff84c8b8b2c8c3b770|commit]], [[https://git.kernel.org/linus/2db611374cef12bd793b72d5728f0ecd1affeb17|commit]], [[https://git.kernel.org/linus/c942dba38064cd35214c6b3249120f3f2945e810|commit]], [[https://git.kernel.org/linus/c3e05bd15e0c99f3ff45e0b1f01814778bc1128c|commit]], [[https://git.kernel.org/linus/2a1ea59de83bf367215e2a4dd9bf8bbd061349b3|commit]] * platform: add Io support [[https://lore.kernel.org/linux-kernel/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/493fc33ec25294cb2e444dfa77c105aa774c83f2|commit]], [[https://git.kernel.org/linus/1d0d4b28513b5e0e9e87e09c8da289e1b8d88f84|commit]], [[https://git.kernel.org/linus/bc4f9045a59963abb142f6a648195ccd73ec39dd|commit]] * A few common borrow/borrowmut implementations [[https://lore.kernel.org/rust-for-linux/20250616-borrow_impls-v4-0-36f9beb3fe6a@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/c09a8ac1cd560c8f944611045841fed99790116b|commit]], [[https://git.kernel.org/linus/2009a2d5696944d85c34d75e691a6f3884e787c0|commit]], [[https://git.kernel.org/linus/f86c0036c7de5fc379115809c653dfd57c453330|commit]] * time: Convert hrtimer to use Instant and Delta [[https://lore.kernel.org/linux-kernel/20250610132823.3457263-1-fujita.tomonori@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ced9ccd21fbc8ca941e6a0c2820c2df89239ccb9|commit]], [[https://git.kernel.org/linus/d9fc00dc73542eef98db74085447c57174ca290d|commit]], [[https://git.kernel.org/linus/e0c0ab04f6785abaa71b9b8dc252cb1a2072c225|commit]], [[https://git.kernel.org/linus/69f66cf45814f45a161688fd087abe21e6d5afbd|commit]] * uaccess: add strncpy_from_user [[https://git.kernel.org/linus/8da881d39c1b7fd4a211587ba40f1c936909a11a|commit]] * sched * (FEATURED) Make SMP unconditional [[https://lore.kernel.org/lkml/20250528080924.2273858-1-mingo@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/69ab14ee525649a875ca187cad2f05a2bec1ac3c|commit]], [[https://git.kernel.org/linus/bbb1b274e85b739ade5f9bc060a8c4fa00388e29|commit]], [[https://git.kernel.org/linus/b7ebb758568b60ae816b0c21df70a67eecb84a71|commit]], [[https://git.kernel.org/linus/8bb9b0c5aeb9594bc1039e38d15b14d2a055cf3a|commit]], [[https://git.kernel.org/linus/79af17344c2728c58e254219ff47840c67211cd9|commit]], [[https://git.kernel.org/linus/4aec8669ff3c7ea7ab62c10bb6442c70c0d1b1eb|commit]], [[https://git.kernel.org/linus/c503c3dc2d49dbca2cec531ca8f1b8e9143c5087|commit]], [[https://git.kernel.org/linus/29dd6f8cd285360cc5a3e1dc696a960541020705|commit]], [[https://git.kernel.org/linus/416d5f78e4d3b010734248cb0aad9dc54b7589fa|commit]], [[https://git.kernel.org/linus/833840a94f4dfd86ed32f1b6222fe8d9ba1790a9|commit]], [[https://git.kernel.org/linus/c215dff7f80caab4a25160f0ded369eba5cb9190|commit]], [[https://git.kernel.org/linus/311bb3f7b78e944e831ffb07cb58455b47bf2269|commit]], [[https://git.kernel.org/linus/fd3db705f7496c5d6b56ce8d78570dd1da11cd30|commit]], [[https://git.kernel.org/linus/3eca109a7885903f1bf07099ae89025069017cc0|commit]], [[https://git.kernel.org/linus/fdccd0c79280da0a332f1370d2ad17192d563c95|commit]], [[https://git.kernel.org/linus/91433cd6e46828044a64520dd1dce817be41940e|commit]], [[https://git.kernel.org/linus/23d27e2cfbee69d85b867a427c3021234bcf09ab|commit]], [[https://git.kernel.org/linus/f1c6b957f7f4091d822b93ca2833e83bf728e001|commit]], [[https://git.kernel.org/linus/5202c25dd17c54cd4c21f266d9a51b644d7cd682|commit]], [[https://git.kernel.org/linus/cac5cefbade90ff0bb0b393d301fa3b5234cf056|commit]], [[https://git.kernel.org/linus/06ddd17521bf11a3e7f59dafdf5c148f29467d2c|commit]], [[https://git.kernel.org/linus/a1416303d108befb4e2b62c863ae1defe4eb1ba3|commit]], [[https://git.kernel.org/linus/d0a0a055a58617ac8dd9418f08346e94310f1096|commit]], [[https://git.kernel.org/linus/8039addbe5a56e4108b1bea57aa5b3f70750fed9|commit]], [[https://git.kernel.org/linus/588467616c88b12657f6ebe7306d830c272fe054|commit]], [[https://git.kernel.org/linus/1f25730e5a780b33f78e3ea23e64d3f75e0b2042|commit]], [[https://git.kernel.org/linus/74063c1755ca990440a9c61c91bb7a873a40deeb|commit]], [[https://git.kernel.org/linus/15125a229abc2404a264ce493e64a9ffa7850f6e|commit]], [[https://git.kernel.org/linus/6324dce8f6262ec2049494af311e5418bc733341|commit]], [[https://git.kernel.org/linus/02fb885ebdc4ad029aabff4b85dcbc540d7cdb32|commit]], [[https://git.kernel.org/linus/9d9af2372f2a46242fd5e827973235f40f31a706|commit]], [[https://git.kernel.org/linus/8a9246ddc16c0feaa3b09ca9d2e30fbfa88d09de|commit]], [[https://git.kernel.org/linus/6c8d251621c131274fa05b46fc138f296b00f6e4|commit]], [[https://git.kernel.org/linus/482c4dae75cbe3a3bc7109d6c2346e400facbea8|commit]], [[https://git.kernel.org/linus/caf5bde9c542f0cbdf2c91db7ea9743e33941d91|commit]], [[https://git.kernel.org/linus/172408811961d7facbd1ec9af66893b058d5d542|commit]], [[https://git.kernel.org/linus/9fd5da7989ba6175fe71439738ddcf4c030d3d51|commit]], [[https://git.kernel.org/linus/703b8e8545c7ca88002164d6c119c49e8ee9b137|commit]], [[https://git.kernel.org/linus/ea100b31eed459ea32d6df4489cf70219fd83a07|commit]], [[https://git.kernel.org/linus/0203244600b2f48c7074a9d439789d8d1152d3e1|commit]], [[https://git.kernel.org/linus/241c307b05b00478bbb65bf440ece464aeac9208|commit]], [[https://git.kernel.org/linus/fc75ac3c918d512952f7c132ef635cedfc4900a6|commit]], [[https://git.kernel.org/linus/dabe1be4e84c05db9341eb8c6c410e18a5ffeaa5|commit]] * fair: Manage lag and run to parity with different slices [[https://lore.kernel.org/lkml/20250708165630.1948751-1-vincent.guittot@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/9cdb4fe20cd239c848b5c3f5753d83a9443ba329|commit]], [[https://git.kernel.org/linus/74eec63661d46a7153d04c2e0249eeb76cc76d44|commit]], [[https://git.kernel.org/linus/9de74a9850b9468ac2f515bfbe0844e0bfae869d|commit]], [[https://git.kernel.org/linus/052c3d87c82ea4ee83232b747512847b4e8c9976|commit]], [[https://git.kernel.org/linus/3a0baa8e6c570c252999cb651398a88f8f990b4a|commit]], [[https://git.kernel.org/linus/0b9ca2dcabc3c8816a6ee75599cab7bef3330609|commit]] * (FEATURED) Single "RunQueue Proxy Execution [[https://lore.kernel.org/linux-kernel/20250712033407.2383110-1-jstultz@google.com/T/|(cover)]], [[https://git.kernel.org/linus/25c411fce735dda29de26f58d3fce52d4824380c|commit]], [[https://git.kernel.org/linus/44e4e0297c3c01987399bb9973f4d22a096a62c2|commit]], [[https://git.kernel.org/linus/a4f0b6fef4b08e9928449206390133e48ac185a7|commit]], [[https://git.kernel.org/linus/865d8cfb1672089e4b628d6899ac5c6e49787150|commit]], [[https://git.kernel.org/linus/aa4f74dfd42ba4399f785fb9c460a11bd1756f0a|commit]], [[https://git.kernel.org/linus/be41bde4c3a86de4be5cd3d1ca613e24664e68dc|commit]], [[https://git.kernel.org/linus/be39617e38e0b1939a6014d77ee6f14707d59b1b|commit]], [[https://git.kernel.org/linus/7de9d4f946383f48ec393b6e9ad0c20e49e174e7|commit]] * sched_ext, rcu: Eject BPF scheduler on RCU CPU stall panic [[https://git.kernel.org/linus/cb444006a625c60e6d4dd3753863c3c74f96aac3|commit]] * sched_ext: Add support for cgroup bandwidth control interface [[https://git.kernel.org/linus/6e6558a6bc418f1478c5dc8609d03805364e0cb9|commit]], [[https://git.kernel.org/linus/ddceadce63d9cb752c2472e220ded05cabaf7971|commit]] * sched_ext: Drop kfuncs marked for removal in 6.15 [[https://git.kernel.org/linus/4ecf83741401c70d4420588ee1f3b1ca04ef58d5|commit]] * Add dl_bw_dump.py for printing bandwidth accounting info [[https://git.kernel.org/linus/634c24068abf8f325e520e663250e4a32a95ea0e|commit]] * rcu: Enable rcu_normal_wake_from_gp on small systems [[https://git.kernel.org/linus/78370df5c3574cdc5c6de7844481b4dc0ef4f172|commit]] * Remove srcu-lite in favor of srcu-fast [[https://lore.kernel.org/rcu/2994ade2-bd06-4ba7-bcc9-be4d0d15ea0c@paulmck-laptop/T/|(cover)]], [[https://git.kernel.org/linus/cbd5d35e6ddc47b4cde5c96a0d5f00da0f8e881f|commit]], [[https://git.kernel.org/linus/d08d409126d7d5ad2d8ceac77fb97f2d892e9f85|commit]], [[https://git.kernel.org/linus/941ab0b369c983f7867de54c8579fd7f1676ee3c|commit]], [[https://git.kernel.org/linus/623baa01d5b43ca06ba337751d9a4f62199d1715|commit]], [[https://git.kernel.org/linus/2a73ebf267fe26fb1fb5c8f085be986dfe9faf83|commit]] * syscall_user_dispatch: Add {{{PR_SYS_DISPATCH_INCLUSIVE_ON}}} [[https://lore.kernel.org/linux-kernel/cover.1747839440.git.dvyukov@google.com/T/|(cover)]], [[https://git.kernel.org/linus/b89732c8c8357487185f260a723a060b3476144e|commit]], [[https://git.kernel.org/linus/a2fc422ed75748eef2985454e97847fb22f873c2|commit]], [[https://git.kernel.org/linus/b6a5a16b8b59476156dc6d6f73bffaf3a1707adb|commit]] * timekeeping: Provide support for auxiliary timekeepers [[https://lore.kernel.org/linux-kernel/20250519082042.742926976@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/990518eb3a71c357ca4ff1ad3e747fb844d8094c|commit]], [[https://git.kernel.org/linus/506a54a0316ee4854b0ed113a8001477f5211d50|commit]], [[https://git.kernel.org/linus/7e55b6ba1fe6987638160e5f8216288f38043759|commit]], [[https://git.kernel.org/linus/f12b45862c4dcb9c2937b83ed730e473b9a76cbf|commit]], [[https://git.kernel.org/linus/9094c72c3d81bf2416b7c79d12c8494ab8fbac20|commit]], [[https://git.kernel.org/linus/8515714b0f88a698a4c26f0f0ce7d43ad14dce16|commit]], [[https://git.kernel.org/linus/5ffa25f573cf524ff53660c5ff7a158ee10f23c7|commit]], [[https://git.kernel.org/linus/c7ebfbc440151ae4a66a03b0f879cbece45174c8|commit]], [[https://git.kernel.org/linus/926ad475169f5b24868438e4bff61ec6a73efd19|commit]], [[https://git.kernel.org/linus/8c782acd3f47e21f9b03fd3720172d1f8e4fb796|commit]], [[https://git.kernel.org/linus/6168024604236cb2bb1004ea8459c8ece2c4ef5f|commit]], [[https://git.kernel.org/linus/22c62b9a84b8f16ca0277e133a0cd62a259fee7c|commit]], [[https://git.kernel.org/linus/ffa0519baaed48ca953bd201e1b17f15dae21b2d|commit]], [[https://git.kernel.org/linus/c85f5ab60820bde1510110e403d17456fbb8c266|commit]], [[https://git.kernel.org/linus/180d8b4ce91fe0cf7a9cb236bb01f14587ba4bf0|commit]], [[https://git.kernel.org/linus/9f7729480a2c771bbe49b7eab034a8eaa5e27bfb|commit]], [[https://git.kernel.org/linus/05bc6e6290f91d2d40086ab4ef52da21c14ec4b6|commit]], [[https://git.kernel.org/linus/606424bf4ffd9d27865c45b5707c1edac6b187ed|commit]], [[https://git.kernel.org/linus/60ecc26ec5af567a55f362ad92c0cac8b894541c|commit]], [[https://git.kernel.org/linus/e8db3a55798d70f2c222c6103990776fca6a6ebc|commit]], [[https://git.kernel.org/linus/2c8aea59c206b12b436373861590baeda728be12|commit]], [[https://git.kernel.org/linus/775f71ebedd382da390dc16a4c28cffa5b937f79|commit]], [[https://git.kernel.org/linus/4eca49d0b621b314ac7c80f363932ec6f6c8abc8|commit]], [[https://git.kernel.org/linus/ecf3e70304911be1c14cd21baa0bc611a53ec50b|commit]], [[https://git.kernel.org/linus/e6d4c00719a6b1dda3fb358b4c973595f9dfd455|commit]], [[https://git.kernel.org/linus/7b95663a3d96b39b40f169dba5faef3e20163c5c|commit]] * vdso/gettimeofday: Add support for auxiliary clocks [[https://git.kernel.org/linus/fb61bdb27fd730c393a8bddbda2401c37a919667|commit]], [[https://git.kernel.org/linus/1a1cd5fe881fdf7b0391e5426f6bfcb663c90dde|commit]], [[https://git.kernel.org/linus/381d96ccc1a52237e03ac97b4d2945997c9356e6|commit]], [[https://git.kernel.org/linus/562f03ed967dc65e513a3e2e9821f656d5333b8e|commit]], [[https://git.kernel.org/linus/9b7fc3f14576c268f62fe0b882fac5e61239b659|commit]], [[https://git.kernel.org/linus/380b84e168e57c54d0a9e053a5558fddc43f0c1a|commit]], [[https://git.kernel.org/linus/cd3557a7618bf5c1935e9f66b58a329f1f1f4b27|commit]] * rv: Add monitors to validate task switch [[https://lore.kernel.org/linux-kernel/20250728135022.255578-1-gmonaco@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/28a78afda6c80dfdcbec51813cb8d2813523ea0c|commit]], [[https://git.kernel.org/linus/7b70ac4cad2b20eaf415276bbaa0d9df9abb428c|commit]], [[https://git.kernel.org/linus/7f904ff6e58d398c4336f3c19c42b338324451f7|commit]], [[https://git.kernel.org/linus/79de661707a4a2dc695fd3e00529a14b4f5ec50d|commit]], [[https://git.kernel.org/linus/9d475d80c93735f0f336b34a8e2c22beea6145ab|commit]], [[https://git.kernel.org/linus/adcc3bfa8806761ac21aa271f78454113ec6936e|commit]], [[https://git.kernel.org/linus/d0096c2f9cfcb4ce385698491604610fcc1a53b3|commit]], [[https://git.kernel.org/linus/e8440a88e56bb3aa24c384eec6de8bef1184bed2|commit]], [[https://git.kernel.org/linus/614384533dfe99293a7ff1bce3d4389adadbb759|commit]] * (FEATURED) rv: Linear temporal logic monitors for RT application [[https://lore.kernel.org/lkml/cover.1752088709.git.namcao@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/2d088762631b212eb0809e112642843844ef64eb|commit]], [[https://git.kernel.org/linus/0af3ecdde58676f6c42eeec07d6816d5bf87ff88|commit]], [[https://git.kernel.org/linus/3f045de7f557850ca6b3632c6d45c2cdaf948694|commit]], [[https://git.kernel.org/linus/ff4e233d8ab70fe6ae460ecc8c0e5b24dd0fedb0|commit]], [[https://git.kernel.org/linus/c94d27c01b1ff2e26ca347524b3527534e285a39|commit]], [[https://git.kernel.org/linus/a9769a5b987838f03f3dd57b097794cd4c691098|commit]], [[https://git.kernel.org/linus/886fc86e9419a2bf61713ba566eb6edd8e6aa989|commit]], [[https://git.kernel.org/linus/a37c71ca412d90365e143581582c4ecd3a90508f|commit]], [[https://git.kernel.org/linus/9162620eb604d7461da5b02ec379bb50c3c3b604|commit]], [[https://git.kernel.org/linus/f74f8bb246cf22f27752977da62079cb615f55b2|commit]], [[https://git.kernel.org/linus/670ff946b9bd398749450ad1b8a4bd4e78c82a2b|commit]], [[https://git.kernel.org/linus/fac5493251a680cb74343895d0e76843624a90d8|commit]] * workqueue: Add WQ_PERCPU, system_dfl_wq and system_percpu_wq [[https://lore.kernel.org/linux-kernel/20250725203427.299291833@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/b0c08dd5348dfd8098bdb815bb04e7c59dfaea79|commit]], [[https://git.kernel.org/linus/24cbfe18d55a6866bc2e27fda74306f4a1b5cb01|commit]], [[https://git.kernel.org/linus/3d3c376118b5f7ed7723c2b4fd7a0a1c1893d63e|commit]], [[https://git.kernel.org/linus/b8a7fba39cd49eab343bfe561d85bb5dc57541af|commit]], [[https://git.kernel.org/linus/128ea9f6ccfb6960293ae4212f4f97165e42222d|commit]] * workqueue: Basic memory allocation profiling support [[https://git.kernel.org/linus/fda6add9243867486f8cd456d7b05395d2132e0a|commit]] * iommufd: Destroy vdevice on device unbind [[https://lore.kernel.org/linux-kernel/20250716070349.1807226-1-yilun.xu@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/a64bae68adf1f817696752abee8d086e0d9f7941|commit]], [[https://git.kernel.org/linus/e6d41ee31219b4d605c2a26bdca0984108e6e01a|commit]], [[https://git.kernel.org/linus/7dc0e1090ba80bcf1bbb69b334ccb3c47631a9c5|commit]], [[https://git.kernel.org/linus/850f14f5b91986e586b66565c9c75bdd4c834571|commit]], [[https://git.kernel.org/linus/651f733675c4a26e59dd34522917eace20c557c0|commit]], [[https://git.kernel.org/linus/c4e496d413686cbd717139cfd8c58f467eff9e08|commit]], [[https://git.kernel.org/linus/39a369c34152e1b76895fda37aa586dfb9b2cf38|commit]], [[https://git.kernel.org/linus/ab6bc44159d8f0c4ee757e0ce041fa9033e0ead8|commit]] * panic: add 'panic_sys_info' sysctl to take human readable string parameter [[https://git.kernel.org/linus/d747755917bf8ae08f490c3fe7d8e321afab8127|commit]] * Allow to use the printk kthread immediately even for 1st nbcon [[https://git.kernel.org/linus/cf5543870186d6f99b631faaeca27beaa996d52f|commit]] * hung_task: extend hung task blocker tracking to rwsems [[https://git.kernel.org/linus/77da18de55ac6417e48905bec8b3c66f023b15a9|commit]] * mount-related stuff [[https://git.kernel.org/linus/8c6ce8e86dd75db8e6c6a3e5a870e8d52dbab2d0|commit]], [[https://git.kernel.org/linus/431cc1d8e2dab751b2b8f298a6d9caf83d8b49c3|commit]], [[https://git.kernel.org/linus/ffdc52fbbd5835a936ad683c943d6d103a2d4514|commit]], [[https://git.kernel.org/linus/cf53a2d423c11ed70611e7b3f0878d6e419e348a|commit]], [[https://git.kernel.org/linus/0e84653ea596bf9f5bfea58b0a34e0d9f72236c4|commit]], [[https://git.kernel.org/linus/592238c03ef9e44ad6031b671da869ebcbffa8dc|commit]], [[https://git.kernel.org/linus/9cb79ed60e38a0767b5b94c31bf1abf6518bc6b9|commit]], [[https://git.kernel.org/linus/e031251cb249f824ad67cb0b2fc18b68d5792b8d|commit]], [[https://git.kernel.org/linus/05da054d43770e229dfb0e185c15452eed14364c|commit]], [[https://git.kernel.org/linus/9ed4b9eaeaa71cb0db4ec8460b5edd390aef58dd|commit]], [[https://git.kernel.org/linus/1a867d729f951f1f0ef73c94d2f739f959cd8699|commit]], [[https://git.kernel.org/linus/d08fa7f44ae7f5ad5c842e15f2412790736a6144|commit]], [[https://git.kernel.org/linus/49acacdc7cd3c1dcf5190a80ea9e6ca2ffa06cec|commit]], [[https://git.kernel.org/linus/c93ff74ff1cbc0ab152cebed3e44223fee3c70a2|commit]], [[https://git.kernel.org/linus/24368a744bafce7daf1eafd6a163871925ee5892|commit]], [[https://git.kernel.org/linus/f0d0ba19985d23a3e83d654318ccb6e9c5f1b095|commit]], [[https://git.kernel.org/linus/7c6fb47b2b6c1ffcb1cae9372b9fcf269444487a|commit]], [[https://git.kernel.org/linus/96f5d2e051653f2cfe9137c5d3c7794c358ffb03|commit]], [[https://git.kernel.org/linus/18959bf585a85c526c88ae23bd223e1afe997bd7|commit]], [[https://git.kernel.org/linus/86b1da96c5aeb816e4a1b60aa2b3bdcd87e28522|commit]], [[https://git.kernel.org/linus/761de25854424aa23fd1d7b2bef5c7d184690926|commit]], [[https://git.kernel.org/linus/ee1ee33ccc1ba0620a77833b2a3e320588701217|commit]], [[https://git.kernel.org/linus/a8c764e1a580c2128e905ad6e42beef413fb7177|commit]], [[https://git.kernel.org/linus/ec3265a245b22f8b8a0b20e04dd1d3f4f4a9ce09|commit]], [[https://git.kernel.org/linus/e30da2a20e31ab958d41e5a2c764968d95f17b61|commit]], [[https://git.kernel.org/linus/86f63980964b334ad49d5c1f132f3b9491303a15|commit]], [[https://git.kernel.org/linus/d72c773237c0472e214cda92016ad21625b05bba|commit]], [[https://git.kernel.org/linus/493a4bebf5157a5da64e36f8d468ff80a859b563|commit]], [[https://git.kernel.org/linus/406fea79992561f47fd3511dd8b7c8abeeff7045|commit]], [[https://git.kernel.org/linus/25776a09d802f4e4d8c0bd72042934223286c2e3|commit]], [[https://git.kernel.org/linus/2b2a34793dc239b0eaebe9559557d051524a7297|commit]], [[https://git.kernel.org/linus/15e710b8bbb5c537c39ccaa23963d01c76946834|commit]], [[https://git.kernel.org/linus/e0f9396e244c0dcc29921ebc3254cb25d6eb31cf|commit]], [[https://git.kernel.org/linus/6a2ce2a74bfeee4b66411177125f3b5749003e7f|commit]], [[https://git.kernel.org/linus/bc88530a20b1d5c78288ef5383d10b66d3242c48|commit]], [[https://git.kernel.org/linus/0a10217e5cf82835b63875752b57f01bba0bf5b6|commit]], [[https://git.kernel.org/linus/0313356520b15deab893cd62da3e2ba9a6e61a1f|commit]], [[https://git.kernel.org/linus/d5f15047f13b86b74d1ac4f39036ccae2078c492|commit]], [[https://git.kernel.org/linus/ef86251194de9b31f7efcf70ea480ebe736e9e60|commit]], [[https://git.kernel.org/linus/955336e204ab59301ff8b1f75a98a226f5a98782|commit]], [[https://git.kernel.org/linus/94a8d0027606397ce58b00077bf6146f25923965|commit]], [[https://git.kernel.org/linus/8c5a853f58c5b86b033842b78a0ad3d1208672fa|commit]], [[https://git.kernel.org/linus/dd5a4e1d640bf3542c4583491e6b91d25de3b760|commit]], [[https://git.kernel.org/linus/663206854f020ec6fc6bfd3d52f501a28ede1403|commit]], [[https://git.kernel.org/linus/aab771f34e63ef89e195b63d121abcb55eebfde6|commit]], [[https://git.kernel.org/linus/725ab435ff6e31faca26b8234f9f04c19f772b18|commit]], [[https://git.kernel.org/linus/f6cc2f4e3d304c93b44c80f50430aa40e080cc3c|commit]], [[https://git.kernel.org/linus/a7cce099450f8fc597a6ac215440666610895fb7|commit]] * Support clang stack depth tracking [[https://lore.kernel.org/linux-kernel/20250717231756.make.423-kees@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/57fbad15c2eee77276a541c616589b32976d2b8e|commit]], [[https://git.kernel.org/linus/9ea1e8d28add49ab3c1ecfa43f08d92ee23f3e33|commit]], [[https://git.kernel.org/linus/76261fc7d1be3fde06efed859cb10c95b1204055|commit]], [[https://git.kernel.org/linus/8245d47cfaba8a38337a447230b4d01f9946f5e1|commit]], [[https://git.kernel.org/linus/2424fe1cac4fc8ea0520ba22ede7544c3ddc8dd1|commit]], [[https://git.kernel.org/linus/65c430906efffee9bd7551d474f01a6b1197df90|commit]], [[https://git.kernel.org/linus/c64d6be1a6f8c93274bb861ec75c59453508093a|commit]], [[https://git.kernel.org/linus/645d1b666498ef0d2c44c434a609b5560e9dc401|commit]], [[https://git.kernel.org/linus/d01daf9d95c9918bd11f990e807517f214a83ea2|commit]], [[https://git.kernel.org/linus/381a38ea53d25ed6f93ba007b021db86c2a36bc6|commit]], [[https://git.kernel.org/linus/a8f0b1f8ef628bd1003eed650862836e97b89fdd|commit]], [[https://git.kernel.org/linus/4c56d9f7e75eb2a137584f708fa262d7e8c8a2d8|commit]], [[https://git.kernel.org/linus/437641a72d0a675242ae3e649a30b4c51b3ad450|commit]] * Generalize panic_print's dump function to be used by other kernel parts [[https://lore.kernel.org/lkml/20250703021004.42328-1-feng.tang@linux.alibaba.com/T/|(cover)]], [[https://git.kernel.org/linus/261743b0135d1d578cab407ba0cf226df30b43d8|commit]], [[https://git.kernel.org/linus/b76e89e50fc3693b7b8a443ed906320d8ccb93fd|commit]], [[https://git.kernel.org/linus/9743d12d0c63968320ece31e2e48723f3235be6d|commit]], [[https://git.kernel.org/linus/ee13240cd78b68430eb50af4721b3f18dd08af29|commit]] * Add ability to register a debugfs file for a ref_tracker_dir [[https://lore.kernel.org/linux-kernel/20250618-reftrack-dbgfs-v15-0-24fc37ead144@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/7d02ba96635d184dfc292ecc7308ced1fceaba8d|commit]], [[https://git.kernel.org/linus/e209f9193a4724c1d4bc0b155c7beb78aa5d2928|commit]], [[https://git.kernel.org/linus/49c94af071fc6c9f5e1db52b3031dec28daa90c3|commit]], [[https://git.kernel.org/linus/aa7d26c3c3497258b712fb97221e775733a710b7|commit]], [[https://git.kernel.org/linus/f6dbe294a11028db540e2dedf1929e25b1093e9b|commit]], [[https://git.kernel.org/linus/65b584f5361163ba539d2c7122ca792c3cc87997|commit]], [[https://git.kernel.org/linus/d04992dc86a6c77b7d39a1ee10013aed7111e855|commit]], [[https://git.kernel.org/linus/8f2079f8da5b6d4373d125a05cb076b0d6dc646b|commit]], [[https://git.kernel.org/linus/707bd05be75f65749c3f1695f4e362a89b3fcc7b|commit]] * relayfs: misc changes [[https://lore.kernel.org/linux-kernel/20250612061201.34272-1-kerneljasonxing@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/2489e958129ff7cbf26a34ee33cdc9ccbd68fe3c|commit]], [[https://git.kernel.org/linus/ca01a90ae7bf9bb22137e719366bdc0f387675c2|commit]], [[https://git.kernel.org/linus/a53202ce7fbafd24f854865b02eff891e246c550|commit]], [[https://git.kernel.org/linus/7f2173894f7bfe63bcb241f419b15ed5ce79f0d1|commit]], [[https://git.kernel.org/linus/19f3cb64a25b80db667a00182785577fae465b3e|commit]] * scripts: add zboot support to extract-vmlinux [[https://git.kernel.org/linus/b9f75396ec107628cc5f52fb6e055c1c9dc68401|commit]] * Make max number of pools boot-time configurable [[https://git.kernel.org/linus/ed4f142f72a9191b8236778093074c277435bf8a|commit]] * tools/accounting/delaytop: add delaytop to record top-n task delay [[https://git.kernel.org/linus/01bda05819b89b38eebad7e2034b8ab14eee5207|commit]] * umd: Remove usermode driver framework [[https://git.kernel.org/linus/b7b3500bd4eef2c3b5124ed195f26eb048407d9b|commit]] * Deferred unwinding infrastructure [[https://lore.kernel.org/linux-kernel/20250729182304.965835871@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/71753c6ed2bf2aee5be26c1bc06a94c9e3713ade|commit]], [[https://git.kernel.org/linus/5e32d0f15cc5c843a4115c4644d984d42524c794|commit]], [[https://git.kernel.org/linus/b9c73524106e1c0c857006fb9ff2e5a510dc4021|commit]], [[https://git.kernel.org/linus/2dffa355f6c279e7d2e574abf9446c41a631c9e5|commit]], [[https://git.kernel.org/linus/055c7060e7ca71bb86da616158fc74254730ae2a|commit]], [[https://git.kernel.org/linus/be3d526a5b34109cecf3bc23b96f0081ad600a5b|commit]], [[https://git.kernel.org/linus/4c75133e745aa95636c9ccbab1603ed363dabcd4|commit]], [[https://git.kernel.org/linus/858fa8a3b083e862114bb6483b9fb50b3e2bc4c3|commit]], [[https://git.kernel.org/linus/357eda2d745054eb737397368bc9b0f84814b0a5|commit]], [[https://git.kernel.org/linus/b3b9cb11aa034cfa9eb880bb9bb3d5aaf732e479|commit]] * userfaultfd: assorted fixes and cleanups [[https://lore.kernel.org/linux-kernel/20250619-uffd-fixes-v3-0-a7274d3bd5e4@columbia.edu/T/|(cover)]], [[https://git.kernel.org/linus/7208cc6497c2615ed5a334b52c92ae98bda91198|commit]], [[https://git.kernel.org/linus/23ec90eb122faaf0468f450c5d5857a794956c75|commit]], [[https://git.kernel.org/linus/31defc3b01d907e3e899de9e7002a6a63998f07a|commit]], [[https://git.kernel.org/linus/5e00e31867d16e235bb693b900c85e86dc2c3464|commit]] * tools/nolibc: add support for clock_nanosleep() and nanosleep() [[https://git.kernel.org/linus/7c02bc4088af55195f16bfa565127b4864c7e248|commit]] = File systems = * BTRFS * Improve read performance on compressed data with better readahead [[https://git.kernel.org/linus/9e9ff875e4174be939371667d2cc81244e31232f|commit]] * Update defrag ioctl, add new flag to request no compression on existing extents [[https://git.kernel.org/linus/009b2056cb259c90426b3c57e5b145d1cd9fa9e2|commit]] * Restrict writes to block devices after mount [[https://git.kernel.org/linus/736bd9d2e35866a07f32d9884019e0431b0b50d8|commit]] * Enable large data folio support under CONFIG_BTRFS_EXPERIMENTAL [[https://git.kernel.org/linus/cc38d178ff33543cdb0bd58cfbb9a7c41372ff75|commit]] * sysfs: track current commit duration in commit_stats [[https://git.kernel.org/linus/c7f04fbc98dcf81723bb2fdc65d905a38fc38f3c|commit]] * Free space tree optimization and cleanups (20% runtime improvement on an empty file creation benchmark) [[https://lore.kernel.org/linux-btrfs/ca0d5ca26250730d2e94aba1230f546296233efe.1750075579.git.fdmanana@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/3887067f55a4ac6f9b2c938efa51f2d582b3925b|commit]], [[https://git.kernel.org/linus/a8da443c9b67c039fcf40cc5ea34f00a88291174|commit]], [[https://git.kernel.org/linus/497c726ff824c9339e4dbd174f702b2dafb70aeb|commit]], [[https://git.kernel.org/linus/d1ac35ae2a51e8f06360aa535b8d0f13800a0861|commit]], [[https://git.kernel.org/linus/fdeffeb4f58797eb2ca3194a16eb1b49637ac0d4|commit]], [[https://git.kernel.org/linus/2abd9e1c58d46e4d5b528a83f75c392ca5700b92|commit]] * xarray for extent buffers is now indexed by denser keys, leading to better packing of the nodes [[https://git.kernel.org/linus/f2cb97ee964a0af0e4644b1dd7556ed4b14bee06|commit]] * Set/get accessor speedups [[https://git.kernel.org/linus/d5a87dbd958398c1926dd35a328ccf89a410cbd2|commit]], [[https://git.kernel.org/linus/58383c6866a76acb719b1f22caaba64fa4dd3f6e|commit]], [[https://git.kernel.org/linus/1ed0f75d57aef3c447fbc78885c90421e40c1755|commit]], [[https://git.kernel.org/linus/c8b33a57fba29733518d469be062ca6fea03203d|commit]], [[https://git.kernel.org/linus/ae807482255bdc84a591b566b7a84fc9f2c1d572|commit]], [[https://git.kernel.org/linus/72b2b199d5ee659ceb439192db4618f47c61eeef|commit]] * EXT4 * Better scalability for ext4 block allocation [[https://lore.kernel.org/linux-ext4/20250714130327.1830534-1-libaokun1@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/e9eec6f33971fbfcdd32fd1c7dd515ff4d2954c0|commit]], [[https://git.kernel.org/linus/35bfd4b44ef04a10a091a4037a26296e7cd5273a|commit]], [[https://git.kernel.org/linus/f0374d80711adf8628bdd442131c045c64a10951|commit]], [[https://git.kernel.org/linus/4b41deb896e3d0417701759194f0765c06258b9c|commit]], [[https://git.kernel.org/linus/8f2c3b74865cac9b3bd87fb15633475b46069ca8|commit]], [[https://git.kernel.org/linus/4d18a0b98259c2fa62f04ce5f94a7ec6e840f220|commit]], [[https://git.kernel.org/linus/9a0ed1698191a143588a9bfb46ed76a4ee094931|commit]], [[https://git.kernel.org/linus/0a2326f6ae60e99f5e6e9ca900a19b5c14304a51|commit]], [[https://git.kernel.org/linus/e7f101a8088770e8f3bb089f13652b9b0fd22b06|commit]], [[https://git.kernel.org/linus/1c320d8e92925bb7615f83a7b6e3f402a5c2ca63|commit]], [[https://git.kernel.org/linus/7d345aa1fac4c2ec9584fbd6f389f2c2368671d5|commit]], [[https://git.kernel.org/linus/45704f92e55853fe287760e019feb45eeb9c988e|commit]], [[https://git.kernel.org/linus/5abd85f667a19ef7d880ed00c201fc22de6fa707|commit]], [[https://git.kernel.org/linus/9c08e42db9056d423dcef5e7998c73182180ff83|commit]], [[https://git.kernel.org/linus/f7eaacbb4e54f8a6c6674c16eff54f703ea63d5e|commit]], [[https://git.kernel.org/linus/6347558764911f88acac06ab996e162f0c8a212d|commit]], [[https://git.kernel.org/linus/a3ce570a5d6a70df616ae9a78635a188e6b5fd2f|commit]] * Support uncached buffered I/O [[https://git.kernel.org/linus/ae21c0c0ac56aa734327e9c8b7dfef4270ab54d4|commit]] * Add {{{FALLOC_FL_WRITE_ZEROES}}} support [[https://git.kernel.org/linus/f4265b8d32c49ff95711e6fef7d05245a2905b30|commit]] * Show the default enabled i_version option [[https://git.kernel.org/linus/6a912e8aa2b2fba2519e93a2eac197d16f137c9a|commit]] and preserve it [[https://git.kernel.org/linus/f2326fd14a224e4cccbab89e14c52279ff79b7ec|commit]] * NFS * NFSD: offer write delegation for OPEN with OPEN4_SHARE_ACCESS only [[https://git.kernel.org/linus/e7a8ebc305f26cab608e59a916a4ae89d6656c5f|commit]] * Remove the max-ops-per-compound-limit [[https://git.kernel.org/linus/71bc2c6c413b78e5a47b4a62284f712d9f719007|commit]], [[https://git.kernel.org/linus/a2d61427fb4b630b94ed9bd457dd8bc239b83e4b|commit]], [[https://git.kernel.org/linus/48aab1606fa80027143a445224f552b4eeea845b|commit]] * Re-enable the ability for NFSD to perform NFSv4.2 COPY operations asynchronously [[https://git.kernel.org/linus/e58691ea4c8a20ce11421da66205b584c97ca3cb|commit]] * NFS client btime support [[https://lore.kernel.org/linux-nfs/cover.1748515333.git.bcodding@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/ce60ab3964782df9ba34f0a64c0bc766dd508bde|commit]], [[https://git.kernel.org/linus/1c7ae2dd3f0e6d07ec0a5a348f2561f2171b9c81|commit]], [[https://git.kernel.org/linus/4b5427414749233fb2315a89c9fa64328cf5ec03|commit]] * Create a kernel keyring [[https://git.kernel.org/linus/87268f7a4f1fb7243bba5a4aa6199720b54f72dd|commit]] * Assortment of i/o fixes for the nfs client [[https://lore.kernel.org/linux-nfs/cover.1757176392.git.trond.myklebust@hammerspace.com/T/|(cover)]], [[https://git.kernel.org/linus/b1817b18ff20e69f5accdccefaf78bf5454bede2|commit]], [[https://git.kernel.org/linus/b2036bb65114c01caf4a1afe553026e081703c8c|commit]], [[https://git.kernel.org/linus/9eb90f435415c7da4800974ed943e39b5578ee7f|commit]], [[https://git.kernel.org/linus/b93128f29733af5d427a335978a19884c2c230e2|commit]], [[https://git.kernel.org/linus/c80ebeba1198eac8811ab0dba36ecc13d51e4438|commit]], [[https://git.kernel.org/linus/ca247c89900ae90207f4d321e260cd93b7c7d104|commit]], [[https://git.kernel.org/linus/b7b8574225e9d2b5f1fb5483886ab797892f43b5|commit]], [[https://git.kernel.org/linus/c12b6a7b12a13ccd3aece6be09345c1944e18d3e|commit]] * Support the kernel keyring for tls [[https://git.kernel.org/linus/90c9550a8d65fb9b1bf87baf97a04ed91bf61b33|commit]] * F2FS * New mount api conversion [[https://lore.kernel.org/linux-fsdevel/20250710121415.628398-1-lihongbo22@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/e5a185c26c11cbd1d386be8ee4c5e57b4f62273a|commit]], [[https://git.kernel.org/linus/02eb5fe42a8c6cfcf063126df7e41ec2036b083c|commit]], [[https://git.kernel.org/linus/19c4b380f23e5a445cfc9e922c996784990d218c|commit]], [[https://git.kernel.org/linus/1a9094b10cf7339e4aa8d8c004534200968b558c|commit]], [[https://git.kernel.org/linus/d185351325237da688de006a2c579e82ea97bdfe|commit]], [[https://git.kernel.org/linus/bb463a75ab2fc5b7322d342808d1dacf34abe79e|commit]], [[https://git.kernel.org/linus/cebe85d570cf84804e848332d6721bc9e5300e07|commit]] * Account and print more stats during recovery [[https://git.kernel.org/linus/55fc364b430e3b234ecb9b6e1aa48b242a8663cc|commit]] * Add gc_boost_gc_greedy sysfs node [[https://git.kernel.org/linus/c8705cefce44fbe85ca3b180dee0e0b5f3d51dc5|commit]] * Add gc_boost_gc_multiple sysfs node [[https://git.kernel.org/linus/1d4c5dbba1a53aeaf2c6cc84e7ba94c436d18852|commit]] * Enable tuning of boost_zoned_gc_percent via sysfs [[https://git.kernel.org/linus/956b81b3d41adacbf4b51289ad49a71f9813c7b8|commit]] * Introduce reserved_pin_section sysfs entry [[https://git.kernel.org/linus/59c1c89e9ba8cefff05aa982dd9e6719f25e8ec5|commit]] * FUSE * Use iomap for buffered writes + writeback [[https://lore.kernel.org/linux-fsdevel/20250715202122.2282532-1-joannelkoong@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a4c9ab1d4975746c14b34c7bb908869245a9dd4f|commit]], [[https://git.kernel.org/linus/ef7e7cbb323f8a39381a2d4bb8392712bf3cf7ae|commit]], [[https://git.kernel.org/linus/1097a87dcb7447e319f143c3cb1518a177e6896f|commit]], [[https://git.kernel.org/linus/707c5d3471e32ecfdcfa5ebe4e8023f886d4b1fd|commit]], [[https://git.kernel.org/linus/6e2f4d8a6118318ccbc0c460e4b959d552e6483a|commit]] * EROFS * Support metadata compression [[https://git.kernel.org/linus/681acbda3a6d2c687ab01baed22598da389d1f79|commit]], [[https://git.kernel.org/linus/414091322c6363c9283aeb177101e4d7a3819ccd|commit]] * Enable readahead for directories to improve readdir performance [[https://git.kernel.org/linus/df0ce6cefa453d2236381645e529a27ef2f0a573|commit]] * OVERLAYFS * Support layers on case-folding capable filesystems [[https://git.kernel.org/linus/083957f9614a8b2e284dbb3a85c5fec8e2fb26b8|commit]] * SMB * cifs: Add support for creating reparse points over SMB1 [[https://git.kernel.org/linus/309c2b776c8716d4e3b98506bde3ccd131f2fae6|commit]] = Memory management = * Optimize mprotect() for large folios. Provides some quite large (>3x) speedups when dealing with large folios [[https://lore.kernel.org/linux-kernel/20250718090244.21092-1-dev.jain@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/b9bf6c2872c530776852b295eb399a23626e9611|commit]], [[https://git.kernel.org/linus/1d40f4e3d9d6a2d6807daa22d40ff27fc0c3d0f5|commit]], [[https://git.kernel.org/linus/0aa3657df3ec713fca1f00a57a063b28f2a78147|commit]], [[https://git.kernel.org/linus/57fae936b40cba55f36bb8e3296f271696c2bb67|commit]], [[https://git.kernel.org/linus/45199f715b7455a2e4054dbc5dab0c3b65e2abc1|commit]], [[https://git.kernel.org/linus/cac1db8c3aad97d6ffb56ced8868d6cbbbd2bfbe|commit]], [[https://git.kernel.org/linus/7efa1cd5f89b53e15659f84efb2c7a21076df04f|commit]] * Optimize mremap() for large folios. A 37% reduction in execution time was measured in a memset+mremap+munmap microbenchmark [[https://lore.kernel.org/linux-kernel/20250610035043.75448-1-dev.jain@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/94dab12d86cf77ff0b8f667dc98af6d997422cb4|commit]], [[https://git.kernel.org/linus/f822a9a81a31311d67f260aea96005540b18ab07|commit]] * (FEATURED) Per-node proactive reclaim, implements a per-node control of proactive reclaim - beyond the current memcg-based implementation [[https://git.kernel.org/linus/7a92f4f591770cf77de2e6550f4a68957483b739|commit]], [[https://git.kernel.org/linus/2b7226af730cc9a8818ff3b39aabcd76861913dd|commit]], [[https://git.kernel.org/linus/57972c78e6780564710e20f0b2fad45114c93461|commit]], [[https://git.kernel.org/linus/b980077899ea49cc747afe003e01ca303b00d463|commit]] * Use per-vma locks for {{{/proc/pid/maps}}} reads [[https://lore.kernel.org/linux-kernel/20250719182854.3166724-1-surenb@google.com/T/|(cover)]], [[https://git.kernel.org/linus/beb69e81724634063b9dbae4bc79e2e011fdeeb1|commit]], [[https://git.kernel.org/linus/b11d9e2d7883031afb570545cb9657a5c457349a|commit]], [[https://git.kernel.org/linus/6a45336b9b6fcc1d9ef3c6fe9a43252f9a20084b|commit]], [[https://git.kernel.org/linus/aadc099c480f98817849cd44585904402160fe21|commit]], [[https://git.kernel.org/linus/03d98703f7e172778786ebd7c5f2471d0f65d3a6|commit]], [[https://git.kernel.org/linus/5631da56c9a87ea41d69d1bbbc1cee327eb9354b|commit]] * Remove pXX_devmap page table bit and pfn_t type [[https://lore.kernel.org/linux-kernel/cover.176965585864cb8d2cf41464b44dcc0471e643a0.1750323463.git-series.apopple@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/0544f3f78da3d7d2baf546e70773a8d66cdb127e|commit]], [[https://git.kernel.org/linus/6b4a80e424cd2f99ca7262a8c0c725ec82e57b8a|commit]], [[https://git.kernel.org/linus/79065255abc4b0fae843f539f7f5f0fe9fcac1e6|commit]], [[https://git.kernel.org/linus/4b1d3145c1045d4b0db4622cd2c224a247f25a20|commit]], [[https://git.kernel.org/linus/fd2825b0760a10a9626986cca64f5664302ffdfc|commit]], [[https://git.kernel.org/linus/7b2ae3c47f65bc75985caaaba9f2fb601eebca20|commit]], [[https://git.kernel.org/linus/8a6a984c2e0ea406459b445a3910a454bece3aa1|commit]], [[https://git.kernel.org/linus/2f4e882d955b19ff7b216d6a29a77fcba045b7cc|commit]], [[https://git.kernel.org/linus/bea0cc7cf4a51e8d3a0042212df3b83b49df58a7|commit]], [[https://git.kernel.org/linus/28dc88c39ecfe7de5033fa05cdd24fd1a9f8267d|commit]], [[https://git.kernel.org/linus/d438d273417055241ebaaf1ba3be23459fc27cba|commit]], [[https://git.kernel.org/linus/984921edea68bf24bcc87e1317bfc90451ff46c6|commit]], [[https://git.kernel.org/linus/21aa65bf82a78c1e70447a45a85e533689b7f1a7|commit]], [[https://git.kernel.org/linus/5d26b5bdc64625049d98efc0f5bfddd83709c154|commit]] * gup: Optimize longterm pin_user_pages() for large folio [[https://git.kernel.org/linus/a03db236aebfaeadf79396dbd570896b870bda01|commit]] * Frozen pages for large kmalloc [[https://lore.kernel.org/linux-kernel/20250602-frozen-pages-for-large-kmalloc-v2-0-84a21f2c3640@suse.cz/T/|(cover)]], [[https://git.kernel.org/linus/e2d18cbf178775ad377ad88ee55e6e183c38d262|commit]], [[https://git.kernel.org/linus/5660ee54e7982f9097ddc684e90f15bdcc7fef4b|commit]] * Misc rework on hugetlb faulting path [[https://lore.kernel.org/linux-kernel/20250630144212.156938-1-osalvador@suse.de/T/|(cover)]], [[https://git.kernel.org/linus/2ae1ab9934c785b855583e3eabd208d6f3ac91e1|commit]], [[https://git.kernel.org/linus/9293fb4765527c0d2375eb441d045a5a75f5210d|commit]], [[https://git.kernel.org/linus/d531fd2ccf6b5ad95b718b5748e086f8d4aacf56|commit]], [[https://git.kernel.org/linus/cced784d2cb2a708cdfe4784514c2a10af3af37d|commit]], [[https://git.kernel.org/linus/1c0841140b5bd09f03e568d4d9341c874c396511|commit]] * Implement numa node notifier (internal API). Previously these were lumped under the more general memory on/offline notifier [[https://lore.kernel.org/linux-kernel/20250616135158.450136-1-osalvador@suse.de/T/|(cover)]], [[https://git.kernel.org/linus/1bf47d4195e4518973024cfc0777491ff796e883|commit]], [[https://git.kernel.org/linus/8d2882a8edb8621d37fd8931e0686070cc6cc189|commit]], [[https://git.kernel.org/linus/67929de108479dbb78496b61af5c24072fc16d8d|commit]], [[https://git.kernel.org/linus/5a20c096a165b8533c714aa9f1db06fee6fe4739|commit]], [[https://git.kernel.org/linus/265ab0869783d99b9dfbfda1697ce6989441aa04|commit]], [[https://git.kernel.org/linus/41a9344bb732cf9af5d7a004a836754fa0e7cf56|commit]], [[https://git.kernel.org/linus/487d45d1abeee242a4b12795015584fa8d8f2e67|commit]], [[https://git.kernel.org/linus/8e1bf051c524c6e95194cebf64a839285301d735|commit]], [[https://git.kernel.org/linus/cf0b61adf23f2cfaa360cd7d81d224c0bde7f413|commit]], [[https://git.kernel.org/linus/1a19c91b9706625684dc109e3fb0d0b2a003c7c5|commit]], [[https://git.kernel.org/linus/d2a9721d807de405b198291badcc807700746781|commit]] * memfd: Reserve hugetlb folios before allocation [[https://lore.kernel.org/lkml/20250618053415.1036185-1-vivek.kasireddy@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/986f5f2b4be3b7eab9ecd85c472d03a2191d6fc0|commit]], [[https://git.kernel.org/linus/717cf9357325055ab6b41c4e0581f4d67601eb58|commit]], [[https://git.kernel.org/linus/cf34cfbf1784be7ce9f22789aa157535eff2195f|commit]] * Madvise cleanup [[https://lore.kernel.org/linux-kernel/cover.1750433500.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/58fc12f77eb962360ecf80abd3e1c2790b50786d|commit]], [[https://git.kernel.org/linus/20d3aea927808b0283dff8d3a59a722801b92664|commit]], [[https://git.kernel.org/linus/c0f611507a7aa4d8a401ec6ce8bf4e8abc0a1515|commit]], [[https://git.kernel.org/linus/946fc11af061c3cd08943a96f6ea8c7e6fec95e1|commit]], [[https://git.kernel.org/linus/e24d552a17e92714d4f62e112d536babd6428acb|commit]] * mremap: allow multi-VMA move for huge folio, find ineligible earlier [[https://lore.kernel.org/linux-kernel/cover.1754218667.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/7c91e0b91aaa3fa1f897efb06565af0ceb75195c|commit]], [[https://git.kernel.org/linus/d5f416c7c36456676c2cf5ab98776db2e7601f27|commit]], [[https://git.kernel.org/linus/742d3663a5775cb7b957f4ca2ddb4ccd26badb94|commit]] * mremap: permit mremap() move of multiple VMAs [[https://lore.kernel.org/linux-fsdevel/cover.1752770784.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/000c0691ec6a1804244049b7908911aa5d6e866c|commit]], [[https://git.kernel.org/linus/3215eaceca87625ac5ae4cc5dabfe88ba6e9b183|commit]], [[https://git.kernel.org/linus/f256a7a4ca1aad688773fec1bd082a200395a234|commit]], [[https://git.kernel.org/linus/e49e76c20ba10e04b257f522e5a086db43d8f1c1|commit]], [[https://git.kernel.org/linus/f9f11398d4dac3c85507f31192e318b20b19af61|commit]], [[https://git.kernel.org/linus/a85dc37186a5842580963496e9718f1ec5bcc0e0|commit]], [[https://git.kernel.org/linus/9b2301bf8d65ede6038353086a24399386e2d815|commit]], [[https://git.kernel.org/linus/2cf442d74216bbd441c9446edfefb137804e1739|commit]], [[https://git.kernel.org/linus/d23cb648e3651b47007d4b17376d0af1fa98515e|commit]], [[https://git.kernel.org/linus/d53f248258e11e145b773a925ad1a8590ce4618e|commit]] * Make migrate_isolate a standalone bit [[https://lore.kernel.org/linux-kernel/20250617021115.2331563-1-ziy@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/42f46ed99ac6c07adf7f3bcbe9040b0c52d62d0f|commit]], [[https://git.kernel.org/linus/e904bce2d9d43e0f370e238457a13847d161570b|commit]], [[https://git.kernel.org/linus/1bc3587a88d291a37dab12d6c14aa7da53304251|commit]], [[https://git.kernel.org/linus/b1df9c5713dc41229667aa44eaea2399e8de9470|commit]], [[https://git.kernel.org/linus/7a3324eb66f616408fdaaff8a1289c0a9b333748|commit]], [[https://git.kernel.org/linus/d1554fb6302093d353c8bf4601f9bf994b836904|commit]] * Readahead tweaks for larger folios [[https://lore.kernel.org/linux-kernel/20250609092729.274960-1-ryan.roberts@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/bdb86f6b87633cc020f8225ae09d336da7826724|commit]], [[https://git.kernel.org/linus/18ebe55a9236b33d519fcc8669730cd02386a2dc|commit]], [[https://git.kernel.org/linus/f5e8b140cd1324cf2c9c17487b8f444098624797|commit]], [[https://git.kernel.org/linus/c4602f9fa77fc6bb956ca51a23e7a39439e75cb6|commit]], [[https://git.kernel.org/linus/38b0ece6d76374b989928021b5d310be11b99b5c|commit]] * shmem, swap: bugfix and improvement of mTHP swap in [[https://lore.kernel.org/linux-kernel/20250728075306.12704-1-ryncsn@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/5c241ed8d031693dadf33dd98ed2e7cc363e9b66|commit]], [[https://git.kernel.org/linus/0cfc0e7e3d062b93e9eec6828de000981cdfb152|commit]], [[https://git.kernel.org/linus/c262ffd72c8539d16ada8641a6348c5a88f0c542|commit]], [[https://git.kernel.org/linus/91ab656ece137c368a3189dfd42f8c9203a6285c|commit]], [[https://git.kernel.org/linus/69805ea79db6634d4e7d596f3f36667924dc6cbf|commit]], [[https://git.kernel.org/linus/1326359f22805b2b0e9567ec0099980b8956fc29|commit]], [[https://git.kernel.org/linus/93c0476e705768c7ca902cffea4efb500b9678b4|commit]], [[https://git.kernel.org/linus/de55be42379cc0561aadfd9e1459239dea70be32|commit]] * damon: introduce DAMON_STAT for simple and practical access monitoring [[https://lore.kernel.org/linux-doc/20250604183127.13968-1-sj@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/369c415e60732b7c8ed33368891581246f580d7a|commit]], [[https://git.kernel.org/linus/fabdd1e911da43cddbf17acf930171ba4b944477|commit]], [[https://git.kernel.org/linus/e5d2585d9e859df712e5c9308bf19f83927e0021|commit]], [[https://git.kernel.org/linus/7c33c6c47456c55ca043bb95a34968ef022bf625|commit]] * damon/vaddr: Allow interleaving in migrate_{hot,cold} actions [[https://lore.kernel.org/lkml/20250709005952.17776-1-bijan311@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a2c24eae5a15f79673eba2913d87d658a04830cf|commit]], [[https://git.kernel.org/linus/aabc85ee33c883243f2c506a5d88963f2456faa6|commit]], [[https://git.kernel.org/linus/2cd0bf85a203e21f7bc93628441f136fc2d0a2b8|commit]], [[https://git.kernel.org/linus/9106d467533db0f042f2ddbf304620fa3fd54b1d|commit]], [[https://git.kernel.org/linus/b9dfe8af511d901d6e6cac2ca999e390d7bf2a41|commit]], [[https://git.kernel.org/linus/3a4785c2d3bee59a0e39ad94b672f6e1a1180981|commit]], [[https://git.kernel.org/linus/cbc4eea4ffb5c9858b8f4dc7cae5897b01102a3f|commit]], [[https://git.kernel.org/linus/13dde31db71f013257e2f9363edb76f683ea5728|commit]], [[https://git.kernel.org/linus/256b0c7faa84e042ceb809cf57f6593c25bd9c58|commit]], [[https://git.kernel.org/linus/0af934b1312cc03bb977e8f345c694f3bef9529e|commit]], [[https://git.kernel.org/linus/19c1dc15c859929f8f084d0bfa2fafd1ee876cdd|commit]], [[https://git.kernel.org/linus/0a707d6b04e01490f6c246fa4b6e643cc33b40a1|commit]], [[https://git.kernel.org/linus/db87a4e236424249c7def768ba50b88699af2c0d|commit]] * Fault in complete folios instead of individual pages for tmpfs [[https://git.kernel.org/linus/e89d5bf3a4f92f038817d77339a9c04904da8ad9|commit]] * ksm: prevent KSM from breaking merging of new VMAs [[https://lore.kernel.org/linux-kernel/cover.1748537921.git.lorenzo.stoakes@oracle.com/T/|(cover)]], [[https://git.kernel.org/linus/de195c67bfcbc770bb6327bbfd3010f1c371216a|commit]], [[https://git.kernel.org/linus/b914c47d46da2ac66425521d304cbc8729153556|commit]], [[https://git.kernel.org/linus/cf7e7a3503df0b71afd68ee84e9a09d4514cc2dd|commit]], [[https://git.kernel.org/linus/4a1ff347e44ce45e8a5c15f466574583b019e4f9|commit]] * Optimize mprotect() for large folios [[https://lore.kernel.org/linux-kernel/20250718090244.21092-1-dev.jain@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/b9bf6c2872c530776852b295eb399a23626e9611|commit]], [[https://git.kernel.org/linus/1d40f4e3d9d6a2d6807daa22d40ff27fc0c3d0f5|commit]], [[https://git.kernel.org/linus/0aa3657df3ec713fca1f00a57a063b28f2a78147|commit]], [[https://git.kernel.org/linus/57fae936b40cba55f36bb8e3296f271696c2bb67|commit]], [[https://git.kernel.org/linus/45199f715b7455a2e4054dbc5dab0c3b65e2abc1|commit]], [[https://git.kernel.org/linus/cac1db8c3aad97d6ffb56ced8868d6cbbbd2bfbe|commit]], [[https://git.kernel.org/linus/7efa1cd5f89b53e15659f84efb2c7a21076df04f|commit]] * folio_pte_batch() improvements [[https://git.kernel.org/linus/e66d7a4f55f44aca39cc74e8c7b4602faf26b4f7|commit]], [[https://git.kernel.org/linus/233e28e2a76e6ffcbe33ee7813f98536fe0690b5|commit]], [[https://git.kernel.org/linus/dd80cfd4878bafc74f2a386c51b5398a12ffeb8c|commit]], [[https://git.kernel.org/linus/7ae7e811f0a6817b6deeb4f68eb44be0ec3b8e07|commit]] * Use per_vma lock for MADV_DONTNEED [[https://git.kernel.org/linus/a6fde7add78d122f5e09cb6280f99c4b5ead7d56|commit]] * shmem: hold shmem_swaplist spinlock (not mutex) much less [[https://git.kernel.org/linus/ea693aaa5ce5ad9fb124788bcb41d4d24a1d7a02|commit]] * vmscan: apply proportional reclaim pressure for memcg when MGLRU is enabled [[https://git.kernel.org/linus/af827e0904899f14e0cd8e629fea6d55022e53a9|commit]] * vmstat: remove the NR_WRITEBACK_TEMP node_stat_item counter [[https://git.kernel.org/linus/8356a5a3b078ca89c526dd6d71e9a76fec571c37|commit]], [[https://lore.kernel.org/mm-commits/20250625202641.32EEAC4CEEA@smtp.kernel.org/T/|(cover)]] * Add script to display page state for a given PID and VADDR [[https://git.kernel.org/linus/fee8870a09c84347f1bd51ba094489869a0df33d|commit]] = Block layer = * Optimize wbt and update its comments and doc [[https://lore.kernel.org/linux-block/20250727173959.160835-1-yizhou.tang@shopee.com/T/|(cover)]], [[https://git.kernel.org/linus/d8b96a79622e03813c221450498ca9742704ebf2|commit]], [[https://git.kernel.org/linus/bccdfcd56d4b5b78d0d76f46d0e89a51330dfd75|commit]], [[https://git.kernel.org/linus/0452f08395f8e7d04fe3744443dad396b3330d0c|commit]] * Improve read ahead size for rotational devices [[https://git.kernel.org/linus/459779d04ae8dfd4083679a7bf9d72af165d1023|commit]] * Add {{{FS_IOC_GETLBMD_CAP}}} ioctl to query metadata and protection info (PI) capabilities. This ioctl returns information about the files integrity profile. This is useful for userspace applications to understand a files end-to-end data protection support and configure the I/O accordingly [[https://lore.kernel.org/linux-block/20250630090548.3317-1-anuj20.g@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/c6603b1d6556cc02d0169f74508ab0e3e3e4bd76|commit]], [[https://git.kernel.org/linus/76e45252a4cefa205439eb6610a244771e7d88da|commit]], [[https://git.kernel.org/linus/f3ee50659148e4c1b7d1e58cfec897b14d36a00d|commit]], [[https://git.kernel.org/linus/9eb22f7fedfc9eb1b7f431a5359abd4d15b0b0cd|commit]] * Allow off-daemon zero-copy buffer registration [[https://lore.kernel.org/linux-block/20250620151008.3976463-1-csander@purestorage.com/T/|(cover)]], [[https://git.kernel.org/linus/c2f48453b7806d41f5a3270f206a5cd5640ed207|commit]], [[https://git.kernel.org/linus/7ba962f4d73b2b768c977db2c7cd9551798bba26|commit]], [[https://git.kernel.org/linus/5af8b36f6e4c8b39f6fffc45b066039349a5163a|commit]], [[https://git.kernel.org/linus/ee97736384beccc1f72116718af23e5f6de75210|commit]], [[https://git.kernel.org/linus/be4f1b619f5a7fa1f5641c780bfec1a156c279cb|commit]], [[https://git.kernel.org/linus/2b53d4e994b934796b7376150130ab2b3577fa1e|commit]], [[https://git.kernel.org/linus/2da1e7bb3f7230b71ce22df05494b6a4453b4e79|commit]], [[https://git.kernel.org/linus/763ff02ce287c2e5c8a012d40bd2f3dab99ae5d5|commit]], [[https://git.kernel.org/linus/7ab741081be307e3ec5dc8ed55ed8fc0f5b2a0e3|commit]], [[https://git.kernel.org/linus/8a8fe42d765bb22cc0e91b053bfebf0fbdec3b5a|commit]], [[https://git.kernel.org/linus/1ceeedb5974937a6d881fd0d92f143ca16f55577|commit]], [[https://git.kernel.org/linus/c9d066ebfd2fbd89173716f60578ed6e416712e4|commit]], [[https://git.kernel.org/linus/857f431824aacb22bd051c0f4c44c708659028b1|commit]] * Speed up ublk server exit handling [[https://lore.kernel.org/linux-block/20250703-ublk_too_many_quiesce-v2-0-3527b5339eeb@purestorage.com/T/|(cover)]], [[https://git.kernel.org/linus/2fa9c93035e17380cafa897ee1a4d503881a3770|commit]], [[https://git.kernel.org/linus/10d77a8c60b2b117868a64875a55c4c8db6f1f2e|commit]] * Set dm_target_passes_crypto feature for dm-thin [[https://git.kernel.org/linus/55a0fbd2ac3fe8f61a30ea697b2eb3034f6778c8|commit]] * dm-verity: remove support for asynchronous hashes [[https://git.kernel.org/linus/bdf253d580d7d30e7620844c63a5013fe7ba3f87|commit]] * md: allow removing faulty rdev during resync [[https://git.kernel.org/linus/c0ffeb648000acdc932da7a9d33fd65e9263c54c|commit]] * ufs: core: Add HID support [[https://git.kernel.org/linus/ae7795a8c2582b5fb7971132753810a3f158e7b2|commit]] * ufs: host: mediatek: Add more UFSCHI hardware versions [[https://git.kernel.org/linus/7996746394df569355113ce4643ab892442cfe1d|commit]] * ufs: host: mediatek: Support FDE (AES) clock scaling [[https://git.kernel.org/linus/5e5976f5242de61b9c09c32795b3d7b90364af51|commit]] * ufs: host: mediatek: Support clock scaling with Vcore binding [[https://git.kernel.org/linus/31a20e9f7c766896fbfea45897969bfd1490b466|commit]] * ufs: ufs-pci: Add support for Intel Wildcat Lake [[https://git.kernel.org/linus/823f95575d85454ccad7d5b684aec42e57b962f6|commit]] * ufs: ufs-qcom: Enable QUnipro Internal Clock Gating [[https://git.kernel.org/linus/5a6f304f39c24c1a2c3023fbfda81b0042354c3f|commit]] * Remove pktcdvd driver [[https://git.kernel.org/linus/1cea5180f2f812c444ceebdc40f5d001bedd030d|commit]] = Tracing, perf and BPF = * bpf: Add cookie to tracing bpf_link_info [[https://git.kernel.org/linus/c7beb48344d2ea0f3f1869b078309dbeb2ed4c96|commit]], [[https://git.kernel.org/linus/d77efc0ef5b0adb0de3c15f5c9d33ea6d60bd449|commit]], [[https://git.kernel.org/linus/ad954cbe084935b42e50d665fcbf2f8ac1df8c7e|commit]], [[https://git.kernel.org/linus/380cb6dfa2bffea6fc14291e8f789b46dfb6a713|commit]], [[https://git.kernel.org/linus/2bc0575fec3647b204ad3a438661605117a60146|commit]] * bpf: Add bpf_dynptr_memset() kfunc [[https://git.kernel.org/linus/803f0700a3bbf528c4c624a22f87d08178ca0fbe|commit]], [[https://git.kernel.org/linus/b4dfe26fbf56f7b3e50764268e14b73f1632bfc0|commit]], [[https://git.kernel.org/linus/da7e9c0a7fbc5b8552575db16c991e82b7c5fa5c|commit]] * bpf: Add struct bpf_token_info [[https://git.kernel.org/linus/19d18fdfc79217c86802271c9ce5b4ed174628cc|commit]] * Introduce bpf_cgroup_read_xattr [[https://git.kernel.org/linus/d1f4e9026007d50e6b28cf8f57a38f03fc3b0ce6|commit]], [[https://git.kernel.org/linus/535b070f4a807bbd26a30994aba8dfb4011fd447|commit]], [[https://git.kernel.org/linus/1504d8c7c702cc3697ad1a690c2d6bb4c8687927|commit]], [[https://git.kernel.org/linus/f4fba2d6d2822efd2733949c0831435dcd96cbd3|commit]] * bpf: Add cookie object to bpf maps [[https://git.kernel.org/linus/12df58ad294253ac1d8df0c9bb9cf726397a671d|commit]], [[https://git.kernel.org/linus/fd1c98f0ef5cbcec842209776505d9e70d8fcd53|commit]], [[https://git.kernel.org/linus/9621e60f59eae87eb9ffe88d90f24f391a1ef0f0|commit]], [[https://git.kernel.org/linus/abad3d0bad72a52137e0c350c59542d75ae4f513|commit]] * Memory accounting for bpf programs [[https://lore.kernel.org/bpf/20250613072147.3938139-1-eddyz87@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/43736ec3e02789795d4e7b9cb49a005fa56c0171|commit]], [[https://git.kernel.org/linus/67cdcc405b46c13446d6d220a108daa2f8de3436|commit]] * Bpf standard streams [[https://lore.kernel.org/bpf/20250703204818.925464-1-memxor@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/0426729f46cd1f6354fad07267a21579186a5757|commit]], [[https://git.kernel.org/linus/5ab154f1463a111e1dc8fd5d31eaa7a2a71fe2e6|commit]], [[https://git.kernel.org/linus/0e521efaf36350b8f783984541efa56f560c90b0|commit]], [[https://git.kernel.org/linus/d090326860096df9dac6f27cff76d3f8df44d4f1|commit]], [[https://git.kernel.org/linus/f0c53fd4a742f957da7077a691a85ef9775907dc|commit]], [[https://git.kernel.org/linus/d7c431cafcb4917b0d87b5cd10637cd47b6c8d79|commit]], [[https://git.kernel.org/linus/e8d01330225210a8af55f5683fb2ca726717ee16|commit]], [[https://git.kernel.org/linus/ecec5b5743bf964f3e2bb5486daee058344d9066|commit]], [[https://git.kernel.org/linus/21a3afc76a317b9fb214c5afcfd5e1587b2ae9b3|commit]], [[https://git.kernel.org/linus/3bbc1ba9cc0d9a7ccc194883489a4e460ca5080b|commit]], [[https://git.kernel.org/linus/876f5ebd58a9ac42f48a7ead3d5b274a314e0ace|commit]], [[https://git.kernel.org/linus/5697683e133d05e6333ee1f12a7e8dd402593258|commit]] * Move uid filtering to bpf filters [[https://lore.kernel.org/lkml/20250604174545.2853620-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/8b99e2f7a95297da80b0b7167a8c8327b65c019e|commit]], [[https://git.kernel.org/linus/5ddf4c3a17dc499fcbaf35692bc894340062dee8|commit]], [[https://git.kernel.org/linus/466db4275edd35b7a9af7c82575bcb3289f2c9c0|commit]], [[https://git.kernel.org/linus/1151208e702267ad1ce2f24aa9d21deb47fa17f9|commit]], [[https://git.kernel.org/linus/c54e2f82721aadd59d2a354ae2b5cc32d32047d9|commit]], [[https://git.kernel.org/linus/38f83cc9ab8f74732de66044d1a126ca46347eea|commit]], [[https://git.kernel.org/linus/bf1976dd28b4ec611d4f0bf5b0de40b1dd21b253|commit]], [[https://git.kernel.org/linus/278538ddf1af9f7a7fc0a983a23771083feda7f9|commit]], [[https://git.kernel.org/linus/b4c658d4d63d6149f4ba57c9c5c84b8a61aafa6f|commit]], [[https://git.kernel.org/linus/5128492b2b6bb3a2881e135da54fd8e224a5f610|commit]] * Implement mprog api on top of existing cgroup progs [[https://lore.kernel.org/bpf/20250606163131.2428225-1-yonghong.song@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/9b8367b604c739947ec308874f087fe0eb80f412|commit]], [[https://git.kernel.org/linus/1209339844601ec1766f4ff430673fbcfe42bb51|commit]], [[https://git.kernel.org/linus/1d6711667cb358fd2971c760a67b4fe843179d15|commit]], [[https://git.kernel.org/linus/c1bb68656bc18fd59bbd630fd1b5a86875b464b3|commit]], [[https://git.kernel.org/linus/e422d5f118e4da5d15b57c5721ee68ae39b512ec|commit]] * Add kfuncs for read-only string operations [[https://lore.kernel.org/bpf/cover.1750917800.git.vmalik@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/3a95a561f2763e3854e207de3ea821e795a1f1e0|commit]], [[https://git.kernel.org/linus/e91370550f1fe6fa3b02e8bf9762e3dc0a02fcad|commit]], [[https://git.kernel.org/linus/a55b7d39328bc6de1131cb5496816129cab2728b|commit]], [[https://git.kernel.org/linus/e8763fb66a386843f091925dab757c4f55633d0b|commit]] * Add show_fdinfo for perf_event [[https://git.kernel.org/linus/97ebac58865dec1bca31140252386daefef1654f|commit]] * bpf: propagate read/precision marks over state graph backedges [[https://git.kernel.org/linus/baaebe0928bf321a1cd980d569e308dec66be94c|commit]], [[https://git.kernel.org/linus/96c6aa4c63af0bb0675c41b3e61a2fc7f6fed998|commit]], [[https://git.kernel.org/linus/13f843c0177eeb367ac63467c538046b90785583|commit]], [[https://git.kernel.org/linus/9a2a0d79244d27fae6b5174e199b34fe17db0316|commit]], [[https://git.kernel.org/linus/23b37d616565c89dd202febc68d926345727d092|commit]], [[https://git.kernel.org/linus/dfb2d4c64b82ac1e7a03e0b28b4326458705d26f|commit]], [[https://git.kernel.org/linus/b5c677d8d9e58b9f6c6478ba0850580883588d3c|commit]], [[https://git.kernel.org/linus/c9e31900b54cadf5398dfb838c0a63effa1defec|commit]], [[https://git.kernel.org/linus/0e0da5f901f582b97bfeefbf1f36a27e9d427ff4|commit]], [[https://git.kernel.org/linus/0f54ff54700315caa8ed3bea36fa0ff3ebc53f56|commit]], [[https://git.kernel.org/linus/5159482fdb2b4c15cb0a087e41d8bc5d730bb697|commit]] * Add support for a drm tool like pmu [[https://lore.kernel.org/lkml/20250624231837.179536-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/e1ec69ed5ded5351efb04218dcab9d79ab018ac5|commit]], [[https://git.kernel.org/linus/28917cb17f9df9c2fc83449feefa375609b38fa4|commit]], [[https://git.kernel.org/linus/45cd84bd7afc42c4a2ca630c11f246974fd1e73c|commit]] * perf ftrace latency: Add -e option to measure time between two events [[https://git.kernel.org/linus/8db1d772484dfa959044dd43dc28482c8c543b74|commit]] * Pipe mode header dumping and minor space saving [[https://lore.kernel.org/lkml/20250607061238.161756-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/61051f9a8452d7f0878eaeb30299363310f07fd7|commit]], [[https://git.kernel.org/linus/57cbd56e2efe26483be2d4e7f62a7d9d816b54f1|commit]], [[https://git.kernel.org/linus/4d2eefd7fb91482f1327f28f14112201e0b45dff|commit]], [[https://git.kernel.org/linus/f0d0f978f3f5830ab06d71d1f37b3b30d47d6219|commit]] * New perf ilist app [[https://lore.kernel.org/lkml/20250725185202.68671-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/9957d8c801fe0cb905a9443d7a88e6a051f81105|commit]], [[https://git.kernel.org/linus/6e9fa4131abb0129b1153ba6d194bd294b9f9986|commit]], [[https://git.kernel.org/linus/d002aab87de84b26c6f0a2b9549a589105d00d35|commit]], [[https://git.kernel.org/linus/45b6e281cb0648acd04f896375de69481d29daa7|commit]], [[https://git.kernel.org/linus/55c09681cc67d175bd62b787c8b6eeafbe1b5851|commit]], [[https://git.kernel.org/linus/b91a9abbf4734d411d304661fbb7e2878281eb51|commit]], [[https://git.kernel.org/linus/f94833929032ad23412d3970beed6769a2fdbc19|commit]] * perf: Make code more generic with modern defaults [[https://lore.kernel.org/lkml/20250724163302.596743-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/f3982385bc507991f1ed732c3c7907bff703f4d4|commit]], [[https://git.kernel.org/linus/5a2ceebd8175874ae0e91a304ad6600d82806973|commit]], [[https://git.kernel.org/linus/fccaaf6fbbc59910edcf276f97a5b2ef5778c55e|commit]], [[https://git.kernel.org/linus/29be60c93d2d9300571230edaa484930cdbec437|commit]], [[https://git.kernel.org/linus/eee4b66105a6fa3b85fe5260d3791d607570ba95|commit]], [[https://git.kernel.org/linus/d9f2ecbc5e47fca7bda7c13cff3b3534b1467b32|commit]], [[https://git.kernel.org/linus/5b11409b924631745eef60a65218ffa496acafd6|commit]], [[https://git.kernel.org/linus/53b00ff358dc75b12042b2b2aaf1d0e998fd0075|commit]], [[https://git.kernel.org/linus/c3e5b9ec96dee864c2d6b00fbfe52e784f0d7bee|commit]], [[https://git.kernel.org/linus/57ddb9cbb54fbf3772063795051b88a1f7258c6c|commit]], [[https://git.kernel.org/linus/b743a1368dea43b4ef6e51c2931eeada07556d87|commit]], [[https://git.kernel.org/linus/5a156353e55e994627ac584e90b3b802e51e1ee2|commit]], [[https://git.kernel.org/linus/740f7ba1e3be5d6f192dafc5efd0bd0a8e8567e2|commit]], [[https://git.kernel.org/linus/aaa23571fe4bb7fb7549ad09dd56de5ca1bd289d|commit]], [[https://git.kernel.org/linus/aa91baa09b2a3c38deff05b83410ce86833258d5|commit]], [[https://git.kernel.org/linus/e481066388fe8003916461a54bf0ecffc02505a8|commit]], [[https://git.kernel.org/linus/69ac7472d28a21057275a396193f1bdcce6ba962|commit]], [[https://git.kernel.org/linus/003a86bce0728ad160bcb7c7566a4d40aee3c235|commit]], [[https://git.kernel.org/linus/525a599badeeafba88a4fa0f913e5cf87e2d51ec|commit]], [[https://git.kernel.org/linus/8882095b1d4d785524a7a4df8e04e35cfd039142|commit]], [[https://git.kernel.org/linus/a563c9f3bb8c23416f3e72edfbc75d1a4937f7e0|commit]], [[https://git.kernel.org/linus/6e19839a80b8713b836722ba9d99a3ab12cfb651|commit]] * perf record: collect BPF metadata from existing BPF programs [[https://git.kernel.org/linus/ab38e84ba9a80581e055408e0f8c0158998fa4b9|commit]] * perf record: collect BPF metadata from new programs [[https://git.kernel.org/linus/fdc3441f2d317b40ace0936ee040a6c895d60014|commit]] * perf script: Add -e option to flamegraph script [[https://git.kernel.org/linus/9a79c50c2a95887859d5ac133180775b708b850a|commit]] * perf script: Handle -i option for perf script flamegraph [[https://git.kernel.org/linus/df9c299371054cb725eef730fd0f1d0fe2ed6bb0|commit]] * perf symbol-elf: Add support for the block argument for libbfd [[https://git.kernel.org/linus/ca81e74dc34734078d34485d4aa123561ba75b15|commit]] * perf: Remove libcrypto dependency [[https://lore.kernel.org/linux-perf-users/20250625202311.23244-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/55a18d2f3ff79c9082225f44e0abbaea6286bf99|commit]], [[https://git.kernel.org/linus/43830468b6436811ff732b062f8d6306c6eddb77|commit]], [[https://git.kernel.org/linus/e3f612c1d8f3945bb0cc8aad173fc12a3b20dc2a|commit]], [[https://git.kernel.org/linus/8e63fd1e00f59eab01ab43eb094abc380f8d0c28|commit]] * perf tools: display the new PERF_RECORD_BPF_METADATA event [[https://git.kernel.org/linus/f19860ea9477f5ac33775cc0a602c7d54188c00a|commit]] * perf: ftrace: add graph tracer options args/retval/retval-hex/retaddr [[https://git.kernel.org/linus/129f70bd6063d701c3ecb63ecdd4b5ee520cfd45|commit]] * tools/perf: Add --exclude-buildids option to perf archive command [[https://git.kernel.org/linus/9d8511daf1e81a93007b7bb5020d4ce5ce001deb|commit]] * ftrace: Make DYNAMIC_FTRACE always enabled for architectures that support it [[https://git.kernel.org/linus/9b4d5d330fcd40bbc38a1e6ed3d617e674d651fa|commit]] * ftrace: add graph tracer options args/retval/retval-hex/retaddr [[https://git.kernel.org/linus/129f70bd6063d701c3ecb63ecdd4b5ee520cfd45|commit]] * tools/perf: Add --exclude-buildids option to perf archive command [[https://git.kernel.org/linus/9d8511daf1e81a93007b7bb5020d4ce5ce001deb|commit]] * Enable execmem_rox_cache for ftrace and kprobes [[https://lore.kernel.org/linux-kernel/20250713071730.4117334-1-rppt@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/fcd90ad31e29d0b403f3a074a64cd7f0876175dd|commit]], [[https://git.kernel.org/linus/838955f64ae7582f009a3538889bb9244f37ab26|commit]], [[https://git.kernel.org/linus/187fd8521dd8b202cbacd7af57f4301da4d5b52d|commit]], [[https://git.kernel.org/linus/888b5a847ba9650f454cd0842ccf8497268da959|commit]], [[https://git.kernel.org/linus/3bd4e0ac61b2fd87d64572e866f58940d1d5fbdf|commit]], [[https://git.kernel.org/linus/ab674b6871b049aab2e86d1d7375526368ed175a|commit]], [[https://git.kernel.org/linus/36de1e4238c1243866eaec515ef59972c490367f|commit]], [[https://git.kernel.org/linus/5d79c2be508143559c65ace445e7a951ef92881b|commit]] * Deprecate auto-mounting tracefs in debugfs [[https://git.kernel.org/linus/9ba817fb7c6afd3c86a6d4c3b822924b87ef0348|commit]] * fprobe-events: Register fprobe only when the event is enabled to reduce overhead. Also support multiple tprobes on the same tracepoint [[https://lore.kernel.org/linux-kernel/174343532655.843280.15317319860632975273.stgit@devnote2/T/|(cover)]], [[https://git.kernel.org/linus/dd941507a9486252d6fcf11814387666792020f3|commit]], [[https://git.kernel.org/linus/a3dc2983ca7b90fd35f978502de6d4664d965cfb|commit]], [[https://git.kernel.org/linus/c135ab4a96e3f65abf83621a0efe007e64f224cf|commit]], [[https://git.kernel.org/linus/e3d6e1b9a34c745b635f122ac471a198867cd0ec|commit]], [[https://git.kernel.org/linus/2db832ec9090d3b5f726f49ad4d0322d6b68a490|commit]], [[https://git.kernel.org/linus/434f6703ce268470796496e67c703dfd85a3653c|commit]], [[https://git.kernel.org/linus/2867495dea86324e984fbafa09474bf92534b652|commit]] * Have eprobes handle arrays [[https://git.kernel.org/linus/dabd3e7dcc5881d5d3d6dc60c6f14780fee9a9bd|commit]] = Virtualization = * virtio: introduce support for GSO over UDP tunnel [[https://git.kernel.org/linus/e7d4c1c5a54648fd5b787a4a0f81521ec7260bcd|commit]], [[https://git.kernel.org/linus/69b9461512246599ed80cf13358e7e6aff7285f9|commit]], [[https://git.kernel.org/linus/333c515d189657c934470c9b0b8a8fedb016ce6f|commit]], [[https://git.kernel.org/linus/3b17aa13015cc50e2e3a0eac13c128002628a99c|commit]], [[https://git.kernel.org/linus/a2fb4bc4e2a6a031683910d85b278c1d25ae5420|commit]], [[https://git.kernel.org/linus/56a06bd40fab64448aa6b84aa06b3dc470c1254a|commit]], [[https://git.kernel.org/linus/288f30435132d2f9e7a29ec9b9745a4f9dc7fd37|commit]], [[https://git.kernel.org/linus/bbca931fce262cdb3e5fddcc39e62f3bf9ac25cc|commit]] * KVM: Make irqfd registration globally unique [[https://lore.kernel.org/linux-kernel/20250522235223.3178519-1-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/283ed5001d6852f85c09ed2522331b2b197ba937|commit]], [[https://git.kernel.org/linus/140768a7bf03df2a746cdbd4b6dc938d80caad8d|commit]], [[https://git.kernel.org/linus/b5c543518ae9df8e99c63cd08a8b573f0141b31a|commit]], [[https://git.kernel.org/linus/5f8ca05ea99183ab2b69c7fd9617961211d194e7|commit]], [[https://git.kernel.org/linus/86e00cd162a727c0b847def89bbd787c20eb8f5d|commit]], [[https://git.kernel.org/linus/867347bb21e18551b48eb147c0b2d8635909c8b5|commit]], [[https://git.kernel.org/linus/a52664134a24f3b0c425781082ce993617fc2797|commit]], [[https://git.kernel.org/linus/0d09582b3a607436fd91d6ce813048a048ecbf10|commit]], [[https://git.kernel.org/linus/2cdd64cbf9906f9d2d52ef96e1471992ff6c27ec|commit]], [[https://git.kernel.org/linus/b599d44a71f1aa1acff54b05e4c0e60ea82ed90c|commit]], [[https://git.kernel.org/linus/033b76bc7f066b3e2e024e5ced0de0768d7d57b5|commit]], [[https://git.kernel.org/linus/74e5e3fb0dd71790a1974d63420d43bc5743a56b|commit]], [[https://git.kernel.org/linus/7e9b231c402a297251b3e6e0f5cc16cef7dd3ce5|commit]] * vhost-net: VIRTIO_F_IN_ORDER support [[https://lore.kernel.org/kvm/20250714084755.11921-1-jasowang@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/b4ba1207d45adaafa2982c035898b36af2d3e518|commit]], [[https://git.kernel.org/linus/67a873df0c410915275f735fedb401b9637d6faf|commit]], [[https://git.kernel.org/linus/45347e79b544928d8ace9eb07c4d8f4fcc525752|commit]] * vsock: Introduce SIOCINQ ioctl support [[https://lore.kernel.org/linux-hyperv/20250708-siocinq-v6-0-3775f9a9e359@antgroup.com/T/|(cover)]], [[https://git.kernel.org/linus/f0c5827d07cb34dfcf7d8751f1681151f547a268|commit]], [[https://git.kernel.org/linus/f7c72265927540fb24c99fee8a54da7db537656c|commit]], [[https://git.kernel.org/linus/53548d6bffacc610ee883d3c0e99eb476fb606d3|commit]], [[https://git.kernel.org/linus/613165683d344801c1d11fcacda6733f3b679e51|commit]] * iommu: Overhaul device posted IRQs support [[https://lore.kernel.org/kvm/20250523010004.3240643-1-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/cb210737675ef4c1ad88721e84558eeb2f199312|commit]], [[https://git.kernel.org/linus/05c5e23657e1d61c271c2f4a3a21d4d630b18a9b|commit]], [[https://git.kernel.org/linus/0a917e9d4b7070fafcbf7a8ec32d2aa444b4e757|commit]], [[https://git.kernel.org/linus/1da19c5ce0533796179d9e1b55e64bf78478c4c1|commit]], [[https://git.kernel.org/linus/a0ca34bb1aad0c72e3fe7b9377c7ac87fa3b7098|commit]], [[https://git.kernel.org/linus/430579577892f56d25d4bc97f34212acc00e55fa|commit]], [[https://git.kernel.org/linus/2e002ddc896684f668427113ec027f3025fe6c41|commit]], [[https://git.kernel.org/linus/3338c639da15a87cf57edc79de8409c98b704d87|commit]], [[https://git.kernel.org/linus/d8527f133c0a810b2e803a03aa186cfef721fbf8|commit]], [[https://git.kernel.org/linus/1aa6e256e46f0b72be6d6e0f890c11e0a1805f53|commit]], [[https://git.kernel.org/linus/c24ed209c474eae6a0a74beb63faa4184ada64ee|commit]], [[https://git.kernel.org/linus/26baab4eea4c135c2a2d2b5529a7a0467fba5bef|commit]], [[https://git.kernel.org/linus/d29433336a7b4783546cdca3096c3aee36610e70|commit]], [[https://git.kernel.org/linus/bafddc70001d1834b2f2e490e108bbb8812b4bed|commit]], [[https://git.kernel.org/linus/d921665e01ba86212bdace238bdff123bceffd46|commit]], [[https://git.kernel.org/linus/8de4a1c8164e5b2e40d1df764840a31de983f40b|commit]], [[https://git.kernel.org/linus/6737557442e5d21fef5c613c3079d26a4a4b0744|commit]], [[https://git.kernel.org/linus/52d826c9e54cc6b4f0107720dd1f254944f6e727|commit]], [[https://git.kernel.org/linus/c4cdbaf9d81c8387da8b9b91567d4b0eb1b8a549|commit]], [[https://git.kernel.org/linus/95d50ebe6df80b791d599b1f7434f3a8cac8a84f|commit]], [[https://git.kernel.org/linus/1e663ed239923447a0217d78a96bcdc8729022e0|commit]], [[https://git.kernel.org/linus/23ca102e6fb284f3c1d08d8bbbddceff2353427f|commit]], [[https://git.kernel.org/linus/0a64c447f6f81f79b69294c16b28680be59a3649|commit]], [[https://git.kernel.org/linus/f5369619f7f8add44fc5e3d05364d2ed293995fa|commit]], [[https://git.kernel.org/linus/9517aedecd0e73716b766f5c603518fd6e383454|commit]], [[https://git.kernel.org/linus/cf04ec393ed08b3d0566f0735675639732dca23a|commit]], [[https://git.kernel.org/linus/c5af31698d719acf35ec3e3a3610a7c92dac0e6e|commit]], [[https://git.kernel.org/linus/803928483669b41e84c27086ffcf28438c1a8cca|commit]], [[https://git.kernel.org/linus/53527ea1b70224d16d29edbd5c850456469f00ec|commit]], [[https://git.kernel.org/linus/b33252b9d17238a4a9fa5a29af6e6a2922a6c2b0|commit]], [[https://git.kernel.org/linus/77bb184ab880171a1cedfbed9ab05977e6ae2258|commit]], [[https://git.kernel.org/linus/511754bc548b59e136fcf433da23ba39c74684cf|commit]], [[https://git.kernel.org/linus/dc6adb13046abe199194f788e5d0dc41c67db5bc|commit]], [[https://git.kernel.org/linus/cc8b13105eac969bb721c52cf95fd35818b5c54c|commit]], [[https://git.kernel.org/linus/71d6b3b8e69d8a212c53df1150e559b101d6768b|commit]], [[https://git.kernel.org/linus/c3d591c91f9c99a35f8cf80d28ea689214a1acf3|commit]], [[https://git.kernel.org/linus/3be405e89f3daea23ddfcf6b6526ae44ce38dd9a|commit]], [[https://git.kernel.org/linus/08d9ccdd1a5c75d7aca7ac3af56f723d780dd6ac|commit]], [[https://git.kernel.org/linus/0b2b541fa3cd85bb06fdd9353764673aa2bfd54a|commit]], [[https://git.kernel.org/linus/f965255dc5033387ac7858787c6c792fd789ac34|commit]], [[https://git.kernel.org/linus/6df262f915abc0ec988b203c696845b76a7bc7b4|commit]], [[https://git.kernel.org/linus/f5998661ff73b5e76974fd7913c1ccc3ff0a07a0|commit]], [[https://git.kernel.org/linus/fe0213923dd991cbe6a1e84b9bf600aaf172b530|commit]], [[https://git.kernel.org/linus/16562766f171199acf0ee5d6e6bbe4b4586293ce|commit]], [[https://git.kernel.org/linus/48f79c6c86b38f9b6506eeef0d9ca2e03b6be6fe|commit]], [[https://git.kernel.org/linus/cd86240fea2645abd3cdd4d87f27f3a4a0595da7|commit]], [[https://git.kernel.org/linus/04c4ca0ae47989d8f1263ffa6b77ab05d6160854|commit]], [[https://git.kernel.org/linus/d1bccaa1793d8f823983824635933e4bdc752b64|commit]], [[https://git.kernel.org/linus/25ef059e8bc51219f18fb7444aff1907960a3a53|commit]], [[https://git.kernel.org/linus/99836eb9c5dcae1f0e64da2cb6f7e0bb9151f95d|commit]], [[https://git.kernel.org/linus/77e1b8332d1d7aa786f7515e9bd4055def6a1e06|commit]], [[https://git.kernel.org/linus/ce9d54f41be03555f1b57cf9dc2a50c45f9f712e|commit]], [[https://git.kernel.org/linus/11a60455d4c9d50f07a36efefd5e487989b99b8b|commit]], [[https://git.kernel.org/linus/a23480fe21de60b3e191faa5b0a5ddd24c5e38d6|commit]], [[https://git.kernel.org/linus/f2bc961d383bbc26c72f77e3f452da2f9f44dc0d|commit]], [[https://git.kernel.org/linus/6eab2340f339cabb63079c94e5dbaea4d90007df|commit]], [[https://git.kernel.org/linus/5f3d06b1648e0878f04e3d4819f2ef16c1b40bbf|commit]], [[https://git.kernel.org/linus/b9e53f9ff4a88f01b22524878c9a381a6c5f65ff|commit]], [[https://git.kernel.org/linus/b03500f03ea09f5fa31a408135c95c665542ff15|commit]] * vfio/qat: add support for intel QAT 6xxx virtual functions [[https://git.kernel.org/linus/1e9c0f1da562651160456e45629f815673c2dd5e|commit]] = Cryptography = * Sha-512 library functions [[https://lore.kernel.org/linux-crypto/20250630160320.2888-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/e0fca177556c4419819876ac5a947b0844115d56|commit]], [[https://git.kernel.org/linus/b693c703accb08cbd52f0b94d810d6abbca3bfb9|commit]], [[https://git.kernel.org/linus/23e8b4371dbd5907d633262f36903144a378a114|commit]], [[https://git.kernel.org/linus/485deceec03997eabd884d4da89217af73d1ab8d|commit]], [[https://git.kernel.org/linus/469acaa12502e05eefd439693361fe4b851a4fd5|commit]], [[https://git.kernel.org/linus/4bc7f7b687a2a1506cdc457bc4f6d29a81794a08|commit]], [[https://git.kernel.org/linus/24c91b62ac50a798ceabb3482efbca3e0e88a2db|commit]], [[https://git.kernel.org/linus/60e3f1e9b7a57567c2f3b3ae013e3e292cf6d115|commit]], [[https://git.kernel.org/linus/ecac3068ffc28324070e96c46d171b5431215c0d|commit]], [[https://git.kernel.org/linus/7117739ad2b40298776f428382ebce525adc7f7d|commit]], [[https://git.kernel.org/linus/b59059a22c5a717284b05385de5c0cbff2879859|commit]], [[https://git.kernel.org/linus/b7b366087e0f1645f867077a14bab617516d0f57|commit]], [[https://git.kernel.org/linus/02b35bab7e6c5bb2a843828316d528216b8cedc8|commit]], [[https://git.kernel.org/linus/484c18119f4fbc6bca7c41e64b6fa84133e1057b|commit]], [[https://git.kernel.org/linus/6486f2b0368dca5b7ba003d3904bfc64ff2439d5|commit]], [[https://git.kernel.org/linus/9b5c0d82b26d10733f67e10ea1889fc24aa6840a|commit]] * Sha-256 library improvements [[https://lore.kernel.org/linux-crypto/20250630160645.3198-1-ebiggers@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/1cf5cdf8d2ae3a55cc4890c02feb5da18e423e5d|commit]], [[https://git.kernel.org/linus/85de1929e17e71fafc51473ba1d14101e80180f5|commit]], [[https://git.kernel.org/linus/3135d5be7c27841526d98150c245304ab312e9f4|commit]], [[https://git.kernel.org/linus/9f97707bdb1e479ea15e14e5525164f5f1128e97|commit]], [[https://git.kernel.org/linus/6fa4b292204b15e0e269a9fd33bc99b5e36b6883|commit]], [[https://git.kernel.org/linus/b86ced882b8e667758afddffd8d6354197842110|commit]], [[https://git.kernel.org/linus/4c855d5069ee2edbcf62fafc7f1a5d4cfea1bce1|commit]], [[https://git.kernel.org/linus/077833cd600908359391bd22d5350c9106ea238c|commit]], [[https://git.kernel.org/linus/e0cd3716910385ba1ccbd433c860516cf806fc71|commit]], [[https://git.kernel.org/linus/07f090959bba437dd531bd2e08440ec6bf588878|commit]], [[https://git.kernel.org/linus/9f9846a72eec406db9e1eadcad1dd5e90aa0f355|commit]], [[https://git.kernel.org/linus/e96cb9507f2d8ba150d417dcd283204564945831|commit]], [[https://git.kernel.org/linus/773d2b99bb76131f65f98828221142ccd2cec856|commit]], [[https://git.kernel.org/linus/b34c9803aabd85189ffacc0d3cdb9ce4515c2b4d|commit]] * SHA-1 library functions [[https://git.kernel.org/linus/56119446f89fbab40f3a160e9c3de33687cd85cf|commit]], [[https://git.kernel.org/linus/9503ca2ccafec51ee9e533d6f3aef14a589fc106|commit]], [[https://git.kernel.org/linus/90860aef630c5c9e58d05044f2866fcbfa7aa4d9|commit]], [[https://git.kernel.org/linus/4cbc84471bb606ddfaf424709dd8d56b56d7ae7b|commit]], [[https://git.kernel.org/linus/8bc79ab67d78e2991b9d6cf0b63789189212375a|commit]], [[https://git.kernel.org/linus/b10a74abcfc5c61afc63a567c457038be57eeb6e|commit]], [[https://git.kernel.org/linus/70cb6ca58fddb02e269fe743ba75d53d577b5b1c|commit]], [[https://git.kernel.org/linus/00d549bb89e471b7df550459fcb51ffbded39cbf|commit]], [[https://git.kernel.org/linus/b6ac1dac2f18d1f9714804654ad0643d5aeef4d5|commit]], [[https://git.kernel.org/linus/6b9ae8cfaa7abc65f9fc8bd93f0c707c31b7ce85|commit]], [[https://git.kernel.org/linus/377982d5618a7b80bf2ad3eed9aa62691e984d50|commit]], [[https://git.kernel.org/linus/c751059985e02467c7fa6b14676c1d56d089b3cc|commit]], [[https://git.kernel.org/linus/f3d6cb3dc0394b866bc0d1e15157ce45844cf3d3|commit]], [[https://git.kernel.org/linus/c76ed8790b3018fe36647d9aae96e0373f321184|commit]], [[https://git.kernel.org/linus/950a81224e8bda92813c5ecf851f488c94f06aba|commit]], [[https://git.kernel.org/linus/4dcf6caddaa0471c134bf0c869086fd0b57a9cc4|commit]], [[https://git.kernel.org/linus/571eaeddb67df84c4fd59c5496866c049fb25efe|commit]], [[https://git.kernel.org/linus/6dd4d9f7919e73bc7ad247eca82e8be1c123af0a|commit]], [[https://git.kernel.org/linus/66b130607908417a126de7fdc55f0c671ac365e6|commit]] * Improve crc32c() performance on newer x86_64 CPUs [[https://git.kernel.org/linus/118da22eb6fbd48f896d17411f942399283d600c|commit]], [[https://git.kernel.org/linus/110628e55a577468ef21f01e042e87c4257b2fd5|commit]] = Security = * apparmor * Add ability to mediate caps with policy state machine [[https://git.kernel.org/linus/ce9e3b3fa25a239f5c80989a1d05719bb2793fd4|commit]] * Add additional flags to extended permission. [[https://git.kernel.org/linus/2e12c5f060176ede209673e4f63ea5d0e3c5814c|commit]] * Add fine grained af_unix mediation [[https://git.kernel.org/linus/c05e705812d179f4b85aeacc34a555a42bc4f9ac|commit]] * Add support for profiles to define the kill signal [[https://git.kernel.org/linus/84c455decf27ce97a23fb70b58075592ab88d66a|commit]] * ima: add a knob ima= to allow disabling IMA in kdump kernel [[https://git.kernel.org/linus/aa9bb1b32594cd67cafd29b330b158128b503882|commit]] * Enhancements to the secvar interface in static key management mode [[https://lore.kernel.org/linux-integrity/20250610211907.101384-1-ssrish@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/fbf355f32b98903c572544ead7fc0db79583c3a2|commit]], [[https://git.kernel.org/linus/c1d96cd9a10bfea6aea71aaca6a161d98320edc5|commit]], [[https://git.kernel.org/linus/bde5b1a1553c5e96367afd4da64de947ae4b6f84|commit]] * selinux: * Introduce neveraudit types [[https://git.kernel.org/linus/1106896146d8711fdc899e6fc792e1d01f9b9f15|commit]] * Optimize selinux_inode_getattr/permission() based on neveraudit|permissive [[https://git.kernel.org/linus/951b2de06a0bd64930949c7d3bd5a113cdf24189|commit]] * Add a 5 second sleep to /sys/fs/selinux/user [[https://git.kernel.org/linus/8a71d8fa55760eb7f6b1c8a96e771e2678625b9c|commit]] * Add support for sync send() and use it in ftpm and svsm drivers [[https://lore.kernel.org/linux-kernel/20250620130810.99069-1-sgarzare@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/07d8004d6fb95cbe48918e56012f16454cfdfe89|commit]], [[https://git.kernel.org/linus/04fe47015d7726b42c34615c124697c7a3537bf0|commit]], [[https://git.kernel.org/linus/0637c10e72ef4b0645cb45873d21fd5f711ba041|commit]], [[https://git.kernel.org/linus/faddec84aa8a600f5f6857cdd9b9ea29f7cf60fb|commit]] = Networking = * af_unix: Introduce {{{SO_INQ}}} & {{{SCM_INQ}}} [[https://git.kernel.org/linus/b429a5ad19cb4efe63d18388a2a4deebcba742c6|commit]], [[https://git.kernel.org/linus/772f01049c4b722b28b3f7025b4996379f127ebf|commit]], [[https://git.kernel.org/linus/d0aac85449dec992bb8dc2503f2cb9e94ef436db|commit]], [[https://git.kernel.org/linus/f4e1fb04c12384fb1b69a95c33527b515a652a74|commit]], [[https://git.kernel.org/linus/8b77338eb2af74bb93986e4a8cfd86724168fe39|commit]], [[https://git.kernel.org/linus/df30285b3670bf52e1e5512e4d4482bec5e93c16|commit]], [[https://git.kernel.org/linus/e0f60ba041a0088a48a5064583e8c36306a8f7e3|commit]] * TCP: Add {{{MSG_MORE}}} flag to optimize tcp large packet transmission [[https://git.kernel.org/linus/76d727ae02b527426c73a446b9291df376db8944|commit]] * TCP: receiver changes [[https://git.kernel.org/linus/9ca48d616ed76b284f946667a3cb7961205c8ee3|commit]], [[https://git.kernel.org/linus/6c758062c64dfbd61862801fbde4e0702f4f3a23|commit]], [[https://git.kernel.org/linus/f5fda1a86884cf20d9b5842221b963bb16bcebf1|commit]], [[https://git.kernel.org/linus/38d7e444336567bae1c7b21fc18b7ceaaa5643a0|commit]], [[https://git.kernel.org/linus/445e0cc38d498e341f36f2e3a9cacf1ddf0b09b6|commit]], [[https://git.kernel.org/linus/75dff0584cce79203ee9968c66c7589150fed591|commit]], [[https://git.kernel.org/linus/1d2fbaad7cd8cc96899179f9898ad2787a15f0a0|commit]], [[https://git.kernel.org/linus/906893cf2cf275bf33eeff2c76a621c4b60c9bba|commit]] * TCP: Remove obsolete rfc3517/rfc6675 code [[https://lore.kernel.org/netdev/20250615001435.2390793-1-ncardwell.sw@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/1c120191dcec510cc17d587ece48a7ae875a90c5|commit]], [[https://git.kernel.org/linus/ba4618885b23372c45bb1566ed8e3f1c191ff22d|commit]], [[https://git.kernel.org/linus/db16319efcc717a31dcb9c8f038acb6e4111c12e|commit]] * Introduce net_aligned_data [[https://git.kernel.org/linus/3715b5df09b92168a4492b48bb7ea70d89f9d8f3|commit]], [[https://git.kernel.org/linus/998642e999d23324c5dbf38149606d09cec2c377|commit]], [[https://git.kernel.org/linus/83081337419cb692eca4ee475d936b1fdcfd49f6|commit]], [[https://git.kernel.org/linus/e3d4825124bce0d1f72187fabcf972b7c0b6cb9b|commit]] * Prevent deadlocks and mis-configuration with per-napi threaded config [[https://lore.kernel.org/netdev/20250809001205.1147153-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/bda053d6445717f8a4cd76f88caea2e39299fe07|commit]], [[https://git.kernel.org/linus/ccba9f6baa900e31ad1a4c36e6f3c176694f9eac|commit]], [[https://git.kernel.org/linus/b3fc08ab9a565efb42fe08be046a0d203b82cdb8|commit]] * ieee80211: add Radio Measurement action fields [[https://git.kernel.org/linus/aa34ecc42a2138af76642b68b53a5a07cb12fe43|commit]] * xsk: introduce XDP_MAX_TX_SKB_BUDGET setsockopt [[https://git.kernel.org/linus/45e359be1ce88fb22e61fa3aa23b2e450a6cae03|commit]] * seg6: Allow End.X behavior to accept an oif [[https://git.kernel.org/linus/01c411238c06e07ea5fa038f0ba9eaca8a53c419|commit]], [[https://git.kernel.org/linus/3159671855d4e169d24d2cc2a083bf657f9d9bc2|commit]], [[https://git.kernel.org/linus/a2840d4e25270cabff92ba10146cda00d5b92ec0|commit]], [[https://git.kernel.org/linus/04d752d60c190e754cfe4f95a7451afeb752adbd|commit]] * ipmr, ip6mr: Allow MC-routing locally-generated MC packets [[https://lore.kernel.org/netdev/cover.1750113335.git.petrm@nvidia.com/|(cover)]], [[https://git.kernel.org/linus/e3411e326fa48c9be09ba449330352ba698db698|commit]], [[https://git.kernel.org/linus/3b7bc938e0ada6a791103faae261dd2a770df86d|commit]], [[https://git.kernel.org/linus/b2e653bcff0f3eb43183393548f7142c176faa6d|commit]], [[https://git.kernel.org/linus/35bec72a24ace52a7f57642ff2813f22733b08fd|commit]], [[https://git.kernel.org/linus/6a7d88ca15f73c5c570c372238f71d63da1fda55|commit]], [[https://git.kernel.org/linus/f78c75d84fe83898f0a00658f593d4f17b38cbc6|commit]], [[https://git.kernel.org/linus/3365afd3abda5f6a54f4a822dad5c9314e94c3fc|commit]], [[https://git.kernel.org/linus/094f39d5e84d6c48bb38ded6b30f68b12cb8145b|commit]], [[https://git.kernel.org/linus/1b02f4475d29c6e2c4b7f1bae74149b9c1369791|commit]], [[https://git.kernel.org/linus/96e8f5a9fe2d91b9f9eb8b45cc13ce1ca6a8af82|commit]], [[https://git.kernel.org/linus/f8337efa4ff5a27e6c1d4e384166413eecd21a65|commit]], [[https://git.kernel.org/linus/2a719b7bacc74be9f04147be01262b6289ad8dc5|commit]], [[https://git.kernel.org/linus/4baa1d3a5080c18a079d3688fa9726973959ee20|commit]], [[https://git.kernel.org/linus/237f84a6d24a413b3a0795079afeb903ab1dec8a|commit]], [[https://git.kernel.org/linus/e3180379e2df535ac492c24ecc9719bf83b7a0f9|commit]] * tun: Introduce gso over udp tunnel [[https://lore.kernel.org/netdev/cover.1749210083.git.pabeni@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/e7d4c1c5a54648fd5b787a4a0f81521ec7260bcd|commit]], [[https://git.kernel.org/linus/69b9461512246599ed80cf13358e7e6aff7285f9|commit]], [[https://git.kernel.org/linus/333c515d189657c934470c9b0b8a8fedb016ce6f|commit]], [[https://git.kernel.org/linus/3b17aa13015cc50e2e3a0eac13c128002628a99c|commit]], [[https://git.kernel.org/linus/a2fb4bc4e2a6a031683910d85b278c1d25ae5420|commit]], [[https://git.kernel.org/linus/56a06bd40fab64448aa6b84aa06b3dc470c1254a|commit]], [[https://git.kernel.org/linus/288f30435132d2f9e7a29ec9b9745a4f9dc7fd37|commit]], [[https://git.kernel.org/linus/bbca931fce262cdb3e5fddcc39e62f3bf9ac25cc|commit]] * XDP: A fistful of generic changes (+libeth_xdp) [[https://lore.kernel.org/bpf/20241113152442.4000468-1-aleksander.lobakin@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/0dffdb3b3366c932fb7d210f5032476c552f7000|commit]], [[https://git.kernel.org/linus/c6594d64271704b335378e7b74c39fe4d4fcc777|commit]], [[https://git.kernel.org/linus/7cd1107f48e2a246c6a628c2381e1b8aafa4675a|commit]], [[https://git.kernel.org/linus/dcf3827cde8621d2317a7f98e069adbdc2112982|commit]], [[https://git.kernel.org/linus/f65966fe0178c06065d354c22fb456fc4370b527|commit]], [[https://git.kernel.org/linus/e77d9aee951341119be16a991fcfc76d1154d22a|commit]], [[https://git.kernel.org/linus/fcc680a647ba77370480fe753664cc10d572b240|commit]], [[https://git.kernel.org/linus/56d95b0adfa224bb1c67733dbcad30dd8debd39e|commit]], [[https://git.kernel.org/linus/68ddc8ae17685a8c4ac78260bde8fe4a79511aef|commit]], [[https://git.kernel.org/linus/539c1fba1ac77184215d892eda0857f5687b7366|commit]], [[https://git.kernel.org/linus/ca5c94949facce1f67a4a9a9528a27f635ff3e78|commit]], [[https://git.kernel.org/linus/9e25dd9d65d27aa94220831fe6453d935988801c|commit]], [[https://git.kernel.org/linus/560d958c6c68fa62ddb4bd6f890c363598d184b0|commit]], [[https://git.kernel.org/linus/23d9324a27a48858cfdd7f0342f52328e8595c6d|commit]], [[https://git.kernel.org/linus/35c64b6500ef7308155bf0dc556c646e4d7b0fd3|commit]] * bonding: Add broadcast_neighbor for no-stacking networking arch [[https://lore.kernel.org/netdev/cover.1751031306.git.tonghao@bamaicloud.com/T/|(cover)]], [[https://git.kernel.org/linus/ce7a381697cb3958ffe0b45e5028ac69444e9288|commit]], [[https://git.kernel.org/linus/3d98ee52659c3f1d3913ae5b97f7743c5247752c|commit]], [[https://git.kernel.org/linus/2f9afffc399d450c68a4dbebd7865b8e631a3cff|commit]] * Provide support for auxiliary clocks for ptp_sys_offset_extended [[https://lore.kernel.org/linux-kernel/20250701130923.579834908@linutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/5b605dbee07dda8fd538af1f07cbf1baf0a49cbc|commit]], [[https://git.kernel.org/linus/4c09a4cebd0320c5381afad3fb6f997f20082a3b|commit]], [[https://git.kernel.org/linus/17c395bba1a3983b1b1918286979bae5f6851f33|commit]] * Preserve {{{MSG_ZEROCOPY}}} with forwarding [[https://git.kernel.org/linus/d2527ad3a9e1f3031095d65376a94a8e640b2b74|commit]], [[https://git.kernel.org/linus/81d572a551f43c01380e4aa39a6b9f331c931fbc|commit]] * pse-pd: Add support for pse budget evaluation strategy [[https://lore.kernel.org/netdev/20250617-feature_poe_port_prio-v14-0-78a1a645e2ee@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/fa2f0454174c2f33005f5a6e6f70c7160a15b2a1|commit]], [[https://git.kernel.org/linus/fc0e6db30941a66e284b8516b82356f97f31061d|commit]], [[https://git.kernel.org/linus/f5e7aecaa4efcd4c85477b6a62f94fea668031db|commit]], [[https://git.kernel.org/linus/50f8b341d26826aa5fdccb8f497fbff2500934b3|commit]], [[https://git.kernel.org/linus/1176978ed851952652ddea3685e2f71a0e5d61ff|commit]], [[https://git.kernel.org/linus/c394e757dedd9cf947f9ac470d615d28fd2b07d1|commit]], [[https://git.kernel.org/linus/ffef61d6d27374542f1bce4452200d9bdd2e1edd|commit]], [[https://git.kernel.org/linus/eeb0c8f72f49a21984981188404cfd3700edbaff|commit]], [[https://git.kernel.org/linus/359754013e6a7fc81af6735ebbfedd4a01999f68|commit]], [[https://git.kernel.org/linus/24a4e3a05dd0eadd0c9585c411880e5dcb6be97f|commit]], [[https://git.kernel.org/linus/2903001ee3b4be2e98d4da7f96f9edc4115cf2d3|commit]], [[https://git.kernel.org/linus/56cfc97635e9164395c9242f72746454347155ab|commit]], [[https://git.kernel.org/linus/82566eb4ea518812f9ad51588b9c0af8a144f76c|commit]] * ethtool: rss: add notifications [[https://lore.kernel.org/netdev/20250623231720.3124717-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/826334359eacc1b70e9752ebc4954ed775dd40ca|commit]], [[https://git.kernel.org/linus/ceca0769e87ff4e33e8dab9c0277646da6d422fe|commit]], [[https://git.kernel.org/linus/963781bdfe2007e062e05b6b8a263ae9340bd523|commit]], [[https://git.kernel.org/linus/f9dc3e52d821dc1f9afeec43fb1c18ac94bd587a|commit]], [[https://git.kernel.org/linus/3073947de382a27d8621be31594cb694b3a83f43|commit]], [[https://git.kernel.org/linus/46837be5afc6ea70bc827ca4439410e069e2ee37|commit]], [[https://git.kernel.org/linus/47c3ed01af43784ef8ef4af96d35da464770b3f5|commit]], [[https://git.kernel.org/linus/4d13c6c449af374fbcd0580764a216668d970d26|commit]] * ethtool: rss: support RSS_SET via Netlink [[https://lore.kernel.org/netdev/20250716000331.1378807-1-kuba@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/c0ae03588bbb95378758fe80e7436a9b4cfc71f6|commit]], [[https://git.kernel.org/linus/1560af51e1ea32f87b7be2c28bb623308b37acf3|commit]], [[https://git.kernel.org/linus/c3e91403103974e8f40dc170f384c0b707fe93e4|commit]], [[https://git.kernel.org/linus/6e7eb93a692c21d8d1496e31df8b0d5f77d98ea2|commit]], [[https://git.kernel.org/linus/82ae67cbc423425ecc5836daa520442d4c8bdb33|commit]], [[https://git.kernel.org/linus/51798c519a9178d179913ac1417ea3e1d27f5fce|commit]], [[https://git.kernel.org/linus/169b26207a46a558588c9558da7b375dfcd61513|commit]], [[https://git.kernel.org/linus/c1b27f0695d65e91878d6ae917c285d3163297e4|commit]], [[https://git.kernel.org/linus/d3e2c7bab12409e87bd6b20505c19f5532a727db|commit]], [[https://git.kernel.org/linus/2f70251112ec412b6edf9769b2f9dd572145f38b|commit]], [[https://git.kernel.org/linus/00e6c61c5a0a8277e0cb3e1ec9fdaf79a5928819|commit]] * ethtool: rss: support creating and removing contexts via Netlink [[https://git.kernel.org/linus/80e55735d5a5a1f765e807d4c38027039f48302f|commit]], [[https://git.kernel.org/linus/5f5c59b78e5a9389da07c1913dbe5ffd6d2759ee|commit]], [[https://git.kernel.org/linus/a45f98efa483b7f40a97546b11a8020564a268ce|commit]], [[https://git.kernel.org/linus/5c090d9eae8807420bcb01a6280b02774e5320c6|commit]], [[https://git.kernel.org/linus/55ef461ce18fbe678f0b4834fc1eaa38c24f83fe|commit]], [[https://git.kernel.org/linus/a166ab7816c534973745b0fe7bce3c8cefc5426f|commit]], [[https://git.kernel.org/linus/fbe09277fa6324b50cc4eedb4d99498cf7dad897|commit]], [[https://git.kernel.org/linus/4c86c9fdf6a51394434811add48c7d5fe7da47ef|commit]] * handshake: Add new netlink parameter 'HANDSHAKE_A_ACCEPT_KEYRING' [[https://git.kernel.org/linus/e22da4685013922ade8e7b5e727ac6804fe5b51e|commit]] * ip6_tunnel: enable to change proto of fb tunnels [[https://git.kernel.org/linus/0341e34727367585436715b4a5d107921f8fecf6|commit]] * ipv6: add `force_forwarding` sysctl to enable per-interface forwarding [[https://git.kernel.org/linus/f24987ef6959a7efaf79bffd265522c3df18d431|commit]] * Lockless sk_sndtimeo and sk_rcvtimeo [[https://git.kernel.org/linus/3169e36ae14802b01abe4bfa7ec593b0a1af5cc7|commit]], [[https://git.kernel.org/linus/935b67675a9f233aa4ac4ae6452b2cc45418d839|commit]] * mctp * Improved bind handling [[https://lore.kernel.org/netdev/20250710-mctp-bind-v4-0-8ec2f6460c56@codeconstruct.com.au/T/|(cover)]], [[https://git.kernel.org/linus/3558ab79a2f22086c040542f4e4e6b005bc28a06|commit]], [[https://git.kernel.org/linus/3954502377ec05a1b37e2dc9bef0bacd4bbd71b2|commit]], [[https://git.kernel.org/linus/5000268c298219396cc01b8c3363a578cd168085|commit]], [[https://git.kernel.org/linus/4ec4b7fc04a7217a6a581ac132bd0fb6abc2f4d5|commit]], [[https://git.kernel.org/linus/1aeed732f4f885ad36280ca4afb331fa42bf7263|commit]], [[https://git.kernel.org/linus/3549eb08e5505823857838b5cf5f08567702d054|commit]], [[https://git.kernel.org/linus/b7e28129b667dede890bc7bd340a77e325df156a|commit]], [[https://git.kernel.org/linus/e6d8e7dbc5a363a8e55a65f3bbe7f9f44f0aeb4f|commit]] * backport of mctp routing for bridged endpoints. [[https://lore.kernel.org/lkml/20250918-mctp_gateway_routing-v1-0-8fdedda742c3@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/e0f3c79cc0bbf4925de1afde5abf148b7f7f4398|commit]], [[https://git.kernel.org/linus/fc2b87d036e2155b16f8c53c8198df7b376fd616|commit]], [[https://git.kernel.org/linus/269936db5eb3962fe290b1dc4dbf1859cd5a04dd|commit]], [[https://git.kernel.org/linus/3007f90ec0385304ab5794e9585427b73f40e32f|commit]], [[https://git.kernel.org/linus/96b341a8e78272b70905a5ac8b01e0cb97ae07de|commit]], [[https://git.kernel.org/linus/46ee16462fed5c3a065b603d677a9a36462dab7d|commit]], [[https://git.kernel.org/linus/80bcf05e54e0e269515192c3a2ceff736a730492|commit]], [[https://git.kernel.org/linus/19396179a0f1f912b22c051afb468482b0d9466f|commit]], [[https://git.kernel.org/linus/9b4a8c38f4fe8f6ed51032165c0fc34007d88415|commit]], [[https://git.kernel.org/linus/48e6aa60bf281e86372d174d96fb1147f02743b3|commit]], [[https://git.kernel.org/linus/4a1de053d7f0940936f6602ad53fe077bb10ff7f|commit]], [[https://git.kernel.org/linus/28ddbb2abe13776d3835f4bda535edd46336870a|commit]], [[https://git.kernel.org/linus/ad39c12fcee34b8980a80ad5c803bca9906fbd4e|commit]], [[https://git.kernel.org/linus/48e1736e5dc1dce875fdaba9b99c01dd4cd226a0|commit]] * Add {{{TCP_MAXSEG}}} socket option support [[https://lore.kernel.org/lkml/cover.1745991978.git.geliang@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/51a62199a8aaac0d1645b1dd8e670a6f35aead81|commit]], [[https://git.kernel.org/linus/51c5fd09e1b457eed103a22893603fb83a818162|commit]] * neighbour * Add support for externally validated neighbor entries [[https://lore.kernel.org/netdev/20250626073111.244534-1-idosch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/03dc03fa0432a9160c4fcbdb86f274e6b4587972|commit]], [[https://git.kernel.org/linus/171f2ee31a42f1802299862686c2521eda77dc61|commit]] * Add support for NUD_PERMANENT proxy entries [[https://git.kernel.org/linus/c7d78566bbd30544a0618a6ffbc97bc0ddac7035|commit]] * netfilter * nf_tables: Introduce NFTA_DEVICE_PREFIX [[https://git.kernel.org/linus/4039ce7ef40474d5ba46f414c50cc7020b9cf8ae|commit]] * nfnetlink: New NFNLA_HOOK_INFO_DESC helper [[https://lore.kernel.org/netfilter-devel/20250725170340.21327-11-pablo@netfilter.org/T/|(cover)]], [[https://git.kernel.org/linus/bc8c43adfdc57c8253884fc1853cb6679cd5953d|commit]], [[https://git.kernel.org/linus/7792c1e03054440c60d4bce0c06a31c134601997|commit]], [[https://git.kernel.org/linus/17a20e09f086f2c574ac87f3cf6e14c4377f65f6|commit]], [[https://git.kernel.org/linus/531e61312104d991459af73c838396db26aa3550|commit]], [[https://git.kernel.org/linus/d8d871a35ca9ee4881d34995444ed1cb826d01db|commit]], [[https://git.kernel.org/linus/897eefee2eb73ec6c119a0ca357d7b4a3e92c5ef|commit]], [[https://git.kernel.org/linus/bf58e667af7d96c8eb9411f926a0a0955f41ce21|commit]], [[https://git.kernel.org/linus/8d1c91850d064944ab214b2fbfffb7fc08a11d65|commit]], [[https://git.kernel.org/linus/8b4a1a46e84a17f5d6fde5c506cc6bb141a24772|commit]] * packet scheduler * Add DualPI Improved with a Square (DualPI2) [[https://git.kernel.org/linus/320d031ad6e4d67e8e1ab08ac71efda02bc85683|commit]], [[https://git.kernel.org/linus/d4de8bffbef4a7e4ad14b9fd2ff8e2d0e06b3fa5|commit]], [[https://git.kernel.org/linus/8f9516daedd67097a0c6e463fcb7a42b5ee9d477|commit]], [[https://git.kernel.org/linus/51217c659e741e7e5452ac550aaf83692d3d14cd|commit]], [[https://git.kernel.org/linus/032f0e9e15a41899ccd0d8173c07b7c2a7236174|commit]], [[https://git.kernel.org/linus/68db0ff2f76a68fe088d478e6267a0bf46c84cf1|commit]] * openvswitch: allow providing upcall pid for the 'execute' command [[https://git.kernel.org/linus/59f44c9ccc3bb68aa3b062b8e57ce0e1ee2fca75|commit]] * Wireless * Add S1G station support [[https://git.kernel.org/linus/5ea255673cdb4a9bf99dd3e4fc9ca1089f5692a3|commit]], [[https://git.kernel.org/linus/2a8a6b7c4cb03808a707ae19b2f0c5eb9b631e9e|commit]], [[https://git.kernel.org/linus/037dc18ac3fb8f46c72057411d7011a5baaab559|commit]], [[https://git.kernel.org/linus/a50522962453b75eb34de581c604850fab7bedac|commit]] * Add support to handle per link statistics of multi-link station [[https://lore.kernel.org/linux-wireless/20250528054420.3050133-1-quic_sarishar@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/e581b7fe62218d390520287e0095bfd6fe0454f8|commit]], [[https://git.kernel.org/linus/d2329fff7e527e8b350086be2e7cbf0d190177a3|commit]], [[https://git.kernel.org/linus/82d7f841d9bd11cda0cdddf21c70498836b82699|commit]], [[https://git.kernel.org/linus/2d226d41db4bf6f1c244bae70ecd5554a504b2d1|commit]], [[https://git.kernel.org/linus/49e47223ecc4af0bd15b5267184d46b3654d520b|commit]], [[https://git.kernel.org/linus/80b2fa46791742cf8723813bcc93cf39f107c034|commit]], [[https://git.kernel.org/linus/8af903e4543e68800ebd9291ff86ed0dfbcfed1d|commit]], [[https://git.kernel.org/linus/505991fba9ec112770c79a0fea56b4c49a5ad2fa|commit]], [[https://git.kernel.org/linus/5e9129f574d98ca1b8ed51d5d5d433344b180bd8|commit]], [[https://git.kernel.org/linus/4cb1ce7e254adeeeec7ccbb45125307aec4d0f0b|commit]] * S1g short beacon support [[https://lore.kernel.org/linux-wireless/20250717074205.312577-1-lachlan.hodges@morsemicro.com/T/|(cover)]], [[https://git.kernel.org/linus/6624a0af82a6e3a4d3609264ef591a8fa3467139|commit]], [[https://git.kernel.org/linus/bbf93a06d73505591db3a93797f44b9c44555d9b|commit]], [[https://git.kernel.org/linus/2758b703a9b389158964b3ae6ca171b66bfc883c|commit]], [[https://git.kernel.org/linus/f8bf97ad19c48f5e66cf99bd390356ffa1189d62|commit]] * Macro improvements and MLO enhancements [[https://lore.kernel.org/linux-wireless/20250718060837.59371-1-maharaja.kennadyrajan@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/f562f6a5899d91940fd5ef78e3f6042f56abe3e2|commit]], [[https://git.kernel.org/linus/4e1916dec9850cd49dd5792200ab649061cbedc1|commit]], [[https://git.kernel.org/linus/66e53e117f41df05d3fd4f8c65810e148fc23669|commit]], [[https://git.kernel.org/linus/1bc892d76a6f8778945eaa44af4e7f95faf5fbd4|commit]] * Add support for link reconfiguration offload to driver [[https://git.kernel.org/linus/5ae1fc4069578f50798f3372f36a3c13ee565b66|commit]], [[https://git.kernel.org/linus/7c598c653ad465138ecc2fe64492633c541effef|commit]] * Set/get wiphy parameters on per-radio basis [[https://lore.kernel.org/linux-wireless/20250615082312.619639-1-quic_rdevanat@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/b74947b4f6ff7c122a1bb6eb38bb7ecfbb1d3820|commit]], [[https://git.kernel.org/linus/264637941cf45cd3ffe070e25853d7e1a29f2004|commit]], [[https://git.kernel.org/linus/89595190058c6e9ca4a8ca7d49be3fc8d2395e79|commit]], [[https://git.kernel.org/linus/407bc77b7083f155325c1c571c0c608312839330|commit]] * Remove DISALLOW_PUNCTURING_5GHZ code [[https://lore.kernel.org/linux-wireless/20250609213231.4dff5fb8890f.Ie531f912b252a0042c18c0734db50c3afe1adfb5@changeid/T/|(cover)]], [[https://git.kernel.org/linus/62c57ebb3107842482bc5e3568a0202295a8db0d|commit]], [[https://git.kernel.org/linus/ff1ac756eaaadd5e271c5834b2ae80a447a49008|commit]], [[https://git.kernel.org/linus/a9681efa1b69bcc39735cae6fd3c8170fb56a775|commit]], [[https://git.kernel.org/linus/a11ec0dc920b2a23da9d88063b5f15d7eada6128|commit]], [[https://git.kernel.org/linus/6b04716cdcac37bdbacde34def08bc6fdb5fc4e2|commit]] * Bluetooth * ISO: Support SCM_TIMESTAMPING for ISO TS [[https://git.kernel.org/linus/ef568ae04ead4d132481550fde36fcdd29a31b3b|commit]] * ISO: add socket option to report packet seqnum via CMSG [[https://git.kernel.org/linus/7565bc56598c3d135318f1bd76a0178dd3ea918f|commit]] * hci_event: Add support for handling LE BIG Sync Lost event [[https://git.kernel.org/linus/b2a5f2e1c127cb431df22e114998ff72eb4578c8|commit]] = Architectures = * ARM * New !SoCs: * Add support for mediatek mt6572 soc, an older mobile phone chip from mediatek that was extremely popular a decade ago but never got upstreamed until now [[https://lore.kernel.org/linux-kernel/20250702-mt6572-v4-0-bde75b7ed445@proton.me/T/|(cover)]], [[https://git.kernel.org/linus/0c8a3a284a4fb56f0540f216f7428b39ba911ac8|commit]], [[https://git.kernel.org/linus/9272cff87d3343bffaf279ffbdfd0522fc8a76df|commit]], [[https://git.kernel.org/linus/085e9f15a739f5f2c8622e82e3fe3c57ddff61f1|commit]], [[https://git.kernel.org/linus/f47d6e3ce61f0fe00798d6ce90a54511ef5c0000|commit]], [[https://git.kernel.org/linus/d45bacd6be2d9a75f2bad5ed011e087b479f801a|commit]], [[https://git.kernel.org/linus/8d26effc113b844eb6224cd84a052ac13631133c|commit]], [[https://git.kernel.org/linus/20e672e65844469fc36a52326dfea80f1068705a|commit]], [[https://git.kernel.org/linus/38a9dac26704382c0a33c46854c7beae2a5cc74c|commit]], [[https://git.kernel.org/linus/7f3f9e565316d4c9c739569d46ae812b8c1e0535|commit]], [[https://git.kernel.org/linus/5a8e7b4eaaa232d747517fe34ba6867139a4cea8|commit]] * exynos2200, a recent high-end mobile phone chip used in a few Samsung phones like the Galaxy S22 [[https://lore.kernel.org/linux-samsung-soc/20250504145907.1728721-1-ivo.ivanov.ivanov1@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a67a28f59fbaeebbc37186d60a6c56e16b99829c|commit]], [[https://git.kernel.org/linus/11715fcf1ccab759d43ee1ad3b1b5bedd7559b48|commit]], [[https://git.kernel.org/linus/5430fd9e0794a21b08ccdc01ddc942b09830c1be|commit]], [[https://git.kernel.org/linus/6c1497a4bd72438360d977f37837d9638b702f33|commit]] * Renesas R-Car V4M-7 (!R8A779H2), an updated version of R-Car V4M (!R8A779H0) and used in automotive applications [[https://git.kernel.org/linus/f2ce1fd2d991c53d61951b3c90eda2d3b0a023ec|commit]], [[https://git.kernel.org/linus/ceff7d21a1a2d9ebc14efca68fd8ec0e99c937f0|commit]], [[https://git.kernel.org/linus/9f252558104e7e028aaa15fc1daaeedace89187e|commit]], [[https://git.kernel.org/linus/424ada15dee7e9e54e04e3203e73529dce7ebe70|commit]] * Tegra264, a new chip from NVIDIA, but support is fairly minimal for now [[https://lore.kernel.org/linux-tegra/20250709222147.3758356-1-thierry.reding@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/0b226380d4cce2e6ee50800d861934d474a30121|commit]], [[https://git.kernel.org/linus/2401dc4dcdd02920faa9a8c4384f1503a15e779a|commit]] * New boards: * Six 32-bit industrial boards based on stm32 (stm32mp157f-dk2 board [[https://lore.kernel.org/devicetree/20250603-stm32mp157f-dk2-v2-0-5be0854a9299@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/ab2e0f4f6cbfa8220e75a29cf80abbd8eeec7879|commit]], [[https://git.kernel.org/linus/8ac2fba023cfb2f0ead73e527b5920369db625eb|commit]], [[https://git.kernel.org/linus/9bc35edb9ac76b23285e7ceafa1576ce53da9b6c|commit]], [[https://git.kernel.org/linus/bcd6cc9ee13a5cb2c323b45f6b177e4296f9f164|commit]], [[https://git.kernel.org/linus/d1e88874c0f63cc923fc215fb95e5fd55a507d58|commit]], [[https://git.kernel.org/linus/ef21a063d123af0e5773ee60695fb2218a25ee67|commit]], [[https://git.kernel.org/linus/fadfd41a49ce563ab3ed05bd512cb78c26823e4b|commit]]), imx6 (Engicam MicroGEA BMM board [[https://git.kernel.org/linus/02e0babff3f785c131f3a79ebf8c9014450335d0|commit]], Engicam MicroGEA RMM board [[https://git.kernel.org/linus/ffea3cac94ba5f43837acf6c42a4a2215e1e96a6|commit]], support Engicam MicroGEA-MX6UL SoM [[https://git.kernel.org/linus/a8281618e8a50f22082f7159900bc066abe7098c|commit]]) and am33 (!BeagleBone Green Eco board [[https://git.kernel.org/linus/6d04ead94d49df8d549122d89999f1faf27b5373|commit]]) chips * Add support for beaglebone green eco board [[https://lore.kernel.org/linux-omap/20250620-bbg-v5-0-84f9b9a2e3a8@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/297bd457c893966f37fc07b68162862bff3e7c77|commit]], [[https://git.kernel.org/linus/23c7d1976f52fd8b8031ac0e5f4f60166cdc32b5|commit]], [[https://git.kernel.org/linus/6d04ead94d49df8d549122d89999f1faf27b5373|commit]], [[https://git.kernel.org/linus/d50faff722189fa8964871347d55bca53548b659|commit]], [[https://git.kernel.org/linus/acbf491e07add62ce7e820552432a14d9a53ab67|commit]] * Add support for am62d2 soc and evm [[https://lore.kernel.org/devicetree/20250708085839.1498505-1-p-bhagat@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/1704b0462220beabda1ddb4b386e1295defa39fd|commit]], [[https://git.kernel.org/linus/6f4b2a487352fa775bea4393d2455d334ccc97d4|commit]], [[https://git.kernel.org/linus/106f43ab41fa968c5ce3920e281870b99a519b13|commit]], [[https://git.kernel.org/linus/1544bca2f188e47256b61ae5e24ea93a292bb559|commit]] * allwinner: t527: Add !OrangePi 4A board [[https://lore.kernel.org/devicetree/20250628161608.3072968-1-wens@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/bbe7cf4bab161a50ce631c9dd7724df333cdf12d|commit]], [[https://git.kernel.org/linus/6e2662c07a90e9f782158b7d6eda2766f65e9c36|commit]], [[https://git.kernel.org/linus/84c4a16e00f5aadbb1a3bdecc6bbfee35b7c45c8|commit]], [[https://git.kernel.org/linus/64f2f7bc4acb7928b39cac4a9a932e77b966f31c|commit]], [[https://git.kernel.org/linus/de713ccb99345be302adf507274d1b190dd2302e|commit]] * freescale: Add support for the GOcontroll Moduline Display [[https://lore.kernel.org/devicetree/20250520-initial_display-v7-0-a8f0195420aa@gocontroll.com/T/|(cover)]], [[https://git.kernel.org/linus/24e67d28ef9590ea00a258e29a5107b11ce905a8|commit]], [[https://git.kernel.org/linus/31ff1060175c45844960e6006b28242cad0267cd|commit]], [[https://git.kernel.org/linus/bac63d7c5f461f0efc7af7072d686ea495880ddd|commit]], [[https://git.kernel.org/linus/03f07be54cdc5c3dd86bd538d3cc69a5639ff2b8|commit]], [[https://git.kernel.org/linus/6121e3a4d24738d36e1fee897d5e47e0bce9cebf|commit]], [[https://git.kernel.org/linus/abe127c46704d3619ef8b1280b81965c8ddc0cca|commit]] * Add new imx imx95-libra-rdk-fpsc sbc [[https://lore.kernel.org/devicetree/20250611-wip-y-moog-phytec-de-imx95-libra-v3-0-c8d09f1bdbf0@phytec.de/T/|(cover)]], [[https://git.kernel.org/linus/f794181b723141faa071d73b258a073e2c82d6ac|commit]], [[https://git.kernel.org/linus/911e3962564861704451a7abeafd4e2383559e47|commit]] * Two newly added ASPEED BMC based motherboards [[https://git.kernel.org/linus/90e9de1d0921083a5f0be8bd748a796204fcacaa|commit]], [[https://git.kernel.org/linus/9237e0a207ac61b77eec84e917e63683959ef009|commit]], [[https://git.kernel.org/linus/a7d6d2d622d7af7127051d7dd985fb1ffba16239|commit]] * qcom: msm8976-longcheer-l9360: Add initial device tree [[https://lore.kernel.org/phone-devel/20250615-bqx5plus-v2-0-72b45c84237d@apitzsch.eu/T/|(cover)]], [[https://git.kernel.org/linus/76270a18dbdf0bb50615f1b29d2cae8d683da01e|commit]], [[https://git.kernel.org/linus/3440c6d1f81dc6fa6356b0f9adbf1dc785ceb426|commit]], [[https://git.kernel.org/linus/cf3dcd80dbe45f1915bd9630f3e20bcdbf6360ac|commit]], [[https://git.kernel.org/linus/79b896e7da7e2743fc930d260bcecd1e84a003c4|commit]] * X1E asus zenbook a14 support [[https://lore.kernel.org/lkml/20250614205718.93166-1-alex.vinarskis@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/6516961352a1ef39184a34690ff3cc06953f6fea|commit]] * mediatek: mt8186-corsola: Consolidate and add new devices [[https://lore.kernel.org/devicetree/20250617082004.1653492-1-wenst@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/c44f79cbd305e7a8c2548b4fa3b42b865611bada|commit]], [[https://git.kernel.org/linus/32239b8900a4c8481017e1e86e2ec81db155a784|commit]], [[https://git.kernel.org/linus/8101382c24b9ecfe3f56225410f92913b4fa8730|commit]], [[https://git.kernel.org/linus/8609434f64ce5892eb3e39c20f7181e5f495b91b|commit]], [[https://git.kernel.org/linus/57ac6f86ee9ab446e49d7c72eef10b2b44d58f9e|commit]], [[https://git.kernel.org/linus/85c767d2d36fa9d505266b2038931c5b745e6678|commit]] * qcom: Add Lenovo !ThinkBook 16 device tree [[https://lore.kernel.org/linux-arm-msm/20250701-tb16-dt-v9-0-7d9e280837b5@oldschoolsolutions.biz/T/|(cover)]], [[https://git.kernel.org/linus/f63f7aec0057fd187a1212a5828560c3d9fcc739|commit]] * Introduce cix p1 (sky1) soc [[https://lore.kernel.org/devicetree/20250721144500.302202-1-peter.chen@cixtech.com/T/|(cover)]], [[https://git.kernel.org/linus/960dda6eca2b771d1b243c13ab81bd42649b9ac4|commit]], [[https://git.kernel.org/linus/69563d502c5a2167bffebb52aba159ab57b76d3d|commit]], [[https://git.kernel.org/linus/aa4bc2850e671cc71081f637dd6db1faca8adac7|commit]], [[https://git.kernel.org/linus/621d7d081d18fce44ee431df1d054c8865b96ed8|commit]], [[https://git.kernel.org/linus/fe2aa2361ddba8f4ccf05123e0e14e9fb70ea701|commit]], [[https://git.kernel.org/linus/4cd122a4f642ab624257c2f92a6eddc4306213b4|commit]], [[https://git.kernel.org/linus/2b752ae0231f7b20cd2b8cad0b4ab36b16d4be88|commit]], [[https://git.kernel.org/linus/80be23bb20eab1a89cf585b3bdee0e257d23f5e0|commit]], [[https://git.kernel.org/linus/46f89a0d154312673d5d6045282eb1a7015b1037|commit]] * Add support for raspberrypi rp1 pci device using a dt overlay [[https://lore.kernel.org/lkml/cover.1748526284.git.andrea.porta@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/7b746d584ab97c66a0aa8ef15da1e2aa8152e3fa|commit]], [[https://git.kernel.org/linus/c1a9d356f241f42f2e886f38250be926407069de|commit]], [[https://git.kernel.org/linus/1b2fae5b3e31d7cfcb5c1aec40948f2ca92c23f8|commit]], [[https://git.kernel.org/linus/6486341721a2cd1cbc9c08a9bc90235c0b42f25b|commit]], [[https://git.kernel.org/linus/4732f079cd19f313516047726d934fabc58e9119|commit]], [[https://git.kernel.org/linus/eed7414420283d830ab576f32a5e3e5792c6fd77|commit]], [[https://git.kernel.org/linus/49d63971f96349cdcff89d21786e3c804e7cd4c0|commit]], [[https://git.kernel.org/linus/9bb1f64be41a01ed369f3c730bcccf6e780f23cf|commit]], [[https://git.kernel.org/linus/d4c6c8f8adca26cefa771ef06427d042bddef9e5|commit]], [[https://git.kernel.org/linus/fbf4ca37cdfc7962732bd4d48c05fca56244f8e2|commit]], [[https://git.kernel.org/linus/67cb34423ab829266e22d29175b1226524463740|commit]], [[https://git.kernel.org/linus/44bba869d25985eb2212beaa4e353f6aa476dbf0|commit]], [[https://git.kernel.org/linus/4a525d5d3150a3e387cb841f927f07eb4a98c368|commit]] * tps6594: Add TI TPS652G1 support [[https://lore.kernel.org/devicetree/20250703113153.2447110-1-mwalle@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/d90171bc2e5f69c038d1807e6f64fba3d1ad6bee|commit]], [[https://git.kernel.org/linus/626bb0a45584d544d84eab909795ccb355062bcc|commit]], [[https://git.kernel.org/linus/9cba6a7ebf65c603b80c0b3c7fa8c7c03f1b704c|commit]], [[https://git.kernel.org/linus/f6420de1c810e282c34de65c70e6cc6177c12394|commit]], [[https://git.kernel.org/linus/16d1a9bf36ef649b1fdb866985b4b87584491fac|commit]], [[https://git.kernel.org/linus/180a135eafa9e05657559bb04cc9eb6a86ca45f3|commit]], [[https://git.kernel.org/linus/e64ee27abfe1e9baea14b31c0a6b6bf93ac8652c|commit]], [[https://git.kernel.org/linus/b30d390812c8559c5835f8ae5f490b38488fafc8|commit]] * Add support for the imx aipstz bridge [[https://lore.kernel.org/devicetree/20250610160152.1113930-1-laurentiumihalcea111@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/fdb5a1cb8b91feea844ef21c8f41a3dab916111e|commit]], [[https://git.kernel.org/linus/dfc46cdc522d55d54a3d1ab4558e1a06896de37e|commit]], [[https://git.kernel.org/linus/796cba2dd4d9fb72c2de8fceb4e5c67a6f3c3f9a|commit]] * Axiado ax3000 soc and evaluation board support [[https://lore.kernel.org/devicetree/20250703-axiado-ax3000-soc-and-evaluation-board-support-v6-0-cebd810e7e26@axiado.com/T/|(cover)]], [[https://git.kernel.org/linus/ffab86698c260414bc4218e7c89dc0531d5dd159|commit]], [[https://git.kernel.org/linus/c1fbbb76ecc9bea01962876c60a5e1c55d82714e|commit]], [[https://git.kernel.org/linus/36f42234497845bfa45ca13e8a683dbffaa09a83|commit]], [[https://git.kernel.org/linus/4c5250ebc3e4ae49934069968beffbfaa83fb734|commit]], [[https://git.kernel.org/linus/7346be495b9ad23077d8fbfd953f341c92027067|commit]], [[https://git.kernel.org/linus/678fefdfe9de73e8043b971a217436f82d93f6e8|commit]], [[https://git.kernel.org/linus/729b770bb454b1adf59fdada6c901cd61c413ce6|commit]], [[https://git.kernel.org/linus/1f70557790011fbf6f6ba4dd85910e427e12d2f8|commit]], [[https://git.kernel.org/linus/525f46c7e3b7eba341b3cbd324266cd8032a0c87|commit]], [[https://git.kernel.org/linus/a6beb2bdb0db055f7402ed90e37fae99d68ff92c|commit]] * Add device tree for nvidia's gb200nvl bmc [[https://lore.kernel.org/lkml/20250401153955.314860-1-wthai@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/2f0f9cc149f557c06baeb66a87fa5ed11bf04cde|commit]], [[https://git.kernel.org/linus/90e9de1d0921083a5f0be8bd748a796204fcacaa|commit]] * Add meta (facebook) santabarbara bmc (ast2600) [[https://lore.kernel.org/lkml/20250625073847.4054971-1-fredchen.openbmc@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/462af36699b62ae1e765f7c5533cebb1def4a534|commit]], [[https://git.kernel.org/linus/9237e0a207ac61b77eec84e917e63683959ef009|commit]] * Support engicam microgea boards [[https://lore.kernel.org/linux-kernel/20250612090823.2519183-1-dario.binacchi@amarulasolutions.com/T/|(cover)]], [[https://git.kernel.org/linus/3d1678688810ddf1fc1746c1b992b72e1c1ec89a|commit]], [[https://git.kernel.org/linus/a8281618e8a50f22082f7159900bc066abe7098c|commit]], [[https://git.kernel.org/linus/02e0babff3f785c131f3a79ebf8c9014450335d0|commit]], [[https://git.kernel.org/linus/8adba3555dfdd93b360cbf1cd1f7aa72da5b1c98|commit]], [[https://git.kernel.org/linus/128fe144e7b86ee53cccef7021312157fda311f0|commit]], [[https://git.kernel.org/linus/73ee9b11878a41f5677054be39ce7f9e8f63fa72|commit]], [[https://git.kernel.org/linus/ffea3cac94ba5f43837acf6c42a4a2215e1e96a6|commit]], [[https://git.kernel.org/linus/69c9acadd4d277c4ad5480f1f8c77c551075e6d3|commit]], [[https://git.kernel.org/linus/c343d58ed8b6b649ae8bf3a1a8dc2fc272ab39b5|commit]], [[https://git.kernel.org/linus/0c7124658677885b603f1748fb997b3bdc87dc69|commit]] * Support i.mx28 amarula rmm board [[https://lore.kernel.org/linux-kernel/20250620080626.3580397-1-dario.binacchi@amarulasolutions.com/T/|(cover)]], [[https://git.kernel.org/linus/b63ae4182b6afa89ad0f7cff9c932328d887b936|commit]], [[https://git.kernel.org/linus/2fe1b7ffd83589727d1a4bb38179a46093491249|commit]], [[https://git.kernel.org/linus/ad296c411452d1b490bf4742c2eb7e5e4a400561|commit]], [[https://git.kernel.org/linus/ac33aa2dd49f7c892c9177ba600d14f7fced6d48|commit]], [[https://git.kernel.org/linus/765081cde522253cf588a46ac2ba0ab8659a85f4|commit]] * Add support for sony xperia z ultra (togari) [[https://lore.kernel.org/linux-arm-msm/20250610-togari-v2-0-10e7b53b87c1@lucaweiss.eu/T/|(cover)]], [[https://git.kernel.org/linus/702639bc50515c973cf92191d689623fa7d6c32e|commit]], [[https://git.kernel.org/linus/edae4a6260d387e1e40dcf3acbbeb4c86bfd2ecb|commit]], [[https://git.kernel.org/linus/700a4c3f95a3cea340bf8c2371cf2bfd99da15ca|commit]], [[https://git.kernel.org/linus/3d8663cb9e21912ad9554701bfb3a8254cf0a4ef|commit]] * tegra: Add device-tree for ASUS !VivoTab RT TF600T [[https://lore.kernel.org/devicetree/20250617070320.9153-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/992c6940fd4595659317dafbcca2bbb6004e9a3e|commit]], [[https://git.kernel.org/linus/8ae70af2477b7c7e5829765e563de3e5367104ed|commit]] * tegra: Add device-tree for Asus Portable AiO P1801-T [[https://lore.kernel.org/devicetree/20250616073947.13675-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ad8247beb4c45acd29ded24c8e956bb96ece84d6|commit]], [[https://git.kernel.org/linus/118a745e617a43bd0047c72ebff931cd09179dbc|commit]] * qcom: sm8550: Add support for camss [[https://git.kernel.org/linus/c5aeb681fcdd23d042d780f89ddcf908a13baee2|commit]] * Asus zenbook a14 improvements [[https://lore.kernel.org/lkml/20250623113709.21184-1-alex.vinarskis@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/49918a1c421c4186ff6f05eb7abf892b4ecfecb2|commit]], [[https://git.kernel.org/linus/38d0b804b9d79d9fec6ad5c14f407c6477bccd68|commit]] * renesas: Add CN15 eMMC and SD overlays for RZ/V2H and RZ/V2N EVKs [[https://git.kernel.org/linus/3d6c2bc7629c8b1bfd75416767122096bb75ba7b|commit]] * Add friendlyelec nanopi m5 support for rockchip rk3576 [[https://lore.kernel.org/devicetree/20250628143229.74460-1-inindev@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/863993ff9c6c0e6ecaf942e0d625e5df134e464f|commit]], [[https://git.kernel.org/linus/96cbdfdd3ac20700b9b1c251fb15c944f33a424a|commit]] * Add support for firefly station-m3/roc-rk3588s-pc [[https://lore.kernel.org/devicetree/20250530031046.166202-1-i@chainsx.cn/T/|(cover)]], [[https://git.kernel.org/linus/0e561752ec819d54b7f56cd7e0b0fae1217db72c|commit]], [[https://git.kernel.org/linus/7f9509791507bd2aa89281d999cf0c8ad659f93d|commit]] * Add support for sakura pi rk3308b [[https://lore.kernel.org/linux-kernel/20250521131108.5710-1-i@chainsx.cn/T/|(cover)]], [[https://git.kernel.org/linus/281bf6e619fc637282288a3a087e2b2ed3150cd5|commit]], [[https://git.kernel.org/linus/bc099a4f5b7d08d97684648abe58d236cb7afa4f|commit]], [[https://git.kernel.org/linus/79f2a17024412fd6f62208ab3fd6814e52588a31|commit]] * Add radxa rock 5t support [[https://lore.kernel.org/devicetree/20250520-add-rock5t-v2-0-1f1971850a20@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/ecf7114f818148df10f4e13b5e1087de2f5d687e|commit]], [[https://git.kernel.org/linus/8b76abf78321ea3361c01e849c8dc3a6793c05d6|commit]], [[https://git.kernel.org/linus/988035f152709549a095b12fcdcb3cf26cbad63f|commit]], [[https://git.kernel.org/linus/0ea651de9b79a17cbe410a69399877805c136b76|commit]] * Support for milk-v duo module 01 evb [[https://lore.kernel.org/devicetree/20250612132844.767216-1-alexander.sverdlin@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/610f943a66bee95101f329d8a8e9a4a82123a66c|commit]], [[https://git.kernel.org/linus/dabb6ec640a3512bd105055d5573a2cfa403bdea|commit]], [[https://git.kernel.org/linus/cccac5279a6c06620e59e366563d443cd7201261|commit]], [[https://git.kernel.org/linus/aa3f38f5dc4cc463e620833b71362a805ac169ea|commit]], [[https://git.kernel.org/linus/c6e9e3aaef76294f2dde4fcb4450bad746671c4b|commit]], [[https://git.kernel.org/linus/fe4fd701938197c2bceeeff670da3ace9b488d09|commit]] * Device tree for ugoos am3 board [[https://lore.kernel.org/devicetree/20250613-ugoos-am3-v3-0-f8a43e6bbfdb@posteo.net/T/|(cover)]], [[https://git.kernel.org/linus/ef491ab7cbf6a460476a41d8b5dbd8a4394282ba|commit]], [[https://git.kernel.org/linus/b33f8cfb2b4d91c4bb7c16b354138cc205befed2|commit]] * apple: Add Apple SoC GPU [[https://git.kernel.org/linus/76f3ffeb41d8700c22005211521bf692f2551668|commit]] * tegra: Add Tegra264 support [[https://git.kernel.org/linus/65ef237e4810f6bb0f44b250d963b48790dec369|commit]], [[https://git.kernel.org/linus/b7117911e13cf5343d0f160507719afd5c25b31c|commit]], [[https://git.kernel.org/linus/bd3b8e53e244fec2255ab037242230847559161a|commit]] * Support for tegra264 and tegra254 in cbb driver [[https://lore.kernel.org/lkml/20250703103829.1721024-1-sumitg@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/2f2c32f9cc940f908b42d070207c6d503362793c|commit]], [[https://git.kernel.org/linus/25de5c8fe0801361182b41c42f086bd089feda14|commit]], [[https://git.kernel.org/linus/5f2c2c439983ca3a208a0175f7793c355fab8566|commit]], [[https://git.kernel.org/linus/fa4854a9f5d6630df060a4aa5894f9b4eb8cc3ef|commit]], [[https://git.kernel.org/linus/84daa158bb5e72ec279ab168892df86a25d3c459|commit]] * tegra: bpmp: Add support on Tegra264 [[https://lore.kernel.org/linux-tegra/20250506133118.1011777-11-thierry.reding@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/18c590e012d35b0551ba70798efd0b8d6c66c585|commit]] * Add i2c support for tegra264 [[https://lore.kernel.org/lkml/20250917085650.594279-1-kkartik@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/21e12738779f74d9ae63faa995f5743656eadc07|commit]] * Add STM32MP25 timers support: MFD, PWM, IIO and counter drivers [[https://lore.kernel.org/devicetree/20250110091922.980627-1-fabrice.gasnier@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/7b4270d17bf9c03c03e13972bcbb8dccec3956fa|commit]], [[https://git.kernel.org/linus/7b4270d17bf9c03c03e13972bcbb8dccec3956fa|commit]], [[https://git.kernel.org/linus/ace2cd11a27231efcb8a116a597edab2eef34957|commit]], [[https://git.kernel.org/linus/fd0b06972a8f92d57358e62267f5925721c73c6e|commit]], [[https://git.kernel.org/linus/9259e150de55d7ae4c38f78ff01b6110d543c635|commit]], [[https://git.kernel.org/linus/339571778a61087efb16f45449b61e3bb41a7688|commit]], [[https://git.kernel.org/linus/0b22e2e5648f8e40d77706000565c544c5104c3d|commit]], [[https://git.kernel.org/linus/986fa0721c1f1f5447ab3f8e36cc9d4ae17bce3f|commit]] * rockchip: enable further peripherals on ArmSoM Sige5 [[https://lore.kernel.org/devicetree/20250614-sige5-updates-v2-0-3bb31b02623c@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/c76bcc7d1f24e90a2d7b98d1e523d7524269fc56|commit]], [[https://git.kernel.org/linus/e490f854b46369b096f3d09c0c6a00f340425136|commit]], [[https://git.kernel.org/linus/358ccc1d8b242b8c659e5e177caef174624e8cb6|commit]], [[https://git.kernel.org/linus/a8cdcbe6a9f64f56ee24c9e8325fb89cf41a5d63|commit]] * Add device tree support for Luckfox Omni3576 and Core3576 [[https://lore.kernel.org/devicetree/20250516002713.145026-1-inindev@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/7f66bfe017dd8b3782d11dbd8bae512df2facf21|commit]], [[https://git.kernel.org/linus/76595004b6d32545eea87e61246f909d532aae04|commit]], [[https://git.kernel.org/linus/d7ad90d22abed02bcffd292e3de5c5f9daf6ed25|commit]] * perf: Enable branch stack sampling [[https://lore.kernel.org/linux-perf-users/20250611-arm-brbe-v19-v23-0-e7775563036e@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/52e4a56ab8b85a11ffc017eaec5b2f38642a43ba|commit]], [[https://git.kernel.org/linus/ae344bcb0d4967f6aa5f7b02f86bcfd389e513e4|commit]], [[https://git.kernel.org/linus/d7567e9b9ba53861390830ee18b9fb2035ca81c4|commit]], [[https://git.kernel.org/linus/58074a0fce66c6c97b35ce8a28ed4e7b780f9a8f|commit]] * Support kcfi + bpf on arm64 [[https://lore.kernel.org/bpf/20250801001004.1859976-5-samitolvanen@google.com/T/|(cover)]], [[https://git.kernel.org/linus/5ccaeedb489b41ce6cb857d0de488992746be282|commit]], [[https://git.kernel.org/linus/f1befc82addda926c8301436123d041bf3249505|commit]], [[https://git.kernel.org/linus/710618c760c0a3267221517d78f4cfb65ca7b882|commit]] * Support feat_mte_store_only feature [[https://lore.kernel.org/linux-kernel/20250618092957.2069907-1-yeoreum.yun@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/33e943a228535fe5eb64b746d2b7b6b187aaa77a|commit]], [[https://git.kernel.org/linus/b1fabef37bd504f378a203fd8b9227b8fa65b193|commit]], [[https://git.kernel.org/linus/4d51ff5bba00a13ca9b0b24883fa7adb07a167fc|commit]], [[https://git.kernel.org/linus/f620372209bfe5b1c468540320a0bc3549d6afc7|commit]], [[https://git.kernel.org/linus/7502bdb43aa2a978d8f7ed0d1e2272cca1702317|commit]], [[https://git.kernel.org/linus/964a07426eb8bfc3a6aed8d07eeeca77f44f6d91|commit]], [[https://git.kernel.org/linus/391ca7c81b85cc10a0a202c6ed6a4c65e374604b|commit]], [[https://git.kernel.org/linus/1f488fb91378e923dd67870292dcc36df85a814e|commit]] * Optimize loop to reduce redundant operations of contpte_ptep_get [[https://git.kernel.org/linus/093ae7a033cfde536db997e7dc4e829ce65fb38a|commit]] * module: Use text-poke API for late relocations. [[https://git.kernel.org/linus/91b89a634487d5614e51ee773a889ed57f5551ca|commit]] * Implement HAVE_LIVEPATCH [[https://git.kernel.org/linus/fd1e0fd71f6552238573efa92fd3e6c324986ee3|commit]] * stacktrace: Enable reliable stacktrace [[https://git.kernel.org/linus/beecfd6a88a675e20987e70ec532ba734b230fa4|commit]], [[https://git.kernel.org/linus/805f13e403cd43bb88790642feef507108af6fc7|commit]] * Private stack support for arm64 jit [[https://lore.kernel.org/lkml/20250724120257.7299-1-puranjay@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/3ba58312e65665e5b9097c7969a51fa49914d85d|commit]], [[https://git.kernel.org/linus/6c17a882d3804dce1c66e1fec25f96d39a184067|commit]], [[https://git.kernel.org/linus/e9f545d0d336b37ece594a0bfd8d2d13ccbed6ab|commit]] * Initial BBML2 support for contpte_convert() [[https://lore.kernel.org/lkml/20250625113435.26849-1-miko.lenczewski@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/3eb06f6ce3af65df4e9b3d8fc1d711fbfe7673b3|commit]], [[https://git.kernel.org/linus/5aa4b625762e5a1caf2e43aa52e55b7b507783e2|commit]], [[https://git.kernel.org/linus/212c439bdd8f99bcbec75adfca3297ae9319c2fb|commit]], [[https://git.kernel.org/linus/83bbd6be7d1712471001c421298fb525b7abf69e|commit]] * smp: Support non-SGIs for IPIs [[https://git.kernel.org/linus/ba1004f861d16f24179f14f13f70c09227ccbffb|commit]] * Add viommu infrastructure (part-4 hw queue) [[https://lore.kernel.org/linux-doc/cover.1752126748.git.nicolinc@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/b23e09f9997771b4b739c1c694fa832b5fa2de02|commit]], [[https://git.kernel.org/linus/fca02263f27eee093379844ac0fb280bf70e6aed|commit]], [[https://git.kernel.org/linus/c50a5de2c465232f30c731bc98f564ddb6229377|commit]], [[https://git.kernel.org/linus/4b57c057f9e6668ae442b19902dab8a73fe7b209|commit]], [[https://git.kernel.org/linus/3fcf56a2393b399f289a473181ce6b19f716b59d|commit]], [[https://git.kernel.org/linus/c3436d42f812faffac94f8fb3fb246ab43ffdffe|commit]], [[https://git.kernel.org/linus/1976cdf61ce9b6f97b5212676a3b9f74c68f6073|commit]], [[https://git.kernel.org/linus/afeaf592c1d435b8773471880c6c349506569cac|commit]], [[https://git.kernel.org/linus/0e3e0b0c08e388cd9e05bb4d17534bd36bedc9fe|commit]], [[https://git.kernel.org/linus/1c26c3bbdee11f3fad0c74b8f09aef488dcf4b62|commit]], [[https://git.kernel.org/linus/27b77ea5feaa8fcf385ea99ce757982b0ac9d1f0|commit]], [[https://git.kernel.org/linus/ed42eee797ff3dc889ade63c1dd7c4f430699e23|commit]], [[https://git.kernel.org/linus/e2e9360022585c21dc30d2b19f5866c252f40806|commit]], [[https://git.kernel.org/linus/2238ddc2b0560734c2dabb1c1fb4b342b5193625|commit]], [[https://git.kernel.org/linus/0b37d892d0425811618a737037b0212884cc25ae|commit]], [[https://git.kernel.org/linus/20896914da8ad24df0a77e24887912d87754fb83|commit]], [[https://git.kernel.org/linus/56e9a0d8e53f56f313d332888a32a44a71f3a9ab|commit]], [[https://git.kernel.org/linus/80478a2b450e984b5d270d0d7088912d64e84303|commit]], [[https://git.kernel.org/linus/035c9211f05befe3fa2765c00356d32974176a94|commit]], [[https://git.kernel.org/linus/62622a8753fa6af3c104f9552863e6473b92fb31|commit]], [[https://git.kernel.org/linus/a9f10bab2e5084d6746391fccd7bef6ac87620b8|commit]], [[https://git.kernel.org/linus/3a35f7d4a4673edf6f02422bb2d78b17c667e167|commit]], [[https://git.kernel.org/linus/61dd912ee02e4d1d412e1090c6e5d7f8cd0779df|commit]], [[https://git.kernel.org/linus/9eb6a666df7f7a50e0a99c4c101864b8bb0dd685|commit]], [[https://git.kernel.org/linus/1eb468744ccaafeaee145505d0aa5fd6227bd72f|commit]], [[https://git.kernel.org/linus/589899ee299e5314fae847d2ad0f86c2ffa94739|commit]], [[https://git.kernel.org/linus/81f81db6328b2bab1b64cb1ebaa4c560bf91db9f|commit]], [[https://git.kernel.org/linus/4dc0d12474f9d4833c3dd96b73d61e406d3f5dc7|commit]], [[https://git.kernel.org/linus/32b2d3a57e26804ca96d82a222667ac0fa226cb7|commit]] * iommu/tegra241-cmdqv: import IOMMUFD module namespace [[https://git.kernel.org/linus/601b1d0d9395c711383452bd0d47037afbbb4bcf|commit]] * Add a single source of truth for ubwc configuration data [[https://lore.kernel.org/linux-kernel/20250626-topic-ubwc_central-v6-0-c94fa9d12040@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/1924272b9ce1edc5694e6d112097fd51e821980e|commit]], [[https://git.kernel.org/linus/227d4ce0b09eba29aa69740e43643afb9b41b229|commit]], [[https://git.kernel.org/linus/45a2974157d2d8b6f26911582d64089cab992d8b|commit]], [[https://git.kernel.org/linus/560c98b4a464215b04193c9ad7a4c07486ccf9c8|commit]], [[https://git.kernel.org/linus/367380d2b5500fc29b87953e2c6da872bc0fb2e5|commit]], [[https://git.kernel.org/linus/32ef24e51f7ff4dd5eaeb3e0f06f0ad36143bdc6|commit]], [[https://git.kernel.org/linus/87cfc79dcd605056247c62d65ea41ce6c65cdbe3|commit]], [[https://git.kernel.org/linus/c59e9c966e8e0470c723f1c0c6ba3b13e5978b29|commit]], [[https://git.kernel.org/linus/b6ce504c715541eec92a42f2b828ed97742926d6|commit]], [[https://git.kernel.org/linus/8f18e879576cad2b1a276dd91dd6cccee608ca45|commit]], [[https://git.kernel.org/linus/caf5ad18a2b49e3b20b1dc65e928851d409bcd1c|commit]], [[https://git.kernel.org/linus/709dd2ff2357734f5a0b2ef68e1f7c4256543a70|commit]], [[https://git.kernel.org/linus/2728285988c3e94ce92104a58b4cee848c4602de|commit]], [[https://git.kernel.org/linus/a452510aad53f665eb422784ff525c4889aa246f|commit]] * Enable qups and serial on sa8255p qualcomm platforms [[https://lore.kernel.org/lkml/20250721174532.14022-1-quic_ptalari@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/4c83146cfb466ef24fcb9cf110f3b8821d1d2d85|commit]], [[https://git.kernel.org/linus/3a0fdc6d934ded4756ae027d4272aeccb34de08a|commit]], [[https://git.kernel.org/linus/f5b16f28fa8b8f7aa3e66d21b486aee2ffd68608|commit]], [[https://git.kernel.org/linus/4b2601ae3066daba5674049e83376317f66d45e8|commit]], [[https://git.kernel.org/linus/94d691417e6f1fe5ba28c092fe95de3dc66d5e3c|commit]], [[https://git.kernel.org/linus/5893e62d46bce4ff2e0bc422c0957539d36e0f06|commit]], [[https://git.kernel.org/linus/1afa70632c390488308d8e94e037df6895a3e1ac|commit]], [[https://git.kernel.org/linus/86fa39dd6fb700c97606695b6ca40ff48ee323e9|commit]] * qcom: qcom_stats: Add DDR stats [[https://lore.kernel.org/linux-arm-msm/20250611-ddr_stats_-v5-0-24b16dd67c9c@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/33301e5b2aeccb1208ddb2d1cc93c9c6c520a0b6|commit]], [[https://git.kernel.org/linus/e265de1f4815c05803e02fed20a093114e418c46|commit]], [[https://git.kernel.org/linus/49b1c8df672a2a6229798e4f4088ce90ed44a103|commit]] * soc: qcom: rpmh-rsc: Add RSC version 4 support [[https://git.kernel.org/linus/84684c57c9cd47b86c883a7170dd68222d97ef13|commit]] * soc: qcom: socinfo: Add support to retrieve APPSBL build details [[https://git.kernel.org/linus/955a41218d2bd2ffadd0406b14a4b4efb67b056c|commit]] * soc: qcom: socinfo: Add support to retrieve TME build details [[https://git.kernel.org/linus/64a026dd896e423a177fe87e11aa69bf5348c27b|commit]] * KVM * Map GPU device memory as cacheable [[https://lore.kernel.org/linux-kernel/20250705071717.5062-1-ankita@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/8cc9dc1ae4fb075e29e2d5cf2386761d3497049a|commit]], [[https://git.kernel.org/linus/2a8dfab26677ae37243a40d170704588f791cfd3|commit]], [[https://git.kernel.org/linus/0c67288e0c8bc1e39d7057fbae65bf57ca943676|commit]], [[https://git.kernel.org/linus/f55ce5a6cd33211c8cc5bce0554b6ac710a6a28b|commit]] * SCTLR2, !DoubleFault2, and NV external abort fixes [[https://lore.kernel.org/kvmarm/20250708172532.1699409-1-oliver.upton@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/bf49e73dde7dd54bb52e67e0a1b72e748a04d0b4|commit]], [[https://git.kernel.org/linus/e3fd66620f10cddfcfe062404cf0ed170133bb43|commit]], [[https://git.kernel.org/linus/1d6fea7663b2d3fc8569cf14c91a49fb9b37067b|commit]], [[https://git.kernel.org/linus/aae35f4ffbf20a09c5a5188ef5ddb3a4b5038df0|commit]], [[https://git.kernel.org/linus/9aba641b9ec2a9f443a6c666c054c5e98ef550b5|commit]], [[https://git.kernel.org/linus/77ee70a073575977b403e9add25f185d614217d8|commit]], [[https://git.kernel.org/linus/211fced460f2528339560d443df44b1c7feafaf0|commit]], [[https://git.kernel.org/linus/18fbc24707db71793d5187576e09448cf48f8394|commit]], [[https://git.kernel.org/linus/a99456abd834ef03c06ac49ed884853716b8b66e|commit]], [[https://git.kernel.org/linus/0ead48acc9356eeee41de3aaad7164da40bac7f0|commit]], [[https://git.kernel.org/linus/81fbef164766c8fe5b39b91557b47c88946949cc|commit]], [[https://git.kernel.org/linus/02dd33ec88311ed1ce491476cfc5ade7d6505cc2|commit]], [[https://git.kernel.org/linus/7fb7660b9c0b27ea9043c0f1218d39d3511eabdc|commit]], [[https://git.kernel.org/linus/abc693fef30c76eccd29c5db41b122675ac3d102|commit]], [[https://git.kernel.org/linus/720ef4611c46724a42aea0773248735e4fac509f|commit]], [[https://git.kernel.org/linus/178ec0ae35f8a2181a60a2e7c31d8671cbb56f3a|commit]], [[https://git.kernel.org/linus/fff97df2a0bd215979ae224b97e3e4075030a953|commit]], [[https://git.kernel.org/linus/ce66109cec867c9afd2ee1ecf1aff8d73cdb2f89|commit]], [[https://git.kernel.org/linus/59b6d08666f0424f3e0ade08ab664fac65a09c5d|commit]], [[https://git.kernel.org/linus/1f1c08d9896cf439cca829960df3d6ec3c03619b|commit]], [[https://git.kernel.org/linus/075c2dc7367e7e80d83adae8db597e48ceb7ba94|commit]], [[https://git.kernel.org/linus/a3c4a00dbe2013ecc35f910606bd615eaff34cc7|commit]], [[https://git.kernel.org/linus/bfb7a30b19861e559d64b7f2c3202d948fbf93ea|commit]], [[https://git.kernel.org/linus/2858ea3083f088a76b439f5b88b6d4f032dabc0c|commit]], [[https://git.kernel.org/linus/a90aac55324920de988cc447f4227c04ad769351|commit]], [[https://git.kernel.org/linus/55ea75f5b27381d4b23e5617de80860a6e7c0477|commit]], [[https://git.kernel.org/linus/0b593ef12afce0124612d90cd1768a64d3f27a65|commit]] * Expose FEAT_MTE_TAGGED_FAR feature to guest [[https://git.kernel.org/linus/61eae495da68fe3d17ed6e8d3ebcdb8c9a2f7c44|commit]] * Expose MTE_STORE_ONLY feature to guest [[https://git.kernel.org/linus/7502bdb43aa2a978d8f7ed0d1e2272cca1702317|commit]] * Support for GICv5, the next generation interrupt controller for arm64, including support for interrupt routing, MSIs, interrupt translation and wired interrupts [[https://lore.kernel.org/linux-kernel/20250703-gicv5-host-v7-0-12e71f1b3528@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/7d7299bd07c667e915d62109c10b84cb646fe66a|commit]], [[https://git.kernel.org/linus/2a30a8124c55804b03a2ec064dbbe1a2bd1d9ad8|commit]], [[https://git.kernel.org/linus/1bd7238dc705f07dea14040a59378e4b1be7164a|commit]], [[https://git.kernel.org/linus/fb0ad5ed5676f0a8cbee4cd148db1b692bda8a4b|commit]], [[https://git.kernel.org/linus/4ee38cd9af9dd72ee26645e90eb26b6251ba9acb|commit]], [[https://git.kernel.org/linus/231d9dd790bf160d8441912116bbf7435aa32fc1|commit]], [[https://git.kernel.org/linus/d4e375d8fee50ec50b63e47fc6efd1e1e75adb8e|commit]], [[https://git.kernel.org/linus/3037134b1b627afce46669a781a8e9d42437de4c|commit]], [[https://git.kernel.org/linus/4edcfaf951a28b0663f4e05222d00ac992fab82c|commit]], [[https://git.kernel.org/linus/cfd051c5c83112e9b69e8b24546207191643f41b|commit]], [[https://git.kernel.org/linus/f987581aa78ee4bba5fd1b83296f4a6ddd228c79|commit]], [[https://git.kernel.org/linus/2e00c5463f6c19b096a016501d50862cf0e3e610|commit]], [[https://git.kernel.org/linus/45d9f8e195cf1374270fedf7d1e0f697068eb49f|commit]], [[https://git.kernel.org/linus/42555929dd250e3502a6963aa57332bb1672f5f2|commit]], [[https://git.kernel.org/linus/25374470f91aebbb1ca3f589f0ce57fd39b2d6d3|commit]], [[https://git.kernel.org/linus/0bb5b6faa0d562f6f392ba94873f6aa01cf75c2b|commit]], [[https://git.kernel.org/linus/988699f9e6b61d25a1448f7ff3c4a80b41e9d9e6|commit]], [[https://git.kernel.org/linus/ba1004f861d16f24179f14f13f70c09227ccbffb|commit]], [[https://git.kernel.org/linus/e62e1e9493aa7aeba6670db6373031533a4d4ced|commit]], [[https://git.kernel.org/linus/7ec80fb3f025825e860b433685fb801d6de34bf3|commit]], [[https://git.kernel.org/linus/5cb1b6dab2def316671ea2565291a86ad58b884c|commit]], [[https://git.kernel.org/linus/0f0101325876859eb463792d4df3fd22b6539d29|commit]], [[https://git.kernel.org/linus/03a28dc39838e67164728ad410081352b1589d78|commit]], [[https://git.kernel.org/linus/31fd3becb920e0b31b99cf202ace637f75dd7e78|commit]], [[https://git.kernel.org/linus/cd0ec59affb1f31347170bbafadb9c5cc716bca9|commit]], [[https://git.kernel.org/linus/b4ead12d95002b9c65e3c646cf73e0a91c608024|commit]], [[https://git.kernel.org/linus/8b65db1e93a227ad9cc1b67cb221b06869f0b35f|commit]], [[https://git.kernel.org/linus/57d72196dfc8502b7e376ecdffb11c4f8766f26d|commit]], [[https://git.kernel.org/linus/695949d8b16f11f2f172d8d0c7ccc1ae09ed6cb7|commit]], [[https://git.kernel.org/linus/42d36969e307cf0c7a523755a6f66cecb69cd32c|commit]], [[https://git.kernel.org/linus/53bb952a625fd3247647c7a28366ce990a579415|commit]] * Enable GICv3 guests on GICv5 hosts using FEAT_GCIE_LEGACY [[https://lore.kernel.org/lkml/20250627100847.1022515-1-sascha.bischoff@arm.com/T/|(cover)]], [[https://git.kernel.org/linus/244e9a89ca765cc2395fc7a83833fb79731299fc|commit]], [[https://git.kernel.org/linus/1ec38ce3d024bebdff2a9ffb526e4d198605204d|commit]], [[https://git.kernel.org/linus/b62f4b5dec91b62af2791fb7004f91c92ed1444f|commit]], [[https://git.kernel.org/linus/c017e49ed1381001ba7a6521daae8f968b11cf09|commit]], [[https://git.kernel.org/linus/ff2aa6495d4beafa84cfdd8c61fc00785fee3d9a|commit]] * nv: Userspace register visibility fixes [[https://git.kernel.org/linus/1095b32665cf1085d76fc1af283dc0bd3c986169|commit]], [[https://git.kernel.org/linus/c70a4027f5f37b3a8e8af6cc4b3b6c7641245297|commit]], [[https://git.kernel.org/linus/c6ef468610800259fb1551b1e8c2f5bec7e15e44|commit]], [[https://git.kernel.org/linus/ce7a1cff2e4c4ec185bae25a7c53609407d2c5eb|commit]], [[https://git.kernel.org/linus/1d14c97145621632caaccf89a45c9b74ad36dab8|commit]], [[https://git.kernel.org/linus/9fe9663e47e2124b569fcd3691b1bbc32c360cef|commit]], [[https://git.kernel.org/linus/72c62700b27922e3ea456f01684c8e5e29755544|commit]], [[https://git.kernel.org/linus/a0aae0a9a70e7be6a1ff71fbece5f153f596b6d6|commit]], [[https://git.kernel.org/linus/9a4071807909c8aafcb598bb807fdc1a1eb3c214|commit]], [[https://git.kernel.org/linus/3a90b6f2796493a0e2f989361e2b7d5f9de2f451|commit]], [[https://git.kernel.org/linus/f68df3aee7d17a0fedc6cd9983dd2940ca692f2b|commit]] * Allow userspace to write GICD_TYPER2.nASSGIcap [[https://lore.kernel.org/lkml/20250724062805.2658919-1-oliver.upton@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/82221a4e66f044a5fe1d0acce10112a821655e8e|commit]], [[https://git.kernel.org/linus/ef364c5b43570e31a08b7ad4863ff7a747ad4332|commit]], [[https://git.kernel.org/linus/f26e6af75782fad6efdc883f33e1c40f1a6d37e7|commit]], [[https://git.kernel.org/linus/c652887a92887b9a2d48ee40f49f8013449b9a50|commit]], [[https://git.kernel.org/linus/15b5964a411f386d53e41a5595a3dd5e6068a59e|commit]], [[https://git.kernel.org/linus/eed9b14209073c51a0e41365871da05b1ada578f|commit]] * General updates and two new drivers for hisilicon uncore pmu [[https://lore.kernel.org/lkml/20250410090825.13214-1-yangyicong@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/dc86791ff68c38a2954c3bf2c444b6d6d9da52f3|commit]], [[https://git.kernel.org/linus/17aa34e86936d0dba4e7c05c55ffc3e12c0ccec9|commit]], [[https://git.kernel.org/linus/29614c55fe6ff8e5ddee9c6247d5c3dbe05ca8bc|commit]], [[https://git.kernel.org/linus/1fd20ba0a1dcaf3bf8757c0e0b8ff754ab25b228|commit]], [[https://git.kernel.org/linus/35f5b36e8cc2d241083ee0f08fa8b5366bde6f22|commit]], [[https://git.kernel.org/linus/e480898e767c54a883e965fc306e2ece013cbca5|commit]], [[https://git.kernel.org/linus/e31c0eb10388e2af0502b77e61453efbc8a4f974|commit]], [[https://git.kernel.org/linus/2257798498b3b069e5ff46ad957c32a9a06b5fc9|commit]] * RISCV * Add SBI FWFT misaligned exception delegation support [[https://lore.kernel.org/lkml/20250523101932.1594077-1-cleger@rivosinc.com/T/|(cover)]], [[https://git.kernel.org/linus/cf8651f7319d12a6fd81e1d001afb0958ee2bf28|commit]], [[https://git.kernel.org/linus/a7cd450f0e06b4118b2ca8b4e1ef707d5c2c4506|commit]], [[https://git.kernel.org/linus/99cf5b7c738733032af9a265a6a5a6bc34b91900|commit]], [[https://git.kernel.org/linus/6d6d0641dcfa9d1e398d75791283bf6d129135de|commit]], [[https://git.kernel.org/linus/c4a50db1e1739a5d4698dee7cd4c6f6430bff7b3|commit]], [[https://git.kernel.org/linus/cf5a8abc6560f989a880bec3647c614e638a0c9f|commit]], [[https://git.kernel.org/linus/9f9f6fdd1dc6791bcfe251160a96a446199f85ce|commit]], [[https://git.kernel.org/linus/1317045a7d6f397904d105f6d40dc9787876a34b|commit]], [[https://git.kernel.org/linus/4eaaa65e301208d6ff612ad2244c6174c9d852b8|commit]], [[https://git.kernel.org/linus/7977448bf374f6e9592153838f072a89bd3b5c45|commit]], [[https://git.kernel.org/linus/cf648c400fd22c022da0b544ca5fb189c3596641|commit]], [[https://git.kernel.org/linus/c046de827c85a70548df8b86ce5f18820ebaaca7|commit]] * KVM: Enable ring-based dirty memory tracking [[https://git.kernel.org/linus/f55ffaf89636877c269ca28399b30d48898c62f3|commit]] * Add voyager board support [[https://git.kernel.org/linus/00dba19aa005c8cff5694adeea996b0ce85808cf|commit]], [[https://git.kernel.org/linus/12d8c15992c4396eeb4df53170cae41c9a1a441a|commit]], [[https://git.kernel.org/linus/6eeee4fb1930a3863911cf3b620ec340c9227952|commit]], [[https://git.kernel.org/linus/1f5ff8c363cf81e1b268108d1ed93b59b6a504f8|commit]], [[https://git.kernel.org/linus/65bbf10b934ae17e1ce7a673355723eb806668ac|commit]], [[https://git.kernel.org/linus/609496af55caff0e358bac901936b65b98900f92|commit]], [[https://git.kernel.org/linus/9d462f56db7a0fdb0c814b34a6f9bdd01ebc23f5|commit]], [[https://git.kernel.org/linus/ad087c91eb87bebd79f05a4c9b5cfbe72d6186fa|commit]] * Add sophgo evb v1/v2 board support [[https://lore.kernel.org/devicetree/cover.1751700954.git.rabenda.cn@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/e8dd24de123472595c9b5fe6258599d8290d75ce|commit]], [[https://git.kernel.org/linus/100513b2e54ab9f889c64e5bf13fca566a8e70ba|commit]], [[https://git.kernel.org/linus/6ea2a06165e7c613e2efb9927c3537f76ccdfc1a|commit]] * sophgo: add more sg2042 isa extension support [[https://lore.kernel.org/devicetree/cover.1751698574.git.rabenda.cn@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a5fb9056f26011f24525f0083b9c1ad300413269|commit]], [[https://git.kernel.org/linus/6ebff712f4b4be64a80b405fd263c11f522069ab|commit]], [[https://git.kernel.org/linus/cb074bed1186984f128e3719ee54ca529aba1b56|commit]] * sophgo: sg2044: add ziccrse extension [[https://git.kernel.org/linus/a1de92f0cd4118652ec94a6c3be62d7571029a9b|commit]] * irqchip/riscv-imsic: Add kernel parameter to disable IPIs [[https://git.kernel.org/linus/ea92b6046d352740c15f35e703c1b13a47dd99b0|commit]] * perf/kvm: Add reporting of interrupt events [[https://git.kernel.org/linus/3b7270c76622893098532a94e787f8c127d5ed28|commit]] * S390 * Enable THP_SWAP and THP_MIGRATION [[https://git.kernel.org/linus/10dd5a0009898ba35eafeb6087e5c83b84742ff1|commit]] * Support CONFIG_TRACE_MMIO_ACCESS [[https://git.kernel.org/linus/ccb0aa03d046ff84492396d2e90b408fa5b24a00|commit]] * New s390 specific protected key hmac [[https://lore.kernel.org/linux-crypto/20250617134440.48000-1-freude@linux.ibm.com/T/|(cover)]], [[https://git.kernel.org/linus/2f8839e6c5f8e200629fd730aac5dd874c1d2544|commit]], [[https://git.kernel.org/linus/86ca5cb84fc339a08dfd673a50c6f3bea1b2f956|commit]], [[https://git.kernel.org/linus/cbbc675506cc4cd93e6f895e7c1f693156f9a95c|commit]], [[https://git.kernel.org/linus/d48b2f5e82ea3888fb23659675c05f490899a293|commit]], [[https://git.kernel.org/linus/a71d3e1beb7a9637eb75929b995f01d20981f013|commit]] * Remove NETIUCV device driver [[https://git.kernel.org/linus/727258025b933c61e103318ec42e765a53d9b18d|commit]] * X86 * platform * samsung-laptop: Expose charge_types [[https://git.kernel.org/linus/de2884c6cdd3d133704ce37393590dd1c761500c|commit]] * amd: pmc: Add Lenovo Yoga 6 13ALC6 to pmc quirk list [[https://git.kernel.org/linus/4ff3aeb664f7dfe824ba91ffb0b203397a8d431e|commit]] * intel/pmc: Add Bartlett Lake support to intel_pmc_core [[https://git.kernel.org/linus/3010da6ecf2225e41a79b06bc5f4c9750a4d35cb|commit]] * Intel VSEC/PMT: Introduce Discovery Driver [[https://lore.kernel.org/linux-kernel/20250703022832.1302928-1-david.e.box@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/fb1311b3f171bbb3c07cc7764ec981605564c83a|commit]], [[https://git.kernel.org/linus/dc957ab6aa05c118c3da0542428a4d6602aa2d2d|commit]], [[https://git.kernel.org/linus/b0631f8a5740c55b52d02174cc4c9c84cc7a16a1|commit]], [[https://git.kernel.org/linus/8a67d4b49bbdebcd255abde9e652092c3de3b657|commit]], [[https://git.kernel.org/linus/1f3855ea7d6b03f68c2eec7a0bcd537cedcc6680|commit]], [[https://git.kernel.org/linus/e4436e98672c7993cdfd7743efd0fcaa8df7cc17|commit]], [[https://git.kernel.org/linus/10f32796e86c04f73b7f8580cc9483765ed19f49|commit]], [[https://git.kernel.org/linus/d9a0788093565c300f7c8dd034dbfa6ac4da9aa6|commit]], [[https://git.kernel.org/linus/2e7ba52110ef15d29846b40eb28b400f1fb1834a|commit]], [[https://git.kernel.org/linus/934954df0f44de5e10afc1af84c06f78149f15fe|commit]], [[https://git.kernel.org/linus/a885a2780937afac4f31f00d11663f50d05dfb35|commit]], [[https://git.kernel.org/linus/c9699057521834862616ce159a47bd33920f0d9f|commit]], [[https://git.kernel.org/linus/86fc85c75bcd9b0f28afadd60c9f890669b42ba4|commit]], [[https://git.kernel.org/linus/42dabe5442887946b16e64c6ebe91d2671a96fbb|commit]], [[https://git.kernel.org/linus/b9707d46a95962bb4e28ae1929015e419ad6aff7|commit]] * pmt: Crashlog type1 version2 support [[https://lore.kernel.org/platform-driver-x86/20250713172943.7335-1-michael.j.ruhl@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/54d5cd4719c5e87f33d271c9ac2e393147d934f8|commit]], [[https://git.kernel.org/linus/0ba9e9cf76f2487654bc9bca38218780fa53030e|commit]], [[https://git.kernel.org/linus/5b27388171a18cf6842c700520086ec50194e858|commit]], [[https://git.kernel.org/linus/ba22fe0cffedf5156731fbac729a638f18d17e6b|commit]], [[https://git.kernel.org/linus/75a496aa054326d9ebf27b39e1af8b5b770311ba|commit]], [[https://git.kernel.org/linus/4f8fa22d108006b8ec0b94bb67a1bd537a2bf141|commit]], [[https://git.kernel.org/linus/147c18d8efaa1fa006fdd0b901d51092dc3b2189|commit]], [[https://git.kernel.org/linus/5c7bfa1088274bc3820eb2083f8091ff8ad397ec|commit]], [[https://git.kernel.org/linus/8ab4f88d46c70bade0633b56a0f03e20102bf10c|commit]], [[https://git.kernel.org/linus/f57b32cb4adb28b62f61c4729f7b85f55518cb2b|commit]], [[https://git.kernel.org/linus/66df9fa783aadc2a5ae8ca11ead0b13032d24e7e|commit]], [[https://git.kernel.org/linus/5623fa6859a6cd49366421317e3c5ab183583624|commit]], [[https://git.kernel.org/linus/2c402a801c19568de97b86a77b25d13448dc080a|commit]] * Add Lenovo WMI Gaming Series Drivers [[https://lore.kernel.org/platform-driver-x86/20250702033826.1057762-1-derekjohn.clark@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/57139e126a30ce64f111c78b1b9e37b39a2b7424|commit]], [[https://git.kernel.org/linus/e521d16e76cd9ea99c585e064f4e7daf657b1451|commit]], [[https://git.kernel.org/linus/949bf144bdc72e87018197ae71aa4959f17885d5|commit]], [[https://git.kernel.org/linus/e1a5fe662b593108d14cd0481019601698f9fbe8|commit]], [[https://git.kernel.org/linus/22024ac5366f065a7b931bee5b62e2588521c4f0|commit]], [[https://git.kernel.org/linus/edc4b183b794baefb54aa0baeb810fe3ac65d826|commit]] * hp-wmi: Add support for Fn+P hotkey [[https://git.kernel.org/linus/23408874e90ee299ab731bc0e0a9b3339dfc3c6e|commit]] * Support ov5670 on ipu3 devices [[https://lore.kernel.org/linux-media/20250520-djrscally-ov5670-v2-0-104ae895aecf@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/4e89c747358fdc368a2aa0a2cba21100d5f7821e|commit]], [[https://git.kernel.org/linus/bca5cfbb694d66a1c482d0c347eee80f6afbc870|commit]], [[https://git.kernel.org/linus/484f8bec3ddb453321ef0b8621c25de6ce3d0302|commit]] * oxpec: Add support for OneXPlayer X1 Mini Pro (Strix Point) [[https://git.kernel.org/linus/232b41d3c2ce8cf4641a174416676458bf0de5b2|commit]], [[https://git.kernel.org/linus/1798561befd8be1e52feb54f850efcab5a595f43|commit]] * x86-android-tablets: Add ovc-capacity-table info [[https://git.kernel.org/linus/a8fc1224f2318d3e5948671d1cad458e6372d921|commit]], [[https://git.kernel.org/linus/be91bf40a96d567973d5c5e870d1464eb51b6c42|commit]] * oxpec: Add support for AOKZOE A1X [[https://git.kernel.org/linus/d857d09fb653f081f5730e5549fce397513b0ef9|commit]] * oxpec: Add support for OneXPlayer X1Pro EVA-02 [[https://git.kernel.org/linus/fba9d5448bd45b0ff7199c47023e9308ea4f1730|commit]] * AMD: Add CPUID faulting support [[https://git.kernel.org/linus/65f55a30176662ee37fe18b47430ee30b57bfc98|commit]] * (FEATURED) CPU bugs: Attack vector controls restructuration [[https://lore.kernel.org/linux-kernel/20250108202515.385902-1-david.kaplan@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/98c7a713db91c5a9a7ffc47cd85e7158e0963cb8|commit]], [[https://git.kernel.org/linus/2c93762ec4b3ab66980ee7aaffde1e050bfbf291|commit]], [[https://git.kernel.org/linus/b8ce25df2999ac6a135ce1bd14b7243030a1338a|commit]], [[https://git.kernel.org/linus/559c758bc722ca0630d2b7f433f490cb76fe6128|commit]], [[https://git.kernel.org/linus/bdd7fce7a8168cebd400926d6352d2fbc1ac9f79|commit]], [[https://git.kernel.org/linus/4a5a04e61d7f8f26472f93287f6dcb669f0cf22f|commit]], [[https://git.kernel.org/linus/203d81f8e167a9e82747a14dace40e0abbd5c791|commit]], [[https://git.kernel.org/linus/6f0960a760eb926d8a2b9fe6fc7a1086cba14dd1|commit]], [[https://git.kernel.org/linus/2178ac58e176d8e1e4529b02647f5e549bb88405|commit]], [[https://git.kernel.org/linus/9dcad2fb31bd9b9b860c515859625a065dd6e656|commit]], [[https://git.kernel.org/linus/46d5925b8eb8c7a8d634147c23db24669cfc2f76|commit]], [[https://git.kernel.org/linus/e3b78a7ad5ea718ea1dbaeb02ba9a6aa2aee9324|commit]], [[https://git.kernel.org/linus/ddfca9430a617780c8ad9691bf44660ae49e2a35|commit]], [[https://git.kernel.org/linus/efe313827c98c81156dea9b004877db4ca728b1a|commit]], [[https://git.kernel.org/linus/480e803dacf8be92b1104ca65f2be4cb0e191375|commit]], [[https://git.kernel.org/linus/5ece59a2fca6e1467558467a05cf742b7e52d1b7|commit]], [[https://git.kernel.org/linus/d43ba2dc8eeeca21811fd9b30e3bd15bb35caaec|commit]], [[https://git.kernel.org/linus/1f4bb068b498a544ae913764a797449463ef620c|commit]], [[https://git.kernel.org/linus/2d31d2874663cde2cab8c18bfb52ed8be6dfa958|commit]], [[https://git.kernel.org/linus/e3a88d4c068242c00a1d6ddfd3c711fc22983f75|commit]], [[https://git.kernel.org/linus/736565d4edcd8b6dad50fca0c0134e7918e3d61c|commit]], [[https://git.kernel.org/linus/de6f0921ba49f5e07f57eb227dcb69ebb4776911|commit]], [[https://git.kernel.org/linus/54b53dca650bb273655a9a9b5a5b5a3fced0bcc1|commit]], [[https://git.kernel.org/linus/71dc301c26e9503350cf4e736022cc1eb8e986a7|commit]], [[https://git.kernel.org/linus/8c7261abcb7ad1df493773fd52ff3ddce37a25e6|commit]], [[https://git.kernel.org/linus/19a5f3ea4394bf813a03d1ff0efe59a7f74cc12c|commit]], [[https://git.kernel.org/linus/9687eb2399379ae4e5b5cc1bccdf893c753dcffb|commit]], [[https://git.kernel.org/linus/07a659edcf6eb56f7906fc415f46e3a7f37d5383|commit]], [[https://git.kernel.org/linus/ddcd4d3cb37c8ad60cdbaaffe93f85e15e2babb5|commit]], [[https://git.kernel.org/linus/07a659edcf6eb56f7906fc415f46e3a7f37d5383|commit]], [[https://git.kernel.org/linus/2f970a526975f4437bdc9a4ba550ecc7e66d861d|commit]], [[https://git.kernel.org/linus/eda718fde6159b2e64978637ebb3f1ae98180555|commit]], [[https://git.kernel.org/linus/02c7d5b8e0d123185817f533ed12622ed1c695e5|commit]] * efi: Implement support for embedding SBAT data for x86 [[https://git.kernel.org/linus/61b57d35396a4b4bcca9944644b24fc6015976b5|commit]] * cpu: Add new Intel CPU model numbers for Wildcatlake and Novalake [[https://git.kernel.org/linus/49f848788a4d157bb6648a57963cb060fed3d56e|commit]] * Introduce cet supervisor state support [[https://lore.kernel.org/lkml/20250522151031.426788-1-chao.gao@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7bc4ed75f2d664c5a96d1f0874c41431a84c62b2|commit]], [[https://git.kernel.org/linus/7c2c89364d9219f3a31a9a930476de5c154f13bd|commit]], [[https://git.kernel.org/linus/509e880b779592aafb41b3b23de3df7e4e2e2fcf|commit]], [[https://git.kernel.org/linus/fafb29e18db2eef75edafd4240fcde8b5da2c948|commit]], [[https://git.kernel.org/linus/151bf232494d7537e3d995b400e8233fd682ae1a|commit]], [[https://git.kernel.org/linus/8b05b3c988162ca117b3854ae7d497927b415299|commit]] * hfi: Add support for amd hardware feedback interface [[https://lore.kernel.org/platform-driver-x86/20250609200518.3616080-1-superm1@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/11390345ba0c101a7bd904139d154d6328773379|commit]], [[https://git.kernel.org/linus/31b294e522a1ecf83298aa78ecdd7b57578b5b65|commit]], [[https://git.kernel.org/linus/5d902ee5609a299748dc1f9eb56cf36ad3275ea9|commit]], [[https://git.kernel.org/linus/d4e95ea7a78e46be2f2fe529fe578d3834c453a2|commit]], [[https://git.kernel.org/linus/b6ffe4d9e074561f95a728e1f822ed15e533ec6e|commit]], [[https://git.kernel.org/linus/bb20421c05fc0a0fd70a3f8af076319f7dec4cf1|commit]], [[https://git.kernel.org/linus/263e66f9c35922d0cfd961df6d7a492820143792|commit]], [[https://git.kernel.org/linus/9e8f6bf782a96d45a25ef9bc17db06bafb6b3e21|commit]], [[https://git.kernel.org/linus/bfea2b3b4f2346510ec45a0c22450e1564f48f88|commit]], [[https://git.kernel.org/linus/216fe0d7680b2503e09edd1d7dca73305806591c|commit]], [[https://git.kernel.org/linus/13bc67a96ea5bc9dba0b91704d1f7212b65686f3|commit]], [[https://git.kernel.org/linus/f12682148262aa6deed32c0593c67658573d0600|commit]] * Enable use of EXECMEM_ROX_CACHE for ftrace and kprobes [[https://lore.kernel.org/linux-kernel/20250713071730.4117334-1-rppt@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/fcd90ad31e29d0b403f3a074a64cd7f0876175dd|commit]], [[https://git.kernel.org/linus/838955f64ae7582f009a3538889bb9244f37ab26|commit]], [[https://git.kernel.org/linus/187fd8521dd8b202cbacd7af57f4301da4d5b52d|commit]], [[https://git.kernel.org/linus/888b5a847ba9650f454cd0842ccf8497268da959|commit]], [[https://git.kernel.org/linus/3bd4e0ac61b2fd87d64572e866f58940d1d5fbdf|commit]], [[https://git.kernel.org/linus/ab674b6871b049aab2e86d1d7375526368ed175a|commit]], [[https://git.kernel.org/linus/36de1e4238c1243866eaec515ef59972c490367f|commit]], [[https://git.kernel.org/linus/5d79c2be508143559c65ace445e7a951ef92881b|commit]] * KVM * Optimize SEV cache flushing [[https://lore.kernel.org/linux-kernel/20250522233733.3176144-1-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/1d738dbb252f66dd909a662d85c67b93314d7ae7|commit]], [[https://git.kernel.org/linus/e638081751a292560a8aed36ec72e8f65b057892|commit]], [[https://git.kernel.org/linus/07f99c3fbe6e322bdb222fbfd59f708ced799cc5|commit]], [[https://git.kernel.org/linus/4fdc3431e03b9c11803f399f91837fca487029a1|commit]], [[https://git.kernel.org/linus/55aed8c2dbc4d95121c20a509d95e2ef3c1d7d09|commit]], [[https://git.kernel.org/linus/7e00013bd33995dddb604dc94f6c970d6603d5ec|commit]], [[https://git.kernel.org/linus/a77896eea33db6fe393d1db1380e2e52f74546a2|commit]], [[https://git.kernel.org/linus/6f38f8c574642a822f2e85f079fa29a49176c49c|commit]] * Add mitigation for VMSCAPE, a vulnerability affecting a broad range of amd64 CPUs that may allow a guest to influence the branch prediction in host userspace. It particularly affects hypervisors like QEMU [[https://git.kernel.org/linus/9969779d0803f5dcd4460ae7aca2bc3fd91bff12|commit]], [[https://git.kernel.org/linus/a508cec6e5215a3fbc7e73ae86a5c5602187934d|commit]], [[https://git.kernel.org/linus/2f8f173413f1cbf52660d04df92d0069c4306d25|commit]], [[https://git.kernel.org/linus/556c1ad666ad90c50ec8fccb930dd5046cfbecfb|commit]], [[https://git.kernel.org/linus/6449f5baf9c78a7a442d64f4a61378a21c5db113|commit]], [[https://git.kernel.org/linus/b7cc9887231526ca4fa89f3fa4119e47c2dc7b1e|commit]], [[https://git.kernel.org/linus/8a68d64bb10334426834e8c273319601878e961e|commit]] * SVM: Allow SNP guest policy to specify SINGLE_SOCKET [[https://git.kernel.org/linus/24be2b7956a545945fcb560d42e3ea86406dba09|commit]] * SVM: Allow SNP guest policy disallow running with SMT enabled [[https://git.kernel.org/linus/9f4701e05faeec20350d9fc550e37ae8d2e08c88|commit]] * SVM: Fold svm_vcpu_init_msrpm() into its sole caller [[https://lore.kernel.org/kvm/20250529234013.3826933-21-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/4880919aaf8d4beda81746909559578544387728|commit]], [[https://git.kernel.org/linus/2f89888434bce68123b3c980bf1f2e04ecee57e1|commit]], [[https://git.kernel.org/linus/5c9c084763637460acaeb3e22508c692a70b6905|commit]], [[https://git.kernel.org/linus/7fe0578041188d63207f17335e8c0d10e19c7515|commit]], [[https://git.kernel.org/linus/52f82177429e0631afebb676e57d05e621153b0d|commit]], [[https://git.kernel.org/linus/5904ba5172464cdf688567a06346351ab3a61fd3|commit]], [[https://git.kernel.org/linus/54f1c770611b9f8d7e8f8a50a60384291f143689|commit]], [[https://git.kernel.org/linus/0792c71c1c94964952339f3251818b6dcf66c19b|commit]], [[https://git.kernel.org/linus/16e9584cc0a8cfca1f36e6c2bead842105fcb125|commit]], [[https://git.kernel.org/linus/9b72c3d59f4245dd2d3fa19025e2789e85ce0f47|commit]], [[https://git.kernel.org/linus/f21ff2c8c997e5f209e7165456f447293907a9a8|commit]], [[https://git.kernel.org/linus/4879dc9469e6d54d1199b3c53f7c16c891d9004f|commit]], [[https://git.kernel.org/linus/c38595ad69cef0898f31421e115e5176d29c14be|commit]], [[https://git.kernel.org/linus/6b7315fe54ce24e65ba2c7b13ae22c6ab6caac5a|commit]], [[https://git.kernel.org/linus/3a0f09b361e1c6245c544f9ea9e14ab651979a4f|commit]], [[https://git.kernel.org/linus/cb53d079484c989c7fde2413e6181b704cf13f89|commit]], [[https://git.kernel.org/linus/405a63d4d3865eeff1d7f4811686ad4ac7593638|commit]], [[https://git.kernel.org/linus/8a056ece45d2e626c4726ce0da3585c94e199da8|commit]], [[https://git.kernel.org/linus/160f143cc1317a599ef44c8d35a1328f2dd7a14d|commit]], [[https://git.kernel.org/linus/4ceca57e3f2025936644abac6afafa59d3cc15be|commit]], [[https://git.kernel.org/linus/049dff172b6dde91649d65dbdad62e62f4855a97|commit]], [[https://git.kernel.org/linus/40ba80e4b04364bc5ee7991d6a41475ef8c4e8a1|commit]], [[https://git.kernel.org/linus/4880919aaf8d4beda81746909559578544387728|commit]], [[https://git.kernel.org/linus/2f89888434bce68123b3c980bf1f2e04ecee57e1|commit]], [[https://git.kernel.org/linus/5c9c084763637460acaeb3e22508c692a70b6905|commit]], [[https://git.kernel.org/linus/7fe0578041188d63207f17335e8c0d10e19c7515|commit]], [[https://git.kernel.org/linus/52f82177429e0631afebb676e57d05e621153b0d|commit]], [[https://git.kernel.org/linus/5904ba5172464cdf688567a06346351ab3a61fd3|commit]], [[https://git.kernel.org/linus/54f1c770611b9f8d7e8f8a50a60384291f143689|commit]], [[https://git.kernel.org/linus/73be81b3bb7cd7951046eedee6efb00e4afc5e02|commit]], [[https://git.kernel.org/linus/bea44d1992401b5e1a0d213cba85f9c53f492e8a|commit]], [[https://git.kernel.org/linus/0792c71c1c94964952339f3251818b6dcf66c19b|commit]] * VMX: Preserve host's DEBUGCTL.FREEZE_IN_SMM [[https://git.kernel.org/linus/7d390a9da8233fd32ccdf132726712a72a990b26|commit]], [[https://git.kernel.org/linus/2478b1b220c49d25cb1c3f061ec4f9b351d9a131|commit]], [[https://git.kernel.org/linus/80c64c7afea1da6a93ebe88d3d29d8a60377ef80|commit]], [[https://git.kernel.org/linus/17ec2f965344ee3fd6620bef7ef68792f4ac3af0|commit]], [[https://git.kernel.org/linus/8a4351ac302cd8c19729ba2636acfd0467c22ae8|commit]], [[https://git.kernel.org/linus/095686e6fcb4150f0a55b1a25987fad3d8af58d6|commit]], [[https://git.kernel.org/linus/7d0cce6cbe71af6e9c1831bff101a2b9c249c4a2|commit]], [[https://git.kernel.org/linus/6b1dd26544d045f6a79e8c73572c0c0db3ef3c1a|commit]] * Add CONFIG_KVM_IOAPIC to allow disabling support for KVM's I/O APIC (and PIC and PIT) emulation [[https://lore.kernel.org/kvm/20250611213557.294358-1-seanjc@google.com/T/|(cover)]], [[https://git.kernel.org/linus/e295d2e7fbe69ddec772c951c466dfbfc1c96818|commit]], [[https://git.kernel.org/linus/8a33b1f246ceeffe5f74b10078a04696060ac537|commit]], [[https://git.kernel.org/linus/05dc9eab3f005a5af5ad03138f81b7541c5db85b|commit]], [[https://git.kernel.org/linus/20218e69e85b0418f444227488c732e2c0b753b2|commit]], [[https://git.kernel.org/linus/00b5ebf8db7c382c7ea0074fdd79bdb9c65db236|commit]], [[https://git.kernel.org/linus/b771b1616ff89d7441e5889b84e444c48a7676f0|commit]], [[https://git.kernel.org/linus/c5a701955e2de084fdd0ad5edfed578389eae5ac|commit]], [[https://git.kernel.org/linus/df35135680fae0b13f843b6f4c6c310c567d7900|commit]], [[https://git.kernel.org/linus/77a74b8ff41ae620f5a5d727d596b670b7b9994e|commit]], [[https://git.kernel.org/linus/61423c413a746fd5fe5b0d865ea722e11b01105e|commit]], [[https://git.kernel.org/linus/2c31aa747d789dc895a62efeea13452519184487|commit]], [[https://git.kernel.org/linus/cd9140ad8312234ec296d566a9d9d0b2b437ee7c|commit]], [[https://git.kernel.org/linus/2c938850d9d18cbd6484a66588fac95d74d951fd|commit]], [[https://git.kernel.org/linus/628a27731e3f36de7ddce226f7e09ee70e40ed66|commit]], [[https://git.kernel.org/linus/141db6cd79e2d71fce3049347177f98a233d8eb2|commit]], [[https://git.kernel.org/linus/8fd2a6d43a10184f8edcc7adc0547e1871df6705|commit]], [[https://git.kernel.org/linus/37b1761fe89529a1531b971d4d869b4e6d345704|commit]], [[https://git.kernel.org/linus/e76c274513f24d92074e36e40f799b44aeb7a0fb|commit]] * Advertise support for LKGS [[https://git.kernel.org/linus/e88cfd50b60602c1084bf989c2503abac5b99fd6|commit]] * kdump: crashkernel reservation from CMA [[https://lore.kernel.org/linux-kernel/aEqnxxfLZMllMC8I@dwarf.suse.cz/T/|(cover)]], [[https://git.kernel.org/linus/35c18f2933c596b4fd6a98baee36f3137d133a5f|commit]], [[https://git.kernel.org/linus/ab475510e0422bb5672d465f9d0f523d72fdb7f1|commit]], [[https://git.kernel.org/linus/ce1bf19a34dfa1f418037cebe11f5d2c7adf9d1e|commit]], [[https://git.kernel.org/linus/e1280f3071f11abc1bacd84937ecf077dce449f3|commit]], [[https://git.kernel.org/linus/bf8be1c3610829056e5445282ca92ca7b7a4ba7b|commit]] * intel_rapl: Add support for Bartlett Lake platform [[https://git.kernel.org/linus/82a7021f5074ff69478b5104739b91ff2ae3bb4a|commit]] * intel_rapl_msr: Add pl4 support for panther lake [[https://git.kernel.org/linus/afc6a5b12b62c7743fb96fe27864604d7b33a5d2|commit]] * iommu/amd: Support for HATdis and HATS features [[https://lore.kernel.org/linux-kernel/cover.1749016436.git.Ankit.Soni@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/7e5516e60961248bbde7381038ff74bdbf6c565e|commit]], [[https://git.kernel.org/linus/025d1371cc8c852ae1b3c2916cf7403902346350|commit]] * Introduce debugfs support in iommu [[https://lore.kernel.org/lkml/20250702093804.849-1-dheerajkumar.srivastava@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/ad48b1dd14fb217e0a0b0af46744a3d1f6f26dea|commit]], [[https://git.kernel.org/linus/7a4ee419e8c144b747a8915856e91a034d7c8f34|commit]], [[https://git.kernel.org/linus/4d9c5d5a1dc940e44084e5cab780e1646501b6c1|commit]], [[https://git.kernel.org/linus/fb3af1f4fefb78f9180446aae2834e11a6f7d134|commit]], [[https://git.kernel.org/linus/2e98940f123d9c69d4759078aea9a536244c98d3|commit]], [[https://git.kernel.org/linus/b484577824452e526191cb87f297f78dadd97dda|commit]], [[https://git.kernel.org/linus/349ad6d5263a6299aae64ad59d82bb5b03b478fa|commit]], [[https://git.kernel.org/linus/39215bb3b0d929f336b6c82ff1665a3377ca0d4f|commit]] * perf: Support panther lake uncore [[https://lore.kernel.org/lkml/20250707201750.616527-1-kan.liang@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/cf002dafedd06241175e4dbce39ba90a4b75822c|commit]], [[https://git.kernel.org/linus/fca24bf2b6b619770d7f1222c0284791d7766239|commit]], [[https://git.kernel.org/linus/64ad6d6ede0cff2997e707dcb051bd4987508c27|commit]], [[https://git.kernel.org/linus/829f5a6308ce11c3edaa31498a825f8c41b9e9aa|commit]] * Intel vendor events and tma 5.02 metrics [[https://lore.kernel.org/lkml/20250211213031.114209-1-irogers@google.com/T/|(cover)]], [[https://git.kernel.org/linus/17d4b1922cf914df77460102883a23b56dc88197|commit]], [[https://git.kernel.org/linus/72da747ddd89862ac3ac7dbb17993937a27f5272|commit]], [[https://git.kernel.org/linus/ba56a910635ab13809bb602d7d5ebe3f4ac1a743|commit]], [[https://git.kernel.org/linus/240411b0483a457a125ac1fb0cdfb7b0e55fbcc5|commit]], [[https://git.kernel.org/linus/11e644eb468f813a928c79a0c8308d6c70d7432d|commit]], [[https://git.kernel.org/linus/a75d905d64deb076c332477029d4b6daca827196|commit]], [[https://git.kernel.org/linus/4cc49942444e958bd87059401f652f823cb8c6dc|commit]], [[https://git.kernel.org/linus/e415c1493fa1e93afaec697385b8952d932c41bc|commit]], [[https://git.kernel.org/linus/5ee60fbf7375abeb70f1a4d4f8f1f676e43cc7c1|commit]], [[https://git.kernel.org/linus/b52c4123a5df22201d3de4c6bda01485af2798b0|commit]], [[https://git.kernel.org/linus/aaa73d778b9f3b157a998518b5be19e1704115a8|commit]], [[https://git.kernel.org/linus/55bf5d07922a4678d3d6b865237b783540958676|commit]], [[https://git.kernel.org/linus/be67d89f79e85856ebf0b01e00306adb55809cc3|commit]], [[https://git.kernel.org/linus/094b233575f6372d0f4c0ae7301177fb6b373a18|commit]], [[https://git.kernel.org/linus/c49b0509151eab9033e9c4f77e5a32b6b90325a6|commit]], [[https://git.kernel.org/linus/23878069de3016656ea38d289150cf359db06a7b|commit]], [[https://git.kernel.org/linus/b4152015a91246de84f9d4c41b6878f370199e56|commit]], [[https://git.kernel.org/linus/870b92024e164ef48fda2c2ce968e6dca7b7621f|commit]], [[https://git.kernel.org/linus/830ee133a5abd23c577d0352c6e5b605777eb59f|commit]], [[https://git.kernel.org/linus/86f5536004a61a0c797c14a248fc976f03f55cd5|commit]], [[https://git.kernel.org/linus/228c556a63445ff6b634d1c631f59a77cd2f82eb|commit]], [[https://git.kernel.org/linus/f2f3a4afdd73285acdf7889215f0d86300511cdf|commit]], [[https://git.kernel.org/linus/8a6dcb26af82fe67c97977de2be5102197b99bbd|commit]], [[https://git.kernel.org/linus/08d9e883481b2c38326ed37314b1f6a1284c03d8|commit]] * LOONGARCH * BPF: Support trampoline for loongarch [[https://lore.kernel.org/linux-kernel/20250730131257.124153-1-duanchenghao@kylinos.cn/T/|(cover)]], [[https://git.kernel.org/linus/6ab55e0a9eac638ca390bfaef6408c10c127e623|commit]], [[https://git.kernel.org/linus/6abf17d690d83d25f6d00a1a2cd3553c7d20c2d8|commit]], [[https://git.kernel.org/linus/f9b6b41f0cf31791541cea9644ddbedb46465801|commit]] * BPF: Add dynamic code modification support [[https://git.kernel.org/linus/9fbd18cf4c69f512f7de3ab73235078f3e32ecec|commit]] * Increase COMMAND_LINE_SIZE up to 4096 [[https://git.kernel.org/linus/f7794a4d92ade518c813de69a01b27ca6d8d86f3|commit]] * Support mem= kernel parameter [[https://git.kernel.org/linus/243f8de49f076d56ee88d6f03b6221984cc63668|commit]] * POWERPC * bpf: Add jit support for load_acquire and store_release [[https://git.kernel.org/linus/cf2a6de32cabbf84a889e24a9ee7c51dee4a1f70|commit]] * perf list: Add IBM z17 event descriptions [[https://git.kernel.org/linus/508b228942b291cb69f11027c07ca17ab2ac03bc|commit]] * MIPS * tools/nolibc: support for the N32 and N64 ABIs [[https://lore.kernel.org/linux-kernel/20250623-nolibc-mips-n32-v3-0-6ae2d89f4259@weissschuh.net/T/|(cover)]], [[https://git.kernel.org/linus/f1e303348d137c710cf3fbf2eadf9d273a204987|commit]], [[https://git.kernel.org/linus/36aab1693ade824640318746c2cbf085b687bad4|commit]], [[https://git.kernel.org/linus/69891dca804c08c13f9d490f9bea060149aef10e|commit]], [[https://git.kernel.org/linus/a6a2a8a42972476ecff61d2ffabaa1e8ae162f34|commit]] * SUPERH * tools/nolibc: add support for SuperH [[https://lore.kernel.org/linux-sh/20250623-nolibc-sh-v2-0-0f5b4b303025@weissschuh.net/T/|(cover)]], [[https://git.kernel.org/linus/439fa8756a107043b54555096bd1da22e0d5cffd|commit]], [[https://git.kernel.org/linus/358b2511d7e687a243383fbbba9cb21b242f48b8|commit]], [[https://git.kernel.org/linus/02217ad447d7b1dd592cfc8253a07375d0b32aa7|commit]] = Drivers = == Graphics == * amdgpu * Add user queue instance count in HW IP info [[https://git.kernel.org/linus/78d0a27ae0e2e70b22895f4b388cc0ab88e3c6ca|commit]] * DC Patches June 04, 2025 [[https://git.kernel.org/linus/a88e727bdbbc199258ac7eefd56ba1375ea90db1|commit]], [[https://git.kernel.org/linus/29e178d13979cf6fdb42c5fe2dfec2da2306c4ad|commit]], [[https://git.kernel.org/linus/8d0d293c91904d4547befae99f9f02243d64debb|commit]], [[https://git.kernel.org/linus/c6618fa8b926fadf356612f5242057c2d761b1ab|commit]], [[https://git.kernel.org/linus/791897f5c77a2a65d0e500be4743af2ddf6eb061|commit]], [[https://git.kernel.org/linus/2d2e5472af6ecf79c30b40187e6bdf7a34578855|commit]], [[https://git.kernel.org/linus/bf6003f2052fe633f5fddeaa6923f13bc46d0e2b|commit]], [[https://git.kernel.org/linus/da63df07112e5a9857a8d2aaa04255c4206754ec|commit]], [[https://git.kernel.org/linus/39923050615cd04231ea664c4cc5dbc8560b8b42|commit]], [[https://git.kernel.org/linus/9fe914b090486783ae4e28bc557cdd420e90fdae|commit]], [[https://git.kernel.org/linus/f94877038770073b465eece8636e221653d2beae|commit]], [[https://git.kernel.org/linus/428ac7ce7f82d11f072cba6000987826746a017b|commit]], [[https://git.kernel.org/linus/90bc60cef2a3ca0a4ea98d9e6cb7129d64373dab|commit]], [[https://git.kernel.org/linus/5fa62c87cffdfe18e0f7c35c2ee3f18c8d2f7408|commit]], [[https://git.kernel.org/linus/f6d7238c924b63303a77a93d7fa9fd4f307d9bca|commit]], [[https://git.kernel.org/linus/d023de809f85307ca819a9dbbceee6ae1f50e2ad|commit]], [[https://git.kernel.org/linus/708d45eb1aa34634df04fa39a2c15d8a062ac070|commit]], [[https://git.kernel.org/linus/0ae0b670124bbd6d84b83ac3e50f46c45ebdcc46|commit]], [[https://git.kernel.org/linus/11baa4975025033547f45f5894087a0dda6efbb8|commit]], [[https://git.kernel.org/linus/148144f6d2f14b02eaaa39b86bbe023cbff350bd|commit]], [[https://git.kernel.org/linus/8dbd72cb790058ce52279af38a43c2b302fdd3e5|commit]], [[https://git.kernel.org/linus/87d6d42295a8d9d511ba53a6717a1989f6fa523c|commit]], [[https://git.kernel.org/linus/dc8ffb28790eeab7e0f92d041e88c82c1f3667c5|commit]] * DC Patches June 16, 2025 [[https://git.kernel.org/linus/90adb32480fce1ccda76ed5ebd58c4463ead3fd6|commit]], [[https://git.kernel.org/linus/0c5f7371dd3a7a50a185d647f970f412ff6f2483|commit]], [[https://git.kernel.org/linus/7beee6e91c20f297d2eba90397fe44938138f3b8|commit]], [[https://git.kernel.org/linus/592ddac93f8c02e13f19175745465f8c4d0f56cd|commit]], [[https://git.kernel.org/linus/01f60348d8fb6b3fbcdfc7bdde5d669f95b009a4|commit]], [[https://git.kernel.org/linus/69541034001b69378f48a6c4f91ef637674ce616|commit]], [[https://git.kernel.org/linus/00c9c4236d042927f1ff7dfb3805f1644cc359e2|commit]], [[https://git.kernel.org/linus/f8fa4dfbd7a2b2026035791709068ef83f695ac6|commit]], [[https://git.kernel.org/linus/def3f83e51590fcc9fdaef3f6ea9f75cd604a2d2|commit]], [[https://git.kernel.org/linus/c233ec1902430f7791d1e0deff6b480b084b2f0e|commit]], [[https://git.kernel.org/linus/c44120dffe01958be37b4e843177d4a38a3e7c35|commit]], [[https://git.kernel.org/linus/623ea7019fdeff56f07d4ca39a28b37ed8198556|commit]], [[https://git.kernel.org/linus/389153ef119dc116da909aaa8ae261494093f24a|commit]] * Add Cleaner Shader Support for GFX9.x GPUs [[https://git.kernel.org/linus/99808926d0ea6234a89e35240a7cb088368de9e1|commit]], [[https://lore.kernel.org/lkml/20250612152245.107031-1-srinivasan.shanmugam@amd.com/T/|(cover)]] * Enable debugfs information based on client-id [[https://lore.kernel.org/linux-kernel/20250704075548.1549849-1-sunil.khatri@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/348fe34a6186a53acda44a3501d4e5a4f1f5958e|commit]], [[https://git.kernel.org/linus/1fd45bc21cecea390ab9c21a2406bbbe3eed4b93|commit]], [[https://git.kernel.org/linus/719b378d371899c8bbaf0ce5f42bf7db4be819f9|commit]], [[https://git.kernel.org/linus/c03ea34cbf88dd778197a929b3269003567def55|commit]] * Create a task info option for wedge events [[https://git.kernel.org/linus/183bccafa176f4519a15ec5c35a47495cbea658c|commit]] * xe: * Update the PTL pci id table [[https://git.kernel.org/linus/49c6dc74b5968885f421f9f1b45eb4890b955870|commit]] * Add one additional PCI ID [[https://git.kernel.org/linus/ccfb15b8158c11a8304204aeac354c7b1cfb18a3|commit]] * !WildCat Lake support [[https://lore.kernel.org/lkml/20250613102256.3508267-1-dnyaneshwar.bhadane@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/f8e1c3e07db1805b585df65bd747fd98edbf4ca3|commit]], [[https://git.kernel.org/linus/b1c37a0030b27a4b5d159d87461f6a7d453fd067|commit]], [[https://git.kernel.org/linus/c96e0df4e9f5f0d6690994bb01bcfbd01af0e1f7|commit]], [[https://git.kernel.org/linus/bd031cd19f5c5597716ccaa7e6e70e65721e5ff3|commit]], [[https://git.kernel.org/linus/0085d49d30124a3b0cfd04357d22588815c5563b|commit]], [[https://git.kernel.org/linus/3c0f211bc8fc0d0a0b4c29c471b57ffff48eec60|commit]], [[https://git.kernel.org/linus/3d77a3280da9ef96e2f8281e43b2cec18f142160|commit]], [[https://git.kernel.org/linus/9d10de78a37f4f397de7662faa0c8ab54b6171c9|commit]], [[https://git.kernel.org/linus/8383bdca54792fdae8221a92e6ac0b1f26712e39|commit]] * i915 * drm_panic support for i915/xe [[https://lore.kernel.org/lkml/20250624091501.257661-1-jfalempe@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/3dd922c418903be7dd8df7212f968e94d0fe73c7|commit]], [[https://git.kernel.org/linus/d2782a0d8ff80f9fea36b7499b04c30f9c92d5a7|commit]], [[https://git.kernel.org/linus/32e2450a89fd3582614f7a2e2c14660615b603c2|commit]], [[https://git.kernel.org/linus/796f437d7bc9ff0a5099fa2b8018c9736877555b|commit]], [[https://git.kernel.org/linus/718370ff283284f191155a5eb9d4f376aaf93bb8|commit]], [[https://git.kernel.org/linus/da091afacb29b120929d181d7aea7275848ead81|commit]], [[https://git.kernel.org/linus/75fb60e5ad5f154ca88e8d05e764cceb787fbffb|commit]], [[https://git.kernel.org/linus/31d886b674079891fa4ae1843cd300c076b45b6b|commit]], [[https://git.kernel.org/linus/116d86dd69af8a596e5a894393927627ab709636|commit]], [[https://git.kernel.org/linus/0cc88243aa240e5807515d09b47336370df34de8|commit]], [[https://git.kernel.org/linus/98910fa0a487622d767d0674de3ce8fe02bde0b0|commit]] * Add support for fractional link bpps [[https://lore.kernel.org/lkml/20250509180340.554867-1-imre.deak@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/266e2fcfe2ea0d062ea392cd22f6250ae0d11c04|commit]], [[https://git.kernel.org/linus/49a50054b784989ad56f8df911611f823d628044|commit]], [[https://git.kernel.org/linus/97ae79d3ad91122991d1ad0032be02fa3e9d918f|commit]], [[https://git.kernel.org/linus/dd697c720fea53d415c4d86f6e128b8bfceb35ce|commit]], [[https://git.kernel.org/linus/c2a38dc3006a2f8eff7044a3d1f0510fd7b749bd|commit]], [[https://git.kernel.org/linus/1f581f38bc0d23c6ac6714c84a72e098f1f645fe|commit]], [[https://git.kernel.org/linus/7acc7a6fc77413ab061819cee2ab7771c4132cf0|commit]], [[https://git.kernel.org/linus/00f00859820e021e0f228ff3244401da6efc9d51|commit]], [[https://git.kernel.org/linus/a43a02d8f5f4360f7e2473c54cddc4a9bfcd0b62|commit]], [[https://git.kernel.org/linus/67e12c64b49f5a2b5a2db50d84f69b16f6d6d42e|commit]], [[https://git.kernel.org/linus/f7f46a80fa68c19260aa6c88881cee4a18682562|commit]], [[https://git.kernel.org/linus/f77d8675c1adfb7bad559c1183161db5e39e4a4d|commit]] * drm/xe/display: Program double buffered LUT registers [[https://lore.kernel.org/lkml/20250523062041.166468-1-chaitanya.kumar.borah@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/55f233aaadabfad883aa442c202d91617008dff8|commit]], [[https://git.kernel.org/linus/d535ae997ddd6b5c0c591c7d4440d3e389618da6|commit]], [[https://git.kernel.org/linus/bb3de17e2b5eb3cdc26e71b257e6c7989fce71ab|commit]], [[https://git.kernel.org/linus/2c41d62f6fb16d591df17b29edaa81ea56569bb3|commit]], [[https://git.kernel.org/linus/796b6df0f8f57c40e95bd49294cf5f869eab3e9b|commit]], [[https://git.kernel.org/linus/78f237a6a61b102e0b4cd0ea842861e82ec323dd|commit]], [[https://git.kernel.org/linus/9dae0b6e9c8c05931c1708fa9e0f4d69166ahttps://lore.kernel.org/lkml/20250507180631.874930-1-devarsht@ti.com/T/61c0|commit]], [[https://git.kernel.org/linus/b0e0369bca338bb6a07466838cef6c6e5a1a55b9|commit]], [[https://git.kernel.org/linus/d94a92b7d0a4424936b6a5aa25038a769cdd4ba8|commit]], [[https://git.kernel.org/linus/88d7e284b24ee3e16b97630536c6aa06e58941db|commit]], [[https://git.kernel.org/linus/dc0698d1b30c053d48dbe49cedb037633fa8a391|commit]] * Rough flip queue implementation [[https://lore.kernel.org/lkml/20250624170049.27284-1-ville.syrjala@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/4e3f3add4941a5751df05e733ccccf36d05d512c|commit]], [[https://git.kernel.org/linus/9367e41483125c3e257aa861ea79b119c5bfd2ea|commit]], [[https://git.kernel.org/linus/141b954cae36d7bcd84df494341b914bb80a299f|commit]], [[https://git.kernel.org/linus/470022b5c215351d5e3faf4823a489e589fa2e57|commit]], [[https://git.kernel.org/linus/ec3a347beaa21b4a041f636b7081d17677fb3f56|commit]], [[https://git.kernel.org/linus/a47828f3e7aaa9339f43c9a919c5b9b12b89d4b4|commit]], [[https://git.kernel.org/linus/82458736375a5e7874d623ab3dab196df21b3e3d|commit]] * Panel Replay + Adaptive sync [[https://git.kernel.org/linus/07cc32ecc6f393f416589f90f30542bfa7a9891d|commit]], [[https://git.kernel.org/linus/3e61b092e61d8f7f0b882f07ede9a0a553197e21|commit]], [[https://git.kernel.org/linus/deb8d0fe88a71c53b2f3db3a17bd459ff436bbb0|commit]], [[https://git.kernel.org/linus/91a2cd6236f394a1abf566db6fdee2e6884b2182|commit]], [[https://git.kernel.org/linus/d6a8336c5f06b4fc065963cfcf1ff4fe52640979|commit]], [[https://git.kernel.org/linus/e6503d10cab72ffc4419af76ad96aa10fbea08cb|commit]], [[https://git.kernel.org/linus/5d9d4feb33b7d509f8e6f5558381e1e8a3304134|commit]], [[https://git.kernel.org/linus/6ecb8e586f8339657211e12fcba7f77bae297fdd|commit]], [[https://git.kernel.org/linus/7acc76a37e5d5743102784be82e6ae6dd784043c|commit]], [[https://git.kernel.org/linus/9dc619680de4ae04930e8a0df8b5c37d280a1b25|commit]], [[https://git.kernel.org/linus/8097128a40ff378761034ec72cdbf6f46e466dc0|commit]], [[https://git.kernel.org/linus/9856a688e4bcb753f89479642a5ea57ccc64a8ff|commit]] * bochs * Add support for drm_panic [[https://git.kernel.org/linus/a629feabb53b8d714caa8fb9f307517218a5fbcd|commit]] * connector: hdmi: Allow using the YUV420 output format [[https://lore.kernel.org/linux-kernel/20250527-hdmi-conn-yuv-v5-0-74c9c4a8ac0c@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/21f627139652dd8329a88e281df6600f3866d238|commit]], [[https://git.kernel.org/linus/85b0db87417eb66c41fd7c74979312fde9383315|commit]], [[https://git.kernel.org/linus/a191077792773556671b14f88154636c2b28ee5f|commit]], [[https://git.kernel.org/linus/b01ea9acde62e405692270387dcaa4d5f1b30db0|commit]], [[https://git.kernel.org/linus/4809299addb8c7d82a1d0917f0472c60ca07926a|commit]], [[https://git.kernel.org/linus/04561845fcec5df1e03ed3525c0bd8cb896635f4|commit]], [[https://git.kernel.org/linus/90642d9de4776ebb0403ef7d8e621def70ade1f2|commit]], [[https://git.kernel.org/linus/7ca78aa0d5411d62b672ef4f5266e9913ee07920|commit]], [[https://git.kernel.org/linus/a08fd207d60ecff74a5a4d09d1b1acda1f863a49|commit]], [[https://git.kernel.org/linus/74e98941b926a3ecc29d3098475a5a0940f2ada2|commit]], [[https://git.kernel.org/linus/95f0f68fc13d03a6b8c0ca09ca9fe4122e6e51ed|commit]], [[https://git.kernel.org/linus/8deb5bd34858b0ac165d6a56e65a64bc5367e361|commit]], [[https://git.kernel.org/linus/723d5a70d1de14b34fabcd98ba697de17fa251c4|commit]], [[https://git.kernel.org/linus/58fe1d78605e78e94341b89b98a47f1aca944441|commit]], [[https://git.kernel.org/linus/8138078dc048c5160d59b55a33f618688b5fe74b|commit]], [[https://git.kernel.org/linus/a3d1bfc174dc304d2166a3cca069882faa370658|commit]], [[https://git.kernel.org/linus/54a5f1c4d5f84af18a971c665df751ee3f0423dc|commit]], [[https://git.kernel.org/linus/e271ecaaa570d4c956ba079b0724aa5194c0b617|commit]], [[https://git.kernel.org/linus/e42a3c203c95cc6362d78aaff3c478695e6719aa|commit]] * display: generic HDMI CEC helpers [[https://lore.kernel.org/linux-kernel/20250517-drm-hdmi-connector-cec-v6-0-35651db6f19b@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/fa3769e09be76142d51c617d7d0c72d9c725a49d|commit]], [[https://git.kernel.org/linus/d9f9bae6752f5a0280a80d1bc524cabd0d60c886|commit]], [[https://git.kernel.org/linus/e72cd597c35012146bfe77b736a30fee3e77e61e|commit]], [[https://git.kernel.org/linus/bcc8553b6228d0387ff64978a03efa3c8983dd2f|commit]], [[https://git.kernel.org/linus/8b1a8f8b2002d31136d83e4d730b4cb41e9ee868|commit]], [[https://git.kernel.org/linus/603ce85427043ecb29ef737c1b350901ce3ebf09|commit]], [[https://git.kernel.org/linus/65a2575a68e4ff03ba887b5aef679fc95405fcd2|commit]], [[https://git.kernel.org/linus/a74288c8ded7c34624e50b4aa8ca37ae6cc03df4|commit]], [[https://git.kernel.org/linus/ae01d3183d2763ed27ab71f4ef5402b683d9ad8a|commit]] * fourcc: Add RGB161616 and BGR161616 formats [[https://git.kernel.org/linus/1aa93cfb1288a141c64e923dbaaa277616f0f7d5|commit]] * hyperv * Add support for drm_panic [[https://lore.kernel.org/linux-hyperv/20250526090117.80593-1-ryasuoka@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/3671f37777589194c44bb9351568c13eee43da3c|commit]] * Add freescale i.mx8qxp display controller support [[https://lore.kernel.org/lkml/20250414035028.1561475-1-victor.liu@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/1c0ff333f2fe69d571798c11f0277985ce146358|commit]], [[https://git.kernel.org/linus/b71d3ace779f3e8d6790dbe40c37883ed8be4106|commit]], [[https://git.kernel.org/linus/33ce3179110db1e83fb7e99d102dd7c3a0e7d55d|commit]], [[https://git.kernel.org/linus/69c78e7e8c2a65a007ba92d8c780365fed0aff5d|commit]], [[https://git.kernel.org/linus/e0390da391b9c240a309790fd226caa3d906cf8c|commit]], [[https://git.kernel.org/linus/c809469f25fde307190a38c99982f91e5df53ac7|commit]], [[https://git.kernel.org/linus/57e464a30d335c2fd8f64449ac2170ce7c2f3662|commit]], [[https://git.kernel.org/linus/1c0ff333f2fe69d571798c11f0277985ce146358|commit]], [[https://git.kernel.org/linus/9f09e3173776b9da4fde0c0641d1d1e9d08fcf46|commit]], [[https://git.kernel.org/linus/0e177d5ce01ca52c5c754afbe8773d4ed5626cd6|commit]], [[https://git.kernel.org/linus/37571feb6c08dab97f0a8a37e3c486aa8aead5f7|commit]], [[https://git.kernel.org/linus/711a3b8783666ffd24ca99ae1c0fde76315b27a9|commit]], [[https://git.kernel.org/linus/217f80acfcf126b7d7d7b818c9bfea3c96fa85ec|commit]], [[https://git.kernel.org/linus/429efeb1900d4a3164e1233b392ee5f489b6c3f8|commit]], [[https://git.kernel.org/linus/8b2f8379bbb29ac6204a18cc477d4a6f5f624189|commit]], [[https://git.kernel.org/linus/41f93a496af2696d970cbcb3814261a9b32dbaa2|commit]] * adreno: * Support for adreno x1-45 gpu [[https://lore.kernel.org/linux-kernel/20250623-x1p-adreno-v4-0-d2575c839cbb@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/349d6418201272a32ef75142d95d31069a27a5ba|commit]], [[https://git.kernel.org/linus/024bd19bab0843f020053793223433eb852b93a2|commit]] * Support for adreno x1-85 speedbin along with new opp levels [[https://lore.kernel.org/linux-arm-msm/20250701-x1e-speedbin-b4-v2-0-a8a7e06d39fb@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/5f5ab8992ee5403e7cbbe919c6d57204e5b60fc6|commit]], [[https://git.kernel.org/linus/1c402295c10891988fb2a6fc658e6e95d4852a20|commit]] * msm * Add support for SM8750 [[https://lore.kernel.org/linux-arm-msm/20250618-b4-sm8750-display-v7-0-a591c609743d@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/c257d2c8481a9abed995184b053c7dde45e7cc37|commit]], [[https://git.kernel.org/linus/34bdf809a567ccefa1984ccda010c4b5de6c68c8|commit]], [[https://git.kernel.org/linus/1364e7e66fc814243f1fc43a3dffff0a696a3ad5|commit]], [[https://git.kernel.org/linus/1ea958223c06a2c41fbd52f9fdd1e8d9afd4bd40|commit]], [[https://git.kernel.org/linus/6b93840116df5531fbb4ef470cc9814662532b7c|commit]], [[https://git.kernel.org/linus/1337d7ebfb6d083aaf751fcf0d1dab8b98c6eb8f|commit]], [[https://git.kernel.org/linus/80dd5911cbfdc2f6ae904341d41a7a8bd8cc546c|commit]], [[https://git.kernel.org/linus/c2577fc1740d3aa89aaf8a7c5d144e7bfb6171bf|commit]], [[https://git.kernel.org/linus/afff6425a3aa5b309b273c9639775203a733a14f|commit]], [[https://git.kernel.org/linus/8984f97cc857cf64aca7a4104c6dde555a20bc06|commit]], [[https://git.kernel.org/linus/b567e928664626b0716e3a60be0a5f0cef4701c8|commit]], [[https://git.kernel.org/linus/68baf83364e159720da8b68da3f0fb3f7e34c8fe|commit]], [[https://git.kernel.org/linus/e450952b92f915600bfa88910445341fbbf3e8ca|commit]] * Sparse / "VM_BIND" support [[https://lore.kernel.org/linux-arm-msm/20250629201530.25775-1-robin.clark@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/9d712c50c30fface9b2a64251d9a7ac5fa7d3c4a|commit]], [[https://git.kernel.org/linus/471920ce25d50bb39bfdaf3c3d9bc9dde30fa265|commit]], [[https://git.kernel.org/linus/02070f04987524caf77d4bf4c94ebceb783b7bcc|commit]], [[https://git.kernel.org/linus/0594e2de62f696d62ae84d043d81c887ac00e2d1|commit]], [[https://git.kernel.org/linus/fd05abf3fbe8b2702c5a90f791a4ab5406ffb48c|commit]], [[https://git.kernel.org/linus/057e55f337c5bb2aecc8967dc045c266a4e6c49d|commit]], [[https://git.kernel.org/linus/eab7766c79fd472d33a3a73a0d301cfe8a7c7246|commit]], [[https://git.kernel.org/linus/da0e1407beb3a40e1b78418b257b849befb24bc6|commit]], [[https://git.kernel.org/linus/b5e7a2f1a396f3cf80800a215878183059c3808e|commit]], [[https://git.kernel.org/linus/001ddc857c5ba1b093b289d2f52002bcbe95d177|commit]], [[https://git.kernel.org/linus/4d0f62e4fe1072bc49eaf2677e2fb877e4e68f64|commit]], [[https://git.kernel.org/linus/8ac37c88f991257215400ad30ee9087dbc7c0a1b|commit]], [[https://git.kernel.org/linus/111fdd2198e63b1e19ce015d95692d27bf6ce3fa|commit]], [[https://git.kernel.org/linus/fe4952b5f27cca5d143d3de249562d4cc984c1d6|commit]], [[https://git.kernel.org/linus/37889600f58ea554943d48a86e30f635005f6712|commit]], [[https://git.kernel.org/linus/62a28e272b87aee1b225942cf80505da1e220def|commit]], [[https://git.kernel.org/linus/2c7ad9925523f644fe808b243921ebd5c01590e5|commit]], [[https://git.kernel.org/linus/dbbde63c9e9d472743a88f975baac412ba93f29d|commit]], [[https://git.kernel.org/linus/7e34b8f6ed1e2d705668959cebd5aef3d5ba1b8b|commit]], [[https://git.kernel.org/linus/5b5582c6b8845cb11e7c62443b0b243953f716da|commit]], [[https://git.kernel.org/linus/6bf32afd37eb6806403eff8b8e5c85ccf5723c9b|commit]], [[https://git.kernel.org/linus/feb8ef4636a457a1fd916a3ae575f552935e69b9|commit]], [[https://git.kernel.org/linus/6a4d287a1ae6e49f8ef57fcb2a512c2b0bbef966|commit]], [[https://git.kernel.org/linus/b58e12a66e47eaf95b31bbefbc260e5a0b3e638c|commit]], [[https://git.kernel.org/linus/757cff73e122666fae96eb0be567f6897c6c853c|commit]], [[https://git.kernel.org/linus/4570dbb8a62410862528fe80cebad4ad4fdd9f5e|commit]], [[https://git.kernel.org/linus/af9aa6f316b3dae53318a044e975dae979cc022b|commit]], [[https://git.kernel.org/linus/06ebb4f043999d42916b78697eebfbc12cc1c0f8|commit]], [[https://git.kernel.org/linus/e1341f91450525b94474b75d5e77587d1d84e52c|commit]], [[https://git.kernel.org/linus/cefb919cfa5359c72325be8c7dc8a245c85c2756|commit]], [[https://git.kernel.org/linus/92395af63a9958615edfa9d4ef1ea72c92a00410|commit]], [[https://git.kernel.org/linus/2b93efeb83bd2d4bc82817109a1973acb8129173|commit]], [[https://git.kernel.org/linus/e601ea31d66ba83d565cae9cfa45cbbcdd8286dd|commit]], [[https://git.kernel.org/linus/ecfd9fa83fa03ba5e9e860189757d9761e72f31c|commit]], [[https://git.kernel.org/linus/2e6a8a1fe2b262a6dfd0a65041fcd830ee1e7143|commit]], [[https://git.kernel.org/linus/9edc52967cc7fcd430749cdd8866aa68f25422bf|commit]], [[https://git.kernel.org/linus/0b4339c55ef59ff753c8d505596961edd7b887da|commit]], [[https://git.kernel.org/linus/05a249683455bf1099de28d7f189c6013aae4794|commit]], [[https://git.kernel.org/linus/0a1ff88ec5b60b41ba830c5bf08b6cd8f45ab411|commit]], [[https://git.kernel.org/linus/1fed8df301336d904ba45b1bda0c7ce5bd7e6932|commit]], [[https://git.kernel.org/linus/3bebfd53af0f7c8ea55094ba7b8b8b907024bb7b|commit]], [[https://git.kernel.org/linus/b74fae5492d1429c03b57a423d0837a3bdc4b397|commit]] * panel * Add winstar wf40eswaa6mnn0 panel support [[https://lore.kernel.org/devicetree/20250606114644.105371-1-eichest@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/d04f6367d39918461d0335d30b860d38668d4b54|commit]], [[https://git.kernel.org/linus/f79692d0c386bf8b815c92fc0f832d1a0af03628|commit]] * Add dell inspiron 7441 / latitude 7455 (x1e-80-100) [[https://git.kernel.org/linus/1a304a2f8f7dbe25f555721f502227f9197145ed|commit]] * panel-edp: Add CMN N116BCJ-EAK [[https://git.kernel.org/linus/7acacca1b157fcb258cfd781603425f73bc7370b|commit]] * panel-edp: Add KDC KD116N3730A05 [[https://git.kernel.org/linus/a3436f63aa4f93b043a970cc72a196a501191ecc|commit]] * panel-edp: Add support for AUO G156HAN03.0 panel [[https://git.kernel.org/linus/a4b4e3fd536763b3405c70ef97a6e7f9af8a00dc|commit]] * Add display support for fairphone 3 smartphone [[https://lore.kernel.org/devicetree/20250611-fp3-display-v4-0-ef67701e7687@lucaweiss.eu/T/|(cover)]], [[https://git.kernel.org/linus/978a84297371ac33a15c56a7d31fd1b125427dac|commit]], [[https://git.kernel.org/linus/54bd1390e98450a2c1cad99da3e2594e92c41a4c|commit]], [[https://git.kernel.org/linus/df401fa1b80775109e2a52360fcb0b2b2300525a|commit]] * Add DSI panel support for gameforce-ace [[https://git.kernel.org/linus/6b28769116971a4427ea09ed2cb1cf1afa79ab82|commit]] * visionox-rm69299: modernize & support the variant found in the SHIFT6mq [[https://lore.kernel.org/devicetree/20250509-topic-misc-shift6-panel-v2-0-c2c2d52abd51@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/9c59059fcf27ccd93d7dddc99727fd2c9deca309|commit]], [[https://git.kernel.org/linus/01a2c6756bcae987472228c41319fc6ab2cc89c8|commit]], [[https://git.kernel.org/linus/c161a2b79a5cdcd7eae5f544bb9ec8a82d76d1de|commit]], [[https://git.kernel.org/linus/88e6e4dd5012c81e491e6702321cbbab8083a04b|commit]], [[https://git.kernel.org/linus/783334f366b1825d8ca22e3b8fac6dd7a662e5fd|commit]] * panel-edp: Add CMN N116BCJ-EAK [[https://git.kernel.org/linus/34a3554a1c7059b861db2aafb052a256f38813d6|commit]] * panel-edp: add N160JCE-ELL CMN panel for Lenovo Thinkbook 16 [[https://git.kernel.org/linus/126bf397bf58485cdd631824190cdcfeb86f5d9b|commit]] * himax-hx8394: Add Support for Huiling hl055fhav028c [[https://git.kernel.org/linus/b837937c0237ea4f17493bc17f8ccd4a5e29b2c5|commit]] * Add support for Renesas R61307 based MIPI DSI panel [[https://git.kernel.org/linus/cb6c01ead1eb78f7676ea09fe407c4aa1c5855b3|commit]] * Add support for Renesas R69328 based MIPI DSI panel [[https://git.kernel.org/linus/9e0f93f7af569c6aee53eedac2c4161ea9d50169|commit]] * panel-simple: add AUO P238HAN01 panel entry [[https://git.kernel.org/linus/8a45632ed3179995b2956cfbf140655701301471|commit]] * ilitek-ili9881c: Add configuration for 7" Raspberry Pi 720x1280 [[https://git.kernel.org/linus/29a9b3a504c0d18bcc7f0547371409e9dcbc045e|commit]] * panfrost: * Panfrost bo tagging and gems debug display [[https://lore.kernel.org/linux-kernel/20250520174634.353267-1-adrian.larumbe@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/e0e33f9bbbd635e18003cf8590c978beb9ce9045|commit]], [[https://git.kernel.org/linus/ca8b3216dcea9b3601c925a4942a054e92b0d528|commit]], [[https://git.kernel.org/linus/2f684bbbcb27048e6b16732b440dbadc0e342363|commit]], [[https://git.kernel.org/linus/e48ade5e23ba1f4ecdb0b1ce0f5a14e0b9af37a2|commit]], [[https://git.kernel.org/linus/6048f5587614bb4919c54966913452c1a0a43138|commit]] * Add mali gpu support for mediatek mt8370 soc [[https://lore.kernel.org/devicetree/20250509-mt8370-enable-gpu-v6-0-2833888cb1d3@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/ea024e6e7a64f7f9a12bfaace61105006ba863e5|commit]], [[https://git.kernel.org/linus/6905b0d9813176087fc0f28bc5e4ee2b86e6ce13|commit]], [[https://git.kernel.org/linus/bd77b870eb190c9cf5d9b7208625513e99e5be2d|commit]], [[https://git.kernel.org/linus/81645377c231803389ab0f2d09df6622e32dd327|commit]], [[https://git.kernel.org/linus/3828a643e808b8f2a90f8ba08f68ad3138b1026e|commit]] * sitronix * st7571-i2c: Add support for the ST7567 Controller [[https://lore.kernel.org/linux-kernel/20250715110411.448343-1-javierm@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/1d043d6c00b010c186ad0ddab0a0b9bd648e9bf1|commit]], [[https://git.kernel.org/linus/720799d9462ccade1deb8d05d8b63e2cfd7f4e41|commit]], [[https://git.kernel.org/linus/d9ace6d5508020040fa39edbc72a1c544a99bbbe|commit]], [[https://git.kernel.org/linus/d2bfb999640fcc5759ddae5ea9a5b98a03da9fd3|commit]], [[https://git.kernel.org/linus/a55863ba4c9ea9febe81ecf7dba36e7989a37b7e|commit]] * tidss * Add OLDI bridge support [[https://lore.kernel.org/devicetree/20250528122544.817829-1-aradhya.bhatia@linux.dev/T/|(cover)]], [[https://git.kernel.org/linus/90090f49f18f2e3884406c1a1390761ec0f27e80|commit]], [[https://git.kernel.org/linus/d18bf71253c58bd9de8314896e5acf368eba36dc|commit]], [[https://git.kernel.org/linus/7246e092994556ccfef39f7d3a7cbecdedddc3ad|commit]] * Add support for am62l dss [[https://lore.kernel.org/lkml/20250507180631.874930-1-devarsht@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/cb8d4323302c7ad6b8baa1f5ca29f6186b30f316|commit]], [[https://git.kernel.org/linus/e019f515c969cef78187b9cb87c6da06b47568b2|commit]], [[https://git.kernel.org/linus/46a7c081be700d802741f26d2e9acf1861ee88f1|commit]] * vkms * Add support for YUV and DRM_FORMAT_R* [[https://lore.kernel.org/linux-kernel/20250415-yuv-v18-0-f2918f71ec4b@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/c76e2c78bc2a35ca04eead275f14b6d23ae9a89f|commit]], [[https://git.kernel.org/linus/fe22d21e93426294eb0ebdb0bf5f6d6b77481ecc|commit]], [[https://git.kernel.org/linus/81dbec07197678fc2d86f1494dfaf44023864842|commit]], [[https://git.kernel.org/linus/f776e5cef757927b038a9c07c0c68f34d35f7787|commit]], [[https://git.kernel.org/linus/11d435b81e5dd2cc48daa2d3d71a19bcbc46e807|commit]], [[https://git.kernel.org/linus/3e897853debde269ab01f0d3d28c3e7b37bf2c39|commit]], [[https://git.kernel.org/linus/c59176cbca1188b906a36f06004a98a6264a8008|commit]], [[https://git.kernel.org/linus/ef818481d9fbaf3483dde0d1faa565a016810de3|commit]] * sun4i * Add Display Engine 3.3 (DE33) support [[https://lore.kernel.org/devicetree/20250528092431.28825-1-ryan@testtoast.com/T/|(cover)]], [[https://git.kernel.org/linus/81cf7c68794c4733fd9f8f2889c7596aa813e55d|commit]], [[https://git.kernel.org/linus/a2817589441574e5f5e64b9b18776d84ccf16d08|commit]], [[https://git.kernel.org/linus/ef54f1dc246b72bac4dd222bd57054ba740fa207|commit]], [[https://git.kernel.org/linus/5419143dd071daed58de0d349e8a0eac99fa0c29|commit]], [[https://git.kernel.org/linus/18c4be55e2aa95f0de0ed79723de2c282e2a2924|commit]], [[https://git.kernel.org/linus/5b9cfdbfc328317ab11bf522ecea875606f22732|commit]], [[https://git.kernel.org/linus/9e623068f177187091ded170713f8dee3dcc1019|commit]], [[https://git.kernel.org/linus/54bd08e15b74c251f4b151987890a808cf54143d|commit]] * ttm/pool: allow debugfs dumps for numa pools. [[https://git.kernel.org/linus/0f6afbb2ae6c9bd2acd5acf75762fec68bc6fab0|commit]] * Add Display Unit support for rz/v2h(p) soc [[https://lore.kernel.org/linux-renesas-soc/20250530165906.411144-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/1f957fbb88b61eaf5ac9bf2db6bc2e54121a4359|commit]], [[https://git.kernel.org/linus/e37a95d01d5acce211da8446fefbd8684c67f516|commit]], [[https://git.kernel.org/linus/0425a20f8a49722d0508e917b4aef767bbc06ec8|commit]], [[https://git.kernel.org/linus/3c55c4f05c7ac4fd741cbe92574598324f843d94|commit]], [[https://git.kernel.org/linus/2991c3f0ca8632264569f7c045f37ecdb71a05da|commit]], [[https://git.kernel.org/linus/e96bec001af60857ece60b5fd10caa9886bbf12d|commit]], [[https://git.kernel.org/linus/7c3fecdd12d6487e1229f00bfeffccabd1f011f8|commit]], [[https://git.kernel.org/linus/a56a6b81d80fdf876a5ee6e441a6c8a0052f6f37|commit]], [[https://git.kernel.org/linus/7c1e102ccf1d276bbaee2ddb601b0bdeb6eeaf5c|commit]], [[https://git.kernel.org/linus/e2944dc6587f39c3eefb15ee607e700314230a0b|commit]] * rcar-du: rzg2l_mipi_dsi: add MIPI DSI command support [[https://lore.kernel.org/linux-renesas-soc/20250604145306.1170676-1-hugo@hugovil.com/T/|(cover)]], [[https://git.kernel.org/linus/6f392f37165008cfb3f89d723aa019e372ee79b9|commit]] * rz-du: Support panels connected directly to the DPAD output [[https://git.kernel.org/linus/1f372c1fc6cff841e85913ad2b3b3680e94eabac|commit]] * Make global edid_info depend on config_firmware_edid [[https://git.kernel.org/linus/33b4e4fcd2980ee5fd754731ca9b0325f0344f04|commit]] * fourcc: Add additional float formats [[https://lore.kernel.org/linux-arm-msm/20250625173712.116446-1-robin.clark@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/e04c3521df073b688b9e9e2213cd3c588e3b6e68|commit]], [[https://git.kernel.org/linus/3529cb5ab16b4f1f8bbc31dc39a1076a94bd1e38|commit]] * Improve gpu_scheduler trace events + UAPI [[https://git.kernel.org/linus/18c44fb647beb53d5c9dcd926d733bf931fbfca8|commit]], [[https://git.kernel.org/linus/2956554823cedb390b7ec4534afa898176317638|commit]], [[https://git.kernel.org/linus/d6b7b46232b78510a12e351b738f493021edf8c3|commit]], [[https://git.kernel.org/linus/8a98df70062bd66b76a5620fbe59437622e284ea|commit]], [[https://git.kernel.org/linus/76d97c870f291e690037c3e82ab67d343702b14c|commit]], [[https://git.kernel.org/linus/fbf11ce526266f8cdd2afe1f94229049d17927dc|commit]], [[https://git.kernel.org/linus/f6743e6a00fda5d7238fb73807a7aa325a5c2d2c|commit]], [[https://git.kernel.org/linus/4f7fa5fa414cc2990afbdffc0333f7c7ba3756b1|commit]], [[https://git.kernel.org/linus/1780e94a0c4289bdeaf7880500149484f4187d37|commit]], [[https://git.kernel.org/linus/6c8e8a1c4371ef680b4b55e32854a322ca9ef216|commit]] == Power Management == * efi: Add ovmf debug log driver [[https://git.kernel.org/linus/f393a761763c542761abcf978252d431269366d6|commit]] * efistub: Lower default log level [[https://git.kernel.org/linus/86bc643afd72c28c25831c87df6e6d0b016c5004|commit]] * ACPI: APEI: Enable einjv2 support [[https://lore.kernel.org/lkml/20250617193026.637510-1-zaidal@os.amperecomputing.com/T/|(cover)]], [[https://git.kernel.org/linus/1a35c88302a3b2827ec47f0b2d0530b543938fb3|commit]], [[https://git.kernel.org/linus/0c6176e1e1862fd09484c50de17c04b3ca388c22|commit]], [[https://git.kernel.org/linus/21cd921b1a5a4c8d0097343bda7e6e78d21e9773|commit]], [[https://git.kernel.org/linus/691a0f0a557b19316ef533f9ca34c72ab6c7ae56|commit]], [[https://git.kernel.org/linus/90711f7bdf76faa9ed766236bc1f1fbd4364b5e7|commit]], [[https://git.kernel.org/linus/b47610296d17f90ccb24085dcd75fd083acc736d|commit]], [[https://git.kernel.org/linus/8b148a97931db247771c43a0b5abdc31936c35f0|commit]] * DPTF: Support for Wildcat Lake [[https://git.kernel.org/linus/9cf45756a4b9a7341333dfa8119b823ba66cd17e|commit]] * tools/power turbostat: Support more than 64 built-in-counters [[https://git.kernel.org/linus/8d14a098b47cc7e5cfa703b9e015d6ca1074489a|commit]] * tools/power turbostat: add format "average" for external attributes [[https://git.kernel.org/linus/dcd1c379b0f179763956e8596ad99912165a95ec|commit]] * tools/power turbostat: probe and display L3 cache topology [[https://git.kernel.org/linus/5f961fb2a7d8f4d89d64a9e2cd584738de5f9c58|commit]] * thermal/drivers/qcom-spmi-temp-alarm: Add support for GEN2 rev 2 PMIC peripherals [[https://git.kernel.org/linus/348e104715744f4c97fb3408ee91b543eedc8af1|commit]] * thermal/drivers/qcom-spmi-temp-alarm: Add support for LITE PMIC peripherals [[https://git.kernel.org/linus/97d4d7742d0986426cc48f58b6baae04953eae04|commit]] * thermal/drivers/rockchip: Support RK3576 SoC in the thermal driver [[https://git.kernel.org/linus/feb69bccf5d3eb31918df86638abc82594390ba5|commit]] * thermal: intel: int340x: Allow temperature override [[https://git.kernel.org/linus/ea78eed7a451375fc8d604bbe3db55be5779eb7d|commit]] == Storage == * scsi: pm80xx: Add controller SCSI host fatal error uevents [[https://git.kernel.org/linus/c7ee6c8f2f1e3d4b8efa6ac957289676a3f5cd51|commit]] * ata: libata-sata: Add link_power_management_supported sysfs attribute [[https://git.kernel.org/linus/0060beec0bfa647c4b510df188b1c4673a197839|commit]] * nvme: Support for administrative controllers [[https://lore.kernel.org/lkml/20250721173700.4153098-1-kamaljit.singh1@wdc.com/T/|(cover)]], [[https://git.kernel.org/linus/e715b8733df60aa3280ab3e0de0560c8a72c5c1d|commit]] * nvmet: add support for FDP in fabrics passthru path [[https://git.kernel.org/linus/c71fc0f457ca1c2cd4dff2d974df724beb14f67e|commit]] == Drivers in the Staging area == * Intel ipu7 pci and input system device drivers [[https://lore.kernel.org/linux-media/20250529041323.3026998-1-bingbu.cao@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/b7fe4c0019b12d60ece3e99eeb0ccfd5a1d103e5|commit]], [[https://git.kernel.org/linus/71d81c25683a7cace187cdeeb232b51bb72a0d04|commit]], [[https://git.kernel.org/linus/cc5de519299d35fe34905303186abd8cac252163|commit]], [[https://git.kernel.org/linus/2788a049ba59fb2f90cd0d8658a8a01ce9b2797b|commit]], [[https://git.kernel.org/linus/a516d36bdc3d8373f904af57c95e76d6f921cf1c|commit]], [[https://git.kernel.org/linus/3f9b2dc8800c9933a5b7de2cc59517815fc77e46|commit]], [[https://git.kernel.org/linus/c5ddd03bc5c4ac92703060001d8912cacb3c2765|commit]] * axis-fifo: remove sysfs interface [[https://git.kernel.org/linus/ff9ec951021c2040db475f3d5cc1ada4259dad33|commit]] * axis-fifo: add debugfs interface for dumping fifo registers [[https://git.kernel.org/linus/fe4e81979aa63364305e6dd1c85ce1e097d3fe02|commit]] * atomisp: gc0310: Modernize and move to drivers/media [[https://git.kernel.org/linus/e3b95e64d508d0e869d3fb7bdef6559f976bbdef|commit]], [[https://git.kernel.org/linus/214b24b4cdb2decd61d2f79116fe4d4ad9a7dd4c|commit]], [[https://git.kernel.org/linus/58eec766d28a59542cbc898e75fbe5a893a27174|commit]], [[https://git.kernel.org/linus/2c3a35f27db887c0eb1944ab516e670da0765b42|commit]], [[https://git.kernel.org/linus/782101916bf23fdee62e2b317472678a3a3fb231|commit]], [[https://git.kernel.org/linus/5446808037f6a4db04210db3bf95b216f9588076|commit]], [[https://git.kernel.org/linus/cd3a72c6430c6edb77268a3653858908c5427e76|commit]], [[https://git.kernel.org/linus/c914e3971f3ee3d09463b8d0f7802ee83eb728f6|commit]], [[https://git.kernel.org/linus/c9524e6b90824ccfb96eac2e88f377f50c6d13ce|commit]], [[https://git.kernel.org/linus/bddd68a844f5a1c5ecc2f0409e7a2e7789169477|commit]], [[https://git.kernel.org/linus/b9ea99652e973ebdcde855f10c85f690da86cd8d|commit]], [[https://git.kernel.org/linus/f934362be2165ca22c3fb460bf5ae9468e5187f5|commit]], [[https://git.kernel.org/linus/9a21a940681c0ba22d7e9e341a4ab560939fce4b|commit]], [[https://git.kernel.org/linus/889740337f29c12f7eb32c281869654cfe3e32b5|commit]], [[https://git.kernel.org/linus/1e29696182f68b88cf2e459cc928eecc5770b459|commit]], [[https://git.kernel.org/linus/01027ffed991f8e4f05e4d73cd91f17681d1bf51|commit]], [[https://git.kernel.org/linus/e0e182ad80e90149d6d73e709d004a640bdce3ae|commit]], [[https://git.kernel.org/linus/0f8b9632fa87eab457171198e1de8430536cace4|commit]], [[https://git.kernel.org/linus/4d697daae8d82201f57c013c745b734cf5f8fd04|commit]], [[https://git.kernel.org/linus/4aaa74642d8c808f9602e4b9d276ea4d32c34515|commit]], [[https://git.kernel.org/linus/3c30c8948d8143d1ed38234b3614e81229a7f6b3|commit]], [[https://git.kernel.org/linus/4ea35dbdaf5f914ce78b5197ae2e3dcee58c1280|commit]] * atomisp: remove debug sysfs attributes active_bo and free_bo [[https://git.kernel.org/linus/5e2330ef08f4d7c7692ee55d272c0bb489258915|commit]] == Networking == * Bluetooth: * btintel_pcie: Add support for device 0x4d76 [[https://git.kernel.org/linus/6053b532d345b551a5d4b87fb721a0bc51393858|commit]] * btnxpuart: Add support for 4M baudrate [[https://git.kernel.org/linus/4112e29a33d98afe107e62d94c884514ffbcb21b|commit]], [[https://git.kernel.org/linus/45b54f007dc36f14e90a4b8a207964a672d1d151|commit]] * btnxpuart: Add uevents for FW dump and FW download complete [[https://git.kernel.org/linus/634fd53a63be4798da356dbc7251046b713d992a|commit]], [[https://git.kernel.org/linus/085ee7cf937ce1f524cc6e68e81f109ddb1682c7|commit]] * btnxpuart: implement powerup sequence> [[https://git.kernel.org/linus/18afbdcd1250cafee0012dc45832d439f96b85e6|commit]], [[https://git.kernel.org/linus/636c803f926ba0b20ad04be6a98592f4df7a7fd5|commit]] * btusb: Add RTL8852BE device 0x13d3:0x3618 [[https://git.kernel.org/linus/385d358a0e12f50231b1d5eca819c551d4b84d41|commit]] * btusb: Add a new VID/PID 2c7c/7009 for MT7925 [[https://git.kernel.org/linus/7ed1d46c6bc2848469f8b0cefc43eef2c5d23536|commit]] * btusb: Add new VID/PID 0489/e14e for MT7925 [[https://git.kernel.org/linus/942873c8137fe0015ab37f62f159d88079859c5e|commit]] * btusb: QCA: Support downloading custom-made firmwares [[https://git.kernel.org/linus/a3f9f6dd047af711341a2367a8b08a3ade31438d|commit]] * btintel_pcie: Support Function level reset [[https://git.kernel.org/linus/256ab9520d15c772e39620cc0ef6310091406c67|commit]] * btusb: Add USB ID 3625:010b for TP-LINK Archer TX10UB Nano [[https://git.kernel.org/linus/d9da920233ec85af8b9c87154f2721a7dc4623f5|commit]] * btusb: Add one more ID 0x28de:0x1401 for Qualcomm WCN6855 [[https://git.kernel.org/linus/c20284f73417581a6097401a4a93843ed670f23b|commit]] * btusb: Add support for variant of RTL8851BE (USB ID 13d3:3601) [[https://git.kernel.org/linus/65b0dca6f9f2c912a77a6ad6cf56f60a895a496b|commit]] * Rdma support for dma handle [[https://lore.kernel.org/linux-pci/cover.1752752567.git.leon@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0a61ec9cc51b0e43981222005444508437e95b33|commit]], [[https://git.kernel.org/linus/5f9ec7880e6b3c4d0cf242fe28506d0b084328b1|commit]], [[https://git.kernel.org/linus/888a7776f4fb04c19bec70c737c61c2f383c6b1e|commit]], [[https://git.kernel.org/linus/5b2e45049dc06a876bc6b138218ddeb0814502ef|commit]], [[https://git.kernel.org/linus/d83edab562a496a42720902a1d2effccd05c37c5|commit]], [[https://git.kernel.org/linus/3c819070754c3e81ad7be07e77fad83a658022f7|commit]], [[https://git.kernel.org/linus/a272019a46c918575f10cc529c893585d46b3b55|commit]], [[https://git.kernel.org/linus/e1bed9a94da86a7c01b985c2e9a030207269cbc7|commit]] * RDMA/efa: Add Network HW statistics counters [[https://git.kernel.org/linus/475ac071bade37644538fd7c4765aede7dbfba34|commit]] * RDMA/qib: Remove outdated driver [[https://git.kernel.org/linus/24baad32b7100448fc4c3b13eceb0a222b25b12c|commit]] * IB/mad: Add Flow Control for Solicited MADs [[https://lore.kernel.org/linux-kernel/cover.1751278420.git.leon@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/1cf0d8990155c132019371bae96b5cfac661c0a9|commit]], [[https://git.kernel.org/linus/314cb74cea847db6226f3eaba4167198501d7ba3|commit]], [[https://git.kernel.org/linus/8ab05a5456bb9556bbf7d500a4b1b3b261ed6894|commit]] * Octeontx2-pf: extend link modes support [[https://git.kernel.org/linus/1df77da01b63a2f9a9c74630581448007a73f3c1|commit]], [[https://git.kernel.org/linus/ad97e72f1c30c0353aa06e7886182a4a209aba3a|commit]], [[https://git.kernel.org/linus/5f21226b79fd8fd95acc9bfa8eedf8ee6ceb4088|commit]] * Octeontx2-af: RPM: misc feaures [[https://lore.kernel.org/netdev/20250720163638.1560323-1-hkelam@marvell.com/T/|(cover)]], [[https://git.kernel.org/linus/dd47fc6769340536d0d451bfe0793440f630a73f|commit]], [[https://git.kernel.org/linus/83d17aba92ca11bfb745e4f068debc955d02d229|commit]], [[https://git.kernel.org/linus/f5295b5a58492f94833bc0ed0a157c32ec973c8c|commit]], [[https://git.kernel.org/linus/49f02e6877d1bec848048dc6366859c30bbc0a04|commit]] * RDMA/bnxt_re: Use macro instead of hard coded value [[https://git.kernel.org/linus/7788278ff267f831bab39a377beaa7e08d79c2a9|commit]] * RDMA/efa: Add CQ with external memory support [[https://lore.kernel.org/lkml/20250518160956.14711-1-mrgolin@amazon.com/T/|(cover)]], [[https://git.kernel.org/linus/1a40c362ae265ca4004f7373b34c22af6810f6cb|commit]], [[https://git.kernel.org/linus/c897c2c8b8e82981df10df546c753ac857612937|commit]], [[https://git.kernel.org/linus/9fb3dd85197f5e5901a81b104a0f8b513148d138|commit]] * RDMA/mana_ib: Add device statistics support [[https://git.kernel.org/linus/baa640d924e55eee9210164ac068ad32dbd69c20|commit]] * RDMA/mana_ib: add support of multiple ports [[https://git.kernel.org/linus/60c9a34df2d83dee2e6ec7e47c2310293c98f7e4|commit]] * net/mlx5: fs, add multiple prios to RDMA TRANSPORT steering domain [[https://git.kernel.org/linus/52931f55159ea5c27ad4fe66fc0cb8ad75ab795b|commit]] * RDMA/rxe: Prefetching pages with explicit ODP [[https://lore.kernel.org/linux-kernel/20250522111955.3227-1-dskmtsd@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/3576b0df1588a0fd0249c29975d9dc92ffd6f3c0|commit]], [[https://git.kernel.org/linus/9284bc34c77399a12db1a191f35129882d067c90|commit]] * RDMA/bnxt_re: Support 2G message size [[https://git.kernel.org/linus/0aed817380d620987b2d5c573fdd2f01c30976a4|commit]] * mlx5: Add multiple priorities support RDMA TRANSPORT tables [[https://git.kernel.org/linus/52931f55159ea5c27ad4fe66fc0cb8ad75ab795b|commit]], [[https://git.kernel.org/linus/40852c890119ebf39a741f50db13ae941f230d05|commit]] * eth: Revert the removal of he DLink/Sundance (ST201) driver [[https://git.kernel.org/linus/8b3332c1331c7c260bdff89bfdfd24ea263be764|commit]] * airoha: Add PPPoE offload support [[https://git.kernel.org/linus/0097c4195b1d0ca57d15979626c769c74747b5a0|commit]] * amd-xgbe: add hardware PTP timestamping [[https://lore.kernel.org/netdev/20250718185628.4038779-1-Raju.Rangoju@amd.com/T/|(cover)]], [[https://git.kernel.org/linus/7564d3247aec784941da8cd89fbd1334069430c1|commit]], [[https://git.kernel.org/linus/fbd47be098b542dd8ad7beb42c88e7726d14cfb6|commit]] * amd-xgbe: add support for giant packet size [[https://git.kernel.org/linus/9e2a7ad4ae909d1ec0e1b1bde4ff67a75962c41b|commit]] * bcmasp: Add support for re-starting auto-negotiation [[https://git.kernel.org/linus/190ccb817637887d52bd789c9f17403d60227ae1|commit]] * bcmasp: add support for GRO [[https://lore.kernel.org/netdev/20250611212730.252342-1-florian.fainelli@broadcom.com/T/|(cover)]], [[https://git.kernel.org/linus/391859cb17f5356337593c59cea04b14f3405a3d|commit]], [[https://git.kernel.org/linus/b0f5b16829577db56a64b61c6ef11a975df919e8|commit]] * bcmgenet: add support for GRO software interrupt coalescing [[https://lore.kernel.org/lkml/20250531224853.1339-1-zakkemble@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/28ed9bed5fb24e4235b8d6cffb5a5c68de710a25|commit]], [[https://git.kernel.org/linus/078bb22cfc652aa206c89e16d25ab3ffffc7427c|commit]] * Introducing broadcom bnge ethernet driver [[https://lore.kernel.org/netdev/20250701143511.280702-1-vikas.gupta@broadcom.com/T/|(cover)]], [[https://git.kernel.org/linus/74715c4ab0fa0c0911ba78cb639db6b8da88b085|commit]], [[https://git.kernel.org/linus/9099bfa1158a119b1cfd38b4de3ab16d24f841fe|commit]], [[https://git.kernel.org/linus/7037d1d8979653e4da384b732d2f38d151b9f493|commit]], [[https://git.kernel.org/linus/fb7d8b61c1f77a5d47fc5cc057d6095acfbedd92|commit]], [[https://git.kernel.org/linus/27544c0ecb4ca50954a109475932e681ea77cd6d|commit]], [[https://git.kernel.org/linus/29c5b358f385503fbd46423352cd8526669a12fb|commit]], [[https://git.kernel.org/linus/627c67f038d2e9a956bc25e083bcbf9b357630d2|commit]], [[https://git.kernel.org/linus/18a975389fcc810143c5e62294f52192f942b665|commit]], [[https://git.kernel.org/linus/3fa9e977a0cd0f3719c614be2130b2457d95e059|commit]], [[https://git.kernel.org/linus/13a68c1ed754baeef864dfcbc81e358e8fd25b8b|commit]] * cadence: Expose refclk for rmii and enable rmii [[https://lore.kernel.org/netdev/cover.1752510727.git.Ryan.Wanner@microchip.com/T/|(cover)]], [[https://git.kernel.org/linus/1b7531c094c880f4e5a5ad8e3c7757c2c2f90a3f|commit]], [[https://git.kernel.org/linus/dce32ece3bb8f3768d04d01cbe146b7ac5ccdbde|commit]], [[https://git.kernel.org/linus/eb4f50ddfdd3107f8d59edd5af0491620cca036c|commit]], [[https://git.kernel.org/linus/db400061b5e7cc55f9b4dd15443e9838964119ea|commit]] * kvaser_pciefd: Simplify identification of physical CAN interfaces [[https://lore.kernel.org/linux-can/20250725123230.8-1-extja@kvaser.com/T/|(cover)]], [[https://git.kernel.org/linus/44f0b630f67eceb77b4f037e5db4020cc2795d65|commit]], [[https://git.kernel.org/linus/e74249a00bf1afa27e3a77dcce770806d2bba7c4|commit]], [[https://git.kernel.org/linus/69a2cb633c27ae6d6355c7fe658535382221f480|commit]], [[https://git.kernel.org/linus/5131f18ffa97b50953ab38f464fdaa179e4bcdf7|commit]], [[https://git.kernel.org/linus/d54b16b40ddadb7d0a77fff48af7b319a0cd6aae|commit]], [[https://git.kernel.org/linus/20bc87ae514938ce18619f653ef6b4cefa67880c|commit]], [[https://git.kernel.org/linus/0d1b337b6d6c515555d6abba546e39138f36b111|commit]], [[https://git.kernel.org/linus/3d68ecf4173cc42159d32ea0d6d35d4924089003|commit]], [[https://git.kernel.org/linus/6271c8b8273009de2b004ace8208972aa6d93069|commit]], [[https://git.kernel.org/linus/fed552478e6fbefcf0416143ed054bdbfc50fb52|commit]] * rcar_canfd: Add support for Transceiver Delay Compensation [[https://lore.kernel.org/linux-can/cover.1749655315.git.geert+renesas@glider.be/T/|(cover)]], [[https://git.kernel.org/linus/df6b192e25df2c2460d27f04d4a43fce87c8bf14|commit]], [[https://git.kernel.org/linus/a627813431600c5582e59022659f11790f94a25c|commit]], [[https://git.kernel.org/linus/4e5974f5515bf631f4f39c3f53f5bdb8ba7746a3|commit]], [[https://git.kernel.org/linus/1f9b5003d4baf72055371fcdb15dda5759a8e908|commit]], [[https://git.kernel.org/linus/f5e3150b1a0f0f80b162c1ac6178344959a2506d|commit]], [[https://git.kernel.org/linus/e4d8eb97a469d2397d3ab23f3b32f26e7e6853f2|commit]], [[https://git.kernel.org/linus/1b76dca8fd892a8ced41d980e123b4701ad3cf10|commit]], [[https://git.kernel.org/linus/0a0c94c682fd2606b65a512ba24478a3b5e73d7d|commit]], [[https://git.kernel.org/linus/0acd46190ea2157a175b4b2b8e764843e2c93b66|commit]], [[https://git.kernel.org/linus/586d5eecdf1479b9ab861ab16438ba236fb2f383|commit]] * dsa: b53: fix BCM5325 support [[https://lore.kernel.org/lkml/20250614080000.1884236-1-noltari@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a4daaf063f8269a5881154c5b77c5ef6639d65d3|commit]], [[https://git.kernel.org/linus/ef07df397a621707903ef0d294a7df11f80cf206|commit]], [[https://git.kernel.org/linus/c3cf059a4d419b9c888ce7e9952fa13ba7569b61|commit]], [[https://git.kernel.org/linus/0cbec9aef5a86194117a956546dc1aec95031f37|commit]], [[https://git.kernel.org/linus/c45655386e532c85ff1d679fc2aa40b3aaff9916|commit]], [[https://git.kernel.org/linus/9b6c767c312b4709e9aeb2314a6b47863e7fb72d|commit]], [[https://git.kernel.org/linus/22ccaaca43440e90a3b68d2183045b42247dc4be|commit]], [[https://git.kernel.org/linus/044d5ce2788b165798bfd173548e61bf7b6baf4d|commit]], [[https://git.kernel.org/linus/800728abd9f83bda4de62a30ce62a8b41c242020|commit]], [[https://git.kernel.org/linus/e17813968b08b1b09bf80699223dea48851cbd07|commit]], [[https://git.kernel.org/linus/37883bbc45a8555d6eca88d3a9730504d2dac86c|commit]], [[https://git.kernel.org/linus/651c9e71ffe44e99b5a9b011271c2117f0353b32|commit]], [[https://git.kernel.org/linus/c00df1018791185ea398f78af415a2a0aaa0c79c|commit]], [[https://git.kernel.org/linus/966a83df36c6f27476ac3501771422e7852098bc|commit]] * dsa: b53: mmap: Add bcm63xx EPHY power control [[https://lore.kernel.org/netdev/20250724035300.20497-1-kylehendrydev@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/be7a79145d85af1a9d65a45560b9243b13a67782|commit]], [[https://git.kernel.org/linus/cce3563875c7903210398644e7eba89d70d022d7|commit]], [[https://git.kernel.org/linus/fcf02a462fab52fbfcb24e617dd940745afd0dff|commit]], [[https://git.kernel.org/linus/aed2aaa3c963f8aabbfa061a177022fee826ebfb|commit]], [[https://git.kernel.org/linus/c251304ab021ff21c77e83e0babcb9eb76f8787a|commit]], [[https://git.kernel.org/linus/e8e13073dff7052b144d002bae2cfe9ddfa27e2a|commit]], [[https://git.kernel.org/linus/5ac00023852d960528a0c1d10ae6c17893fc4113|commit]] * dsa: microchip: Add KSZ8463 switch support [[https://lore.kernel.org/devicetree/20250725001753.6330-1-Tristram.Ha@microchip.com/T/|(cover)]], [[https://git.kernel.org/linus/ba37d556eaf7c6d8dfc0a6c6da680b793276f903|commit]], [[https://git.kernel.org/linus/84c47bfc5b3b40b50b798b6b6c15e8a1442d936d|commit]], [[https://git.kernel.org/linus/15b8d3e38607efdae25d2845063cf5f6750ef89b|commit]], [[https://git.kernel.org/linus/5bcdb1373a6c8ffbe2d139a9c7f1fa27d2525b10|commit]], [[https://git.kernel.org/linus/006983e59755ea774c52468e9c13d360794be81e|commit]], [[https://git.kernel.org/linus/620e2392db235ba3b9e9619912aadb8cadee15e7|commit]] * can: tscan1: CAN_TSCAN1 can depend on PC104 [[https://git.kernel.org/linus/b7d012e59627c1d1bb2ad5d71efc69a070ef767d|commit]] * PHC support in ENA driver [[https://git.kernel.org/linus/e0ea34158ee8c4f7536cd781010339ff28c0d24c|commit]], [[https://git.kernel.org/linus/51d58804a53b341b785f9856d9ffec45e72108a3|commit]], [[https://git.kernel.org/linus/15115b1a255404795158fa92a1cba87a9acff15d|commit]], [[https://git.kernel.org/linus/9d67d534e4e0db2cc8b6aeb450edbc997e2594d4|commit]], [[https://git.kernel.org/linus/cea465a96a294e7bc2537f27a737cfa7c6234b3d|commit]], [[https://git.kernel.org/linus/816b52624cf6a03ea541956b448025d844a8287d|commit]], [[https://git.kernel.org/linus/60e28350b1ca127fe22dd99d5ff2a1922450e912|commit]], [[https://git.kernel.org/linus/e14521e97b8341852d70ddb23e7cd94d04302d09|commit]], [[https://git.kernel.org/linus/c9223021433d9b2d4ca32cf9e582e6908f08c3cb|commit]] * fbnic: Add support for 25g, 50g, and 100g to fbnic [[https://lore.kernel.org/netdev/175028434031.625704.17964815932031774402.stgit@ahduyck-xeon-server.home.arpa/T/|(cover)]], [[https://git.kernel.org/linus/bbb7d478d91ac4d5c288e226cc8744daf3820798|commit]], [[https://git.kernel.org/linus/3b180b227eb19fb37714293d601ad49dcc7cf08f|commit]], [[https://git.kernel.org/linus/a6bbbc5bc4c671f6cd791a65743f0c6c83d69edd|commit]], [[https://git.kernel.org/linus/f663a1abf39a16bdd8c5a3eb2d79b27c7d5c211b|commit]], [[https://git.kernel.org/linus/0853d8521bc1ef71bbedab4aadd3b833287fd521|commit]], [[https://git.kernel.org/linus/22780f69fb45d546d2ae32479317049de3621729|commit]], [[https://git.kernel.org/linus/fb9a3bb7f7f23b86d05e94f85e523d7d3f5fa57d|commit]], [[https://git.kernel.org/linus/eb4c27edb4d8dbfbdcc7bc03e0394a0fab8af7d5|commit]] * fbnic: Create fw_log file in DebugFS [[https://git.kernel.org/linus/432407c86993a40d9d3d0bdaf231dfbd79fee39c|commit]] * fbnic: Add firmware logging support [[https://git.kernel.org/linus/dd62e960a755cc66bd57068a30ca881339a2957a|commit]], [[https://git.kernel.org/linus/e48f6620ee81105bf9414db7cd990bb488603b47|commit]], [[https://git.kernel.org/linus/c2b93d6beca8526fb38ccc834def1c987afe24fc|commit]], [[https://git.kernel.org/linus/2e972f32ae5ff7a5592c627932f0001b8fe04a36|commit]], [[https://git.kernel.org/linus/ecc53b1b46c892d2e3cf3cf4393b6d219dc4ae3f|commit]], [[https://git.kernel.org/linus/432407c86993a40d9d3d0bdaf231dfbd79fee39c|commit]] * fec: allow disable coalescing [[https://git.kernel.org/linus/b7ad21258f9e9a7f58b19595d5ceed2cde3bed68|commit]] * ftgmac100: Add SoC reset support for RMII mode [[https://lore.kernel.org/netdev/20250709070809.2560688-1-jacky_chou@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/fc6c8af6d784961b7f19bf0870baa1cdab5f7ad5|commit]], [[https://git.kernel.org/linus/4dc5f7b2c0ccf233d16c5f3090208d70954f1e2a|commit]], [[https://git.kernel.org/linus/af350ee72e9dda474af4697ff59601cb73387b31|commit]] * gve: Add rx hw timestamping support [[https://lore.kernel.org/netdev/20250614000754.164827-1-hramamurthy@google.com/T/|(cover)]], [[https://git.kernel.org/linus/db576b61e6949b7528496d1145b7dc35b87e0d49|commit]], [[https://git.kernel.org/linus/e0c9d5682cd568fc4aedf3b0375a5d48aad4d2a0|commit]], [[https://git.kernel.org/linus/acd16380523b400400523fe54c7499320e558e80|commit]], [[https://git.kernel.org/linus/21235ad935e907008481ea7fdf8837c5eddbd80e|commit]], [[https://git.kernel.org/linus/c51b7bf84091cc7fe4e51411caa9b886956081b0|commit]], [[https://git.kernel.org/linus/3bf5431fef750d5081731b53f2a5c324bcff6c3a|commit]], [[https://git.kernel.org/linus/b2c7aeb4905648f0a36d27a008a6dfea37782a31|commit]], [[https://git.kernel.org/linus/a471e7f87e08d94bcdb013482551abfc455340e7|commit]] * gve: Af_xdp zero-copy for dqo rda [[https://lore.kernel.org/netdev/20250717152839.973004-1-jeroendb@google.com/T/|(cover)]], [[https://git.kernel.org/linus/d57ae093c887180b72c575724c1779f5ca0f5b5b|commit]], [[https://git.kernel.org/linus/077f7153fd2582874b0dec8c8fcd687677d0f4cc|commit]], [[https://git.kernel.org/linus/652fe13b1fd841528442c22170a3c9030c17822d|commit]], [[https://git.kernel.org/linus/2236836eab2629978e9777dbde83161f9c7b450b|commit]], [[https://git.kernel.org/linus/c1fffc5d66a7147d557736c2341a511e0896d9ff|commit]] * gve: XDP TX and redirect support for DQ RDA [[https://git.kernel.org/linus/d05ebf7cc3c5ee78ff8567a22148ab0d82a5d1c4|commit]], [[https://git.kernel.org/linus/cb711b3d197aaf7c86d8f70163cd09c5fe768796|commit]], [[https://git.kernel.org/linus/d8a8ca14c93739250bc770f9aa33eb38e23b1f37|commit]] * hibmcge: Support some features for the HIBMCGE driver [[https://git.kernel.org/linus/1d7cd7a9c69c2f59ee80a15bd6f3650aa518125a|commit]], [[https://git.kernel.org/linus/1051404babef52e0d2d768ec3adceddb19f85704|commit]], [[https://git.kernel.org/linus/401581f2863e869a0ea628a755d219ada8eac791|commit]] * hibmcge: support for statistics of reset failures [[https://git.kernel.org/linus/15dc08fd2cac0210e2488367bc1d529149149f3b|commit]] * fbnic: Expand mac stats coverage [[https://git.kernel.org/linus/e1f4b1f167581a4932dd4f017c80a6e46d28761a|commit]], [[https://git.kernel.org/linus/6913e873e7b2e403b2b5a28337a02cee1ef0c5e6|commit]] * ibmveth: Add multi buffers rx replenishment hcall support [[https://git.kernel.org/linus/2094200b5f77e6710f9594571889f64f31966de1|commit]] * hns3: remove tx spare info from debugfs [[https://git.kernel.org/linus/277ed0cc9d73552b37451eb6d0e35977633221ae|commit]] * i40e: add link_down_events statistic [[https://git.kernel.org/linus/f0768aec37c06cbe4802a55ebc368f8030bc1787|commit]] * ice: add 40G speed to Admin Command GET PORT OPTION [[https://git.kernel.org/linus/9419c43859e1d4f64620ec631fd5ac85733254d5|commit]] * ice: add E835 device IDs [[https://git.kernel.org/linus/0146da53670158c2c83d5be1e885904b596bc919|commit]] * dpll: add all inputs phase offset monitor [[https://lore.kernel.org/netdev/20250612152835.1703397-1-arkadiusz.kubalewski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/c035e736038045b411cb368e63f07bc2f5dbc0e1|commit]], [[https://git.kernel.org/linus/2952daf44a84670a6aa9e13edbc105bdab83ccba|commit]], [[https://git.kernel.org/linus/863c7e5059363a37dba19df78a37fb0960b331fa|commit]] * dpll: Add reference SYNC feature [[https://lore.kernel.org/netdev/20250626135219.1769350-1-arkadiusz.kubalewski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7f15ee35972dd3dee37704bfd0f136290f6d63d9|commit]], [[https://git.kernel.org/linus/58256a26bfb37a94738dd65618b1f31f460f8d91|commit]], [[https://git.kernel.org/linus/5bcea241335b82b0c54df65b5829e9b0f37e4237|commit]] * Add link_down_events counters to ixgbe and ice drivers [[https://lore.kernel.org/netdev/20250515105011.1310692-1-martyna.szapar-mudlaw@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/e7aee24a89c863f2cab0d367df3265a66ad428d7|commit]], [[https://git.kernel.org/linus/e7aee24a89c863f2cab0d367df3265a66ad428d7|commit]] * idpf: add initial PTP support [[https://git.kernel.org/linus/9525a12d6b0b17ec255d24856d04342bedf1c050|commit]], [[https://git.kernel.org/linus/8d5e12c5921c671767a845dd0d69e77026cd1e15|commit]], [[https://git.kernel.org/linus/bf27283ba5943f8e874843a8a05acbd82a2e911a|commit]], [[https://git.kernel.org/linus/c5d0607f424e4091c879688383ac4754739a1669|commit]], [[https://git.kernel.org/linus/5cb8805d2366b20ee4d7afff586d8acf17649330|commit]], [[https://git.kernel.org/linus/5a27503d3862c8ff812bfdbbe3b04964fa4e25af|commit]], [[https://git.kernel.org/linus/e831f9e276c51ab18e52fa007f2435b61c616274|commit]], [[https://git.kernel.org/linus/d5dba8f7206dae408d94f06a3bac449c564f9411|commit]], [[https://git.kernel.org/linus/4901e83a94ef0a8baf27916f31daf59b0a68547f|commit]], [[https://git.kernel.org/linus/1a49cf814fe1edf94615c7b08aff65d9f2d439a3|commit]], [[https://git.kernel.org/linus/494565a74502671d8c27aa52490bd178170caf5e|commit]] * idpf: Add flow steering support [[https://lore.kernel.org/netdev/20250423192705.1648119-1-ahmed.zaki@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7cc6d633c08db169280a550db92ef9e078e7f098|commit]], [[https://git.kernel.org/linus/bff423578d4fc2ca22f4224fc53f6c743c0e200a|commit]], [[https://git.kernel.org/linus/ada3e24b84a097b27a823f1ad98e5b2e8c979689|commit]] * idpf: replace Tx flow scheduling buffer ring with buffer pool [[https://git.kernel.org/linus/cb83b559bea39f207ee214ee2972657e8576ed18|commit]], [[https://git.kernel.org/linus/f2d18e16479cac7a708d77cbfb4220a9114a71fc|commit]], [[https://git.kernel.org/linus/b61dfa9bc4430ad82b96d3a7c1c485350f91b467|commit]], [[https://git.kernel.org/linus/5f417d551324d2894168b362f2429d120ab06243|commit]], [[https://git.kernel.org/linus/0c3f135e840d4a2ba4253e15d530ec61bc30718e|commit]], [[https://git.kernel.org/linus/6c4e68480238274f84aa50d54da0d9e262df6284|commit]] * idpf: Add RDMA support for Intel IPU E2000 [[https://git.kernel.org/linus/bfc5cc8b5aecc9b0249322e39d8d6f65bd7c91ac|commit]], [[https://git.kernel.org/linus/f4312e6bfa2a98e94dacc75f96f916b76bdf4259|commit]], [[https://git.kernel.org/linus/be91128c579c86d295da4325f6ac4710e4e6d2b4|commit]], [[https://git.kernel.org/linus/bf86a012e6762330cd78952330d4b7809976aa2f|commit]], [[https://git.kernel.org/linus/ed6e1c8796a4fad45e61e3a0c4d9f90b62809052|commit]], [[https://git.kernel.org/linus/6aa53e861c1a0c042690c9b7c5c153088ae61079|commit]] * ifb: support BIG TCP packets [[https://git.kernel.org/linus/7d2dabaa1796e54d442c02b4d108336730982baf|commit]] * igc: Add default queue support [[https://lore.kernel.org/netdev/20250620100251.2791202-1-yoong.siang.song@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/bdfaa8d70da26edb8779d2f7035f186490b2d586|commit]], [[https://git.kernel.org/linus/d5b97c01ce28245144abeb74afe0bd34f8ba91cb|commit]] * igc: Harmonize queue priority and add preemptible queue support [[https://lore.kernel.org/netdev/20250519071911.2748406-1-faizal.abdul.rahim@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/fe4d9e8394ff04af47cc3d040e03496d94916504|commit]], [[https://git.kernel.org/linus/4cdb4ef8a9ff10b5ee829549561296b117a72bb1|commit]], [[https://git.kernel.org/linus/e35ba6d3c6c3464cf12da6fd0b6380c90af81d27|commit]], [[https://git.kernel.org/linus/650a2fe79538bd61d294b7041ed700316f025a32|commit]], [[https://git.kernel.org/linus/e395f6a690d8e490049e87a777c7fd5e7f6f8c0e|commit]], [[https://git.kernel.org/linus/17643482e9ff7bd192cce5c46bbbf607f5b64573|commit]], [[https://git.kernel.org/linus/a7d45bcfde3ce8aba7e1bd8b745a0eac68585b84|commit]] * ixgbe: Support malicious driver detection (mdd) [[https://lore.kernel.org/netdev/20250217090636.25113-1-michal.swiatkowski@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/d5e3152037f32196f6c9b0eee2816af16e16e6ba|commit]], [[https://git.kernel.org/linus/da3ab95f9b0609b1f62142991690b257e6c32bad|commit]], [[https://git.kernel.org/linus/b11aa9614df095ee6f15640873dfa6aaf51dd7ef|commit]], [[https://git.kernel.org/linus/1a3ebc59f7175c9b41e488fe6e4c47b85fcbe275|commit]] * Add link_down_events counters to ixgbe and ice drivers [[https://lore.kernel.org/netdev/20250515105011.1310692-1-martyna.szapar-mudlaw@linux.intel.com/T/|(cover)]], [[https://git.kernel.org/linus/e7aee24a89c863f2cab0d367df3265a66ad428d7|commit]], [[https://git.kernel.org/linus/e7aee24a89c863f2cab0d367df3265a66ad428d7|commit]] * Add libeth_xdp helper lib [[https://lore.kernel.org/bpf/20250612160234.68682-1-aleksander.lobakin@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/359bcf15ec1d6738ede721db628594ecf05fd998|commit]], [[https://git.kernel.org/linus/6ad5ff6e7282d1252364cc08af88260ef0ec4cda|commit]], [[https://git.kernel.org/linus/35c64b6500ef7308155bf0dc556c646e4d7b0fd3|commit]], [[https://git.kernel.org/linus/8591c3afe8882a00d9070daf78c384b003b596f3|commit]], [[https://git.kernel.org/linus/084ceda7decdbeff2bafbe2d28f57aed50b3bc46|commit]], [[https://git.kernel.org/linus/26ce8eb0bb7d47c5fb36f7c12f34e4a320f14cac|commit]], [[https://git.kernel.org/linus/c4ba6a9b9d460c6fd742e118022f2808ec3c4223|commit]], [[https://git.kernel.org/linus/819bbaefeded93df36d71d58d9963d706e6e99e1|commit]], [[https://git.kernel.org/linus/3ef2b0192e8ba133f597919632bd9cf196076f0b|commit]], [[https://git.kernel.org/linus/4c805f7ae1ce61a90121378a5ee1f47b3b870c73|commit]], [[https://git.kernel.org/linus/1bb635d3748b7158c6a19e6fca4fb85e6f96fd9a|commit]], [[https://git.kernel.org/linus/576cc5c13d9ba53a1a24d9b34af2f939a87b7ce8|commit]], [[https://git.kernel.org/linus/b3ad8450b4dc46c4ab0641f665068fd2a4d1adba|commit]], [[https://git.kernel.org/linus/40e846d122df9b299e700ec86d01ef647fc0b09f|commit]], [[https://git.kernel.org/linus/5495c58c65aa3d650cccaa19dc59115b9a0069a5|commit]], [[https://git.kernel.org/linus/3ced71a8b39e84f91a4fa9d42e85815515f9b1bc|commit]], [[https://git.kernel.org/linus/80bae9df2108cb72a060ee5235614d7c072af1de|commit]] * Add vf drivers for wangxun virtual functions [[https://lore.kernel.org/netdev/20250704094923.652-1-mengyuanlou@net-swift.com/T/|(cover)]], [[https://git.kernel.org/linus/8259946e67037a34c0cb97885a377362b11f84c9|commit]], [[https://git.kernel.org/linus/ba3b8490bc2e4eabe5801ac180d13b58f0ecc059|commit]], [[https://git.kernel.org/linus/eb4898fde1de8cf09f8a6b344dbd87536e0b1170|commit]], [[https://git.kernel.org/linus/377d180bd71cd79f7134465d8af598ea764560da|commit]], [[https://git.kernel.org/linus/4ee8afb44aeeeaa9120007d4c420bf63ac63cbc7|commit]], [[https://git.kernel.org/linus/fd0a2e03bf6083354994c2efe2bd12e369c0c830|commit]], [[https://git.kernel.org/linus/ce12ba254655a2dbffc103d184046213025191aa|commit]], [[https://git.kernel.org/linus/bf68010acc4bc84c1fef6adb2ac76565f3c55d60|commit]], [[https://git.kernel.org/linus/a0008a3658a34a54e77f2568bdaa2626233b1459|commit]], [[https://git.kernel.org/linus/85494c9bf5b0e14757fdcc75f9bff2f6f47dcb62|commit]], [[https://git.kernel.org/linus/0f71e3a6e59daa000bcebdbeab6bafda3747f3f9|commit]], [[https://git.kernel.org/linus/cfeedf6a420d673078062995218457c6e3c4e6c3|commit]] * mana: Add handler for hardware servicing events [[https://git.kernel.org/linus/7768c5f417336fa58dbfef9bb7ecd7eeec6d8886|commit]] * mana: Support bandwidth clamping in mana using net shapers [[https://lore.kernel.org/lkml/1750144656-2021-1-git-send-email-ernis@linux.microsoft.com/T/|(cover)]], [[https://git.kernel.org/linus/d5c8f0e4e0cb0ac2a4a4e015f2f5b1ba39e5e583|commit]], [[https://git.kernel.org/linus/75cabb46935b6de8e2bdfde563e460ac41cfff12|commit]], [[https://git.kernel.org/linus/a6d5edf11e0cf5a4650f1d353d20ec29de093813|commit]], [[https://git.kernel.org/linus/ca8ac489ca33c986ff02ee14c3e1c10b86355428|commit]] * mana: Expose additional hardware counters for drop and TC via ethtool. [[https://git.kernel.org/linus/c09ef59e17c6921c577d54bc8da4331b955d01a7|commit]] * mdio: Add MDIO bus controller for Airoha AN7583 [[https://git.kernel.org/linus/a6ee35bd1fe0ef91135479c18ff63af3ef9fe11d|commit]], [[https://git.kernel.org/linus/67e3ba978361cb262f8f8981ab88ccb97f1e2bda|commit]] * mlx5 * Add IFC bits to support RSS for IPSec offload [[https://git.kernel.org/linus/438794e93f6271af93f0d16a1851725115b5fd51|commit]] * HWS, Optimize matchers ICM usage [[https://lore.kernel.org/netdev/20250703185431.445571-1-mbloch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/60afb51c89414b3d0061226415651f29a7eaf932|commit]], [[https://git.kernel.org/linus/26b06579d50d5f0462c45b63291b90ea85664237|commit]], [[https://git.kernel.org/linus/d8e7ab591b506b56dc96021674938d0c7905e656|commit]], [[https://git.kernel.org/linus/3dcac700d20b9e426386d7f59f1601db038fbf1c|commit]], [[https://git.kernel.org/linus/59807d071724f4e639fa9ebf841b12fb97e5dbf2|commit]], [[https://git.kernel.org/linus/c8332ce096913bc6624cdbd5276fa49dc92fa532|commit]], [[https://git.kernel.org/linus/6b44fffdc7b792e1d32b104c76504c3722e9704f|commit]], [[https://git.kernel.org/linus/29063103f864fb63f7f7c436e670c5804df1b55b|commit]], [[https://git.kernel.org/linus/96e4c4a1a5bc6b6bc1ba48c6dfd2246df24f2f63|commit]], [[https://git.kernel.org/linus/a9aec713d0d9d6c3d918df26c61ee42ee2c28676|commit]] * Support rate management on traffic classes in devlink and mlx5 [[https://lore.kernel.org/netdev/20250629142138.361537-1-mbloch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/42401c42389622424f2973ec57414f033ae6be8f|commit]], [[https://git.kernel.org/linus/566e8f108fc7847f2a8676ec6a101d37b7dd0fb4|commit]], [[https://git.kernel.org/linus/236156d80d5efd942fc395a078d6ec6d810c2c40|commit]], [[https://git.kernel.org/linus/71092821244a6a8e5bce7eb6154b4e5012302194|commit]], [[https://git.kernel.org/linus/96619c485fa69195ea61a9f288a00383f40b5280|commit]], [[https://git.kernel.org/linus/97733d1e00a001b1708247af366280154df83b93|commit]], [[https://git.kernel.org/linus/cf7e73770d1bc0492b20e2b0222a59c6bafbd8ff|commit]], [[https://git.kernel.org/linus/23ca32e4ead48f68e37000f2552b973ef1439acb|commit]] * Expose serial numbers in devlink info [[https://git.kernel.org/linus/18667214b955ef89f208d451820c39a5dfd77f27|commit]] * misc changes 2025-07-16 [[https://lore.kernel.org/netdev/1752675472-201445-1-git-send-email-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/159846ffbaf5e723b4eafdf6f951028cfda61601|commit]], [[https://git.kernel.org/linus/394d31d52fb64f622f51a461a4d7fc0c683a980f|commit]], [[https://git.kernel.org/linus/2a601b2d35623065d31ebaf697b07502d54878c9|commit]], [[https://git.kernel.org/linus/bc2d44b83f2b333719560740068663a2b405deaf|commit]], [[https://git.kernel.org/linus/eee529c0044e06959a40c6dba6d85df493f54fc3|commit]], [[https://git.kernel.org/linus/eeaf11464f38db9307b7d9ed6c7750b83c344ff8|commit]] * mlx5e * Add support for devmem and io_uring TCP zero-copy [[https://lore.kernel.org/netdev/20250616141441.1243044-1-mbloch@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/c9e1225352d48b184991a4edc77b897cac66991e|commit]], [[https://git.kernel.org/linus/1cbb49f85b4095af798f1a421db2e08894d0606c|commit]], [[https://git.kernel.org/linus/a202f24b08587021a39eade5aa5444d5714689fb|commit]], [[https://git.kernel.org/linus/af4312c4c9c11da84b13b3aa8f472ab287cf1f0b|commit]], [[https://git.kernel.org/linus/16142defd304d5a8e591781efe24da498ccfa51f|commit]], [[https://git.kernel.org/linus/d2760abdedde635b055a214b3a45dce3e4ecbfce|commit]], [[https://git.kernel.org/linus/e225d9bd93ed0bb84014f5f8e241e8e456533e30|commit]], [[https://git.kernel.org/linus/d1668f119943aec7c10244e5481964fad24b7ba2|commit]], [[https://git.kernel.org/linus/db3010bb5a0134644c45dc0df89e76e02553478c|commit]], [[https://git.kernel.org/linus/b2588ea40ec9472688289c1a644627c0f4a1f33f|commit]], [[https://git.kernel.org/linus/46bcce5dfd330c233e59cd5efd7eb43f049b0a82|commit]], [[https://git.kernel.org/linus/5a842c288cfa3b0fc38412fefbc4c3285908c3c7|commit]] * Add support for PCIe congestion events [[https://lore.kernel.org/netdev/1752589821-145787-1-git-send-email-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/ab2b0d4d639435f382583b107997a4ce805a665b|commit]], [[https://git.kernel.org/linus/8890ee6dcf6e3d396677308553a8a57f29c7109e|commit]] * misc changes 2025-07-22 [[https://lore.kernel.org/netdev/1753194228-333722-1-git-send-email-tariqt@nvidia.com/T/|(cover)]], [[https://git.kernel.org/linus/71670f766b8f4c1490e07ad4394e8e27c03b2e91|commit]], [[https://git.kernel.org/linus/5474ca2118191abe27ba089737eace66a9b51d8f|commit]] * Warn when write combining is not supported [[https://git.kernel.org/linus/d980f371b134d5d66d082161171a6be613975dfc|commit]] * netconsole: Add support for msgid in sysdata [[https://lore.kernel.org/netdev/20250616-netconsole-msgid-v3-0-4d2610577571@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/15b3c930a29fe00971b52af8b87b1a1d67305190|commit]], [[https://git.kernel.org/linus/53def0c4c857d18b553c68b30df13d9229726809|commit]], [[https://git.kernel.org/linus/c5efaabd45ad1c93679c2529f778569cb2b828c6|commit]], [[https://git.kernel.org/linus/68707c079e584f11b3f768f6ac1066a501c650b4|commit]], [[https://git.kernel.org/linus/8c587aa3fa5400467063f88a3a48f8e9480b2e33|commit]] * netdevsim: Support setting a permanent address [[https://lore.kernel.org/netdev/20250710-netdevsim-perm_addr-v4-0-c9db2fecf3bf@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/54cb59cf81b02de847178c054eed7957170e9386|commit]], [[https://git.kernel.org/linus/963c94c95a3161487b0e3d9f75848b3c161e9def|commit]] * netdevsim: Implement rx statistics using netdev_pcpu_stat_dstats [[https://lore.kernel.org/netdev/20250618-netdevsim_stat-v4-0-19fe0d35e28e@debian.org/T/|(cover)]], [[https://git.kernel.org/linus/f9e2511d80c2eaeb940c5f8280d7eea9d7946ece|commit]], [[https://git.kernel.org/linus/788eb4de608bbebad237674e1057305340d653ba|commit]], [[https://git.kernel.org/linus/27480a7c8f0274f8f2fc6c40e4522f38e52bd05f|commit]], [[https://git.kernel.org/linus/2a68a22304f90e5ee960cccd86895a50cf154723|commit]] * CN20K silicon with mbox support [[https://lore.kernel.org/netdev/1749639716-13868-1-git-send-email-sbhatta@marvell.com/T/|(cover)]], [[https://git.kernel.org/linus/25d51ebf0f54f9c2424f28bb29125cf24f120df0|commit]], [[https://git.kernel.org/linus/e53ee4acb220acab6832669334279367b0206af6|commit]], [[https://git.kernel.org/linus/f326d5d86e94d78db0f50045d4c65fa99c5790d9|commit]], [[https://git.kernel.org/linus/370c2374bfa985fb8786aa16496b722b654a1198|commit]], [[https://git.kernel.org/linus/f8909d3dd55440e63a9795d16662e9df9dd77c2d|commit]], [[https://git.kernel.org/linus/70f8986ecef13608a9663318484753a1a138dd4c|commit]] * phy: bcm54811: PHY initialization [[https://lore.kernel.org/netdev/20250708090140.61355-1-kamilh@axis.com/T/|(cover)]], [[https://git.kernel.org/linus/67c0170566b55b1f6ee3567c94ff679104277e2d|commit]], [[https://git.kernel.org/linus/fbe937473f3ab8e2ba163840f5563108881340dd|commit]], [[https://git.kernel.org/linus/34bf222824f6c9ac03620ee18aaf93d3b6138db3|commit]], [[https://git.kernel.org/linus/3117a11fff5af9e74f4946f07cb3ca083cbbdf4b|commit]] * Add support for the ipq5018 internal ge phy [[https://lore.kernel.org/netdev/20250610-ipq5018-ge-phy-v5-0-daa9694bdbd1@outlook.com/T/|(cover)]], [[https://git.kernel.org/linus/f6a4a55ae5d99f865e106916a9295548e381de47|commit]], [[https://git.kernel.org/linus/82eaf94d69fce20f8859a2b8dae8e7064d9343da|commit]], [[https://git.kernel.org/linus/d46502279a11b48ede1d8bf65a229c8231bf0602|commit]], [[https://git.kernel.org/linus/1e2261a669a9596ba435c6fe524e026bac0f0e2f|commit]], [[https://git.kernel.org/linus/f5f2b835e316df29b89e28ed7e467df473932e8d|commit]] * phy: micrel: add extended PHY support for KSZ9477-class devices [[https://lore.kernel.org/linux-kernel/20250610091354.4060454-1-o.rempel@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/ee868127170c1211c528f0629277d8b44a0e1852|commit]], [[https://git.kernel.org/linus/597ebdf37222ba7deb2ed24aa4de777d7edf22f7|commit]], [[https://git.kernel.org/linus/b2f96c3c96314ff3888ebb7d3126cf5f5e7c278b|commit]], [[https://git.kernel.org/linus/f461c7a885d9d625137b897cd63fa236e92e03c4|commit]] * phy: Add c45_phy_ids sysfs directory entry [[https://git.kernel.org/linus/170e4e3944aa39accf64d869b27c187f8c08abc7|commit]] * phy: qcom: Add shared phy counter support for qca807x and qca808x [[https://lore.kernel.org/netdev/20250715-qcom_phy_counter-v3-0-8b0e460a527b@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/22bf4bd8ec4fc427cbd07af223a509b80913923a|commit]], [[https://git.kernel.org/linus/3370e33a1c23282ec399bda282347b115f35b8cb|commit]], [[https://git.kernel.org/linus/d98f43b84a1e0bedbe32bb0c758c1abd62579fbb|commit]] * phy: qcom: qca807x: Enable WoL support using shared library [[https://git.kernel.org/linus/14e710d7080f7b5bf230c4ee1b417df8dc0c5ac6|commit]] * phy: bcm54811: PHY initialization [[https://lore.kernel.org/netdev/20250708090140.61355-1-kamilh@axis.com/T/|(cover)]], [[https://git.kernel.org/linus/67c0170566b55b1f6ee3567c94ff679104277e2d|commit]], [[https://git.kernel.org/linus/fbe937473f3ab8e2ba163840f5563108881340dd|commit]], [[https://git.kernel.org/linus/34bf222824f6c9ac03620ee18aaf93d3b6138db3|commit]], [[https://git.kernel.org/linus/3117a11fff5af9e74f4946f07cb3ca083cbbdf4b|commit]] * pse-pd: Add support for pse budget evaluation strategy [[https://lore.kernel.org/netdev/20250617-feature_poe_port_prio-v14-0-78a1a645e2ee@bootlin.com/T/|(cover)]], [[https://git.kernel.org/linus/fa2f0454174c2f33005f5a6e6f70c7160a15b2a1|commit]], [[https://git.kernel.org/linus/fc0e6db30941a66e284b8516b82356f97f31061d|commit]], [[https://git.kernel.org/linus/f5e7aecaa4efcd4c85477b6a62f94fea668031db|commit]], [[https://git.kernel.org/linus/50f8b341d26826aa5fdccb8f497fbff2500934b3|commit]], [[https://git.kernel.org/linus/1176978ed851952652ddea3685e2f71a0e5d61ff|commit]], [[https://git.kernel.org/linus/c394e757dedd9cf947f9ac470d615d28fd2b07d1|commit]], [[https://git.kernel.org/linus/ffef61d6d27374542f1bce4452200d9bdd2e1edd|commit]], [[https://git.kernel.org/linus/eeb0c8f72f49a21984981188404cfd3700edbaff|commit]], [[https://git.kernel.org/linus/359754013e6a7fc81af6735ebbfedd4a01999f68|commit]], [[https://git.kernel.org/linus/24a4e3a05dd0eadd0c9585c411880e5dcb6be97f|commit]], [[https://git.kernel.org/linus/2903001ee3b4be2e98d4da7f96f9edc4115cf2d3|commit]], [[https://git.kernel.org/linus/56cfc97635e9164395c9242f72746454347155ab|commit]], [[https://git.kernel.org/linus/82566eb4ea518812f9ad51588b9c0af8a144f76c|commit]] * Enable eee at 5gbps on rtl8126 [[https://git.kernel.org/linus/5089cdc1540c9336bcccaaf3b036695c879fcadb|commit]] * sophgo: Add ethernet support for SG2042 [[https://lore.kernel.org/netdev/20250708064052.507094-1-inochiama@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/e281c48a7336e2f6dd4cd30e1cee4c0592af6c62|commit]], [[https://git.kernel.org/linus/543009e2d4cd57366604280e83d3e7bdd2ab512a|commit]], [[https://git.kernel.org/linus/d40c1ddd9b4d4b3a3cc6f526a922a027d092f174|commit]] * stmmac: convert stmmac "pcs" to phylink [[https://lore.kernel.org/bpf/ZrCoQZKo74zvKMhT@shell.armlinux.org.uk/T/|(cover)]], [[https://git.kernel.org/linus/8909f5f4ecd551c2299b28e05254b77424c8c7dc|commit]], [[https://git.kernel.org/linus/c8e32755ba2b99efa38c8fdfa74522ca796139b5|commit]], [[https://git.kernel.org/linus/883af78926c140c3dc66d4e550835ae95bd19920|commit]] * ti: icssg-prueth: Add prp offload support to ICSSG driver [[https://git.kernel.org/linus/4f4040ea5d3e4bebebbef9379f88085c8b99221c|commit]] * Add vf drivers for wangxun virtual functions [[https://lore.kernel.org/netdev/20250704094923.652-1-mengyuanlou@net-swift.com/T/|(cover)]], [[https://git.kernel.org/linus/8259946e67037a34c0cb97885a377362b11f84c9|commit]], [[https://git.kernel.org/linus/ba3b8490bc2e4eabe5801ac180d13b58f0ecc059|commit]], [[https://git.kernel.org/linus/eb4898fde1de8cf09f8a6b344dbd87536e0b1170|commit]], [[https://git.kernel.org/linus/377d180bd71cd79f7134465d8af598ea764560da|commit]], [[https://git.kernel.org/linus/4ee8afb44aeeeaa9120007d4c420bf63ac63cbc7|commit]], [[https://git.kernel.org/linus/fd0a2e03bf6083354994c2efe2bd12e369c0c830|commit]], [[https://git.kernel.org/linus/ce12ba254655a2dbffc103d184046213025191aa|commit]], [[https://git.kernel.org/linus/bf68010acc4bc84c1fef6adb2ac76565f3c55d60|commit]], [[https://git.kernel.org/linus/a0008a3658a34a54e77f2568bdaa2626233b1459|commit]], [[https://git.kernel.org/linus/85494c9bf5b0e14757fdcc75f9bff2f6f47dcb62|commit]], [[https://git.kernel.org/linus/0f71e3a6e59daa000bcebdbeab6bafda3747f3f9|commit]], [[https://git.kernel.org/linus/cfeedf6a420d673078062995218457c6e3c4e6c3|commit]] * Convert lan78xx driver to the phylink [[https://lore.kernel.org/linux-kernel/20250618122602.3156678-1-o.rempel@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/e110bc82589752909e283ba5cbc160e0ab56c085|commit]], [[https://git.kernel.org/linus/2c7fad8a9c66d890b1b3ff88075745b72e9d63e6|commit]], [[https://git.kernel.org/linus/69909c56504bab938b77ccac279d242911a3c829|commit]], [[https://git.kernel.org/linus/297080cf87a9a09b978a46045fc8d36202afcf56|commit]], [[https://git.kernel.org/linus/673d455bbb1db1b242c502ef551d4cc8f45b00ce|commit]], [[https://git.kernel.org/linus/6a37750910daaa3f0fd465bd25a9ad2e1967cf49|commit]] * qmi_wwan: add Telit Cinterion LE910C4-WWX new compositions [[https://git.kernel.org/linus/e81a7f65288c7e2cfb7e7890f648e099fd885ab3|commit]] * usb: smsc95xx: add support for ethtool pause parameters [[https://git.kernel.org/linus/c521b8c9f212f8304e9d5f92828ac662c621f32c|commit]] * ath11k: support usercase-specific firmware overrides [[https://git.kernel.org/linus/edbbc647c4f36e8a6375d07ecb5aad8e8b90de5e|commit]] * ath12k * Extend support to parse wmi service bit [[https://lore.kernel.org/linux-wireless/20250717173539.2523396-1-tamizh.raja@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/8f1a078842d4af4877fb686f3907788024d0d1b7|commit]], [[https://git.kernel.org/linus/1a50c5ca394ab1b3a30094eda2354bcfc00f9909|commit]] * Add num_stations counter for each interface [[https://git.kernel.org/linus/a1bff3d6cc454d65a3a654cd3fcd0c90f1fb45fb|commit]] * Add support for transmit histogram stats [[https://git.kernel.org/linus/ffc7adb0a121cd72a02095106bd006f44593ee35|commit]] * Add support to TDMA and MLO stats [[https://git.kernel.org/linus/a7f74e782e274e8255808c165cb2cf63ee0876cc|commit]] * Add support to RTT stats [[https://git.kernel.org/linus/81a0286cefe6f81744160d3524d70e67479b314b|commit]] * Add split-phy scan support in single wiphy [[https://lore.kernel.org/linux-wireless/20250507194832.2501668-1-rameshkumar.sundaram@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/14c7d7eac1bfc29917acedb894e09dae6c00a014|commit]], [[https://git.kernel.org/linus/feed05f1526e81677f508b026fd2d66d178f65f8|commit]] * Add support to fill link statistics of multi-link station [[https://lore.kernel.org/linux-wireless/20250701105927.803342-1-quic_sarishar@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/ebebe66ec208d37e3368b91e2033907cb5140821|commit]], [[https://git.kernel.org/linus/3b8aa249d0fce93590888a6ed3d22b458091ecb9|commit]], [[https://git.kernel.org/linus/ebde0514b4f4e78b5f9629179ca947d98b77da15|commit]], [[https://git.kernel.org/linus/e0618fca1af294f2e52ec3545d76ee5d937c177e|commit]], [[https://git.kernel.org/linus/a0b963e1da5bff03a43c87b96ae3c0ed78a11960|commit]] * Add MU-MIMO and 160 MHz bandwidth support [[https://lore.kernel.org/linux-wireless/20250701010408.1257201-1-quic_pradeepc@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/5d6707e88e7fe2d603ad45c5fe7eba096be9533a|commit]], [[https://git.kernel.org/linus/df8207bc0b4895c18e98a4b084806222b592d9f1|commit]], [[https://git.kernel.org/linus/1eafb8d15d8af39ac7b4d78d69b17f85aa8e00fa|commit]], [[https://git.kernel.org/linus/5ab7479a063d1b557fa59999de701ad8a4624b84|commit]], [[https://git.kernel.org/linus/9ad6b169ddef679a64727e3870a6177c78f24b05|commit]], [[https://git.kernel.org/linus/dd25a004fb66c60934fa9572298671c1eb1c06c2|commit]], [[https://git.kernel.org/linus/18ab9d038fadd35d8a4ac5db87ad16dde78f5fdc|commit]], [[https://git.kernel.org/linus/a82ce08775bc5b50613d48ab7e41b25fc46825af|commit]] * Add support for Tx Power insertion [[https://git.kernel.org/linus/d45d015448fcfbb5dde7c09f2b0dffe5d689e6ca|commit]], [[https://git.kernel.org/linus/93a1cdb9cd94c7b8a2aac33e4b13ca61d712f5eb|commit]] * Allow beacon protection keys to be installed in hardware [[https://git.kernel.org/linus/27ba973caaf85ff3a2a23eca33d6dc9b4fe405e8|commit]] * Support average ack rssi in station dump [[https://git.kernel.org/linus/979c5ce4a37680063d87fe13d662ed68e06e77c3|commit]] * brcmfmac: Add support for the SDIO 43751 device [[https://git.kernel.org/linus/78e50d88998a4a634eeda3e0d136cb8b9c9bc9d8|commit]] * brcmfmac: support CYW54591 PCIE device [[https://git.kernel.org/linus/c639a44ac6c2624f983bbe36483166a4b3afb371|commit]] * iwlwifi * Stop supporting iwl_omi_send_status_notif ver 1 [[https://lore.kernel.org/linux-wireless/20250722063923.a4f8cd7ad7b3.I2a1cc4be441dbbb5566a9a3d2d330d956ff3ed38@changeid/T/|(cover)]], [[https://git.kernel.org/linus/4b0dccdd81509ba57d1929da9e9395a9006fb98d|commit]], [[https://git.kernel.org/linus/bc404dfddbf6817cae9b170c34556dc72ea975e5|commit]], [[https://git.kernel.org/linus/170db5f873850a04a8eafd3401b2ea36adb20cea|commit]], [[https://git.kernel.org/linus/3a805afaea9a13f9b5a027efaf17b0138f4abb04|commit]], [[https://git.kernel.org/linus/343c906522ac93855a76e53b5ad924c2ad55b4b3|commit]] * updates - 2025-09-11 [[https://lore.kernel.org/linux-wireless/20250611192634.2416885-1-miriam.rachel.korenblit@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/8689bc3fc017d445f48b6b9e80a8c2c0aa3961af|commit]], [[https://git.kernel.org/linus/5943ce4e37dbae7cc11740609b165d0fb4b7df08|commit]], [[https://git.kernel.org/linus/8dab046d6e569d60a002d8256be22be2c8b522cf|commit]], [[https://git.kernel.org/linus/cc8d9cbf269dab363c768bfa9312265bc807fca5|commit]], [[https://git.kernel.org/linus/7a7cb2eb54592b8fa8e59740fb61603c9f3f16bf|commit]], [[https://git.kernel.org/linus/bc0440eeaf829b2840e9d4f946551c0c6fe9f9e3|commit]], [[https://git.kernel.org/linus/1cc04e196a59d27ac2ac19e2e0b4ad041a626a69|commit]], [[https://git.kernel.org/linus/f26281c1b727b90ec18ae90044d5f429d2250e82|commit]], [[https://git.kernel.org/linus/9748ad82a9d92b036ff3115207e36e2b9932e354|commit]], [[https://git.kernel.org/linus/51512b654f1ca543cb7fbf24235671581c2180a9|commit]], [[https://git.kernel.org/linus/edc34789ca3387062d2d6a0bd06e2cb5cfc9ac4c|commit]], [[https://git.kernel.org/linus/4f372263ef92ed2af55a8c226750b72021ff8d0f|commit]], [[https://git.kernel.org/linus/7ca8176b8eef3fda6f78f398c37d45739962c902|commit]], [[https://git.kernel.org/linus/8ddf4e19de1e98091ace48626b9245f9d985a6bd|commit]], [[https://git.kernel.org/linus/d41e3781c86415f1994ffdd266b28450847b7ddb|commit]] * mvm: Remove NAN support [[https://git.kernel.org/linus/4459dd6d85b9fbcdbc3803603fba9d78c1cec2c4|commit]] * Support RZL platform device ID [[https://git.kernel.org/linus/6a1b633fdcd904901db9162462b7c0f0897800e3|commit]] * mt76 * mt7921s: Introduce SDIO WiFi/BT combo module card reset [[https://git.kernel.org/linus/e553ac0d7616d6bcd06ed0c5f6126ce83097b31a|commit]] * mt7996: Various MLO fixes [[https://lore.kernel.org/linux-wireless/20250704-mt7996-mlo-fixes-v1-0-356456c73f43@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/53a5d72bdd70e262623b6009cc4754927b428bad|commit]], [[https://git.kernel.org/linus/e8d7eef07199887161cd6f3c062406628781f8b6|commit]], [[https://git.kernel.org/linus/1a1cce6b52e59999ce4e4e230b91e5db5327b158|commit]], [[https://git.kernel.org/linus/8989d8e90f5fb29cd2c3518135798bb9d658d303|commit]], [[https://git.kernel.org/linus/59ea7af6f9ce218b86f9f46520819247c3a5f97b|commit]], [[https://git.kernel.org/linus/64cbf0d7ce9afe20666da90ec6ecaec6ba5ac64b|commit]], [[https://git.kernel.org/linus/a59650a2270190905fdab79431140371feb35251|commit]], [[https://git.kernel.org/linus/62da647a2b20fc0b8d47c7d11880d95927300305|commit]], [[https://git.kernel.org/linus/344dd6a4c91960d9640ab15770efd18526ac3fa3|commit]] * rtw88 * Enable TX reports for the management queue [[https://git.kernel.org/linus/5f936768300f65d5856d6adf0f8591e2ae716727|commit]] * Add PCI Express error handling [[https://git.kernel.org/linus/cdb82c80b9349ed1d9ce6b49856128e04f4effc9|commit]] * rtw89 * Tweak tx wake notify matching condition [[https://lore.kernel.org/linux-wireless/20250710042423.73617-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/868676662b08f43cd26a2bc3492d6a7fa1eb3414|commit]], [[https://git.kernel.org/linus/21911ad80512f9e4e642b9e8ecd7130e32cb63d3|commit]], [[https://git.kernel.org/linus/504937dbaddb2149d5031e924100e285d7325eef|commit]], [[https://git.kernel.org/linus/cefcf74ae02623a80acffe5f662ed6523575ed46|commit]] * Add support for USB devices [[https://lore.kernel.org/linux-wireless/7880bca2-17de-4d55-93a1-16977dd6502e@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/4b6ea5a381979239758a1979cdf29f8d34201110|commit]], [[https://git.kernel.org/linus/ee47816f24a1c07ea31f251546c75b42362d6cef|commit]], [[https://git.kernel.org/linus/82870ba25f32b8f38fb882ce1336789f11bae969|commit]], [[https://git.kernel.org/linus/3c63450c872300546f2454e5972719dc725f8416|commit]], [[https://git.kernel.org/linus/02a44c2630318b880d49000f151a6d1e450e76e2|commit]], [[https://git.kernel.org/linus/a3b871a0f7c083c2a632a31da8bc3de554ae8550|commit]], [[https://git.kernel.org/linus/ec542d5e4bf660463d8d578ecebb511cbfe66558|commit]], [[https://git.kernel.org/linus/0740c6beefae03066a562e3047959528d8893709|commit]], [[https://git.kernel.org/linus/e906a11753c96d553c4ace3201f57e08e21bfdba|commit]], [[https://git.kernel.org/linus/e2b71603333a9dd73ee88347d8894fffc3456ac1|commit]], [[https://git.kernel.org/linus/ed88640ea1ac441d5cda98f7c478fcdf34263fa7|commit]], [[https://git.kernel.org/linus/2135c28be6a84313580a974f7d6890830b83107e|commit]], [[https://git.kernel.org/linus/52cf4432378568ba1ed275b5aecc61c66dad7368|commit]], [[https://git.kernel.org/linus/0030088148d5a070f445c1522989e490b311286b|commit]] * Add support for RTL8852BU [[https://lore.kernel.org/linux-wireless/e6538194-116b-49b6-b2d5-2dbc69aa1a11@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/5e9184ae7207c828d3721e9fdaeeb61da0994995|commit]], [[https://git.kernel.org/linus/0980de01da08338d4a7ceaf5e7ab25a56142c75a|commit]], [[https://git.kernel.org/linus/b57b556a02e6ac1192ab57d5c3a045ad34182b7a|commit]], [[https://git.kernel.org/linus/f56b4446d07ac42ef7e71789a9256fa2f8260876|commit]], [[https://git.kernel.org/linus/0ed2a8b1a14e9ebaa72a98b8ee9938cb16c2d606|commit]], [[https://git.kernel.org/linus/4b295f4fdc80e9b13bd2ca05f4c9434fa0857cab|commit]] * coex: add logic related to MLO [[https://lore.kernel.org/linux-wireless/20250611035523.36432-1-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/cbaf1110af41994776909dee9e4490edfb80014e|commit]], [[https://git.kernel.org/linus/1625d70f523bd8d647f22bf7c406f7e925094fab|commit]], [[https://git.kernel.org/linus/ccd57356f311013b77e4e377dd8aded93646f40e|commit]], [[https://git.kernel.org/linus/26c62dca8243f6f6be6251336db6a24dba34daab|commit]], [[https://git.kernel.org/linus/fac16e4147a20e8488304b2630471eec6555b0d1|commit]], [[https://git.kernel.org/linus/825f5514127ad52a4f5c9abf1d56cf301890bed7|commit]], [[https://git.kernel.org/linus/1683ae3e0069678815c9444fc395958bf5dc53cb|commit]], [[https://git.kernel.org/linus/4cb9092289ec4fc34d0756362876c79784801638|commit]], [[https://git.kernel.org/linus/7d1b3c22fe0f9881ffe6a196dcd5f42b3724483b|commit]], [[https://git.kernel.org/linus/0bc2aef36949ea49285370ceab1da5b011bfd478|commit]] * coex: RTL8852B coexistence Wi-Fi firmware support for v0.29.122.0 [[https://lore.kernel.org/linux-wireless/20250616090252.51098-11-pkshih@realtek.com/T/|(cover)]], [[https://git.kernel.org/linus/c5ef95e29166ac868a96ae6e2c5b6357e3495f10|commit]] * coex: update to support latest firmware of RTL8922AE [[https://git.kernel.org/linus/d8643e681825cc5ac233f7a782c8b9406d016166|commit]], [[https://git.kernel.org/linus/39251e189e4144c935adc8f2c08d7d703c3b8537|commit]], [[https://git.kernel.org/linus/10a39b9fd7a11591371bc352c16524f1a4d76396|commit]], [[https://git.kernel.org/linus/43be50111483cf0a6d966194ee8f1127a7168ed1|commit]], [[https://git.kernel.org/linus/fc9b3028aae826a95376d571917212431b685f66|commit]], [[https://git.kernel.org/linus/3ba79eaee051373234c7e75153a29509fff37ccb|commit]], [[https://git.kernel.org/linus/d997fb2f8c49feef1a72a7d52d6031a6b847603d|commit]], [[https://git.kernel.org/linus/a7feafea4ce80d5fa5284d05d54b4f108d2ab575|commit]], [[https://git.kernel.org/linus/8ef99ee5d278eed066daeb5d30f06a9872508c13|commit]], [[https://git.kernel.org/linus/206a8f999fcb3ca6cf3c1bf8bd287698ba9692b2|commit]], [[https://git.kernel.org/linus/c5ef95e29166ac868a96ae6e2c5b6357e3495f10|commit]] * regd/acpi: support regulatory rules via ACPI DSM and parse rule of regd_UK [[https://git.kernel.org/linus/08fbc2b6881b5228cb961b1efa6cb4bf41193105|commit]] * regd/acpi: support 6 GHz VLP policy via ACPI DSM [[https://git.kernel.org/linus/b99d7cd36da835544da02d75b6398eb7b26412ee|commit]] * More improvement of STA + P2P MCC [[https://git.kernel.org/linus/dbaf5c3aa952ad0dcf5c21431bd534cff1cfad1f|commit]], [[https://git.kernel.org/linus/519defe4e8c83a418649c367158f6f8c38439d0a|commit]], [[https://git.kernel.org/linus/f70fe6eab088bb431d75cc411e7ac0f98c2bd734|commit]], [[https://git.kernel.org/linus/95ee7464d374343115b5e7ec226f2bab2e4012f2|commit]], [[https://git.kernel.org/linus/182c7ff8b87e4edbb2227ede39ae0952da7a0f4a|commit]], [[https://git.kernel.org/linus/47a498b84f0108669622940f7910e941cd6db856|commit]], [[https://git.kernel.org/linus/62784eae87849282e7e3aa40a044b947bfff2377|commit]], [[https://git.kernel.org/linus/8bb1c30769b26843715ba84539b4592721f0add1|commit]], [[https://git.kernel.org/linus/12af7fcea83729425e50f0598b04b2c1fe7dccb5|commit]], [[https://git.kernel.org/linus/b3cf6f392dc9c5a836d06854b0282f4dfa918e61|commit]], [[https://git.kernel.org/linus/b470b8951983cf726844c2287947ff2550fd4f67|commit]], [[https://git.kernel.org/linus/3db8563bac6c34018cbb96b14549a95c368b0304|commit]] * Support channel switch and correct EHT settings [[https://git.kernel.org/linus/6cd93f85af7a1573c2fdb1da8977cd200a1c157e|commit]], [[https://git.kernel.org/linus/6c661eec292cd62a7c7abced8e91fc1b6ebf7f3a|commit]], [[https://git.kernel.org/linus/edba3f107844bbf91b7b89272d3d26c5c0d19a37|commit]], [[https://git.kernel.org/linus/28bb3d842e8f1ef0fb83257334e9d5cb1cff3d70|commit]], [[https://git.kernel.org/linus/fe30a8ae853bade282fce63e740b5f34bdc55f6e|commit]] * More finetune on MCC feature [[https://git.kernel.org/linus/ad22869bc5a64a5a51f27951ced772499b2bf4bc|commit]], [[https://git.kernel.org/linus/9126020ab03c60053819c19294f46fc6ce11b52e|commit]], [[https://git.kernel.org/linus/025e39032df5cc5c110de3693f63e81cf49968be|commit]], [[https://git.kernel.org/linus/6332feafe37fdd0a336ab01b42fdfb5e6b8ee083|commit]], [[https://git.kernel.org/linus/d0b87d9eaf76703b81e511d05db29a5e7ef6c3e0|commit]], [[https://git.kernel.org/linus/83f84f263420b4a11c1b3c1ba0723c3d374b33ad|commit]], [[https://git.kernel.org/linus/65093fab65cb79d6ae6abaefc5ebe0427cbd1c5a|commit]], [[https://git.kernel.org/linus/5693bdd58de48bc91831d8d2e60f78595205c6eb|commit]], [[https://git.kernel.org/linus/e044f5d40f49bfd4beab517e7fe2988d3d8ce66d|commit]], [[https://git.kernel.org/linus/094bb62c580dc6608736c6df4d4f238386050bf4|commit]], [[https://git.kernel.org/linus/868676662b08f43cd26a2bc3492d6a7fa1eb3414|commit]], [[https://git.kernel.org/linus/21911ad80512f9e4e642b9e8ecd7130e32cb63d3|commit]], [[https://git.kernel.org/linus/504937dbaddb2149d5031e924100e285d7325eef|commit]], [[https://git.kernel.org/linus/cefcf74ae02623a80acffe5f662ed6523575ed46|commit]] * netdevsim: implement peer queue flow control [[https://git.kernel.org/linus/ff2ac4df58adb6d7721bb0ce6069e1bd0e613126|commit]] == Audio == * hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks [[https://git.kernel.org/linus/0db77eccd964b11ab2b757031d1354fcc5a025ea|commit]] * hda/realtek: Add support for ASUS Commercial laptops using CS35L41 HDA [[https://git.kernel.org/linus/0156c22fb0ca869381fe0520731da79f70389652|commit]] * Add support for asus nuc using cs35l41 [[https://lore.kernel.org/linux-sound/20250612160029.848104-1-sbinding@opensource.cirrus.com/T/|(cover)]], [[https://git.kernel.org/linus/dfce24f0032439113848939816ef78b6e83f4086|commit]], [[https://git.kernel.org/linus/84fc8896f0d9d1c075e0e08a416faedbd73907fa|commit]] * hda/realtek: Add support for HP !EliteBook x360 830 G6 and !EliteBook 830 G6 [[https://git.kernel.org/linus/eafae0fdd115a71b3a200ef1a31f86da04bac77f|commit]] * hda/realtek: Audio disappears on HP 15-fc000 after warm boot again [[https://git.kernel.org/linus/f4b3cef55f5f96fdb4e7f9ca90b7d6213689faeb|commit]] * hda/realtek: add LG gram 16Z90R-A to alc269 fixup table [[https://git.kernel.org/linus/dbe05428c4e54068a86e7e02405f3b30b1d2b3dd|commit]] * hda/tas2781: Add compatible for hardware id TIAS2781 and TXNW2781 [[https://git.kernel.org/linus/b2904df0a347f206900681f566bb53fc42bd8ba7|commit]] * hda/tas2781: Support L"!SmartAmpCalibrationData" to save calibrated data [[https://git.kernel.org/linus/cac5f2af13459f6258c4857d2e61ea53d0dfd751|commit]] * hda: Add device entry for QEMU [[https://git.kernel.org/linus/0d3d3d01947b842d3c8934394f5210143a54db4a|commit]] * hda: add MODULE_FIRMWARE for cs35l41/cs35l56 [[https://git.kernel.org/linus/6eda9429501508196001845998bb8c73307d311a|commit]] * hda: cs35l41: Support Lenovo Thinkbook 13x Gen 5 [[https://git.kernel.org/linus/f205ed23f0687ea8b14c140e0af9643eed683691|commit]] * usb-audio: Add DSD support for Comtrue USB Audio device [[https://git.kernel.org/linus/e9df1755485dd90a89656e8a21ec4d71c909fa30|commit]] * codecs: rt5640: Retry DEVICE_ID verification [[https://git.kernel.org/linus/19f971057b2d7b99c80530ec1052b45de236a8da|commit]] * Intel: avs: Add rt5640 machine board [[https://git.kernel.org/linus/c95e925daa434ee1a40a86aec6476ce588e4bd77|commit]] * ASoC * Intel: soc-acpi-intel-ptl-match: add support ptl-rt721-l0 [[https://git.kernel.org/linus/e149d870687a5cfd702b700d81ae75ec6f41dd57|commit]] * Intel: soc-acpi-intel-lnl-match: add rt1320_l12_rt714_l0 support [[https://git.kernel.org/linus/86ccd4d3e8bc9eeb5dde4080fcc67e0505d1d2c6|commit]] * Intel: sof_rt5682: Add HDMI-In capture with rt5682 support for PTL. [[https://git.kernel.org/linus/03aa2ed9e187e42f25b3871b691d535fc19156c4|commit]] * SDCA: add a HID device for HIDE entity [[https://git.kernel.org/linus/ac558015dfd803626622bd0ba9645d58a3ed16b1|commit]] * SDCA: add support for HIDE entity properties and HID descriptor/report [[https://git.kernel.org/linus/13ef21dffe7691a32c83a83d697d119c045536eb|commit]] * Add audio support for acp7.2 platform [[https://git.kernel.org/linus/5bbb3913b7d691d3293fa7cde0a897d44d1e4522|commit]] * amd: acp: add soundwire machine for ACP7.0 and ACP7.1 sof stack [[https://git.kernel.org/linus/8b04b766714e93ca5a8021ff3408c9ef89d9eb85|commit]] * SOF: ipc4-priv: Add kernel doc for fw_context_save of sof_ipc4_fw_data [[https://git.kernel.org/linus/cec49fa47bccadb288fd984ef2a5c45e8a2e2099|commit]] * SOF: amd: add alternate machines for ACP7.0 and ACP7.1 platforms [[https://git.kernel.org/linus/59566923d955b69bfb1e1163f07dff437dde8c9c|commit]] * codecs: Add acpi_match_table for aw88399 driver [[https://git.kernel.org/linus/e95122a32e777309412e30dc638dbc88b9036811|commit]] * codecs: Add calibration function to aw88399 chip [[https://git.kernel.org/linus/29ddce17e909779633f856ad1c2f111fbf71c0df|commit]] * Add richtek rtq9124 support [[https://lore.kernel.org/linux-sound/cover.1749454717.git.cy_huang@richtek.com/T/|(cover)]], [[https://git.kernel.org/linus/5c694e3a83d089df6b00747cf4627735ea14014e|commit]], [[https://git.kernel.org/linus/1f5cdb6ab45e1c06ae0953609acbb52f8946b3e8|commit]] * imx-card: Add WM8524 support [[https://git.kernel.org/linus/2260bc6ea8bd57aec92cbda770de9cc95232f64d|commit]] * Add sound card support for qcs8275 [[https://lore.kernel.org/linux-sound/20250701102915.4016108-1-quic_pkumpatl@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/3b8dc31715e31ab930d36ef7b98ffc714344e411|commit]], [[https://git.kernel.org/linus/34d340d48e595f8dfd4e72fe4100d2579dbe4a1a|commit]] * Enable usb audio offloading on fairphone 4 smartphone [[https://lore.kernel.org/phone-devel/20250723-fp4-usb-audio-offload-v3-0-6be84ed4fc39@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/b102c9d89fecd72be83eaab9b384285e2d0dc940|commit]], [[https://git.kernel.org/linus/d664e75317e19bb79b6d207f7729e35eca504a6a|commit]], [[https://git.kernel.org/linus/c58c35ef6ae62e36927f506a5afc66610b7261d9|commit]] * dt-bindings: tas57xx: add tas5753 compatibility [[https://git.kernel.org/linus/f6f914893d478b7ba08e5c375de1ced16deb5e92|commit]] * amd: Add support for acp7.2 platform [[https://git.kernel.org/linus/34b1cb4ec286603127aa8c4191ea527eb8dd3567|commit]] * amd: acp: Add !SoundWire SOF machine driver support for acp7.2 platform [[https://git.kernel.org/linus/1c4c768d068616fa8948826ab714a4ac1f3b9aa9|commit]] * amd: acp: Add !SoundWire legacy machine driver support for acp7.2 platform [[https://git.kernel.org/linus/0df24f34794d2eea4bdc819fba0ba28f226286e6|commit]] * amd: acp: Enable I2S support for acp7.2 based platforms [[https://git.kernel.org/linus/3549725e0f7823d085403fc4219fd3df347a1ae4|commit]] * amd: acp: Enable acp7.2 platform based DMIC support in machine driver [[https://git.kernel.org/linus/0c0ef1d90967717b91cded41b00dbae05d8e521c|commit]] * amd: ps: Add !SoundWire pci and dma driver support for acp7.2 platform [[https://git.kernel.org/linus/60e5b2441d7c035e732e4a1166779c6cc316c46b|commit]] * tas571x: add support for tas5753 [[https://git.kernel.org/linus/c2bde4666d229d155de5f9b0aa0676804b32fa7a|commit]] == Tablets, touch screens, keyboards, mouses == * Add two new features for quicki2c [[https://lore.kernel.org/linux-input/20250514061944.125857-1-even.xu@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/fccef49540a97a3152502bc591858f441a4c7b11|commit]], [[https://git.kernel.org/linus/13dd60947f439bc2e7a37ed14fbec6b6ff591572|commit]], [[https://git.kernel.org/linus/45e92a093099eaf71ff2915a5f6ab5c04c8385e6|commit]], [[https://git.kernel.org/linus/22da60f0304b6bfd2c7cba8ee88086f344ef5206|commit]], [[https://git.kernel.org/linus/bccbe21e766f9bd1721905ece30adeac6a61b4f6|commit]], [[https://git.kernel.org/linus/48f151a537542f232b328d20c27e46405a408a5a|commit]], [[https://git.kernel.org/linus/2c7c9c5db3bc418fc52b222651524470eeaf6f36|commit]] * Add wake-on-touch feature support for thc [[https://lore.kernel.org/linux-input/20250514063735.141950-1-even.xu@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/dcb2ccb93095fcaa2969370dcbbe82fc83d42229|commit]], [[https://git.kernel.org/linus/60c9fca90e3338d7d7a76e5db92071f07a164d55|commit]], [[https://git.kernel.org/linus/3fdfa1e1fae3ea111f8912d028a38543059a2d7f|commit]] * Add {{{BTN_GRIP*}}} [[https://lore.kernel.org/lkml/20250717000143.1902875-1-vi@endrift.com/T/|(cover)]], [[https://git.kernel.org/linus/97c01e65ef4c1878532be245b2899fc4363cc453|commit]], [[https://git.kernel.org/linus/4f67c41894674d351a4b4e7dd3471380b71b5bb3|commit]], [[https://git.kernel.org/linus/e7412ba919f625438c570d8b4fbf16c5f31b583d|commit]] * Atkbd: correctly map f13 - f24 [[https://git.kernel.org/linus/17eabb792740cea3f24b236e150f9fee8cd344f3|commit]] * I8042: add tuxedo infinitybook pro gen10 amd to i8042 quirk table [[https://git.kernel.org/linus/1939a9fcb80353dd8b111aa1e79c691afbde08b4|commit]] * Pcf50633-input: remove the driver [[https://git.kernel.org/linus/fc75e51e6977f12f76cdcc6f9658a61b04cc4b3e|commit]] * Report battery status changes immediately [[https://git.kernel.org/linus/a82231b2a8712d0218fc286a9b0da328d419a3f4|commit]], [[https://git.kernel.org/linus/e94536e1d1818b0989aa19b443b7089f50133c35|commit]] * Support overlay objects on touchscreens [[https://lore.kernel.org/linux-input/20241016-feature-ts_virtobj_patch-v11-0-b292a1bbb0a1@wolfvision.net/T/|(cover)]], [[https://git.kernel.org/linus/19875ccec01653a897a53db91cd4434c52ef5465|commit]], [[https://git.kernel.org/linus/ea4d331050b4cd43e6a900937db88b01ef75e1f2|commit]], [[https://git.kernel.org/linus/88fb51ea6a38189bed42d302183fbbf6bb03accf|commit]], [[https://git.kernel.org/linus/1c44b818b81bf6a111a702536a560f5bc830c6d5|commit]] * Xpad: add support for flydigi apex 5 [[https://git.kernel.org/linus/47ddf62b43eced739b56422cd55e86b9b4bb7dac|commit]] * amd_sfh: Enable operating mode [[https://git.kernel.org/linus/3a807f3ff9eaaeead81576c5a72d226d519a2fe7|commit]] * apple: combine patch series for all patches recently sent upstream [[https://lore.kernel.org/linux-kernel/PN3PR01MB9597843FE87D50116665ADC4B89CA@PN3PR01MB9597.INDPRD01.PROD.OUTLOOK.COM/T/|(cover)]], [[https://git.kernel.org/linus/4e960bb550962fe5bfbcbb34ed59c1af9daff9fa|commit]], [[https://git.kernel.org/linus/b45944946a19636f7bbded0763b536ce007c3c9b|commit]], [[https://git.kernel.org/linus/46d74dd9b45f84bf8e900447c5b4b69d58733f42|commit]], [[https://git.kernel.org/linus/e77bdf51de070610328255d011c439634a9ea932|commit]], [[https://git.kernel.org/linus/4604baafaaeeb131dfb8d9325b1e8e90f364c468|commit]], [[https://git.kernel.org/linus/a23ff6080e7197922e3a9fd8856e142b612eb50a|commit]], [[https://git.kernel.org/linus/c5f3a74310fa807d0383c109799100217f739563|commit]], [[https://git.kernel.org/linus/a71338bb8bb1bbaa43e682137d8dc484a1391ea6|commit]] * dts: mediatek: mt8395-genio-1200-evk: Add MT6359 PMIC key support [[https://git.kernel.org/linus/a9b906f15995e18b700a7e7791865ecf2f1cee65|commit]] * edt-ft5x06: add support for !FocalTech FT8716 [[https://git.kernel.org/linus/c6f908f88a55be7641d78a99053818147bde93e9|commit]], [[https://git.kernel.org/linus/06226bd497dd99780968600e498f95e8d049d1c2|commit]] * elecom: add support for ELECOM M-DT2DRBK [[https://git.kernel.org/linus/832e5777143e799a97e8f9b96f002a90f06ba548|commit]] * logitech: Add ids for G PRO 2 LIGHTSPEED [[https://git.kernel.org/linus/ab1bb82f3db20e23eace06db52031b1164a110c2|commit]] * mtk-pmic-keys: add support for MT6359 PMIC keys [[https://git.kernel.org/linus/bc25e6bf032e8fb17e6985c6393a6cdee6010a28|commit]] * multitouch: Add support for Touch Bars on x86 !MacBook Pros [[https://lore.kernel.org/linux-kernel/PN3PR01MB959768813D548FD4A91CDD11B864A@PN3PR01MB9597.INDPRD01.PROD.OUTLOOK.COM/T/|(cover)]], [[https://git.kernel.org/linus/f41d736acc039d86512951f4e874b0f5e666babf|commit]], [[https://git.kernel.org/linus/e0976a61a543b5e03bc0d08030a0ea036ee3751d|commit]], [[https://git.kernel.org/linus/7dfe48bdc9d38db46283f2e0281bc1626277b8bf|commit]], [[https://git.kernel.org/linus/45ca23c5ee8b2b3074377fecc92fa72aa595f7c9|commit]], [[https://git.kernel.org/linus/2c31ec923c323229566d799267000f8123af4449|commit]] * synaptics-rmi4: add support for F1A [[https://git.kernel.org/linus/4619b6b97553693be7faf21af0533c24240d1d4f|commit]] * synaptics-rmi4: add support for Forcepads (F21) [[https://git.kernel.org/linus/a9c95d17dc13b8a4c5faa02a6b84ba83af058206|commit]] * uclogic: Add support for XP-PEN Artist 22R Pro [[https://lore.kernel.org/linux-input/20250623024309.17356-1-josh@redstrate.com/T/|(cover)]], [[https://git.kernel.org/linus/9671854582f971c84507728d4a00aa779e5a0811|commit]] * intel-thc-hid: intel-quickspi: Add WCL Device IDs [[https://git.kernel.org/linus/cc54ed51c761728f6933cca889b684ed7fbaaf07|commit]] == TV tuners, webcams, video capturers == * uvcvideo: Introduce {{{V4L2_META_FMT_UVC_MSXU_1_5}}} + other meta fixes [[https://lore.kernel.org/linux-media/20250707-uvc-meta-v8-0-ed17f8b1218b@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/bda2859bff0b9596a19648f3740c697ce4c71496|commit]], [[https://git.kernel.org/linus/e1ad27027587cc9ea03889c63d9d402a61d8e553|commit]], [[https://git.kernel.org/linus/0bb51c8897395de5bd5f571874130aec214ef534|commit]], [[https://git.kernel.org/linus/2ab4019aa34dc2aec4a0824fbf1e49300884fbbf|commit]], [[https://git.kernel.org/linus/6cb786f040ad35b23b4a7bff8b9d772f22909d48|commit]] * Extend raw format support for rzg2l-cru driver [[https://lore.kernel.org/linux-media/20250625-rzg2l-cru-v6-0-a9099ed26c14@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/78584431e2cea6b60909cfa23c90ac8b33ab4198|commit]], [[https://git.kernel.org/linus/d225bdb6ede7595cddead722503aa9ec7b0a646d|commit]], [[https://git.kernel.org/linus/ac261abe73e3db462340645a84291ec384df7191|commit]], [[https://git.kernel.org/linus/ace92ccef0c9bee4fad192b151c1aed9eef7f7c9|commit]], [[https://git.kernel.org/linus/907122f552089da25fe8f3d072d1222bd99dec9b|commit]], [[https://git.kernel.org/linus/88193ae66b042925aee3ee7ffeeeaddb70131e7f|commit]] * amphion: Add H264 and HEVC profile and level control [[https://git.kernel.org/linus/ba4452b0c0a3191617764d3453f45ea48ed544c9|commit]] * amphion: Support dmabuf and v4l2 buffer without binding [[https://git.kernel.org/linus/77ce8e4d6de72a4b8b8c4595a8c1c2305f3ac469|commit]] * Enable support for error detection in csi2rx [[https://lore.kernel.org/linux-media/20250416121938.346435-1-y-abhilashchandra@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/afba5eaf69c1aad199638d830af9c2eb3f8c2e6e|commit]], [[https://git.kernel.org/linus/9f2d0da9b8c3477cd5ed4e1ed1e58bb44184561b|commit]] * dw9714: add support for powerdown pin [[https://git.kernel.org/linus/03dca1842421b068d6a65b8ae16e2191882c7753|commit]] * imx8: add camera support [[https://lore.kernel.org/linux-media/20250522-8qxp_camera-v5-0-d4be869fdb7e@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/c4891010d8194bda9c268cc9330ba9e342d7c4b6|commit]], [[https://git.kernel.org/linus/2021b8d51cdb514da22f2c9bc05e123d19277d1d|commit]], [[https://git.kernel.org/linus/66ede6d71d4e8782754b1dffd587877715015b5e|commit]], [[https://git.kernel.org/linus/60b8de2b9b4be249c47e100e692d240d661e056b|commit]], [[https://git.kernel.org/linus/73a40554f979eb0e441dbc9df4b84effdedb1e87|commit]], [[https://git.kernel.org/linus/dee8521f698742732507520cfb122de6df447e72|commit]], [[https://git.kernel.org/linus/859278460faa4e52e4b01c8b997bab57af460067|commit]], [[https://git.kernel.org/linus/1d2d96f5998a8a489919ff9504547b5f5845b967|commit]], [[https://git.kernel.org/linus/382d53e9cefb3ca3fd0330ea609b94cb544e86b5|commit]], [[https://git.kernel.org/linus/642b70d526ab8daa8f256dfc1eb6bf27c3290cc6|commit]], [[https://git.kernel.org/linus/2217f824371491ea07e0ec31022195280cddf20b|commit]], [[https://git.kernel.org/linus/5876f25015168f0014d4d11f4f37e87da730c03e|commit]], [[https://git.kernel.org/linus/4f25d7f1439f12233768dce853260b8302424d16|commit]] * ipu-bridge: Add Onsemi MT9M114 HID to list of supported sensors [[https://git.kernel.org/linus/dd8bb4a2ecd3bb2a5a64cb58a6ff5c4d9c400c46|commit]] * Support ov5670 on ipu3 devices [[https://lore.kernel.org/linux-media/20250520-djrscally-ov5670-v2-0-104ae895aecf@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/4e89c747358fdc368a2aa0a2cba21100d5f7821e|commit]], [[https://git.kernel.org/linus/bca5cfbb694d66a1c482d0c347eee80f6afbc870|commit]], [[https://git.kernel.org/linus/484f8bec3ddb453321ef0b8621c25de6ce3d0302|commit]] * Add support for hevc and vp9 codecs in decoder [[https://lore.kernel.org/linux-media/20250509-video-iris-hevc-vp9-v5-0-59b4ff7d331c@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/7c452ffda30c0460c568273993a3d3c611486467|commit]], [[https://git.kernel.org/linus/d2abb1ff5a3c13321d407ee19865d0d8d834c7c6|commit]], [[https://git.kernel.org/linus/8aadfd445373b74de4a5cd36736843ae01856636|commit]], [[https://git.kernel.org/linus/caf2055487694b6cb52f2ecb161c6c5de660dd72|commit]], [[https://git.kernel.org/linus/f3516f856d1f11d9dff7d72491d474a2bae1cf8e|commit]], [[https://git.kernel.org/linus/2781662dee7bbb9675e5440f5dff4e3991dc5624|commit]], [[https://git.kernel.org/linus/03e29ab0e94831fcca2f62c96121fd14263b399b|commit]], [[https://git.kernel.org/linus/a693b4a3e7a95c010bedef4c8b3122bd8b0961b7|commit]], [[https://git.kernel.org/linus/c314a28cdabe45f050fe7bd403ddeaf4b9c960d1|commit]], [[https://git.kernel.org/linus/0f837559ccdd275c5a059e6ac4d5034b03409f1d|commit]], [[https://git.kernel.org/linus/58edc8a68de7af45a4c815636595daa530f02c13|commit]], [[https://git.kernel.org/linus/9bf58db157139abcd60e425e5718c8e6a917f9dc|commit]], [[https://git.kernel.org/linus/91c6d55b477e1b66578c268214e915dff9f5ea57|commit]], [[https://git.kernel.org/linus/7adc11e6abf619d0bb0c05918d5da5b9d4bcb81e|commit]], [[https://git.kernel.org/linus/1e27e9ffce59ac41cde71673d74eb368a533cdb2|commit]], [[https://git.kernel.org/linus/b7a898184e74a8261c34f1265139ac1799ee4e1c|commit]], [[https://git.kernel.org/linus/b791dcfcba3a0c46fb3e2decab31d2340c5dc313|commit]], [[https://git.kernel.org/linus/ac72ad9deafa4b8e8cbb3ce27a95906b915f802f|commit]], [[https://git.kernel.org/linus/f15cb8652b4f49e7cd217f572b29aa64c21e8970|commit]], [[https://git.kernel.org/linus/0aebab4968efad155511a7d1584bb2ab74d8bc42|commit]], [[https://git.kernel.org/linus/c7501fa5fb85acd54e65c763b1796bf67701eb3c|commit]], [[https://git.kernel.org/linus/fde6161d91bb72791b515bae5741c17e4ab6f8e8|commit]], [[https://git.kernel.org/linus/f44ef2d4058bdde343431f05a7cbcb9982c4b8f6|commit]], [[https://git.kernel.org/linus/820ac7fe2796958cb3c398c050fb213d290afd19|commit]], [[https://git.kernel.org/linus/e1f5d32608ec3c04e41c2c467b99c9a4a3f42d5b|commit]], [[https://git.kernel.org/linus/478c4478610d307b710e69b858243bcd78f522de|commit]] * Extend raw format support for rzg2l-cru driver [[https://lore.kernel.org/linux-media/20250625-rzg2l-cru-v6-0-a9099ed26c14@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/78584431e2cea6b60909cfa23c90ac8b33ab4198|commit]], [[https://git.kernel.org/linus/d225bdb6ede7595cddead722503aa9ec7b0a646d|commit]], [[https://git.kernel.org/linus/ac261abe73e3db462340645a84291ec384df7191|commit]], [[https://git.kernel.org/linus/ace92ccef0c9bee4fad192b151c1aed9eef7f7c9|commit]], [[https://git.kernel.org/linus/907122f552089da25fe8f3d072d1222bd99dec9b|commit]], [[https://git.kernel.org/linus/88193ae66b042925aee3ee7ffeeeaddb70131e7f|commit]] * rcar-csi2: Add D-PHY support for V4H [[https://lore.kernel.org/lkml/20250612175904.1126717-1-niklas.soderlund+renesas@ragnatech.se/T/|(cover)]], [[https://git.kernel.org/linus/797567e81d201ee478f8efa5004804374fc2cbaf|commit]], [[https://git.kernel.org/linus/c927b7b5acfa48471959fb3da9bcc37a11202406|commit]], [[https://git.kernel.org/linus/6f9126b24b0a01219f706be7e3c6cd12dd2ce2cc|commit]], [[https://git.kernel.org/linus/40823233ca30b89af8e5ccd58effddb997c98fb5|commit]] * rcar-vin: Unify notifiers and enable MC on Gen2 [[https://lore.kernel.org/lkml/20250613153434.2001800-1-niklas.soderlund+renesas@ragnatech.se/T/|(cover)]], [[https://git.kernel.org/linus/1b83fa6eb9706be4023bce88e952902acf8646ba|commit]], [[https://git.kernel.org/linus/df45bd925efe8b7708cbc549cffa81fcb0e9586e|commit]], [[https://git.kernel.org/linus/bad694f877954a0daa9eda02b935c983725d5f6c|commit]], [[https://git.kernel.org/linus/b38ba9b160e0605cb500059e48ba3d1fc92fef19|commit]], [[https://git.kernel.org/linus/d568581b07f4ace5916e9b8b85fa2100f5716952|commit]], [[https://git.kernel.org/linus/a3e4aad92429f8b66ef6492d4e5caff9d11a94ee|commit]], [[https://git.kernel.org/linus/11e14a525765db6a71c5c9291140a28682ff3b1b|commit]], [[https://git.kernel.org/linus/856b49c71ae58adeb0836c30a22c830593583141|commit]], [[https://git.kernel.org/linus/257d994a6f81630b56f6393ed9ad8dbfbe10ff20|commit]], [[https://git.kernel.org/linus/a4b278e92de02ef63874e98719c25912546518a3|commit]], [[https://git.kernel.org/linus/f9e4d4b1ce389b44942a59bf0878921922d8604d|commit]], [[https://git.kernel.org/linus/6d2efcb0979ae50176ad8340e27b930ccddfe9b5|commit]], [[https://git.kernel.org/linus/4d2c3d70799f5eb210003613766bbd113bbebc1a|commit]] * rkisp1: Add RKISP1_CID_SUPPORTED_PARAMS_BLOCKS ctrl and WDR support [[https://lore.kernel.org/linux-media/20250523-supported-params-and-wdr-v3-0-7283b8536694@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/4d78051cd6a7ce8e88d4e6dfed8ee0e133116287|commit]], [[https://git.kernel.org/linus/7c8c957ef12c41968adb66d785ce1dd5fb2f96e7|commit]], [[https://git.kernel.org/linus/cd403e8aed6caad87967d2c135b57d92ba8e5544|commit]] * uvcvideo: use vb2 ioctl and fop helpers [[https://lore.kernel.org/linux-media/20250616-uvc-fop-v4-0-250286570ee7@chromium.org/T/|(cover)]], [[https://git.kernel.org/linus/c93d73c9c2cfa7658f7100d201a47c4856746222|commit]], [[https://git.kernel.org/linus/b7ef53670321327f45de8bde5d38f1215927336f|commit]], [[https://git.kernel.org/linus/54828c0d4f909bd706e15cfaa29758f2c1d59212|commit]], [[https://git.kernel.org/linus/7dd56c47784a466b03df62ca766207f483353cdc|commit]], [[https://git.kernel.org/linus/1657624a69fcfd3f27ba6223e1c8fb6a16815568|commit]], [[https://git.kernel.org/linus/2acded8aa2c89b858495488f6a14cd1d04fc5784|commit]] * Extend raw format support for rzg2l-cru driver [[https://lore.kernel.org/linux-media/20250625-rzg2l-cru-v6-0-a9099ed26c14@ideasonboard.com/T/|(cover)]], [[https://git.kernel.org/linus/78584431e2cea6b60909cfa23c90ac8b33ab4198|commit]], [[https://git.kernel.org/linus/d225bdb6ede7595cddead722503aa9ec7b0a646d|commit]], [[https://git.kernel.org/linus/ac261abe73e3db462340645a84291ec384df7191|commit]], [[https://git.kernel.org/linus/ace92ccef0c9bee4fad192b151c1aed9eef7f7c9|commit]], [[https://git.kernel.org/linus/907122f552089da25fe8f3d072d1222bd99dec9b|commit]], [[https://git.kernel.org/linus/88193ae66b042925aee3ee7ffeeeaddb70131e7f|commit]] * v4l2-common: Add the missing Raw Bayer pixel formats [[https://git.kernel.org/linus/1fff2ee377e1c2230054e65092def460dd40b587|commit]], [[https://git.kernel.org/linus/00e0b9455fb4c74fc777289a129f646b4cb112f8|commit]] * v4l2: Add support for NV12M tiled variants to v4l2_format_info() [[https://git.kernel.org/linus/f7546da1d6eb8928efb89b7faacbd6c2f8f0de5c|commit]] * Add webp support to hantro decoder [[https://lore.kernel.org/lkml/20241121131904.261230-1-hugues.fruchet@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/3f6702e1be8a06e70c60720162a77c8b3a4b69d3|commit]] * vsp1: Add VSPX support [[https://git.kernel.org/linus/d06c1a9f348d22478c6bc5684f9c990e15ada1e9|commit]] * hi556: Support full range of power rails [[https://git.kernel.org/linus/375fc903e57cb3ca4d2d5408de98d6369d4c8334|commit]] * ipu-bridge: Add Toshiba T4KA3 HID to list of supported sensor [[https://git.kernel.org/linus/29d77da94173e7a828caeedecef93c5365c6fddc|commit]] * ipu-bridge: Add Onsemi MT9M114 HID to list of supported sensors [[https://git.kernel.org/linus/dd8bb4a2ecd3bb2a5a64cb58a6ff5c4d9c400c46|commit]] * rkvdec: Unstage the driver [[https://git.kernel.org/linus/d968e50b5c26642754492dea23cbd3592bde62d8|commit]] * tc358743: Add support for 972Mbit/s link freq [[https://git.kernel.org/linus/d8192cc01a11e40fa18da44c00c25df5c7beac53|commit]] * cedrus: Add support for additional output formats [[https://git.kernel.org/linus/193cd0fd5a6055b88a3b2860c43a647362f9e7c4|commit]] == Universal Serial Bus == * thunderbolt: Enable end-to-end flow control also in transmit [[https://git.kernel.org/linus/a8065af3346ebd7c76ebc113451fb3ba94cf7769|commit]] * serial: option: add Telit Cinterion LE910C4-WWX new compositions [[https://git.kernel.org/linus/a5a261bea9bf8444300d1067b4a73bedee5b5227|commit]] * serial: option: add Foxconn !T99W709 [[https://git.kernel.org/linus/ad1244e1ce18f8c1a5ebad8074bfcf10eacb0311|commit]] * usb-storage: Add unusual-devs entry for Novatek NTK96550-based camera [[https://git.kernel.org/linus/6ca8af3c8fb584f3424a827f554ff74f898c27cd|commit]] * dwc3: pci: add support for the Intel Wildcat Lake [[https://git.kernel.org/linus/86f390ba59cd8d5755bafe2b163c3e6b89d6bbd9|commit]] * typec: altmodes/displayport: add irq_hpd to sysfs [[https://git.kernel.org/linus/8b4f6fafed6cd9a36716dd4846f27cc543f52303|commit]] * chipidea: Add support for s32g2 and s32g3 [[https://git.kernel.org/linus/e8dcc89dabec0e3ea8ab975a33eaf57f125f6ef1|commit]], [[https://git.kernel.org/linus/a4a27565464e9a2eee99bd83e2071a3a6898a0a2|commit]], [[https://git.kernel.org/linus/08c8767ada7137c9403e2e20eb5b8f7387214391|commit]], [[https://git.kernel.org/linus/d1b07cc0868fe14f4540cbc48c1a7c1a8055e284|commit]] == Serial Peripheral Interface (SPI) == * Support for amlogic the new spi ip [[https://lore.kernel.org/linux-spi/20250718-spisg-v5-0-b8f0f1eb93a2@amlogic.com/T/|(cover)]], [[https://git.kernel.org/linus/78d35a20783941c8ba5cf912349728c6e1bee84b|commit]], [[https://git.kernel.org/linus/cef9991e04aed3305c61c392e880f6e01a0c2ea4|commit]], [[https://git.kernel.org/linus/0ef2a9779e9decee52a85bc393309b3e068a74a6|commit]] * Add rspi support for rz/v2h [[https://lore.kernel.org/linux-spi/20250704162036.468765-1-fabrizio.castro.jz@renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/44b91d61c505863b8ae90b7094aee5ca0dce808f|commit]], [[https://git.kernel.org/linus/8b61c8919dff080d83415523cd68f2fef03ccfc7|commit]], [[https://git.kernel.org/linus/926406a85ad895fbe6ee4577cdbc4f55245a0742|commit]] * intel: Allow writeable MTD partition with module param [[https://git.kernel.org/linus/87aa3c8d8c4aa2e2567fe04126d14eb9fde815e5|commit]] * adc: ad7173: add SPI offload support [[https://lore.kernel.org/linux-iio/20250701-iio-adc-ad7173-add-spi-offload-support-v3-0-42abb83e3dac@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/5a2f15c5a8e017d0951e6dc62aa7b5b634f56881|commit]], [[https://git.kernel.org/linus/67189665e0630d1eaec539a50b37d1022db65dca|commit]], [[https://git.kernel.org/linus/11d58620dfd0c52b0c49b04d28707c7a5a2d00ae|commit]], [[https://git.kernel.org/linus/1a913da6cfda0139bfe1fe203858d5ba30ac853d|commit]], [[https://git.kernel.org/linus/e916934b591585140a59ac899ac356cd4a1f269f|commit]], [[https://git.kernel.org/linus/86d8d6b8b9a79ef9cdbd6de76f951a7282bb7883|commit]], [[https://git.kernel.org/linus/1519bedf884c0a7c316906459d8c7da12113a8a9|commit]], [[https://git.kernel.org/linus/db63e45a7da0678652c69f7cbed2cbf2a9922b39|commit]], [[https://git.kernel.org/linus/e47a324d6f07c9ef252cfce1f14cfa5110cbed99|commit]], [[https://git.kernel.org/linus/3fcd3d2fe44dc9dfca20b6aed117f314a50ba0ff|commit]], [[https://git.kernel.org/linus/219da3ea842a156e5808176e11db256db9798f6c|commit]], [[https://git.kernel.org/linus/d2c0e95525216cdc695d0066ee2f70b8adfbc536|commit]] * spi-fsl-dspi: DSPI support for NXP S32G platforms [[https://lore.kernel.org/linux-spi/20250522-james-nxp-spi-v2-0-bea884630cfb@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/283ae0c65e9c592f4a1ba4f31917f5e766da7f31|commit]], [[https://git.kernel.org/linus/8a30a6d35a11ff5ccdede7d6740765685385a917|commit]], [[https://git.kernel.org/linus/7aba292eb15389073c7f3bd7847e3862dfdf604d|commit]], [[https://git.kernel.org/linus/87a14a96bc323aff824fad8cdbe61b78eff22255|commit]], [[https://git.kernel.org/linus/1672b0653212cecf11be9ef55bc2a2fabe0fa2ca|commit]], [[https://git.kernel.org/linus/70c0b17ee344b0c14b88e6b5b1db6abe2fa84218|commit]], [[https://git.kernel.org/linus/e7397e4d3b161ed8a57648a9ac03df7902958682|commit]], [[https://git.kernel.org/linus/cac7e5054115fcc41b1cb050af8e8971f7c9b22b|commit]], [[https://git.kernel.org/linus/870d6fda18d590df88beac9b0504f810807a5ed6|commit]], [[https://git.kernel.org/linus/c5412ec5f687732f9722bd0f94f9632ad78f4c52|commit]], [[https://git.kernel.org/linus/0cb9ca1187b311db21288a79ec7b98121f730354|commit]], [[https://git.kernel.org/linus/be47ecfecf5a6f16d028fd572410251b502692bf|commit]], [[https://git.kernel.org/linus/9a30e332c36c52e92e5316b4a012d45284dedeb5|commit]], [[https://git.kernel.org/linus/06ee2f0e2180328ce436c09f41132c46350aad16|commit]] * spi-fsl-lpspi: Generic fixes and support for S32G devices [[https://lore.kernel.org/linux-spi/20250828-james-nxp-lpspi-v2-0-6262b9aa9be4@linaro.org/T/|(cover)]], [[https://git.kernel.org/linus/782a7c73078e1301c0c427f21c06377d77dfa541|commit]], [[https://git.kernel.org/linus/cbe33705864ba2697a2939de715b81538cf32430|commit]], [[https://git.kernel.org/linus/e811b088a3641861fc9d2b2b840efc61a0f1907d|commit]], [[https://git.kernel.org/linus/dedf9c93dece441e9a0a4836458bc93677008ddd|commit]], [[https://git.kernel.org/linus/b663fd4532699cc24f5d1094f3859198ee1ed4b6|commit]], [[https://git.kernel.org/linus/fb4273faa4d0eeca8cb7265531d48eb084bcceea|commit]], [[https://git.kernel.org/linus/9bbfb1ec959ce95f91cfab544f705e5257be3be1|commit]], [[https://git.kernel.org/linus/41c91c2eed83cb93781078108077b7e34f867fc2|commit]], [[https://git.kernel.org/linus/431f6c88cb5d2d62d579d4d78f5c1a2583465ffb|commit]] * spi-qpic-snand: enable 8 bits ECC strength support [[https://lore.kernel.org/linux-spi/20250702-qpic-snand-8bit-ecc-v2-0-ae2c17a30bb7@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/0dc7e656ddd54c3267b7cc18c1ac8ec1297ed02f|commit]], [[https://git.kernel.org/linus/913bf8d50cbd144c87e9660b591781179182ff59|commit]] * sophgo: Add SPI NOR controller for SG2042 [[https://lore.kernel.org/linux-kernel/20250720-sfg-spifmc-v4-0-033188ad801e@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/7438379cfc47046f7507dfdb54906acf56288b9f|commit]], [[https://git.kernel.org/linus/5653b4f8840801d9d141ba6a6c10e7cc15040c5b|commit]], [[https://git.kernel.org/linus/f6b159431697c903da1418e70c825faa0cddbdae|commit]] * Introduce trivial abb sensor device [[https://lore.kernel.org/linux-spi/20250719063355.73111-1-hs@denx.de/T/|(cover)]], [[https://git.kernel.org/linus/aad2f87cbcab56b322109d26d7b11842a09df91f|commit]], [[https://git.kernel.org/linus/d60f7cab7c04944a79af16caa43c141e780a59c6|commit]] == Watchdog == * sbsa: Adjust keepalive timeout to avoid !MediaTek WS0 race condition [[https://git.kernel.org/linus/48defdf6b083f74a44e1f742db284960d3444aec|commit]] == Serial == * qcom-geni: Add support for 8 Mbps baud rate [[https://git.kernel.org/linus/341a22fa056ddc01341b5e2a1ca0dbe61fbdb1ea|commit]] * qcom-geni: Enable support for half-duplex mode [[https://git.kernel.org/linus/4fcc287f3c692450ffd91c72a19c58740494491a|commit]] * Add rsci driver for renesas rz/t2h soc [[https://lore.kernel.org/linux-kernel/20250630202323.279809-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/dfa983c98cf76b4f22f3b8e3f30b9672c969f70a|commit]], [[https://git.kernel.org/linus/64a2e41b8ef7771554374a0ac8386648fc6db2ba|commit]], [[https://git.kernel.org/linus/13af95c7f602cf3644f3145530ec2e80a88659eb|commit]], [[https://git.kernel.org/linus/1d26517d11de7fc9408c22429b8e75963314420d|commit]], [[https://git.kernel.org/linus/0666e3fe95ab55c295984f2f51277ec27d3f190c|commit]] == CPU Frequency scaling == * devfreq: Add !HiSilicon uncore frequency scaling driver [[https://lore.kernel.org/linux-pm/20250623143401.4095045-1-zhanjie9@hisilicon.com/T/|(cover)]], [[https://git.kernel.org/linus/45b9d1da6ca0d0285140f8779793b537e4560d45|commit]], [[https://git.kernel.org/linus/7da2fdaaa1e6062686ac96a9f096c2d7847533e4|commit]] * tegra: add DFLL support for Tegra 4 [[https://lore.kernel.org/linux-tegra/20250714081713.8409-1-clamor95@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/a7ce9ca1aaf93d55e32e915700d0ef9f69a781c9|commit]] * intel_pstate: Add Granite Rapids support in no-HWP mode [[https://git.kernel.org/linus/fc64e0421598aaa87d61184f6777b52614a095be|commit]] == Voltage, current regulators, power capping, power supply == * a523: Add power controllers [[https://lore.kernel.org/devicetree/20250712074021.805953-1-wens@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/f99d4fccd2185176baf4ecac9a49d280fc62b953|commit]], [[https://git.kernel.org/linus/982aaa683d20804c21c6b8b1ca295ae531c91df5|commit]], [[https://git.kernel.org/linus/76e4310115ca66d28166cf94bb1edf37a750363a|commit]], [[https://git.kernel.org/linus/73254f49164f12ca6e0a849883953b91c4e168eb|commit]], [[https://git.kernel.org/linus/3b430dce33a8b48ddcae4e26991b2516e0431e84|commit]] * rockchip: Add power controller support for RK3528 [[https://git.kernel.org/linus/8358102806c619d8d6c814010173617fb374b77e|commit]], [[https://git.kernel.org/linus/3068b386232f0a7d84da6d1366dbd0b7926c5652|commit]], [[https://git.kernel.org/linus/233eda069994182f10eb4013f8006705b22ca6b4|commit]], [[https://git.kernel.org/linus/654df8e74dbc19ba0625051079e6889e6999d16e|commit]] * Add milos rpmhpd power domains [[https://lore.kernel.org/phone-devel/20250707-sm7635-rpmhpd-v2-0-b4aa37acb065@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/cb1f2ebec676b661725787081d7fff96bafe629e|commit]], [[https://git.kernel.org/linus/9f2cbfcda595b6d741adf71058c60476b8d21028|commit]] * Apple mac system management controller [[https://lore.kernel.org/linux-gpio/20250610-smc-6-15-v7-0-556cafd771d3@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0f0a7bd04e7e00cef6da5f4955749d6f1fc27b32|commit]], [[https://git.kernel.org/linus/51bb1f6d4694cd84491847ea59eb194311b7d7f8|commit]], [[https://git.kernel.org/linus/dbad719958e162ac021716c223ba9df9071bca55|commit]], [[https://git.kernel.org/linus/ba9ae011e8373b1ff34aa4175c79288013de7fc8|commit]], [[https://git.kernel.org/linus/e038d985c9823a12cd64fa077d0c5aca2c644b67|commit]], [[https://git.kernel.org/linus/9b21051b0885912f5bb2cc9d4f95c6fca697da4d|commit]], [[https://git.kernel.org/linus/819687eb28e501d21dabd6a3f52454638a815071|commit]] * Add th1520 gpu support with power sequencing [[https://lore.kernel.org/devicetree/20250623-apr_14_for_sending-v6-0-6583ce0f6c25@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/d4c2d9b5b7ceed14a3a835fd969bb0699b9608d3|commit]], [[https://git.kernel.org/linus/7226b28ac776909fe744e078624b00fbe830bfd5|commit]], [[https://git.kernel.org/linus/da3d0b772f6f04e8460182024efbd4ce15e35c42|commit]], [[https://git.kernel.org/linus/cf5e81da0ed7f548367a9687ad73956a8dfb54d1|commit]] * Mediatek dimensity 1200 - add dvfsrc support [[https://lore.kernel.org/linux-kernel/20250410144019.475930-1-angelogioacchino.delregno@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/ba3297872a237c8949e812ffa72c64e81da38cec|commit]], [[https://git.kernel.org/linus/a6c05c2e6871c94b349703c1ec8584763797fd8e|commit]], [[https://git.kernel.org/linus/7aafbb463be85472dc6db194ab9df45fd497c998|commit]], [[https://git.kernel.org/linus/b06785283ec1c24fadce95390047feb9db840051|commit]], [[https://git.kernel.org/linus/e5ea18102c9d3bc2fcb186a6e9f43c5a4aba4f98|commit]] * pca9450: Support PWM mode also for pca9451a [[https://git.kernel.org/linus/19cbc930c209d59a2c9828de4c7b767e9f14667e|commit]] * Add rpmh regulator support for pm7550 & pmr735b [[https://lore.kernel.org/phone-devel/20250711-pm7550-pmr735b-rpmh-regs-v2-0-bca8cc15c199@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/729ff4a936c6f3faba78aaa8bc4291b6477c6576|commit]], [[https://git.kernel.org/linus/20a01de0808364c26836cc8f47ed3b59a40a927d|commit]], [[https://git.kernel.org/linus/28758434900ff4c4dce4e104fb5982ef3c0141ba|commit]], [[https://git.kernel.org/linus/3aa47d2ec83316c24e1ed15a492b331802dc6a69|commit]] * supply: qcom_battmgr: Add lithium-polymer entry [[https://git.kernel.org/linus/202ac22b8e2e015e6c196fd8113f3d2a62dd1afc|commit]] * supply: qcom_battmgr: Report battery capacity [[https://git.kernel.org/linus/3f87baacea4d185071655f9b0baf07abb6237fcd|commit]] * regulator: rpi-panel-v2: Add regulator for 7" Raspberry Pi 720x1280 [[https://git.kernel.org/linus/d49305862fdc4d9ff1b1093b4ed7d8e0cb9971b4|commit]] == Real Time Clock (RTC) == * Add support for rv8063 spi rtc [[https://lore.kernel.org/linux-rtc/20250413130755.159373-1-apokusinski01@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/b265cb1d68a9ab75cd0048cd604283a152fcf633|commit]], [[https://git.kernel.org/linus/29ac4cedb00e2df366418f768c70d0e2d60fd007|commit]], [[https://git.kernel.org/linus/a3c7f7e16ea8f1c8a34227c7ea08a7e002c2608b|commit]] == Pin Controllers (pinctrl) == * Eswin eic7700 pinctrl driver [[https://lore.kernel.org/lkml/20250612104539.2011-1-luyulin@eswincomputing.com/T/|(cover)]], [[https://git.kernel.org/linus/0a11110bfc5a95ee0416f76500ba0655f62d2baa|commit]], [[https://git.kernel.org/linus/5b797bcc00ef6ac2d274406db7f6959c25af15e8|commit]] * mediatek: Add pinctrl driver for mt8189 [[https://git.kernel.org/linus/a3fe1324c3c5c292ec79bd756497c1c44ff247d2|commit]] * Add support for amlogic s7/s7d/s6 pinctrl [[https://lore.kernel.org/linux-gpio/20250527-s6-s7-pinctrl-v3-0-44f6a0451519@amlogic.com/T/|(cover)]], [[https://git.kernel.org/linus/317eb8b3d7b87c583867f752c72913e06c53c2e1|commit]], [[https://git.kernel.org/linus/cfdedf7392e16f7c077b02ec13961a1b28e4f0a7|commit]], [[https://git.kernel.org/linus/1f8e5dfddaa794c97a80b2a9952be368d8fdee6e|commit]], [[https://git.kernel.org/linus/9291207753c733dcd9f1c08749950323f7f071e8|commit]], [[https://git.kernel.org/linus/bd42a25d696e0d5ccc9e27de388d4ca9ff52f710|commit]], [[https://git.kernel.org/linus/fb183c8d7a5a90cdee953701d8a5b92642a2e917|commit]] * tps6594: Add TI TPS652G1 support [[https://lore.kernel.org/devicetree/20250703113153.2447110-1-mwalle@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/d90171bc2e5f69c038d1807e6f64fba3d1ad6bee|commit]], [[https://git.kernel.org/linus/626bb0a45584d544d84eab909795ccb355062bcc|commit]], [[https://git.kernel.org/linus/9cba6a7ebf65c603b80c0b3c7fa8c7c03f1b704c|commit]], [[https://git.kernel.org/linus/f6420de1c810e282c34de65c70e6cc6177c12394|commit]], [[https://git.kernel.org/linus/16d1a9bf36ef649b1fdb866985b4b87584491fac|commit]], [[https://git.kernel.org/linus/180a135eafa9e05657559bb04cc9eb6a86ca45f3|commit]], [[https://git.kernel.org/linus/e64ee27abfe1e9baea14b31c0a6b6bf93ac8652c|commit]], [[https://git.kernel.org/linus/b30d390812c8559c5835f8ae5f490b38488fafc8|commit]] * Add pinctrl driver for milos (sm7635) [[https://lore.kernel.org/phone-devel/20250702-sm7635-pinctrl-v2-0-c138624b9924@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/fd7dac34fda486785ce979a1d38d9760bad2b77d|commit]], [[https://git.kernel.org/linus/620d3d1025581b9f1b883452788b6f409ff04170|commit]] * qcom: add multi TLMM region option parameter [[https://git.kernel.org/linus/56ffb63749f4a1e88c282b763c458f3ed73d8c27|commit]] * Add support for pm7550 pmic [[https://lore.kernel.org/phone-devel/20250709-sm7635-pmxr2230-v2-0-09777dab0a95@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/2feab53ac467d7f274830f30c218afa6ce89e39e|commit]], [[https://git.kernel.org/linus/52e06d25bdcf8026cd1c951ff7f910e21c4afa04|commit]] * Add support for pmiv0104 pmic [[https://lore.kernel.org/phone-devel/20250709-sm7635-pmiv0104-v2-0-ebf18895edd6@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/ac6242b7ba0bedf4097846717ec366904aaab01b|commit]], [[https://git.kernel.org/linus/19dca764dbb54bf5af11311016c9d8d69c1f5131|commit]] * Add support for raspberrypi rp1 pci device using a dt overlay [[https://lore.kernel.org/lkml/cover.1748526284.git.andrea.porta@suse.com/T/|(cover)]], [[https://git.kernel.org/linus/7b746d584ab97c66a0aa8ef15da1e2aa8152e3fa|commit]], [[https://git.kernel.org/linus/c1a9d356f241f42f2e886f38250be926407069de|commit]], [[https://git.kernel.org/linus/1b2fae5b3e31d7cfcb5c1aec40948f2ca92c23f8|commit]], [[https://git.kernel.org/linus/6486341721a2cd1cbc9c08a9bc90235c0b42f25b|commit]], [[https://git.kernel.org/linus/4732f079cd19f313516047726d934fabc58e9119|commit]], [[https://git.kernel.org/linus/eed7414420283d830ab576f32a5e3e5792c6fd77|commit]], [[https://git.kernel.org/linus/49d63971f96349cdcff89d21786e3c804e7cd4c0|commit]], [[https://git.kernel.org/linus/9bb1f64be41a01ed369f3c730bcccf6e780f23cf|commit]], [[https://git.kernel.org/linus/d4c6c8f8adca26cefa771ef06427d042bddef9e5|commit]], [[https://git.kernel.org/linus/fbf4ca37cdfc7962732bd4d48c05fca56244f8e2|commit]], [[https://git.kernel.org/linus/67cb34423ab829266e22d29175b1226524463740|commit]], [[https://git.kernel.org/linus/44bba869d25985eb2212beaa4e353f6aa476dbf0|commit]], [[https://git.kernel.org/linus/4a525d5d3150a3e387cb841f927f07eb4a98c368|commit]] * rp1: Implement !RaspberryPi RP1 pinmux/pinconf support [[https://git.kernel.org/linus/e3ce7b897388339b407d57969acaa26063e38209|commit]] * stm32: add irq affinity, RIF, module support [[https://lore.kernel.org/lkml/20250610143042.295376-1-antonio.borneo@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/9b71efc450fdd2f70d59917025da34f8b0e81135|commit]], [[https://git.kernel.org/linus/4c5cc2f65386e22166ce006efe515c667aa075e4|commit]], [[https://git.kernel.org/linus/d6c8fceb33d9cc983a5d050f9c3714fe15a51279|commit]], [[https://git.kernel.org/linus/dba0aff2b89bd106601ed88dfda44fdd3218eb53|commit]], [[https://git.kernel.org/linus/da5b24fbf4b8aac24c20bb948e51850ae9426c87|commit]] * Introduce hdp support for stm32mp platforms [[https://lore.kernel.org/linux-kernel/20250711-hdp-upstream-v7-0-faeecf7aaee1@foss.st.com/T/|(cover)]], [[https://git.kernel.org/linus/912275c325f47dfa6a247fb845f0265e7dfa6ebd|commit]], [[https://git.kernel.org/linus/8eabf5ddbb08c2261de839a97c4257b79a15f60f|commit]], [[https://git.kernel.org/linus/ebbe8bfe07f0c7c09276c12bfd65c8fd9941b06a|commit]] == Multi Media Card (MMC) == * Introduce the loongson-2k mmc host controller driver [[https://lore.kernel.org/devicetree/cover.1750765495.git.zhoubinbin@loongson.cn/T/|(cover)]], [[https://git.kernel.org/linus/fe62ee33fcf9248530b4339a8cf9ec4c6147d3b4|commit]], [[https://git.kernel.org/linus/2115772014bdac368317e997ed15016cf2792665|commit]], [[https://git.kernel.org/linus/96e72886a41623ed1ee189f46edb12cee66fab9e|commit]], [[https://git.kernel.org/linus/d0f8e961deae82e077d7f2ced1a20106605cf4e9|commit]] * Add cadence MMC/SDHCI driver [[https://git.kernel.org/linus/f973fe6528335033d12efe49815f6bfa63bfd666|commit]] == Memory Technology Devices (MTD) == * Add driver for intel discrete graphics [[https://lore.kernel.org/linux-kernel/20250617145159.3803852-1-alexander.usyskin@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/ceb5ab3cb64637952657be23d347e1c79dd02212|commit]], [[https://git.kernel.org/linus/7234b321dd991926c4598a3eab8df0ab839cb3a6|commit]], [[https://git.kernel.org/linus/9fe53abfac0b158e2db7c516264bf11b64489384|commit]], [[https://git.kernel.org/linus/044c8be05a39d79821251d8e49fe90531e6c7108|commit]], [[https://git.kernel.org/linus/4b93f5fc3bdff9e89beb7aa7f39ca8c7e4d02924|commit]], [[https://git.kernel.org/linus/c28bfb107daca4e9ba2e567a412e885933057282|commit]], [[https://git.kernel.org/linus/87e1ebbafbea1e5e8de1f2beaf01b378149262f2|commit]], [[https://git.kernel.org/linus/a1c940cbf505e2342ebb5ea996f0acf205d6af7b|commit]] * spinand: gigadevice:Add support for GD5F1GM9 chips [[https://git.kernel.org/linus/fdfb040d0bc5963b7f107cc0711a62cd6ed1682c|commit]] * spinand: winbond: Add comment about the maximum frequency [[https://git.kernel.org/linus/fb2fae70e7e985c4acb1ad96110d8b98bb64a87c|commit]] * spinand: winbond: Enable high-speed modes on w25n0xjw [[https://git.kernel.org/linus/f1a91175faaab02a45d1ceb313a315a5bfeb5416|commit]] * spinand: winbond: Enable high-speed modes on w35n0xjw [[https://git.kernel.org/linus/535f30d997baa5e5c6a3a4024d49e1871232c72b|commit]] == Industrial I/O (iio) == * Add driver for nicera d3-323-aa pir sensor [[https://lore.kernel.org/devicetree/cover.1751636734.git.waqar.hameed@axis.com/T/|(cover)]], [[https://git.kernel.org/linus/d8cf50c28c0d2a5e4075e06f88bca2db7f26edd7|commit]], [[https://git.kernel.org/linus/f432a7f9e141635932117d9a483635ba04af229d|commit]], [[https://git.kernel.org/linus/e3d455def515af8c9305367511f410e99c750563|commit]] * adxl313: add power-save on activity/inactivity [[https://lore.kernel.org/linux-iio/20250702230819.19353-1-l.rubusch@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/ec489d91571ee85aa70f8a25f3882a6e97390ab4|commit]], [[https://git.kernel.org/linus/a1576623416a564c6561c722279c03fd0128f39d|commit]], [[https://git.kernel.org/linus/ff8093fa6ba4dd7235a7ad57d5c61b5d3bc9ad8a|commit]], [[https://git.kernel.org/linus/385eb69ee6ec1fecc475bc1e09f640e2a205c38b|commit]], [[https://git.kernel.org/linus/e3fc1cadf226eacdf44565b3f3455dfc7d8785f5|commit]], [[https://git.kernel.org/linus/554396d4b0be5cdec4654fd3456c08886aa8da3e|commit]], [[https://git.kernel.org/linus/56d080b9776185da9ffc4e001d5878681ba9456b|commit]], [[https://git.kernel.org/linus/0755fd550cde901923203dabd75e3f4de08bc9dc|commit]] * adc: Add support for AD4170 series of ADCs [[https://lore.kernel.org/linux-iio/cover.1751895245.git.marcelo.schmitt@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/1b3cee41235b9d66ae0da50c1a6e740d92c61c1b|commit]], [[https://git.kernel.org/linus/5731f2a06c0f6ba5d03fea9d588abcde8ba8f075|commit]], [[https://git.kernel.org/linus/be2cdc5cb244506dc0a9198ca184ca1c7ff88a1c|commit]], [[https://git.kernel.org/linus/cdd03d50e206cf2dba5fc0fb06faf7717c0a7bef|commit]], [[https://git.kernel.org/linus/99992f6348a136a5d8a672613d00a354969041f0|commit]], [[https://git.kernel.org/linus/a770f70b4f5b154ccb026e661b11b012e544ecc9|commit]], [[https://git.kernel.org/linus/9c1d4f4aef0a4f5f91151f9457a90d9ce02eb77e|commit]], [[https://git.kernel.org/linus/602a89566cf2b6e6db0da5c7c020e77e276369c2|commit]], [[https://git.kernel.org/linus/4e5fde6677829652c8159b713e8e3866f68af0a9|commit]], [[https://git.kernel.org/linus/c1e289a0364b4fffb91f3bbd278d623e14922d1f|commit]], [[https://git.kernel.org/linus/03223844b8f2ef98813798dfc93bf63019475d59|commit]], [[https://git.kernel.org/linus/6098df897d1355a4ae209e84de08697f4a961f38|commit]] * Add support for ad4080 adc [[https://lore.kernel.org/lkml/20250516082630.8236-1-antoniu.miclaus@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/dc38441890ec0c54d032395ea9c365a4307185fa|commit]], [[https://git.kernel.org/linus/995fd6e002b0d1ac435faed68005585906467e92|commit]], [[https://git.kernel.org/linus/5ef4cc6d2414d115cf09a6a33c3155f12e58a27d|commit]], [[https://git.kernel.org/linus/b81c5c258285d9fe7a397c76c0b1d33132cbb941|commit]], [[https://git.kernel.org/linus/8ee8009420e7b94d2335c03528f5084f41b25511|commit]], [[https://git.kernel.org/linus/d2ca659c3d1573e04a1304ecd2c8f2d485a708df|commit]], [[https://git.kernel.org/linus/569ddc41165ecc30f3376d3508d865a23e25fc99|commit]], [[https://git.kernel.org/linus/232fb5c86f1e684d67ddc14a501d8d2ea9e78e17|commit]], [[https://git.kernel.org/linus/6b31ba1811b6873c5ab899f3732304607753fe98|commit]], [[https://git.kernel.org/linus/1543572fffb3131c003f23be8b65083d6e2f611c|commit]] * Add support for ad7405/adum770x [[https://lore.kernel.org/lkml/20250605150948.3091827-1-pop.ioan-daniel@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/56e5ec2d856a311e40f26b9856eee9ec08dd8805|commit]], [[https://git.kernel.org/linus/97e6882ed1a16cd22184127abf2bc9b8202f37e0|commit]], [[https://git.kernel.org/linus/dced5bda1411bdfc291cb3ed0a03c2adfecd9a1d|commit]], [[https://git.kernel.org/linus/dbcf839432981ab4169eccf008bf189293ab749b|commit]], [[https://git.kernel.org/linus/6a533f56b020d3941da8b8d3a521fc800ffc29ea|commit]] * adc: Add ROHM BD79100G [[https://git.kernel.org/linus/c49e99fafee183d3155410353104360e0c512802|commit]], [[https://lore.kernel.org/linux-iio/7deb4b69795c298ba51c9b198bc87000ad35cc9b.1747123883.git.mazziesaccount@gmail.com/T/|(cover)]] * adc: ad7606: enable Vdrive and Vrefin power supply voltages [[https://lore.kernel.org/linux-iio/20250530-wip-bl-ad7606-reference-voltages-v2-0-d5e1ad7e6f14@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/82f4ed3a01b25ee6fc2a8a0a57b3509163c8bc57|commit]], [[https://git.kernel.org/linus/3125a5ca45f4502a230d72876257751d9124e5e6|commit]] * adc: add ad7606 calibration support [[https://lore.kernel.org/linux-iio/20250606-wip-bl-ad7606-calibration-v9-0-6e014a1f92a2@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/c86b60189f35be0657166381a6d269990cd7190a|commit]], [[https://git.kernel.org/linus/342c52dde2f031add61ddeaced9c100f88e04d09|commit]], [[https://git.kernel.org/linus/48d487dc64455641eafc6dcebeba8741999dd58d|commit]], [[https://git.kernel.org/linus/e986466a92da6a0e8acf118facfb05a6d6d4dbcf|commit]], [[https://git.kernel.org/linus/9dc4ef3a5b9f6b28f27aa29977049c84cdec4755|commit]], [[https://git.kernel.org/linus/cc2eca43091eaeaf3875ce3e8d95de763c78eccb|commit]], [[https://git.kernel.org/linus/126cbd0deb9b88754f5f67cbd4c3399c74688bdc|commit]] * adc: ad7768-1: Add features, improvements, and fixes [[https://lore.kernel.org/linux-iio/cover.1749569957.git.Jonathan.Santos@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/0dd88eaa71264a25f950fbf9052ed87bf716fb7c|commit]], [[https://git.kernel.org/linus/81d289c21e395fed9baa1238d300bb1448da6a8d|commit]], [[https://git.kernel.org/linus/1c01c449e31ef3aa59ef045986c1abfb33f80204|commit]], [[https://git.kernel.org/linus/1905e6c9ce018bd7eb9a1722ae689e9cebed24ad|commit]], [[https://git.kernel.org/linus/96b6e814afd2ac475f96e52fcf38673c3631b6df|commit]], [[https://git.kernel.org/linus/d569ae0f052e0e44db0e1d69110eba13f5060223|commit]], [[https://git.kernel.org/linus/54da2aeb7160ba11ed74776b3a3a2bd61ac673ce|commit]], [[https://git.kernel.org/linus/74790e84ffbbb69a271f9344946145457a9acb39|commit]], [[https://git.kernel.org/linus/74e16c0cd61f9d18c0613c1823ce5874515cf3f0|commit]], [[https://git.kernel.org/linus/fb1d3b24ebf5c85f4179cb045ee28715e249e1ca|commit]], [[https://git.kernel.org/linus/00a468c9312645c61ebe3c272a4cbf3dc2f82187|commit]] * adc: ad7606: enable Vdrive and Vrefin power supply voltages [[https://lore.kernel.org/linux-iio/20250530-wip-bl-ad7606-reference-voltages-v2-0-d5e1ad7e6f14@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/82f4ed3a01b25ee6fc2a8a0a57b3509163c8bc57|commit]], [[https://git.kernel.org/linus/3125a5ca45f4502a230d72876257751d9124e5e6|commit]] * Add support for wom (wake-on-motion) feature [[https://lore.kernel.org/linux-iio/20250630-losd-3-inv-icm42600-add-wom-support-v6-0-5bb0c84800d9@tdk.com/T/|(cover)]], [[https://git.kernel.org/linus/0c122c280e78150b0c666fb69db0000cdd1d7e0a|commit]], [[https://git.kernel.org/linus/50cfaa9a46c8ba42cb4a999dfc9c7baa0943cc5a|commit]], [[https://git.kernel.org/linus/7586eb9b67995b3d6824a886783dab5e80b7e8d2|commit]] * adc: ad4851: add spi 3-wire support [[https://git.kernel.org/linus/695b7c42d97b2a819b5602f16eed89d08fb45981|commit]] * cros_ec_sensors: add cros_ec_activity driver [[https://git.kernel.org/linus/c430955d0cb87fb7c6b186e457cb3beca4a9c89a|commit]] == Multi Function Devices (MFD) == * adp5585: support keymap events and drop legacy Input driver [[https://lore.kernel.org/linux-gpio/20250701-dev-adp5589-fw-v7-0-b1fcfe9e9826@analog.com/T/|(cover)]], [[https://git.kernel.org/linus/09d55a54b466d60a71573c78a99a901410ef73e0|commit]], [[https://git.kernel.org/linus/175f199085c1253d2683f583ce32b2e02cd70de1|commit]], [[https://git.kernel.org/linus/e551760164a74ac00916fad64ac2d0b1d3d714c5|commit]], [[https://git.kernel.org/linus/e6545bdb1b7681da7edb6a34bed4be5e7f41cf52|commit]], [[https://git.kernel.org/linus/e65e2b0d0f7e75c40f426e0f3e0a1bb6faff93e6|commit]], [[https://git.kernel.org/linus/1a4eabf662543c62ae1e71a26d1c8e6643c66388|commit]], [[https://git.kernel.org/linus/0190a72f28ee0995c546fd4fcf80ed25a0fc4b28|commit]], [[https://git.kernel.org/linus/7077fb501b95360c7fe35553f2bdb1ccf34edd16|commit]], [[https://git.kernel.org/linus/9f425bf713b511b1078e0fea5a88c497e13dbb64|commit]], [[https://git.kernel.org/linus/75024f97e82e63d02b0743500efb1e264a1c2dd4|commit]], [[https://git.kernel.org/linus/adf4932bc97ec9363dc5c0f8390ee5caccf0f41b|commit]], [[https://git.kernel.org/linus/47a1f759b776ec9287f675f5d4fbf60b94cc566d|commit]], [[https://git.kernel.org/linus/333812da70d5f71bf5e176f6d55a5f716301b5fc|commit]], [[https://git.kernel.org/linus/bd113a13e1fa51789f55987369b80e1d8bc19389|commit]], [[https://git.kernel.org/linus/988b28a83b658137e58123f4dafc3a1588e1cb2b|commit]], [[https://git.kernel.org/linus/19298ac01306e564b48df9aa239731cf967298d2|commit]], [[https://git.kernel.org/linus/3bdbd0858df6574b71cacaac073f117d65a36dc6|commit]], [[https://git.kernel.org/linus/4bdef655542d8ed4bf3d57ea06ff128176f4927c|commit]], [[https://git.kernel.org/linus/ce262d6d629a926c8c9a2075af3b9a270ab6c641|commit]], [[https://git.kernel.org/linus/45ee66c37f9bd8cff7718c70d84e0291d385a093|commit]] * Apple mac system management controller [[https://lore.kernel.org/linux-gpio/20250610-smc-6-15-v7-0-556cafd771d3@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/0f0a7bd04e7e00cef6da5f4955749d6f1fc27b32|commit]], [[https://git.kernel.org/linus/51bb1f6d4694cd84491847ea59eb194311b7d7f8|commit]], [[https://git.kernel.org/linus/dbad719958e162ac021716c223ba9df9071bca55|commit]], [[https://git.kernel.org/linus/ba9ae011e8373b1ff34aa4175c79288013de7fc8|commit]], [[https://git.kernel.org/linus/e038d985c9823a12cd64fa077d0c5aca2c644b67|commit]], [[https://git.kernel.org/linus/9b21051b0885912f5bb2cc9d4f95c6fca697da4d|commit]], [[https://git.kernel.org/linus/819687eb28e501d21dabd6a3f52454638a815071|commit]] * tps6594: Add TI TPS652G1 support [[https://lore.kernel.org/devicetree/20250703113153.2447110-1-mwalle@kernel.org/T/|(cover)]], [[https://git.kernel.org/linus/d90171bc2e5f69c038d1807e6f64fba3d1ad6bee|commit]], [[https://git.kernel.org/linus/626bb0a45584d544d84eab909795ccb355062bcc|commit]], [[https://git.kernel.org/linus/9cba6a7ebf65c603b80c0b3c7fa8c7c03f1b704c|commit]], [[https://git.kernel.org/linus/f6420de1c810e282c34de65c70e6cc6177c12394|commit]], [[https://git.kernel.org/linus/16d1a9bf36ef649b1fdb866985b4b87584491fac|commit]], [[https://git.kernel.org/linus/180a135eafa9e05657559bb04cc9eb6a86ca45f3|commit]], [[https://git.kernel.org/linus/e64ee27abfe1e9baea14b31c0a6b6bf93ac8652c|commit]], [[https://git.kernel.org/linus/b30d390812c8559c5835f8ae5f490b38488fafc8|commit]] == Pulse-Width Modulation (PWM) == * Add support for pwmchip devices for faster and easier userspace access [[https://lore.kernel.org/linux-pwm/20250416094316.2494767-2-u.kleine-koenig@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/e866834c8baabc33b431902beeeb0c94dfbc1024|commit]], [[https://git.kernel.org/linus/164c4ac754abaf9643815d09001cc7d81042d624|commit]], [[https://git.kernel.org/linus/d041b76ac9fb9e60e7cdb0265ed9d8b6058a88bf|commit]], [[https://git.kernel.org/linus/9c06f26ba5f5da14bcac405c7a652dcf578a785d|commit]] * argon-fan-hat: Add Argon40 Fan HAT support [[https://git.kernel.org/linus/6fdd4d8c84f36c4814ec7d499e9fb88b170669c5|commit]], [[https://git.kernel.org/linus/f6bd99a2d24ecccb560771dde13eff2d0808d897|commit]], [[https://git.kernel.org/linus/0191c80e8a288d38f3f5a17dd0bb6a3b08c6e464|commit]] * Add support for mc33xs2410 hardware [[https://lore.kernel.org/linux-pwm/20250723-mc33xs2410-hwmon-v5-0-f62aab71cd59@liebherr.com/T/|(cover)]], [[https://git.kernel.org/linus/28517c8b6275a9cd25a4974d0e4d58eaba465a67|commit]], [[https://git.kernel.org/linus/a02b105fe9f2b82cbd13b13a98c2b9ffae4a7c27|commit]] * pwm-mediatek: Add support for MT6991/MT8196 !SoCs [[https://lore.kernel.org/linux-pwm/20250623120118.109170-1-angelogioacchino.delregno@collabora.com/T/|(cover)]], [[https://git.kernel.org/linus/3bb9948921784b6c9cc2f5ed8df7bdf8ab4ffaf3|commit]], [[https://git.kernel.org/linus/d4f1e7a2fe029ec7ca2c32ec10b58a84b56d719d|commit]], [[https://git.kernel.org/linus/e47026facf73a8431a4cdb90f11918c84af98597|commit]] * pxa: Allow to enable for SpacemiT K1 SoC [[https://git.kernel.org/linus/27b5dfe4b4eaf490df6fa9d5d0bf95cd51abf563|commit]] * sophgo-sg2042: Add support for SG2044 [[https://git.kernel.org/linus/21d5daad93547c36732b6568dfb8ad88004b2d68|commit]] == Inter-Integrated Circuit (I2C + I3C) == * Add driver for the Renesas IP and support RZ/G3S+G3E [[https://git.kernel.org/linus/8acf1f3bae1ea48949458b67d68a72a95c3244a4|commit]], [[https://git.kernel.org/linus/94e611b5b9ef3a1d9ba77f41343e95155a5091d2|commit]], [[https://git.kernel.org/linus/d028219a9f1485914492bf373406f6a0e665ace2|commit]], [[https://git.kernel.org/linus/bc4a09d8e79cadccdd505f47b01903a80bc666e7|commit]], [[https://git.kernel.org/linus/0c2ce4fba48c3d3f5a2e7c8d1f9bb176969e5268|commit]], [[https://git.kernel.org/linus/5fa62d4ec49a26c5ce747d6b0c205d6b30396bbc|commit]], [[https://git.kernel.org/linus/3b661ca549b9e5bb11d0bc97ada6110aac3282d2|commit]] * Add RIIC support for RZ/T2H and RZ/N2H SoCs [[https://lore.kernel.org/linux-renesas-soc/20250625104526.101004-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/be221173ee918dff2adaf0e23b03aeea44902d5e|commit]], [[https://git.kernel.org/linus/13aa792c10ada4f8870da5ba0fb51e478eb5a45e|commit]], [[https://git.kernel.org/linus/11db6a53b2375b29fe742948d71b9b341f8944db|commit]], [[https://git.kernel.org/linus/832b2f3e3986c8ea8c24a7823ca5189746644bc4|commit]], [[https://git.kernel.org/linus/529a3ff283e7e788dd23d372aaf0820dac5822ae|commit]] == Hardware monitoring (hwmon) == * corsair-psu: add support for hx1200i series 2025 [[https://git.kernel.org/linus/6082bfe47795c9ffc250df245d94e7057489466f|commit]] * amc6821: add cooling device support [[https://lore.kernel.org/linux-hwmon/20250613-b4-amc6821-cooling-device-support-v4-0-a8fc063c55de@toradex.com/T/|(cover)]], [[https://git.kernel.org/linus/f2a32ed8691185206e080a603486730d65ffecb7|commit]], [[https://git.kernel.org/linus/b0078b2c9f54eac77e2562d83e70ace41f8397cc|commit]], [[https://git.kernel.org/linus/90cf254f88d1d5a5219c8ee122ce677a3dc2f734|commit]] * asus-ec-sensors: add proart x870e-creator wifi [[https://git.kernel.org/linus/3e538b52157b4a28b9a596210212571074d469ee|commit]] * asus-ec-sensors: add support for rog strix z490-f gaming [[https://git.kernel.org/linus/e923acf15ae48a7f0a35922120fec07795123c5a|commit]] * emc2305: Add support for PWM frequency, polarity and output [[https://git.kernel.org/linus/7114b74d99a3cd588da4ecb6011858c06f8408a1|commit]], [[https://git.kernel.org/linus/ef8b1b4eb702cdd56807c0430b511f94b2af8e66|commit]] * Improvements and ina228 support [[https://lore.kernel.org/linux-hwmon/20250718-ina228-v2-0-227feb62f709@pengutronix.de/T/|(cover)]], [[https://git.kernel.org/linus/f739365158a33549cf1827968b12a370ab75589e|commit]], [[https://git.kernel.org/linus/8aee29f743954d8fc91ecc83fbfd283a0d8f7cfd|commit]], [[https://git.kernel.org/linus/fd470f4ed80ce0807943b8d6802ca41044c73521|commit]] * Add support for raa229621 [[https://lore.kernel.org/devicetree/20250605040134.4012199-1-chiang.brian@inventec.com/T/|(cover)]], [[https://git.kernel.org/linus/588f084a00b81ed2cea2d003fc66983a66a5ea4d|commit]], [[https://git.kernel.org/linus/947809f9ee86539f40bb2802c39133b918503162|commit]] * Add tps53685 support [[https://lore.kernel.org/linux-hwmon/20250619064223.3165523-1-chiang.brian@inventec.com/T/|(cover)]], [[https://git.kernel.org/linus/a6945f39d9fe6ed301bd037de8eb1b0d6fb18aeb|commit]], [[https://git.kernel.org/linus/75ca1e5875fe3f0b9d0e8615c69f49bc2c7fb65d|commit]] * Add support for mc33xs2410 hardware [[https://lore.kernel.org/linux-pwm/20250723-mc33xs2410-hwmon-v5-0-f62aab71cd59@liebherr.com/T/|(cover)]], [[https://git.kernel.org/linus/28517c8b6275a9cd25a4974d0e4d58eaba465a67|commit]], [[https://git.kernel.org/linus/a02b105fe9f2b82cbd13b13a98c2b9ffae4a7c27|commit]] * pmbus/adp1050: Add regulator support for ltp8800 [[https://git.kernel.org/linus/e09ef2fe4ae61e35037d290696fec8236c5ae9ad|commit]] == General Purpose I/O (gpio) == * Add ti tps65214 pmic gpio support [[https://lore.kernel.org/lkml/20250722181609.1541739-1-s-ramamoorthy@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/8206650c604687687bed5898b3bdb90e5d361ed4|commit]], [[https://git.kernel.org/linus/1b6ab07c0c800ed32ce417b71b32bb1baa91b493|commit]] * pca953x: Add support for TI TCA6418 [[https://git.kernel.org/linus/453de04bf722bc939bfa2f1341eb6b3389605912|commit]], [[https://git.kernel.org/linus/6c99a046edfac782b5ec3a3a1a5f0633bed28563|commit]] == Cryptography hardware acceleration == * Caam: imx8qxp support [[https://lore.kernel.org/linux-crypto/20250611113748.2986988-1-john.ernberg@actia.se/T/|(cover)]], [[https://git.kernel.org/linus/5ffc47feddcf8eb4d8ac7b42111a02c8e8146512|commit]], [[https://git.kernel.org/linus/ac8aff0035fa58e53b39bd565ad6422a90ccdc87|commit]], [[https://git.kernel.org/linus/2df6ee328c548a804bd0ecac8b0ee254bf79db23|commit]], [[https://git.kernel.org/linus/5da259600d307f061aa34e56ded106d052a9d98a|commit]] * hisilicon/sec2: implement full backlog mode for sec [[https://git.kernel.org/linus/f0ae287c50455f7be0d8dd45a803d403c7aa4d2e|commit]] * inside-secure - remove crc32 support [[https://git.kernel.org/linus/4be6cc8222a44e3165cd41731535c8e96b5e8104|commit]] * qat * refactor and add live migration enablers for GEN6 devices [[https://git.kernel.org/linus/7ea5ea3e58b037e0751c6406cea1e048892be4de|commit]], [[https://git.kernel.org/linus/18126fdff42f6854123b3ddaf3b469a0cee80adb|commit]], [[https://git.kernel.org/linus/e9eec2916c167c7867148254a8f945401a5f6a38|commit]], [[https://git.kernel.org/linus/a47dc5d1a6e2342e7725c6c592800d49b7276b7a|commit]], [[https://git.kernel.org/linus/26abce2510980f8c4693a6a35753a94f0efd47ab|commit]] * enable decompression service for GEN6 devices [[https://git.kernel.org/linus/8f2e1a3cd78852f3a5ceef3367a0ce942928cee7|commit]] * enable power management debugfs for GEN6 devices [[https://git.kernel.org/linus/c963ff0ec45a4eef7fad8a741848af9a888a0863|commit]] * enable rate limiting feature for GEN6 devices [[https://git.kernel.org/linus/3471c899fd6be69383aa2b52c411a67c6200a762|commit]] * enable telemetry for GEN6 devices [[https://git.kernel.org/linus/c6b012a26cf9aab56bef8e09f02818c3b79cfd95|commit]] * validate service in rate limiting sysfs api [[https://git.kernel.org/linus/63fa7c4dc0ea965d0a17fdbf51e5b421f61000fe|commit]] * stm32: remove crc32 and crc32c support [[https://git.kernel.org/linus/5b019bb25fbfde0b148895a1676f4bfe7a264156|commit]] == PCI == * Add qualcomm sa8255p based firmware managed pcie root complex [[https://lore.kernel.org/linux-pci/20250616224259.3549811-1-mayank.rana@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/a60d92f6d941bd77bf3aaec724a7c95857c0165b|commit]], [[https://git.kernel.org/linus/d7c7c051e8e5f781c98310709f3feaf7e634251b|commit]], [[https://git.kernel.org/linus/7d944c0f146986a532087e15abb66a27c7890ca1|commit]] * EP: Add RC-to-EP doorbell with platform MSI controller [[https://lore.kernel.org/linux-kernel/20250710-ep-msi-v21-0-57683fc7fb25@nxp.com/T/|(cover)]], [[https://git.kernel.org/linus/9d0ca8df2451eb66a0c13a9932f348d417d9603b|commit]], [[https://git.kernel.org/linus/234b9258c6907cabbb2594ee366286d35ff056f3|commit]], [[https://git.kernel.org/linus/1c3b002c6bf684b445a7107609979bca5f21bc03|commit]], [[https://git.kernel.org/linus/eff0c286aa916221a69126a43eee7c218d6f4011|commit]], [[https://git.kernel.org/linus/eefb83790a0dda112d1755e4f5e213738d717e76|commit]], [[https://git.kernel.org/linus/b351e9c93a4fc0a1b789c0b89eeecb9d5bf564cd|commit]] * PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features [[https://git.kernel.org/linus/399444a87acdea5d21c218bc8e9b621fea1cd218|commit]] * Powernv pcie hotplug driver fixes [[https://lore.kernel.org/linux-kernel/1268570622.1359844.1752615109932.JavaMail.zimbra@raptorengineeringinc.com/T/|(cover)]], [[https://git.kernel.org/linus/80f9fc2362797538ebd4fd70a1dfa838cc2c2cdb|commit]], [[https://git.kernel.org/linus/e82b34eed04b0ddcff4548b62633467235672fd3|commit]], [[https://git.kernel.org/linus/1010b4c012b0d78dfb9d3132b49aa2ef024a07a7|commit]], [[https://git.kernel.org/linus/a2a2a6fc2469524caa713036297c542746d148dc|commit]], [[https://git.kernel.org/linus/a8f2b96ca9ee87be8091fcc2746b811c173648a0|commit]] * Support Immediate Readiness on devices without PM capabilities [[https://git.kernel.org/linus/5c0d0ee36f168f6962a710205436533be31c9a42|commit]] * dwc: Add Sophgo SG2044 PCIe controller driver in Root Complex mode [[https://git.kernel.org/linus/467d9c0348d6fd37b3d3a82e46c113ee9228d84b|commit]] * endpoint: pci-epf-vntb: allow arbitrary BAR mapping [[https://lore.kernel.org/linux-pci/20250603-pci-vntb-bar-mapping-v2-0-fc685a22ad28@baylibre.com/T/|(cover)]], [[https://git.kernel.org/linus/a079d83c4afd4896f7f29bd9e807cb382043b360|commit]], [[https://git.kernel.org/linus/e7cd58d2fdf8b3d2cb8c1d7a6d8eac2c67e5e18b|commit]] * qcom: Add support for parsing the new Root Port binding [[https://git.kernel.org/linus/a2fbecdbbb9d7706fd3ec25f0dead83a2d542943|commit]] * vmd: Add VMD Device ID Support for Panther Lake (PTL)-H/P/U [[https://git.kernel.org/linus/255c891533d89f5d7339076468a98afc947c4a73|commit]] == Clock == * Add clock drivers for milos [[https://lore.kernel.org/phone-devel/20250715-sm7635-clocks-v3-0-18f9faac4984@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/b21b5b3ae0fce4db3eab052d3e3cc17890e78523|commit]], [[https://git.kernel.org/linus/95ba6820a665c25f372a3cdc9c469bb0a86bf174|commit]], [[https://git.kernel.org/linus/88174d5d94226b0f0931f4ae97913e498f76d2a2|commit]], [[https://git.kernel.org/linus/dbb9d53b7197b6b13d0137c0ea45902ef26e2bb4|commit]], [[https://git.kernel.org/linus/f003800e2d3596770fc42bfff7de9528923dafe2|commit]], [[https://git.kernel.org/linus/63edb206a3a93f523579df7f49f2989aae4e8450|commit]], [[https://git.kernel.org/linus/f40b5217dce1832e5a270ee10f03d3d23233d720|commit]], [[https://git.kernel.org/linus/7e5368a14b8c295470ab07d2a9ad8ee9bf7187ee|commit]], [[https://git.kernel.org/linus/980d7c84461a0ae88ec915735553067c7743ba4c|commit]], [[https://git.kernel.org/linus/a4937e9741867865bb307ae9dde6ef393b68540b|commit]], [[https://git.kernel.org/linus/633a81bead863881373cf3399e26d9d10d31315e|commit]] * Add video clock controller for sm6350 [[https://lore.kernel.org/phone-devel/20250324-sm6350-videocc-v2-0-cc22386433f4@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/a0a287b4776a3e8d559383e057cca384b3255813|commit]], [[https://git.kernel.org/linus/b887afb9b2362b15c1ee5585df1fb8cf3a3384c6|commit]], [[https://git.kernel.org/linus/720b1e8f20047e072b98a0931fc3e9a545fda18f|commit]], [[https://git.kernel.org/linus/67081281bb0dffd09e5f11c991088e6ac546a4ae|commit]] * Add support for videocc, camcc, dispcc and gpucc on qualcomm qcs615 platform [[https://lore.kernel.org/linux-arm-msm/20250702-qcs615-mm-v10-clock-controllers-v11-0-9c216e1615ab@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/48d2c6dec1c46460ee7028915595d49a644e8a77|commit]], [[https://git.kernel.org/linus/8df29649903c067138180ef89f315b6f166b8732|commit]], [[https://git.kernel.org/linus/28bc422939540b37eeaa11dd9c0fb412caaaca27|commit]], [[https://git.kernel.org/linus/8b1750ea009f2774a3acd6c7bc9e61b5157101d1|commit]], [[https://git.kernel.org/linus/9b47105f5434707eab065f65e7d35c62a51179f8|commit]], [[https://git.kernel.org/linus/3590dfbdd1b3e4ceba0b7daed2a396f644c277c4|commit]], [[https://git.kernel.org/linus/f4b5b40805ab116aad57ee7042359f97d065bd70|commit]], [[https://git.kernel.org/linus/9c51c66c997cae09c12ec250a9f538c0c23d8930|commit]], [[https://git.kernel.org/linus/f6a8abe0cc16c44eda30712a8922261363d6d3ac|commit]] * qcom: Add camera clock controller support for sc8180x [[https://lore.kernel.org/linux-arm-msm/20250512-sc8180x-camcc-support-v4-0-8fb1d3265f52@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/19ac3579af14e17c56c5b8a10979c6ca4aee6e38|commit]], [[https://git.kernel.org/linus/b5975ce4615fc075b4a135b867988f654370a268|commit]], [[https://git.kernel.org/linus/691f3413baa4bcaedbb40cd64be0f5e676423830|commit]], [[https://git.kernel.org/linus/277d48b2ab1e1150993ccb233156d0916b0cebd3|commit]] * qcom: Add support to attach multiple power domains in cc probe [[https://lore.kernel.org/linux-arm-msm/20250530-videocc-pll-multi-pd-voting-v5-0-02303b3a582d@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/1a42f4d4bb92ea961c58599bac837fb8b377a296|commit]], [[https://git.kernel.org/linus/a02a8f8cb7f6f54b077a6f9eb74ccd840b472416|commit]], [[https://git.kernel.org/linus/842fa748291553d2f56410034991d0eb36b70900|commit]], [[https://git.kernel.org/linus/0f698c16358ef300ed28a608368b89a4f6a8623a|commit]], [[https://git.kernel.org/linus/c0b6627369bcfec151ccbd091f9ff1cadb1d40c1|commit]], [[https://git.kernel.org/linus/452ae64997dd1db1fe9bec2e7bd65b33338e7a6b|commit]], [[https://git.kernel.org/linus/512af5bf312efe09698de0870e99c0cec4d13e21|commit]], [[https://git.kernel.org/linus/a9dc2cc7279a1967f37192a2f954e7111bfa61b7|commit]], [[https://git.kernel.org/linus/eb65d754eb5eaeab7db87ce7e64dab27b7d156d8|commit]], [[https://git.kernel.org/linus/adb50c762f3a513a363d91722dbd8d1b4afc5f10|commit]], [[https://git.kernel.org/linus/3f8dd231e60b706fc9395edbf0186b7a0756f45d|commit]], [[https://git.kernel.org/linus/d7eddaf0ed07e79ffdfd20acb2f6f2ca53e7851b|commit]] * Add cmn pll clock controller support for ipq5424 [[https://lore.kernel.org/linux-arm-msm/20250610-qcom_ipq5424_cmnpll-v3-0-ceada8165645@quicinc.com/T/|(cover)]], [[https://git.kernel.org/linus/0c25ae62f5dc6a438b563536b5fe7fb6da3612b8|commit]], [[https://git.kernel.org/linus/a2afa4c33f0a7f7f70d54a1bc5110e326753f982|commit]], [[https://git.kernel.org/linus/758aa2d7e3c0acfe9c952a1cbe6416ec6130c2a1|commit]] * Add cmn pll clock controller support for ipq5018 [[https://lore.kernel.org/linux-arm-msm/20250516-ipq5018-cmn-pll-v4-0-389a6b30e504@outlook.com/T/|(cover)]], [[https://git.kernel.org/linus/693a723291d0634eaea24cff2f9d807f3223f204|commit]], [[https://git.kernel.org/linus/314b903c30040632db7edd187cd33003b2aee512|commit]], [[https://git.kernel.org/linus/25d12630561d8d0906f1f5eceb055da3af67c8c9|commit]], [[https://git.kernel.org/linus/758aa2d7e3c0acfe9c952a1cbe6416ec6130c2a1|commit]] * Add rpmh and tcsr clock support for milos (sm7635) [[https://lore.kernel.org/phone-devel/20250707-sm7635-clocks-misc-v2-0-b49f19055768@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/136e6393a5462502dc78c661fcf09f360c6f5d6b|commit]], [[https://git.kernel.org/linus/4901838d2be20e00711f3b2b612acd1c7c754a88|commit]], [[https://git.kernel.org/linus/5009024ad7c670066204c3153b177de20ea9d93b|commit]], [[https://git.kernel.org/linus/7181c64fdd3e10e731568b2f44c3805173bd7b9c|commit]] * Add cpg/mssr support for rz/n2h soc [[https://lore.kernel.org/linux-renesas-soc/20250617155757.149597-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/292bf6c5b8100ba4e16cd194bdc89785f6fb6f7a|commit]], [[https://git.kernel.org/linus/62ab7ac5be90392a9ac0955febab778ebf51bc0a|commit]], [[https://git.kernel.org/linus/62ab7ac5be90392a9ac0955febab778ebf51bc0a|commit]], [[https://git.kernel.org/linus/8b8ca279752e0c9ae242a110ecb513dd85e5844f|commit]] * Add initial support for renesas rz/t2h soc [[https://lore.kernel.org/linux-renesas-soc/20250523142417.2840797-1-thierry.bultel.yh@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/b19376dee3da29fe4ea1027ed2061b67efa15112|commit]], [[https://git.kernel.org/linus/3d37ca1482c36975255f29911a529f84f1bc34a9|commit]], [[https://git.kernel.org/linus/065fe720eec6e627afa24da387ff970afd9a8dcb|commit]], [[https://git.kernel.org/linus/1d26517d11de7fc9408c22429b8e75963314420d|commit]], [[https://git.kernel.org/linus/0666e3fe95ab55c295984f2f51277ec27d3f190c|commit]] * Add clock support for cmu_hsi2 [[https://lore.kernel.org/linux-samsung-soc/20250529112640.1646740-1-raghav.s@samsung.com/T/|(cover)]], [[https://git.kernel.org/linus/3d6470990bfc8600609177962a53201cb0640daa|commit]], [[https://git.kernel.org/linus/da5cb65d25f747236a003b82525eb6de5d49a2e6|commit]], [[https://git.kernel.org/linus/2d539f31ab0eb3eb3bd9491b7dcd52dec7967e15|commit]], [[https://git.kernel.org/linus/e2016763590f571cdc3912d6a7ec848d2b61e6c2|commit]] * Enable pcie multilink and usb support in cadence torrent serdes driver [[https://lore.kernel.org/linux-kernel/20250616064705.3225758-1-s-vadapalli@ti.com/T/|(cover)]], [[https://git.kernel.org/linus/240ef19ad78b12e40ec8808694a0b81e6a3a2c2d|commit]], [[https://git.kernel.org/linus/351e07e6b2ecc16ef8669713b14b6f67518c945d|commit]] * renesas: Skip monitor checks for external clocks and add clocks for GBETH [[https://lore.kernel.org/linux-renesas-soc/20250509160121.331073-1-prabhakar.mahadev-lad.rj@bp.renesas.com/T/|(cover)]], [[https://git.kernel.org/linus/899e7ede4c19c6778873ddeca312509fa5778f2c|commit]], [[https://git.kernel.org/linus/598b2a06702c12916d97640dbfb09bfdbf002c5c|commit]] == PHY ("physical layer" framework) == * cadence: Sierra: Add PCIe + USB PHY multilink configuration [[https://git.kernel.org/linus/6767df73f2d36e7d1cf0eb3c4d9469c7e9fe9824|commit]] * dt-bindings: phy: samsung,mipi-video-phy: document exynos7870 MIPI phy [[https://git.kernel.org/linus/2ac5840594b2cc2b41116f708241a2a61d9108bd|commit]] * Usb phy support for exynos990 socs [[https://lore.kernel.org/devicetree/20250515-usb-resends-may-15-v3-0-ad33a85b6cee@mentallysanemainliners.org/T/|(cover)]], [[https://git.kernel.org/linus/9f77d234c1f41e78a99f124bf6fee59dc2e3d46f|commit]], [[https://git.kernel.org/linus/385a766bed48c5bcf620061f24e864dafeca671a|commit]] * qcom: Introduce USB support for SM8750 [[https://lore.kernel.org/linux-arm-msm/20250527-sm8750_usb_master-v6-0-d58de3b41d34@oss.qualcomm.com/T/|(cover)]], [[https://git.kernel.org/linus/439cdb309c3cf630b11661872ace09e1a7c5d630|commit]], [[https://git.kernel.org/linus/1166a2ca0900beafbe5b6d1bb357bc26a87490f1|commit]], [[https://git.kernel.org/linus/c4364048baf4878c270e94aa224bb114b445704d|commit]], [[https://git.kernel.org/linus/b0d8d731b4b0fc83bb4826a2c805f4c877c98cc1|commit]], [[https://git.kernel.org/linus/9c8504861cc4102463f31fe1f5e120a6deb15c15|commit]] == EDAC (Error Detection And Correction) == * i10nm: Add Intel Granite Rapids-D support [[https://git.kernel.org/linus/9ad08c1115646533097c8a799ad046bf5127b04a|commit]] * ie31200: Add Intel Raptor Lake-HX !SoCs support [[https://git.kernel.org/linus/05a61c6cb631a13465f9d3cc875b65a21d40568a|commit]] * ie31200: Enable support for Core i5-14600 and i7-14700 [[https://git.kernel.org/linus/493f9c930e5ff72b3508755b45488d1ae2c9650e|commit]] * igen6: Add Intel Wildcat Lake !SoCs support [[https://git.kernel.org/linus/773d8bb5ba7f64ee708caecb8deb0930bc1e1cf7|commit]] * ie31200: Add Intel Bartlett Lake-S !SoCs support [[https://git.kernel.org/linus/021681830e41e9f9393d44b8779a6767a3df34bf|commit]] == DMA engines == * Add driver for Sophgo CV18XX/SG200X dmamux [[https://git.kernel.org/linus/db7d07b5add4d839df74adab9940cf9da488313f|commit]] == Various == * reset * sophgo: cv18xx: Add reset generator support [[https://lore.kernel.org/devicetree/20250617070144.1149926-1-inochiama@gmail.com/T/|(cover)]], [[https://git.kernel.org/linus/5a5c61f7ef967edac4e88a645f08b5889e824cf0|commit]], [[https://git.kernel.org/linus/811fe8ad1db9b5e2fb20c2610f35e3a364bef620|commit]], [[https://git.kernel.org/linus/f5742f67a47cc1bd44368706d41bb2657f8e487d|commit]], [[https://git.kernel.org/linus/817c89a6b5c0df6e018857e1e540d86d38779d24|commit]] * spacemit: add K1 reset support [[https://lore.kernel.org/devicetree/20250702113709.291748-1-elder@riscstar.com/T/|(cover)]], [[https://git.kernel.org/linus/25a59e813cd2ca728047f657d64f9b29480be393|commit]], [[https://git.kernel.org/linus/bf6239ddaa6a73a44cd8ea3afec5fc82ed900038|commit]], [[https://git.kernel.org/linus/988543522ebd6a9af53c288833503f0501e401b0|commit]], [[https://git.kernel.org/linus/024b84f661674dcfa1341c90ce654c485c4ab756|commit]], [[https://git.kernel.org/linus/c479d7cf06c3d65532442fa368b058e05dbba1a2|commit]], [[https://git.kernel.org/linus/2c0cf4fed0f440200833ddfc24ea02de2cdc217c|commit]] * canaan: add Kendryte K230 reset support [[https://lore.kernel.org/devicetree/20250613-k230-reset-v4-0-e5266d2be440@pigmoral.tech/T/|(cover)]], [[https://git.kernel.org/linus/3c2968fcd72c4b130894d1a2b835e18474c559e2|commit]], [[https://git.kernel.org/linus/360a7a64775944e3a784cb2e3cffb15af5f328e5|commit]] * accel/ivpu: Add inference_timeout_ms module parameter [[https://git.kernel.org/linus/8395204aeb84ef6eacbebf2c94be0ce9381d7981|commit]] * accel/ivpu: Add initial Wildcat Lake support [[https://git.kernel.org/linus/83464405063b256bc73c15a1d1d8dc902163600f|commit]] * accel/ivpu: Add turbo flag to the DRM_IVPU_CMDQ_CREATE ioctl [[https://git.kernel.org/linus/5e861a695a39263123cdc086934b7336dbe6946d|commit]] * accel/qaic: Add Reliability, Accessibility, Serviceability (RAS) [[https://git.kernel.org/linus/c11a50b170e725b1465bcc0c5645d49d44e146d4|commit]] * bus: mhi: host: pci_generic: Add Foxconn !T99W696 modem [[https://git.kernel.org/linus/0d63055e1406c545f03857db02db7e657c635ebf|commit]] * bus: mhi: host: pci_generic: Add support for EM929x and set MRU to 32768 for better performance. [[https://git.kernel.org/linus/b484fa61acea341c3c0be7ae7414071bc22a19d3|commit]] * cxl/events: Update to rev 3.2, improvements and add trace memory sparing event record [[https://lore.kernel.org/linux-cxl/20250717101817.2104-1-shiju.jose@huawei.com/T/|(cover)]], [[https://git.kernel.org/linus/1f4f8166110f037f15a89c2203ff887b98a8393a|commit]], [[https://git.kernel.org/linus/cd3b36cfc659306456d3cf3714c8856307693c01|commit]], [[https://git.kernel.org/linus/d8145bb8af5c09d27c4dde4f4030d589771594d1|commit]], [[https://git.kernel.org/linus/f10f46a0ee53420f707195fe33b7c235a1c0e48a|commit]] * Add microchip zl3073x support (part 1) [[https://lore.kernel.org/devicetree/20250704182202.1641943-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/0afcee10dda16ae2c80732eecf43b586eb0750fc|commit]], [[https://git.kernel.org/linus/9f149c5d6dbe3b9b54704a6f342958ef28392dd0|commit]], [[https://git.kernel.org/linus/c0ef1446959101d23fdf1b1bdefc6613a83dba03|commit]], [[https://git.kernel.org/linus/de9ccf2296ac323a571e442b5730ca9cc259fbf0|commit]], [[https://git.kernel.org/linus/2df8e64e01c10a4b75ea7797629f9e764a840eb0|commit]], [[https://git.kernel.org/linus/b7d907d1f84a3c51d7fcc83e30a0227cfea77172|commit]], [[https://git.kernel.org/linus/a99a9f0ebdaaae14fe1d69d046633bce6110d0c2|commit]], [[https://git.kernel.org/linus/75a71ecc24125f92eaed45f0b9bd90373f73ec6f|commit]], [[https://git.kernel.org/linus/9686c8b0167605232fc777a14907089e092a23e6|commit]], [[https://git.kernel.org/linus/12ba92f0a6defd60cb0c518c69fce19d7d27660d|commit]], [[https://git.kernel.org/linus/bf33c93c1a160301a577d098c700411545e9a0c2|commit]], [[https://git.kernel.org/linus/ce26d7ca50a5298e025a92190b697de4903cea77|commit]] * Add all inputs phase offset monitor [[https://lore.kernel.org/netdev/20250612152835.1703397-1-arkadiusz.kubalewski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/c035e736038045b411cb368e63f07bc2f5dbc0e1|commit]], [[https://git.kernel.org/linus/2952daf44a84670a6aa9e13edbc105bdab83ccba|commit]], [[https://git.kernel.org/linus/863c7e5059363a37dba19df78a37fb0960b331fa|commit]] * Add reference sync feature [[https://lore.kernel.org/netdev/20250626135219.1769350-1-arkadiusz.kubalewski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7f15ee35972dd3dee37704bfd0f136290f6d63d9|commit]], [[https://git.kernel.org/linus/58256a26bfb37a94738dd65618b1f31f460f8d91|commit]], [[https://git.kernel.org/linus/5bcea241335b82b0c54df65b5829e9b0f37e4237|commit]] * zl3073x: Add misc features [[https://lore.kernel.org/netdev/20250715144633.149156-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/634ca2cb06d2117020908cdf7ca8556a92801fee|commit]], [[https://git.kernel.org/linus/86ed4cd5fc0d4388cc083bee7ded8d9894a56b69|commit]], [[https://git.kernel.org/linus/b7dbde2b82cc9523227c4f8ae5aa79b70ba36e22|commit]], [[https://git.kernel.org/linus/6287262f761e5a75c6316a7fd101abafd7a1d033|commit]], [[https://git.kernel.org/linus/904c99ea36bb7d0333b4e0cc5e9e835c51e99316|commit]] * Add interconnect driver for milos [[https://lore.kernel.org/phone-devel/20250709-sm7635-icc-v3-0-c446203c3b3a@fairphone.com/T/|(cover)]], [[https://git.kernel.org/linus/0f29e33fbadd7517b96f3f3e86220215d99875cb|commit]], [[https://git.kernel.org/linus/4781dbbfa5fee0e24856ee1f35275f64c5619fd7|commit]] * Add support for bcm74110 [[https://lore.kernel.org/devicetree/20250602222311.2940850-1-justin.chen@broadcom.com/T/|(cover)]], [[https://git.kernel.org/linus/dfa477b6e674d51f87b342f1d31d9316e44d67d3|commit]], [[https://git.kernel.org/linus/dfa477b6e674d51f87b342f1d31d9316e44d67d3|commit]] * Add mailbox driver for ast2700 series [[https://lore.kernel.org/lkml/20250722013117.2561025-1-jammy_huang@aspeedtech.com/T/|(cover)]], [[https://git.kernel.org/linus/7d33dd2d0e6825d4d2a61d06ae609dce17b56a3a|commit]], [[https://git.kernel.org/linus/ae524eb766460a9f7957bf2db0968c9cccb71d90|commit]] * memory: mtk-smi: Add ostd setting for mt8186 [[https://git.kernel.org/linus/e18c3f5cbd0243c60777f7a3a02e4506f5196c31|commit]] * misc: tps6594-pfsm: Add TI TPS652G1 PMIC PFSM [[https://git.kernel.org/linus/9cba6a7ebf65c603b80c0b3c7fa8c7c03f1b704c|commit]] * Add microchip zl3073x support (part 1) [[https://lore.kernel.org/devicetree/20250704182202.1641943-1-ivecera@redhat.com/T/|(cover)]], [[https://git.kernel.org/linus/0afcee10dda16ae2c80732eecf43b586eb0750fc|commit]], [[https://git.kernel.org/linus/9f149c5d6dbe3b9b54704a6f342958ef28392dd0|commit]], [[https://git.kernel.org/linus/c0ef1446959101d23fdf1b1bdefc6613a83dba03|commit]], [[https://git.kernel.org/linus/de9ccf2296ac323a571e442b5730ca9cc259fbf0|commit]], [[https://git.kernel.org/linus/2df8e64e01c10a4b75ea7797629f9e764a840eb0|commit]], [[https://git.kernel.org/linus/b7d907d1f84a3c51d7fcc83e30a0227cfea77172|commit]], [[https://git.kernel.org/linus/a99a9f0ebdaaae14fe1d69d046633bce6110d0c2|commit]], [[https://git.kernel.org/linus/75a71ecc24125f92eaed45f0b9bd90373f73ec6f|commit]], [[https://git.kernel.org/linus/9686c8b0167605232fc777a14907089e092a23e6|commit]], [[https://git.kernel.org/linus/12ba92f0a6defd60cb0c518c69fce19d7d27660d|commit]], [[https://git.kernel.org/linus/bf33c93c1a160301a577d098c700411545e9a0c2|commit]], [[https://git.kernel.org/linus/ce26d7ca50a5298e025a92190b697de4903cea77|commit]] * dpll: Add reference sync feature [[https://lore.kernel.org/netdev/20250626135219.1769350-1-arkadiusz.kubalewski@intel.com/T/|(cover)]], [[https://git.kernel.org/linus/7f15ee35972dd3dee37704bfd0f136290f6d63d9|commit]], [[https://git.kernel.org/linus/58256a26bfb37a94738dd65618b1f31f460f8d91|commit]], [[https://git.kernel.org/linus/5bcea241335b82b0c54df65b5829e9b0f37e4237|commit]] * bus: mhi: host: pci_generic: Add Telit FN990B40 modem support [[https://git.kernel.org/linus/00559ba3ae740e7544b48fb509b2b97f56615892|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/f92b71ffca8c7e45e194aecc85e31bd11582f4d2|btrfs updates]] * [[https://git.kernel.org/torvalds/c/a11b4fa602ed3b744aa075f34bee82c12aa3553a|ntfs3 updates]] * [[https://git.kernel.org/torvalds/c/76a9701325d39d8602695b19c49a9d0828c897ca|erofs updates]] * [[https://git.kernel.org/torvalds/c/f3f5edc5e41e038cf66d124a4cbacf6ff0983513|xfs updates]] * [[https://git.kernel.org/torvalds/c/a90f1b6ad6649d553c9d76f50a42e4ba5783164b|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/ce3f5bb7504ca802efa710280a4601a06545bd2e|nfsd updates]] * [[https://git.kernel.org/torvalds/c/126e5754e942b1a007246561fc61b745747cedcd|asm/param cleanup]] * [[https://git.kernel.org/torvalds/c/11fe69fbd56f63ad0749303d2e014ef1c17142a6|dentry d_flags updates]] * [[https://git.kernel.org/torvalds/c/1959e18cc0b842c53836265548e99be8694a11a7|simple_recursive_removal() update]] * [[https://git.kernel.org/torvalds/c/ddf52f12ef500d9f2a5e325e0c86449f594abb25|rpc_pipefs updates]] * [[https://git.kernel.org/torvalds/c/8297b790c65d17544d8298cb81a46f67348c6267|securityfs updates]] * [[https://git.kernel.org/torvalds/c/2d9c1336edc7d8f8e058822e02c0ce4d126a298e|misc VFS updates]] * [[https://git.kernel.org/torvalds/c/815d3c16280ce289c558255acc4296b36383d1a4|ceph dentry->d_name fixes]] * [[https://git.kernel.org/torvalds/c/953e117bf4aad7e1d01419d4bcc03ab93420387c|CLASS(fd) update]] * [[https://git.kernel.org/torvalds/c/794cbac9c053155754d04231b9365f91ea4ce7d2|vfs mount updates]] * [[https://git.kernel.org/torvalds/c/7879d7aff0ffd969fcb1a59e3f87ebb353e47b7f|misc VFS updates]] * [[https://git.kernel.org/torvalds/c/117eab5c6e31815649d952f6da03f67aa247d29b|coredump updates]] * [[https://git.kernel.org/torvalds/c/934600daa7bcce8ad6d5efe05cce4811c8d2f464|overlayfs updates]] * [[https://git.kernel.org/torvalds/c/f70d24c230bcaa1e95f66252133068a98c895200|namespace updates]] * [[https://git.kernel.org/torvalds/c/0c4ec4a339b435381bc998f74862bd7a23d33f79|async directory updates]] * [[https://git.kernel.org/torvalds/c/278c7d9b5e0ca73a75e5151c22fb05c91cb4495f|fallocate updates]] * [[https://git.kernel.org/torvalds/c/7031769e102b768b3fa0c4c726faf532cb31e973|mmap_prepare updates]] * [[https://git.kernel.org/torvalds/c/672dcda246071e1940eab8bb5a03d04ea026f46e|pidfs updates]] * [[https://git.kernel.org/torvalds/c/7e7bc8335b1486e5b157e844c248925a763baf16|vfs bpf updates]] * [[https://git.kernel.org/torvalds/c/add07519ea6b6c2ba2b7842225eb87e0f08f2b0f|vfs rust updates]] * [[https://git.kernel.org/torvalds/c/cec40a7c80e8b0ef03667708ea2660bc1a99b464|vfs 'protection info' updates]] * [[https://git.kernel.org/torvalds/c/57fcb7d930d8f00f383e995aeebdcd2b416a187a|fileattr updates]] * [[https://git.kernel.org/torvalds/c/0965549d6f5f23e9250cd9c642f4ea5fd682eddb|superblock callback update]] * [[https://git.kernel.org/torvalds/c/b5d760d53ac2e36825fbbb8d1f54ad9ce6138f7b|vfs iomap updates]] * [[https://git.kernel.org/torvalds/c/c7bfaff47a17ec01d9d8b648a7266103cb7a305b|udf and ext2 updates]] * [[https://git.kernel.org/torvalds/c/cb6bbff7e6fb263dd739514b3f5dfdcd8eaa9836|hfs/hfsplus updates]] * [[https://git.kernel.org/torvalds/c/e5cf61fa6e2fb9ae6339eaa892612488c966baaf|smb server updates]] * [[https://git.kernel.org/torvalds/c/c3018a2c6adae9b32f7b9259f5b38257ba9a758e|io_uring updates]] * [[https://git.kernel.org/torvalds/c/6e11664f148454a127dd89e8698c3e3e80e5f62f|block updates]] * [[https://git.kernel.org/torvalds/c/e268c230c0e9f00680c929389324cf45acf76599|zonefs update]] * [[https://git.kernel.org/torvalds/c/ced1b9e0392d981a7317c605b402c06650947a34|ata updates]] * [[https://git.kernel.org/torvalds/c/d900c4ce638d707f09c7e5c2afa71e035c0bb33d|execve updates]] * [[https://git.kernel.org/torvalds/c/8e736a2eeaf261213b4557778e015699da1e1c8c|hardening updates]] * [[https://git.kernel.org/torvalds/c/a578dd095dfe8b56c167201d9aea43e47d27f807|CRC updates]] * [[https://git.kernel.org/torvalds/c/13150742b09e720fdf021de14cd2b98b37415a89|crypto library updates]] * [[https://git.kernel.org/torvalds/c/f2f573ebd42d659111bc71279cc16e5e78e56ae7|crypto library test updates]] * [[https://git.kernel.org/torvalds/c/4b65b859f55b036649a4525f09fa7c5bbbab384e|crypto library conversions]] * [[https://git.kernel.org/torvalds/c/283564a43383d6f26a55546fe9ae345b5fa95e66|fscrypt updates]] * [[https://git.kernel.org/torvalds/c/4d40b59d8b0568769d10ac9b2a97e0af0a39d371|tpm updates]] * [[https://git.kernel.org/torvalds/c/30b9dcae9815ae7e752fe3aa00aa283fadf16c6a|lsm updates]] * [[https://git.kernel.org/torvalds/c/dffb641bea1d0c5a4017771aafb39513701095be|selinux updates]] * [[https://git.kernel.org/torvalds/c/e833f7dfe3c9a6a254c56f2b92a78bab6128622a|audit update]] * [[https://git.kernel.org/torvalds/c/ae388edd4a8f0226f3ef7b102c34f78220756c3d|landlock update]] * [[https://git.kernel.org/torvalds/c/53edfecef66bfa65882ae065ed1a52f466c88979|power management updates]] * [[https://git.kernel.org/torvalds/c/9bbf8e17d8521211c5c5516ed5ec78d7581aacff|ACPI updates]] * [[https://git.kernel.org/torvalds/c/e30fc090828e5761defe345b7bfb61bfc46be5bd|thermal control updates]] * [[https://git.kernel.org/torvalds/c/177bf8620cf4ed290ee170a6c5966adc0924b336|sound updates]] * [[https://git.kernel.org/torvalds/c/fcb117e0758d1462128a50c5788555e03b48833b|gpio updates]] * [[https://git.kernel.org/torvalds/c/ffec878fa5fba8c527cbbb006b0522ae0d6599ce|power sequencing updates]] * [[https://git.kernel.org/torvalds/c/5339a2aefc35c81526dc9a26419d34e8b041f0e6|regmap updates]] * [[https://git.kernel.org/torvalds/c/bf977a9ad33d204c8ca646cef83184eb364820ff|regulator updates]] * [[https://git.kernel.org/torvalds/c/0262163136de813894cb172aa8ccf762b92e5fd7|spi updates]] * [[https://git.kernel.org/torvalds/c/f38b7512903a50eaeb300e9c8d9448187dd3959c|pwm updates]] * [[https://git.kernel.org/torvalds/c/9669b2499ea377764f8320dd562dd6cd4ea80a5d|x86 platform drivers]] * [[https://git.kernel.org/torvalds/c/86aa721820952b793a12fc6e5a01734186c0c238|chrome platform updates]] * [[https://git.kernel.org/torvalds/c/0d5ec7919f3747193f051036b2301734a4b5e1d6|char / misc / IIO / other driver updates]] * [[https://git.kernel.org/torvalds/c/1641684528815bb7e85737d5d2bceb551c55d5a8|staging updates]] * [[https://git.kernel.org/torvalds/c/91e60731dd605c5d6bab8b9ccac886da1780d5ca|tty / serial driver updates]] * [[https://git.kernel.org/torvalds/c/4eee1520ea845a6d6d82e85498d9412419560871|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/137177af71cf24a71a9854a5a5efbad6e0c5c5ac|LICENSES update]] * [[https://git.kernel.org/torvalds/c/69f2970aad93758bea863432e49b564e0ba649ca|devicetree updates]] * [[https://git.kernel.org/torvalds/c/115e74a29b530d121891238e9551c4bcdf7b04b5|SoC devicetree updates]] * [[https://git.kernel.org/torvalds/c/0f46f50845ce75bfaba62df0421084d23bb6a72f|SoC driver updates]] * [[https://git.kernel.org/torvalds/c/4df9c0a2465a523e399e46a8d3b5866c769b381b|new SoC support]] * [[https://git.kernel.org/torvalds/c/4c10d2221122a62f7c181f0c433bc43bfd6f5d3d|SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/0919a5b3b11c699d23bc528df5709f2e3213f6a9|ARM SoC code updates]] * [[https://git.kernel.org/torvalds/c/0ae982df67760cd08affa935c0fe86c8a9311797|i2c updates]] * [[https://git.kernel.org/torvalds/c/fc8f5028eb0cc5aee0501a99f59a04f748fbff1c|pmdomain updates]] * [[https://git.kernel.org/torvalds/c/854ff7923753009189a9e1f80d23ae9d407c2fb2|MMC updates]] * [[https://git.kernel.org/torvalds/c/22c5696e3fe029f4fc2decbe7cc6663b5d281223|driver core updates]] * [[https://git.kernel.org/torvalds/c/6f46e6fb4e267acf8741cb2c29d368b4de7b6c15|kunit updates]] * [[https://git.kernel.org/torvalds/c/0db240bc077fd16cc16bcecfd7f4645bc474aa7e|kselftest updates]] * [[https://git.kernel.org/torvalds/c/5623870d9b4f1b9bd4a8b75544f2f9ed2a49afff|MSI update]] * [[https://git.kernel.org/torvalds/c/dba3ec9f2ad085f05528ccd36d6835b06b5370cd|irq updates]] * [[https://git.kernel.org/torvalds/c/b34111a89f3c78baf12546bd4bc77a15dccc19c7|smp updates]] * [[https://git.kernel.org/torvalds/c/0b29600a304c0c5da17ce1a7fab7cafb0eaf71f5|interrupt chip driver updates]] * [[https://git.kernel.org/torvalds/c/99e731bcb8e6dd197aa4ab587887a3f670d12b72|timer cleanups]] * [[https://git.kernel.org/torvalds/c/d614399b281abf3980cc9b340a5066e9f4020b5d|timer core updates]] * [[https://git.kernel.org/torvalds/c/02dc9d15d7784afb42ffde0ae3d8156dd09c2ff7|timekeeping and VDSO updates]] * [[https://git.kernel.org/torvalds/c/f38b1f243ec3babea9d8d9c6240249589853aca2|futex updates]] * [[https://git.kernel.org/torvalds/c/a0482e3446cea426bf16571e0000423ed5b25af0|VDSO selftest updates]] * [[https://git.kernel.org/torvalds/c/78bb43e51b94828b333ab296eabf893d5b439fc2|generic entry code updates]] * [[https://git.kernel.org/torvalds/c/b1c21075d30c40762750be0cded9822791df422b|nolibc updates]] * [[https://git.kernel.org/torvalds/c/93942645c44f1ed4e834d162ae5ad9fb7ef07213|lkmm documentation update]] * [[https://git.kernel.org/torvalds/c/0561bd5692d12d0c52e149e5922e32321f25981d|ratelimit test updates]] * [[https://git.kernel.org/torvalds/c/909d2bb07dc0e08ea81841f7c901f0f16f965f0e|stop-machine documentation updates]] * [[https://git.kernel.org/torvalds/c/d7223aed30cd77be31dabd635e709828f3255366|EDAC updates]] * [[https://git.kernel.org/torvalds/c/04d29e3609b62896b94b60250d475f8f7c15db98|x86 CPU mitigation updates]] * [[https://git.kernel.org/torvalds/c/bb78c145f7f08fda40bcec397939b01be4366c51|x86 cpu updates]] * [[https://git.kernel.org/torvalds/c/01fce21e1a890462ba1f37b577fc96c10753c608|x86 microcode loader update]] * [[https://git.kernel.org/torvalds/c/14bed9bc81bae64db98349319f367bfc7dab0afd|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/bf76f23aa1c178e9115eba17f699fa726aed669b|scheduler updates]] * [[https://git.kernel.org/torvalds/c/bcb48dd3b344592cc33732de640b99264c073df1|x86 performance events updates]] * [[https://git.kernel.org/torvalds/c/72b8944f147e151e845d976e7f48beff38967499|locking updates]] * [[https://git.kernel.org/torvalds/c/56d5e32929ee8e772922242f37cc234c437c89c0|x86 boot updates]] * [[https://git.kernel.org/torvalds/c/1645f6ab966b828bc160c23626d071914debfa79|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/4dd39ddeb68fbb6d068611f2cc647948dc7dfca0|x86 cpu update]] * [[https://git.kernel.org/torvalds/c/0c23929f358c949f6254c46883afc2bba415d36e|x86 FPU updates]] * [[https://git.kernel.org/torvalds/c/e12ac84acc722f06e8b1be66fbb138c5934aaf54|x86 kconfig updates]] * [[https://git.kernel.org/torvalds/c/98e8f2c0e0930feee6a2538450c74d9d7de0a9cc|x86 platform updates]] * [[https://git.kernel.org/torvalds/c/bc46b7cbc58c4cb562b6a45a1fbc7b8e7b23df58|s390 updates]] * [[https://git.kernel.org/torvalds/c/3bb38c52719baa7f9cdbf200016ed481b4498290|m68k updates]] * [[https://git.kernel.org/torvalds/c/6fb44438a5e1897a72dd11139274735256be8069|arm64 updates]] * [[https://git.kernel.org/torvalds/c/5f5c9952b33cb4e8d25c70ef29f7a45cd26b6a9b|powerpc updates]] * [[https://git.kernel.org/torvalds/c/beb6c8326eb4e7006c4aa16b0fee3e303d42e685|uml updates]] * [[https://git.kernel.org/torvalds/c/4b290aae788e06561754b28c6842e4080957d3f7|sysctl updates]] * [[https://git.kernel.org/torvalds/c/8be4d31cb8aaeea27bde4b7ddb26e28a89062ebf|networking updates]] * [[https://git.kernel.org/torvalds/c/d9104cec3e8fe4b458b74709853231385779001f|bpf updates]] * [[https://git.kernel.org/torvalds/c/53564f400572b1b8d9ee5bafb9c226eb1d38600a|iommu updates]] * [[https://git.kernel.org/torvalds/c/7dff275c663178e9a12a0c0038e4b3be2f3edcba|Kernel Concurrency Sanitizer (KCSAN) update]] * [[https://git.kernel.org/torvalds/c/2db4df0c09eeb209726261f43fc556360b38ec99|RCU updates]] * [[https://git.kernel.org/torvalds/c/e8d780dcd957d80725ad5dd00bab53b856429bc0|slab updates]] * [[https://git.kernel.org/torvalds/c/9bfdba946f30d5cbf2257932a53682c0ad1aeb37|bootconfig updates]] * [[https://git.kernel.org/torvalds/c/b7dbc2e813e00d61e66fc0267599441493774b93|probes updates]] * [[https://git.kernel.org/torvalds/c/2223228bb1c0608f24cf1d67d1177b0137a2f33b|ktest updates]] * [[https://git.kernel.org/torvalds/c/90a871f74b70027779a4f312c0c74b6a89e22412|ftrace updates]] * [[https://git.kernel.org/torvalds/c/d50b07d05ca53fdb6c6d1581b9084c09d4e98f54|ring-buffer updates]] * [[https://git.kernel.org/torvalds/c/4ff261e725d7376c12e745fdbe8a33cd6dbd5a83|runtime verification updates]] * [[https://git.kernel.org/torvalds/c/2be6a7503d32eb1d60b4c9c15547a10d4ec9a934|tracepoint cleanup]] * [[https://git.kernel.org/torvalds/c/7d767a9528f6d203bca5e83faf1b8f2f6af3fc07|xen updates]] * [[https://git.kernel.org/torvalds/c/63eb28bb1402891b1ad2be02a530f29a9dd7f1cd|kvm updates]] * [[https://git.kernel.org/torvalds/c/260f6f4fda93c8485c8037865c941b42b9cba5d2|drm updates]] * [[https://git.kernel.org/torvalds/c/b1cce98493a095925fb51be045ccf6e08edb4aa0|documentation updates]] * [[https://git.kernel.org/torvalds/c/b4efd62564e96d1edb99eb00dd0ff620dbd1afab|ipe update]] * [[https://git.kernel.org/torvalds/c/44a8c96edd0ee9320a1ad87afc7b10f38e55d5ec|crypto update]] * [[https://git.kernel.org/torvalds/c/ff7dcfedf9b1c34d9d06588ced4aa588b6444c59|ext4 updates]] * [[https://git.kernel.org/torvalds/c/4522ae2def5a8ed155642f947131726e427d2f05|UBI and UBIFS updates]] * [[https://git.kernel.org/torvalds/c/ac46ff0f77f1298892a4a1eeac375ed3db495704|orangefs updates]] * [[https://git.kernel.org/torvalds/c/440e6d7e1435bb1e1948eeae34ca8bef6c7c5f82|jfs updates]] * [[https://git.kernel.org/torvalds/c/d6084bb815c453de27af8071a23163a711586a6c|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/5ae8021583b4b49cd9a1fac635fbed2449b6c4d0|sh update]] * [[https://git.kernel.org/torvalds/c/f1aa129d80fddd2ae33080524bf84dea1c3528de|MIPS updates]] * [[https://git.kernel.org/torvalds/c/12ed593ee88170145fff25c7b3325b227731c2a1|capabilities update]] * [[https://git.kernel.org/torvalds/c/02523d2d93b9c825dadc0f93cf77c1622cd64a86|integrity update]] * [[https://git.kernel.org/torvalds/c/cfc6d74523efdd36f5757927ac1c75629a6d8491|GNSS update]] * [[https://git.kernel.org/torvalds/c/24e5c3241ab643b133717c34d1f4c78349774cc1|MFD updates]] * [[https://git.kernel.org/torvalds/c/831462ff3ec61fd2e6726b534a351a1a722bf2ab|LED updates]] * [[https://git.kernel.org/torvalds/c/2c8c9aae4492f813b9b9ae95f0931945a693100e|SCSI updates]] * [[https://git.kernel.org/torvalds/c/7ce4de1cdaf11c39b507008dfb5a4e59079d4e8a|rdma updates]] * [[https://git.kernel.org/torvalds/c/c93529ad4fa8d8d8cb21649e70a46991a1dda0f8|iommufd updates]] * [[https://git.kernel.org/torvalds/c/27152608dab9afe748d6b5fc3437a1831dac77c7|libnvdimm updates]] * [[https://git.kernel.org/torvalds/c/0cdee263bc5e7b20f657ea09f9272f50c568f35b|media updates]] * [[https://git.kernel.org/torvalds/c/be413ec746afc951c79d5907cf62ab6757330bdb|hwmon updates]] * [[https://git.kernel.org/torvalds/c/2d945dde7fa3f17f46349360a9f97614de9f47da|clk updates]] * [[https://git.kernel.org/torvalds/c/cbbf0a759ff96c80dfc32192a2cc427b79447f74|mtd updates]] * [[https://git.kernel.org/torvalds/c/beace86e61e465dba204a268ab3f3377153a4973|MM updates]] * [[https://git.kernel.org/torvalds/c/af5b2619a89d4f1261ddfc310ffd5d1e630f8fdc|workqueue updates]] * [[https://git.kernel.org/torvalds/c/6aee5aed2edd0a156bf060abce1bdbbc38171c10|cgroup updates]] * [[https://git.kernel.org/torvalds/c/6a68cec16b647791d448102376a7eec2820e874f|sched_ext updates]] * [[https://git.kernel.org/torvalds/c/f2d282e1dfb3d8cb95b5ccdea43f2411f27201db|bitmap updates]] * [[https://git.kernel.org/torvalds/c/db68e4c80d995b67a92460711038b9223166bda7|smb client updates]] * [[https://git.kernel.org/torvalds/c/b80a75cf6999fb79971b41eaec7af2bb4b514714|HID updates]] * [[https://git.kernel.org/torvalds/c/07b43820437bd96f31f5d7f9baf4453fcb7dedbf|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/c6439bfaabf25b736154ac5640c677da2c085db4|initial deferred unwind infrastructure]] * [[https://git.kernel.org/torvalds/c/5172a777248e56dbae22b55231d24c7ecc6393f9|tracing tools updates]] * [[https://git.kernel.org/torvalds/c/d6f38c12396397e48092ad9e8a4d7be4de51b942|tracing updates]] * [[https://git.kernel.org/torvalds/c/6fac1139d99e283ba0c7ed2d1acad9ec2807ba3a|soundwire updates]] * [[https://git.kernel.org/torvalds/c/7a64bdfaf3e641862e8088a19205692b8b229753|more sound updates]] * [[https://git.kernel.org/torvalds/c/8582976acc8504cec53a7b6fed493435eba8437f|phy updates]] * [[https://git.kernel.org/torvalds/c/196dacf4541afcbccbef9c3697231af354bbab13|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/877d94c74e4c6665d2af55c0154363b43b947e60|watchdog updates]] * [[https://git.kernel.org/torvalds/c/0bd0a41a5120f78685a132834865b0a631b9026a|PCI updates]] * [[https://git.kernel.org/torvalds/c/821c9e515db512904250e1d460109a1dc4c7ef6b|virtio updates]] * [[https://git.kernel.org/torvalds/c/111857421c93fc88924106436741bd2f5b8bc220|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/d41e5839d80043beaa63973eab602579ebdb238f|CXL updates]] * [[https://git.kernel.org/torvalds/c/0905809b38bda1fa0b206986c44d846e46f13c1d|parisc updates]] * [[https://git.kernel.org/torvalds/c/f4f346c3465949ebba80c6cc52cd8d2eeaa545fd|perf tools updates]] * [[https://git.kernel.org/torvalds/c/7061835997daba9e73c723c85bd70bc4c44aef77|firewire updates]] * [[https://git.kernel.org/torvalds/c/eacf91b0c78a7113844830ed65ebf543eb9052c5|fbdev updates]] * [[https://git.kernel.org/torvalds/c/186f3edfdd41f2ae87fc40a9ccba52a3bf930994|pin control updates]] * [[https://git.kernel.org/torvalds/c/352af6a011d586ff042db4b2d1f7421875eb8a14|Rust updates]] * [[https://git.kernel.org/torvalds/c/546b0ad6a87297a4268bc336aea57173008428e8|i3c updates]] * [[https://git.kernel.org/torvalds/c/8877fcb70fd7ae0a4d5ac73d250dc255f7ff5a2c|module updates]] * [[https://git.kernel.org/torvalds/c/3c4a063b1f8ab71352df1421d9668521acb63cd9|more tracing updates]] * [[https://git.kernel.org/torvalds/c/e991acf1bce7a428794514cbbe216973c9c0a3c8|non-MM updates]] * [[https://git.kernel.org/torvalds/c/d2eedaa3909be9102d648a4a0a50ccf64f96c54f|RTC updates]] * [[https://git.kernel.org/torvalds/c/8b45c6c90af6702b2ad716e148b8bcd5231a8070|apparmor updates]] * [[https://git.kernel.org/torvalds/c/69917dbfb67e5e7869b67425e2c799aea4d00874|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/d632ab86aff2cef21f794e337a8e7f2320ac3973|device mapper updates]] * [[https://git.kernel.org/torvalds/c/35a813e010b99894bb4706c56c16a580bf7959c2|printk updates]] * [[https://git.kernel.org/torvalds/c/0974f486f3dde9df1ad979d4ff341dc9c2d545f5|f2fs updates]] * [[https://git.kernel.org/torvalds/c/7e161a991ea71e6ec526abc8f40c6852ebe3d946|more i2c updates]] * [[https://git.kernel.org/torvalds/c/da23ea194db94257123f1534d487f3cdc9b5626d|more MM updates]] * [[https://git.kernel.org/torvalds/c/5998f2bca43e071e9c5a26cc7e7e00f9a78791c4|exfat updates]] * [[https://git.kernel.org/torvalds/c/6bcdbd62bd56e6d7383f9e06d9d148935b3c9b73|ARM update]] * [[https://git.kernel.org/torvalds/c/a530a36bb548bbd441402b736f17339183ff53fd|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/d7edcc7c9109f165efcf5d767fed21578c37c46c|more SCSI updates]] * [[https://git.kernel.org/torvalds/c/e8214ed59b75fa794126686370a5e47cb7da5b12|VFIO updates]] * [[https://git.kernel.org/torvalds/c/d244f9bb591eb914901a84c79d51975c02f81ea5|ipmi updates]] * [[https://git.kernel.org/torvalds/c/6e64f4580381e32c06ee146ca807c555b8f73e24|input updates]] * [[https://git.kernel.org/torvalds/c/83affacd18cc225f538e532c6e667d26b3ec69fd|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/bec077162bd0017c21288919757809656094a157|more s390 updates]] * [[https://git.kernel.org/torvalds/c/cfaf773b7946fa911e311acd3b82d61c7a9e42c2|more smb client updates]] * [[https://git.kernel.org/torvalds/c/ccc1ead23c3311be76e87d1b06620f6cb697b42a|NFS client updates]] * [[https://git.kernel.org/torvalds/c/09aae3ecf8f10c60e2ba43ee97f4d6364d8dd2fe|xtensa update]] * [[https://git.kernel.org/torvalds/c/0227b49b50276657243e54f5609e65c4f0eaaf4d|gpio updates]] * [[https://git.kernel.org/torvalds/c/b20b8538b310f5458bd7a08b7ff8a76cc3c28d24|mailbox updates]] * [[https://git.kernel.org/torvalds/c/2988dfed8a5dc752921a5790b81c06e781af51ce|more block updates]] * [[https://git.kernel.org/torvalds/c/402e262d77cd8b075a56809e30e6903ef648ad1a|EFI updates]] * [[https://git.kernel.org/torvalds/c/2b38afce25c4e1b8f943ff4f0a2b51d6c40f2ed2|turbostat updates]] = Other news sites = * LWN merge window [[https://lwn.net/Articles/1031713/|part 1]], [[https://lwn.net/Articles/1032095/|part 2]] * Phoronix [[https://www.phoronix.com/review/linux-617-features|Linux 6.17 Features: Great Intel Graphics Improvements, AMD HFI, Attack Vector Controls + Lenovo Gaming Drivers]]