42078
Comment:
|
311316
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
Linux 6.3 changelog. | Linux 6.3 [[https://lore.kernel.org/lkml/CAHk-=wg02PoScxDO0wwD5EkFpx50DF1c2TxXqyAnzGjdFf71jw@mail.gmail.com/|was released]] on Sunday, 23 Apr 2023. Summary: This release includes improved Btrfs performance and fragmentation improvements, support for non-executable memfds, support for IPv4 Big TCP, new ids to the rseq system call, support AMD QoS new features, specifications for the netlink protocol, more secure NFS encryption, and multi-actuator support in the BFQ I/O sched. As always, there are many other features, new drivers, improvements and fixes. <<TableOfContents()>> = Prominent features = == Btrfs performance and fragmentation improvements == This release places a number of heuristics in the block allocator to place files with different fragmentation characteristics together and separated from other types. This can help to avoid fragmentation in some cases, in particular this may help during balance. There are also a few notable performance improvements: the send functionality now caches caches directory utimes and only emit the command when necessary, which can speed up send up to 10x. The fiemap ioctl can be now up to 3x faster when extents are shared, and there are some microoptimizations that can speed up file creation in synthetic benchmarks up to 10%. == eBPF support for HID devices, and other BPF enhancements As usual, this release includes a number of enhancements, like a rbtree data structure that follows the recently-added linked-list. Because of previous limitation, BPF users had to use the BPF map structures (hash, array) for data structures that don't fit well in these structures. With the introduction of kfuncs, kptrs, and the any-context BPF allocator, it is now possible to implement this rbtree data structure that can expose red-black tree structures inside the kernel more naturally. This release also includes a somewhat exotic use of BPF: using eBPF programs as a way to add small features and tweaks to existing Input HID drivers. For example, as joystick gets older, it is common to see it wobbling around its neutral point. This is usually filtered at the application level by adding a dead zone for this specific axis. With HID-BPF, it is possible to add a filter in the kernel directly so userspace does not get woken up when nothing else is happening on the input controller. Another use would be to add a feature that requires a new kernel API, morph a device into something else and control that from userspace, or prevent users from accessing a feature (eg. broken firmware feature), or simply tracing HID events. Recommended LWN article: [[|https://lwn.net/Articles/909109/BPF for HID drivers]] == Non-executable memfds == memfds (which are file descriptors that just refer to an area of anonymous process memory, instead of a file system). This release adds some flags to allow disabling the executability of these files, and it's also possible to seal them. Recommended LWN article: [[https://lwn.net/Articles/918106/|Enabling non-executable memfds]] == Support IPv4 big TCP (TSO frames larger than 64kB) == This is an IPv4 implementation of BIG TCP, which allow biggers TSO/GRO packet sizes for IPv4 traffic. Reducing number of packets traversing networking stack usually improves performance. This is similar to the IPv6 BIG TCP feature but for the v4 family. Recommended LWN article: [[https://lwn.net/Articles/884104/|Going big with TCP packets]] == Add new ids to the rseq system call for faster and more efficient memory allocators == The rseq(2) system call (alias for "restartable sequences") was added [[https://kernelnewbies.org/Linux_4.18#Restartable_sequences_for_easier_lockless_concurrency_in_user_space|in Linux 4.18]] to provide a safe way to do concurrency updates without using locks or atomic instructions. But it also provided a method for a thread to get the CPU id number where it runs, in a way that is faster than getcpu(2). This release extends the rseq(2) system call to also expose other identification numbers that provide some heavy-lifting needed by eg. memory allocators to allow them to use per-cpu data structures more efficiently: * NUMA node id: This allows to gather the NUMA node id more efficiently than getcpu(2), which allows memory allocators such as tcmalloc to take advantage of this fast access to perform NUMA-aware memory allocation. It can also be useful for implementing fast-paths for NUMA-aware user-space mutexes, and even allows implementing getcpu(2) purely in user-space. * Per-memory map concurrency ID. This concurrency ID is within the possible cpus range, and is temporarily (and uniquely) assigned to a memory map while threads are actively running within it. If a memory map has fewer threads than cores, or is limited to run on few cores concurrently through sched affinity or cgroup cpusets, the concurrency IDs will be values close to 0, thus allowing efficient use of user-space memory for per-cpu data structures. * NUMA-aware concurrency id: It is similar to the concurrency ID, except that it provides the NUMA node ids with which each concurrency id has been associated, and it is guaranteed to never change NUMA node unless a kernel-level NUMA configuration change happens. This makes possible to create per-cpu structures in environments where a process or a set of processes belonging to cpuset are pinned to a set of cores which belong to a subset of the system's NUMA nodes. In those situations, it is possible to benefit from the compactness of concurrency IDs over CPU ids, while keeping NUMA locality, for indexing a per-cpu data structure which takes into account NUMA locality. == Support AMD QoS new features == Support for AMD QoS new features: Slow Memory Bandwidth Allocation (SMBA) and Bandwidth Monitoring Event Configuration (BMEC). These extensions are intended to provide for the monitoring of the usage of certain system resources by one or more processors and for the separate allocation and enforcement of use limits: 1. Slow Memory Bandwidth Allocation (SMBA): With this feature, the QOS enforcement policies can be applied to the external slow memory connected to the host. Currently, CXL.memory is the only supported "slow" memory device. 2. Bandwidth Monitoring Event Configuration (BMEC). The bandwidth monitoring events mbm_total_event and mbm_local_event are set to count all the total and local reads/writes respectively. Official site: [[https://www.amd.com/en/support/tech-docs/amd64-technology-platform-quality-service-extensions|AMD64 Technology Platform Quality of Service Extensions]] == Netlink protocol specifications == The netlink protocol is a networking protocol used to communicate user space programs with the kernel. For example, it is used to configure and gather information about wireless devices. Adding new communication endpoints require manually adding them to userspace libraries. This release adds machine readable netlink protocol descriptions in YAML. The expectation is that the spec can be used to either dynamically translate between whatever types the high level language likes. Currently only genetlink is supported. == More secure NFS encryption == This release improve/harden the security provided by the Linux kernel's RPCSEC GSS Kerberos 5 mechanism (used by NFS). This release disables DES-based enctypes by default, provides a mechanism for disabling SHA1-based enctypes, and introduces two modern AES-SHA2-based enctypes that do not use deprecated crypto algorithms. == Multi-actuator support in the BFQ I/O scheduler == Some traditional hard drives have more than one arm. In order to optimize performance, the I/O scheduler must attempt to keep both arms busy. This release adds some support for such multi-actuator drives to the BFQ I/O scheduler. = Core = * Rust * Rust support for User Mode Linux arch [[https://git.kernel.org/linus/905a77077573056d7af508f35373f66ed8b4a39e|commit]], [[https://git.kernel.org/linus/8849818679478933dd1d9718741f4daa3f4e8b86|commit]], [[https://git.kernel.org/linus/0438aadfa69a345136f5ba4f582e0f769450ee0d|commit]] * alloc: remove the `borrow` module (`ToOwned`, `Cow`) [[https://git.kernel.org/linus/8909a80e3f684fb274a171489c16e8f10c482e83|commit]] * Add `Arc` for ref-counted allocations [[https://git.kernel.org/linus//bin/sh:|commit]], [[https://git.kernel.org/linus/9dc04365500340e6d60a996333d562af747337b1|commit]] * sync: add `Arc` for ref-counted allocations [[https://git.kernel.org/linus/9dc04365500340e6d60a996333d562af747337b1|commit]] * sync: add support for dispatching on Arc and ArcBorrow [[https://git.kernel.org/linus/0748424aba89811b85e6e0f958b8ccd47f5af47e|commit]] * sync: allow coercion from `Arc<T>` to `Arc<U>` [[https://git.kernel.org/linus/f75cb6fce4c91847d3b7cf2c5fc7c8eb4bc2d8f0|commit]] * sync: allow type of `self` to be `Arc<T>` or variants [[https://git.kernel.org/linus/53528772fb5a174c8606cdf0047ac4899ce05be7|commit]] * sync: allow type of `self` to be `ArcBorrow<T>` [[https://git.kernel.org/linus/92a655ae00a2f15fdd80eb96cd23526c0d8f0bfd|commit]] * sync: introduce `ArcBorrow` [[https://git.kernel.org/linus/17f671602cc6a15e65869c387492c5753c6f3cd5|commit]] * sync: introduce `UniqueArc` [[https://git.kernel.org/linus/70e42ebbf6416e8005d8e08ae521b7d5cc5a8b3a|commit]] * types: implement `ForeignOwnable` for `Arc<T>` [[https://git.kernel.org/linus/0c7ae432576100ce3609bca0508b9fbcb686a5fe|commit]] * types: implement `ForeignOwnable` for `Box<T>` [[https://git.kernel.org/linus/26949bac1e8264c711a81f962845aa0538279c78|commit]] * types: implement `ForeignOwnable` for the unit type [[https://git.kernel.org/linus/7118594466b8ed7285adb1dc177f2c84bfa33265|commit]] * types: introduce `ForeignOwnable` [[https://git.kernel.org/linus/0fc4424d24a230c7fb539d5d708c81c68aafa9be|commit]] * types: introduce `ScopeGuard` [[https://git.kernel.org/linus/4d4692a2ff836487c17960a6211a4cce7094f09c|commit]] * nolibc: usability improvements (errno, environ, auxv) [[https://git.kernel.org/linus/7f8548589661d5edbde4c343e4971117585da2f5|commit]], [[https://git.kernel.org/linus/20470dfd656ef71145d78102b540f73a11748182|commit]], [[https://git.kernel.org/linus/5a51b6de5968885347e559d0dac8307a38005806|commit]], [[https://git.kernel.org/linus/d5b48f958b36e38ee1a9bebb522bdd86114c34ae|commit]], [[https://git.kernel.org/linus/1caa1154c3e9ad071a07c02431a700ff5df94392|commit]], [[https://git.kernel.org/linus/89dc50921c87e2b4a4612188c5a90abebc02b60d|commit]], [[https://git.kernel.org/linus/52e423f5b93e6d30fd5d311f068094b768caffb5|commit]], [[https://git.kernel.org/linus/9b8688c6eaddcdf0db600953d57beaeafaae1155|commit]], [[https://git.kernel.org/linus/a6f29a2c41f3d283e78e00dc8974e6efacaccf37|commit]], [[https://git.kernel.org/linus/8f7fafebd1da984c427d53b614e48ebecb456824|commit]], [[https://git.kernel.org/linus/758f33379569d817558a4310c47b42834b8e4e57|commit]], [[https://git.kernel.org/linus/9e5bdc613d06fdc6fed73267767c09a0dc0c6aac|commit]], [[https://git.kernel.org/linus/2ab4aa487b93d9d994b4a20382848a4041f00d78|commit]], [[https://git.kernel.org/linus/1cce162ab4a565c8a88ffac1d9f78c80e160d6a1|commit]], [[https://git.kernel.org/linus/2a39a53245d2b5eae83c10a67581e8dc6b629b85|commit]], [[https://git.kernel.org/linus/59ea1876242163da431026921070282b2d651197|commit]], [[https://git.kernel.org/linus/041fa97cb332e59311aa861fac3be178abad6a9b|commit]], [[https://git.kernel.org/linus/d01869cf1ee4ad6e02e853062eeced883b3b4504|commit]], [[https://git.kernel.org/linus/241c4b4e02f25ceab21df8a28e1ac689a477c30c|commit]], [[https://git.kernel.org/linus/c61a078015f325fe38a7371ab0b12d4444f5fba4|commit]], [[https://git.kernel.org/linus/7efd762e97c87f07b0a93e428e5ce3436715f538|commit]], [[https://git.kernel.org/linus/a290296ab8326e04a9fefd698ca9367dc72c0a87|commit]] * fw_devlink improvements [[https://git.kernel.org/linus/3a2dbc510c437ca392516b0105bad8e7970e6614|commit]], [[https://git.kernel.org/linus/411c0d58ca6faa9bc4b9f5382118a31c7bb92a6f|commit]], [[https://git.kernel.org/linus/8640166f01fe42f2e4a73ab92c797b97b467927d|commit]], [[https://git.kernel.org/linus/38dfa56b3db354b4bd399fc686c3e74ad32ffa57|commit]], [[https://git.kernel.org/linus/67cad5c67019c38126b749621665b6723d3ae7e6|commit]], [[https://git.kernel.org/linus/6a6dfdf8b3ff337be5a447e9f4e71969f18370ad|commit]], [[https://git.kernel.org/linus/cd115c0409f283edde94bd5a9a42dc42bee0aba8|commit]], [[https://git.kernel.org/linus/3fb16866b51ded6c016b664caad53f8d4fd9dc56|commit]], [[https://git.kernel.org/linus/4a032827daa89350365166b19d14d82fe8219128|commit]], [[https://git.kernel.org/linus/e2bbea770cafb7e19bbb6cd77fad3c1c6fb4cca5|commit]], [[https://git.kernel.org/linus/96da4a99ce507bb98e2ba77018a2f91999c8c12b|commit]], [[https://git.kernel.org/linus/fb42378dcc7f247df56f0ecddfdae85487495fbc|commit]] * VT: Support >32x32 fonts for hidpi displays [[https://git.kernel.org/linus/ffc1e089725e3f8a15ddfdce283db42f7d0fa147|commit]], [[https://git.kernel.org/linus/24d69384bcd34b9dcaf5dab744bf7096e84d1abd|commit]], [[https://git.kernel.org/linus/05e2600cb0a4d73b0779cf29512819616252aeeb|commit]] * kbuild: add a tool to list files ignored by git [[https://git.kernel.org/linus/5c3d1d0abb12a6915d0f43233837053945621a89|commit]] * scripts/gdb: add mm introspection utils [[https://git.kernel.org/linus/e36903b0c19fc6e4cfd84a55840ac9559c3f2831|commit]] * io_uring * Add a new flag ({{{IORING_MSG_RING_FLAGS_PASS}}}) in the message ring operations ({{{IORING_OP_MSG_RING}}}). This new flag enables the sender to specify custom flags, which will be copied over to cqe->flags in the receiving ring. These custom flags should be specified using the sqe->file_index field. This mechanism provides additional flexibility when sending messages between rings [[https://git.kernel.org/linus/cbeb47a7b5f003429ded32b1fb3a7108ce5c1b54|commit]] * Add support for using io_uring_register() with a registered ring fd [[https://git.kernel.org/linus/7d3fd88d61a41016da01889f076fd1c60c7298fc|commit]] * (FEATURED) RSEQ node id and mm concurrency id extensions [[https://git.kernel.org/linus/4842dadfc66f627083ec46c4e9a426e805c765f3|commit]], [[https://git.kernel.org/linus/317c8194e6aeb8b3b573ad139fc2a0635856498e|commit]], [[https://git.kernel.org/linus/ee3e3ac05c2631ce1f12d88c9cc9a092f8fe947a|commit]], [[https://git.kernel.org/linus/cbae6bac29a8c5cf2f1cb5c6bce35af00cec164b|commit]], [[https://git.kernel.org/linus/03f5c0272d1b59343144e199becc911dae52c37e|commit]], [[https://git.kernel.org/linus/99babd04b25054717d21840298b0b46046b42cd9|commit]], [[https://git.kernel.org/linus/af7f588d8f7355bc4298dd1962d7826358fc95f0|commit]], [[https://git.kernel.org/linus/f7b01bb0b57f994a44ea6368536b59062b796381|commit]], [[https://git.kernel.org/linus/72cb1d7f2faca4fba81ab8417367d63852cd490c|commit]], [[https://git.kernel.org/linus/18c2355838e76788f61849f4d83513b103d68b95|commit]], [[https://git.kernel.org/linus/ae31573843028ad17b1a807081c542d17fa9a83a|commit]], [[https://git.kernel.org/linus/5bf4aba38a7686fd13f9800a42c39d2adef04fb0|commit]], [[https://git.kernel.org/linus/8d4eeb8bb43262509c3e929e4d086ccaaec627a4|commit]], [[https://git.kernel.org/linus/431b63285abc46d791874eadee8da12c835ce71d|commit]], [[https://git.kernel.org/linus/e61bd94c2bbd6b258fb408092172e37d39b4bf5c|commit]], [[https://git.kernel.org/linus/a94af3c58462d23c45879e1bbe86ed5702d5bd86|commit]], [[https://git.kernel.org/linus/171586a6ab66fb6be064e399ac2024ab459dfcf9|commit]], [[https://git.kernel.org/linus/cead72062756294dff01314b57b68e3e925ef321|commit]], [[https://git.kernel.org/linus/ee31fff091fa9c185d10844f9caf38784afe4745|commit]], [[https://git.kernel.org/linus/a3798e6ffb37481c47773dd1d785c395c0785af8|commit]], [[https://git.kernel.org/linus/14a8644d4f76fb4afdfcc46e9193af867241bd42|commit]] * rcu: Add RCU stall diagnosis information [[https://git.kernel.org/linus/47904aed898a08f028572b9b5a5cc101ddfb2d82|commit]], [[https://git.kernel.org/linus/3ca0a6ea8f6de0f21a9331ff3596a9c073fbdab0|commit]], [[https://git.kernel.org/linus/7c182722a0a9447e31f9645de4f311e5bc59b480|commit]], [[https://git.kernel.org/linus/be42f00b73a0f50710d16eb7cb4efda0cce062dd|commit]], [[https://git.kernel.org/linus/7a21ddf01af9da0a2d24d6ece0e2ffd60374a945|commit]] * shmem: support idmapped mounts for tmpfs [[https://git.kernel.org/linus/7a80e5b8c6fa7d0ae6624bd6aedc4a6a1cfc62fa|commit]] * lib: add Dhrystone benchmark test [[https://git.kernel.org/linus/d5528cc16893f1f64b07936b1e88aa023128debb|commit]] * Allow forcing unconditional bootconfig processing [[https://git.kernel.org/linus/b743852ccc1d9630bb07dc65ef185dab7e2984f6|commit]] * fork: allow {{{CLONE_NEWTIME}}} in clone3 flags [[https://git.kernel.org/linus/a402f1e35313fc7ce2ca60f543c4402c2c7c3544|commit]] * kexec: introduce sysctl parameters {{{kexec_load_limit_*}}} [[https://git.kernel.org/linus/a42aaad2e47b23d63037bfc0130e33fc0f74cd71|commit]] * docs * Add workload-tracing document to admin-guide [[https://git.kernel.org/linus/b7cb8405ba47df1d8abe47c1308774f47d5b9d0e|commit]] * mm: start filling out new doc structure [[https://git.kernel.org/linus/5d8c5e430a63fec5ef810e5e33de03d9b944e82d|commit]], [[https://git.kernel.org/linus/5d8c5e430a63fec5ef810e5e33de03d9b944e82d|commit]] * uaccess: Add minimum bounds check on kernel buffer size [[https://git.kernel.org/linus/04ffde1319a715bd0550ded3580d4ea3bc003776|commit]] * Task scheduler * Membarrier: Introduce {{{MEMBARRIER_CMD_GET_REGISTRATIONS}}}, a method to query previously issued registrations It's needed for CRIU (checkpoint/restore in userspace) [[https://git.kernel.org/linus/544a4f2ecd45f9d6ed78d207583f39130ad40349|commit]], [[https://git.kernel.org/linus/d74f87f37672e71457bfcc14eca5eeb1d61b6438|commit]] * Limit scheduler slice duration to the {{{sysctl_sched_latency}}} period, to improve scheduling granularity with a large number of SCHED_IDLE tasks [[https://git.kernel.org/linus/79ba1e607d68178db7d3fe4f6a4aa38f06805e7b|commit]] * Improve the scalability of the CFS bandwidth unthrottling logic with large number of CPUs [[https://git.kernel.org/linus/8ad075c2eb1f6b4b33436144ea1ef2619f3b6398|commit]] = File systems = * BTRFS * (FEATURED) Data block group size classes to reduce the fragmentation of block groups under certain unhappy workloads. It is particularly effective when the size of extents correlates with their lifetime [[https://git.kernel.org/linus/52bb7a2166af490317ce2cca1865b6630e86aca8|commit]], [[https://git.kernel.org/linus/c7eec3d9aa955cbd00470f874f34bdba946bd101|commit]] * (FEATURED) Send optimizations: ache directory utimes and only emit the command when necessary (speedup up to 10x) [[https://git.kernel.org/linus/e739ba307f3a467cd92b37ca92b64571fcfd7cfe|commit]], [[https://git.kernel.org/linus/cb689481947a36c4b0e885d21a315ff9ffbb87ab|commit]], [[https://git.kernel.org/linus/b3047a42f55d8524b23d58c6ee1c75024d901823|commit]], [[https://git.kernel.org/linus/498581f33c9e60bfdfd28a8565e0ea81a1748aa3|commit]], [[https://git.kernel.org/linus/24970ccb2489c8c087d12659df7f74ef1a966a67|commit]], [[https://git.kernel.org/linus/d921b9cf91e1f84a39f4beab5c824b9c8ad87c0c|commit]], [[https://git.kernel.org/linus/78cf1a954da52a4b290992f2c32dfbf0ffc9ba45|commit]], [[https://git.kernel.org/linus/474e4761f6e8b700612d409327661290d7e58d77|commit]], [[https://git.kernel.org/linus/8c139e1d780665648c74811d36719ef467c32306|commit]], [[https://git.kernel.org/linus/d307d2f35ca5c57ef2966d2a7ccb2de1118f61f4|commit]], [[https://git.kernel.org/linus/90b90d4ac03cbaaa87a81ee04e9cdd9b4225cdd4|commit]], [[https://git.kernel.org/linus/6273ee621f3d5829667943c1f53d8115752b45aa|commit]], [[https://git.kernel.org/linus/e8a7f49d9bfce2fc359cc698d98c8b95dce24c6f|commit]], [[https://git.kernel.org/linus/0da0c5605ed1e6c8138d9c40e5fcc84d3c99ad7b|commit]], [[https://git.kernel.org/linus/d588adae3b97241ee2e837a4dd74674b9a209cd6|commit]], [[https://git.kernel.org/linus/c48545debfff5624a1dd2581f6f8f2fa7fb5f287|commit]], [[https://git.kernel.org/linus/ace79df8a44ae1f668615c7177fa1a7bdc04af7e|commit]], [[https://git.kernel.org/linus/3e49363be6330f49e670240e8f46e6fe0bf5628a|commit]] * (FEATURED) Scan device in non-exclusive mode [[https://git.kernel.org/linus/50d281fc434cb8e2497f5e70a309ccca6b1a09f0|commit]] * (FEATURED) Speedup fiemap (up to 3x) when extents are shared [[https://git.kernel.org/linus/4e4488d4efd56951e6c1c0f60f1fc8e0f93b7964|commit]], [[https://git.kernel.org/linus/e2fd83064a9bae368ce1c88a0cb9aee64ad4e124|commit]] * (FEATURED) Small optimization in the b-tree key lookup, speedup in metadata operations (sample benchmark: fs_mark +10% of files/sec) [[https://git.kernel.org/linus/7b00dfffebd4f3444a3ec04d9e4203b7ac1acb47|commit]], [[https://git.kernel.org/linus/a724f313f84beb5b63b8844d9ec42a547e4a3c18|commit]] * Consolidate btrfs checksumming, repair and bio splitting [[https://git.kernel.org/linus/fd8f8ede239bc0531aca65f408ecf44d6755c558|commit]], [[https://git.kernel.org/linus/e0cfbb2ccabbeaea9e6b3b203d83edca49c702b2|commit]], [[https://git.kernel.org/linus/d0e5cb2be7703172d98699275d722c4081241144|commit]], [[https://git.kernel.org/linus/5fa356531e33e7c7783ccd0d7938a070b5df8c22|commit]], [[https://git.kernel.org/linus/7276aa7d38255b40e578267c3634ebc05f5d5236|commit]], [[https://git.kernel.org/linus/1c2b3ee3b0ec4bc971e23fe18d4c92333a6ad18a|commit]], [[https://git.kernel.org/linus/e52190441bd6b268aed6ecc0efe3614c4222014e|commit]], [[https://git.kernel.org/linus/7609afac677546b225d8327d726cc558d3666496|commit]], [[https://git.kernel.org/linus/ac9f942e86941e8e615b04f791214cc04acd09d0|commit]], [[https://git.kernel.org/linus/3d49d0d31237d11268959c7873c56aab166be07b|commit]], [[https://git.kernel.org/linus/0571b6357c5e414cd5db8e03150074a5ca1c5c12|commit]], [[https://git.kernel.org/linus/f8c44673e5a5f5131773d4a6974fb8ea4db033f8|commit]], [[https://git.kernel.org/linus/f8a53bb58ec7e2150f9b03f210675ba3e6d8b919|commit]], [[https://git.kernel.org/linus/69ccf3f4244abc5f6d73ca5d8caf6b42a1db42c6|commit]], [[https://git.kernel.org/linus/542e300e8398ea529a4a20a125c77d234d5ca37e|commit]], [[https://git.kernel.org/linus/852eee62d31abd695cd43e1b875d664ed292a8ca|commit]], [[https://git.kernel.org/linus/67d66982509043962cf15457051e1b840578a323|commit]], [[https://git.kernel.org/linus/2380220e1e13b2dec4ae6f561841763ed6e1b0c0|commit]], [[https://git.kernel.org/linus/30493ff49f81d0ba42286b72498272db1a1ccae6|commit]], [[https://git.kernel.org/linus/a34e4c3f884cc592f105d214d21baee9f9c6bae8|commit]], [[https://git.kernel.org/linus/f8a02dc6fd38da3dd045509ec321b2f9130bd003|commit]], [[https://git.kernel.org/linus/285599b6fe15d642df643fd4383ab3a278374e35|commit]], [[https://git.kernel.org/linus/35a8d7da3ca87d8612fa86a21fab4e07a70d35cb|commit]], [[https://git.kernel.org/linus/243cf8d1b6737d4b53ac16b211987bbd299478e6|commit]], [[https://git.kernel.org/linus/d5e4377d505189c30df50d54f9944d7fb8d528bb|commit]], [[https://git.kernel.org/linus/8e81aa16a42169faae1ba15cd648cc8bb83eaa48|commit]] * EXT4 * Direct IO take shared inode lock when overwriting preallocated blocks. This can give a significant speed up for multi-threaded writes [[https://git.kernel.org/linus/240930fb7e6b52229bdee5b1423bfeab0002fed2|commit]] * FSVERITY * Support for non-4K pages [[https://git.kernel.org/linus/284d5db5f99efa9e3549eb3cba39379d48879db1|commit]], [[https://git.kernel.org/linus/9098f36b739db9a77d24b7c302dcb9d3fe987308|commit]], [[https://git.kernel.org/linus/579a12f78d889339488175cd9f353dba2bb8d047|commit]], [[https://git.kernel.org/linus/55eed69cc8fd88272860b3409ac83e191330d370|commit]], [[https://git.kernel.org/linus/f45555bf23cfc6bf0f0239de321221b1b81817ab|commit]], [[https://git.kernel.org/linus/5306892a50bf4cd4cc945bad286c7c950078d65e|commit]], [[https://git.kernel.org/linus/56124d6c87fd749477425110d2564166621a89c4|commit]], [[https://git.kernel.org/linus/5e122148a3d573a66f47f826168a3c23a321ac9d|commit]], [[https://git.kernel.org/linus/feb0576a361aacaf12c49e66d32e293a0f3a2e64|commit]], [[https://git.kernel.org/linus/4fa512ce70515ac0d59e30a4b7ae0888b117d8a2|commit]], [[https://git.kernel.org/linus/db85d14dc5c566879a01c4928b2f6f4d5cf0f939|commit]] * Support decrypting data from large folios [[https://git.kernel.org/linus/51e4e3153ebc32d3280d5d17418ae6f1a44f1ec1|commit]] * Support verifying data from large folios [[https://git.kernel.org/linus/5d0f0e57ed900917836385527ce5b122fa1425a3|commit]] * F2FS * Add iostat support for flush [[https://git.kernel.org/linus/193a639fed92793ad10e327cfb2be7175be01425|commit]] * Support accounting iostat count and avg_bytes [[https://git.kernel.org/linus/7a2b15cfa8dbbd54beb4e2ce7b2f42eb0ad00425|commit]] * Introduce discard_io_aware_gran sysfs node [[https://git.kernel.org/linus/120e0ea12d90ad15127ad50944975fc8c81666b7|commit]] * Add sysfs nodes to set last_age_weight [[https://git.kernel.org/linus/d23be468eada21c828058e0e8d60409eaec373ab|commit]] * Export ipu policy in debugfs [[https://git.kernel.org/linus/f2e357893cb7d15994e4ec10838ebb4dccf7eb6e|commit]], [[https://git.kernel.org/linus/dda7d77bcd424ce5da80dd5a7ec92ead00279c02|commit]] * FUSE * Supplementary group extension [[https://git.kernel.org/linus/15d937d7ca8c55d2b0ce9116e20c780fdd0b67cc|commit]], [[https://git.kernel.org/linus/8ed7cb3f279fe67a93f407ee2ec3ea661a483a65|commit]] * NFS * Initial conversion of NFS basic I/O to use folios [[https://git.kernel.org/linus/785207aa3d61ec1cb86e4441bff0a37c412ebd10|commit]], [[https://git.kernel.org/linus/35c5db0ec49f073e6a2d5236b5fcfb0a134a215a|commit]], [[https://git.kernel.org/linus/eb9f2a5a5e85fd24949480d1d02c2a497f26e154|commit]], [[https://git.kernel.org/linus/8e0bdc7021f713fdf3b985cda3ce715e41b06698|commit]], [[https://git.kernel.org/linus/6dd85e83f3f182b56770f8bb6dbed1f0dafb9117|commit]], [[https://git.kernel.org/linus/cbefa53cb1fe30ae4467be863afc3cf60238fd08|commit]], [[https://git.kernel.org/linus/4b27232a6e064f3d779cfa76cd251d6023949d22|commit]], [[https://git.kernel.org/linus/ab75bff1140733f1b43e81f055acd7d27af7ac05|commit]], [[https://git.kernel.org/linus/5241060e8b4f09d63a004b7a735346442fd3ab2d|commit]], [[https://git.kernel.org/linus/0c493b5cf16e28d761b6e77c7c32aa0e7af70813|commit]], [[https://git.kernel.org/linus/4cbf76948c457f0beb9f184ebb21341c8235846a|commit]], [[https://git.kernel.org/linus/54d99381b7371d2999566d1fb4ea88d46cf9d865|commit]], [[https://git.kernel.org/linus/4fa7a717b432c3311192aa85a34fedf5f8de4689|commit]], [[https://git.kernel.org/linus/70e9db69f927bb378db9aaa807cc83ae550779a9|commit]], [[https://git.kernel.org/linus/96780ca55e3cbf4f150fd5a833a61492c9947b5b|commit]], [[https://git.kernel.org/linus/eb5654b3b89d5e836312cea9f3fdb49457852e89|commit]], [[https://git.kernel.org/linus/256093fec1f0ae2f10eb3aae5903ecb689c55ecc|commit]], [[https://git.kernel.org/linus/2de3d04b3bcba3ae0474373cbd0c85f4f09ed9d2|commit]] * (FEATURED) Disable DES-based enctypes by default, provides a mechanism for disabling SHA1-based enctypes, and introduces two modern enctypes that do not use deprecated crypto algorithms [[https://git.kernel.org/linus/97648b94bd9dbb987fe7e4067deecdb47d4fd7e7|commit]], [[https://git.kernel.org/linus/f03640a1a9782f4bf7c1db63e2e6a9598c6d2c6e|commit]], [[https://git.kernel.org/linus/4be416a5f2803d421c950cc48e8e0c1eaaa8c773|commit]], [[https://git.kernel.org/linus/7f675ca7757bfeb70e19d187dc3be44deb836da8|commit]], [[https://git.kernel.org/linus/01c4e326327a635e1fac75b1aedd2c2c1e8123b5|commit]], [[https://git.kernel.org/linus/7989a4f4ab5437ec82b0b59984594f848f12b36a|commit]], [[https://git.kernel.org/linus/9f0b49f933ab1ec5e7140a43eec72b0c5181cabf|commit]], [[https://git.kernel.org/linus/2dbe0cac3cd6d747579b0b347145326eddfd4e5c|commit]], [[https://git.kernel.org/linus/8270dbfcebea5b68037a84ad1710e2cfa499b82f|commit]], [[https://git.kernel.org/linus/e01b2c79f4af1298b961116aba3e64367fe73286|commit]], [[https://git.kernel.org/linus/279a67cdd491a53028eb0b52508383098c6d992b|commit]], [[https://git.kernel.org/linus/bdb12fb157d8d6aea7becbe6eaacf6c7c9b73f5e|commit]], [[https://git.kernel.org/linus/4df750c924f405fe773771add507117a80ae6203|commit]], [[https://git.kernel.org/linus/17781b2ce41a8915163d7cdada021f809ccd49f0|commit]], [[https://git.kernel.org/linus/dfe9a123451a6e73306c988eab3dab12df001677|commit]], [[https://git.kernel.org/linus/d50b8152c992ac88c5f1f0cc8ade6ee0aa0a3704|commit]], [[https://git.kernel.org/linus/ae6ad5d0b7901b301234143e93624417ac9fd9ef|commit]], [[https://git.kernel.org/linus/2691a27d9b3e6a48adeb87a9dcf4e8a0ca84a26e|commit]], [[https://git.kernel.org/linus/ec4aaab39afcec749ff7ed78e560213ff9e1c23c|commit]], [[https://git.kernel.org/linus/8b3a09f3454240cb2c2ab3da02b86f354aab0bd6|commit]], [[https://git.kernel.org/linus/af664fc9023e69d1a90800c0f815c296bf727e18|commit]], [[https://git.kernel.org/linus/dfb632432a9b2548b5a4429598bb19edf58122f0|commit]], [[https://git.kernel.org/linus/a40cf7530d3104793f9361e69e84ada7960724f2|commit]], [[https://git.kernel.org/linus/ae2e4d2bae0007b040e8327f123911c0a6b24d68|commit]], [[https://git.kernel.org/linus/0d5b5a0f32dfc9be3521803aba53e856759f0250|commit]], [[https://git.kernel.org/linus/f26ec6b1b15c5d84e4c8e5b361e2be119def498d|commit]], [[https://git.kernel.org/linus/3394682fba3b9010c6147e94f37633f044876e5e|commit]], [[https://git.kernel.org/linus/45b4ef46b5e88ced7edd4fba26b5fa0e3103de0b|commit]], [[https://git.kernel.org/linus/6e6d9eee0e78b3d13018e0eb28102b67ad5a8e86|commit]], [[https://git.kernel.org/linus/6e460c230d2dfb0e5a02b6e0995546bb4b9d208e|commit]], [[https://git.kernel.org/linus/eebd8c2d1978f5cb6e76e4e3045220b67548cb79|commit]], [[https://git.kernel.org/linus/ddd8c1f975ee7c2fc60ea836540b5b10f97ac919|commit]], [[https://git.kernel.org/linus/6eb6b8a446a174586427d1a0ab0f7635b05b44f7|commit]], [[https://git.kernel.org/linus/e1a9a3849dff9cd980fdccaa8f09cf9226f46a3a|commit]], [[https://git.kernel.org/linus/35f6e42e813e51fb3a40f74f23a99aa330254ce8|commit]], [[https://git.kernel.org/linus/02142b2ca8fc10d7771b650780ae082369632dc0|commit]], [[https://git.kernel.org/linus/b958cff6b27b763b824ed6eefb28979d8f459bf4|commit]], [[https://git.kernel.org/linus/fcbad14b585d706337f16300747069b34c77e630|commit]], [[https://git.kernel.org/linus/003caf4f8c6af53ac48759669f0bd0dd7f69e6f5|commit]], [[https://git.kernel.org/linus/4d2d15c0f1e05ef2478d4891b79570a87c5dd1a6|commit]], [[https://git.kernel.org/linus/c4a9f0552cf682489d370adccf2f3ee11a8ff272|commit]] * UDF * Drop VARCONV support [[https://git.kernel.org/linus/101ee137d32adc5b53f5c2a61fbda8f70f994845|commit]] * Limit file size to 4TB [[https://git.kernel.org/linus/c2efd13a2ed4f29bf9ef14ac2fbb7474084655f8|commit]] * ZONEFS * Reduce zonefs memory usage [[https://git.kernel.org/linus/a608da3bd730d718f2d3ebec1c26f9865f8f17ce|commit]], [[https://git.kernel.org/linus/4008e2a0b01aba982356fd15b128a47bf11bd9c7|commit]], [[https://git.kernel.org/linus/46a9c526eef7fb68a00321e2a9591ce5276ae92b|commit]], [[https://git.kernel.org/linus/34422914dc00b291d1c47dbdabe93b154c2f2b25|commit]], [[https://git.kernel.org/linus/aa7f243f32e1d18036ee00d71d3ccfad70ae2121|commit]], [[https://git.kernel.org/linus/d207794ababe5c3ad72e965c5e1023cfaf4ab1bb|commit]], [[https://git.kernel.org/linus/43592c46375a056b411b065acf2d37fc1e3ab251|commit]] * EROFS * Add per-cpu threads for decompression as an option [[https://git.kernel.org/linus/3fffb589b9a6e331e39cb75373ee7691acd7b109|commit]] = Memory management = * Per-VMA locks [[https://git.kernel.org/linus/39d0bd86c499ecd6abae42a9b7112056c5560691|commit]], [[https://git.kernel.org/linus/a7b92d59c885018cb7bb88539892278e4fd64b29|commit]], [[https://git.kernel.org/linus/2e5b4921f8efc9e845f4f04741797d16f36847eb|commit]], [[https://git.kernel.org/linus/8372f4d83f96f35915106093cde4565836587123|commit]], [[https://git.kernel.org/linus/c13af03de46ba27674dd9fb31a17c0d480081139|commit]], [[https://git.kernel.org/linus/0a2b18d948838e16912b3b627b504ab062b7d02a|commit]], [[https://git.kernel.org/linus/790e1fa86b340c2bd4a327e01c161f7a1ad885f6|commit]], [[https://git.kernel.org/linus/3dd4432549415f3c65dd52d5c687629efbf4ece1|commit]] * Implement DAMOS filtering for anon pages and [[https://git.kernel.org/linus/98def236f63c66629fb6b2d4b69cecffc5b46539|commit]], [[https://git.kernel.org/linus/18250e78f9c759010d7e0008af6e9c37aeddb1e4|commit]], [[https://git.kernel.org/linus/66d9faec0745f8db4bd9ef59a287627fc5ea691f|commit]], [[https://git.kernel.org/linus/d56fe24237c3dec29b7de20ce93a4a53306d180b|commit]], [[https://git.kernel.org/linus/ac35264b9e8807f019f36e7dbc640b66fd43a865|commit]], [[https://git.kernel.org/linus/7ee161f18b5da5170b5d6a51aace49d312099128|commit]], [[https://git.kernel.org/linus/472e2b70eda6a1bccb62f391808924a59c49e22f|commit]], [[https://git.kernel.org/linus/29cbb9a13f05b20f0777c60db9603730b487a4e0|commit]], [[https://git.kernel.org/linus/553b014244298d9f807286d6a71d722bc1f50f84|commit]], [[https://git.kernel.org/linus/9b7f9322a5300505fffba492b45621c897c0e0df|commit]], [[https://git.kernel.org/linus/497b099d9a166f819e667f4bf258e7a00ea2e78a|commit]] * migrate_pages(): batch TLB flushing [[https://git.kernel.org/linus/5b855937096aea7f81e73ad6d40d433c9dd49577|commit]], [[https://git.kernel.org/linus/e5bfff8b10e496378da4b7863479dd6fb907d4ea|commit]], [[https://git.kernel.org/linus/42012e0436d44aeb2e68f11a28ddd0ad3f38b61f|commit]], [[https://git.kernel.org/linus/64c8902ed4418317cd416c566f896bd4a92b2efc|commit]], [[https://git.kernel.org/linus/5dfab109d5193e6c224d96cabf90e9cc2c039884|commit]], [[https://git.kernel.org/linus/80562ba0d8378e89fe5836c28ea56c2aab3014e8|commit]], [[https://git.kernel.org/linus/ebe75e4751063dce6f61b579b43de86dcf7b7462|commit]], [[https://git.kernel.org/linus/7e12beb8ca2ac98b2ec42e0ea4b76cdc93b58654|commit]], [[https://git.kernel.org/linus/6f7d760e86fa84862d749e36ebd29abf31f4f883|commit]] * Multi-gen LRU: memcg LRU [[https://git.kernel.org/linus/391655fe08d1f942359a11148aa9aaf3f99d6d6f|commit]], [[https://git.kernel.org/linus/a579086c99ed70cc4bfc104348dbe3dd8f2787e6|commit]], [[https://git.kernel.org/linus/7348cc91821b0cb24dfb00e578047f68299a50ab|commit]], [[https://git.kernel.org/linus/77d4459a4a1a472b7309e475f962dda87d950abd|commit]], [[https://git.kernel.org/linus/e4dde56cd208674ce899b47589f263499e5b8cdc|commit]], [[https://git.kernel.org/linus/e9d4e1ee788097484606c32122f146d802a9c5fb|commit]], [[https://git.kernel.org/linus/f386e9314025ea99dae639ed2032560a92081430|commit]] * zsmalloc: make zspage chain size configurable [[https://git.kernel.org/linus/6260ae3583456808dceb4d78077e6388c49ca6d7|commit]], [[https://git.kernel.org/linus/e1d1f3546913ae0af9da31df8183a6f3da0cd590|commit]], [[https://git.kernel.org/linus/4ff93b292c0b91b9a7c9fb54643f122bbe59d8d0|commit]], [[https://git.kernel.org/linus/b46402fa894f88ddb42a2e841618a8f42f57d16d|commit]] * (FEATURED) memfd: introduce MFD_NOEXEC_SEAL and MFD_EXEC [[https://git.kernel.org/linus/6fd7353829cafc4067aad9eea0dc95da67e7df16|commit]], [[https://git.kernel.org/linus/32d118ad50a5afecb74358bcefc5cb6ea6ccfc2b|commit]], [[https://git.kernel.org/linus/105ff5339f498af74e60d7662c8f1c4d21f1342d|commit]], [[https://git.kernel.org/linus/11f75a01448f1b7a739e75dbd8f17b844fcfc510|commit]], [[https://git.kernel.org/linus/c4f75bc8bd6b3d62665e1f5400c419540edb5601|commit]] * Support for memory-deny-write-execute (MDWE). Its aim is to prevent a user task from inadvertently creating an executable mapping that is (or was) writeable [[https://git.kernel.org/linus/b507808ebce23561d4ff8c2aa1fb949fe402bc61|commit]] * Enable maple tree RCU mode by default [[https://git.kernel.org/linus/3dd4432549415f3c65dd52d5c687629efbf4ece1|commit]] * Support POSIX_FADV_NOREUSE in vma_has_recency() so that the LRU algorithm can ignore access to mapped files marked by this flag [[https://git.kernel.org/linus/8788f6781486769d9598dcaedc3fe0eb12fc3e59|commit]], [[https://git.kernel.org/linus/17e810229cb3068b692fa078bd9b3a6527e0866a|commit]] * Introduce per NUMA node memory error statistics [[https://git.kernel.org/linus/44b8f8bf2438bfee3aceae4d647a7460213ff340|commit]], [[https://git.kernel.org/linus/18f41fa616ee4d66c67033eb46b951bf6e1b4a12|commit]], [[https://git.kernel.org/linus/4180887f0625af739896aaafc44ee98103ab8f71|commit]] * Improves a few MGLRU functions [[https://git.kernel.org/linus/7b8144e63d84716f16a1b929e0c7e03ae5c4d5c1|commit]], [[https://git.kernel.org/linus/db19a43d9b3a8876552f00f656008206ef9a5efa|commit]], [[https://git.kernel.org/linus/ccbbbb85945d8f0255aa9dbc1b617017e2294f2c|commit]], [[https://git.kernel.org/linus/36c7b4db7c942ae9e1b111f0c6b468c8b2e33842|commit]], [[https://git.kernel.org/linus/37cc99979d04cca677c0ad5c0acd1149ec165d1b|commit]], [[https://git.kernel.org/linus/b5ff4133617d0eced35b685da0bd0929dd9fabb7|commit]], [[https://git.kernel.org/linus/abf086721a2f1e6897c57796f7268df1b194c750|commit]] * Get rid of first tail page fields from struct page [[https://git.kernel.org/linus/94688e8eb453e616098cb930e5f6fed4a6ea2dfa|commit]], [[https://git.kernel.org/linus/eec20426d48bd7b63c69969a793943ed1a99b731|commit]], [[https://git.kernel.org/linus/6eee1a0062298601dfc36bd34517affc4458c43d|commit]], [[https://git.kernel.org/linus/b14224fbea62e5bffd680613376fe1268f4103ba|commit]], [[https://git.kernel.org/linus/62beb906ef644b0f0555b2b9f9626c27e2038d84|commit]], [[https://git.kernel.org/linus/ee0800c2f6a9e605947ce499d79fb7e2be16d6dd|commit]], [[https://git.kernel.org/linus/eb01a2ad7e9cba1b9dd131edc5a26ffbda90a5ed|commit]], [[https://git.kernel.org/linus/4d510f3da4c216d4c2695395f67aec38e2aa6cc7|commit]], [[https://git.kernel.org/linus/65a689f35ad7ebbfb79f429c1bc290b042ebb10b|commit]], [[https://git.kernel.org/linus/db4e5dbdcdd55482ab23bf4a0ae6746f93efb0d9|commit]], [[https://git.kernel.org/linus/c7f84b5723f1a60becd79d895ab214a7d5ee93c1|commit]], [[https://git.kernel.org/linus/91ec7f284a0c445b251caba942c993ebf7b6db9f|commit]], [[https://git.kernel.org/linus/46f2722825983a51e849eb0ef2814e5c7f040fef|commit]], [[https://git.kernel.org/linus/c97eeb8f260dba098ba775e37d216f81f28559a9|commit]], [[https://git.kernel.org/linus/1aa4d03b60c0f61a8d96d5d633bf7968dbf6841f|commit]], [[https://git.kernel.org/linus/5eb5cea11dcbafaa37685bc4e89e1d4ae9c434ea|commit]], [[https://git.kernel.org/linus/21a000fe97a018c6d25be63892afb4fd8210ab57|commit]], [[https://git.kernel.org/linus/bad6da64565846ef5ba85b0b685cfde9db0085dc|commit]], [[https://git.kernel.org/linus/f04029f34e8c3750b8fb39b54e788b9355d1b912|commit]], [[https://git.kernel.org/linus/a60d5942cc9bd65806b69360020d9b1664c747ad|commit]], [[https://git.kernel.org/linus/2d678c641a4625d2b1cfeb50d7426fab6d3740b3|commit]], [[https://git.kernel.org/linus/1c5509be58f636afabbdaf66e7436da8ec0a1828|commit]] * Folios changes * Update mlock to use folios [[https://git.kernel.org/linus/8115612883978069fee8793f873a627ff5868718|commit]], [[https://git.kernel.org/linus/90d07210ab55e458c87048e1ad55582ecff0a3d5|commit]], [[https://git.kernel.org/linus/b213ef6b72b5f1f9d333f8aca05440db4e302b46|commit]], [[https://git.kernel.org/linus/96f97c438f61ddba94117dcd1a1eb0aaafa22309|commit]] * Convert hugetlb fault functions to folios [[https://git.kernel.org/linus/ea4c353df37750d170dc0dcbfa8c47c984779733|commit]], [[https://git.kernel.org/linus/91a2fb956ad993f3cbcfc632611e17e3699fb652|commit]], [[https://git.kernel.org/linus/ea8e72f4116a995c2aba3fb738ac372c4115375a|commit]], [[https://git.kernel.org/linus/d0ce0e47b323a8d7fb5dc3314ce56afa650ade2d|commit]], [[https://git.kernel.org/linus/d2d7bb44bfbd29200426ba17741550d36e081f91|commit]], [[https://git.kernel.org/linus/9b91c0e277a3dbb165c2e4301be7a231dc2f76f7|commit]], [[https://git.kernel.org/linus/371607a3c793d7183b0faecc1fb4aa88fadcf202|commit]], [[https://git.kernel.org/linus/192a50220342f82826812d0032a82fe441e924e2|commit]] * Convert various mempolicy.c functions to use folios [[https://git.kernel.org/linus/fa4e3f5ffa5e6e22f751d289c9afa502dda30b8d|commit]], [[https://git.kernel.org/linus/de1f5055523e9a035b38533f25a56df03d45034a|commit]], [[https://git.kernel.org/linus/3dae02bbd07f40e37bbfec2d77119628db461eaa|commit]], [[https://git.kernel.org/linus/0a2c1e8183163a31fe8c9838f3108aacf9c05c4a|commit]], [[https://git.kernel.org/linus/d451b89dcd183da725eda84dfb8a46c0b32a4234|commit]], [[https://git.kernel.org/linus/4a64981dfee9119aa2c1f243b48f34cbbd67779c|commit]] * Convert page_add_file_rmap() to use a folio internally [[https://git.kernel.org/linus/6a171c16e62f854e6a7e0f837dbe8f3ace0f00ce|commit]] Convert filemap_map_pmd() to take a folio [[https://git.kernel.org/linus/8808ecab3afc18958a9216911cd7967017e7057c|commit]], [[https://git.kernel.org/linus/eff3b364b496e01ec789f3e15a51f9a3589e2a23|commit]], [[https://git.kernel.org/linus/11a980420719712f419dbb325940907f5d1afbdd|commit]] * Convert do_anonymous_page() to use a folio [[https://git.kernel.org/linus/cb3184deef10fdc7658fb366189864c89ad118c9|commit]] * kasan: infer allocation size by scanning metadata [[https://git.kernel.org/linus/8f17febb34ceb464e3ff99e9436d0ae3f47b4862|commit]] * Continue hugetlb folio conversions [[https://git.kernel.org/linus/6aa3a920125e9f58891e2b5dc2efd4d0c1ff05a6|commit]], [[https://git.kernel.org/linus/6f6956cf7e6a3034f61780446547e849aa4e216d|commit]], [[https://git.kernel.org/linus/a36f1e9024740c3820427afca4cd375e32a1bb15|commit]], [[https://git.kernel.org/linus/3a740e8bb56ef7ee6b9098b694caabab843be067|commit]], [[https://git.kernel.org/linus/ff7d853b031302376a0d3640fa1c463d94079637|commit]], [[https://git.kernel.org/linus/e37d3e838d9078538f920957d1e89682b6764977|commit]], [[https://git.kernel.org/linus/0ffdc38eb564c1c71a58bbaf874945ba54293ff9|commit]], [[https://git.kernel.org/linus/bdd7be075acb650cc57d8ee752b5375b966ad07e|commit]] * khugepaged: convert release_pte_pages() to use folios [[https://git.kernel.org/linus/9bdfeea46f4926181b9476037c6af28d6d19cc28|commit]] * Implement memory-deny-write-execute as a prctl [[https://git.kernel.org/linus/4cf1fe34fd18b752ae2403927277715d4444f331|commit]] * Convert page_add_file_rmap() to use a folio internally [[https://git.kernel.org/linus/6a171c16e62f854e6a7e0f837dbe8f3ace0f00ce|commit]] * Convert hugepage memory failure functions to folios [[https://git.kernel.org/linus/4c110ec98e39944732ec31bf0415f22632bae2b7|commit]], [[https://git.kernel.org/linus/bc1cfde194675215857755b75e5fe90f6a654843|commit]], [[https://git.kernel.org/linus/2ff6cecee669bf0fc63eadebac8cfc81f74b9a4c|commit]], [[https://git.kernel.org/linus/9637d7dfb19ce934f81cd56cde23573759c73afb|commit]], [[https://git.kernel.org/linus/b02e7582ef245e9694fff6aee8e95fd1764cc5ee|commit]], [[https://git.kernel.org/linus/0858b5eb3aab2de0662a40901699162519628f6e|commit]], [[https://git.kernel.org/linus/595dd8185cf1db248b2be4c65ec8936de6ac87c1|commit]], [[https://git.kernel.org/linus/a6fddef49eef2cf68c23e91d73d6a6d5e2cd448f|commit]] = Block layer = * ublk_drv: add mechanism for supporting unprivileged ublk device [[https://git.kernel.org/linus/ed878d1c1c641c4a6bd366658fc8e6bc842b80d1|commit]], [[https://git.kernel.org/linus/73a166d9749230d598320fdae3b687cdc0e2e205|commit]], [[https://git.kernel.org/linus/bfbcef036396a73fbf4b3fee385cc670159df5ad|commit]], [[https://git.kernel.org/linus/abb864d380854b5427b6b070beb2ebc291ce4d1e|commit]], [[https://git.kernel.org/linus/403ebc877832752da9fc851284fa00ceca7b2fae|commit]], [[https://git.kernel.org/linus/4093cb5a06343ea3936ae46664d132c82576b153|commit]], [[https://git.kernel.org/linus/48a9051980242128f844defe44c7e83217f79872|commit]] * (FEATURED) Extend BFQ io scheduler to support multi-actuator drives [[https://git.kernel.org/linus/9778369a2d6c5ed2b81a04164c4aa9da1bdb193d|commit]], [[https://git.kernel.org/linus/b752989897b4b71260e5456be16c44e9a96c999b|commit]], [[https://git.kernel.org/linus/a61230470c8cbd4eec0dc4dd99a3867d009c0b05|commit]], [[https://git.kernel.org/linus/fd571df0ac5b289af8c659891f9b72f4c0cfdbd2|commit]], [[https://git.kernel.org/linus/8b7fd7411176b9e4478d46b00fd05e46ce18a28d|commit]], [[https://git.kernel.org/linus/4fdb3b9f2a280eeea3407321705275fc9a77e3a6|commit]], [[https://git.kernel.org/linus/2d31c684a053b46f75b230899d00c0f56708243d|commit]], [[https://git.kernel.org/linus/1bd43e19de1b99179b9beb92b14697e113326d00|commit]] * virtio-blk: set req->state to MQ_RQ_COMPLETE and support completion batching for the IRQ path [[https://git.kernel.org/linus/489e18f3d73282f6bf6203324b3b17d459e2e750|commit]], [[https://git.kernel.org/linus/07b679f70d73483930e8d3c293942416d9cd5c13|commit]] * pata_parport: add driver (PARIDE replacement) [[https://git.kernel.org/linus/7750d8b51061467d9de8407a17c26cba9e15da10|commit]], [[https://git.kernel.org/linus/72f2b0b2185099dce354c805009f591dda3ab73d|commit]] * virtio-blk: support zoned block devices [[https://git.kernel.org/linus/258896fcc786b4e7db238eba26f6dd080e0ff41e|commit]], [[https://git.kernel.org/linus/95bfec41bd3d39b7659cba65b72080420bf5691e|commit]] * virtio: vdpa: new SolidNET DPU driver [[https://git.kernel.org/linus/db6c4dee4c104f50ed163af71c53bfdb878a8318|commit]], [[https://git.kernel.org/linus/d089d69cc1f824936eeaa4fa172f8fa1a0949eaa|commit]], [[https://git.kernel.org/linus/51a8f9d7f587290944d6fc733d1f897091c63159|commit]] = Tracing, perf and BPF = * Enable cpumasks to be used as kptrs [[https://git.kernel.org/linus/57539b1c0ac2dcccbe64a7675ff466be009c040f|commit]], [[https://git.kernel.org/linus/b613d335a743cf0e0ef0ccba9ad129904e2a26fb|commit]], [[https://git.kernel.org/linus/caf713c338bd95bf9ac003d8985d2c4e46d452dd|commit]], [[https://git.kernel.org/linus/516f4d3397c9e90f4da04f59986c856016269aa1|commit]], [[https://git.kernel.org/linus/a6541f4d280465e3dff08a45734c0d4ac3f363a4|commit]], [[https://git.kernel.org/linus/7b6abcfa15cd18de21e5bfb952df57268af2f041|commit]], [[https://git.kernel.org/linus/bdbda395845e7579c0ce76280104627510af929b|commit]], [[https://git.kernel.org/linus/d94cbde2183ff329f36ce1d8f99361a63da68a72|commit]], [[https://git.kernel.org/linus/027bdec89364e94753a2211ca87800c765fbd75d|commit]] * Enable struct_ops programs to be sleepable [[https://git.kernel.org/linus/1e12d3ef47d228e4e7d30f9bc5e6744ede90319c|commit]], [[https://git.kernel.org/linus/913b2255c3d876254e968f1e8e2c817cca283a29|commit]], [[https://git.kernel.org/linus/7dd880592a88799f3ef48fda507849a75f11cbf0|commit]] * (FEATURED) BPF rbtree next-gen datastructure [[https://git.kernel.org/linus/9c395c1b99bd23f74bc628fa000480c49593d17f|commit]], [[https://git.kernel.org/linus/d8939cb0a03ce7e4e69f65bbd31b79fe42f7d5e6|commit]], [[https://git.kernel.org/linus/bd1279ae8a691d7ec75852c6d0a22139afb034a4|commit]], [[https://git.kernel.org/linus/cd6791b4b6f66f6b7925c840efe5c8fa0ce1ac87|commit]], [[https://git.kernel.org/linus/5d92ddc3de1b44a82108af68ed71f638ca20509a|commit]], [[https://git.kernel.org/linus/a40d3632436b1677a94c16e77be8da798ee9e12b|commit]], [[https://git.kernel.org/linus/c834df847ee60eeb678171eb0f1e59f611c62a99|commit]], [[https://git.kernel.org/linus/215249f6adc0359e3546829e7ee622b5e309b0ad|commit]], [[https://git.kernel.org/linus/c31315c3aa09297d99cb39e837185ef225586d2b|commit]] * Add flag BPF_F_NO_TUNNEL_KEY to bpf_skb_set_tunnel_key() [[https://git.kernel.org/linus/e26aa600ba6a62fe84659f1df497a381bab6d07e|commit]], [[https://git.kernel.org/linus/ac6e45e05857464a1e347c50da9917141f1fbb80|commit]] * bpftool: profile online CPUs instead of possible [[https://git.kernel.org/linus/377c16fa3f3c60d21e4b05314c8be034ce37f2eb|commit]] * libbpf: Add support for fetching up to 8 arguments in kprobes [[https://git.kernel.org/linus/3c59623d82947c8bfcc2fbf34c5eab02493b3b28|commit]] * Introduce cgroup.memory=nobpf [[https://git.kernel.org/linus/b6c1a8af5b1eec42aabc13376f94aa90c3d765f1|commit]], [[https://git.kernel.org/linus/ddef81b5fd1da4d7c3cc8785d2043b73b72f38ef|commit]], [[https://git.kernel.org/linus/ee53cbfb1ebf990de0d084a7cd6b67b05fe1f7ac|commit]], [[https://git.kernel.org/linus/bf3965082491601bf9cd6d9a0ce2d88cb219168a|commit]] * perf c2c: Add report option to show false sharing in adjacent cachelines [[https://git.kernel.org/linus/1470a108a60e8c0c4d19da10117c9b98f0078654|commit]] * perf intel-pt: Synthesize cycle events [[https://git.kernel.org/linus/7e55b95651d88e60368087c243525a0d97d43d3d|commit]] * perf lock contention: Add -S/--callstack-filter option [[https://git.kernel.org/linus/7b204399aee0d1048109d37456cd61b7f1bc0aed|commit]] * perf lock contention: Track lock owner [[https://git.kernel.org/linus/55e391852e713f85af4e724443f929b3ce5b5dbe|commit]], [[https://git.kernel.org/linus/3477f079fe70b3c97a619788d89ac357e207f302|commit]], [[https://git.kernel.org/linus/1bece1351c653c3d36bf761513e21ac8428449b4|commit]] * perf script: Add 'cgroup' field for output [[https://git.kernel.org/linus/3fd7a168bf51497909dbfb7347af28b5c57e74a6|commit]] * perf stat: Avoid merging/aggregating metric counts twice [[https://git.kernel.org/linus/37f322cd58d81a9d46456531281c908de9ef6e42|commit]] * perf symbols: Improve {{{dso__synthesize_plt_symbols()}}} for x86 [[https://git.kernel.org/linus/66fe2d53a067d343980048bf5c9df3e852a9e436|commit]], [[https://git.kernel.org/linus/b2529f829ad65bf124a6b1c4fcc90093d8f0c9cf|commit]], [[https://git.kernel.org/linus/78250284b157490122106516470ec6c40ead3986|commit]], [[https://git.kernel.org/linus/05963491c094ca3de397ef0cfe5537b666ae4412|commit]], [[https://git.kernel.org/linus/b7dbc0be6e4f2a5268d76884d6651e29f95673ea|commit]], [[https://git.kernel.org/linus/60fbb3e49abe8421b677d5eee32fe7fb27b05e3b|commit]], [[https://git.kernel.org/linus/a1ab12856f27f37465daf640dce8df044ecbc64b|commit]], [[https://git.kernel.org/linus/51a188ad8c2d89c5c5425d0818cc14cdec336df9|commit]], [[https://git.kernel.org/linus/ce4c8e7966f317ef2af896778b5fa9105a5cd351|commit]] * perf lock contention: Improve aggr x filter combination [[https://git.kernel.org/linus/492fef218a6606c53bbb979a65b8f827c5ea02ce|commit]], [[https://git.kernel.org/linus/16cad1d3597d32e470a4115f11c5e61cce6cd81b|commit]], [[https://git.kernel.org/linus/ebab291641bed48f62c608e3bf29071c435c2d9b|commit]], [[https://git.kernel.org/linus/79b7ca7802d24cd4042d0fd508afb59169f74a7a|commit]] * perf report: Support Retire Latency [[https://git.kernel.org/linus/d7d213e04cf83318681f24870f1144e50d5c91bb|commit]], [[https://git.kernel.org/linus/b6c00fb9949fbd073e651a77aa75faca978cf2a6|commit]], [[https://git.kernel.org/linus/17f248aa8664ff5b3643491136283e73b5c18166|commit]], [[https://git.kernel.org/linus/38aaf921e92dc5cf87e4a6c5a4b24dd99155cace|commit]], [[https://git.kernel.org/linus/c87a31093c707eb0b8c48aab89922c1d0bf4bd90|commit]], [[https://git.kernel.org/linus/a018d2e3d4b1abc4a3cb64415c5d204fc5d2eafd|commit]], [[https://git.kernel.org/linus/eb467aaac21e133a3d01c48c0a6bf43756b06e78|commit]], [[https://git.kernel.org/linus/eaef048c281bf7eaecdfde96d9b305b8644c9f66|commit]], [[https://git.kernel.org/linus/b0bd3336d87f3403094fbadc7803c1d5bf3df4f7|commit]] * tools perf: Add branch speculation info [[https://git.kernel.org/linus/6ade6c6460357a4878db24f468bbc66e3eddcd42|commit]], [[https://git.kernel.org/linus/8eaf8ec3c09b88e35c1c3c761ac4188ee425aeb6|commit]] * perf intel-pt: Fix the pipe mode (v2) [[https://git.kernel.org/linus/1746212daeba95e9ae1639227dc0c3591d41deeb|commit]], [[https://git.kernel.org/linus/aeb802f872a7c42e4381f36041e77d1745908255|commit]], [[https://git.kernel.org/linus/14bf4784412c9f89a626798026262daa8fc81034|commit]], [[https://git.kernel.org/linus/e072b097d29e40784d4d0dd8a017df54af2a2026|commit]] * jevents/pmu-events improvements [[https://git.kernel.org/linus/3241cd11d9a093783a97cea7136179206553fa86|commit]], [[https://git.kernel.org/linus/2efbb73d46eaf5618d9782648117ad635e6b1251|commit]], [[https://git.kernel.org/linus/df5499ddb859bb848ddad5939d258da8a781af3a|commit]], [[https://git.kernel.org/linus/db95818e888a927456686518880ed0145b1f20ce|commit]], [[https://git.kernel.org/linus/96d2a74618e35c67b1c2245bb927b7d7fbdae526|commit]], [[https://git.kernel.org/linus/d9dc8874d6ce46ccb3a0761e1540927ea07408ea|commit]], [[https://git.kernel.org/linus/6f8f98ab6c16101b0694ef7e70425ded9d7af30e|commit]], [[https://git.kernel.org/linus/9f587cc93fe98e8d1e6527e18685635e0155fd08|commit]], [[https://git.kernel.org/linus/f8ea2c1524de42a6bae55cef5713d1229030324b|commit]], [[https://git.kernel.org/linus/62774db2a05dc878c83824afd8e6594ff277b91a|commit]], [[https://git.kernel.org/linus/5a09b1fd1b1fadf70cbf02a8daa49046e870a7aa|commit]], [[https://git.kernel.org/linus/3340a08354ac286e252738436cf0fbf0d9e72449|commit]], [[https://git.kernel.org/linus/d2e3dc829e389d686194d06f0a64adda4158faae|commit]], [[https://git.kernel.org/linus/e30f34053e5bc552829249941120ad042ba27723|commit]], [[https://git.kernel.org/linus/b777b3d2555feeaa2bf39d6541ed9198e2d2d728|commit]] * perf: Add more syscalls to benchmark [[https://git.kernel.org/linus/1bad502775df1fdc824774d0f6e41a629548982a|commit]], [[https://git.kernel.org/linus/3fe91f32620f658adfc073f9df831e7b82498575|commit]], [[https://git.kernel.org/linus/391f84e5555c20a5b5ca4a2b0c3daec383765a09|commit]], [[https://git.kernel.org/linus/540f8b5640ec08d6ba667d933298bbb350ced77c|commit]] * tracing: Allow stacktraces to be saved as histogram variables [[https://git.kernel.org/linus/19ff80496450f58a148effa2551350f3b89e4990|commit]], [[https://git.kernel.org/linus/288709c9f3b0236000754824bcabc9a9ffaa3738|commit]], [[https://git.kernel.org/linus/00cf3d672a9dd409418647e9f98784c339c3ff63|commit]], [[https://git.kernel.org/linus/88238513bb26713ef6d4418bdf1af062fe608bcb|commit]], [[https://git.kernel.org/linus/b81a3a100cca1bd63d897efa339d047986615c9f|commit]] * tracing: Addition of tracing instances via kernel command line [[https://git.kernel.org/linus/cb1f98c5e5742273bca39410d504430793ab701a|commit]], [[https://git.kernel.org/linus/c4846480831ea526bcab0ca0bf6364bfa6ed4227|commit]], [[https://git.kernel.org/linus/d503b8f7474fe7ac616518f7fc49773cbab49f36|commit]], [[https://git.kernel.org/linus/9c1c251d670bc107b9ce600a2c20adb08b4849e9|commit]] * tracing: Updates for 6.3 [[https://git.kernel.org/linus/e6745a4da964f5f49b21cbcce5125456984ddc6b|commit]], [[https://git.kernel.org/linus/7f09d639b8c4959736ff112d0fb42780c37ff6db|commit]], [[https://git.kernel.org/linus/b56c68f705cad0cff61fbe132c66ced2c737c65c|commit]], [[https://git.kernel.org/linus/3e4272b9954094907f16861199728f14002fcaf6|commit]], [[https://git.kernel.org/linus/19ff80496450f58a148effa2551350f3b89e4990|commit]], [[https://git.kernel.org/linus/288709c9f3b0236000754824bcabc9a9ffaa3738|commit]], [[https://git.kernel.org/linus/00cf3d672a9dd409418647e9f98784c339c3ff63|commit]], [[https://git.kernel.org/linus/cc5fc8bfc961eeb99b7e8dffbeff7a3f6995d314|commit]], [[https://git.kernel.org/linus/88238513bb26713ef6d4418bdf1af062fe608bcb|commit]], [[https://git.kernel.org/linus/b81a3a100cca1bd63d897efa339d047986615c9f|commit]], [[https://git.kernel.org/linus/92a22cea4c847b518af646a809cd662d55f9d8ac|commit]], [[https://git.kernel.org/linus/dc513fd5321d4c15ac1f820c224b2e5220b6e14f|commit]] * Timerlat auto-analysis [[https://git.kernel.org/linus/27e348b221f6a78cbe86e7def8e2611f84509211|commit]], [[https://git.kernel.org/linus/5def33df84d2326ebf5f29ae9ddc702a4593c337|commit]], [[https://git.kernel.org/linus/ce6cc6f70cad4d703ddfe99d74f33990617c0a3c|commit]] * rtla: Add hwnoise tool [[https://git.kernel.org/linus/1f428356c38dcbe49fd2f1c488b41e88720ead92|commit]], [[https://git.kernel.org/linus/5dc3750e747f93f9bb7987da3d47a8ab4a5a181e|commit]] = Virtualization = * vhost-net: support VIRTIO_F_RING_RESET [[https://git.kernel.org/linus/313389be06ff60b4ad23bdb4ff24a12e7c47cb26|commit]] * vdpa: Add resume operation [[https://git.kernel.org/linus/1538a8a49ecbe6d3302cd7f347632338e56857f8|commit]], [[https://git.kernel.org/linus/69106b6fb3d73bd4252daa48ae96e600c9701147|commit]], [[https://git.kernel.org/linus/3b688d7a086d0438649ea37990c6e811954fc780|commit]], [[https://git.kernel.org/linus/f9d9f57ef048ab3f78ad92293c698b3090dcdada|commit]] * efi: Support ESRT under Xen [[https://git.kernel.org/linus/ab03e91e60ce457a90e6aa2c97ca2fa139b73f55|commit]], [[https://git.kernel.org/linus/aca1d27ac38a61d7db4b56418386992cb96b63f0|commit]], [[https://git.kernel.org/linus/c0fecaa44dc341d86e4ce96efcda9ea8b4c106af|commit]], [[https://git.kernel.org/linus/01de145dc7fbb5e6aba98655c062908a74fa511c|commit]], [[https://git.kernel.org/linus/fa7bee867db1913560435a7486d17d95500a62dc|commit]] * xen/hypervisor: Expose Xen SIF flags to userspace [[https://git.kernel.org/linus/415dab3c179632d098aadc756b39cebceb977978|commit]] * virtio: vdpa: new SolidNET DPU driver [[https://git.kernel.org/linus/51a8f9d7f587290944d6fc733d1f897091c63159|commit]] * virtio_ring: per virtqueue DMA device [[https://git.kernel.org/linus/2713ea3c7d930aa1ff5ef7d4a57a1e4fcc3b9985|commit]], [[https://git.kernel.org/linus/25da258fa61b1a902c781406a4e24a8284fc3d8a|commit]], [[https://git.kernel.org/linus/a1baedb11ed4008035cf72777a6cb572fc26184f|commit]], [[https://git.kernel.org/linus/99fb2b838f446a2178dec07507c457c0f1cff5ea|commit]], [[https://git.kernel.org/linus/36871fb92b70599e6755d92ebdfcba7baa3d4f85|commit]] * Add throttling detection to sev-guest [[https://git.kernel.org/linus/72f7754dcf31c87c92c0c353dcf747814cc5ce10|commit]], [[https://git.kernel.org/linus/d6fd48eff7506bb866a54e40369df8899f2078a9|commit]], [[https://git.kernel.org/linus/970ab823743fb54b42002ec76c51481f67436444|commit]], [[https://git.kernel.org/linus/c5a338274bdb894f088767bea856be344d0ccaef|commit]], [[https://git.kernel.org/linus/0fdb6cc7c89cb5e0cbc45dbdbafb8e3fb92ddc95|commit]], [[https://git.kernel.org/linus/d25bae7dc7b0668cb2a1325c64eb32d5fea4e5a9|commit]], [[https://git.kernel.org/linus/fa4ae42cc60a7dea30e8f2db444b808d80862345|commit]] = Security = * !LoadPin: Allow filesystem switch when not enforcing [[https://git.kernel.org/linus/b76ded214633cf5067ff51642a360eb87242c411|commit]], [[https://git.kernel.org/linus/60ba1028fc7b73e3cfbcfe7087a2e87e8b1fd208|commit]], [[https://git.kernel.org/linus/2cfaa84efc25e52f116507a2e69781a40c4dda41|commit]], [[https://git.kernel.org/linus/eba773596be9c21a8e979d7e653f721d1d0341a9|commit]] * ima: Align ima_file_mmap() parameters with mmap_file LSM hook [[https://git.kernel.org/linus/4971c268b85e1c7a734a61622fc0813c86e2362e|commit]], [[https://git.kernel.org/linus/4958db3245fa655bf18251bd2a83bcc164071c39|commit]] = Networking = * (FEATURED) Support IPv4 big TCP [[https://git.kernel.org/linus/058a8f7f73aae1cc22b53fcefec031b9e391b54d|commit]], [[https://git.kernel.org/linus/46abd17302ba6be2e06818088e40a568e8f9e7af|commit]], [[https://git.kernel.org/linus/ec84c955a0d06cef31664bae328d94be7a3e2f03|commit]], [[https://git.kernel.org/linus/043e397e48c58b4442ea5124dc1bdc95367a0a33|commit]], [[https://git.kernel.org/linus/a13fbf5ed5b4fc9095f12e955ca3a59b5507ff01|commit]], [[https://git.kernel.org/linus/7eb072be41ba4d8ecea17092dece50c7375d8980|commit]], [[https://git.kernel.org/linus/50e6fb5c6efb2b33b15ea490dfe355cb312f6eb5|commit]], [[https://git.kernel.org/linus/8e08bb75b60f7f9ed319185cef80188b87d9b43a|commit]], [[https://git.kernel.org/linus/9eefedd58ae1daece2ba907849a44db2941fb4b0|commit]], [[https://git.kernel.org/linus/b1a78b9b98862cda167b643690e43662ea060625|commit]] * bpf: Add ipip6 and ip6ip decap support for bpf_skb_adjust_room() [[https://git.kernel.org/linus/81bbbb697481700ef8f31619f9d1e96cca894b5a|commit]], [[https://git.kernel.org/linus/7105f76fb56f5ed66a59bc048bc71e9f100e1d39|commit]] * bridge: Limit number of MDB entries per port, port-vlan [[https://git.kernel.org/linus/c00041cf1cb82fcc8002454c8c1d80bd7e9b7e3e|commit]], [[https://git.kernel.org/linus/60977a0c63373bfc596b562b1e34e64ede6ef492|commit]], [[https://git.kernel.org/linus/1c85b80b20a13d07ec3a7d746ad52b7972c8c730|commit]], [[https://git.kernel.org/linus/976b3858dd14914c5a9254535ad7440c99467944|commit]], [[https://git.kernel.org/linus/eceb30854f6b7d354ae52551b11aef2e2fa3e82e|commit]], [[https://git.kernel.org/linus/d47230a3480a5f6df98c5870ba26843850a600d5|commit]], [[https://git.kernel.org/linus/b57e8d870d522d905720052e6fd9c3bc9bc5f6fb|commit]], [[https://git.kernel.org/linus/a1aee20d5db29dc73331067b6a338eb650f0b5f1|commit]], [[https://git.kernel.org/linus/344dd2c9e74373cca454dcea4b62be50adc35939|commit]], [[https://git.kernel.org/linus/f7ccf60c4adada7e13d3d6798621cabcdaf3828e|commit]], [[https://git.kernel.org/linus/fcf4927632eecb25e40c8c5ac1e40df2090cc2eb|commit]], [[https://git.kernel.org/linus/952e0ee38c7215c45192d8c899acd1830873f28b|commit]], [[https://git.kernel.org/linus/506a1ac9d32b52606f59acbb0e20c1a7adbb8511|commit]], [[https://git.kernel.org/linus/705d4bc7b6b6563e7c2d4b3b3da8da9af842aacc|commit]], [[https://git.kernel.org/linus/9ae8546973171230488ad631d2b9eb844466a37d|commit]], [[https://git.kernel.org/linus/3446dcd7df05ed6cc0095f21f871a61f1f28ed4e|commit]] * (FEATURED) Netlink protocol specs [[https://git.kernel.org/linus/9d6a65079c98f55fa2249c50e517d133d137c251|commit]], [[https://git.kernel.org/linus/e616c07ca51817ebdb1423807d52cac72d1c22fa|commit]], [[https://git.kernel.org/linus/be5bea1cc0bf663aa0a45a2c0021dfcfb6cca976|commit]], [[https://git.kernel.org/linus/4eb77b4ecd3c5eaab83adf76e67e0a7ed2a24418|commit]], [[https://git.kernel.org/linus/3a330496baa87f334159fdf2388e44f42f619ab5|commit]], [[https://git.kernel.org/linus/08d323234d10eab077cbf0093eeb5991478a261a|commit]], [[https://git.kernel.org/linus/1d562c32e4392cc091c940918ee1ffd7bfcb9e96|commit]], [[https://git.kernel.org/linus/e4b48ed460d369070ce1d491800acf50ab9701d2|commit]] * icmp: Add counters for rate limits [[https://git.kernel.org/linus/d0941130c93515411c8d66fc22bdae407b509a6d|commit]] * ieee802154: Beaconing support [[https://git.kernel.org/linus/9bc114504b07207d671593f6f6d787d55dcf91bd|commit]], [[https://git.kernel.org/linus/3accf4762734a69ebd03cba989249c78ac7dfc7e|commit]] * IEEE 802.15.4 scan support [[https://git.kernel.org/linus/5d8a8b324ff48c9d9fe4f1634e33dc647d2481b4|commit]], [[https://git.kernel.org/linus/1293fccc9e892712d910ec96079d3717307f1d2d|commit]], [[https://git.kernel.org/linus/9d70c7e10a8953477956570cd4eba14ad404d8a7|commit]], [[https://git.kernel.org/linus/898db3b8f9456608410089c52082ab42a9319217|commit]], [[https://git.kernel.org/linus/d753c4004820a888ec007dd88b271fa9c3172c5c|commit]], [[https://git.kernel.org/linus/731cddce6dd110fb2cdee34eddb48599e7251517|commit]], [[https://git.kernel.org/linus/b8e508f42138b42b44f65679d02aad3c200aff68|commit]], [[https://git.kernel.org/linus/79c37ca73a6e9a33f7b2b7783ba6af07a448c8a9|commit]], [[https://git.kernel.org/linus/c265a3a6690b093e542aceb4a7bf8bf6c577e42b|commit]], [[https://git.kernel.org/linus/be8c6d86d558860bbc493ad3fbc51fc96ab0c2e4|commit]], [[https://git.kernel.org/linus/983a974b40f66d202b075ab8ac584c698a3fc141|commit]], [[https://git.kernel.org/linus/bde000ae459f2829ed88e967f7fa7665b4e3afaf|commit]], [[https://git.kernel.org/linus/226730e1aa2844b6e5499a6fe6bea4db17a894a8|commit]], [[https://git.kernel.org/linus/2b13db13af50a5dcdb944723c828915a50f0c3b2|commit]], [[https://git.kernel.org/linus/f0feb34904735ffa21fe7b0c50f9f9527ec74b7a|commit]], [[https://git.kernel.org/linus/ddd9ee7cda122ac55571b8b11b51ef1e71918b63|commit]] * IEEE 802.15.4 passive scan support [[https://git.kernel.org/linus/ed3557c947e1d4164d370cc2d69dd7eb92706f0a|commit]], [[https://git.kernel.org/linus/44def58f5835bbfaf81902c88460fd86a551f4b7|commit]], [[https://git.kernel.org/linus/d2aaf2a01792ccf214f933d0b1ca2d41788c7b16|commit]], [[https://git.kernel.org/linus/5755cd4d9432779027771e43e51d81a2994ed795|commit]], [[https://git.kernel.org/linus/dd18096256c89612e3eb858de748c29d10e8f3e7|commit]], [[https://git.kernel.org/linus/57588c71177f0bfc08509c2c3a9bfe32850c0786|commit]] * Add {{{IP_LOCAL_PORT_RANGE}}} socket option. It sets or gets the per-socket default local port range. This option can be used to clamp down the global local port range, defined by the ip_local_port_range proc interface [[https://git.kernel.org/linus/91d0b78c5177f3e42a4d8738af8ac19c3a90d002|commit]] * Introduce rps_default_mask sysctl [[https://git.kernel.org/linus/135746c61fa6d7f66dc079027304eaa4d35fe942|commit]], [[https://git.kernel.org/linus/370ca718fd5e1fd45ccfdf7a9d76d010f561e607|commit]], [[https://git.kernel.org/linus/605cfa1b1090b5d9e227d8a8f7d08fdd04f07724|commit]], [[https://git.kernel.org/linus/c12e0d5f267d7eb45a2f8eaa9fd44eaa2871a95e|commit]] * mptcp * Add mixed v4/v6 support for the in-kernel PM [[https://git.kernel.org/linus/b9d69db87fb77fc80997993d40f091b323b3651e|commit]], [[https://git.kernel.org/linus/7e9740e0e84e21281759590ccec4e3c926eb54bf|commit]], [[https://git.kernel.org/linus/ad3493746ebe9e9adf3d8c5b003fa0240f25242a|commit]], [[https://git.kernel.org/linus/40c71f763f87b68fe43199c1702220c91afed288|commit]], [[https://git.kernel.org/linus/f790ae03db33e6a3efd18fe7aefe3c7897195cc2|commit]], [[https://git.kernel.org/linus/1c0b0ee2640bbbf225c9bdf2f7b121fcf4ee2059|commit]], [[https://git.kernel.org/linus/10d4273411be6ead4d4d8a50a0593da15154f43f|commit]], [[https://git.kernel.org/linus/8dbdf24f4e9e060e4c4a3ad282a4a57f80f48b1f|commit]] * Add statistics for mptcp socket in use [[https://git.kernel.org/linus/c558246ee73e6f623ca503fb1fda626f313393a6|commit]] * netlink: provide an ability to set default extack message [[https://git.kernel.org/linus/028fb19c6ba743ed308ba99ac325afa968795e0f|commit]] * rxrpc: Increasing SACK size and moving away from softirq, part 5 [[https://git.kernel.org/linus/8395406b3495235d73c7aa86ef8df97830e036d6|commit]], [[https://git.kernel.org/linus/371e68ba0306f6279b03990c2e721e7634f0fe33|commit]], [[https://git.kernel.org/linus/828bebc80a031b9c07c0d5f2465910b6350cd616|commit]], [[https://git.kernel.org/linus/223f59016fa2b6d01814dc53ace1c146857ba236|commit]], [[https://git.kernel.org/linus/af094824f20b454ee23b7b5a860b3ba58f4e6938|commit]], [[https://git.kernel.org/linus/84e28aa513af814807a5e9a0e5f3cab773946f3c|commit]], [[https://git.kernel.org/linus/5bbf953382bec6d3b7003e9389668c1d0863db31|commit]], [[https://git.kernel.org/linus/f21e93485bcbfa2753d1447b6198604a2c3d57be|commit]], [[https://git.kernel.org/linus/b30d61f4b12899101f754238f02069ff4d6161c2|commit]], [[https://git.kernel.org/linus/e7f40f4a701b67ada4a843bcc253711d8a34b1f1|commit]], [[https://git.kernel.org/linus/f20fe3ff82b321287ba59cab12e4f34eec9a7e10|commit]], [[https://git.kernel.org/linus/83836eb4df75d9d0bfb1a5c508130658b8d13244|commit]], [[https://git.kernel.org/linus/550130a0ce303f7cd754c7067b0a971ca179db63|commit]] * Introduce new DCB rewrite table [[https://git.kernel.org/linus/34b7074d3fba0d3f3ca8c66b6105b7f575e77e98|commit]], [[https://git.kernel.org/linus/30568334b657e77629293dd88a35d9c21b3258fb|commit]], [[https://git.kernel.org/linus/622f1b2fae2eea28a80b04f130e3bb54227699f8|commit]], [[https://git.kernel.org/linus/1df99338e6d4e96178b68b3e17bab33e9f1eb628|commit]], [[https://git.kernel.org/linus/2234879f4ca127d5288046fe0469d9ac63988c0b|commit]], [[https://git.kernel.org/linus/246c77f666b434d4a08021cf24eb9260cf7f92a2|commit]] * devlink: code split and structured instance walk [[https://git.kernel.org/linus/f05bd8ebeb69c803efd6d8a76d96b7fcd7011094|commit]], [[https://git.kernel.org/linus/687125b5799cd5120437fa455cfccbe8537916ff|commit]], [[https://git.kernel.org/linus/e50ef40f9a9a35d8526d38e6b5a165178fa1857f|commit]], [[https://git.kernel.org/linus/623cd13b165486afaa2df706d49209392f3764ca|commit]], [[https://git.kernel.org/linus/2c7bc10d0f7b0f66d9042ed88bb3ecd588352a00|commit]], [[https://git.kernel.org/linus/214964a13ab56a9757d146b79b468a7ca190fbfb|commit]], [[https://git.kernel.org/linus/3015f8224961dbc701c7e0b9e74823289efbec0a|commit]], [[https://git.kernel.org/linus/20615659b514c8f94e9fef590e873b5ca673a49d|commit]], [[https://git.kernel.org/linus/8861c0933c78e3631fe752feadc0d2a6e5eab1e1|commit]], [[https://git.kernel.org/linus/a0e13dfdc391dfb2a9b165e2475fb1796c9be98d|commit]], [[https://git.kernel.org/linus/731d69a6bd13b7c0cdbd3607edfa681269d54828|commit]], [[https://git.kernel.org/linus/a8f947073f4ae489e8b9f3c19a17341cb260f660|commit]], [[https://git.kernel.org/linus/c9666bac537e0f98ce15ea57c5fb25fc0a9a29b1|commit]], [[https://git.kernel.org/linus/e4d5015bc11bcc5123ec8805d8c7f1e28a77a8a9|commit]], [[https://git.kernel.org/linus/07f3af66089e20fe439b219d3c9d3e68d964193f|commit]], [[https://git.kernel.org/linus/5ce76d78b99650c0b22f466060d8b75df9123511|commit]] * devlink: remove devlink features [[https://git.kernel.org/linus/fb8421a94c5613fee86e192bab0892ecb1d56e4c|commit]] * Use a dedicated kmem_cache for skb head allocs [[https://git.kernel.org/linus/115f1a5c42bdad9a9ea356fc0b4a39ec7537947f|commit]], [[https://git.kernel.org/linus/65998d2bf857b9ae5acc1f3b70892bd1b429ccab|commit]], [[https://git.kernel.org/linus/5c0e820cbbbe2d1c4cea5cd2bfc1302c123436df|commit]], [[https://git.kernel.org/linus/bf9f1baa279f0758dc2297080360c5a616843927|commit]] * RPCSEC GSS krb5 enhancements [[https://git.kernel.org/linus/97648b94bd9dbb987fe7e4067deecdb47d4fd7e7|commit]], [[https://git.kernel.org/linus/f03640a1a9782f4bf7c1db63e2e6a9598c6d2c6e|commit]], [[https://git.kernel.org/linus/4be416a5f2803d421c950cc48e8e0c1eaaa8c773|commit]], [[https://git.kernel.org/linus/7f675ca7757bfeb70e19d187dc3be44deb836da8|commit]], [[https://git.kernel.org/linus/01c4e326327a635e1fac75b1aedd2c2c1e8123b5|commit]], [[https://git.kernel.org/linus/7989a4f4ab5437ec82b0b59984594f848f12b36a|commit]], [[https://git.kernel.org/linus/9f0b49f933ab1ec5e7140a43eec72b0c5181cabf|commit]], [[https://git.kernel.org/linus/2dbe0cac3cd6d747579b0b347145326eddfd4e5c|commit]], [[https://git.kernel.org/linus/8270dbfcebea5b68037a84ad1710e2cfa499b82f|commit]], [[https://git.kernel.org/linus/e01b2c79f4af1298b961116aba3e64367fe73286|commit]], [[https://git.kernel.org/linus/279a67cdd491a53028eb0b52508383098c6d992b|commit]], [[https://git.kernel.org/linus/bdb12fb157d8d6aea7becbe6eaacf6c7c9b73f5e|commit]], [[https://git.kernel.org/linus/4df750c924f405fe773771add507117a80ae6203|commit]], [[https://git.kernel.org/linus/17781b2ce41a8915163d7cdada021f809ccd49f0|commit]], [[https://git.kernel.org/linus/dfe9a123451a6e73306c988eab3dab12df001677|commit]], [[https://git.kernel.org/linus/d50b8152c992ac88c5f1f0cc8ade6ee0aa0a3704|commit]], [[https://git.kernel.org/linus/ae6ad5d0b7901b301234143e93624417ac9fd9ef|commit]], [[https://git.kernel.org/linus/2691a27d9b3e6a48adeb87a9dcf4e8a0ca84a26e|commit]], [[https://git.kernel.org/linus/ec4aaab39afcec749ff7ed78e560213ff9e1c23c|commit]], [[https://git.kernel.org/linus/8b3a09f3454240cb2c2ab3da02b86f354aab0bd6|commit]], [[https://git.kernel.org/linus/af664fc9023e69d1a90800c0f815c296bf727e18|commit]], [[https://git.kernel.org/linus/dfb632432a9b2548b5a4429598bb19edf58122f0|commit]], [[https://git.kernel.org/linus/a40cf7530d3104793f9361e69e84ada7960724f2|commit]], [[https://git.kernel.org/linus/fcbad14b585d706337f16300747069b34c77e630|commit]], [[https://git.kernel.org/linus/0d5b5a0f32dfc9be3521803aba53e856759f0250|commit]], [[https://git.kernel.org/linus/f26ec6b1b15c5d84e4c8e5b361e2be119def498d|commit]], [[https://git.kernel.org/linus/3394682fba3b9010c6147e94f37633f044876e5e|commit]], [[https://git.kernel.org/linus/45b4ef46b5e88ced7edd4fba26b5fa0e3103de0b|commit]], [[https://git.kernel.org/linus/6e6d9eee0e78b3d13018e0eb28102b67ad5a8e86|commit]], [[https://git.kernel.org/linus/6e460c230d2dfb0e5a02b6e0995546bb4b9d208e|commit]], [[https://git.kernel.org/linus/eebd8c2d1978f5cb6e76e4e3045220b67548cb79|commit]], [[https://git.kernel.org/linus/ddd8c1f975ee7c2fc60ea836540b5b10f97ac919|commit]], [[https://git.kernel.org/linus/6eb6b8a446a174586427d1a0ab0f7635b05b44f7|commit]], [[https://git.kernel.org/linus/e1a9a3849dff9cd980fdccaa8f09cf9226f46a3a|commit]], [[https://git.kernel.org/linus/35f6e42e813e51fb3a40f74f23a99aa330254ce8|commit]], [[https://git.kernel.org/linus/02142b2ca8fc10d7771b650780ae082369632dc0|commit]], [[https://git.kernel.org/linus/b958cff6b27b763b824ed6eefb28979d8f459bf4|commit]], [[https://git.kernel.org/linus/003caf4f8c6af53ac48759669f0bd0dd7f69e6f5|commit]], [[https://git.kernel.org/linus/4d2d15c0f1e05ef2478d4891b79570a87c5dd1a6|commit]], [[https://git.kernel.org/linus/c4a9f0552cf682489d370adccf2f3ee11a8ff272|commit]] * sched * Allow offloading of UDP NEW connections via act_ct [[https://git.kernel.org/linus/29744a10c59ede4f996c0c893127ac11bcc85c0c|commit]], [[https://git.kernel.org/linus/0eb5acb16418898c3d813e2c2d59a7ea7763a824|commit]], [[https://git.kernel.org/linus/8f84780b84d645d6e35467f4a6f3236b20d7f4b2|commit]], [[https://git.kernel.org/linus/1a441a9b8be8849957a01413a144f84932c324cb|commit]], [[https://git.kernel.org/linus/d5774cb6c55c8721c2daf57cc5e5345e3af286ea|commit]], [[https://git.kernel.org/linus/6a9bad0069cf306f3df6ac53cf02438d4e15f296|commit]], [[https://git.kernel.org/linus/df25455e5a489764508942b77b77de8f550e92cd|commit]] * Add new attr TCA_EXT_WARN_MSG to report tc extact message [[https://git.kernel.org/linus/0349b8779cc949ad9e6aced32672ee48cf79b497|commit]] * cls_api: Support hardware miss to tc action [[https://git.kernel.org/linus/db4b49025c0c7116f1d2dfe8d5bbfc983ac054de|commit]], [[https://git.kernel.org/linus/80cd22c35c9001fe72bf614d29439de41933deca|commit]], [[https://git.kernel.org/linus/08a0063df3aed8d76a4034279117db12dbc1050f|commit]], [[https://git.kernel.org/linus/606c7c43d08c4daf954ec8d58ae6dd39292fb457|commit]], [[https://git.kernel.org/linus/03a283cdc8c80fd6002f8ab898ff5ccf78e33f95|commit]], [[https://git.kernel.org/linus/93a1ab2c545b88fa70f8c91b60b54e4175008742|commit]], [[https://git.kernel.org/linus/235ff07da7ec2e5addcee68a366ac987571b4d7c|commit]], [[https://git.kernel.org/linus/6702782845a5bf381a19b204c369e63420041665|commit]] * mqprio: allow reverse TC:TXQ mappings [[https://git.kernel.org/linus/d7045f520a74eac28d54fa96cc020c5344baea98|commit]] * Retire some tc qdiscs and classifiers [[https://git.kernel.org/linus/051d442098421c28c7951625652f61b1e15c4bd5|commit]], [[https://git.kernel.org/linus/fb38306ceb9e770adfb5ffa6e3c64047b55f7a07|commit]], [[https://git.kernel.org/linus/bbe77c14ee6185a61ba6d5e435c1cbb489d2a9ed|commit]], [[https://git.kernel.org/linus/8c710f75256bb3cf05ac7b1672c82b92c43f3d28|commit]], [[https://git.kernel.org/linus/265b4da82dbf5df04bee5a5d46b7474b1aaf326a|commit]] * Netfilter updates for net-next [[https://git.kernel.org/linus/f71cb8f45d092a1805e9ad474b6c6a17219cede5|commit]], [[https://git.kernel.org/linus/50bfbb8957abebc2359220d7c1e4663994461b36|commit]], [[https://git.kernel.org/linus/4883ec512c1715fc827557f0e2bfce76c6530757|commit]], [[https://git.kernel.org/linus/2a2fa2efc65fb4d96bdcde819473943fb90ec28b|commit]], [[https://git.kernel.org/linus/9db5d918e2c07fa09fab18bc7addf3408da0c76f|commit]], [[https://git.kernel.org/linus/d8d76062785548167cbc01eb5aaae2ae0665b5da|commit]], [[https://git.kernel.org/linus/2032e907d8d498fcabfe24b43550c50947817c6d|commit]], [[https://git.kernel.org/linus/d9e7891476057b24a1acbf10a491e5b9a1c4ae77|commit]], [[https://git.kernel.org/linus/f80a612dd77c4585171e44a06b490466bdeec1ae|commit]] * raw: add drop reasons and use another hash function [[https://git.kernel.org/linus/8d8ebd77f5ede7ff9e3072653221706655924191|commit]], [[https://git.kernel.org/linus/42186e6c00352ce9df9e3f12b1ff82e61978d40b|commit]], [[https://git.kernel.org/linus/6579f5bacc2c4cbc5ef6abb45352416939d1f844|commit]] * Add support for per action hw stats [[https://git.kernel.org/linus/8f2ca70c07f4cee68ed6297c1876c28b73c9af21|commit]], [[https://git.kernel.org/linus/3320f36fd8ad45312c98857d36ecbef90f829497|commit]], [[https://git.kernel.org/linus/ac7d27907d5445d0accaf998e1dc3ea570ed1ba6|commit]], [[https://git.kernel.org/linus/d307b2c6f962ad5d83d7a7df71c2e9c9e4106d82|commit]], [[https://git.kernel.org/linus/5246c896b805b043a87fa78af32a33cbce00de05|commit]], [[https://git.kernel.org/linus/e9d1061d87276d3397157ea947fa28374dcbf974|commit]], [[https://git.kernel.org/linus/cca7eac13856e75306bbdefb1673bcd0310d9abc|commit]], [[https://git.kernel.org/linus/d13674b1d14c68339173db5dd39c4ab0949234e7|commit]], [[https://git.kernel.org/linus/2b68d659a704abaa61fb3255776b5483bdc4eb35|commit]] * seg6: add PSP flavor support for SRv6 End behavior [[https://git.kernel.org/linus/525c65ff5696f7ccd8335edde1d9964420707910|commit]], [[https://git.kernel.org/linus/bdf3c0b9c10b44c9355dd68f359bad25489445b6|commit]], [[https://git.kernel.org/linus/5198cb408fcfc0b49c418314570423efe2217754|commit]] * taprio automatic queueMaxSDU and new TXQ selection procedure [[https://git.kernel.org/linus/ecc0cc98632ac80ead7821997fdd5ad9cdede9de|commit]], [[https://git.kernel.org/linus/1638bbbe4ececa615b273497d347d59ad71060a2|commit]], [[https://git.kernel.org/linus/92f966674f6a257eddfa60a85f9b6741d6087ccb|commit]], [[https://git.kernel.org/linus/4c22942734f0814d3c928c25a80f48df0a6ce45e|commit]], [[https://git.kernel.org/linus/2f530df76c8cb5551d7d9395c77eb02282c3dc68|commit]], [[https://git.kernel.org/linus/a306a90c8ffe1c4a29f8e8a1221d1c000e58a410|commit]], [[https://git.kernel.org/linus/e5517551112ff2395611e552443932152f83672d|commit]], [[https://git.kernel.org/linus/d2ad689dec10d4f61647f6963e2c94113049ed6c|commit]], [[https://git.kernel.org/linus/a1e6ad30fa193962b5aa61ea4d12ee83a7ce9020|commit]], [[https://git.kernel.org/linus/1f62879e36324d710dfd5ab92833fb1c51d8334a|commit]], [[https://git.kernel.org/linus/a3d91b2c6f6b8ef88785bf8d2fba74916af6c7c5|commit]], [[https://git.kernel.org/linus/a878fd46fe43ec97f3f8664173fe1d23984c3453|commit]], [[https://git.kernel.org/linus/fed87cc6718ad5f80aa739fee3c5979a8b09d3a6|commit]], [[https://git.kernel.org/linus/2d5e8071c47a03218f3f658ed13b8a9ff703b396|commit]], [[https://git.kernel.org/linus/39b02d6d104a285836d98be2ad00c7f484d43a16|commit]] * sysctl: expose all net/core sysctls inside netns [[https://git.kernel.org/linus/6b754d7bd007c5f68fbb2d9abd5c00d253b033d0|commit]] * wifi * cfg80211: Authentication offload to user space for MLO connection in STA mode [[https://git.kernel.org/linus/9a47c1ef5a95d1fd229ee5e375985f809a9d8177|commit]] * nl80211: Allow authentication frames and set keys on NAN interface [[https://git.kernel.org/linus/9b89495e479c5fedbf3f2eca4f1c4e9dd481265e|commit]] * nl80211: emit CMD_START_AP on multicast group when an AP is started [[https://git.kernel.org/linus/77669c151f1de6de2eaa28d7efdf387d39208309|commit]], [[https://git.kernel.org/linus/cba7217a9269e0c43cb858bdca33b291d6442068|commit]] * v4: Puncturing support in AP mode [[https://git.kernel.org/linus/b25413fed3d43e1ed3340df4d928971bb8639f66|commit]], [[https://git.kernel.org/linus/d7c1a9a0ed180d8884798ce97afe7283622a484f|commit]], [[https://git.kernel.org/linus/b345f0637c0042f9e6b78378a32256d90f485774|commit]], [[https://git.kernel.org/linus/2cc25e4b2a04cdd90dbb2916678745565cc4aeed|commit]] * mac80211: Allow NSS change only up to capability [[https://git.kernel.org/linus/57b341e9ab13e5688491bfd54f8b5502416c8905|commit]] * Support higher length KCK key in GTK offload [[https://git.kernel.org/linus/df4969ca135b9b3b2c38c07514aaa775112ac835|commit]], [[https://git.kernel.org/linus/648fba791cb0f5ef6166449d056f82e6639fe268|commit]] * Support minimal EHT rate reporting on RX [[https://git.kernel.org/linus/f66c48af7a110c0d694c4ac4a1257affb272a2ea|commit]] * xdp: introduce xdp-feature support [[https://git.kernel.org/linus/d3d854fd6a1d97157f790604e07f6386e8df8fe4|commit]], [[https://git.kernel.org/linus/66c0e13ad236c74ea88c7c1518f3cef7f372e3da|commit]], [[https://git.kernel.org/linus/0ae0cb2bb22eb8cf943fa07137068347e1b918c4|commit]], [[https://git.kernel.org/linus/8f1669319c31dcdd07ae292822c9455aeb3bc7c7|commit]], [[https://git.kernel.org/linus/04d58f1b26a436c429581d286528ea3c01624462|commit]], [[https://git.kernel.org/linus/b9d460c9245541b13de2369e79688f8e0acc0c3d|commit]], [[https://git.kernel.org/linus/84050074e51b68e6f1d3e89ebe8f8f6d73472ec3|commit]], [[https://git.kernel.org/linus/4dba3e7852b7717a20ba206ab23ad289a0a5c504|commit]] * ethtool support for IEEE 802.3 MAC Merge layer [[https://git.kernel.org/linus/7c494a7749a7d6ee95cfae6a8c109c5d63103d88|commit]], [[https://git.kernel.org/linus/2b30f8291a30305eeedcd787b4d0e352410f7268|commit]], [[https://git.kernel.org/linus/3700000479f000c1254a53182b4b2c5b184ff171|commit]], [[https://git.kernel.org/linus/04692c9020b76939715d6f2b4ff84d832246e0fc|commit]], [[https://git.kernel.org/linus/c319df10a4c854bb2e1085c01e7a9f1dadd810a2|commit]], [[https://git.kernel.org/linus/449c5459641ad72a504884abb9fb9b19ee31397b|commit]], [[https://git.kernel.org/linus/dd1c41645039d3820a7dde40e11f601c56240c40|commit]], [[https://git.kernel.org/linus/5f6c2d498ad97cf9f85b81c0fbb205abbcdfe3f8|commit]], [[https://git.kernel.org/linus/1a733bbddfad466e2561acc8d86b9e5df2985c95|commit]], [[https://git.kernel.org/linus/497eea9f8ed5987ade08e23725fdb0f25cd2ffcd|commit]], [[https://git.kernel.org/linus/ab3f97a9610a8d90dc9934517e82c3272d4e98a0|commit]], [[https://git.kernel.org/linus/6505b68056558357dc979d11921ed45cfd68ed69|commit]] * sched, net: NUMA-aware CPU spreading interface [[https://git.kernel.org/linus/9feae65845f7b16376716fe70b7d4b9bf8721848|commit]], [[https://git.kernel.org/linus/06ac01721f7d07da722abe0ec6f147b90bfc8c77|commit]], [[https://git.kernel.org/linus/2acda57736de1e486036b90a648e67a3599080a1|commit]] * xdp: hints via kfuncs [[https://git.kernel.org/linus/a4aeb9d6565e4211ca55f601aeb0b3492d8131af|commit]], [[https://git.kernel.org/linus/9d03ebc71a027ca495c60f6e94d3cda81921791f|commit]], [[https://git.kernel.org/linus/f1fc43d03946d6a2f3dcb05e8c0b874bdf1333c5|commit]], [[https://git.kernel.org/linus/89bbc53a4dbbbdd65962d4bbaeba6c7775ea0bf7|commit]], [[https://git.kernel.org/linus/2b3486bc2d237ec345b3942b7be5deabf8c8fed1|commit]], [[https://git.kernel.org/linus/40535704624e980a560fd68635d98c2984ded572|commit]], [[https://git.kernel.org/linus/3d76a4d3d4e591af3e789698affaad88a5a8e8ab|commit]], [[https://git.kernel.org/linus/fd7c211d6875013f81acc09868effe199b5d2c0c|commit]], [[https://git.kernel.org/linus/fefb695a745f10247fd68f5561e6e3d85e1d7b59|commit]], [[https://git.kernel.org/linus/306531f0249f4e1c1aabaa0d70d24a1e9c71e38b|commit]], [[https://git.kernel.org/linus/e2a46d54d7a100c79c9d645184db9ce594c8f5f6|commit]], [[https://git.kernel.org/linus/4444584dcb0d096bc0477249b8a6034ca5933c96|commit]], [[https://git.kernel.org/linus/ab46182d0dcb3a85fb31684246d626192c4a64da|commit]], [[https://git.kernel.org/linus/94ecc5ca4dbf1f01bae6e32f5cd88c0fc5dc3cc9|commit]], [[https://git.kernel.org/linus/384a13ca8a5d4deab94ef8f7652472db26b4e892|commit]], [[https://git.kernel.org/linus/bc8d405b1ba92b9a71f9a94f3c08906e9d8c452c|commit]], [[https://git.kernel.org/linus/297a3f1241550f6969f65a5efeee9162241daae5|commit]] * add tx packets aggregation to ethtool and rmnet [[https://git.kernel.org/linus/31de2842399ae68c4b2887ffeaedebb7934f343e|commit]], [[https://git.kernel.org/linus/64b5d1f8f2d1b3f039cfb0dd8035892015543e58|commit]], [[https://git.kernel.org/linus/db8a563a9d9024adee53c8547fea40f8743b16c3|commit]] = Architectures = == ARM == * Device Tree Sources * Two new 32-bit !SoCs are added, both are quad-core Cortex-A7 chips from Rockchips: RV1126 [[https://git.kernel.org/linus/d7ffb4c3085936c4f83e2f7a25c35a09a91c5563|commit]], [[https://git.kernel.org/linus/b3cbfb7927922e4586f890a70a22f13130247b4e|commit]], [[https://git.kernel.org/linus/0fa22d06d1d8edc64df782a8650533572bd3cfae|commit]], [[https://git.kernel.org/linus/5496d2793e088af0bd9b3730866ead738f731803|commit]], [[https://git.kernel.org/linus/7fc7215c46766d814e51d2fda58b7aec47318ccc|commit]], [[https://git.kernel.org/linus/765f8bb2127709505f5d905821c4d1beac6dcb2e|commit]], Vision SoC with an NPU used in the Edgeble Neural Compute Module 2(Neu2) board [[https://git.kernel.org/linus/c973953e6a5be0369ff9704f0bbca9502b25c172|commit]], [[https://git.kernel.org/linus/2ec8afbc91faef6825548ae4e0ae3274a1a7b884|commit]], while RK3128 is design for TV boxes and so far only comes with a dts for its refernece design [[https://git.kernel.org/linus/ea02e2113d804800b428c0d738c438a3380fe0fc|commit]], [[https://git.kernel.org/linus/a0201bff625964af99c6c495c7bd3da35b4b87fd|commit]], [[https://git.kernel.org/linus/51a0b607c0db8dd83b3f8b94a42b3434a7bccb71|commit]] * Other 32-bit boards, two ASpeed AST2600 based BMC boards (Ufispace NCPLite platform device tree [[https://git.kernel.org/linus/28cfb03afcb20a841e96e821ba20870a7c437034|commit]], [[https://git.kernel.org/linus/4fa180f7fc1921e235f80e4672c80b560b4946c7|commit]], [[https://git.kernel.org/linus/64e4f2412f548a8537b9da44267f7490e294edf8|commit]], Facebook Greatlakes platform [[https://git.kernel.org/linus/abe38831a5ff77336df008cbc831d7302bb51e14|commit]], [[https://git.kernel.org/linus/c3769d87f3fc1773dfadbeb63f4e3b3110159587|commit]]), the Microchip sam9x60_curiosity development board (Armv5 based! [[https://git.kernel.org/linus/250d6747fdd8f347cebd81f9fa932b75a841cea2|commit]], [[https://git.kernel.org/linus/84f23f3284d5e7c85d9240382b536c4aaea90469|commit]], [[https://git.kernel.org/linus/35052e8bc848399592905bd8dd4d239e19c51436|commit]], [[https://git.kernel.org/linus/bfbde8f751cc2a9bbc184853066c927173d147df|commit]], [[https://git.kernel.org/linus/4be5375b3c351b5c3d7d54d7a9b541d7c589bf94|commit]], [[https://git.kernel.org/linus/99c8083358772362bcf157b752cec9a00445d97a|commit]], [[https://git.kernel.org/linus/6f712a3081c952f75f55414695902263d70628eb|commit]], [[https://git.kernel.org/linus/3048a4deee801c549259fe044f71a3fcd55591a8|commit]]), the Enclustra PE1 FPGA-SoM baseboard ([[https://git.kernel.org/linus/fc8070ec9c50008373b84a447fdfad2bea3d4cc7|commit]], [[https://git.kernel.org/linus/2d050f06485ae987ba57da33bc4f7dccd4fd7485|commit]]), and a few more boards for i.MX53 and i.MX6ULL (below). * New SoC: Qualcomm SM8550 (Snapdragon 8 Gen 2) for mobile phones [[https://git.kernel.org/linus/bf1e263b2582b6077e63891278691fe8c15b7b4b|commit]], [[https://git.kernel.org/linus/ffc50b2d382879b237f2667f5f02ac48e42ffd32|commit]], [[https://git.kernel.org/linus/89565d8f546832b0c097660cb740d51752391f3b|commit]], [[https://git.kernel.org/linus/2e9686d1948af21450b3e0da80fb3ad59937aaca|commit]], [[https://git.kernel.org/linus/9543f989c244686e9c578812480b0dc622aab258|commit]], [[https://git.kernel.org/linus/8ba6d5d8f11eda942bd060581ff478b95207aab2|commit]], [[https://git.kernel.org/linus/d6056ec543daab9482682c9440cf2dfd5b3d0469|commit]], [[https://git.kernel.org/linus/e9c0a4e48489c50e71e8cf956eb08b5e5421da12|commit]], [[https://git.kernel.org/linus/4e7b112617a904b7d5c9db710f546c45f14408c2|commit]], [[https://git.kernel.org/linus/71342fb91eae160fa58c1f51c6d368d088b04cf6|commit]] * New SoC: Qualcomm QDU1000/QRU1000 5G RAN platform [[https://git.kernel.org/linus/6bd20c54b5895c44ca3e6775abf14ee2cfa9135b|commit]], [[https://git.kernel.org/linus/d1f2cfe2f669148791fbd057ad246f696a9e9715|commit]] * New SoC: Rockchips RK3588/RK3588s for tablets, chromebooks and SBCs [[https://git.kernel.org/linus/30b7fa3a98de79683d3e2b33d945a42554c00c32|commit]], [[https://git.kernel.org/linus/bbbd8872825310b14bc6e04250d2cb5edcd55edb|commit]], [[https://git.kernel.org/linus/d85f8a5c798d593366d0e0acdb6a547591a7aaff|commit]], [[https://git.kernel.org/linus/cf87691f143e6cc5727767b02ec2be3725534a5d|commit]], [[https://git.kernel.org/linus/999f0ec365f608c6c86e6af54de90574e360a876|commit]], [[https://git.kernel.org/linus/8f6594494b1cb0ad14493795b436413cfe64a0f8|commit]], [[https://git.kernel.org/linus/d1824cf9579924737da64b3eba5ad3129ad67f28|commit]], [[https://git.kernel.org/linus/a1d3281450ab24108631a8b0f7cd9f27de717e0e|commit]], [[https://git.kernel.org/linus/70f832206fe72e9998b46363e8e59e89b0b757bc|commit]], [[https://git.kernel.org/linus/86e1a8e1f9b555af342c53ae06284eeeab9a4263|commit]], [[https://git.kernel.org/linus/c6f361cba51c536e7a6af31973c6a4e5d7e4e2e4|commit]], [[https://git.kernel.org/linus/42573ab3b9f94fbeba8b84e142703ea551624f6d|commit]], [[https://git.kernel.org/linus/fdc33eba11c5919199f3d13dc53571cc7bf19d7d|commit]], [[https://git.kernel.org/linus/cc165ba48aaf7d792e99d0c7e4b12e9625bc73e3|commit]], [[https://git.kernel.org/linus/1fce2867c7cb147978b116953aa033880654089b|commit]], [[https://git.kernel.org/linus/306f74d278480e21ebbab01f88c68cd6c96eed41|commit]], [[https://git.kernel.org/linus/036e9cf35689b9f6a0d1bb8d34ec7ddf44714942|commit]], [[https://git.kernel.org/linus/ed1f77b78322e22421935ff93e5d6dbf19e50c39|commit]], [[https://git.kernel.org/linus/c9211fa2602b87849086dd061da78b5e2dee1f3c|commit]], [[https://git.kernel.org/linus/e904ca928a3f6d73df062da63a91e346e084a63a|commit]] * New SoC: TI !J784S4 for industrial and automotive applications [[https://git.kernel.org/linus/5e0a1e0d265cb11fca3464bbe9511740c46f759f|commit]], [[https://git.kernel.org/linus/a0c01bc565332cff9183bd8a17b4db94732d645d|commit]], [[https://git.kernel.org/linus/4664ebd8346adaa7530555a29b47392104b5ba6c|commit]], [[https://git.kernel.org/linus/e20a06aca5c9d2d68354c340f96999d8dcb7128d|commit]] * Three Amlogic based development boards (Odroid-N2L [[https://git.kernel.org/linus/8280a4ea1d7dd1d635c1ecdb9375b156e83358b9|commit]], [[https://git.kernel.org/linus/379ae64609c7a3301b60483eb65bd8bc78f76328|commit]], [[https://git.kernel.org/linus/f1193c5c09b1bb6e214c804c7dd1c7fb07046631|commit]], Radxa Zero2 [[https://git.kernel.org/linus/229cfc6b16ccedfcae1ee10dc1aed04e7a85ed32|commit]], [[https://git.kernel.org/linus/d747e7f76a5fa6e3deb4c419df768f9ee49c2161|commit]], BPI-M2-PRO [[https://git.kernel.org/linus/856968e066bd77b113965f1a355ec7401edff65f|commit]], [[https://git.kernel.org/linus/31752ffeece8b8dc2cf2be36614c8a4e8e8dcf57|commit]], [[https://git.kernel.org/linus/ca8dac3a019ac190c39365c99a632c0748c72f58|commit]], [[https://git.kernel.org/linus/bd2529aa41ccb93c2ffcb045ac97121711277fe0|commit]], [[https://git.kernel.org/linus/5bcfbee7d58d8512493b03b1d1622fe138d0aaee|commit]]) * Embedded machines based on NXP i.MX8MM and i.MX8MP (yavia carrier board [[https://git.kernel.org/linus/551460d15a05c2f4dfbb80deedcb1acb7437e165|commit]], [[https://git.kernel.org/linus/a1558dc19976e3d39e608c3d0904d1fee7f9b8cf|commit]], [[https://git.kernel.org/linus/b694fbe2ff40fedca0ef6f6649391f3c40e44df7|commit]], imx8mp-beacon-kit [[https://git.kernel.org/linus/25a5ccdce76753fc62c8668c53128791f2adfd8f|commit]], Debix Model A board devicetree [[https://git.kernel.org/linus/fdcf9d910a5fdbb468017d1b418a1f2d51901e79|commit]], [[https://git.kernel.org/linus/2da3647e2363d4eaaf9bd57da5c3bdc7b6d44f4a|commit]], [[https://git.kernel.org/linus/c86d350aae68e0e3c81d49454953a844c194deff|commit]]) * The Mediatek mt7986a based Banana Pi R3 router [[https://git.kernel.org/linus/8b3c08aa648e6669c0bcd34a727f819b844fd684|commit]], [[https://git.kernel.org/linus/e21cbfc3d93177069260552b4706ba8def759030|commit]], [[https://git.kernel.org/linus/2a81a7aa420b80865fdd82ec383fe365e18f922b|commit]], [[https://git.kernel.org/linus/513b49d19b34cf7bec4bc0e6284df2aa9007e88d|commit]], [[https://git.kernel.org/linus/918aed7abd2d554f33e51fffefa8172b93a36f56|commit]], [[https://git.kernel.org/linus/8e01fb15b8157a825d309ea2598b494dd81a7b42|commit]] * Six tablets based on Qualcomm MSM8916 (Snapdragon 410) (msm8916-gplus-fl8005a [[https://git.kernel.org/linus/d7a2d86837b9de8d378f040cfc9184905d82bd78|commit]], [[https://git.kernel.org/linus/cb12cc2d46ccf45345bbf29bcb35bee54a54bc86|commit]], [[https://git.kernel.org/linus/662a90c4e72579967cb682fb6b4c6f061cc00ab9|commit]], [[https://git.kernel.org/linus/143b4b845f58380a334cc0b9242567e602233743|commit]], [[https://git.kernel.org/linus/599a259a4b3b6c0d4c4b51d9e58408ac6de779f0|commit]], msm8916-acer-a1-724 [[https://git.kernel.org/linus/17c073500e9060281a115e34b00424d486be9450|commit]], [[https://git.kernel.org/linus/0fbf49b3eac98495c1c75ea16019e5613cda109b|commit]], [[https://git.kernel.org/linus/85e0a0f8bfa42dc05b7d89798df6fbc2c13147a6|commit]], [[https://git.kernel.org/linus/7b8847e9d56f5e397b37df63f271f3166a09f3a8|commit]], msm8916-samsung-j5 [[https://git.kernel.org/linus/293b993b3cad3026d062616b188f8b59fdd9d41c|commit]], [[https://git.kernel.org/linus/66e9ba516be3c165b1adf86ed2bd7e2ec4a3b578|commit]], [[https://git.kernel.org/linus/4414bdf9c56513f6f706bc936cb9e35126ac8773|commit]], [[https://git.kernel.org/linus/027523b77c0cecf4e4afbb7c587aaa10fd33b510|commit]], [[https://git.kernel.org/linus/83a54e61b2bdfd81865bee12033b1d9d5af0016f|commit]], SM6115 (Snapdragon 662) (Lenovo Tab P11 J606F/XiaoXin Pad dts [[https://git.kernel.org/linus/67e75cfea375b5eca42a8d41b927fa195e723fe6|commit]]) and SM8250 (Snapdragon 865) (Xiaomi Mi Pad 5 Pro (xiaomi-elish) [[https://git.kernel.org/linus/33e4a5b5134c37f37cbba8072c609aa756a6a925|commit]], [[https://git.kernel.org/linus/a41b617530bf07e584b18b4ec390d0e39d95c796|commit]]) * LTE dongles, also based on MSM8916 (msm8916-thwc [[https://git.kernel.org/linus/4a7257f0a7a4b33bc53075497e305b8988e257d3|commit]], [[https://git.kernel.org/linus/a91dca40c5340e206623f114862e1f4efb2bd339|commit]], [[https://git.kernel.org/linus/faf69431464b95a99d74c29cf93497ab64a00ec8|commit]])) * Seven mobile phones, based on Qualcomm MSM8953 (Snapdragon 610), SDM450 and SDM632 [[https://git.kernel.org/linus/ce77819ac850bbc2308fe89788aacd7cca9c080b|commit]], [[https://git.kernel.org/linus/eca9ee35e895686d179964dc6f94e6c473d2a171|commit]], [[https://git.kernel.org/linus/eee5a89b4fe5615ba57fd8048102504aaa052065|commit]], [[https://git.kernel.org/linus/4ccd0dd6a3d2a98b11664992012af04cb0ce8f6c|commit]], [[https://git.kernel.org/linus/38d779c26395df5f7f66bb5da7af6241180283e1|commit]], [[https://git.kernel.org/linus/c144005129b09141b292820d35f0094e54b12d6d|commit]], [[https://git.kernel.org/linus/cf152c05eb35afc9db3c9480ce17b27a703b2893|commit]], [[https://git.kernel.org/linus/aa17e707e04a0446de5e40f74aac979582185559|commit]], [[https://git.kernel.org/linus/3176c4d6b9beba4a554bebba6b19b56942705a28|commit]] * Three chromebooks based on Qualcomm SC7280 (Snapdragon 7c) [[https://git.kernel.org/linus/3219c9b28e7b97abdbed7abc514c259479618b63|commit]], [[https://git.kernel.org/linus/f6df873315f921581e430f731c430d1d6d234234|commit]], [[https://git.kernel.org/linus/c9e625bcf67472aee5c3b0d6bdabbe8f8be52f06|commit]], [[https://git.kernel.org/linus/f816cda0ab2b0250e225dfda41c107733a74faf7|commit]] * Development boards based on Rockchips RK3588, RK3568, RK3566 and RK3328 [[https://git.kernel.org/linus/a5079a534554f67b9189359dc9cc0042a427cd7e|commit]], [[https://git.kernel.org/linus/3d9a2f7e7c5e55f59748b10cb1d0b5c145cf4a39|commit]], [[https://git.kernel.org/linus/ae9fbe0b1f9658d445d9e4049e2949b2ab141af1|commit]], [[https://git.kernel.org/linus/2bf2f4d9f673013a58109626b87329310537a611|commit]], [[https://git.kernel.org/linus/8d94da58de534634c835f22a43070f56caa2fcb6|commit]], [[https://git.kernel.org/linus/1e83f6bfaf84d9e0bcb221304bb47e74c0e80924|commit]], [[https://git.kernel.org/linus/43ba22818788f5a8fff5b1feaa329fa4991a3225|commit]], [[https://git.kernel.org/linus/096ebfb74b19f2d4bdcbc33ae02e857ff4b3e0a0|commit]], [[https://git.kernel.org/linus/7469ab529bcad50490f6ff651c3e4f03bfa88fe0|commit]],s [[https://git.kernel.org/linus/51712e1d014aaaa4c6e1e7e84932d58b5c0f59ed|commit]] * Five development machines based on TI K3 (AM642/AM654/AM68/AM69) [[https://git.kernel.org/linus/86fc17d8495e7c221283267519561ea04a44f7b4|commit]], [[https://git.kernel.org/linus/c48ac0efe6d71050f635b40116ba714961ad9d4c|commit]], [[https://git.kernel.org/linus/12f0158f3e986d51fccf36300a53c1d764b32b38|commit]], [[https://git.kernel.org/linus/31170b8c028fe8bc60e9f4daed4eed3a2196de4b|commit]], [[https://git.kernel.org/linus/175357d1deedfacba8770edc706c6d96c8a09b2b|commit]], [[https://git.kernel.org/linus/73b1c4f5f53e531f75d4b65dec4784cf67e685f2|commit]], [[https://git.kernel.org/linus/2b6277b76d42cbb781c558ea982e23cd770dd363|commit]], [[https://git.kernel.org/linus/a266c180b398eab5030bdcf2d1bbdc62fb7fc9c1|commit]], [[https://git.kernel.org/linus/635fb18ba00893f4d9ca468326277d445533f05e|commit]] * Add support for Samsung Galaxy tab A (2015) tablets [[https://git.kernel.org/linus/d3f5468472d3bdf2bd6e66aaca42e66ec00668b1|commit]], [[https://git.kernel.org/linus/7cc406151a99ec1643ed8bf3c52fa5fbdf74238f|commit]], [[https://git.kernel.org/linus/41adc65ca5a4a3a651def2ae84ccbef7eed7cb24|commit]] * qcom: sm8450-hdk: enable HDMI output [[https://git.kernel.org/linus/a5ac24ba17590866cf1ff8fe44cd2738c003d52f|commit]], [[https://git.kernel.org/linus/a6dd1206e45a43d7e6c46435437307b051471b69|commit]], [[https://git.kernel.org/linus/928a7b4269634369b152342a37b2809d18774726|commit]], [[https://git.kernel.org/linus/0cbe8e1953e083f8435bdb5548c3ba59acfcb97e|commit]], [[https://git.kernel.org/linus/0f48b65f716b4fa806fa864ea7f750113f4bd7c9|commit]] * dts: qcom: Add ADSP, CDSP & MDSS support to SM8550 and MTP board [[https://git.kernel.org/linus/2e3790de9b18f1e4761e44332ee50f4147282152|commit]], [[https://git.kernel.org/linus/d0c061e366ed55ba81ee11a7b648d4c87ebc8517|commit]], [[https://git.kernel.org/linus/6c409f633f2373adf6815365876a206d7919fca2|commit]] * Enable Display for SM8350 [[https://git.kernel.org/linus/62d1449d7afb93822d929afc8fa5d309b3ff9cba|commit]], [[https://git.kernel.org/linus/430e11f42bff4518577bfbb0263cd10908d61e1e|commit]], [[https://git.kernel.org/linus/0e91bcbb0016150124a99bd97d34b97615750f10|commit]], [[https://git.kernel.org/linus/7eb75dbd62eb61695cffa31f0aa6311c25681906|commit]], [[https://git.kernel.org/linus/1e9b35fbb8c8a34677c1acd1b13e24a2560889ae|commit]], [[https://git.kernel.org/linus/638b7ada91f93d61cb65774dcb6ff2b7dcae3627|commit]], [[https://git.kernel.org/linus/4f287e31ff5f464526651ee3cb3fd3e96b2e5746|commit]], [[https://git.kernel.org/linus/d4a4410583edc065f8f311bdb642cf8f23c8e97e|commit]], [[https://git.kernel.org/linus/ea9df63f0f23bffc1b8840104d683015f5fa82d4|commit]], [[https://git.kernel.org/linus/d96d8f9192be33454ff3fa95a380c836b3008610|commit]] * renesas: Simple-Card / Audio-Graph-Card/Card2 dts for ULCB/KF [[https://git.kernel.org/linus/9e72606cd2db5a19cdd52834818d2d72eaac08a6|commit]], [[https://git.kernel.org/linus/baa19ec4c6311ce2573d5eb198d7a24788636cb9|commit]], [[https://git.kernel.org/linus/3e2db2c2418d5373205f7214ff1ef4e70aafefe1|commit]], [[https://git.kernel.org/linus/62661f3b076e35de5d68593a2bde54e9cefdd85e|commit]], [[https://git.kernel.org/linus/15ec87e017d36afc0b39a91b62b32511a84fb171|commit]], [[https://git.kernel.org/linus/ccb26ac5e7dbc28a0d957ea4e911345b74c768c6|commit]] * Add support for !EmbedFire !LubanCat 2 [[https://git.kernel.org/linus/7b1aa1613edc57dc505aaa91df4bf321e87d209c|commit]], [[https://git.kernel.org/linus/cdf46cdbabfce6f1fa2843be7c396bc8bcff97e8|commit]] * imx6ull-dhcom: Add DH electronics DHCOM i.MX6ULL SoM support [[https://git.kernel.org/linus/0eb01eae0c95f3a81ffcb124908b2ffeb6a9028a|commit]], [[https://git.kernel.org/linus/611b6c891e403b099d39717afa3d098712b58473|commit]], [[https://git.kernel.org/linus/bae9847e120aee3a101fb3e42f9ac131d93351ac|commit]], [[https://git.kernel.org/linus/addaaf0a18b7964913a289f5933f618974a408b3|commit]] * imx: Add support for SK-iMX53 board [[https://git.kernel.org/linus/50e2a2f4f2fd5f06f614fad315bb11826e571f31|commit]], [[https://git.kernel.org/linus/e2d780aa362f0515547479371c7aef334ecebd75|commit]], [[https://git.kernel.org/linus/0b8576d8440aa275ae2758a60982b177e8c54ec1|commit]] * ARM: remove unused davinci board & drivers [[https://git.kernel.org/linus/2af4fcc0d3574482c73c34274eea63bac5518d48|commit]], [[https://git.kernel.org/linus/c3848db316d51dcc0fb10554151b1e7e8ff8c3e2|commit]], [[https://git.kernel.org/linus/dec85a95167a98a4e237df11e234eed8ee718e78|commit]], [[https://git.kernel.org/linus/f47f51f4665c8ae5501bb7b8f6a53119834fbf32|commit]], [[https://git.kernel.org/linus/32fee1df51109a117eb5063e950c372278688098|commit]], [[https://git.kernel.org/linus/3c9cb34939fbca1f7fd451b0afa4108e282ee411|commit]], [[https://git.kernel.org/linus/97e78b64d138021c837a30bfa78201caf27c16b9|commit]], [[https://git.kernel.org/linus/efe81e9a92733253bb44b7b70e41e04131d09ef6|commit]], [[https://git.kernel.org/linus/fa8dede4d0a0c6c36e361703af5726ef674e83f3|commit]], [[https://git.kernel.org/linus/582603a957343430cc519539d5dcaa0a0bb1327a|commit]], [[https://git.kernel.org/linus/eeee6973935357c96715deb3829058dbea8803f0|commit]] * rockchip: add Hynitron cst340 for Anbernic 353 series [[https://git.kernel.org/linus/31a47014902d7fe1da9028336b6f189648ec28ac|commit]] * cns3xxx: remove entire platform [[https://git.kernel.org/linus/e73307b9ebc4ecb02df60be441a541c37dbdce7a|commit]] * exynos: Add Samsung Galaxy S5 (SM-G900H) board [[https://git.kernel.org/linus/75b976c46cbe13dc8accc1173ceee6faddb83112|commit]] * sa1100, mmp: drop unused board files [[https://git.kernel.org/linus/8faf91c48ca20c714e0dd8cc5f510e3819852912|commit]], [[https://git.kernel.org/linus/9a9e1be12c6d49e15429311714c4b1cc4ddcfe55|commit]], [[https://git.kernel.org/linus/1ff45e6da54fc66ab2f9b4d3b202b29d1a706e01|commit]], [[https://git.kernel.org/linus/349619f064f9f75cfb6b698e7268cf5971ffe145|commit]], [[https://git.kernel.org/linus/90ca4d9015eca4e9fd5a18e4572d419682e8f396|commit]], [[https://git.kernel.org/linus/06f11dfb5b75acafdb86b50ac5c90b49716d9362|commit]], [[https://git.kernel.org/linus/028908f2ca6fc046a9932fb2d2f0409f4684ea41|commit]], [[https://git.kernel.org/linus/77acc85ce797a4a19a46c9677dec5a9910c6e4e7|commit]], [[https://git.kernel.org/linus/1027b4df8354c55a5ed538e391d4cf9c509b74a7|commit]] * omap1: remove osk-mistral add-on board support [[https://git.kernel.org/linus/21a3e6eed42367faed4a54332bba1545c67d0fc1|commit]] * pxa: remove all unused boards&drivers [[https://git.kernel.org/linus/d6df7df7ae5a0f781341134e7cb24e3396f8434a|commit]], [[https://git.kernel.org/linus/d711b8a2987a14577674f76f1b6c28d6d85db07a|commit]], [[https://git.kernel.org/linus/0ddc052416a3a34700b8a16bad02d31369419553|commit]], [[https://git.kernel.org/linus/8ca79aaad8becbda085e740c521a792f281c8a6d|commit]], [[https://git.kernel.org/linus/ce79f3a1ad5fceda6149d1511ae3d1e13f32c14f|commit]], [[https://git.kernel.org/linus/347651485af1f9111438fc12f9dbe2a79cc3c95b|commit]], [[https://git.kernel.org/linus/a677fe979670e66d0860bfca3a39ad6fb12262ee|commit]], [[https://git.kernel.org/linus/38943cbd25a24e7d14d68cfca07b9c98039fa683|commit]], [[https://git.kernel.org/linus/82d40986a6a34a83f9d4df35241ff109e9468c48|commit]], [[https://git.kernel.org/linus/119df5ee5b56392070936199857de4ddaabf0b89|commit]], [[https://git.kernel.org/linus/8f00ddfb7684fae69d2108991f9c72fcb72b3f5e|commit]], [[https://git.kernel.org/linus/7aeffbf2ddec5ef0f8b8690bd392e5dabbfed820|commit]], [[https://git.kernel.org/linus/b401d1fd805379344750dffb0e3938676a047a2a|commit]], [[https://git.kernel.org/linus/0f9b85edcae8b3a4511222592acec6697c018b90|commit]], [[https://git.kernel.org/linus/6388bbad4a26a765cdd310478ef077fbf7e6ea35|commit]], [[https://git.kernel.org/linus/8971bb812e3c14aa730e751ddf2d90c32e9dc519|commit]], [[https://git.kernel.org/linus/2e99b1b065fb9c6e771ce573cf6c2dbb52c14627|commit]], [[https://git.kernel.org/linus/bef64d2908e825c5782d7aef3c16d42540f0b79c|commit]], [[https://git.kernel.org/linus/aceae7848624a7c4055a90a3e5d849cc45cb8d37|commit]], [[https://git.kernel.org/linus/7244785e1f707d8a628814009d4b60189f45ba88|commit]], [[https://git.kernel.org/linus/89480065bc4ccacb470c9b8b4e4ac38fc2c2b005|commit]], [[https://git.kernel.org/linus/652719b1003a7509a8760fc55f0ff1940bc04310|commit]], [[https://git.kernel.org/linus/61d9420a213826e0088b6e377b55237f1c53887d|commit]] * s3c: clean out obsolete platforms [[https://git.kernel.org/linus/61b7f8920b176e3cb86c3b5e7c866261720a7917|commit]], [[https://git.kernel.org/linus/1ea35b355722675b3b654475a37898742731d016|commit]], [[https://git.kernel.org/linus/743c8fbb90ca4c02bdf4087fa9f1885ddd85041b|commit]], [[https://git.kernel.org/linus/cc146410f9a4abae417b476ea1631089c0ddd171|commit]], [[https://git.kernel.org/linus/0d297df03890c385195fcf827432eb44f5b5918d|commit]], [[https://git.kernel.org/linus/6bac4f78ea3d6daff0bb0b45eddeca441a999db6|commit]], [[https://git.kernel.org/linus/a0f831756b26f87e983dbdc291398dc097ff73b9|commit]], [[https://git.kernel.org/linus/4e9f616c002607874dedcef0750e8f473ac00a47|commit]], [[https://git.kernel.org/linus/d06dd30beb25b273d477a10ea204f595144c1174|commit]], [[https://git.kernel.org/linus/0b14558977a777780bb18c2e86609cb53fe3d05a|commit]], [[https://git.kernel.org/linus/594b3caeaf7938ce49a920b8fc835a67216ada28|commit]], [[https://git.kernel.org/linus/fa0d876fa1b815637b0acf476f3b3054c3528133|commit]], [[https://git.kernel.org/linus/7d1ec119e3c1ec060370f5dc58490b51368c554c|commit]], [[https://git.kernel.org/linus/1fa774f706a9cfa68bc7dea9e369be3af86fac93|commit]], [[https://git.kernel.org/linus/a7ddf74b784b57ec7c93b780ec8236dc6aa4db02|commit]], [[https://git.kernel.org/linus/014e79d7eccea9fe77da891fa04cde75db0af9c9|commit]], [[https://git.kernel.org/linus/f48fd50b03d2482dbcc2e672bdcf147984b5d955|commit]], [[https://git.kernel.org/linus/acac9a8ddb55f43561aba8ba460448aa6781b8a7|commit]], [[https://git.kernel.org/linus/20ab62c4799669a9952daa121ce84b4a09097a32|commit]], [[https://git.kernel.org/linus/c9dcd56feb820d50d1bbd52c135caa4e628e4762|commit]], [[https://git.kernel.org/linus/2e3ee090cdb5d70185a45cd29a7997b123e24902|commit]], [[https://git.kernel.org/linus/503278c12701831e4be18a3e5b95cd087d6f7542|commit]] * Remove old board files [[https://git.kernel.org/linus/2b843f82a1821de3e7d5bd0d54d936f5671cd1fd|commit]], [[https://git.kernel.org/linus/2decb12e3ebec556520dd92178572449af8ed617|commit]], [[https://git.kernel.org/linus/e73307b9ebc4ecb02df60be441a541c37dbdce7a|commit]], [[https://git.kernel.org/linus/46cdc4e431536c279b1ce00520d6fe6e9ca42b04|commit]], [[https://git.kernel.org/linus/29501577a7f3c925d5273064752ce3dc356ccfad|commit]], [[https://git.kernel.org/linus/4ede65e1c1533977a60a4d57126dca18ed0a9124|commit]], [[https://git.kernel.org/linus/ca2259c352519721a659239e187c1d3a375a8f96|commit]], [[https://git.kernel.org/linus/519e61666f4030426fc539d4e7102dc2bad41113|commit]], [[https://git.kernel.org/linus/df571c4ab32da9bc05a7db98516fc06ef3cdc5d1|commit]], [[https://git.kernel.org/linus/2b45e1fa9398f6dc8a242f59118d5e28fa00351f|commit]], [[https://git.kernel.org/linus/e2fe85aa6a6387c4babe4c191e50b7af8ee37faf|commit]], [[https://git.kernel.org/linus/67d24820c2f8e4df26e2ce6c7463db3f9d187f1f|commit]], [[https://git.kernel.org/linus/1dea5c6b5876ea917a082e95a76c10aac307d4ec|commit]], [[https://git.kernel.org/linus/c09846fc1ff4ced5c55840fb7f171ebc6e5478e4|commit]], [[https://git.kernel.org/linus/fd68572b57f2be17e18905d28e5b7165741ad48a|commit]], [[https://git.kernel.org/linus/f6b74535b5286ddb7a8c86a48ec372615cffbc4c|commit]], [[https://git.kernel.org/linus/b91a69d162aae0f097432c8166956eccf71783d3|commit]], [[https://git.kernel.org/linus/9df76b7f179538903dfb4660ae27c807dd27535a|commit]], [[https://git.kernel.org/linus/cd0ab43ec91a6114ea309e9e72382fdb184e7b9a|commit]], [[https://git.kernel.org/linus/3655e0b415506a4d162ed4b2b12408c80dcfa4a2|commit]], [[https://git.kernel.org/linus/046cd3c6987c6671b3ac5405771e79f6b763ff4d|commit]], [[https://git.kernel.org/linus/2135bb53fb6c9a4b2ed7901b2b176a6100e29f6b|commit]], [[https://git.kernel.org/linus/50f6f34e605b58079bd99d23c5da85347b673ef4|commit]], [[https://git.kernel.org/linus/c8334810db6e74019048cb3fc17c5e0b4d0c8c68|commit]], [[https://git.kernel.org/linus/0d7bb85e941327064c1f33128af563fac6cb9be3|commit]], [[https://git.kernel.org/linus/562468bd697a88ad78a751823dc92f027f8c179c|commit]], [[https://git.kernel.org/linus/8825acd7cc8a13af7ae6c2c5e5025af38df6c2e4|commit]], [[https://git.kernel.org/linus/908c08d523f432a1b52298e2a50b21f4eebe6707|commit]], [[https://git.kernel.org/linus/5241b6b3bfa7be3661398cf93cb3dd187aeb65c6|commit]], [[https://git.kernel.org/linus/4a8fda693bc990e5cdd77485cf1aa481a97ee8f8|commit]], [[https://git.kernel.org/linus/bcace9c4c927029237350132112a602a98cb714b|commit]], [[https://git.kernel.org/linus/11e1ef2d105900a302b7ca92bcaf96a96d0274a1|commit]], [[https://git.kernel.org/linus/c8fa4d2738bc747e417a220e6ceb21e8c148266f|commit]], [[https://git.kernel.org/linus/aee44c30e33bf8126773d1e2963e330b784ccd7c|commit]], [[https://git.kernel.org/linus/31849483f17dd76d48341dfc6dfc38261b630d26|commit]], [[https://git.kernel.org/linus/57ed0e7b72e9b472c5ce862eaba5435b36233fab|commit]], [[https://git.kernel.org/linus/6057db52a2c85659821feac4d3a86ada711893a4|commit]], [[https://git.kernel.org/linus/51824c5f5ecf6175c1cc913cb5c7d6d6213e96aa|commit]], [[https://git.kernel.org/linus/3cdc6ee54a491003b583b47a56c4052c76c965e6|commit]], [[https://git.kernel.org/linus/184644a633d1b8cf5f2f7cf0debc4ee3917adc44|commit]], [[https://git.kernel.org/linus/faec32e5bfe699e40adcf30df82ec1db8fe8e43b|commit]], [[https://git.kernel.org/linus/cf25eb950d0d8ada0db33c1d99d61bce620c128f|commit]], [[https://git.kernel.org/linus/223e632c7a26c0424d658c35ef8c5e06bc28bf96|commit]] * Add power domain support for MT8188 [[https://git.kernel.org/linus/1725dde87f1eb560497a3be85d3973a7deea7fa4|commit]], [[https://git.kernel.org/linus/e610e81464e4e52645a0f5d259b8a9e3632db6ff|commit]] * Qualcomm Ramp Controller and MSM8976 config [[https://git.kernel.org/linus/922ef52cea18567bd6a7e083c6acd776b5676bb6|commit]], [[https://git.kernel.org/linus/a723c95fa137f7a1e86dc77a150ef6e2affe977d|commit]] * Coresight: Add support for TPDM and TPDA [[https://git.kernel.org/linus/5c0016d7b343e453e38752ca58bc18394ece310a|commit]], [[https://git.kernel.org/linus/b3c71626a9333b0b29f9921a39cef30b5961766f|commit]], [[https://git.kernel.org/linus/1f00465d7fc742543ebc096879bddc01ee4a5993|commit]], [[https://git.kernel.org/linus/436cca9a2c0f05a3802a6a5a7c6849853590f919|commit]], [[https://git.kernel.org/linus/5b7916625c017ef1bbea4092835740f9161ab7c9|commit]], [[https://git.kernel.org/linus/a8fbe1442c2bb234aaa81501f2b08e861790f639|commit]], [[https://git.kernel.org/linus/7960de64218136e928fe90635ec9132e68d41015|commit]] * Add socinfo support for IPQ5332 variants [[https://git.kernel.org/linus/4ad66c3f4bcb83414181434a7d439cd80ac91a1a|commit]], [[https://git.kernel.org/linus/b0bc8c893ae07acd4829a158e83902897a31a490|commit]] * crypto: Implement fused AES-CTR/GHASH version of GCM [[https://git.kernel.org/linus/b575b5a1e625b589ba1b1eb36c05fcca588cbc85|commit]] * Support Clang UBSAN trap codes for better reporting [[https://git.kernel.org/linus/25b84002afb9dc9a91a7ea67166879c13ad82422|commit]] * DCC(Data Capture and Compare) driver support [[https://git.kernel.org/linus/417091dc60ba0a991c0e6aa77c1eeb2cfcf0a3d4|commit]], [[https://git.kernel.org/linus/4cbe60cf5ad622f7f45ccc4fa369c9f7a71903b9|commit]], [[https://git.kernel.org/linus/9732dd8d347851cb9c2fdabd35046ba0c470543e|commit]], [[https://git.kernel.org/linus/d4b94c8244919742417c3a165ef73081de37ef3b|commit]], [[https://git.kernel.org/linus/029d6586dc2d1d10e9df3962633e29e145d764ec|commit]], [[https://git.kernel.org/linus/add74cad7c9d1bf59d41b229852f3ebe0be4a84f|commit]], [[https://git.kernel.org/linus/91269c425649baad9758dbe269e7069ad7fa05fc|commit]] * coresight: Add new API to allocate trace source ID values [[https://git.kernel.org/linus/338a588e9db3c5ea7a35bb332cb3bdb532fd1f08|commit]], [[https://git.kernel.org/linus/bdeb62a386bed6df4f13c4592263158e004c64b4|commit]], [[https://git.kernel.org/linus/4ff1fdb4125c4e500dcbb8bf3826bb65f7a79429|commit]], [[https://git.kernel.org/linus/8d1091c785e1599cccb3d14c54c79e4d7e325220|commit]], [[https://git.kernel.org/linus/df4871204e5de97e47959f826e9cd2e76b41f969|commit]], [[https://git.kernel.org/linus/9edf291091f68f4767cb9d65fa825b64021277bd|commit]], [[https://git.kernel.org/linus/42708bac18cf7f09c058058cd4564f879c53b900|commit]], [[https://git.kernel.org/linus/206bb3858949b6509de75f7d3697303a073cbaa1|commit]], [[https://git.kernel.org/linus/7d30d480a6910b643aae8603a3905c9e22327e37|commit]], [[https://git.kernel.org/linus/aa19bb4c35834dd574b36d482cc44c78816e6fcd|commit]], [[https://git.kernel.org/linus/fd30b085deebe73d78e4321f88a7f95ba1db86a9|commit]] * soc: qcom: Introduce PMIC GLINK [[https://git.kernel.org/linus/68d868adc121f68edde0f4c0e16923103b868945|commit]], [[https://git.kernel.org/linus/58ef4ece1e41ac525db3e79529909683325d85df|commit]], [[https://git.kernel.org/linus/080b4e24852b1d5b66929f69344e6c3eeb963941|commit]], [[https://git.kernel.org/linus/29e8142b5623b5949587bcc4f591c4e6595c4aca|commit]] * soc: mediatek: Introduce mediatek-regulator-coupler driver [[https://git.kernel.org/linus/c200774a6df47cfc1053334c98ab777563de5bd8|commit]] * soc: nuvoton: Add SoC info driver for WPCM450 [[https://git.kernel.org/linus/7dbb4a38bff3449317abec5e0187ad97f699d5a6|commit]] * soc: qcom: dcc: Drop driver for now [[https://git.kernel.org/linus/c5d52d7bf241a4d06b651362446644948621c426|commit]] * soc: qcom: socinfo: Add Soc IDs for IPQ8064 and variants [[https://git.kernel.org/linus/79802479250f4ea25b49571f982786c7ef42c43b|commit]] * renesas: Add PWC support for RZ/V2M [[https://git.kernel.org/linus/0c56f949f626e59ef7c5b18e2706fed2a6afc4a2|commit]] * sunxi: Add Allwinner D1 PPU driver [[https://git.kernel.org/linus/0e30ca5ab0a80fdc7f1055f63c1436dfdc4d317d|commit]] * Add first version mt8188 vdosys0 driver [[https://git.kernel.org/linus/2433c716707a22635a4c3905b1966f022f7adb8e|commit]], [[https://git.kernel.org/linus/5d98c6351d4690288c55c2fcb23a470e0675b4e5|commit]], [[https://git.kernel.org/linus/3b1a57c4f999629fb1d5e7a488bdda536146fb31|commit]], [[https://git.kernel.org/linus/64bc37bf398651b712fb68921b3f674f98a9f802|commit]] * Driver support for RZ/V2M PWC [[https://git.kernel.org/linus/6e1456f9251966d8fbfde2ae4750ba540b588533|commit]], [[https://git.kernel.org/linus/0c56f949f626e59ef7c5b18e2706fed2a6afc4a2|commit]] * Add metrics for neoverse-n2-v2 [[https://git.kernel.org/linus/acef233b7ca749fda153a06bbd2d9feb2bb16857|commit]], [[https://git.kernel.org/linus/5b51e47a3f1d7619b424b4b89b5d19569a462b09|commit]], [[https://git.kernel.org/linus/a9ff64e5a0421914c6b23e4505d9384b8c745b5a|commit]], [[https://git.kernel.org/linus/c1c685cee6a12005fdc05ffdd584e30840da5b0c|commit]], [[https://git.kernel.org/linus/6a60dd2e876913be55e17e53ee57e1fe09448238|commit]], [[https://git.kernel.org/linus/8556d367a7f9c44860422bca5fb677f07aca3960|commit]], [[https://git.kernel.org/linus/a1adade799bd9348a9bb290b3df2ca5068cd57bc|commit]], [[https://git.kernel.org/linus/4befa5cf8469790bd73f3795f2b02e3baf26022c|commit]], [[https://git.kernel.org/linus/485c5bc590899cb640d32e43a471bbc6e134cfc7|commit]] * firmware, arm_scmi: Introduce a unified API for SCMI Server testing [[https://git.kernel.org/linus/b0e924a955cb9e9da759a7a2940f35679864222f|commit]], [[https://git.kernel.org/linus/f21c2b0ba8f3e70e1d5f11842ec1de66aaa35809|commit]], [[https://git.kernel.org/linus/07cdfc44f1a40652cbf349d279dd916b13197624|commit]], [[https://git.kernel.org/linus/37057bf2b509b6a2bff0ffe7a3d838a945c6a170|commit]], [[https://git.kernel.org/linus/936a2b91c2e8ac9570e080e654bf53f799cbc028|commit]], [[https://git.kernel.org/linus/8b2bd71119dd0f5ec0b8d857670863d342767d85|commit]], [[https://git.kernel.org/linus/d60b59b9679539be7df0a37143c546b7ad385c09|commit]], [[https://git.kernel.org/linus/0f62ed0092ec468f48847897738dfafa8b941991|commit]], [[https://git.kernel.org/linus/7860701d1e6e6e048960567d4767d93d693d6faa|commit]], [[https://git.kernel.org/linus/3c3d818a9317a5f8ff7fb4547b2d6d5bcc39137d|commit]], [[https://git.kernel.org/linus/74225707b3349d52e6b99a2e15185b5db8126637|commit]], [[https://git.kernel.org/linus/9c54633e4e3d004c416ad680d6b0f73c2ac6f018|commit]] * Add support for !UltraSoc System Memory Buffer [[https://git.kernel.org/linus/06f5c2926aaa0fba7f99678da6ef77cbbbda1441|commit]], [[https://git.kernel.org/linus/2d4103ae31aa6d5570fd1178ddc68867ab4ab5bd|commit]] * ARM64 * Add initial support for AM69 Starter Kit [[https://git.kernel.org/linus/aec7cb182db703dc493274090640daad3fb56a95|commit]], [[https://git.kernel.org/linus/635fb18ba00893f4d9ca468326277d445533f05e|commit]] * sme: Support SME 2 and SME 2.1 [[https://git.kernel.org/linus/ce514000da4f4b5f850f3339f805471e5c5c1caf|commit]], [[https://git.kernel.org/linus/6dabf1fac6b48d256b1d78b81c9356a88df26d2f|commit]], [[https://git.kernel.org/linus/0f3bbe0edf788f1d43400a68a84eb37c9f13dfa5|commit]], [[https://git.kernel.org/linus/4edc11744e8cfe9f6d38fe3f656e949c6918bdd2|commit]], [[https://git.kernel.org/linus/8ef55603b8eaf9362464b3197eb139baa4bd18b9|commit]], [[https://git.kernel.org/linus/2cdeecdb95134cc0abc76626a59c94073cda8a47|commit]], [[https://git.kernel.org/linus/f122576f35336820259a79847e408b9f807eba15|commit]], [[https://git.kernel.org/linus/d4913eee152d3ffaf9a1e70073bc15e773625685|commit]], [[https://git.kernel.org/linus/d6138b4adc70729404efeb0133bc9f6e9ad78d03|commit]], [[https://git.kernel.org/linus/95fcec713259d440626526ed96ff5d3bac6179ea|commit]], [[https://git.kernel.org/linus/ee072cf708048c0d718a88159ae7985dd96d316f|commit]], [[https://git.kernel.org/linus/f90b529bcbe57c66da2b6a0d3c7c81e8567af63d|commit]], [[https://git.kernel.org/linus/7d5d8601e4577c918fdb5fa922c634a73557ac0f|commit]], [[https://git.kernel.org/linus/1c07425e902cd3137961c3d45b4271bf8a9b8eb9|commit]], [[https://git.kernel.org/linus/f63a9f15b2d4a8c9588a9260d49bc3890118fece|commit]], [[https://git.kernel.org/linus/63829373260898bdd2eb95a03e2e1c936998d6ca|commit]], [[https://git.kernel.org/linus/afe6f182752625cadf4ff97613bd2f362383bcbf|commit]], [[https://git.kernel.org/linus/18f8729ab3d56ec0bfd980d6b3660a50af43b82a|commit]], [[https://git.kernel.org/linus/49886aa9ab33b1825439015a6b2c91ed9b294ba3|commit]], [[https://git.kernel.org/linus/4e1aa1a18f1becb479c3627b73f1b7ebe2d46924|commit]], [[https://git.kernel.org/linus/3eb1b41fba97a1586e3ecca8c10547071f541567|commit]] * signal: Support TPIDR2 [[https://git.kernel.org/linus/17d0c4a27b2ac90df99307af0b6b6a162805c4fc|commit]], [[https://git.kernel.org/linus/39e54499280f373d03ab7ffe681ca9d53a9089c9|commit]], [[https://git.kernel.org/linus/bae393dabf353172784987c12c99a55cbe8075bc|commit]], [[https://git.kernel.org/linus/8ced928019353eaecbffee566d7ed6a9a9e60e78|commit]] * Expose compat Armv8 AArch32 features [[https://git.kernel.org/linus/846b73a4a3d0bf289ee924f6101c4f842ecc5b81|commit]], [[https://git.kernel.org/linus/85f1506337f0c79a4955edfeee86a18628e3735f|commit]], [[https://git.kernel.org/linus/27addd402a73cb97b1529ea4e56be7eb82d3c478|commit]], [[https://git.kernel.org/linus/4a87be25b02b33948c293cae47a7f27d8b9bf20f|commit]], [[https://git.kernel.org/linus/f64234fa45f47cd757e5eb7a83d54d83480c4fce|commit]], [[https://git.kernel.org/linus/0864d1e42959b8b1e32efa3fb672fe81ba1dbc6c|commit]], [[https://git.kernel.org/linus/2d602aa99abb84c34cc9602c8bd6852895314f74|commit]], [[https://git.kernel.org/linus/4f2c9bf16a4bc209a674e7b76d8e829b917c7f84|commit]] * Enable USB host on Jetson AGX Orin [[https://git.kernel.org/linus/2648f68bd0ac9ec0e1e17d1e4420570b35e8f175|commit]], [[https://git.kernel.org/linus/1b17df99730ab63b49848e61ef19d8ee583684c5|commit]], [[https://git.kernel.org/linus/71d9e899584e11bbd7eaf9934a619c69a15060d8|commit]], [[https://git.kernel.org/linus/d8163a32ca95c6e23cd449868ad12008569ac17a|commit]], [[https://git.kernel.org/linus/ee0e40efc4d1bd87c795233c8ceadf4228479c06|commit]] * ftrace: Add support for {{{DYNAMIC_FTRACE_WITH_CALL_OPS}}} [[https://git.kernel.org/linus/cbad0fb2d8d97fa6dd8089c0cc729ced0abacad6|commit]], [[https://git.kernel.org/linus/c27cd083cfb9d392f304657ed00fcde1136704e7|commit]], [[https://git.kernel.org/linus/8f9e0a52810dd83406c768972d022c37e7a18f1f|commit]], [[https://git.kernel.org/linus/47a15aa544279d34e14e17ca3b5855e39b946cec|commit]], [[https://git.kernel.org/linus/2bbbb4015aa1af62f8002de86de019786ecf63a7|commit]], [[https://git.kernel.org/linus/e4ecbe83fd1a5428d5458de04a3404f1b5444429|commit]], [[https://git.kernel.org/linus/90955d778ad7873964a271852b1f24d31e00248b|commit]], [[https://git.kernel.org/linus/baaf553d3bc330697c68a00f96cf11f4edfeac7e|commit]] * perf: Arm SPEv1.2 support [[https://git.kernel.org/linus/e080477a050cce0471d3a84347f350ad7514a18b|commit]], [[https://git.kernel.org/linus/c759ec850df89f7235b08e468abb3190b6998d4e|commit]], [[https://git.kernel.org/linus/956936041a56eaebc012cf62a00fafd86958ffd5|commit]], [[https://git.kernel.org/linus/2d347ac23362f6cfc5e04a4b998f51e1e7e909a8|commit]], [[https://git.kernel.org/linus/05e4c88e2b5c9f77409577702d6d516682e1ce14|commit]], [[https://git.kernel.org/linus/4998897b1e96d624bf094e5785b27023e17ba570|commit]], [[https://git.kernel.org/linus/7f49b037397631dc5ec8f6eed67d218edf094fa2|commit]], [[https://git.kernel.org/linus/09519ec3b19e4144b5f6e269c54fbb9c294a9fcb|commit]], [[https://git.kernel.org/linus/8d9190f00a9753ff51f18319d928dedd9a272057|commit]] * Allow kernel-mode VFP/Neon in softirq context [[https://git.kernel.org/linus/c79f81631142ee2dc4c743732427f23d18cd2dec|commit]] * gcm: add RFC4106 support [[https://git.kernel.org/linus/9e3457112b9d410f0cad760f91728251fef7e3e3|commit]] * Accelerated GCM for IPSec on ARM/arm64 [[https://git.kernel.org/linus/9e3457112b9d410f0cad760f91728251fef7e3e3|commit]], [[https://git.kernel.org/linus/425359aef47972b2d14e15b6702d60d86779af65|commit]], [[https://git.kernel.org/linus/2b0c954010873166fdf6a8468f25ff24dcc8aa05|commit]] * Permit EFI boot with MMU and caches on [[https://git.kernel.org/linus/82e4958800c01daa7662362ee9543065bd14c852|commit]], [[https://git.kernel.org/linus/af7249b317e4d0b3d5a0ebbb7ee7a0f336ca7bca|commit]], [[https://git.kernel.org/linus/9d7c13e5dde31270eb48a34204a2e06b1a719546|commit]], [[https://git.kernel.org/linus/32b135a7fafebe7843abe5425159fa081ae56b7c|commit]], [[https://git.kernel.org/linus/3dcf60bbfd284e5ebfa40c56172222425d10abf0|commit]], [[https://git.kernel.org/linus/61786170383093908e9f5f8fd8c5c3ff0c3bbe03|commit]] * Harden shadow call stack pointer handling [[https://git.kernel.org/linus/59b37fe52f49955791a460752c37145f1afdcad1|commit]], [[https://git.kernel.org/linus/54c968bec344b101ba3596f2544f0f3b4c1eef2f|commit]] == x86 == * KVM: pmu: Introduce masked events to the pmu event filter [[https://git.kernel.org/linus/14329b825ffb7f2710c13fdcc37fc2e7c67b6781|commit]] * KVM: Add support running nested Microsoft Hypervisor [[https://git.kernel.org/linus/c4bdf94f97c86bdee8bacc87f8f85dc67866c928|commit]], [[https://git.kernel.org/linus/7fec185a56f45b98d9547982370c2ab33f0f72b5|commit]], [[https://git.kernel.org/linus/f0d2f5c2c000c03aa6b6a29954042174b59a0d1c|commit]], [[https://git.kernel.org/linus/8536290f0011c582df08657825cf2fee65aac9ed|commit]] * kvm: Support AMD Automatic IBRS [[https://git.kernel.org/linus/8415a74852d7c24795007ee9862d25feb519007c|commit]], [[https://git.kernel.org/linus/a9dc9ec5a1fafc3d2fe7a7b594eefaeaccf89a6b|commit]], [[https://git.kernel.org/linus/84168ae786f8a15a7eb0f79d34f20b8d261ce2f5|commit]], [[https://git.kernel.org/linus/5b909d4ae59aedc711b7a432da021be0e82c95a0|commit]], [[https://git.kernel.org/linus/faabfcb194a8d0686396e3fff6a5b42911f65191|commit]], [[https://git.kernel.org/linus/e7862eda309ecfccc36bb5558d937ed3ace07f3f|commit]], [[https://git.kernel.org/linus/8c19b6f257fa71ed3a7a9df6ce466c6be31ca04c|commit]] * platform * Add new systems and features for Nvidia systems [[https://git.kernel.org/linus/f8dacbf7da2e02d4c0c543cf5c277c906a2bb042|commit]], [[https://git.kernel.org/linus/488f0fca0db00257c42d44857061bc6726adaa15|commit]], [[https://git.kernel.org/linus/acc6ea304590f5ec1590e328c7ae0584f7dd77be|commit]], [[https://git.kernel.org/linus/fcf3790b9b63b27ac0269c2285021139a0798a7b|commit]], [[https://git.kernel.org/linus/dd635e33b5c9a3ad3712abae7b845f4353da8cef|commit]], [[https://git.kernel.org/linus/0170f616f496fcaf25dde0fea042880d4af3089a|commit]], [[https://git.kernel.org/linus/158cd83207768abdba86e408fed3169bb3ad3e9f|commit]], [[https://git.kernel.org/linus/233fd7e44cd7363ede8025619291b98475024c30|commit]], [[https://git.kernel.org/linus/26e118ea98cf5ec0b53198e643d5fa8d99b73b49|commit]], [[https://git.kernel.org/linus/26917eab144c8515435ef9175fdd5dddf9f0f000|commit]], [[https://git.kernel.org/linus/cefdbc7815660be4d0f2d290860dcfb0f9d285e4|commit]], [[https://git.kernel.org/linus/50b823fdd357ec0f2fd0a1a0b5104704916fd620|commit]], [[https://git.kernel.org/linus/e7210563432a6c6fa65a9c5c11ece2a0adbeeda2|commit]] * dell-ddv: Various driver updates [[https://git.kernel.org/linus/3b7eeff93d291299841f943a5e9b43bb160b3992|commit]], [[https://git.kernel.org/linus/3e899fec5dfce37701d49d656954a825275bf867|commit]], [[https://git.kernel.org/linus/6113bd52443f3f9035acf27d8793b0246a692e81|commit]], [[https://git.kernel.org/linus/36d44825faf42903a0b92dd49a9620e2cbdcbe18|commit]], [[https://git.kernel.org/linus/8b52501c408b3ae5f2c5768a74e3db2fa83b4c52|commit]], [[https://git.kernel.org/linus/cf2cc541423f51731c5844dddb0699e301616a86|commit]] * Add TPMI support [[https://git.kernel.org/linus/c00493dc467f3d57169f3b913e2c1ecb3a808ad1|commit]], [[https://git.kernel.org/linus/251a41116aebdbb7ff00fbc635b1c1a0f08119e6|commit]], [[https://git.kernel.org/linus/4ec5d0231d2e4aebe41152d57c6b4f1e7ea14f08|commit]], [[https://git.kernel.org/linus/47731fd2865fcbcd0b9cdbe90fcd6583c9559631|commit]], [[https://git.kernel.org/linus/762ed313574652ac604fb95dd601232a6e0320ef|commit]], [[https://git.kernel.org/linus/6d957f1e1646039f51fe1f6c6060738f648c4c70|commit]], [[https://git.kernel.org/linus/42684d44a7f211d1c1ca64737dfc00470e5fa4a3|commit]] * chrome: cros_ec_typec: VDM support [[https://git.kernel.org/linus/0ac7200e3317bdde7b96112f24b9253208c0258b|commit]], [[https://git.kernel.org/linus/0e0dba884c4318c433756118794a7dff8947e6ce|commit]], [[https://git.kernel.org/linus/4dc9355cef4f507f12289c56b7ea5df911758278|commit]], [[https://git.kernel.org/linus/c856e3ff98bba1950259d5f52b45760e80ace412|commit]], [[https://git.kernel.org/linus/8d2b28df6c3dc1581d856f52d9f78059ef2a568f|commit]], [[https://git.kernel.org/linus/69058096515359fbe15b63ea8b111fe0bb21cecb|commit]], [[https://git.kernel.org/linus/e5eea6a3319fcd0d6c71c8ff359e0d8c5b1bd5cd|commit]], [[https://git.kernel.org/linus/493e699b9934d9cd6a46ecc7782540014b369267|commit]], [[https://git.kernel.org/linus/50ed638bbc47ba68ccc90d81118fe030cf39b6b5|commit]], [[https://git.kernel.org/linus/40a9b13a09ef2ec207fec1b328ed796d08e20e54|commit]] * chrome: cros_ec: Add VDM attention headers [[https://git.kernel.org/linus/4b1936cd081496865151eaab539f767240952306|commit]], [[https://git.kernel.org/linus/f54c013e7eef2962e610c9223e13659e65dfb550|commit]] * chrome: cros_ec_uart: Add transport layer [[https://git.kernel.org/linus/04a8bdd135cc05b10b665cedb360c7353312602d|commit]], [[https://git.kernel.org/linus/f9bce00f78ed9ff9c38130388c13a2b2b72b857e|commit]] * gigabyte-wmi: Add support for A320M-S2H V2 [[https://git.kernel.org/linus/b7c994f8c35e916e27c60803bb21457bc1373500|commit]] * gigabyte-wmi: add support for B650 AORUS ELITE AX [[https://git.kernel.org/linus/441d901fbf669f6360566a4437b1e563b854de4a|commit]] * gigabyte-wmi: add support for X570S AORUS ELITE [[https://git.kernel.org/linus/52f91e51944808d83dfe2d5582601b5e84e472cc|commit]] * nvidia-wmi-ec-backlight: Add force module parameter [[https://git.kernel.org/linus/0d9bdd8a550170306c2021b8d6766c5343b870c2|commit]] * Add Hyper-v extended hypercall support in KVM [[https://git.kernel.org/linus/b961aa757f940bebc608a412f66951e52a39a298|commit]], [[https://git.kernel.org/linus/0fcf86f05af208e4e6c62cf1a7e7e28bc6c9d9f9|commit]], [[https://git.kernel.org/linus/2be1bd3a70c81835b8969216ceedbd017fea732d|commit]], [[https://git.kernel.org/linus/67b16f180541d5d1869a07afb844a244f9b6db0f|commit]], [[https://git.kernel.org/linus/2f10428ace91d07a8c7bd6f127d66eaa9e3a1a9f|commit]], [[https://git.kernel.org/linus/91a0b5478aab482d7133b8f069eb7d4590efcb7e|commit]], [[https://git.kernel.org/linus/bd827bd775375fdef13da4c8d3f237555938aa6d|commit]], [[https://git.kernel.org/linus/1a9df3262a632020071327abf56e9243e4dd7bde|commit]], [[https://git.kernel.org/linus/db9cf24cea69773410f0049bdfa795d7c2bd0ea9|commit]], [[https://git.kernel.org/linus/c4a46627e5a846e59f0097e3196f142eb6142f4f|commit]], [[https://git.kernel.org/linus/f65092015a83348fdc2f509e4ad8278e0c2df0cd|commit]], [[https://git.kernel.org/linus/60325261235accc838158c82b403086e0e76e6a9|commit]] * perf: Add PMU_FORMAT_ATTR_SHOW [[https://git.kernel.org/linus/b6c00fb9949fbd073e651a77aa75faca978cf2a6|commit]], [[https://git.kernel.org/linus/38aaf921e92dc5cf87e4a6c5a4b24dd99155cace|commit]], [[https://git.kernel.org/linus/c87a31093c707eb0b8c48aab89922c1d0bf4bd90|commit]], [[https://git.kernel.org/linus/a018d2e3d4b1abc4a3cb64415c5d204fc5d2eafd|commit]], [[https://git.kernel.org/linus/eb467aaac21e133a3d01c48c0a6bf43756b06e78|commit]], [[https://git.kernel.org/linus/eaef048c281bf7eaecdfde96d9b305b8644c9f66|commit]], [[https://git.kernel.org/linus/b0bd3336d87f3403094fbadc7803c1d5bf3df4f7|commit]], [[https://git.kernel.org/linus/d7d213e04cf83318681f24870f1144e50d5c91bb|commit]], [[https://git.kernel.org/linus/17f248aa8664ff5b3643491136283e73b5c18166|commit]] * bpf: Improve PROBE_MEM runtime load check [[https://git.kernel.org/linus/90156f4bfa21ada9943b538e27385152407605b1|commit]], [[https://git.kernel.org/linus/59fe41b5255f7b8a19a3347ec4b03fd830d6f4aa|commit]] * (FEATURED) resctrl: Support for AMD QoS new features: Slow Memory Bandwidth Allocation (SMBA) and Bandwidth Monitoring Event Configuration (BMEC) [[https://git.kernel.org/linus/fc3b618c87833e4d258b66acfca3557c49c4fe97|commit]], [[https://git.kernel.org/linus/f334f723a63cfc25789b1cdf70a08ffbaea4bf2e|commit]], [[https://git.kernel.org/linus/a5b699665580725de8c0c01f2163a15af78b6866|commit]], [[https://git.kernel.org/linus/78335aac6156eadad0025ab34469e2adcc60218b|commit]], [[https://git.kernel.org/linus/a76f65c89f928b87c49d88b7fd60cb4d7203ffff|commit]], [[https://git.kernel.org/linus/5b6fac3fa44bafee12e0c3d1c5cbae6d058e9c98|commit]], [[https://git.kernel.org/linus/bd334c86b5d70e5d1c6169991802e62c828d6f38|commit]], [[https://git.kernel.org/linus/d507f83ced55eda848a3f397cf87b07ab11384b9|commit]], [[https://git.kernel.org/linus/dc2a3e857981f859889933cf66ded117d74edff1|commit]], [[https://git.kernel.org/linus/73afb2d3ce2d7e0f9eee14e3f2b53d2bbfefd9c8|commit]], [[https://git.kernel.org/linus/92bd5a1390335bb3cc76bdf1b4356edbc94d408d|commit]], [[https://git.kernel.org/linus/4fe61bff5a4100e92f81427dab06b7f3a025f6a2|commit]], [[https://git.kernel.org/linus/0a363fb23ee2f7beb08437ad7db86d195878d79f|commit]] * crypto: implement aria-avx2 [[https://git.kernel.org/linus/37d8d3ae7a58cb16fa3f4f1992d2ee36bc621438|commit]] * crypto: implement aria-avx512 [[https://git.kernel.org/linus/c970d42001f2dffd587cc38458fea4130796be43|commit]] * Support extended MCA_ADDR address on SMCA systems [[https://git.kernel.org/linus/fcd343a285cb41894a7bd02dbd675042d394758d|commit]] * perf: Add Meteor Lake support [[https://git.kernel.org/linus/c828441f21ddc819a28b5723a72e3c840e9de1c6|commit]] * Add model number for Intel Arrow Lake processor [[https://git.kernel.org/linus/81515ecf155a38f3532bf5ddef88d651898df6be|commit]] * tsc: Add option to force frequency recalibration with HW timer [[https://git.kernel.org/linus/a7ec817d55421ac214cac9d3e5ebb65d848198dc|commit]] * perf vendor events intel: Add Emerald Rapids [[https://git.kernel.org/linus/03953a697bdd0728b2f20309133b8664896ffd4a|commit]] * perf vendor events power10: Add JSON metric events to present CPI stall cycles in powerpc [[https://git.kernel.org/linus/cf26e043c2a9213805d7ea9e8cf3e1d7166a62a4|commit]] * powercap: RAPL: Add Power Limit4 support for Meteor Lake SoC [[https://git.kernel.org/linus/eb52bc2ae5b8413619a326f47ed635365883343a|commit]] * powercap: idle_inject: Support 100% idle injection [[https://git.kernel.org/linus/c7cd6f04c0dfb6d44337f92b4c32126d20339873|commit]] * powercap: intel_rapl: add support for Emerald Rapids [[https://git.kernel.org/linus/7adc6885259edd4ef5c9a7a62fd4270cf38fdbfb|commit]] * powercap: intel_rapl: add support for Meteor Lake [[https://git.kernel.org/linus/bdaad038cc3c620a769f2156e7c9aab8605411c2|commit]] * intel_idle: add Emerald Rapids Xeon support [[https://git.kernel.org/linus/74528edfbc664f9d2c927c4e5a44f1285598ed0f|commit]] * Add support for a new x86 instruction - LKGS - Load kernel GS which is part of the FRED infrastructure [[https://git.kernel.org/linus/660569472dd7ac64571375b6727c3f2c1d70ba40|commit]], [[https://git.kernel.org/linus/5a91f12660fe7249e37b11372bf599e02b6a319c|commit]], [[https://git.kernel.org/linus/df729fb05ae2db52f7de150439392a88ee9d9b4f|commit]], [[https://git.kernel.org/linus/ae53fa18703000f507107df43efd1168a0365361|commit]], [[https://git.kernel.org/linus/92cbbadf73f45c5d8bb26ed8668ff59671ff21e6|commit]] == LoongArch == * Add kprobes support [[https://git.kernel.org/linus/6d4cc40fb5f58147defc6c0e9d86e6232fe31616|commit]] * Add kprobes on ftrace support [[https://git.kernel.org/linus/09e679c28a4def4ea8d4f618503c1d55c355ae5c|commit]] * Add kretprobes support [[https://git.kernel.org/linus/3f5536860086d906b01ec5ed68cf50c7edcc40af|commit]] * ptrace: Add hardware single step support [[https://git.kernel.org/linus/424421a7f34c1222d20a6c279f13b9caa71ecc83|commit]] * ptrace: Add function argument access API [[https://git.kernel.org/linus/356bd6f23682f11f7afe923d86c7f5f852b97fb2|commit]] * Add kernel relocation and KASLR support [[https://git.kernel.org/linus/f733f119e9b31088063652a7ad16963d85cb73dd|commit]], [[https://git.kernel.org/linus/8cbd5ebfe241699288cb152081854414f6265718|commit]], [[https://git.kernel.org/linus/396233c650084cb957eb6d87dd4abd3e56a7d499|commit]], [[https://git.kernel.org/linus/d8da19fbdedd5852592fbba18a7348e3f09500e6|commit]], [[https://git.kernel.org/linus/e5f02b51fa0cb785e352e77271a65e96051b789b|commit]] * Add single kernel image implementation for kdump [[https://git.kernel.org/linus/3f89765d6227fe4645a91e062332b6b4eb24072c|commit]], [[https://git.kernel.org/linus/35c94fab6eee72d60d9cd8d1e6e43e1f77b1dce2|commit]] * Add hardware breakpoints/watchpoints support [[https://git.kernel.org/linus/edffa33c7bb5a73e90c754c7a497162b77d7c55f|commit]] == RISC-V == * allwinner: Add Sipeed Lichee RV devicetrees [[https://git.kernel.org/linus/7705ce5ab056fd44e6580d8044a0bf4612ae1e01|commit]] * KVM perf support [[https://git.kernel.org/linus/8f0153ecd3bf184bc06afca25b737c707fa4d765|commit]], [[https://git.kernel.org/linus/cbddc4c4cb9e30933777dbf3bc8645399af10140|commit]], [[https://git.kernel.org/linus/470926a2900cfdc39b300d87a0ccdf037fa67b9a|commit]], [[https://git.kernel.org/linus/f04bafb52f580552dc22bfb5b7af9a5dbcc2254f|commit]], [[https://git.kernel.org/linus/a9ac6c37521ff3f81eba7fada8773c362652d75f|commit]], [[https://git.kernel.org/linus/0cb74b65d2e5e6ec3ed60c8890014b1bcd0c81c9|commit]], [[https://git.kernel.org/linus/badc386869e2cb255df6183ec05488a05bd07658|commit]], [[https://git.kernel.org/linus/c39cea6f38eefe356d64d0bc1e1f2267e282cdd3|commit]] * Allwinner D1/D1s platform support [[https://git.kernel.org/linus/46b8bb9ae32e12b8ad8427279d764bf32a637440|commit]], [[https://git.kernel.org/linus/2fca4a33254eaaea08ec1df1ace5ce50a50de040|commit]], [[https://git.kernel.org/linus/a0097fec3be61a816325173b425bba64d302bb39|commit]], [[https://git.kernel.org/linus/077e5f4f5528777ab72f4dc336569207504dc876|commit]], [[https://git.kernel.org/linus/2a93adfb09e5075ddee3ab7b6f779b3b74739874|commit]], [[https://git.kernel.org/linus/88ea69891451be38c3cf78aa36090b49ca533da1|commit]], [[https://git.kernel.org/linus/7705ce5ab056fd44e6580d8044a0bf4612ae1e01|commit]], [[https://git.kernel.org/linus/96a35ab9a8d4d651e8fe7adddbb5dd6889b0a0ea|commit]], [[https://git.kernel.org/linus/72cee3dbb4d975983a5f23571eb7ec0847c46cfd|commit]], [[https://git.kernel.org/linus/6f5178acf63614f2ee27450b2ab4d4980a698161|commit]], [[https://git.kernel.org/linus/eb20e7cb91ba3e5dbd94b6bfc8b9609bd5fd5770|commit]] * Add infrastructure to allow different str* implementations [[https://git.kernel.org/linus/56e0790c7f9e59ba6a0f4b59981d1d6fbf43efb0|commit]] * Zbb string optimizations [[https://git.kernel.org/linus/b6fcdb191e36f82336f9b5e126d51c02e7323480|commit]], [[https://git.kernel.org/linus/cde4a69302a4a57374a9daa463c493ff45038c99|commit]], [[https://git.kernel.org/linus/27c653c06505f084bcb57f7575916d60efb32279|commit]] * Add a devicetree for the Aldec PolarFire SoC TySoM [[https://git.kernel.org/linus/f6beee9118c30c10704e5a20752b2221bce26fc4|commit]], [[https://git.kernel.org/linus/ea913d8865fe51b799f225c46e75e3f6337b5e11|commit]], [[https://git.kernel.org/linus/497e6b37b0099dc415578488287fd84fb74433eb|commit]] * Support bpf trampoline for RV64 [[https://git.kernel.org/linus/5e57fb7b0bd3ea7e994ef1c0ab3562d1fe0676b2|commit]], [[https://git.kernel.org/linus/0fd1fd0104954380477353aea29c347e85dff16d|commit]], [[https://git.kernel.org/linus/596f2e6f9cf41436a5512a3f278c86da5c5598fb|commit]], [[https://git.kernel.org/linus/49b5e77ae3e214acff4728595b4ac7bf776693ca|commit]] == PowerPC == * RTAS maintenance [[https://git.kernel.org/linus/09d1ea72c88198ef5a9e6b8208f544fe18acbff1|commit]], [[https://git.kernel.org/linus/cc4b26eab1859fa1a70711872caaf6414809973f|commit]], [[https://git.kernel.org/linus/daa8ab59044610aa8ef2ee45a6c157b5e11635e9|commit]], [[https://git.kernel.org/linus/5d08633e5f6564b60f1cbe09af3af40a74d66431|commit]], [[https://git.kernel.org/linus/b7d5333c48a21fd6a20f54b6887bcc191d21c273|commit]], [[https://git.kernel.org/linus/836b5b9fcc8e09cea7e8a59a070349a00e818308|commit]], [[https://git.kernel.org/linus/d6f7fe3b25f26213953066ce8109ea47dbd33cfa|commit]], [[https://git.kernel.org/linus/8252b88294d2a744df6e3c6d85909ade403a5f2c|commit]], [[https://git.kernel.org/linus/77f85f69a97ac5f24537261a893436926c3e0cdc|commit]], [[https://git.kernel.org/linus/2c81ca7fbaea06c2aed1aec66a88208d67e1e2de|commit]], [[https://git.kernel.org/linus/24098f580e2b5ceb2cec4f02833e0a0bb5d46d2e|commit]], [[https://git.kernel.org/linus/43033bc62d349d8d852855a336c91d046de819bd|commit]], [[https://git.kernel.org/linus/e27e14231eb541899efc11c33d6eeddcb74767c3|commit]], [[https://git.kernel.org/linus/419e27f32b6dc13c3e6f443d1ad104f2845c444b|commit]], [[https://git.kernel.org/linus/b8dc71774a51182185ae197ed2f8bd085ce6c848|commit]], [[https://git.kernel.org/linus/fff9846be00c467b4a277492af5be8487b6540e9|commit]], [[https://git.kernel.org/linus/69b9f5a5b2c04ce5993fe43da938f065571bdb25|commit]], [[https://git.kernel.org/linus/e58d9e17b11b776e32b1d3d80bdc63d39de3463d|commit]], [[https://git.kernel.org/linus/716bfc97bd5fb7b442cdd06081f49df097f2e27b|commit]], [[https://git.kernel.org/linus/08273c9f619cb32fb041935724f576e607101f3b|commit]] * pSeries dynamic secure boot secvar interface + platform keyring loading [[https://git.kernel.org/linus/f74dcbfd27c647af9b7b83f3711c63712c677abd|commit]], [[https://git.kernel.org/linus/fcf63d6b8ab9b12c2ce1b4bde12a3c391029c998|commit]], [[https://git.kernel.org/linus/c9fd2952754a03b2c14433c0318f4b46e9c0f2ef|commit]], [[https://git.kernel.org/linus/53cea34b0a0a03568e189f8dfe2eb06f938986c8|commit]], [[https://git.kernel.org/linus/26149b02021158248b13e323f06372d87f076883|commit]], [[https://git.kernel.org/linus/16943a2faf94ef671e60c7577511c0d119fbdfc8|commit]], [[https://git.kernel.org/linus/ec2f40bd004b4b9142469282d4a6ce9afa22f9c0|commit]], [[https://git.kernel.org/linus/e02407944052554c1685e11e56175147d1ac56b6|commit]], [[https://git.kernel.org/linus/caefd3b77450e330845755ea57add2315fd5e4d9|commit]], [[https://git.kernel.org/linus/86b6c0ae2caee9cadee1256d31b204ea54cb55c0|commit]], [[https://git.kernel.org/linus/50a466bf3e6f6f177dc0aeefa46a2f8927075a1d|commit]], [[https://git.kernel.org/linus/6d64c497a31bd888110785def44529ebb96bce49|commit]], [[https://git.kernel.org/linus/c96db155ebc6be868d5dde1b5caf6879c181cda4|commit]], [[https://git.kernel.org/linus/90b74e305d6b5a444b1283dd7ad1caf6acaa0340|commit]], [[https://git.kernel.org/linus/3def7a3e7c2ce2ab5e5c54561da7125206851be4|commit]], [[https://git.kernel.org/linus/119da30d037dced29118fb90afe683ff50313386|commit]], [[https://git.kernel.org/linus/899d9b8fee66da820eadc60b2a70090eb83db761|commit]], [[https://git.kernel.org/linus/ebdcd42347157647ffe6c4d2808e4e5c146475d3|commit]], [[https://git.kernel.org/linus/0cf2cc1fe4e2e7a37da077cdd3fba5cfd9a6a36c|commit]], [[https://git.kernel.org/linus/46b2cbebac1e862e4c8317aa26e7d7d632242c2f|commit]], [[https://git.kernel.org/linus/ca4f1d221c84fe364517b15af65f3f0e4ce9719a|commit]], [[https://git.kernel.org/linus/9ee76bd5c7e39b622660cc14833ead1967f2038d|commit]], [[https://git.kernel.org/linus/91361b5175d2b3704f7e436d0071893c839e1199|commit]], [[https://git.kernel.org/linus/ccadf154cb00b9ee9618d209aa3efc54b35a34b4|commit]], [[https://git.kernel.org/linus/3c8069b0c3832674abd80a5cf019c913e62de9a5|commit]], [[https://git.kernel.org/linus/4b3e71e9a34c48f370b6281e9477515d588e7b26|commit]] * pci: Add option for using pci_to_OF_bus_map [[https://git.kernel.org/linus/5d2eb73aa0fd57844938a22bddc59f7bc8183924|commit]] == S390 == * tty3270: add support for VT100 graphics escape [[https://git.kernel.org/linus/e4b57b93935d103aae10abea361af77ef906f368|commit]] * tty3270: add support for background color [[https://git.kernel.org/linus/4043ea22535d00325b469c75cf4840612c09345b|commit]] * tty3270: add support for graphic escape [[https://git.kernel.org/linus/94dbb0a76ce21878867210d1cf0b21725023b452|commit]] * add support to nolibc and rcutorture [[https://git.kernel.org/linus/feaf75658783a919410f8c2039dbc24b6a29603d|commit]], [[https://git.kernel.org/linus/18a5a09d90a75f40d5dcd3bd2ff9052845f36c37|commit]], [[https://git.kernel.org/linus/0043e6f21dbeb039f3e204c40471071a9c43f928|commit]], [[https://git.kernel.org/linus/16d4b2bd799da6338bd4fe8db2a93c5fa70b50f3|commit]], [[https://git.kernel.org/linus/28ef4c3753a4e57a347b2bf5f598645de966c137|commit]] * lib/zlib: Set of s390 DFLTCC related patches for kernel zlib [[https://git.kernel.org/linus/cbf125408d1ca141cc1c3f8376e091e3cdde2cb2|commit]], [[https://git.kernel.org/linus/9fec9f8ea51c782d58a8b86f8e868fc06c782386|commit]], [[https://git.kernel.org/linus/9010dbc007b853ed55905e40fa8e9d39fcb75935|commit]], [[https://git.kernel.org/linus/f65c35d3336ec8c7af6e12b7fd15acfb4b8e9ffa|commit]] * KVM: Extend MEM_OP ioctl by storage key checked cmpxchg [[https://git.kernel.org/linus/7d42b38de9927ab04162f36f8c448aed8d344e40|commit]], [[https://git.kernel.org/linus/12d27074193bda046122b6f94bacba818e4fd6c6|commit]], [[https://git.kernel.org/linus/de14e014a7c6a69b31b68374e6fe30f8da683505|commit]], [[https://git.kernel.org/linus/06e5da81c66cd688d12c0c38ef35dd7c1c1845e5|commit]], [[https://git.kernel.org/linus/76a2ee43ed9a34f163d0331e3ba320c34c66c64e|commit]], [[https://git.kernel.org/linus/12c12a9924b475d6a20760f992fbf5e080747ae3|commit]], [[https://git.kernel.org/linus/dc55ceaef616bdac73810d6588c23a5b50d24911|commit]], [[https://git.kernel.org/linus/a41f505e9f7f4e13afb6f0e331f99360a3088af7|commit]], [[https://git.kernel.org/linus/8550bcb754bc9ee0f8906c416e9e900e4ed5607c|commit]], [[https://git.kernel.org/linus/0d6d4d23955c8aaa69f361897ec1aad67bf93653|commit]], [[https://git.kernel.org/linus/701422b3438240a98000e0db3ef68d4db7991918|commit]], [[https://git.kernel.org/linus/3fd49805d19d1c566e92358d2e3d9fadb3b5ec16|commit]], [[https://git.kernel.org/linus/a7b041732802db0dab0a7740a6c8338b803bf933|commit]], [[https://git.kernel.org/linus/0dd714bfd200068e3c0d6b37861056367868e612|commit]] * Add support for RDP (Reset DAT-Protection) [[https://git.kernel.org/linus/0807b856521f3313d3912ebb52a9144215c4ff08|commit]] * cpumf: support user space events for counting [[https://git.kernel.org/linus/91d5364dc673fa9cf3a5b7b30cf33c70803eb3a4|commit]] * Support bpf trampoline for s390x [[https://git.kernel.org/linus/7ce878ca81bca7811e669db4c394b86780e0dbe4|commit]], [[https://git.kernel.org/linus/bf3849755ac606f2a04808b6b706a16867d1e1b8|commit]], [[https://git.kernel.org/linus/bb4ef8fc3d193ed8d5583fb47cbeff5d8fb8302f|commit]], [[https://git.kernel.org/linus/390a07a921b3b1fe544cb2921de7abb94ebb7f26|commit]], [[https://git.kernel.org/linus/f1d5df84cd8c3ec6460c78f5b86be7c84577a83f|commit]], [[https://git.kernel.org/linus/8fb9fb2f1728a56a2a6dba79de6f17975def658d|commit]], [[https://git.kernel.org/linus/528eb2cb87bc1353235a6384696b4849bde8b0ba|commit]], [[https://git.kernel.org/linus/b14b01f281f728f465d2440ce6ed0491df735169|commit]], [[https://git.kernel.org/linus/dd691e847d28ac5f8b8e3005be44fd0e46722809|commit]], [[https://git.kernel.org/linus/6eab2370d142cdfe853d168881b0d4abd3c6f7a6|commit]], [[https://git.kernel.org/linus/63d7b53ab59f0dd8540e672b49836493d1fa0a79|commit]], [[https://git.kernel.org/linus/31da9be64a1136e5699a1fc59a45001d6b98acdc|commit]], [[https://git.kernel.org/linus/af320fb7ddb091a401a407bb256a9abd85587624|commit]], [[https://git.kernel.org/linus/804acdd251e837bb1a588074752d69698ac36b5f|commit]], [[https://git.kernel.org/linus/ee105d5a50d4075be81b2d924bfc630e0d7cdb90|commit]], [[https://git.kernel.org/linus/98e13848cf43b66b0f32f10011aa398c2bff5ae6|commit]], [[https://git.kernel.org/linus/56e1a50483194b2e0ac54849e94cc2b80480895e|commit]], [[https://git.kernel.org/linus/06c1865b0b0c7820ea53af2394dd7aff31100295|commit]], [[https://git.kernel.org/linus/06cea99e683c66e16cdf04ef91d2a008b34d7d3d|commit]], [[https://git.kernel.org/linus/2934565f04fd21319fd2dfcc68bebebff503ceb2|commit]], [[https://git.kernel.org/linus/80a611904eef65e8c60e0c8c8f50fa98a0bd0c69|commit]], [[https://git.kernel.org/linus/be6b5c10ecc4014446e5c807d6a69c5a7cc1c497|commit]], [[https://git.kernel.org/linus/207612eb12b912cad40c0299fefcabf3d6cc1f3f|commit]], [[https://git.kernel.org/linus/26e8a014947948387790a029b310276ac083971b|commit]], [[https://git.kernel.org/linus/d504270a233d2710cf9203b9ecec820736d0e042|commit]], [[https://git.kernel.org/linus/438a2edf26b7384d3c781ff98015d58135b848d5|commit]], [[https://git.kernel.org/linus/1b5e385325810b23e4e8d46f97d0e2e838e26802|commit]], [[https://git.kernel.org/linus/e85465e420be1e408f9465f8b6fd9e2f7b17aea1|commit]], [[https://git.kernel.org/linus/25c76ed428219127aba385d40756f6d5814e96e9|commit]], [[https://git.kernel.org/linus/42fae973c2b168d527c8b4f6a02828ecd1e19626|commit]], [[https://git.kernel.org/linus/0f0e5f5bd5066c9ffaa006e26fc7d092b04d4088|commit]], [[https://git.kernel.org/linus/49f67f393ff264e8d83f6fcec0728a6aa8eed102|commit]], [[https://git.kernel.org/linus/07dcbd7325cee92d5798536f417b9b1da497f9da|commit]] == Alpha == * Lazy FPU switching [[https://git.kernel.org/linus/050966666047b5013fe44944cef9e9605bdf6cfe|commit]] == IA-64 == * Remove Intel compiler support [[https://git.kernel.org/linus/95207db8166ab95c42a03fdc5e3abd212c9987dc|commit]] == M68k == * Add kernel seccomp support [[https://git.kernel.org/linus/6baaade15594b28195da369962208b1f658e7342|commit]] == MIPS == * BCM47XX: Add support for Linksys E2500 V3 [[https://git.kernel.org/linus/fc605b914167de75432c3b5aae239fb191e84a31|commit]] == UM == * Support LTO [[https://git.kernel.org/linus/83e913f52aba69149261742aa9ea4ceea7bf182d|commit]] = Drivers = == Graphics == * New DRM accel driver for Intel VPU [[https://git.kernel.org/linus/35b137630f08d913fc2e33df33ccc2570dff3f7d|commit]], [[https://git.kernel.org/linus/263b2ba5fc93c875129e0d2b4034d7d8a34b3d39|commit]], [[https://git.kernel.org/linus/647371a6609ddf8700fe151af72e32daebb9baa7|commit]], [[https://git.kernel.org/linus/5d7422cfb498bf25c4a9ea6b9d82253cb5236364|commit]], [[https://git.kernel.org/linus/02d5b0aacd0590dbaf25f35834631e5bc11002e3|commit]], [[https://git.kernel.org/linus/cd7272215c44676dba236491941c6c406701cc5e|commit]], [[https://git.kernel.org/linus/852be13f3bd32c1eab808840cfac41b1fea25991|commit]] * Intel * Add DSC support to MST path [[https://git.kernel.org/linus/d51f25eb479aeb61c194089f66261be67ff9237a|commit]] * Enable SDP split support for DP 2.0 [[https://git.kernel.org/linus/8853750dbad8f5dbf912a9f13b3fea41965634e1|commit]] * Add probe blocking support to i915.force_probe parameter [[https://git.kernel.org/linus/157821fb3e9aaa07cf408686b08d117bf27b7de1|commit]] * Enable Xe HP 4tile support [[https://git.kernel.org/linus/be3ad78dfed2af3c293e01f3c5f13ee1af3395c3|commit]] * Enable XE_HP 4Tile support [[https://git.kernel.org/linus/6ed879b08f210bd1d312eaada653e6a82894060a|commit]] * Add support for GSC FW loading [[https://git.kernel.org/linus/242c4b91cd35b66c4aed9286b72352f69c3e4050|commit]], [[https://git.kernel.org/linus/f0ce5178a38918adfef728f43dd544616b05e3e3|commit]], [[https://git.kernel.org/linus/15bd4a67e914dbee6b6ba5dfd32a09cbf7419a5b|commit]], [[https://git.kernel.org/linus/5a44fcd73498c29293ff2b520d6f02e49c68d59f|commit]], [[https://git.kernel.org/linus/6b7cbdbe20b33943b86cb8d752ade6841e83fc42|commit]], [[https://git.kernel.org/linus/e6d6e9d0b83d49c330f89ee8d3d1728a930c933e|commit]] * Remove the obsolete driver-i810 [[https://git.kernel.org/linus/cab18866feade5ffa0cadc5e632528b2050e8e28|commit]] * Remove the obsolete driver-mga [[https://git.kernel.org/linus/96ed7db55bef1db201aaaef2761416c4e64e1245|commit]] * Remove the obsolete driver-r128 [[https://git.kernel.org/linus/28483b8666bfe7d0ec34cfc492d77e64f97f6de1|commit]] * Remove the obsolete driver-savage [[https://git.kernel.org/linus/7872bc2cb13e4dd83d193d50a835e179f449ab07|commit]] * Remove the obsolete driver-sis [[https://git.kernel.org/linus/20efabc2e80be1df79510b8be9ca004d3ce9be11|commit]] * Remove the obsolete driver-tdfx [[https://git.kernel.org/linus/cfc8860eacec5da2ee2880c502b10daf196c6cbb|commit]] * Remove the obsolete driver-via [[https://git.kernel.org/linus/8391e000065d4fac88548e071fc43c3e07cb7047|commit]] * bridge * Add it6505 driver to read data-lanes and link-frequencies from dt [[https://git.kernel.org/linus/380d920b582d0f83852ac6885af868d93c38095b|commit]] * cdns-dsi: Add support for J721E wrapper [[https://git.kernel.org/linus/6b9748f86816f4e25e40d5fdbf7089f73a2051f7|commit]] * fsl-ldb: Add i.MX93 LDB support [[https://git.kernel.org/linus/48865413c9ddab68a774b506b1940af0f6b6089d|commit]] * format-helper: Support the AB24/XB24 formats [[https://git.kernel.org/linus/9abecb1d338c576bef90dd8c4f58485bc56b64ca|commit]] * it66121: Add support for the IT6610 [[https://git.kernel.org/linus/8d784ba93d5f3b52d62fe23c08c3c8ea7b36d622|commit]] * panel * panel-edp: add IVO M133NW4J panel entry [[https://git.kernel.org/linus/e22391454e3e8ab1aa7f25ef352c2f85f4d54568|commit]] * Add driver for the AUO A030JTN01 TFT LCD [[https://git.kernel.org/linus/6febdb2491626d4ae8c54dff51716b2695bcd12d|commit]] * Add the orisetech ota5601a [[https://git.kernel.org/linus/cd6d41281e957ff70a1cbd049847006957860e72|commit]] * Add visionox vtdr6130 DSI panel driver [[https://git.kernel.org/linus/2349183d32d83a7635baa804934813bcad13fd62|commit]] * Add Himax HX8394 panel controller driver [[https://git.kernel.org/linus/65dc9360f7411a2dedcfa56b00d178dbf6ee1f84|commit]] * Renesas V4H DSI & DP output support [[https://git.kernel.org/linus/9456578de6c45cbe129913e58fa8785963d01a87|commit]], [[https://git.kernel.org/linus/8ffd3d5ec0bf911e56db90ad351e653119c31848|commit]], [[https://git.kernel.org/linus/ff1dd4a8422beebbc5df98671fcd0ad47c57b7b2|commit]], [[https://git.kernel.org/linus/95d60f13d3abc2916b36d9429dc127f55c9cd8d3|commit]], [[https://git.kernel.org/linus/df9645b93a1ac30dd99678597e8bed835216a0d4|commit]], [[https://git.kernel.org/linus/03bbfe42281ce5818e0166d2612f5d65b2b8703a|commit]], [[https://git.kernel.org/linus/3f3b9861fa6c435c1600ae465e116497374ebe28|commit]] * renesas: Add new pixel formats [[https://git.kernel.org/linus/8d0e3fc61abdf56a403b316e03fa8f89a3108caa|commit]], [[https://git.kernel.org/linus/0dc1d7a79a8d13e316d3b168e9fc57e376099c7a|commit]], [[https://git.kernel.org/linus/110d2bd7a2a5a9c59cd7700646952f88f2335539|commit]], [[https://git.kernel.org/linus/e0106bd776e178e5fe1522581d4104c396c7eeb9|commit]], [[https://git.kernel.org/linus/2768fbf10076b744596ddaf59879bc96748c6f8f|commit]], [[https://git.kernel.org/linus/f7a36a79ffe72ea895a79e609cd3bd398b1f89fa|commit]], [[https://git.kernel.org/linus/f37991219716aefec979c8347e5f97204689737a|commit]] * Analog TV Improvements [[https://git.kernel.org/linus/e76c4156c74402c3d0ed8ce78c320697a396dc10|commit]], [[https://git.kernel.org/linus/1fd4a5a36f9f10aaad5d9b1b329c2c057d80a0e5|commit]], [[https://git.kernel.org/linus/aab5aaa760a3305d188612dd4a6ff4cde1b153d8|commit]], [[https://git.kernel.org/linus/80ed86d4b6d7cf91f4fd588bd7be2fa382724d2d|commit]], [[https://git.kernel.org/linus/7d63cd8526f1b70d1438b1aa90620cde941162c3|commit]], [[https://git.kernel.org/linus/4fcd238560ee6724d6edcae95820bdf7f2e40ab1|commit]], [[https://git.kernel.org/linus/d4613e3e50d34bc30ea384b8bf9560e874451640|commit]], [[https://git.kernel.org/linus/e691c9992ae1c731ea67083739823b131c1d88ea|commit]], [[https://git.kernel.org/linus/fedcaf726f542b1b32611449bdea9cb02bf6bba9|commit]], [[https://git.kernel.org/linus/65c7bcf773208ca85192d9c76e9f368269848c50|commit]], [[https://git.kernel.org/linus/0740ac381b2c674eec72e63c78253b3ad07febd2|commit]], [[https://git.kernel.org/linus/1e4a91db109f623d0e3ef7d8bfae3c88b4d2fa87|commit]], [[https://git.kernel.org/linus/00e77a697df29cadfbb78d4b14c357b07f3bb221|commit]], [[https://git.kernel.org/linus/5a28cefda3a94afc7761abbf4cb6270deeef8105|commit]], [[https://git.kernel.org/linus/c104b23147c725dcdf27558c5f37258aa66e38ed|commit]], [[https://git.kernel.org/linus/b5da40af1b89019ffe7ee34f49676514c45411b3|commit]], [[https://git.kernel.org/linus/91112a6fc12cb086cf7a3a350df6a415ba4631ef|commit]], [[https://git.kernel.org/linus/2757279304e45d749578df30ae0cd1a42fefe096|commit]], [[https://git.kernel.org/linus/e95d5445df2ae03d5c9c08b19a1603f57c1e549c|commit]] * habanalabs * Add uapi to flush inbound HBM transactions [[https://git.kernel.org/linus/20faaeec3794661c1d73578316691174a5a0e5a9|commit]], [[https://git.kernel.org/linus/e2a079a206869b5e2164afa15bdf8d6d6299ca13|commit]], [[https://git.kernel.org/linus/2fd7db3c80d2391a2382db324577e2a6fd54d3a1|commit]], [[https://git.kernel.org/linus/bcace6f058a94d2adb45c54b2e63b879c7849341|commit]], [[https://git.kernel.org/linus/139dad04712e803c7b844ccb57ef9302be64a3d0|commit]], [[https://git.kernel.org/linus/e1e8e7472b8c647c4e117191d6b44b852c90cd24|commit]], [[https://git.kernel.org/linus/4083697a3672d0eb6e41ba51bff168171a3bf398|commit]], [[https://git.kernel.org/linus/6cfb00139dc3b7b64996ecff3c76eaf08d6c8c4b|commit]], [[https://git.kernel.org/linus/78baccbdc343b0d4c3e3fd05644dadc3fc3f94c0|commit]] * Pass-through request from user to f/w [[https://git.kernel.org/linus/c2239a251d2d738f435c46bae7d66899c62ce493|commit]], [[https://git.kernel.org/linus/2dd89591d8c7fe7b24daeac0faf8a0afa30f9b0b|commit]] * Enable !AdaptiveSync in DC interface [[https://git.kernel.org/linus/e95afc1cf7c66e010ef47a0df729f1baf3199671|commit]] * Enable GPO dynamic control support for SMU13.0.0 [[https://git.kernel.org/linus/1794f6a9535bb5234c2b747d1bc6dad03249245a|commit]], [[https://git.kernel.org/linus/62b9f835a6c60171845642afec4ce4b44865f10f|commit]], [[https://git.kernel.org/linus/32a7819ff8e25375c7515aaae5cfcb8c44a461b7|commit]], [[https://git.kernel.org/linus/e1dd28fc5bef3b9abce7713fb0bd136ff63488a1|commit]], [[https://git.kernel.org/linus/975b4b1d90ccf83da252907108f4090fb61b816e|commit]], [[https://git.kernel.org/linus/b1a9557a7d00c758ed9e701fbb3445a13a49506f|commit]], [[https://git.kernel.org/linus/5cfd978490d82486fc3286a72009fb3229760555|commit]], [[https://git.kernel.org/linus/88347fa18bead86949c45229faaa2c66177c62fb|commit]], [[https://git.kernel.org/linus/cf5cf3498356810fa211d3598ecb1a884b9db095|commit]], [[https://git.kernel.org/linus/7a18e089eff02f17eaee49fc18641f5d16a8284b|commit]] * Add S/G display parameter [[https://git.kernel.org/linus/bf0207e1727031798f300afa17f9bbeceac6da87|commit]], [[https://git.kernel.org/linus/8f56a0fe1f3c1a5d6be5073d5b4186f53535fee2|commit]], [[https://git.kernel.org/linus/c4029779c627ed94253ea2699e43753c052360c1|commit]], [[https://git.kernel.org/linus/512e8475d2a9db5d424b0047572080183203c4e5|commit]] * Add support for WINDOW3D profile mode on SMU13.0.0 [[https://git.kernel.org/linus/b2bfb48a31f1858feeaffa6787e9c8d0432914d4|commit]], [[https://git.kernel.org/linus/272b981416f8be0180c4d8066f90635fa7c1c501|commit]] * DC Patches Feb 13, 2023 [[https://git.kernel.org/linus/e383b12709e32d6494c948422070c2464b637e44|commit]], [[https://git.kernel.org/linus/7cd07d9de8711a0d3f361c84d402e3d6b89ccede|commit]], [[https://git.kernel.org/linus/3b214bb7185d8284d7d4c53e15127f69a375abf6|commit]], [[https://git.kernel.org/linus/37d184b548db0f64d4a878960b2c6988b38a3e7e|commit]], [[https://git.kernel.org/linus/3a61570415690e9d5e7f10a288d25d49163f819d|commit]], [[https://git.kernel.org/linus/fbc0c790b1e274d2e1697df98e469cb982ada84e|commit]], [[https://git.kernel.org/linus/ce05ca0a37e1f27465edee3d14a24ba2bd4bd3e9|commit]], [[https://git.kernel.org/linus/d8f3b3951ff4db44cd4695c396e26160de789370|commit]], [[https://git.kernel.org/linus/3d8fcc6740c9f959bc490cd4a084c5a55b572987|commit]], [[https://git.kernel.org/linus/ed6941b632100169aea453f60461ab79111af48c|commit]], [[https://git.kernel.org/linus/f0584be558719e0a7efc78613baa0eafcae05fbe|commit]], [[https://git.kernel.org/linus/d6ed6d0d2aa8f238ca20ed03f24355336ff77dff|commit]], [[https://git.kernel.org/linus/71c4ca2d3b079d0ba4d9b3033641fea906cebfb6|commit]], [[https://git.kernel.org/linus/ba7606846579ce6b1eca25b196e0f88de7e3becf|commit]], [[https://git.kernel.org/linus/6cfb6df2d645c00513ecf17832928e08979fa953|commit]], [[https://git.kernel.org/linus/9b0f51e8449f6f76170fda6a8dd9c417a43ce270|commit]], [[https://git.kernel.org/linus/5ca38a18b5a47017d0e9a016661dad12322767fa|commit]], [[https://git.kernel.org/linus/35f33086b1b9cf5d85f55b36c75b92f8cccfbf12|commit]], [[https://git.kernel.org/linus/b7c67f72408b11b922f23f06c7df0f6743a2e89d|commit]], [[https://git.kernel.org/linus/8e5cfe547bf3beeb29d9608be68d22dff2b5012b|commit]], [[https://git.kernel.org/linus/d2994b25e0787eabf7477ccb17b62c7f680809fa|commit]], [[https://git.kernel.org/linus/2f5d28ae2da563f209a964f65c7243403ef37dd0|commit]] * DC Patches Jan 25, 2023 [[https://git.kernel.org/linus/5b49da02ddbe1b9082cfc9be1cd848375da178ea|commit]], [[https://git.kernel.org/linus/0a31efb4d606884d1ed17d5df64e9d02f50a0713|commit]], [[https://git.kernel.org/linus/918d5166439078364453f2eb5b4d8e75095a510e|commit]], [[https://git.kernel.org/linus/e3834491b92a10d97f0cc0029e276d1938469bfe|commit]], [[https://git.kernel.org/linus/73dd4ca4b5a01235607231839bd351bbef75a1d2|commit]], [[https://git.kernel.org/linus/ce05ca0a37e1f27465edee3d14a24ba2bd4bd3e9|commit]], [[https://git.kernel.org/linus/ea062fd28f922cb118bfb33229f405b81aff7781|commit]], [[https://git.kernel.org/linus/32e3da4310bb1c55b076ed477dea6ddf5a965e69|commit]], [[https://git.kernel.org/linus/972243f973eb0821084e5833d5f7f4ed025f42da|commit]], [[https://git.kernel.org/linus/dd2db2dc4bd298f33dea50c80c3c11bee4e3b0a4|commit]], [[https://git.kernel.org/linus/b07bb766b6d54fb280ff257e5a6d1c3b418832f9|commit]], [[https://git.kernel.org/linus/275d8a1db261a1272a818d40ebc61b3b865b60e5|commit]], [[https://git.kernel.org/linus/154711aa5759ef9b45903124fa813c4c29ee681c|commit]], [[https://git.kernel.org/linus/e322843e5e33e72ff218d661f3d15ff9c9f2f1b5|commit]], [[https://git.kernel.org/linus/504f9ba8e02b2fb4496f6bccfa331b10fd34d14a|commit]] * DC Patches December 12 2022 [[https://git.kernel.org/linus/3a9c6f9a6159d8ecdf715f7eda0777ead96bcdc0|commit]], [[https://git.kernel.org/linus/d7368ea9708b79c2e8fef95ee5bc8088a4b9c2f2|commit]], [[https://git.kernel.org/linus/1b11ff764aefc0aa5199ad5ae4c45e591ca3090a|commit]], [[https://git.kernel.org/linus/b8ff7e08bab938d84dc329a7193ebf459088727c|commit]], [[https://git.kernel.org/linus/aa9fdd5d5add50305d2022fa072fe6f189283415|commit]], [[https://git.kernel.org/linus/21f6be48f813fa3d7f4557d1c190ba9d51e90f80|commit]], [[https://git.kernel.org/linus/752e89a70cca1c644ccc9f69c1abd6c2b95ca9d7|commit]], [[https://git.kernel.org/linus/e8fd3eeb5e8711af39b00642da06474e52f4780c|commit]], [[https://git.kernel.org/linus/46604a08c1adb44e57822304902fd23416d33739|commit]], [[https://git.kernel.org/linus/331ea5d1bd64e896e9cf79099e68456275106e79|commit]], [[https://git.kernel.org/linus/bad3a066a4ee3c5b81827756e118753dc2f9afcf|commit]], [[https://git.kernel.org/linus/669018a9929c61cb14ea374ee93df24242a7794d|commit]], [[https://git.kernel.org/linus/345ce3fc9262881343dc6faa4ec132bc21e88756|commit]], [[https://git.kernel.org/linus/e85d59885409736ad21cafd27eb73d6f7630cefb|commit]], [[https://git.kernel.org/linus/7a7175a2cd84b7874bebbf8e59f134557a34161b|commit]], [[https://git.kernel.org/linus/3f6752b4de41896c7f1609b1585db2080e8150d8|commit]], [[https://git.kernel.org/linus/6e18c9b35e2d5237ed8efa03724ee5de2d16ee74|commit]], [[https://git.kernel.org/linus/639f6ad6df7f47db48b59956b469a6917a136afb|commit]], [[https://git.kernel.org/linus/ebf13b72020ad45c6e27f784638f247a92786cc0|commit]], [[https://git.kernel.org/linus/6b81090d6d4cc0fd818c9ec9dbb6906f921ad396|commit]], [[https://git.kernel.org/linus/b54954dbc4d5e69196594ca723ff99a79aeb07da|commit]] * DSC Electric Boogaloo for sm8[12]50 [[https://git.kernel.org/linus/cda3774c242e156cdcc279bd36b404af89f744c6|commit]], [[https://git.kernel.org/linus/bc6b6ff8135c4b96787eda88f3baf653939a75ce|commit]], [[https://git.kernel.org/linus/82e72fd22a8f9eff4e75c08be68319008ea90a29|commit]], [[https://git.kernel.org/linus/abc40122d9a69f56c04efb5a7485795f5ac799d1|commit]], [[https://git.kernel.org/linus/7d9510efec33157f9994df735e035e1b18e2562b|commit]], [[https://git.kernel.org/linus/4ba5a4ad568e3b2396dca307894062b7e9442e61|commit]], [[https://git.kernel.org/linus/7aa6f1a12ff4439a5d7e8b877d57d78c2a86d3ee|commit]], [[https://git.kernel.org/linus/9da5daa0c122fe1617168d9b96e9f5d412ae4d93|commit]] * Add support for SM8550 [[https://git.kernel.org/linus/93f0ca6fd61c835503421217ae7f67a9a7cffa1f|commit]], [[https://git.kernel.org/linus/efcd0107727c4f04aa9cd7fb5c50c83a1e747218|commit]], [[https://git.kernel.org/linus/a2f33995c19db64398ab6440e8c38fe9d4df6e3c|commit]], [[https://git.kernel.org/linus/8b034e67711130083bd58ed2b1426f70a1a69bd3|commit]], [[https://git.kernel.org/linus/9d0118f0855ba0f5b083f5f398e073660066c30f|commit]] * Add support for SM8450 [[https://git.kernel.org/linus/45af56bf2d7475b56f62cdf85ff8cdafe463650c|commit]], [[https://git.kernel.org/linus/44a9f577a087ee38a5291c1e5442613297a51a26|commit]], [[https://git.kernel.org/linus/4a352c2fc15aec1e8ab5e515097d1ba2fd623858|commit]], [[https://git.kernel.org/linus/0eda3c6cb1c5d6f8ccb8e28159f5226269fba5ac|commit]], [[https://git.kernel.org/linus/1a1bd3f450000828ba7845c54ea95b43badad50f|commit]], [[https://git.kernel.org/linus/2f9ae4e395ed125b5d195acbe3f99bb64dfb7cb0|commit]], [[https://git.kernel.org/linus/c332881cb64a184d33d420ed80922d6b8b545b32|commit]], [[https://git.kernel.org/linus/dbe2422b20b9bc33067804e65b7ce24b06706dec|commit]], [[https://git.kernel.org/linus/43e3293fc614c742e5e59f8045984959afdb345e|commit]], [[https://git.kernel.org/linus/100d7ef6995d1f86727cc9dd53fec45bb6c0af21|commit]], [[https://git.kernel.org/linus/80056d9ac47ab63abf7f0e8f77e8d66b5e483442|commit]] * Add SC8280XP support [[https://git.kernel.org/linus/45af56bf2d7475b56f62cdf85ff8cdafe463650c|commit]], [[https://git.kernel.org/linus/4a352c2fc15aec1e8ab5e515097d1ba2fd623858|commit]], [[https://git.kernel.org/linus/f272925ed473890f91499e241bd3ad0a2f3bd2e1|commit]], [[https://git.kernel.org/linus/b6f8c4debc0035a1a9096cf016bbd04c31dd78b0|commit]], [[https://git.kernel.org/linus/5d417b40114687cc74fed03d6dca952eb84be878|commit]], [[https://git.kernel.org/linus/5bd69fd16198851928886d6e0045c009c98462d7|commit]], [[https://git.kernel.org/linus/fa33f2aa96742854d3b4e313532f67889c064cc7|commit]], [[https://git.kernel.org/linus/cd198caddea72880693b965ac3c30eb1d4982541|commit]], [[https://git.kernel.org/linus/542b37efc20e64854df87819eeed2c45c5c83e29|commit]], [[https://git.kernel.org/linus/57d6ef683a1554568adafd975b5ea40778b4d672|commit]], [[https://git.kernel.org/linus/4a883a8d80b5f528b11f50cb0864c9662778f415|commit]], [[https://git.kernel.org/linus/5715698507ee09ebe92791e3ff9224e256f14231|commit]] * Devfreq fixes+tuning [[https://git.kernel.org/linus/6563f60f14cbb3dcbdc4e1d8469fc0fbaaa80544|commit]], [[https://git.kernel.org/linus/fadcc3ab1302d4e5baa32c272b658221f0066696|commit]], [[https://git.kernel.org/linus/33f868db99f16af4ed3aa67f79cb8ede630b8574|commit]] * Add SM6375 DSI PHY [[https://git.kernel.org/linus/454ec4a7da948fcbbd0118080d2e0025d0f5594d|commit]], [[https://git.kernel.org/linus/630dfec54fd02789f5ce373c1e8637a1f922f3f6|commit]] * Add data-lanes and link-frequencies to dp_out endpoint [[https://git.kernel.org/linus/26c5aa54f5973a3b1181939811f231faa638332a|commit]], [[https://git.kernel.org/linus/123f125550741ca69fda8a3a1baa2230fc596616|commit]], [[https://git.kernel.org/linus/d25cfeeec06482f2487d612f36890b57ef1aad3c|commit]], [[https://git.kernel.org/linus/0e7f270591a42f6c674d2410ac30e086ea0bf54d|commit]] * Enable Display for SM8350 [[https://git.kernel.org/linus/0e91bcbb0016150124a99bd97d34b97615750f10|commit]], [[https://git.kernel.org/linus/7eb75dbd62eb61695cffa31f0aa6311c25681906|commit]], [[https://git.kernel.org/linus/5dfc1b2e61601f8e15075b45656d6b962ecb3e99|commit]], [[https://git.kernel.org/linus/1e9b35fbb8c8a34677c1acd1b13e24a2560889ae|commit]] * a2xx: support loading legacy (iMX) firmware [[https://git.kernel.org/linus/302295070d3cc74e31b645c9798b158c3a2fd1bb|commit]] * etnaviv * Experimental versilicon NPU support [[https://git.kernel.org/linus/ab3d7b6d48abb61d5354b5b1024e4e11f70eda9d|commit]], [[https://git.kernel.org/linus/d801e6f4e1acca0c578051f2733dda04441e42d0|commit]], [[https://git.kernel.org/linus/49b5ff4c11305dec03e94490071931bf85981f65|commit]] * Export client GPU usage statistics via fdinfo [[https://git.kernel.org/linus/97804a133c681ed9af7696902508e1ec4d75552a|commit]] * ili9486 * Support 16-bit pixel data [[https://git.kernel.org/linus/e9c7cfe7b71d26ee4a9f17192632f3d0ff246001|commit]], [[https://git.kernel.org/linus/77772e607522daa61f3af74df018559db75c43d6|commit]] * vc4 * Misc fixes and improvements for the HVS and CRTCs [[https://git.kernel.org/linus/1284365e3e8cc33849f90cae20bca36fd7544e24|commit]], [[https://git.kernel.org/linus/df993fced230daa8452892406f3180c93ebf7e7b|commit]], [[https://git.kernel.org/linus/982ee94486863a41c6af9f2ab3f6681f72bc5c48|commit]], [[https://git.kernel.org/linus/87551ec650bb87d35f1b29bba6a2430896e08da0|commit]], [[https://git.kernel.org/linus/868bc9994c0c6b229989623c7614f15853bf16b5|commit]], [[https://git.kernel.org/linus/902973dc1a049c0d7bf0c222b8f2b3876f01b4a2|commit]], [[https://git.kernel.org/linus/f92534ea5cb1e5485218c0ed7cc5d588e28e668e|commit]], [[https://git.kernel.org/linus/92c17d16476c71329a2978f80f23ce1009c69c55|commit]], [[https://git.kernel.org/linus/02c98b16ae07f3a661146678c649ac31021e64ca|commit]], [[https://git.kernel.org/linus/d5e606e594eef125c4cb12676a8817c4eb7cd431|commit]], [[https://git.kernel.org/linus/977374cf481d3bea916b2775e6ecc682b9689550|commit]], [[https://git.kernel.org/linus/6c37c9c65d2c792ddee3e33e595a498592bf9735|commit]], [[https://git.kernel.org/linus/273c417658c83026741ded0c34cec9caab41e97f|commit]], [[https://git.kernel.org/linus/771d6539f27bd55f43d8a95d53a7eeaaffa2681c|commit]], [[https://git.kernel.org/linus/71c541ebe82b26720b3e3f02ff22ed1eccea3484|commit]] * dpi: Various improvements [[https://git.kernel.org/linus/a0af74f30bb62143593c6f895ed439059d19675e|commit]], [[https://git.kernel.org/linus/2468e0195c09706896712a29030132e7f1bd0bcc|commit]], [[https://git.kernel.org/linus/1113f644c488225212eebd3966360326579e2d3d|commit]], [[https://git.kernel.org/linus/11fb69c753cdfaa75f4c2a01861edaaacfe23d90|commit]], [[https://git.kernel.org/linus/465bf9b769ed6cd886a58abc06bccfcefeb55df4|commit]], [[https://git.kernel.org/linus/0c9a31b8f93b93f6c42848f4cd8e7ad6a04ce9ae|commit]], [[https://git.kernel.org/linus/0870d86eac8a9abd89a0be1b719d5dc5bac936f0|commit]] * drm/gud: Use the shadow plane helper [[https://git.kernel.org/linus/951df98024f7272f85df5044eca7374f5b5b24ef|commit]], [[https://git.kernel.org/linus/f531d198822a4bdf631f080a9638096681f6eb9f|commit]], [[https://git.kernel.org/linus/754a6ca85c220ea7b1c5413085a1eb8b4dff2c2a|commit]], [[https://git.kernel.org/linus/562fd7cc67cb6d1fe8b96e72fbca9a423b5a43be|commit]], [[https://git.kernel.org/linus/c17d048609bf09d4fc78b02964e42eafb66a337e|commit]], [[https://git.kernel.org/linus/5ad8e63ebba3d5a0730b43180b200e41eeb9409c|commit]] * simpledrm: Support system memory framebuffers [[https://git.kernel.org/linus/241d5852468688e428236f9f3589ed0a35fb20de|commit]], [[https://git.kernel.org/linus/ed1055394134674110dc51c972a09bf37bd4672e|commit]], [[https://git.kernel.org/linus/1cd1b5c2f6ec91d2843bc1ff42bdacef97218ec6|commit]], [[https://git.kernel.org/linus/fa904b4cbc60afa042e59a07251f54aa208218ce|commit]], [[https://git.kernel.org/linus/9a10c7e6519b3d4c2006b20b1675525b0da07e85|commit]], [[https://git.kernel.org/linus/9abecb1d338c576bef90dd8c4f58485bc56b64ca|commit]], [[https://git.kernel.org/linus/8681e3663411ee6b64dd0714b23f5c86f64f7533|commit]] * tiny: panel-mipi-dbi: Support separate I/O voltage supply [[https://git.kernel.org/linus/3b1fb8b3a3f8a4e645ef580edaeed35ec3f73c38|commit]], [[https://git.kernel.org/linus/3dd26888ac933421a0ba039bea0a637d1d058b60|commit]], [[https://git.kernel.org/linus/94914b8594a4e471f688f276fe583dbea17209ba|commit]] * backlight: Remove pxa tosa support [[https://git.kernel.org/linus/744fc2dada5073b8d9822c8c838c8141037ec651|commit]] * backlight: ktz8866: Add support for Kinetic KTZ8866 backlight [[https://git.kernel.org/linus/f8449c8f73552b82e2a29dfdb99df54bd3a5aafc|commit]] * fbdev * omapfb: remove omap1 osk driver [[https://git.kernel.org/linus/e140980ef211d537833500377ae411c3f232b41d|commit]] * omapfb: remove unused board support [[https://git.kernel.org/linus/4a8fda693bc990e5cdd77485cf1aa481a97ee8f8|commit]] * Remove s3c2410 framebuffer [[https://git.kernel.org/linus/f48fd50b03d2482dbcc2e672bdcf147984b5d955|commit]] * Remove tmiofb driver [[https://git.kernel.org/linus/aceae7848624a7c4055a90a3e5d849cc45cb8d37|commit]] * Remove w100fb driver [[https://git.kernel.org/linus/7244785e1f707d8a628814009d4b60189f45ba88|commit]] * gpu: host1x: External timeout/cancellation for fences [[https://git.kernel.org/linus/d5179020f5ce44fd449790a9c12ef6c1a90a2ca7|commit]] == Power Management == * cpuidle: teo: Introduce util-awareness [[https://git.kernel.org/linus/27f850880192c19a26d89dab19e2bddcf276032f|commit]], [[https://git.kernel.org/linus/9ce0f7c4bc64d820b02a1c53f7e8dba9539f942b|commit]] * efi/earlycon: Speed up scrolling by disregarding empty space [[https://git.kernel.org/linus/2a5b4ccf0de17e47e9ad13ee0fda9436d5de0a35|commit]] * efi: zboot: Use EFI protocol to remap code/data with the right attributes [[https://git.kernel.org/linus/ace013a543067ed33cf593144b18c6dbeb517cee|commit]] * efi: Enable BTI for EFI runtimes services [[https://git.kernel.org/linus/cf1d2ffcc6f17b422239f6ab34b078945d07f9aa|commit]], [[https://git.kernel.org/linus/1d959312e2f23c8ee6ed9432a6fa4416b267477b|commit]], [[https://git.kernel.org/linus/93be2859e26c3be847780c65313da1b261833451|commit]] * efi: Support ESRT under Xen [[https://git.kernel.org/linus/ab03e91e60ce457a90e6aa2c97ca2fa139b73f55|commit]], [[https://git.kernel.org/linus/aca1d27ac38a61d7db4b56418386992cb96b63f0|commit]], [[https://git.kernel.org/linus/c0fecaa44dc341d86e4ce96efcda9ea8b4c106af|commit]], [[https://git.kernel.org/linus/01de145dc7fbb5e6aba98655c062908a74fa511c|commit]], [[https://git.kernel.org/linus/fa7bee867db1913560435a7486d17d95500a62dc|commit]] * utils: Add Cezanne to the list for forcing !StorageD3Enable [[https://git.kernel.org/linus/e2a56364485e7789e7b8f342637c7f3a219f7ede|commit]] * ACPI: tables: Add support for NBFT [[https://git.kernel.org/linus/6ad90f71129219f9b87ce181189817bcbcde34b8|commit]] * tools/power turbostat: Introduce support for EMR [[https://git.kernel.org/linus/93cac4150727dae0ee89f501dd75413b88eedec0|commit]] * thermal * intel: Introduce Intel TCC library [[https://git.kernel.org/linus/a3c1f066e1c514ac819f5dae288cc8a59c384158|commit]] * tsens: Support using nvmem cells for calibration data [[https://git.kernel.org/linus/498d245749ce35b21121cf5297547fca64bc52db|commit]] * tsens: Support using nvmem cells for msm8974 calibration [[https://git.kernel.org/linus/439f2409a242549b614decfccbbacecad85d2c79|commit]] * imx_sc_thermal: Add iMX8QM sensors [[https://git.kernel.org/linus/1cea99593c9e6991766765b8825e62da37da9ec2|commit]] * intel: intel_pch: Add support for Wellsburg PCH [[https://git.kernel.org/linus/40dc1929089fc844ea06d9f8bdb6211ed4517c2e|commit]] * mtk: Add support for MT7986 and MT7981 [[https://git.kernel.org/linus/248da1fc8418c732e98726fe570d4db01385562d|commit]] * intel: int340x: Add production mode attribute [[https://git.kernel.org/linus/5c36cf27846a364f830e5ea86b411e05f7c8bd2b|commit]] * intel: powerclamp: Use powercap idle-inject feature [[https://git.kernel.org/linus/8526eb7fc75abcd09d8bd061610215baf0ca948a|commit]] * intel: powerclamp: Add two module parameters [[https://git.kernel.org/linus/ebf519710218814cf827adbf9111af081344c969|commit]] * rcar_gen3: Add support for R-Car V4H [[https://git.kernel.org/linus/883d1552997bedcf6e8eca3c65aa2dc5b28d160f|commit]] * mediatek: Add the Low Voltage Thermal Sensor driver [[https://git.kernel.org/linus/f5f633b18234cecb0e6ee6e5fbb358807dda15c3|commit]] * st: Remove syscfg based driver [[https://git.kernel.org/linus/6828e402d06f7c574430b61c05db784cd847b19f|commit]] == Storage == * ufs: qcom: Add HS-G4 support [[https://git.kernel.org/linus/342ab21d203375ad9bee499c41a8cf7794890df6|commit]], [[https://git.kernel.org/linus/fcfcae3b7525c001eb8e1f40013313107846975c|commit]], [[https://git.kernel.org/linus/c9a7b0ddb54d6b10cf91e624e491350f656c1ce3|commit]], [[https://git.kernel.org/linus/69d2f980b68d9c3a50220ac1619210a8701f9474|commit]], [[https://git.kernel.org/linus/baf8d17e2cd1e73ca7c0a97224b3b6c934b879d4|commit]], [[https://git.kernel.org/linus/0cf7620e8e39a5b6c8707e3eb18f7d38c042dba7|commit]], [[https://git.kernel.org/linus/f89dcb24e2ec7edc80f2f56dfa8b3fd22f311561|commit]], [[https://git.kernel.org/linus/692b65516080302c2782bb7bae12e086f137313d|commit]], [[https://git.kernel.org/linus/0d46b98d3a65c4de979073728cdf4c2ad896b767|commit]], [[https://git.kernel.org/linus/90c64cc05fd6d9d516174c6e5f0e02cc5ada9101|commit]], [[https://git.kernel.org/linus/8d0fb02ce5c95ecbb0994d78669bcbb2b90fa408|commit]], [[https://git.kernel.org/linus/2a397a23a565db8db8d30a24b81d349658125c5a|commit]], [[https://git.kernel.org/linus/18fe2ab79bcf00c17d00460ca3f8c179d0aa87a4|commit]], [[https://git.kernel.org/linus/132b027205ef94a1d933d0f08a4109b1e321bda2|commit]], [[https://git.kernel.org/linus/7959587f3284bf163e4f1baff3c6fa71fc6a55b1|commit]], [[https://git.kernel.org/linus/c2c38c573a2e6184f9acd10e98305d3cb5f1c62b|commit]], [[https://git.kernel.org/linus/96a7141da33207672d7a354c885d65af4f0f9b6c|commit]], [[https://git.kernel.org/linus/c270986527f9fccb140826cbf3eff2cb1fccf463|commit]], [[https://git.kernel.org/linus/baf5ddac90dc1983bc376b7ca6fe1afde702ff29|commit]], [[https://git.kernel.org/linus/2c407fe97015a063855fa518bd790f024f818277|commit]], [[https://git.kernel.org/linus/39beef59128f6cf6a5d49e4c0dfd69dabe50b0c5|commit]] * scsi: qla2xxx: Add option to disable FC2 Target support [[https://git.kernel.org/linus/877b03795fcf29ff2e2351f7e574ecc9b9c51732|commit]] * ata: libata: exclude FUA support for known buggy drives [[https://git.kernel.org/linus/38d431229bfbe175b41274faa856e5b0a1ebe70d|commit]] * ata: pata_parport: add driver (PARIDE replacement) [[https://git.kernel.org/linus/246a1c4c6b7ffba88a2553d2b88f7b6280f253a2|commit]] * pata: remove samsung_cf driver [[https://git.kernel.org/linus/d06dd30beb25b273d477a10ea204f595144c1174|commit]] * ata: remove palmld pata driver [[https://git.kernel.org/linus/38943cbd25a24e7d14d68cfca07b9c98039fa683|commit]] * Enable pcpu bio-cache for IRQ uring-passthru I/O [[https://git.kernel.org/linus/888545cb43d7639457883dc325c303a3737c0a64|commit]], [[https://git.kernel.org/linus/7e2e355dd9c9031e19b573d2c48171b0418ec552|commit]] == Drivers in the Staging area == * r8188eu: delete driver [[https://git.kernel.org/linus/fdf6c2309f425509cddd002f278c650ad0b7e34b|commit]] * media: meye: remove this deprecated driver [[https://git.kernel.org/linus/ba47652ba65523ccadac3f8d50dc0e0d560477b2|commit]] * media: stkwebcam: remove deprecated driver [[https://git.kernel.org/linus/aa68bf90a6288aeed02937523328740c07d14043|commit]] * media: cpia2: remove deprecated driver [[https://git.kernel.org/linus/9ea8a9c72a9b4d24e6045ee25f5e465dc22f9f55|commit]] * media: fsl-viu: remove deprecated driver [[https://git.kernel.org/linus/b136c90957784fdb631d123e6c3865d249717dc9|commit]] * media: vpfe_capture: remove deprecated davinci drivers [[https://git.kernel.org/linus/d2a8e92f0b41f26ab798a4296eacdf71959fc6a9|commit]] * media: zr364xx: remove deprecated driver [[https://git.kernel.org/linus/3673237b62a845e49c3e55e8fdbabb20178429a7|commit]] * media: tm6000: remove deprecated driver [[https://git.kernel.org/linus/7120d6bfd6d0b26b49958f429701996f2d3e2c2a|commit]] * media: atomisp: ov2680: Add exposure and gain controls [[https://git.kernel.org/linus/250b9a99bed87828e1beee8d3e8c2df6d7206d15|commit]] * media: atomisp: ov2680: Drop custom ATOMISP_IOC_S_EXPOSURE support [[https://git.kernel.org/linus/8eb47aa3a156fcebe7d5b4d4c34a1341da0df253|commit]] * media: remove davinci vpfe_capture driver [[https://git.kernel.org/linus/582603a957343430cc519539d5dcaa0a0bb1327a|commit]] == Networking == * tools: ynl: more docs and basic ethtool specification support [[https://git.kernel.org/linus/eaf317e7d2bbb04486c9842aea9be1e94bd416ed|commit]], [[https://git.kernel.org/linus/4e4480e89c47b52b3f4fbc1ddf07a7ce541f0839|commit]], [[https://git.kernel.org/linus/3aacf8281336ac57fe4a4e85fa55a68218e90b5c|commit]], [[https://git.kernel.org/linus/30a5c6c8104f34ed02c50041b82f3ef80924de6d|commit]], [[https://git.kernel.org/linus/19b64b48a33e986dd21430e759629af2562373b2|commit]], [[https://git.kernel.org/linus/fd0616d34274fb489e3ea9aed089414d533b58e6|commit]], [[https://git.kernel.org/linus/90256f3f8093284ef4f162229438ff1eea3a928e|commit]], [[https://git.kernel.org/linus/4cd2796f3f8d82aa3a13d3eca39950fe6fe9d672|commit]], [[https://git.kernel.org/linus/8dfec0a8886880868802094967c6a769b6d15737|commit]], [[https://git.kernel.org/linus/5c6674f6eb52f7968b805b25c7478b3d96b6b4f7|commit]], [[https://git.kernel.org/linus/8403bf04453044397219bc70715a3a94730199cc|commit]], [[https://git.kernel.org/linus/b784db7ae840811dfb3eea900620f6bb4ae6e0b1|commit]], [[https://git.kernel.org/linus/01e47a372268beaec517dc0ea8d9101550600df4|commit]], [[https://git.kernel.org/linus/981cbcb030d919ee49ebbfc2889839c6882d9ea7|commit]] * Bluetooth: btintel: Set Per Platform Antenna Gain(PPAG) [[https://git.kernel.org/linus/c585a92b2f9c624b0b62b2af1eb0ea6d11cb5cac|commit]] * Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE [[https://git.kernel.org/linus/1eec3b95b5ce7fb2cdd273ac4f8b24b1ed6776a1|commit]] * Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 [[https://git.kernel.org/linus/83458a5f272b303479e7d2f451600817a7350b6b|commit]] * IB/mlx5: Add support for 400G_8X lane speed [[https://git.kernel.org/linus/88c9483faf15ada14eca82714114656893063458|commit]] * RDMA/hns: Support cqe inline in user space [[https://git.kernel.org/linus/1d91855304c2046115ee10be2c93161d93d5d40d|commit]] * bcmgeSupport wake-up from s2idle [[https://git.kernel.org/linus/3fcdf2dfefb6313ea0395519d1784808c0b6559b|commit]] * bnxt_en: Add auxiliary driver support [[https://git.kernel.org/linus/d80d88b0dfff5829ab31030692672ba6fe9cde48|commit]] * can: ems_pci: Add Asix AX99100 definitions [[https://git.kernel.org/linus/f5ef4d4f5365d3fd633e4827abf1ab2848965413|commit]] * can: rcar_canfd: Add support for R-Car Gen4 [[https://git.kernel.org/linus/8716e6e79a148f58852a393340326ad72fd62a00|commit]] * dsa: felix: add support for MFD configurations [[https://git.kernel.org/linus/dc454fa4b764ab75038e822dfc9a1b2526757a63|commit]] * dsa: mv88e6xxx: Enable PTP receive for mv88e6390 [[https://git.kernel.org/linus/9627c981ac82209c66c1b6c0e15c6cceb8656f01|commit]] * dsa: mv88e6xxx: mac-auth/MAB implementation [[https://git.kernel.org/linus/830763b9672036178288f3a09e963646f1d3cafa|commit]] * dsa: ocelot: add external ocelot switch control [[https://git.kernel.org/linus/3d7316ac81ac329efce221b5584138e8c637a7b1|commit]] * dsa: microchip: add support for credit based shaper [[https://git.kernel.org/linus/e30f33a5f5c74f278feaa57517d851874dfc640f|commit]], [[https://git.kernel.org/linus/71d7920fb2d1d6cdaa6db58426783be02c9cb7bb|commit]] * Add PLCA RS support and onsemi NCN26000 [[https://git.kernel.org/linus/8580e16c28f3f1a1bee87de115157161577334b4|commit]], [[https://git.kernel.org/linus/16178c8ef53dc9734302c4c07633696454579ee3|commit]], [[https://git.kernel.org/linus/a23a1e57a6770a8fad1c6362dfe73bd9f27e430c|commit]], [[https://git.kernel.org/linus/493323416fed6b1ec6128a65c00e5f01d38b7e17|commit]], [[https://git.kernel.org/linus/b53e7e8d85574b8e2c4be00d5331e215037d80a0|commit]] * amd-xgbe: add support for 2.5GbE and rx-adaptation [[https://git.kernel.org/linus/3ee217c47b8b7d18c7c6afa62a5451d5da16d7f5|commit]], [[https://git.kernel.org/linus/4f3b20bfbb75289c18729b6eb2da3f3c5e7f58b0|commit]] * amd-xgbe: Add support for 10 Mbps speed [[https://git.kernel.org/linus/07445f3c7ca1cfe490353be52bda91d9e6745ef4|commit]] * dsa: microchip: add PTP support for KSZ9563/KSZ8563 and LAN937x [[https://git.kernel.org/linus/eac1ea20261e1fac8ffbfb3b7da2d5e6b7c159e3|commit]], [[https://git.kernel.org/linus/c59e12a140fbfbef0fae72be71b47cdb05f25713|commit]], [[https://git.kernel.org/linus/c2977c61f32e0d54319d158a04cad5fd82c2afcf|commit]], [[https://git.kernel.org/linus/bb01ad30570b09eb83438093cd7d29f04410b12e|commit]], [[https://git.kernel.org/linus/cc13ab18b201ab630f03511060ba289b70052959|commit]], [[https://git.kernel.org/linus/2955762b372b791a8f4cd862cf0b5fef9c456449|commit]], [[https://git.kernel.org/linus/90188fff655d8efad79acdf60c3012ffcbbef716|commit]], [[https://git.kernel.org/linus/ab32f56a4100f879c5064b45c7657bb4be175ac3|commit]], [[https://git.kernel.org/linus/a32190b154bde4a3bf2fddb9367aec49be09b15d|commit]], [[https://git.kernel.org/linus/1f12ae5b67608f63596642774129abfafa95e9d8|commit]], [[https://git.kernel.org/linus/343d3bd87a2835e61790ffb5d3638a070f12292b|commit]], [[https://git.kernel.org/linus/d6261f0b80ba1f694e1303a507dfa046ee77b1e2|commit]], [[https://git.kernel.org/linus/168a5940c7452f169b4656011ddcd8225a0d3bc5|commit]] * RDMA/irdma: Add support for dmabuf pin memory regions [[https://git.kernel.org/linus/d2225b838ccad126045e048471441693c7bca217|commit]] * Add support for the the vsc7512 internal copper phys [[https://git.kernel.org/linus/c6a9321b08111c0e0b4c2499ce7e82765fa680b6|commit]], [[https://git.kernel.org/linus/728d8019f1a38891ad72a1f21b5ac35691e8aae7|commit]], [[https://git.kernel.org/linus/beb9a74e0bf72d514210447a31520805f717963d|commit]], [[https://git.kernel.org/linus/b67f5502136f1c0761fb88e8412711d7a4a800d4|commit]], [[https://git.kernel.org/linus/2efaca411c96784272699622b7afadcc6c6c0036|commit]], [[https://git.kernel.org/linus/1dc6a2a02320dab136c5f2e94b39dbb85f9e698c|commit]], [[https://git.kernel.org/linus/dc454fa4b764ab75038e822dfc9a1b2526757a63|commit]], [[https://git.kernel.org/linus/de879a016a94a670fafeb3eb03b3d5803d81ab37|commit]], [[https://git.kernel.org/linus/fde0b6ced8ed8130f2f1d69052539f0130345d6e|commit]], [[https://git.kernel.org/linus/dd43f5e7684ca5666bc7ec298eb15951ae693fb5|commit]], [[https://git.kernel.org/linus/11fc80cbb225a96ecc385f1612db8b6f7fdcbca1|commit]], [[https://git.kernel.org/linus/3d7316ac81ac329efce221b5584138e8c637a7b1|commit]], [[https://git.kernel.org/linus/8dccdd277e0b0df14957ad0704e0f7b8bad3d248|commit]] * can: peak_usb: Introduce configurable CAN channel ID [[https://git.kernel.org/linus/404ffaa95a3e88f844461d3f92e03d3423ee9920|commit]], [[https://git.kernel.org/linus/517ad5e6761feca12f0fc78e7c6304560da853f4|commit]], [[https://git.kernel.org/linus/e7a7b3d22503d79ccd0c2536080ed3f7b10a23f6|commit]], [[https://git.kernel.org/linus/e1bd882252439dae49c40cfe80997cde5955939f|commit]], [[https://git.kernel.org/linus/36d007c6fc7962cb70ff4b1496d1e24f8b1c1300|commit]], [[https://git.kernel.org/linus/6d02f6daeb44c0099ace2e3597d56420eecfaeb2|commit]], [[https://git.kernel.org/linus/09ce908e50c9ee43732015c36c32b18efe7b9ab6|commit]], [[https://git.kernel.org/linus/73019de17732ec2edde007930407912e491a1c0f|commit]] * Add EEE support for KSZ9477 switch family [[https://git.kernel.org/linus/69d3b36ca045582356fc3d2c92366b200506f936|commit]], [[https://git.kernel.org/linus/14e47d1fb8f9596acc90a06a66808657a9c512b5|commit]], [[https://git.kernel.org/linus/48fb19940f2ba6b50dfea70f671be9340fb63d60|commit]], [[https://git.kernel.org/linus/cf9f6079696840093aa6ea3c0ee405a553afe2fb|commit]], [[https://git.kernel.org/linus/022c3f87f88e2d68e90be7687d981c9cb893a3b1|commit]], [[https://git.kernel.org/linus/9b01c885be364526d8c05794f8358b3e563b7ff8|commit]], [[https://git.kernel.org/linus/5827b168125d16d93fe14284c2c377f32d13fce6|commit]], [[https://git.kernel.org/linus/6340f9fd43d503ed5675facd5f9958a063651482|commit]], [[https://git.kernel.org/linus/8b68710a3121e0475b123a20c4220f66a728770e|commit]] * dsa: microchip: add PTP support for KSZ9563/KSZ8563 and LAN937x [[https://git.kernel.org/linus/eac1ea20261e1fac8ffbfb3b7da2d5e6b7c159e3|commit]], [[https://git.kernel.org/linus/c59e12a140fbfbef0fae72be71b47cdb05f25713|commit]], [[https://git.kernel.org/linus/c2977c61f32e0d54319d158a04cad5fd82c2afcf|commit]], [[https://git.kernel.org/linus/bb01ad30570b09eb83438093cd7d29f04410b12e|commit]], [[https://git.kernel.org/linus/cc13ab18b201ab630f03511060ba289b70052959|commit]], [[https://git.kernel.org/linus/2955762b372b791a8f4cd862cf0b5fef9c456449|commit]], [[https://git.kernel.org/linus/90188fff655d8efad79acdf60c3012ffcbbef716|commit]], [[https://git.kernel.org/linus/ab32f56a4100f879c5064b45c7657bb4be175ac3|commit]], [[https://git.kernel.org/linus/a32190b154bde4a3bf2fddb9367aec49be09b15d|commit]], [[https://git.kernel.org/linus/1f12ae5b67608f63596642774129abfafa95e9d8|commit]], [[https://git.kernel.org/linus/343d3bd87a2835e61790ffb5d3638a070f12292b|commit]], [[https://git.kernel.org/linus/d6261f0b80ba1f694e1303a507dfa046ee77b1e2|commit]], [[https://git.kernel.org/linus/168a5940c7452f169b4656011ddcd8225a0d3bc5|commit]] * e1000e: Enable Link Partner Advertised Support [[https://git.kernel.org/linus/cbdbb58b6c796e48ad6346e07bf3ae65cf4dc69b|commit]] * enetc: detect frame preemption hardware capability [[https://git.kernel.org/linus/94557a9a73b4fa01c77a1a7409e9376e55d7bb99|commit]] * fealnx: bring back this old driver [[https://git.kernel.org/linus/8f14820801042c221bb9fe51643a2585cac5dec2|commit]] * ethermtk_eth_soc: introduce mtk_hw_warm_reset support [[https://git.kernel.org/linus/a9724b9c477f63b834bc303b2fc0b1abdd3815de|commit]] * etherti * am65-cpsw: Add support for SERDES configuration [[https://git.kernel.org/linus/dab2b265dd23ef8fa7c49aeefb580918eb4ae207|commit]] * am65-cpsw: Enable QSGMII mode for J721e CPSW9G [[https://git.kernel.org/linus/944131fa65d773fe59da7f68294afc6d23adb074|commit]] * ice: update xdp_features with xdp multi-buff [[https://git.kernel.org/linus/b6a4103c3538dec0a9ec8a6d1de7c009e428e7ab|commit]] * ice: use GNSS subsystem instead of TTY [[https://git.kernel.org/linus/c7ef8221ca7d8dfdf679a68b2fc3187f42a652b0|commit]] * Intel Wired LAN Driver Updates 2023-01-19 (ice) [[https://git.kernel.org/linus/a4f68f37e63f91ce7baa31ea3d64072f1b86aac7|commit]], [[https://git.kernel.org/linus/7d8d7754e6f70eed2ed6c48ce55a4a1168b08276|commit]], [[https://git.kernel.org/linus/390889a4b40ef8fbcaa3a04b71c36b8dba805507|commit]], [[https://git.kernel.org/linus/8aa4318c3a122b8670bc09af142de3872ca63b88|commit]], [[https://git.kernel.org/linus/d5a6df44375c88999e94e9ba3bf5c129071fe4cf|commit]], [[https://git.kernel.org/linus/6a8d013e904ad9a66706fcc926ec9993bed7d190|commit]], [[https://git.kernel.org/linus/2481e82077488723fda2492f0bfb80bcb7ead715|commit]], [[https://git.kernel.org/linus/9d20797fcdab33a7090c8640893ec53708dca1fa|commit]], [[https://git.kernel.org/linus/df2a4c3f653088c20e7c998acbd959338631f1d8|commit]], [[https://git.kernel.org/linus/2ffd87d38d6b9dd8575e4b763ead7127c2695bcb|commit]], [[https://git.kernel.org/linus/bd557d97978ea3e22653117a39184b5db70c7093|commit]], [[https://git.kernel.org/linus/91dbcb91d006a62dd60c16d5f1f11fd4f6175786|commit]], [[https://git.kernel.org/linus/388740b3f63ddb01fa763b8525bec7c59004dd8a|commit]], [[https://git.kernel.org/linus/643ef23bd9ddf742579bc7334c45cf7bc349168a|commit]], [[https://git.kernel.org/linus/d52a6180c7466a3520ee42ae56315ee12a097e87|commit]] * Intel Wired LAN Driver Updates 2023-02-14 (ice) [[https://git.kernel.org/linus/634d841dbfa7c530e54db936db05b8bc3a44f429|commit]], [[https://git.kernel.org/linus/fcc2cef37fed567564f5b94a9c0aba733bb159ab|commit]], [[https://git.kernel.org/linus/fce92dbc611727525e03c31547c715c65960e5ce|commit]], [[https://git.kernel.org/linus/d8a23ff6a755eccbebfa1b5173a951cfdd088c8c|commit]], [[https://git.kernel.org/linus/13b599f15e1cb59d6cc907908532dc45bf048e3a|commit]] * ice: add XDP mbuf support [[https://git.kernel.org/linus/c61bcebde72de7f5dc194d28f29894f0f7661ff7|commit]], [[https://git.kernel.org/linus/cb0473e0e9dccaa0ddafb252f2c3ef943b86bb56|commit]], [[https://git.kernel.org/linus/ac0753391195011ded23696d7882428e5c419a98|commit]], [[https://git.kernel.org/linus/d7956d81f1502d3818500cff4847f3e9ae0c6aa4|commit]], [[https://git.kernel.org/linus/e44f4790a2ba3585fad5d40b61e1fd5d2a9835ab|commit]], [[https://git.kernel.org/linus/1dc1a7e7f4108bad4af4c7c838f963d342ac0544|commit]], [[https://git.kernel.org/linus/60bc72b3c4e9127f29686770005da40b10be0576|commit]], [[https://git.kernel.org/linus/9070fe3da0b126044c3cffd169d5fb2565365a0e|commit]], [[https://git.kernel.org/linus/8a11b334ec9b8088b54764424a49adb8ef1c002a|commit]], [[https://git.kernel.org/linus/2fba7dc5157b6f85dbf1b8e26e63a724db1f3d79|commit]], [[https://git.kernel.org/linus/3246a10752a7120878740f345f3956997777b3d6|commit]], [[https://git.kernel.org/linus/f4db7b314dd54ab9335bb449640484a6f27baf28|commit]], [[https://git.kernel.org/linus/a24b4c6e9aab4f39982d40cfeb7c142e93310f8b|commit]] * enetc: add support for MAC Merge layer [[https://git.kernel.org/linus/c7b9e80869021bcd19394907596a919c3762cb3b|commit]], [[https://git.kernel.org/linus/cf52bd238b75b6e03232aa86758d62d974604d76|commit]] * lan966x: Add VCAP debugFS support [[https://git.kernel.org/linus/942814840127a7d6307d0aaf087dbd3cfdeb2a2d|commit]] * lan966x: Add support for TC flower filter statistics [[https://git.kernel.org/linus/9ed138ff37670e7eb6291d822f5648de685cfb32|commit]] * libwx: Wangxun interrupt and !RxTx support [[https://git.kernel.org/linus/3f703186113fac0f3c965204b2cbb22a03322e2c|commit]], [[https://git.kernel.org/linus/e7956139a6cf9a39bcddaabbda1b2e684a42fc57|commit]], [[https://git.kernel.org/linus/5d3ac705c281977db7a5ba3854d710881dbbceea|commit]], [[https://git.kernel.org/linus/18b5b8a9f1786005997d51456b73a3eaa601955e|commit]], [[https://git.kernel.org/linus/850b971110b20cbcc2367516fefe78e84fec7d79|commit]], [[https://git.kernel.org/linus/0ef7e1597a17770752fcccadc2e23e5af224ade8|commit]], [[https://git.kernel.org/linus/3c47e8ae113a68da47987750d9896e325d0aeedd|commit]], [[https://git.kernel.org/linus/09a508800952f8d4b04bf27fd3fe9d38039cf06e|commit]], [[https://git.kernel.org/linus/0d22be525a619d03a603e70da14b8af006d0e58a|commit]], [[https://git.kernel.org/linus/b97f955ec47b49bfac869bbf087105b14e58855d|commit]] * ipa: remaining IPA v5.0 support [[https://git.kernel.org/linus/07abde549bc1204685b0aec29acc8c75b18ac1f5|commit]], [[https://git.kernel.org/linus/c84ddc119704bbd1fd7a5b1cdce3146c5840f07d|commit]], [[https://git.kernel.org/linus/8ba59716d16ac64d81a0b6bbe82ba5cb53af2135|commit]], [[https://git.kernel.org/linus/8e7c89d84a2b73cc66485f1749b5e4f8d3a62e6a|commit]], [[https://git.kernel.org/linus/a08cedc31d50b698c2e36a08c5a69a42d73313c9|commit]], [[https://git.kernel.org/linus/32079a4ab10668a28535747399a5d8a527e775dd|commit]], [[https://git.kernel.org/linus/2cdbcbfd482989eca2c0d3731f361bed70adb157|commit]], [[https://git.kernel.org/linus/5157d6bfcad38f8b652bd869ffc2b0aac50d5f64|commit]] * ionic: on-chip descriptors [[https://git.kernel.org/linus/7bb990097db7ade1467c731fe4d80223e00004d8|commit]], [[https://git.kernel.org/linus/896de449f80476dc64b9167c41284532a4cccfec|commit]], [[https://git.kernel.org/linus/5b4e9a7a71ab912d150cb2276cb23af51c863150|commit]], [[https://git.kernel.org/linus/40bc471dc714036c8ed223f9aa04b1b2072fb9db|commit]] * mdio: add amlogic gxl mdio mux support [[https://git.kernel.org/linus/9a24e1ff4326c9c25dc2daf9dab3cc93ed9b8ab9|commit]] * micrel: Add PHC support for lan8841 [[https://git.kernel.org/linus/cafc3662ee3fe29a0027e0a947e6c6493cccaf60|commit]] * micrel: Add support for lan8841 PHY [[https://git.kernel.org/linus/a8f1a19d27ef9b13574195ae1571158529473541|commit]] * micrel: Cable Diagnostics feature for lan8841 PHY [[https://git.kernel.org/linus/a136391ae4216a5713f9527c8a05e9364f059a31|commit]] * microchip: sparx5: Adding Sparx5 IS0 VCAP support [[https://git.kernel.org/linus/f274a659fb08da5e7c88ba934a4aee0e5de17510|commit]], [[https://git.kernel.org/linus/545609fd4e7fe840b3188e2d1034d3d5a91ecdeb|commit]], [[https://git.kernel.org/linus/7306fcd17c0c78ea51b792f31d2b8e717591b3cb|commit]], [[https://git.kernel.org/linus/542e6e2c20e502cd8829304c5b4d6a45460d0a51|commit]], [[https://git.kernel.org/linus/88bd9ea70b2ec59298125ff2bf9837034d73e3b7|commit]], [[https://git.kernel.org/linus/81e164c4aec5904156867d56b06adc0097262474|commit]], [[https://git.kernel.org/linus/63e3564507ea0f2e8eac5ebadf44c430d56d3fbc|commit]], [[https://git.kernel.org/linus/52df82cc919945f58c10c24b799822e9e6e0359f|commit]] * microchip: sparx5: Adding Sparx5 ES0 VCAP support [[https://git.kernel.org/linus/65b6625069a42edf2a813dd1c50604c6c6236fe5|commit]], [[https://git.kernel.org/linus/d7953da4f2935039430322a31b9da93f978fcc86|commit]], [[https://git.kernel.org/linus/38f6408c6071f1233644cc1d23e34ec5b36700d7|commit]], [[https://git.kernel.org/linus/0518e914f34ae539a1a6f4a19ead3b1d5d9881f4|commit]], [[https://git.kernel.org/linus/b5b0c364598835739451e6cd8a9dd84d41089c02|commit]], [[https://git.kernel.org/linus/a5cc98adf3cbb187a7b9063ccb2b1c7065a05401|commit]], [[https://git.kernel.org/linus/f2a77dd69f51358ab6fb169f5582c329a2315e6c|commit]], [[https://git.kernel.org/linus/3cbe7537a7f1aaafc4eebc124dfcc8eaf67f1ec7|commit]], [[https://git.kernel.org/linus/52b28a93c45d2eb6177f073665ca5e4b2f6a229a|commit]], [[https://git.kernel.org/linus/ebf44ded76e92e0812e0e4a2acd20c7f86550e2c|commit]] * Add support to offload macsec using netlink update [[https://git.kernel.org/linus/15f1735520f929ea7ed7ef7902abe2ffe66486a6|commit]], [[https://git.kernel.org/linus/723e8a48c9935b0d7a2826a12d03324daf6f900b|commit]] * microchip: sparx5: Improve locking in the VCAP API [[https://git.kernel.org/linus/27d293cceee50223c2f79978c098e9d1358b4ba6|commit]], [[https://git.kernel.org/linus/975d86acaec78306a88b4575a2c6357b97c2c4db|commit]], [[https://git.kernel.org/linus/9579e2c271b4f2e6d24f61ff17abda2e9ce8cc85|commit]], [[https://git.kernel.org/linus/1972b6d927ac326fd3a01240c330401f47526558|commit]], [[https://git.kernel.org/linus/595655e081746f6fca8263154fd6fb5f2b22da24|commit]] * microchip: sparx5: Adding Sparx5 ES2 VCAP support [[https://git.kernel.org/linus/c02b19edc78dceef9508e6db9ef45a5f7a0d257b|commit]], [[https://git.kernel.org/linus/4114ef2ce27383e3c14f68f56f3ec731ab6421a2|commit]], [[https://git.kernel.org/linus/a5300724ce7368ad324000c2aa205f60c1e58631|commit]], [[https://git.kernel.org/linus/9d712b8ddbb47ee8e51d08a7326e446880f895c7|commit]], [[https://git.kernel.org/linus/b95d9e2c20c912806f5427d7bbf1a63207575f13|commit]], [[https://git.kernel.org/linus/e7e3f514713e87a2c09d774aec88c2a9b117e76f|commit]], [[https://git.kernel.org/linus/7b911a5311b8d473832a6d0b6f3da88e48011894|commit]] * microchip: Add support for two classes of VCAP rules [[https://git.kernel.org/linus/6573f71ae72fa66160377b2bebd9946897e8bcc9|commit]], [[https://git.kernel.org/linus/95fa74148daa7e78b5b9ac6d218667cb6173e8b3|commit]], [[https://git.kernel.org/linus/01ef75a257fa82cd0f8577fb9cda847415d2f748|commit]], [[https://git.kernel.org/linus/33e3a273fd4f01d8ccd9c8faba8db7f4c5be8fe0|commit]], [[https://git.kernel.org/linus/cfd9e7b74a1e67fd690fe22749e20f299dcdf2fb|commit]], [[https://git.kernel.org/linus/784c3067d094dde6b7090ead51f2c9b56620409b|commit]], [[https://git.kernel.org/linus/814e7693207f1bd936d600f9b5467f133e3d6e40|commit]], [[https://git.kernel.org/linus/18a15c769d4a1e8a4ffedafe2aa3a5e288e15415|commit]] * microchip: Add support for PSFP in Sparx5 [[https://git.kernel.org/linus/edad83e2ba1e44e104e24f2096e8a64f91b30620|commit]], [[https://git.kernel.org/linus/bb535c0dbb6f5508bf81ec21b20c18d32a881ef1|commit]], [[https://git.kernel.org/linus/9bf50889898359c495c835e6ab15ba92ebf13e0f|commit]], [[https://git.kernel.org/linus/1db82abf19697a83cdf641e4a9c66f4dcf516616|commit]], [[https://git.kernel.org/linus/d2185e79ba8f1c603af11f0864767d96a787348d|commit]], [[https://git.kernel.org/linus/9e02131ec272d031508aa36f30dd5d4d4ab7bf55|commit]], [[https://git.kernel.org/linus/c70a5e2c3d18f2ddad0a3d912afa60a1cc7c8e27|commit]], [[https://git.kernel.org/linus/ae3e691f34422e319d19c0cd27ff5b91cd6a8466|commit]], [[https://git.kernel.org/linus/e116b19db20205fba39a64e1cb357c012ef29dc1|commit]], [[https://git.kernel.org/linus/6ebf182bfdf15bd58ebcf6760b06458694e0fad2|commit]] * microchip: Introduce new DCB rewrite table [[https://git.kernel.org/linus/34b7074d3fba0d3f3ca8c66b6105b7f575e77e98|commit]], [[https://git.kernel.org/linus/30568334b657e77629293dd88a35d9c21b3258fb|commit]], [[https://git.kernel.org/linus/622f1b2fae2eea28a80b04f130e3bb54227699f8|commit]], [[https://git.kernel.org/linus/1df99338e6d4e96178b68b3e17bab33e9f1eb628|commit]], [[https://git.kernel.org/linus/2234879f4ca127d5288046fe0469d9ac63988c0b|commit]], [[https://git.kernel.org/linus/246c77f666b434d4a08021cf24eb9260cf7f92a2|commit]] * microchip: vcap: Add tc flower keys for lan966x [[https://git.kernel.org/linus/47400aaea4ffdc306f0fd698f8c13b02e133130e|commit]] * mlx5 updates 2023-01-30 [[https://git.kernel.org/linus/c673b6772abcc4161b80014b5f5ff01bad703f0b|commit]], [[https://git.kernel.org/linus/4744c7ad2299108bc3ecbea574cffb052863ba26|commit]], [[https://git.kernel.org/linus/9a0ed4f2bfe220e9389cc86d7f9b284119037eb8|commit]], [[https://git.kernel.org/linus/60c8972d2cccba19ce5a993bb8221e609702ef0d|commit]], [[https://git.kernel.org/linus/fe298bdf6f654d4ad93069db9fe93b3b6632f4f1|commit]], [[https://git.kernel.org/linus/55f0d6d200612ea01f20acabafe4c5c31c728250|commit]], [[https://git.kernel.org/linus/942192541675b80222e98b4eb410695c5ab619a3|commit]], [[https://git.kernel.org/linus/204369e718e9f276bdc8677e8dbb648d3298735f|commit]], [[https://git.kernel.org/linus/7a5b72c2a8e4f2292958b96423905948da583628|commit]], [[https://git.kernel.org/linus/4d570c7117ddfa96da96bc8917effcfa906e6bd1|commit]], [[https://git.kernel.org/linus/c6e7d8171045e1425c2a813b8e04d86a94d4e7bc|commit]], [[https://git.kernel.org/linus/709f07fe1a595dae3c891e18f8dca297402f95ea|commit]], [[https://git.kernel.org/linus/12a9e1b73db00d38d0953c2fd45bd2854c34880a|commit]], [[https://git.kernel.org/linus/8a6fa6df61ffc44681727ee05f051fd6df420a81|commit]], [[https://git.kernel.org/linus/f741db1a5171ebb93289258e64e69c2a780e3103|commit]] * mlx5 updates 2023-01-10 [[https://git.kernel.org/linus/8d231dbc3b10155727bcfa9e543d397ad357f14f|commit]], [[https://git.kernel.org/linus/11f0996d5c6023f4889882c8d088ec76a050d704|commit]], [[https://git.kernel.org/linus/a440030d8946bfe3fd44b6da685e33ffe0ecd1ff|commit]], [[https://git.kernel.org/linus/288eca60cc31471670dcd351cc42c03a38e11983|commit]], [[https://git.kernel.org/linus/0fedee1ae9efccd424882f929c3905f0790e12ec|commit]], [[https://git.kernel.org/linus/1a8034720f38671c2b6a1142ecb129266a494566|commit]], [[https://git.kernel.org/linus/3a3da78dd258cc164ab41ec09cf2feacca423fb4|commit]], [[https://git.kernel.org/linus/0e414518d6d881075f0c944b365078b8049fcc2f|commit]], [[https://git.kernel.org/linus/fe998a3c77b9f989a30a2a01fb00d3729a6d53a4|commit]], [[https://git.kernel.org/linus/7cb5eb937231663d11f7817e366f6f86a142d6d3|commit]], [[https://git.kernel.org/linus/63fbae0a74c3e1df7c20c81e04353ced050d9887|commit]], [[https://git.kernel.org/linus/7193b436b56e740800fa5efe2ea0214f01f55bd0|commit]], [[https://git.kernel.org/linus/7bd1099c7edee257589c9230568a0cd9e2b463e7|commit]], [[https://git.kernel.org/linus/4238654ce166bb6534379ecc08a2cd5d69055f48|commit]], [[https://git.kernel.org/linus/96c31b5b2caecae2eebb1ed0fba5dc082b2fb740|commit]] * mlx5 IPsec RoCEv2 support and netdev events fixes in RDMA [[https://git.kernel.org/linus/3f26a315f88274361aea86c2bcd6af4bb59b1a87|commit]], [[https://git.kernel.org/linus/c7d4e6ab3165693342c21f6faf80d983137fee0c|commit]], [[https://git.kernel.org/linus/dca55da0a15717dde509d17163946e951bad56c4|commit]], [[https://git.kernel.org/linus/7368f221e09eac116050475bec5a292a85c5ea8a|commit]], [[https://git.kernel.org/linus/4f226b71f5edc33843e21f92ebe97b1561804d52|commit]], [[https://git.kernel.org/linus/f91ddd3aa4b313aa4b792d1588ccb63c3e4ace0b|commit]], [[https://git.kernel.org/linus/899577600b25b338072095009d4c578fbd936177|commit]], [[https://git.kernel.org/linus/22551e77e5507a06114c0af2b92bbf1a66ec33c5|commit]] * mlx5 updates 2023-01-18 [[https://git.kernel.org/linus/022dbea0ea8ea433823a3d12719e29dcef2fb637|commit]], [[https://git.kernel.org/linus/d0f332dc96894d4652a1d10e9de35ded267901a7|commit]], [[https://git.kernel.org/linus/8e11a68e2e8abf6510508b75b49ec5953ca262b6|commit]], [[https://git.kernel.org/linus/d3c8a33a5cadafb94355fb087fe87522b295189e|commit]], [[https://git.kernel.org/linus/1158b7d1c6403cedd0eba1374da2ce312b9974fe|commit]], [[https://git.kernel.org/linus/130b12079f3732babe2772314ab129bca0d8492f|commit]], [[https://git.kernel.org/linus/b80ae281277fa2216a49ec994019c178a13f2e35|commit]], [[https://git.kernel.org/linus/82b564802661536443084debdb8ff7c3a4e72b6d|commit]], [[https://git.kernel.org/linus/c43182e6db32c867cffcf332894c93de419f0ed2|commit]], [[https://git.kernel.org/linus/ef78b8d5d6f1c311253691f772e2a4d2c96ddde2|commit]], [[https://git.kernel.org/linus/2a1f4fed392b2b45e98acf9353a5a3827fb9dde3|commit]], [[https://git.kernel.org/linus/55b458481d6803ddeb86c55a6857aead11ad1e20|commit]], [[https://git.kernel.org/linus/521933cdc4aad133b410d8f64b03f60345021138|commit]], [[https://git.kernel.org/linus/42cd20044e85bca865bc2a639756d1b8e1a858c1|commit]], [[https://git.kernel.org/linus/efb4879f76236f248bbe5b9e2bf408d9470d59f3|commit]] * mlx5 updates 2023-02-10 [[https://git.kernel.org/linus/a32327a3a02c6513feaeb122a6d8fb6e8d168365|commit]], [[https://git.kernel.org/linus/8ce81fc01b52a17073353e0d483a2434abd2e392|commit]], [[https://git.kernel.org/linus/ab9fc405ffd9690266039662286ed69f98c11738|commit]], [[https://git.kernel.org/linus/73af3711c7028286136bb7e9422b19f5a016626d|commit]], [[https://git.kernel.org/linus/27f9e0ccb6da0857a323c1d19a23b6666ddefe05|commit]], [[https://git.kernel.org/linus/197c00029294528e35ba97e4b8b54155c6654261|commit]], [[https://git.kernel.org/linus/b97653d87bda09441d521a448c69cccd3dd6649d|commit]], [[https://git.kernel.org/linus/29a299cb6b2051c1c7394da00c080df5cca7bfc3|commit]], [[https://git.kernel.org/linus/ccd672bcf3e53ecd666ed99d4901992ebd78fdd9|commit]], [[https://git.kernel.org/linus/bc1536f369f043fa362a25d51f84bf59f2f48489|commit]], [[https://git.kernel.org/linus/c30f3faa2a81bc6d7d05967eb07bbe3bd5b359e6|commit]], [[https://git.kernel.org/linus/6d6e71e6e5e3713d18c87b16af774b7db51a68c3|commit]], [[https://git.kernel.org/linus/de411a8226df165a8cab9a426ceaaaafa9304ab9|commit]], [[https://git.kernel.org/linus/5977ac3910f1cbaf44dca48179118b25c206ac29|commit]], [[https://git.kernel.org/linus/72ed5d5624af384eaf74d84915810d54486a75e2|commit]] * mlx5 updates 2023-02-15 [[https://git.kernel.org/linus/53ee9142717714881fe0b4292b237e1707246f2c|commit]], [[https://git.kernel.org/linus/bfc63c9796900b4f72a0700ac68e4c6306017833|commit]], [[https://git.kernel.org/linus/9da5294e2c6adc7169ccdfa5bef87f9e893d5a12|commit]], [[https://git.kernel.org/linus/3ac0b6aa892a1961d3bc62c87e3e3c9646e9d309|commit]], [[https://git.kernel.org/linus/94ceffb48eac7692677d8093dcde6965b70c4b35|commit]], [[https://git.kernel.org/linus/f869bcb0d28ec981dd5f6d1958c607c457c1bb26|commit]], [[https://git.kernel.org/linus/b5618a6b19c9dfead5133b72c40112f343b55d76|commit]], [[https://git.kernel.org/linus/afce9271facb4cd41ffdf063cc6dd3d67341e723|commit]], [[https://git.kernel.org/linus/993fd9bd656a082c9b713171622c70f72f0af59f|commit]] * mlx5 updates 2023-02-04 [[https://git.kernel.org/linus/2afcfae77a0798fa0de4e575dc1ab202c153993c|commit]], [[https://git.kernel.org/linus/9a49a64ea7edbe070d39d945f6fc99c41a011268|commit]], [[https://git.kernel.org/linus/b399b066e27e82aa04e6281b7e12803063987c7f|commit]], [[https://git.kernel.org/linus/6a80313d24ac0417e2e12620c10be42c0a07da0e|commit]], [[https://git.kernel.org/linus/199abf33f4145947c872987be60b6fb3e2dc7279|commit]], [[https://git.kernel.org/linus/f2d51e579359b708d7063eef543bec6a57d2b5e9|commit]], [[https://git.kernel.org/linus/a12ba19269d727a4f9f68365a8d4542513c369d8|commit]], [[https://git.kernel.org/linus/e12ebbf0cc55c98c7bdd30099b1833bc729cbe83|commit]], [[https://git.kernel.org/linus/8ce3b586faa471ab750bd201c0fd063c2a29e515|commit]], [[https://git.kernel.org/linus/04937a0f68911a62dfd0a84bb383dcbf0a19d8c8|commit]], [[https://git.kernel.org/linus/b63636b6c170aaf0becd67d14ba7c538d1f8d4f5|commit]], [[https://git.kernel.org/linus/7eef93003e5d20e1a6a6e59e12d914b5431cbda2|commit]], [[https://git.kernel.org/linus/ce231772da8c7bc4c31d6171379957cd4b2b7a5f|commit]], [[https://git.kernel.org/linus/a7385187a386d0fc4721727e2cbe4a70a9cff6f7|commit]], [[https://git.kernel.org/linus/79efecb41f58430454cbb5809fa7b3135150da6d|commit]] * mlxsw: Add support of latency TLV [[https://git.kernel.org/linus/42b4f757ba9c4990dc3c26f0d54a3259ad761613|commit]], [[https://git.kernel.org/linus/d84e2359e621db111de5904976bc8a721d0fb03b|commit]], [[https://git.kernel.org/linus/563bd3c490dc6cfc4c604446d81e92a67a986e0c|commit]], [[https://git.kernel.org/linus/695f7306d9429e5580fc055fe5cfd08405e0c258|commit]], [[https://git.kernel.org/linus/6ee0d3a9dc00b3cae3434fb60569a8ba0381a176|commit]], [[https://git.kernel.org/linus/49f5b769d5bd203596b0db4df72344f20f59e938|commit]] * mlxbf_gige: add !BlueField-3 support [[https://git.kernel.org/linus/2321d69f92aa7e6aa2cc98e7a8e005566943922f|commit]], [[https://git.kernel.org/linus/20d03d4d9437771a9b6d38d4a6027a70d78d9865|commit]], [[https://git.kernel.org/linus/cedd97737a1f302b3d0493d7054a35e0c5997b99|commit]], [[https://git.kernel.org/linus/e1cc8ce46200b3f3026e546053458c6f8046ef27|commit]] * add support for per action hw stats [[https://git.kernel.org/linus/8f2ca70c07f4cee68ed6297c1876c28b73c9af21|commit]], [[https://git.kernel.org/linus/3320f36fd8ad45312c98857d36ecbef90f829497|commit]], [[https://git.kernel.org/linus/ac7d27907d5445d0accaf998e1dc3ea570ed1ba6|commit]], [[https://git.kernel.org/linus/d307b2c6f962ad5d83d7a7df71c2e9c9e4106d82|commit]], [[https://git.kernel.org/linus/5246c896b805b043a87fa78af32a33cbce00de05|commit]], [[https://git.kernel.org/linus/e9d1061d87276d3397157ea947fa28374dcbf974|commit]], [[https://git.kernel.org/linus/cca7eac13856e75306bbdefb1673bcd0310d9abc|commit]], [[https://git.kernel.org/linus/d13674b1d14c68339173db5dd39c4ab0949234e7|commit]], [[https://git.kernel.org/linus/2b68d659a704abaa61fb3255776b5483bdc4eb35|commit]] * nfp * Support IPsec offloading for NFP3800 [[https://git.kernel.org/linus/436396f26d502ada54281958db0a9f6fc12ff256|commit]] * flower: change get/set_eeprom logic and enable for flower reps [[https://git.kernel.org/linus/74b4f1739d4e81810e1d20f0e6ad3d3c63a32c13|commit]] * ethtool: supplement nfp link modes supported [[https://git.kernel.org/linus/170677fee45baa955b3f7c1f41e6031d1d1e2272|commit]] * Add DCB IEEE support [[https://git.kernel.org/linus/9b7fe8046d7429ba776f962ad3b4b7ba2d6859c8|commit]] * ngbe: Add ngbe mdio bus driver [[https://git.kernel.org/linus/a1cf597b99a7276c2103327b5633ef1d7a0f3a93|commit]] * phy: Add driver for Motorcomm yt8531 gigabit ethernet phy [[https://git.kernel.org/linus/4ac94f728a588e7096dd5010cd7141a309ea7805|commit]] * phy: add genphy_c45_ethtool_get/set_eee() support [[https://git.kernel.org/linus/022c3f87f88e2d68e90be7687d981c9cb893a3b1|commit]] * phylink: support validated pause and autoneg in fixed-link [[https://git.kernel.org/linus/894341ad3ad7dfbced8556efe92a9ebfd5924bd6|commit]] * qualcomm: rmadd tx packets aggregation [[https://git.kernel.org/linus/64b5d1f8f2d1b3f039cfb0dd8035892015543e58|commit]], [[https://git.kernel.org/linus/db8a563a9d9024adee53c8547fea40f8743b16c3|commit]] * usb: qmi_wwan: add Telit 0x1080 composition [[https://git.kernel.org/linus/382e363d5bed0cec5807b35761d14e55955eee63|commit]] * tsnep: XDP support [[https://git.kernel.org/linus/25faa6a4c5ca973ca414e7a7ea919cddf3242b58|commit]], [[https://git.kernel.org/linus/0625dff38b1791005c2a3dbb85ec6ea58b567555|commit]], [[https://git.kernel.org/linus/95337b9384769fbc645a0eda9a34c0f9b044b0df|commit]], [[https://git.kernel.org/linus/d24bc0bcbbfff74c00d92d0630ef99e8d91ef37a|commit]], [[https://git.kernel.org/linus/59d562aa1983ab0d4c3d2a03edccb3b9829bb595|commit]], [[https://git.kernel.org/linus/cc3e254f9443cdb5f41c5e59f7275fe2943fb160|commit]], [[https://git.kernel.org/linus/e77832abd90a4448b1a2041025f9c538fe17903b|commit]], [[https://git.kernel.org/linus/65b28c810035be7cc753515c8f5227198302eab4|commit]], [[https://git.kernel.org/linus/f0f6460f91305fc907b6a4ba9846e1586be0a0a2|commit]] * Add support for PSFP in Sparx5 [[https://git.kernel.org/linus/edad83e2ba1e44e104e24f2096e8a64f91b30620|commit]], [[https://git.kernel.org/linus/bb535c0dbb6f5508bf81ec21b20c18d32a881ef1|commit]], [[https://git.kernel.org/linus/9bf50889898359c495c835e6ab15ba92ebf13e0f|commit]], [[https://git.kernel.org/linus/1db82abf19697a83cdf641e4a9c66f4dcf516616|commit]], [[https://git.kernel.org/linus/d2185e79ba8f1c603af11f0864767d96a787348d|commit]], [[https://git.kernel.org/linus/9e02131ec272d031508aa36f30dd5d4d4ab7bf55|commit]], [[https://git.kernel.org/linus/c70a5e2c3d18f2ddad0a3d912afa60a1cc7c8e27|commit]], [[https://git.kernel.org/linus/ae3e691f34422e319d19c0cd27ff5b91cd6a8466|commit]], [[https://git.kernel.org/linus/e116b19db20205fba39a64e1cb357c012ef29dc1|commit]], [[https://git.kernel.org/linus/6ebf182bfdf15bd58ebcf6760b06458694e0fad2|commit]] * sfc: devlink support for ef100 [[https://git.kernel.org/linus/fa34a5140a8e8f4120e86a1ae622b5df58414c3a|commit]], [[https://git.kernel.org/linus/14743ddd2495c96caa18e382625c034e49a812e2|commit]], [[https://git.kernel.org/linus/a6a15aca4207b5f5ed44f594ddd0ddeb6a495654|commit]], [[https://git.kernel.org/linus/5227adff37af35fdc3c6f029737708c2d0921618|commit]], [[https://git.kernel.org/linus/25414b2a64ae7ea8742933bd7b1d056e069b15a7|commit]], [[https://git.kernel.org/linus/7e056e2360d9267a20509aa2cdb8905485499e95|commit]], [[https://git.kernel.org/linus/fa78b01718d2f1cc95ce052fad3aa49c46d024eb|commit]], [[https://git.kernel.org/linus/3b6096c9b30b9d65d09f9f4ee5f473c8c28f45d0|commit]] * Add eqos and fec support for imx93 [[https://git.kernel.org/linus/e5bf35ca4547e50e7ee2bc0d2a86bd1ccb53eead|commit]], [[https://git.kernel.org/linus/b2274ffe90be36af6aedf28ad36da6d45ac68a69|commit]], [[https://git.kernel.org/linus/f743e7664dcac641a740b42f5b9f5b024846e195|commit]], [[https://git.kernel.org/linus/1f4263ea6a4b3a3457e9b21bec00976b00a1136e|commit]], [[https://git.kernel.org/linus/eaaf471085402df4d2f0afe355322820d114e85d|commit]], [[https://git.kernel.org/linus/1b110dd678d9a1a5a97f7691bfa29432a42928b8|commit]], [[https://git.kernel.org/linus/c897dc7f3a8d0ea5355f86d15a7da69c9d4d8309|commit]] * ath12k: driver for Qualcomm Wi-Fi 7 devices [[https://git.kernel.org/linus/d889913205cf7ebda905b1e62c5867ed4e39f6c2|commit]] * Wangxun interrupt and !RxTx support [[https://git.kernel.org/linus/3f703186113fac0f3c965204b2cbb22a03322e2c|commit]], [[https://git.kernel.org/linus/e7956139a6cf9a39bcddaabbda1b2e684a42fc57|commit]], [[https://git.kernel.org/linus/5d3ac705c281977db7a5ba3854d710881dbbceea|commit]], [[https://git.kernel.org/linus/18b5b8a9f1786005997d51456b73a3eaa601955e|commit]], [[https://git.kernel.org/linus/850b971110b20cbcc2367516fefe78e84fec7d79|commit]], [[https://git.kernel.org/linus/0ef7e1597a17770752fcccadc2e23e5af224ade8|commit]], [[https://git.kernel.org/linus/3c47e8ae113a68da47987750d9896e325d0aeedd|commit]], [[https://git.kernel.org/linus/09a508800952f8d4b04bf27fd3fe9d38039cf06e|commit]], [[https://git.kernel.org/linus/0d22be525a619d03a603e70da14b8af006d0e58a|commit]], [[https://git.kernel.org/linus/b97f955ec47b49bfac869bbf087105b14e58855d|commit]] * wangxun: Add the basic ethtool interfaces [[https://git.kernel.org/linus/1b8d1c5088efa5af881e8e78c80bd1197dc4c420|commit]] * virtio-net: support multi buffer xdp [[https://git.kernel.org/linus/484beac2ffc1d1dde5fde601deb28f3a82ac250e|commit]], [[https://git.kernel.org/linus/8d9bc36de5fc7b64bbce7b479dbe0ffdcb31b3b5|commit]], [[https://git.kernel.org/linus/50bd14bc98fa0c86ea1e688d93ef1ffe8f1572a0|commit]], [[https://git.kernel.org/linus/ef75cb51f13941cf7633227ade43c4d86ecbc336|commit]], [[https://git.kernel.org/linus/22174f79a44baf5e46faafff1d7b21363431b93a|commit]], [[https://git.kernel.org/linus/97717e8dbda1dede65c4df12891332502df632f3|commit]], [[https://git.kernel.org/linus/b26aa481b4b710051dd663c89ed31f705a7a67eb|commit]], [[https://git.kernel.org/linus/18117a842ab029df139f776bf31eebff6d0e0730|commit]], [[https://git.kernel.org/linus/fab89bafa95b6f333b0e2dca0ae07a0b3600e954|commit]] * brcmfmac: pcie: Add IDs/properties for BCM4355 [[https://git.kernel.org/linus/69005e67ce54cb837b8218b002c1bb868c83b7a9|commit]] * brcmfmac: pcie: Add IDs/properties for BCM4377 [[https://git.kernel.org/linus/bf8bbd903f07aabfef8d4cb3b513163a3e974d2b|commit]] * iwlwifi: updates intended for v6.3 [[https://git.kernel.org/linus/24091f873e15e3fe964ea2f86725b77fe920edd5|commit]], [[https://git.kernel.org/linus/12de5de4d18869bb226c02e11faa91fa8e84df2c|commit]], [[https://git.kernel.org/linus/4de5ceef3647e6c68fa9b9611ce10dfd27f5045d|commit]], [[https://git.kernel.org/linus/7d577d76d292f74afaf2f9783e8987734cd71d7f|commit]], [[https://git.kernel.org/linus/8dd51b5ff5e9bb364da71cfff6b771e07b3b583c|commit]], [[https://git.kernel.org/linus/0ac93c06dca70f0806099771f96a097fb05efbb8|commit]], [[https://git.kernel.org/linus/3f7a9d577d47b83b8911f82e37fdd626c91d95cc|commit]], [[https://git.kernel.org/linus/9387e3596d42fb9dc5c299aa4226862de858788d|commit]], [[https://git.kernel.org/linus/9ad1e7e5b0c488e4518edd698238a87ac6a73caa|commit]], [[https://git.kernel.org/linus/09b4c35d73a59c092cf8466958b62cf896786472|commit]], [[https://git.kernel.org/linus/9cbd5a8abca904441e36861e3a92961bec41d13f|commit]] * ath11k: Add support for IPQ5018 [[https://git.kernel.org/linus/8dfe875aa24aec68baf6702018633c84c2c1feca|commit]], [[https://git.kernel.org/linus/26af7aabd2d8225c6b2056234626ba5099610871|commit]], [[https://git.kernel.org/linus/b42b3678c91f3ca6e0888bf5a15c1e8678fd5f2d|commit]], [[https://git.kernel.org/linus/711b80acbdfb9667a9cf8374e13320a6e624ce73|commit]], [[https://git.kernel.org/linus/ba60f2793d3a37a00da14bb56a26558a902d2831|commit]], [[https://git.kernel.org/linus/69968f88f1770d61cae0febef805fd00d66cf6a1|commit]], [[https://git.kernel.org/linus/25edca7bb18a2a40cc7e54c6f522e9b3c917e2c5|commit]] * mt76: enable page_pool stats [[https://git.kernel.org/linus/192ad4066065ef67cbcaae557e4412871fa8d369|commit]] * mt76: mt7921: add ack signal support [[https://git.kernel.org/linus/67fc7a304bf58447b621ebfee619119a3d6d9c09|commit]] * mt76: mt7921: add support to update fw capability with MTFG table [[https://git.kernel.org/linus/7176fe656f1b5cf5aa6d5d306d0710c4e5d7a6b5|commit]] * mt76: mt7921u: add support for Comfast CF-952AX [[https://git.kernel.org/linus/e766b7fd41cad2074e43da2e88fc970a88d2c239|commit]] * rtl8xxxu: Support new chip RTL8188EU [[https://git.kernel.org/linus/3dfb8e844fa30cceb4b810613e2c35f628eb3e70|commit]] * Add IPQ5018 compatible entry for ath11k [[https://git.kernel.org/linus/8dfe875aa24aec68baf6702018633c84c2c1feca|commit]], [[https://git.kernel.org/linus/26af7aabd2d8225c6b2056234626ba5099610871|commit]], [[https://git.kernel.org/linus/b42b3678c91f3ca6e0888bf5a15c1e8678fd5f2d|commit]], [[https://git.kernel.org/linus/711b80acbdfb9667a9cf8374e13320a6e624ce73|commit]], [[https://git.kernel.org/linus/ba60f2793d3a37a00da14bb56a26558a902d2831|commit]], [[https://git.kernel.org/linus/69968f88f1770d61cae0febef805fd00d66cf6a1|commit]], [[https://git.kernel.org/linus/25edca7bb18a2a40cc7e54c6f522e9b3c917e2c5|commit]] * iwlwifi: updates intended for v6.3 [[https://git.kernel.org/linus/24091f873e15e3fe964ea2f86725b77fe920edd5|commit]], [[https://git.kernel.org/linus/12de5de4d18869bb226c02e11faa91fa8e84df2c|commit]], [[https://git.kernel.org/linus/4de5ceef3647e6c68fa9b9611ce10dfd27f5045d|commit]], [[https://git.kernel.org/linus/7d577d76d292f74afaf2f9783e8987734cd71d7f|commit]], [[https://git.kernel.org/linus/8dd51b5ff5e9bb364da71cfff6b771e07b3b583c|commit]], [[https://git.kernel.org/linus/0ac93c06dca70f0806099771f96a097fb05efbb8|commit]], [[https://git.kernel.org/linus/3f7a9d577d47b83b8911f82e37fdd626c91d95cc|commit]], [[https://git.kernel.org/linus/9387e3596d42fb9dc5c299aa4226862de858788d|commit]], [[https://git.kernel.org/linus/9ad1e7e5b0c488e4518edd698238a87ac6a73caa|commit]], [[https://git.kernel.org/linus/09b4c35d73a59c092cf8466958b62cf896786472|commit]], [[https://git.kernel.org/linus/9cbd5a8abca904441e36861e3a92961bec41d13f|commit]] * mt76: add flexible polling wait-interval support [[https://git.kernel.org/linus/35effe6c0c24adcf0f732bb1c3d75573d4c88e63|commit]], [[https://git.kernel.org/linus/09f4417a451be137a3e848b1888a1e32f8325046|commit]] * rtw89: add BTC format version to support newer firmware and features [[https://git.kernel.org/linus/6140635a73c00c0b3a8a58d13890dcf27d0af32a|commit]], [[https://git.kernel.org/linus/1fc4a874ff02ba8c07f8abf97c0bef686406f6df|commit]], [[https://git.kernel.org/linus/bc20f9235f644846520a68340ea0730d09022e0a|commit]], [[https://git.kernel.org/linus/52c7c983174cd8e2f92e157ef806be3629d5d73b|commit]], [[https://git.kernel.org/linus/0cdfcfce85b6f067f1639550a0aacf2c112a3441|commit]], [[https://git.kernel.org/linus/31f12cff9d262468a11dc02af48fd1e538e1223f|commit]], [[https://git.kernel.org/linus/e0097ac51e84243f0d0c065cbede1138f5e3aa9f|commit]] * rtw89: coex: second patchset to adopt BTC version [[https://git.kernel.org/linus/f643d08642b82eeb9b9654399dd04657050f7c6f|commit]], [[https://git.kernel.org/linus/fab895b31982f8093afe807cb0a69805aaa97850|commit]], [[https://git.kernel.org/linus/202c3b5c276f3f7525d9baabea7e8896d300ceff|commit]], [[https://git.kernel.org/linus/b02e3f5c344d62da86afbc6444638a9beb375f2e|commit]], [[https://git.kernel.org/linus/0c06fd47335ab9bbcbca250267eb22227e98ffa4|commit]], [[https://git.kernel.org/linus/891b6a3f9407965436136319ad81f03bbf97310d|commit]], [[https://git.kernel.org/linus/3f625adc61a0f015c2ce982bc49a84e163094a0c|commit]] * rtw89: coex: the last patchset to adapt BTC version [[https://git.kernel.org/linus/1742fbae7a49b067649b7c2958d9468711149e37|commit]], [[https://git.kernel.org/linus/aae256c0f2334691645d52e7cc965bf4241b599b|commit]], [[https://git.kernel.org/linus/3f857b23dd8dae2c7301476e8e183628edc694d1|commit]], [[https://git.kernel.org/linus/7cd8200555d4f01183f0b9071e0760c389a51816|commit]], [[https://git.kernel.org/linus/6d2a479c1f9e957908d0fc9d56b9831a48f5ce80|commit]], [[https://git.kernel.org/linus/c7d2b22f52bd0088cd39dba57bb7c1e8f3df5489|commit]], [[https://git.kernel.org/linus/4b3e7e813bba53402af13ecd5343ac9667ca7608|commit]], [[https://git.kernel.org/linus/de06588cb95cb3bbece81e9838547c1a3c2aa023|commit]] * rtl8xxxu: Register the LED and make it blink [[https://git.kernel.org/linus/3be01622995bb1a360718f7e5e8cee1879795fa5|commit]], [[https://git.kernel.org/linus/873b3811728b39a83a807fbccaa14d517f740ac8|commit]], [[https://git.kernel.org/linus/ae0a6df673c2ca9a0843127e4a6e72a1c80f1215|commit]], [[https://git.kernel.org/linus/2cef0aeebf2c1e6b49ac7b92f234db8c81e8eb35|commit]] * mwifiex material for next [[https://git.kernel.org/linus/36dd7a4c6226133b0b7aa92b8e604e688d958d0c|commit]], [[https://git.kernel.org/linus/bba047f15851c8b053221f1b276eb7682d59f755|commit]], [[https://git.kernel.org/linus/7715d79553de553532219d82c0fea89fba5f7c79|commit]] * mt7996: Add EHT support [[https://git.kernel.org/linus/c2eccffd9e3bdd15458ceae9d8567e20f77853ec|commit]], [[https://git.kernel.org/linus/e88c07e98b815ee94955bcd2855e4548409de770|commit]], [[https://git.kernel.org/linus/019039af0adf3f257ba3fad01d2f0b3561f1e85c|commit]], [[https://git.kernel.org/linus/6aa57e265a56a8e8c5bbb2783ec1dca1627d13e5|commit]], [[https://git.kernel.org/linus/6b733f7c5a749dbd089077165986bc3d9b7aabf5|commit]], [[https://git.kernel.org/linus/731425f3a940d01be0cab0a5e45382988146aed8|commit]], [[https://git.kernel.org/linus/5d33053be609abfcfa9f5ca75d5554f2109aa40b|commit]], [[https://git.kernel.org/linus/434825404eff256a1c870949d72d5a4adef48071|commit]], [[https://git.kernel.org/linus/827a6867dd29b1757e49b2818b9a6c5f99385164|commit]], [[https://git.kernel.org/linus/348533eb968dcc49011014843a234d9e5fc084c6|commit]], [[https://git.kernel.org/linus/80f5a31d28563ddf3a43de94922f2e5c1fc0ee38|commit]], [[https://git.kernel.org/linus/92aa2da9fa4970a53856c7df17f6f615d02e4659|commit]], [[https://git.kernel.org/linus/ba01944adee9f4a71cf2879b9529057fd8de1972|commit]] == Audio == * fireface: update UAPI for data of knob control [[https://git.kernel.org/linus/ab811cfffa949946ebcfd6e280d4dc37c7f0f602|commit]] * fireface: implement message parser for Fireface 400 [[https://git.kernel.org/linus/acdebd8b4c0c90ec3debe3def0460f07d27504bb|commit]] * hda: realtek: Improve support for Dell Precision 3260 [[https://git.kernel.org/linus/5911d78fabbbbc02fb2b3f6907e0b3f6da120781|commit]] * hda: cs35l41: Enable Amp High Pass Filter [[https://git.kernel.org/linus/5791c7699ff1b8be24e1e3b2c08b180598d3ba28|commit]] * ASoC * amd: yc: Add a module parameter to influence pdm_gain [[https://git.kernel.org/linus/02ea45d10fab99040c87d0267656930accb91e3c|commit]] * amd: renoir: Add a module parameter to influence pdm_gain [[https://git.kernel.org/linus/b7d8d4ec80ee380a82d6748c1d4e9fd89ce6e595|commit]] * amd: ps: Add a module parameter to influence pdm_gain [[https://git.kernel.org/linus/5579a966229c3365d0e2c91e9a96fc40e293dffa|commit]] * codecs: Add support for the Infineon PEB2466 codec [[https://git.kernel.org/linus/227f609c7c0e44f2103a8406ff9379ee1de3bc28|commit]] * mediatek: mt8188: support etdm in platform driver [[https://git.kernel.org/linus/2babb47774891bc8e68ae229d42ee7df90db9fd9|commit]] * fsl_xcvr: Add support for i.MX93 platform [[https://git.kernel.org/linus/e240b9329a300af7b7c1eba2ce0abbf19e6c540b|commit]] * SOF: ipc4-pcm: Implement pipeline trigger reference counting [[https://git.kernel.org/linus/32c4b69872e5fe5fd9517826be31dbf2c3dd917a|commit]] * The Iron Device SMA1303 is a boosted Class-D audio amplifier [[https://git.kernel.org/linus/68cd394efd0fdce25d0def8d6cb1b8898b2c13d9|commit]] * SOF: mediatek: Support mt8188 platform [[https://git.kernel.org/linus/6b43538f0698695fba9aa0c0b29a80c555cf1b63|commit]] * rsnd: add R-Car Gen4 Sound support [[https://git.kernel.org/linus/c2bc65274a307e11743d0f56a762f8e57f279b9e|commit]] * amd: acp: Add new cpu dai's in machine driver [[https://git.kernel.org/linus/099b923fc15d8faa91c5fc1b46cbc483d034f5dc|commit]] * amd: acp: Add i2s tdm support in machine driver [[https://git.kernel.org/linus/200553008e9f5b613aa9ea75a68210861bff511f|commit]] * amd: acp: Enable i2s tdm support for skyrim platforms [[https://git.kernel.org/linus/d386a10c9cd887b53ff9da06d27a60da61b007c9|commit]] * SOF: ipc4-topology: add buffer type support [[https://git.kernel.org/linus/7d573425d87642539480929e0172ad9a1917aced|commit]] * codecs: tas5720: add support for TAS5720A-Q1 (automotive) variant [[https://git.kernel.org/linus/c24a62be09d8a0c7ede1c209055a4ac6760a45ee|commit]] * codecs: Add support for the Renesas IDT821034 codec [[https://git.kernel.org/linus/e51166990e81754d2cd30593558c3ff47fa49f15|commit]] * cs42l42: Add !SoundWire support [[https://git.kernel.org/linus/90f6a2a20bd2e88bd7ea4b4f99509b831c5c1c47|commit]] * pxa: remove unused board support [[https://git.kernel.org/linus/b401d1fd805379344750dffb0e3938676a047a2a|commit]] * samsung: remove unused drivers [[https://git.kernel.org/linus/503278c12701831e4be18a3e5b95cd087d6f7542|commit]] * remove unused davinci support [[https://git.kernel.org/linus/efe81e9a92733253bb44b7b70e41e04131d09ef6|commit]] * remove unused ep93xx files [[https://git.kernel.org/linus/2b45e1fa9398f6dc8a242f59118d5e28fa00351f|commit]] * SOF: core/ipc4/mtl: Add support for PCM delay reporting [[https://git.kernel.org/linus/2740dcce918f385aea0fb0a026cc0b91629479af|commit]], [[https://git.kernel.org/linus/4700bfb2bb3acae63ff4cbf82fbde35a325ebdf2|commit]], [[https://git.kernel.org/linus/65a8ef494aff8bceac9a952ae8f6a1681231aee5|commit]], [[https://git.kernel.org/linus/af74dbd0dbcf49e8a3ae3e766683e13ecaf71e3b|commit]], [[https://git.kernel.org/linus/7cb19007baba0c7a76bd3f8f324a6b6548025968|commit]], [[https://git.kernel.org/linus/27c2100b6bc8b0b064f89250eb4081431299115f|commit]], [[https://git.kernel.org/linus/7f956297272bbc3535a02fa32579375a0d40283c|commit]], [[https://git.kernel.org/linus/faceb3445aaf1704583744b48c622dbc96ef9ab2|commit]], [[https://git.kernel.org/linus/3937a76c64931109dfafa999a0c78b4df2a6e0a1|commit]] * Add support for DSP volume controls [[https://git.kernel.org/linus/905ea24f0f17d826e6b90ece706bfefde3d7b2e5|commit]], [[https://git.kernel.org/linus/585b9427edd65ad124e23affb80fca3d15a6375d|commit]], [[https://git.kernel.org/linus/be2b81b519d7121290cfecc5fdfb4907ecc41c39|commit]], [[https://git.kernel.org/linus/29d6523698f68011eda67619faa6358a46952e96|commit]] * SOF: ipc4-topology: No need to unbind routes within a pipeline [[https://git.kernel.org/linus/9a62d87acee94919af1fe92f2412fff83dcbcda0|commit]], [[https://git.kernel.org/linus/5edcf2a3aad41ee398ac011cda7bccca400b56f0|commit]], [[https://git.kernel.org/linus/73ea660947b52969214473434396a33d283c5ac8|commit]], [[https://git.kernel.org/linus/4639029b046bcab11bd566afa2979c68edeb338a|commit]], [[https://git.kernel.org/linus/82b18242ae68214c44ccb13e993c2bc925f28428|commit]], [[https://git.kernel.org/linus/e380c9071032b89ea2e77b871792d908d0f15512|commit]], [[https://git.kernel.org/linus/7201a3d47e8a6a0b3a55125e70a9c650afabe7b0|commit]], [[https://git.kernel.org/linus/ba223b3ad0b9f1753f0822c5c441a925cc82b63a|commit]], [[https://git.kernel.org/linus/37a26eec53b09b7054234b77200ce729601b0ccb|commit]], [[https://git.kernel.org/linus/19137532dbe32ff2c8b5b1442c077bf3abff86f3|commit]], [[https://git.kernel.org/linus/2d271af1af241e64726ada07c6bef6572f1be6a5|commit]], [[https://git.kernel.org/linus/9c04363d222bc94d49d883458b2854334a848b5f|commit]], [[https://git.kernel.org/linus/6f9eb19a33d608ba36162a9ccbd34a77249fcc2e|commit]], [[https://git.kernel.org/linus/32c4b69872e5fe5fd9517826be31dbf2c3dd917a|commit]], [[https://git.kernel.org/linus/6bc4d1b714aafc0ee3c7649c36aa19998b4c11f9|commit]], [[https://git.kernel.org/linus/955a6f131a50c3685c560ef7b75880d272337b33|commit]], [[https://git.kernel.org/linus/f94f3915274d22d5cd8b253e0533822b934f5f41|commit]], [[https://git.kernel.org/linus/251a2b11851531526260db1dbc5673a7d6177895|commit]] * nau8822: add speaker Bridge Tied Output [[https://git.kernel.org/linus/76fa6279eff931b43482f0bef5d65cdcf325de87|commit]], [[https://git.kernel.org/linus/af20f01e4d1d8fdb0ef14dcb95bd76fa8006dfdd|commit]], [[https://git.kernel.org/linus/968b42069fe5dab362b623c6b8a1565709a12f5b|commit]] * Add tdm support in acp machine driver [[https://git.kernel.org/linus/099b923fc15d8faa91c5fc1b46cbc483d034f5dc|commit]], [[https://git.kernel.org/linus/af830fc44a2d273b163e76b17f51b128ce694481|commit]], [[https://git.kernel.org/linus/ca9d237994db63dca68f2b04e257a4738847deee|commit]], [[https://git.kernel.org/linus/200553008e9f5b613aa9ea75a68210861bff511f|commit]], [[https://git.kernel.org/linus/d386a10c9cd887b53ff9da06d27a60da61b007c9|commit]] * mediatek: common: add SMC ops and SMC CMD [[https://git.kernel.org/linus/7d40cc8eedbad7cce77226c5d01d891a40373eeb|commit]], [[https://git.kernel.org/linus/f90f0dd809e6600cf20ab74f07237241925f5cf8|commit]], [[https://git.kernel.org/linus/fdd4e1a28d69648c35bea020c0df3735ddc74889|commit]], [[https://git.kernel.org/linus/5d1c8e881ae0e6e931396952534d422facbebdbe|commit]], [[https://git.kernel.org/linus/2babb47774891bc8e68ae229d42ee7df90db9fd9|commit]], [[https://git.kernel.org/linus/5d43bdd71200e1b08b7c4b7f3d3c86fdd23c4a3d|commit]], [[https://git.kernel.org/linus/f6b026479b1392b4b2aa51ed1edbfa99f6d49b59|commit]], [[https://git.kernel.org/linus/bf106bf09376608e4992f9806c21842a4223f18b|commit]], [[https://git.kernel.org/linus/da387d3223aea9505fcd740105b7494df5bb44ad|commit]], [[https://git.kernel.org/linus/692d25b67e1089a7683978d1860e511f2ca86e7b|commit]], [[https://git.kernel.org/linus/4302187d955f166c03b4fa7c993b89ffbabfca4e|commit]], [[https://git.kernel.org/linus/96035d46d4b45274208327826608b873ec6d7f06|commit]], [[https://git.kernel.org/linus/ce0382384e88c75d2506d4e49929ab8c22527dc7|commit]] * codecs: Add Awinic AW88395 audio amplifier driver [[https://git.kernel.org/linus/62fc25fbab5f416372b2890de313e38bec75b61d|commit]], [[https://git.kernel.org/linus/4345865b003be60fed335efbed5aee61aac86da0|commit]], [[https://git.kernel.org/linus/06d2fe9cb42354e9910b1305ec984d0de7225f3e|commit]], [[https://git.kernel.org/linus/14bd857286115bab1e7860ab6e30016b0cae8233|commit]], [[https://git.kernel.org/linus/f88b6c0c070ea9b1fcf9d042d77ce8af62a020cd|commit]] * SOF: Intel/ipc4: Support for low power playback (d0i3) [[https://git.kernel.org/linus/167ca6a4fd87726e044df2db38fe86f6cb0fb907|commit]], [[https://git.kernel.org/linus/3c168838fb0d64dd64f7d65cdbd7d127ce6112ef|commit]], [[https://git.kernel.org/linus/1c91e927e55cef17bafd8903cb34a7d12968ae6d|commit]], [[https://git.kernel.org/linus/3e6b6ed34bda047a818003a8c06d368eb3596bba|commit]], [[https://git.kernel.org/linus/6611b975eb87d7793e4632575649308762e7d01e|commit]] * samsung: fsd: audio support for FSD SoC [[https://git.kernel.org/linus/93d79d410c0b33ff7b31015b9c2459bb5cabf030|commit]], [[https://git.kernel.org/linus/bc36d761cad7f3fec22cd97ddaa80f0120610181|commit]], [[https://git.kernel.org/linus/7f62af80dc62b82bc18f72c674e4c81c5ecbfe37|commit]], [[https://git.kernel.org/linus/be8599d07a6a184a790054b9b229c0b37e418014|commit]], [[https://git.kernel.org/linus/56a14f01a54568e049e22c46ffc654602bbd01d1|commit]] * Add support to compress API to ipc_msg_data / set_stream_data_offset [[https://git.kernel.org/linus/1b905942d6cd182b7ef14e9f095178376d3847e6|commit]], [[https://git.kernel.org/linus/249f186d6b0211fc59d83db128030f2b298063a1|commit]], [[https://git.kernel.org/linus/090349a9feba3ceee3997d31d68ffe54e5b57acb|commit]], [[https://git.kernel.org/linus/a9737808b3e4e2313cc2aab2e807836a06576277|commit]] == Tablets, touch screens, keyboards, mouses == * cap11xx: add support for cap1203, cap1293 and cap1298 [[https://git.kernel.org/linus/b4bb3310727e978fddcc444355a545966a9d10ea|commit]] * cros_ec_keyb: add 3 buttons for monitor function [[https://git.kernel.org/linus/8aaec1177521eed07240ec5ac2bc55b2a1c35b42|commit]] * goodix: add Lenovo Yoga Book X90F to nine_bytes_report DMI table [[https://git.kernel.org/linus/8a0432bab6ea3203d220785da7ab3c7677f70ecb|commit]] * mtk-pmic-keys: add MT6357 support [[https://git.kernel.org/linus/297770ec5c935b31e7a3c0deccc3f8a2a7829451|commit]] * xpad: add 8BitDo Pro 2 Wired Controller support [[https://git.kernel.org/linus/21617de3b4647175a4c6a2a58f40515a94a13df4|commit]] * Remove davinci keyboard driver [[https://git.kernel.org/linus/3c9cb34939fbca1f7fd451b0afa4108e282ee411|commit]] * Remove pxa930_rotary keyboard driver [[https://git.kernel.org/linus/119df5ee5b56392070936199857de4ddaabf0b89|commit]] * Remove pxa930_trkball driver [[https://git.kernel.org/linus/82d40986a6a34a83f9d4df35241ff109e9468c48|commit]] * Remove s3c24xx touchscreen driver [[https://git.kernel.org/linus/acac9a8ddb55f43561aba8ba460448aa6781b8a7|commit]] * Remove zylonite touchscreen driver [[https://git.kernel.org/linus/8f00ddfb7684fae69d2108991f9c72fcb72b3f5e|commit]] * HID * (FEATURED Introduce eBPF support for HID devices [[https://git.kernel.org/linus/25621bcc89762fe1329ae9c9dab75bc70ef1aee0|commit]], [[https://git.kernel.org/linus/012ba1156e4a7b38062d109b818cb479a68c87ba|commit]], [[https://git.kernel.org/linus/2afac81dd16544d825f309fd992d2af6304353df|commit]], [[https://git.kernel.org/linus/f5c27da4e3c8a2e42fb4f41a0c685debcb9af294|commit]], [[https://git.kernel.org/linus/95f2f26f3cac06cfc046d2b29e60719d7848ea54|commit]], [[https://git.kernel.org/linus/dbb60c8a26daf388f183f599e1e96de5bb9f96e1|commit]], [[https://git.kernel.org/linus/15baa55ff5b00b81bcd9874b89cb8e0b0daaa13d|commit]], [[https://git.kernel.org/linus/0baef37335dd4d5cffd00c9b8bbf2e0b71e4239f|commit]], [[https://git.kernel.org/linus/fb66223a244f252273995557b23e0fa53092e92c|commit]], [[https://git.kernel.org/linus/658ee5a64fcfbbf758447fa3af425729eaabb0dc|commit]], [[https://git.kernel.org/linus/f9b348185f4d684cc19e6bd9b87904823d5aa5ed|commit]], [[https://git.kernel.org/linus/0330f725cc5b01f4149a2a21e474b2090a1dcead|commit]], [[https://git.kernel.org/linus/eb1f7f71c126c8fd50ea81af98f97c4b581ea4ae|commit]], [[https://git.kernel.org/linus/b88df6979682333815536a0bf43bd56f9499f071|commit]], [[https://git.kernel.org/linus/91a7f802d1852f60139712bdcfa98db547ce0531|commit]], [[https://git.kernel.org/linus/22ed8d5a46520ef0f060e7c0ee91f1cc6f684400|commit]], [[https://git.kernel.org/linus/343949e10798a52c6d6a14effc962e010ed471ae|commit]], [[https://git.kernel.org/linus/4f7153cf461ed0f78d8da8c9fd02d38728a76b90|commit]], [[https://git.kernel.org/linus/1e839143d674603b0bbbc4c513bca35404967dbc|commit]], [[https://git.kernel.org/linus/ad190df11a024c1214fbc8dcaab72c592c79d9b5|commit]], [[https://git.kernel.org/linus/ead77b65aef430d3bfe63524c243a60a29eb8d90|commit]], [[https://git.kernel.org/linus/e8445737c0264cf4ddac682c278e0ef5b8a61a3d|commit]], [[https://git.kernel.org/linus/735e1bb1b8067e209941a6bdfde23214696ff47e|commit]], [[https://git.kernel.org/linus/80e189f2af37d383b4840f3f89896071392cb58f|commit]], [[https://git.kernel.org/linus/6008105b4f4e470da0e9159a3a74ca7ff6e869ba|commit]], [[https://git.kernel.org/linus/a56a256933bb0b593dc36fc8d7bb85ada3655662|commit]], [[https://git.kernel.org/linus/dfae6bec7100ca21a5753a03b09a81174a4e7ba0|commit]] * Add Mapping for System Microphone Mute [[https://git.kernel.org/linus/2d60f9f4f26785a00273cb81fe60eff129ebd449|commit]] * Add support for Logitech G923 Xbox Edition steering wheel [[https://git.kernel.org/linus/e8ab7a10edc7d071f64d8a8352b88e7d7477854a|commit]] * evision: Add preliminary support for EVision keyboards [[https://git.kernel.org/linus/f5cd71cfdb5c850d93d258c43c379f144acaae35|commit]] * hid-steam: Add Steam Deck support [[https://git.kernel.org/linus/9ba9498bff1a3ae6e8661b423453e319af57fc3c|commit]] * hid-steam: Add rumble on Deck [[https://git.kernel.org/linus/9cd61c8179781344315c2a9816977ea415c5459e|commit]] * input: map battery system charging [[https://git.kernel.org/linus/a608dc1c06397dc50ab773498433432fb5938f92|commit]] * logitech-hidpp: Add Signature M650 [[https://git.kernel.org/linus/3ab1c27f925ba8cc61ed35640c6bdca183657407|commit]] * logitech-hidpp: Add support for Logitech MX Master 3S mouse [[https://git.kernel.org/linus/db50f7a3983f0154e730f1147ef729e0c5c2f90c|commit]] * logitech-hidpp: Hard-code HID++ 1.0 fast scroll support [[https://git.kernel.org/linus/719acb4d3b7accc9cfbaf21c1c2d51dc7384aee2|commit]] * topre: Add support for 87 keys Realforce R2 [[https://git.kernel.org/linus/dbf56d2fb53b7397002219bd221cfc72aadfdc82|commit]] * sony: remove !DualShock4 support [[https://git.kernel.org/linus/4f1f391869eecb11d57e9e07ddec143ff3dc08ee|commit]] * uclogic: Add support for XP-PEN Deco PRO SW and MW [[https://git.kernel.org/linus/f60c377f52de37f8705c5fc6d57737fdaf309ff9|commit]], [[https://git.kernel.org/linus/14b71e6ad8ca59dd734c7fa9676f3d60bddee2a9|commit]], [[https://git.kernel.org/linus/a251d6576d2a29fc0806ef4775719e3b6e672d91|commit]], [[https://git.kernel.org/linus/bd85c131b2e3edf2cf1a498652e8c3a066a338e7|commit]], [[https://git.kernel.org/linus/7744ca571af55b794595cff2da9d51a26904998f|commit]], [[https://git.kernel.org/linus/9266a88156d1fbb8e50d6eeff7bac44ad4eaecc2|commit]] * IIO: More HID custom sensors [[https://git.kernel.org/linus/98c062e8245199fa9121141a0bf1035dc45ae90e|commit]], [[https://git.kernel.org/linus/48c79bb0abc0429751c0de6616224f8e4aa891cf|commit]], [[https://git.kernel.org/linus/3a04a1862d9b130fce24553e93db681dc311a29e|commit]], [[https://git.kernel.org/linus/c8aca355bdd56e5dad55897cc419ea5d3e4c0e58|commit]] == TV tuners, webcams, video capturers == * v4l: routing and streams support [[https://git.kernel.org/linus/c2a7f7a406117ba616774c89c3a3528a0320568f|commit]], [[https://git.kernel.org/linus/58388bd7006218f46dcbde2bf8f2d79cb7e4dc61|commit]], [[https://git.kernel.org/linus/d6cc9c7c1a34dab83c94179ae91ab0582f2f9774|commit]], [[https://git.kernel.org/linus/9a6b5bf4c1bba341eeb010f3ea8b5b48651f65f8|commit]], [[https://git.kernel.org/linus/ea73eda50813df0dadbbd6fe2b31ae9484da0cc0|commit]], [[https://git.kernel.org/linus/33c0ddbe56905c98b43d7141f2fe67ae69afba3c|commit]], [[https://git.kernel.org/linus/17bb9bf819c542b41d7dbddd9fe1ec82ac509604|commit]], [[https://git.kernel.org/linus/837f92f070f6b7e877143eb168025995688b9756|commit]], [[https://git.kernel.org/linus/70283e99a90b105173a05e8a8ebc78322b1127b5|commit]], [[https://git.kernel.org/linus/2f91e10ee6fd4c0c4abba4d36c013a93560cf514|commit]], [[https://git.kernel.org/linus/a6b995ed03ffeb36f06c4a46d8804c24d776de6f|commit]], [[https://git.kernel.org/linus/d00f1a075ce13c7d71ca00083be110877874a403|commit]], [[https://git.kernel.org/linus/72c5fbcaa33d88b3e642da7c07741bf5364ce12c|commit]], [[https://git.kernel.org/linus/5b0d85b379747b09d8b4630fdb5c8a8d74122f0f|commit]], [[https://git.kernel.org/linus/69c0fe7ae78b9ed696b5a5d8eaae7ca622c6f7ca|commit]], [[https://git.kernel.org/linus/c4a73f316d04594689dffcae8d800787e4fc9f75|commit]], [[https://git.kernel.org/linus/d0749adb30706f4e3af452698db96f671444341a|commit]], [[https://git.kernel.org/linus/34a315ce0e1c03120dd2438875af1a897c039ea0|commit]], [[https://git.kernel.org/linus/9037d1308b59b7c48c9e993f626417363cfb04c6|commit]], [[https://git.kernel.org/linus/a418bb3f30d9ac570d51ff3f700851b78da2a8a9|commit]] * i2c: Add driver for !OmniVision OV8858 [[https://git.kernel.org/linus/e14d3ac81bd2264edc76bf5796305b2dfea44487|commit]] * i2c: IMX296 camera sensor driver [[https://git.kernel.org/linus/cb33db2b6ccfe3ccc13347755ab3ef38691d59c3|commit]] * i2c: add imx415 cmos image sensor driver [[https://git.kernel.org/linus/14cd15e7a1e2a321f6184124bee95560035db4ef|commit]] * i2c: imx219: Support four-lane operation [[https://git.kernel.org/linus/ceddfd4493b3341bc69b278bbecfb19ea0773a69|commit]] * i2c: ov5675: add .get_selection support [[https://git.kernel.org/linus/221827ee2da4e61ba0d16b14ad40c6446ca3294f|commit]] * imx-pxp: Add media controller support [[https://git.kernel.org/linus/ff89b9b425c86e91f8a840bf7e037302fb3ed7c1|commit]] * imx-pxp: add support for i.MX7D [[https://git.kernel.org/linus/cbcd23735726d544380b0a4fe1409950b4becf1c|commit]] * davinci: remove vpbe support [[https://git.kernel.org/linus/eeee6973935357c96715deb3829058dbea8803f0|commit]] * media: i2c: max9286: Small new features [[https://git.kernel.org/linus/48dd004e7d736d2050022df778639703966b7484|commit]], [[https://git.kernel.org/linus/622f6dae269341fe509c15d1bbcba2803e478dac|commit]], [[https://git.kernel.org/linus/e3435af91e7be03e514a5e0294094ff60f6248e4|commit]], [[https://git.kernel.org/linus/817660f44d6063168ba27931e56c5cd2d5ae86af|commit]], [[https://git.kernel.org/linus/cffc9fb1ed6c5cd0718b74d7759432e42f860087|commit]], [[https://git.kernel.org/linus/b904512bf693db4aaaa81b4db079eccb07600630|commit]], [[https://git.kernel.org/linus/f1403802d5117651f0b8fd1ec3ba2e0515ab17ad|commit]], [[https://git.kernel.org/linus/cdcb186e364452cbe309db5a94ff5a510be234e2|commit]], [[https://git.kernel.org/linus/e332061bbe3ed2b38ebd8f148add894028311279|commit]], [[https://git.kernel.org/linus/3697f1089cd04fbc8c3c3058b20b5f1eb6bd776e|commit]], [[https://git.kernel.org/linus/40f75457983f1d3fb01a89dfa8f1f3d5339decbc|commit]], [[https://git.kernel.org/linus/defcedfb3e60320f54fac005ca3991d438e1f93b|commit]] * i2c: ov5670: OF support, runtime_pm, regulators [[https://git.kernel.org/linus/3e4ab2342fc26800e8d40a82a6ad5dcedb419924|commit]], [[https://git.kernel.org/linus/5635500ae516fb834d59077e16e2e4db85538e0d|commit]], [[https://git.kernel.org/linus/8004c91e20959c241fcc7c87f6f7bc880dc25a27|commit]], [[https://git.kernel.org/linus/cf9ab879910f620fca10562ce9223b54463dff70|commit]], [[https://git.kernel.org/linus/0a844ab77bd1ee9349e34c2beac049dc4b50bf58|commit]], [[https://git.kernel.org/linus/62ab1e32597851450c9d42aab6aaf96f397d0d15|commit]], [[https://git.kernel.org/linus/bbc6071c4c65f8850dce05c54700afbf56e763a9|commit]], [[https://git.kernel.org/linus/2eadd98dd4de7f983f0fc96586a4a914329fc811|commit]], [[https://git.kernel.org/linus/c5b6f99c91a24c09cc8048b74d40477caad9690c|commit]] * renesas: Add new pixel formats [[https://git.kernel.org/linus/8d0e3fc61abdf56a403b316e03fa8f89a3108caa|commit]], [[https://git.kernel.org/linus/0dc1d7a79a8d13e316d3b168e9fc57e376099c7a|commit]], [[https://git.kernel.org/linus/110d2bd7a2a5a9c59cd7700646952f88f2335539|commit]], [[https://git.kernel.org/linus/e0106bd776e178e5fe1522581d4104c396c7eeb9|commit]], [[https://git.kernel.org/linus/2768fbf10076b744596ddaf59879bc96748c6f8f|commit]], [[https://git.kernel.org/linus/f7a36a79ffe72ea895a79e609cd3bd398b1f89fa|commit]], [[https://git.kernel.org/linus/f37991219716aefec979c8347e5f97204689737a|commit]] == Serial == * fsl_lpuart: improve RXWATER setting and add imx8ulp support [[https://git.kernel.org/linus/34ebb26f12a84b744f43c5c4869516f122a2dfaa|commit]], [[https://git.kernel.org/linus/7c0105901778500f6d11ddfd99f6efa1987c37a6|commit]], [[https://git.kernel.org/linus/9ad9df8447547febe9dd09b040f4528a09e495f0|commit]], [[https://git.kernel.org/linus/96f54fd4894711b0dce6a1c8c26c882295dc9234|commit]], [[https://git.kernel.org/linus/ecba98f9ddf426af337fb8b63d7581c254fe6e87|commit]], [[https://git.kernel.org/linus/ed35d9dc3a80f874b511c2dd6fea7112a779dacc|commit]] * n_gsm: add keep alive support [[https://git.kernel.org/linus/72206cc730b5c9208e9a99ace1c619f542035312|commit]], [[https://git.kernel.org/linus/42ec0b93e47f72bc701799330e67e4cef2df02c5|commit]], [[https://git.kernel.org/linus/684ae4f9513c2bb9443794608b7fc754c4ca2483|commit]] * Enhance definition of DFH and use enhancements for UART driver [[https://git.kernel.org/linus/46879f71061a4c47d4f798164a877602cee910d2|commit]], [[https://git.kernel.org/linus/0926d8d52d42799806148ce6d57992849e57816c|commit]], [[https://git.kernel.org/linus/4747ab89b4a652f835494fcf8342aaa0efb9b0fd|commit]], [[https://git.kernel.org/linus/e34a79d0b320ea8248e1ee3482eb5c388a27d303|commit]] * 8250_pci1xxxx: Add driver for the pci1xxxx's quad-uart function [[https://git.kernel.org/linus/0348386dab3711b8caa0422c2a4852913b8bf4d7|commit]], [[https://git.kernel.org/linus/32bb477fa7bf386ce87837691c4672854a5231e4|commit]], [[https://git.kernel.org/linus/08cedda0b3852c0f47a94e64eb586b5507d797f1|commit]], [[https://git.kernel.org/linus/8cf31a99d3a53a68f7032452cb7de3203b8200c8|commit]] == Universal Serial Bus == * dwc3: pci: add support for the Intel Meteor Lake-M [[https://git.kernel.org/linus/8e5248c3a8778f3e394e9a19195bc7a48f567ca2|commit]] * dwc3: pci: add support for the Intel Meteor Lake-S [[https://git.kernel.org/linus/ec799c8a92e0be91e0940cc739a27f483242df65|commit]] * fotg210-udc: Implement VBUS session [[https://git.kernel.org/linus/3e679bde529e892a59e89d3a0728cc153e8ecefe|commit]] * gadget: Add support for RZ/V2M USB3DRD driver [[https://git.kernel.org/linus/9cad72dfc5567c66ab0e5a0a2474c5f36c268694|commit]] * gadget: add WebUSB landing page support [[https://git.kernel.org/linus/93c473948c588978cd55d9a3adad8b3e8057aa21|commit]] * gadget: remove s3c24xx drivers [[https://git.kernel.org/linus/1fa774f706a9cfa68bc7dea9e369be3af86fac93|commit]] * gadget: tegra-xudc: Add Tegra234 support [[https://git.kernel.org/linus/331df1f3bbbc5e783dbf6f6100daabd40e12fb87|commit]] * gadget: udc: add Renesas RZ/N1 USBF controller support [[https://git.kernel.org/linus/3e6e14ffdea41ca91d4c9afd88a1f736cf50a1f3|commit]] * gadget: udc: renesas_usb3: Add role switch support for RZ/V2M [[https://git.kernel.org/linus/3827fa1ef38f52d9de7ec6e52b4f724dd7b60bb2|commit]] * host: xhci-plat: Add reset support [[https://git.kernel.org/linus/224eb5311d6a8c180932465873d809b48a2470bf|commit]] * host: xhci-tegra: Add Tegra234 XHCI support [[https://git.kernel.org/linus/ee0e40efc4d1bd87c795233c8ceadf4228479c06|commit]] * misc: onboard_usb_hub: add Genesys Logic GL852G hub support [[https://git.kernel.org/linus/db7cab26c3d1382ec85d8cadf642f57250edea58|commit]] * misc: onboard_usb_hub: add VIA LAB VL817 hub support [[https://git.kernel.org/linus/143307adcf55a3bb2ed53e012dfc56a07cf5193f|commit]] * msunxi: add support for the !F1C100s MUSB controller [[https://git.kernel.org/linus/d4b2c2852091c9e1c1fa03553e81f5712471578c|commit]] * phy: remove phy-isp1301-omap driver [[https://git.kernel.org/linus/ab5043ef75034dfe1d205a23ffd912949f9d9d6c|commit]] * Remove ohci-tmio driver [[https://git.kernel.org/linus/89480065bc4ccacb470c9b8b4e4ac38fc2c2b005|commit]] * serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs [[https://git.kernel.org/linus/71f8afa2b66e356f435b6141b4a9ccf953e18356|commit]] * serial: option: add Quectel RM500U-CN modem [[https://git.kernel.org/linus/7708a3858e69db91a8b69487994f33b96d20192a|commit]] * serial: option: add Telit FE990 compositions [[https://git.kernel.org/linus/773e8e7d07b753474b2ccd605ff092faaa9e65b9|commit]] * serial: option: add support for VW/Skoda "Carstick LTE" [[https://git.kernel.org/linus/617c331d91077f896111044628c096802551dc66|commit]] * typec: hd3ss3220: Add polling support [[https://git.kernel.org/linus/569d23e9bf58464887c55aa0d2bdb0ead97f8592|commit]] * typec: ucsi: Register USB Power Delivery Capabilities [[https://git.kernel.org/linus/b04e1747fbcc6bf4a93a95b5c2505bf2a6467ee8|commit]] * xhci: host: Add Renesas RZ/V2M SoC support [[https://git.kernel.org/linus/c52c9acc415eb6ff54f658492f8c53da0fc3528a|commit]] * xhci: tegra: USB2 pad power controls [[https://git.kernel.org/linus/a30951d31b250bf3479c00e93646b6cc6fb42a56|commit]] * Add device-tree support for Cypress CYPD4226 [[https://git.kernel.org/linus/fb9a1b80e68b2a16ff41b644e2a2e559461c6440|commit]], [[https://git.kernel.org/linus/f510b0a3565b9231e828e23a7e0f9790b97edf96|commit]], [[https://git.kernel.org/linus/6d9e0669099f59473799f529b3c19a55fa164c92|commit]], [[https://git.kernel.org/linus/430b38764fbb931c6dbd1af13c8b2e4508994662|commit]], [[https://git.kernel.org/linus/1f6d59f7f82d3b0a629326c6d043273a84bfc61f|commit]] * usb: tps6598x: Add wakeup property [[https://git.kernel.org/linus/26fe745063e2d7d091020022b96a145f3a82dff8|commit]], [[https://git.kernel.org/linus/481735d64794181916424a36b332bcd54bfb280b|commit]] * Add XU support to UVC Gadget [[https://git.kernel.org/linus/b3c839bd8a07d303bc59a900d55dd35c7826562c|commit]], [[https://git.kernel.org/linus/0df28607c5cb4fe60bba591e9858a8f7ba39aa4a|commit]], [[https://git.kernel.org/linus/0525210c9840229e42c6b68e886c72a75a67cf8e|commit]], [[https://git.kernel.org/linus/a7289452699644b429fc82a9663b7a85bd0af51d|commit]], [[https://git.kernel.org/linus/6e2a512d9532c51889a2601cba338c4673a09374|commit]], [[https://git.kernel.org/linus/15a7cf8caabee4613764abe7814dd3162cb64137|commit]], [[https://git.kernel.org/linus/c033563220e0f7a82f4ae8d698284cced94fd6cf|commit]], [[https://git.kernel.org/linus/08ddd71bf020c3b713d343959df39bf8a48ddd0b|commit]], [[https://git.kernel.org/linus/9963f7440f4044bd4262d99fdd0a5827131bd934|commit]], [[https://git.kernel.org/linus/fe625755370be6e3945c53bd0ffb4f4db0c4a73c|commit]], [[https://git.kernel.org/linus/cf13d6e4a9aa6639c173fd630d82d586a2322ff9|commit]] * UVC Gadget: Extend color matching support [[https://git.kernel.org/linus/e16cab9c1596e251761d2bfb5e1467950d616963|commit]], [[https://git.kernel.org/linus/4a0192c01e036b542d0f53ca2673a50b38f57d74|commit]], [[https://git.kernel.org/linus/744eb7b821f61eceed60eb4f64227162853c9d5e|commit]], [[https://git.kernel.org/linus/e187408cc1de933851d03eb128c25a742bc92ecc|commit]], [[https://git.kernel.org/linus/4e8a720e2ed24324d2e84daad86874c47c3cbd4d|commit]], [[https://git.kernel.org/linus/58f227871f798825ba44d149d578e8ffbd0d3d6d|commit]], [[https://git.kernel.org/linus/f5e7bdd34aca0ed92a2bef913151dd234e86cb33|commit]] * typec: altmodes/displayport: Add hpd sysfs attribute [[https://git.kernel.org/linus/001b0c780eac328bc48b70b8437f202a4ed785e4|commit]] * typec: pd: Remove usb_suspend_supported sysfs from sink PDO [[https://git.kernel.org/linus/e4e7b2dc27c4bb877d850eaff69d41410b2f4237|commit]], [[https://git.kernel.org/linus/c620f4d5b25bcbb851daa1f88edc764cf5f29cb6|commit]] == Serial Peripheral Interface (SPI) == * intel: Add support for controllers [[https://git.kernel.org/linus/7c62a2279b9e88f2cbfa3b92dc49c8b7806c56f8|commit]] * bcm63xx-hsAdd prepend mode support [[https://git.kernel.org/linus/b7a82103f7c3a9168f0077e35688d4f9ce97294e|commit]] * bcmbca-hsAdd driver for newer HSSPI controller [[https://git.kernel.org/linus/a38a2233f23b568ca06ca679fb2327447d6b0224|commit]] * spidev: Add Silicon Labs EM3581 device compatible [[https://git.kernel.org/linus/c67d90e058550403a3e6f9b05bfcdcfa12b1815c|commit]] * spidev: Add Silicon Labs SI3210 device compatible [[https://git.kernel.org/linus/6c9d1fd52956c3148e847a214bae9102b1811de5|commit]] * spi-geni-qcom: Add support for SE DMA mode [[https://git.kernel.org/linus/e5f0dfa78ac77374a3f0817bf427a22f61494246|commit]] * bcm63xx-hsAdd polling mode support [[https://git.kernel.org/linus/50a6620dd1fbc810476422a965b041f1839f8eac|commit]] * Remove omap 100K driver [[https://git.kernel.org/linus/bcace9c4c927029237350132112a602a98cb714b|commit]] * Remove s3c24xx driver [[https://git.kernel.org/linus/c9dcd56feb820d50d1bbd52c135caa4e628e4762|commit]] == Watchdog == * Report options in sysfs [[https://git.kernel.org/linus/ad8bc199b2e3197f53228fba05128069e31893c7|commit]] * Report fw_version in sysfs [[https://git.kernel.org/linus/b852e7a4a9ab6a1fb08c5aa36b1043672fd814dc|commit]] == CPU Frequency scaling == * Implement AMD Pstate EPP Driver [[https://git.kernel.org/linus/7bc1fcd399018245575974508c26e882da0bd915|commit]], [[https://git.kernel.org/linus/e22abc6bb97cee240200d037a16b73951df16f9a|commit]], [[https://git.kernel.org/linus/36c5014e5460963ad7766487c0e22a7ff28681fc|commit]], [[https://git.kernel.org/linus/ffa5096a7c338641f70fb06d4778e8cf400181a8|commit]], [[https://git.kernel.org/linus/d4da12f8033a123353eccf993cb95ee5bff21e7c|commit]], [[https://git.kernel.org/linus/50ddd2f7826927e6dc111a43b3a183f53c260fa4|commit]], [[https://git.kernel.org/linus/abd61c08ef349af08df0bf587d33f5bde5996a89|commit]], [[https://git.kernel.org/linus/92e6088427c5da7ef8dc92d6ab2f0f8f6a01fab7|commit]], [[https://git.kernel.org/linus/5014603e409b01001bfbeae090a16733f61a7640|commit]], [[https://git.kernel.org/linus/3ec32b6d17c5b229c6f5d05849932af1f0c6f523|commit]], [[https://git.kernel.org/linus/b9e6a2d47b2565eb450d3ee900fba49cc9b25cbd|commit]] * loongson1: Delete obsolete driver [[https://git.kernel.org/linus/9a55ab6f02c98bfca1c9c9d73507c1744406d2ba|commit]] * Remove sa1100 driver [[https://git.kernel.org/linus/349619f064f9f75cfb6b698e7268cf5971ffe145|commit]] * Remove s3c24xx drivers [[https://git.kernel.org/linus/014e79d7eccea9fe77da891fa04cde75db0af9c9|commit]] == Voltage, current regulators, power capping, power supply == * power * supply: Introduce Qualcomm PMIC GLINK power supply [[https://git.kernel.org/linus/29e8142b5623b5949587bcc4f591c4e6595c4aca|commit]] * reset: add Odroid Go Ultra poweroff driver [[https://git.kernel.org/linus/cec3b46b8bda0cdc93d3ab2bdd14aae5d30ecfd9|commit]] * supply: bq25890: Add HiZ mode support [[https://git.kernel.org/linus/c688e0c436cb5292285a193134346fcdaaa3a56d|commit]] * supply: bq25890: Support boards with more then one charger IC [[https://git.kernel.org/linus/4e9498b835ab31b83fc32fae4f77426f668010ac|commit]] * supply: bq25890: Add new linux,iinlim-percentage property [[https://git.kernel.org/linus/6adaa9a4ece44e22e0c4d2e9dbce175679383cc5|commit]] * supply: bq25890: Add support for having a secondary charger IC [[https://git.kernel.org/linus/d54bf877fd878ee45cbc88d399fb98b0b1c4484d|commit]] * reset: syscon-reboot: Add support for specifying priority [[https://git.kernel.org/linus/e6333293f27cd395e77c6521afd52ff0bdc58107|commit]] * supply: rt9471: Add Richtek RT9471 charger driver [[https://git.kernel.org/linus/4a1a5f6781d8a25f5b1d421bdd4285ee3633b1fe|commit]] * supply: rt9467: Add Richtek RT9467 charger driver [[https://git.kernel.org/linus/6f7f70e3a8dd1fbce95eaea2a8eff70f01363c00|commit]] * Remove s3c adc battery driver [[https://git.kernel.org/linus/a0f831756b26f87e983dbdc291398dc097ff73b9|commit]] * Remove tosa_battery driver [[https://git.kernel.org/linus/a677fe979670e66d0860bfca3a39ad6fb12262ee|commit]] * Remove z2_battery driver [[https://git.kernel.org/linus/347651485af1f9111438fc12f9dbe2a79cc3c95b|commit]] * Remove pda_power supply driver [[https://git.kernel.org/linus/0f9b85edcae8b3a4511222592acec6697c018b90|commit]] * regulator: Introduce Maxim MAX20411 Step-Down converter [[https://git.kernel.org/linus/047ebaffd8171a47eb5462aec0f6006416fbe62e|commit]] == Real Time Clock (RTC) == * abx80x: Add nvmem support [[https://git.kernel.org/linus/e90ff8ede777b98b44611b416b1ae6be94258335|commit]] * rv3028: add ACPI support [[https://git.kernel.org/linus/b6ef5d4a0295bc0567021c0102d1c66f2ed212a2|commit]] * rv3032: add ACPI support [[https://git.kernel.org/linus/2d433e9c897dcb0b70ef17b536f61430b1e151d4|commit]] * bbnsm: Add the bbnsm rtc support [[https://git.kernel.org/linus/eb7b85853c3866236f9cb378fc68ce5f76efbf9c|commit]] * pcf85363: add support for the quartz-load-femtofarads property [[https://git.kernel.org/linus/fd9a6a13949af81062f4cd04f2c1b28ca5311e71|commit]] * Remove v3020 driver [[https://git.kernel.org/linus/6388bbad4a26a765cdd310478ef077fbf7e6ea35|commit]] == Pin Controllers (pinctrl) == * qcom: add the tlmm driver sa8775p platforms [[https://git.kernel.org/linus/4b6b185599273ecf980e3892006a7a29c5ad653b|commit]] * qcom: pinctrl-sm8550-lpass-lpi: add SM8550 LPASS [[https://git.kernel.org/linus/5a6ca1f240d6a268e1f63387a676b2cf9669fe21|commit]] * qcom: Introduce IPQ5332 TLMM driver [[https://git.kernel.org/linus/75dc7e600ef53ddf6994a753b13385da174e72d4|commit]] * add mt7981 pinctrl driver [[https://git.kernel.org/linus/6c83b2d94fcca735cf7d8aa7a55a4957eb404a9d|commit]] * starfive: Add StarFive JH7110 aon controller driver [[https://git.kernel.org/linus/b1170c42141a71e07f9cf5976ecf71323cfcec32|commit]] * starfive: Add StarFive JH7110 sys controller driver [[https://git.kernel.org/linus/447976ab62c5dd6016f06a2f24798407398b5c07|commit]] * intel: Add ~4k bias support [[https://git.kernel.org/linus/346c8364613a9862323386d75f511785696fbe52|commit]] * qcom: Add QDU1000/QRU1000 pinctrl driver [[https://git.kernel.org/linus/51a8f99718573b543197871a652b338c454806cd|commit]] * qcom: Add SM8550 pinctrl driver [[https://git.kernel.org/linus/fcd26bf51c0e74af764f2a52bd1baddd4bf3b6cb|commit]] * qcom: spmi-gpio: add support for pm8550 & pmr735d gpio control [[https://git.kernel.org/linus/e8c39b3eba42311b4e6ba5a41676acabefe9b858|commit]] * qcom: Add support for i2c specific pull feature [[https://git.kernel.org/linus/099f37a539e616f762241ab999495fb8aa2f5971|commit]] * Remove s3c24xx driver [[https://git.kernel.org/linus/20ab62c4799669a9952daa121ce84b4a09097a32|commit]] == Multi Media Card (MMC) == * sdhci-of-dwcmshc: enable host V4 support for BlueField-3 SoC [[https://git.kernel.org/linus/95921151e04335e9e2ddf4f294405e64be4ea947|commit]] * sdhci-pxav2: add initial support for PXA168 V1 controller [[https://git.kernel.org/linus/dfe9746aed2d1267f00b880ae232170d7d9e4202|commit]] * jz4740: Add support for vqmmc power supply [[https://git.kernel.org/linus/152b5245e361f9493d930a1aaa51c932e3dff660|commit]] * starfive: Add sdio/emmc driver support [[https://git.kernel.org/linus/9e622229bbf4f2204f7a4bc47f9dffb2307e4949|commit]] * Remove tmio_mmc driver [[https://git.kernel.org/linus/bef64d2908e825c5782d7aef3c16d42540f0b79c|commit]] * Remove s3cmci driver [[https://git.kernel.org/linus/0b14558977a777780bb18c2e86609cb53fe3d05a|commit]] * Remove cns3xxx driver [[https://git.kernel.org/linus/4ede65e1c1533977a60a4d57126dca18ed0a9124|commit]] == Memory Technology Devices (MTD) == * ubi: fastmap: Add fastmap control support for module parameter [[https://git.kernel.org/linus/7af73882dd1cea5d32ac0cc9eda263635295de50|commit]] * remove tmio_nand driver [[https://git.kernel.org/linus/568494db680991d6a09b5ab92dcddb7dfd3cbe25|commit]] * spinand: Add support for AllianceMemory AS5F34G04SND [[https://git.kernel.org/linus/724ef01569519d1e7a95231688b6a5f8eaba29f2|commit]] * nand: ecc-mtk: Add ECC support fot MT7986 IC [[https://git.kernel.org/linus/4d21176f48124e06c3251af38350b05a50ac4b01|commit]] == Industrial I/O (iio) == * accel: st_accel: Add LSM303C [[https://git.kernel.org/linus/23fd6f0bd6cbf010216a078a99dcbaa30c8bb5ae|commit]] * adc: add ADC driver for the TI LMP92064 controller [[https://git.kernel.org/linus/627198942641dae28024ad686066311f1aeedcf2|commit]] * adc: add imx93 adc support [[https://git.kernel.org/linus/7d02296ac8b835ff3ffa355eab3c73d3cba921f8|commit]] * adc: ti-ads7924: add Texas Instruments ADS7924 driver [[https://git.kernel.org/linus/4d82b2f98a25882481a53faca0ca5a2169f9b563|commit]] * dac: ad5686: Add support for AD5337 [[https://git.kernel.org/linus/58c2630020c5f820d63e2d03aa2341d19d4c0c5b|commit]] * dac: add support for max5522 [[https://git.kernel.org/linus/ba56b46d1c6d412ae8c079e67c01a1f7bbd5c079|commit]] * imu: st_lsm6dsx: add 'mount_matrix' sysfs entry to gyro channel [[https://git.kernel.org/linus/d354a2ee3915ada7a10a2c6634c78e9aadfb3db9|commit]] * light: vcnl4000: Add interrupt support for vcnl4040 [[https://git.kernel.org/linus/546676121cb9d1c77862042611533e721b86565e|commit]] * magnetometer: add ti tmag5273 driver [[https://git.kernel.org/linus/866a1389174bbb71591bb0c927f1d63e7cc469c8|commit]] * magnetometer: st_magn: Add LSM303C [[https://git.kernel.org/linus/721a2a7edcdd10f55ef7d3cf74fc276b0d4177e8|commit]] == Multi Function Devices (MFD) == * fpga: m10bmc-sec: Add support for N6000 [[https://git.kernel.org/linus/acf63c458b55ecfb2015b33dd6ba3cc8fbc1c5d3|commit]] * intel-m10-bmc: Add PMCI driver [[https://git.kernel.org/linus/869b9eddf0b38a22c27a400e2fa849d2ff2aa7e1|commit]] * ocelot: add external ocelot switch control [[https://git.kernel.org/linus/8dccdd277e0b0df14957ad0704e0f7b8bad3d248|commit]] * Remove htc-pasic3 driver [[https://git.kernel.org/linus/61d9420a213826e0088b6e377b55237f1c53887d|commit]] * Remove toshiba tmio drivers [[https://git.kernel.org/linus/8971bb812e3c14aa730e751ddf2d90c32e9dc519|commit]] * Remove toshiba tmio drivers [[https://git.kernel.org/linus/ca78476e4888f1f1caac26c48ec715e546baf432|commit]] * Remove ucb1400 support [[https://git.kernel.org/linus/2e99b1b065fb9c6e771ce573cf6c2dbb52c14627|commit]] == Inter-Integrated Circuit (I2C + I3C) == * Add GXP SoC I2C Controller [[https://git.kernel.org/linus/4a55ed6f89f5a877a39b7d06620457f0c4913c42|commit]] * cht-wc: Add charger-chip info for the Lenovo Yoga Tab 3 YT3-X90F [[https://git.kernel.org/linus/0e61637f0fb5578198c8d95c3fb9b893390bc1e7|commit]] * designware: add a new bit check for IC_CON control [[https://git.kernel.org/linus/60a1f9f28660657f863a3846a64b6c3cbb18f07d|commit]] * gpio: Add support on ACPI-based system [[https://git.kernel.org/linus/7b6e9dc7e42d869a32ba4f517a7d9eec4c6173d5|commit]] * ls2x: Add driver for Loongson-2K/LS7A I2C controller [[https://git.kernel.org/linus/015e61f0bffd46600496e50d3b2298f51f6b11a8|commit]] * xiic: Add SCL frequency configuration support [[https://git.kernel.org/linus/6d8ffbe6618c47021c48cfff31f5d9d354ca44b9|commit]] == Hardware monitoring (hwmon) == * aquacomputer_d5next: Add Aquacomputer Aquaero sensors [[https://git.kernel.org/linus/8bcb02bdc638df3c59d2797c57b84b641501c424|commit]], [[https://git.kernel.org/linus/a2ba7ee25c804f69a2ef0e9c7f76a31cacb685aa|commit]], [[https://git.kernel.org/linus/249c752110a551818f2e7080d81b93b90ae31095|commit]], [[https://git.kernel.org/linus/ad2f0811fbeb61067e7d3715a3441ece23345e94|commit]], [[https://git.kernel.org/linus/1ed5036b3be7db1b694bcaa4095869bdb8657d49|commit]], [[https://git.kernel.org/linus/2c55211104b44bd1b83009f0af204237a62e28bd|commit]] * aquacomputer_d5next: Add support for Aquacomputer Aquastream Ultimate [[https://git.kernel.org/linus/7505dab78f58c953b863753208eeca682e8126ff|commit]] * aquacomputer_d5next: Add support for Aquacomputer Poweradjust 3 [[https://git.kernel.org/linus/e0f6c370f0ad2b02637ba4ead082d39cc9a1b094|commit]] * aquacomputer_d5next: Add support for reading calculated Aquaero sensors [[https://git.kernel.org/linus/3d2e9f582a8e024b5f0516c1895ce586aea9c334|commit]] * asus-ec-sensors: add zenith ii extreme alpha [[https://git.kernel.org/linus/195f46e5afeedc4a40a7649932f042218b3b58e5|commit]] * ftsteutates: Add support for fanX_fault attributes [[https://git.kernel.org/linus/c184f377a4cc9078d42563ef0fe3de6ea574b0cf|commit]] * gxp-fan-ctrl: Add GXP fan controller [[https://git.kernel.org/linus/90905f7c40910a68677ea452ecf0023f31d6b08f|commit]] * Add initial NXP MC34VR500 PMIC monitoring support [[https://git.kernel.org/linus/07830d9ab34c0622f577a88286746aa17c144afd|commit]] * intel-m10-bmc-hwmon: Add N6000 sensors [[https://git.kernel.org/linus/e1983220ae14ae7bdc8db4fb64e78bb55122c32b|commit]] * it87: Add new chipset IT87952E [[https://git.kernel.org/linus/d44cb4cd7456b6eef2689fdfed7bf361ffc8e5ce|commit]] * ltc2945: Allow setting shunt resistor [[https://git.kernel.org/linus/b11f3d47c0e74e6c0515e31788651713a3a94a50|commit]] * nct6775: B650/B660/X670 ASUS boards support [[https://git.kernel.org/linus/e2e09989ccc21ad428d6393450add78584b143bd|commit]] * nzxt-smart2: Add device id [[https://git.kernel.org/linus/e247510e1baad04e9b7b8ed7190dbb00989387b9|commit]] * oxp-sensors: Add AYANEO AIR and AIR Pro [[https://git.kernel.org/linus/ebd4bfee2b972d34a2f72f81767d0cf47e6c914b|commit]] * pmbus/max16601: Add support for MAX16600 [[https://git.kernel.org/linus/a6f7c5d0e72ea0000cc03ed2d26559658939b16f|commit]] * pmbus/mpq7932: Add a support for mpq7932 Power Management IC [[https://git.kernel.org/linus/61d1eb025b237e29cdae0d12bc9feb56cd703bdb|commit]] * pmbus/tda38640: Add driver for Infineon TDA38640 Voltage Regulator [[https://git.kernel.org/linus/95b80c48cfcbe4d752ef229f80a47de92a51cf24|commit]] * remove s3c driver [[https://git.kernel.org/linus/4e9f616c002607874dedcef0750e8f473ac00a47|commit]] == General Purpose I/O (gpio) == * Remove iop driver [[https://git.kernel.org/linus/046cd3c6987c6671b3ac5405771e79f6b763ff4d|commit]] == Leds == * Remove asic3 driver [[https://git.kernel.org/linus/0ca222c81977c2622ca4ab6ddceeb85a414e1155|commit]] * Remove ide-disk trigger [[https://git.kernel.org/linus/056f65c3938bfa40141669b974d441348af3ee54|commit]] * Remove s3c24xx driver [[https://git.kernel.org/linus/7d1ec119e3c1ec060370f5dc58490b51368c554c|commit]] == DMA engines == * dw-edma: Add RP/EP local DMA controllers support [[https://git.kernel.org/linus/37fe46051dc94c589b616018ba9d2fd4bacfbd8a|commit]], [[https://git.kernel.org/linus/0278067445626de4d9c46919d0ee1af0b987ee45|commit]], [[https://git.kernel.org/linus/c8ed49182286cb9c64f0c503b98090bd11a3fb60|commit]], [[https://git.kernel.org/linus/7ad06f218491bf30f13fd88933bb807de5330cdd|commit]], [[https://git.kernel.org/linus/2271216e0aac2409f2cd9a0650c460b89f7d2446|commit]], [[https://git.kernel.org/linus/b73bdc5054742d3945ae6e4daa18234c13871240|commit]], [[https://git.kernel.org/linus/7119685cf49033b777c559ae4da093be2a9b225c|commit]], [[https://git.kernel.org/linus/53c0e2f9b808fafaea7bec91eeec48046bcaaba0|commit]], [[https://git.kernel.org/linus/4ac1662105926c963d19e66caab16c77de01e681|commit]], [[https://git.kernel.org/linus/16f8a08643b6d63d2e8252ddaa9e17e2408a2531|commit]] * dw-edma: Rename debugfs dentry variables to 'dent' [[https://git.kernel.org/linus/95c55b7836f579ea6e46002226b02dddd6642a0d|commit]] * imx-sdma: support hdmi in sdma [[https://git.kernel.org/linus/e873d4329ccb891bf3b17f1e0d44396de943e92d|commit]] * Add support for AM62A SoC DMAs [[https://git.kernel.org/linus/58617149210c66c177001edddc7c991c7696c729|commit]], [[https://git.kernel.org/linus/4c7f3ca1745e18e2da9a83373c26eaf6f51c0505|commit]], [[https://git.kernel.org/linus/aac6db7e243a24f7b1a84a6293b68a72e6764893|commit]], [[https://git.kernel.org/linus/c1475ad338bdc6f2635450e35dd86b9051fa7c68|commit]], [[https://git.kernel.org/linus/3f58e10615f3bd7da8d0ef2f9c815d8e1a968122|commit]] * xilinx XDMA driver [[https://git.kernel.org/linus/17ce252266c7f016ece026492c45838f852ddc79|commit]], [[https://git.kernel.org/linus/ecf294a6f63f882319485f807754dacaeae96e9d|commit]] * Remove s3c24xx driver [[https://git.kernel.org/linus/a7ddf74b784b57ec7c93b780ec8236dc6aa4db02|commit]] == Hardware Random Number Generator (hwrng) == * starfive: Add TRNG driver for !StarFive SoC [[https://git.kernel.org/linus/c388f458bc34eb3a5728b67f6614f9375cd99087|commit]] == Cryptography hardware acceleration == * aspeed: Add ACRY RSA driver [[https://git.kernel.org/linus/2f1cf4e50c956f882c9fc209c7cded832b67b8a3|commit]] * hisilicon - supports device isolation feature [[https://git.kernel.org/linus/e3e289fbc0b520cf469469e8cdba84a50424eb65|commit]], [[https://git.kernel.org/linus/f65ccb82f5987630f6f4439357a8cf4be8c3840f|commit]], [[https://git.kernel.org/linus/cd0ac51c5760d4eed4981be5de9cad0255976512|commit]] * qat - extend buffer list logic interface [[https://git.kernel.org/linus/c1e98807b7049dfc04a971b937ca127faa5514f4|commit]], [[https://git.kernel.org/linus/7ce515e636ec1807723c30fd3a6181b4ccac6ec6|commit]] * stm32/hash: Support Ux500 hash [[https://git.kernel.org/linus/b56403a25af703064bed0d7e81d2c9ffb30511ff|commit]] * ux500/hash: delete driver [[https://git.kernel.org/linus/dd7b7972cb896c33f20915f7c89173b3927340e5|commit]] == PCI == * Add ACS quirk for Wangxun NICs [[https://git.kernel.org/linus/a2b9b123ccac913e9f9b80337d687a2fe786a634|commit]] * Avoid FLR for !SolidRun SNET DPU rev 1 [[https://git.kernel.org/linus/d089d69cc1f824936eeaa4fa172f8fa1a0949eaa|commit]] * dwc: Add Root Port and Endpoint controller eDMA engine support [[https://git.kernel.org/linus/939fbcd568fd294034c96edc92ff5b9de1a5fce8|commit]] * qcom: Add IPQ8074 Gen3 port support [[https://git.kernel.org/linus/f356132229b18ceef5d5ef9103bbaa9bdeb84c8d|commit]] * qcom: Add SM8350 support [[https://git.kernel.org/linus/720e0d91c9772b60a87eb361da02deb3c0c628e4|commit]] * Add i.MX PCIe EP mode support [[https://git.kernel.org/linus/1af5ea1dc2df627ac11361ee9795cf4f240f66f1|commit]], [[https://git.kernel.org/linus/dea44b629ae186410d822e2bf576143bebd932f1|commit]], [[https://git.kernel.org/linus/2dd6dc57d2da459983ded133767d0389194f15b8|commit]], [[https://git.kernel.org/linus/01ea5ede419733fdc39e75875f0861d16a829fe6|commit]], [[https://git.kernel.org/linus/75c2f26da03f93e988cd7678722ea893a8c63796|commit]], [[https://git.kernel.org/linus/530ba41250b69db4b5beb9fc03bd7183881c5e7f|commit]], [[https://git.kernel.org/linus/fb3217e2cfc6a577481b6accc3e17032f242e0ac|commit]], [[https://git.kernel.org/linus/c435669a41dd4ee063572e17b48c14806ad31f72|commit]] |
Line 8: | Line 968: |
* thunderbolt: Add support for DisplayPort bandwidth allocation mode [[https://git.kernel.org/linus/49f2b350f330cf600cf0563fa3e55ba1c1799440|commit]], [[https://git.kernel.org/linus/b0ef48fc95cc2ce042fd5ad85d193e8a57502094|commit]], [[https://git.kernel.org/linus/2426fdf77afb4d78316585531a4069905a5accc7|commit]], [[https://git.kernel.org/linus/e70a8f36987da50b9f443173f8800795f70266da|commit]], [[https://git.kernel.org/linus/fe1a1cf7c97028570127ac8d222c2b451ba04278|commit]], [[https://git.kernel.org/linus/e327380133d96a7a71baca65a809bf65609a1a69|commit]], [[https://git.kernel.org/linus/630f211be7c0a8cf693fef2b6d77d0ac357041e0|commit]], [[https://git.kernel.org/linus/6ce3563520be90a155706bafc186fc264a13850e|commit]] | * thunderbolt: Add support for !DisplayPort bandwidth allocation mode [[https://git.kernel.org/linus/49f2b350f330cf600cf0563fa3e55ba1c1799440|commit]], [[https://git.kernel.org/linus/b0ef48fc95cc2ce042fd5ad85d193e8a57502094|commit]], [[https://git.kernel.org/linus/2426fdf77afb4d78316585531a4069905a5accc7|commit]], [[https://git.kernel.org/linus/e70a8f36987da50b9f443173f8800795f70266da|commit]], [[https://git.kernel.org/linus/fe1a1cf7c97028570127ac8d222c2b451ba04278|commit]], [[https://git.kernel.org/linus/e327380133d96a7a71baca65a809bf65609a1a69|commit]], [[https://git.kernel.org/linus/630f211be7c0a8cf693fef2b6d77d0ac357041e0|commit]], [[https://git.kernel.org/linus/6ce3563520be90a155706bafc186fc264a13850e|commit]] |
Line 13: | Line 973: |
* clk: qcom: Add clocks for the QDU1000 and QRU1000 SoCs [[https://git.kernel.org/linus/8c8acefcee87957cb3564c7180e667f0403121f1|commit]], [[https://git.kernel.org/linus/1c9efb0bc0406b088f3d4b4a433f49e3cd7addaf|commit]] | * clk: qcom: Add clocks for the QDU1000 and QRU1000 !SoCs [[https://git.kernel.org/linus/8c8acefcee87957cb3564c7180e667f0403121f1|commit]], [[https://git.kernel.org/linus/1c9efb0bc0406b088f3d4b4a433f49e3cd7addaf|commit]] |
Line 39: | Line 999: |
* sun4i-usb: add support for the USB PHY on F1C100s SoC [[https://git.kernel.org/linus/50bd67abe5bacc8fd160461bb3eb2c164c4698c0|commit]] | * sun4i-usb: add support for the USB PHY on !F1C100s SoC [[https://git.kernel.org/linus/50bd67abe5bacc8fd160461bb3eb2c164c4698c0|commit]] |
Line 57: | Line 1017: |
* habanalabs: add uapi to flush inbound HBM transactions [[https://git.kernel.org/linus/20faaeec3794661c1d73578316691174a5a0e5a9|commit]], [[https://git.kernel.org/linus/e2a079a206869b5e2164afa15bdf8d6d6299ca13|commit]], [[https://git.kernel.org/linus/2fd7db3c80d2391a2382db324577e2a6fd54d3a1|commit]], [[https://git.kernel.org/linus/bcace6f058a94d2adb45c54b2e63b879c7849341|commit]], [[https://git.kernel.org/linus/139dad04712e803c7b844ccb57ef9302be64a3d0|commit]], [[https://git.kernel.org/linus/e1e8e7472b8c647c4e117191d6b44b852c90cd24|commit]], [[https://git.kernel.org/linus/4083697a3672d0eb6e41ba51bff168171a3bf398|commit]], [[https://git.kernel.org/linus/6cfb00139dc3b7b64996ecff3c76eaf08d6c8c4b|commit]], [[https://git.kernel.org/linus/78baccbdc343b0d4c3e3fd05644dadc3fc3f94c0|commit]] * habanalabs: pass-through request from user to f/w [[https://git.kernel.org/linus/c2239a251d2d738f435c46bae7d66899c62ce493|commit]], [[https://git.kernel.org/linus/2dd89591d8c7fe7b24daeac0faf8a0afa30f9b0b|commit]] |
|
Line 91: | Line 1049: |
* misc: Add support for TMR Manager and Inject IP [[https://git.kernel.org/linus/fc4d041e947b2b12fe0972781b4577a7d2647bfa|commit]], [[https://git.kernel.org/linus/f5ec7f54fdba7fef051c65e975612edf46d4934d|commit]], [[https://git.kernel.org/linus/859584726a842e459fbd5ee3bfb99e5250b4edc7|commit]], [[https://git.kernel.org/linus/895ae5bee159d148bac21a82899292c408c1aab1|commit]] | |
Line 285: | Line 1244: |
* LWN merge window [[https://lwn.net/Articles/923846/|part 1]], [[https://lwn.net/Articles/924384/|part 2]], [[https://lwn.net/Articles/929582/|development statistics]]. * Phoronix's [[https://www.phoronix.com/review/linux-63-features|feature overview]] |
Linux 6.3 was released on Sunday, 23 Apr 2023.
Summary: This release includes improved Btrfs performance and fragmentation improvements, support for non-executable memfds, support for IPv4 Big TCP, new ids to the rseq system call, support AMD QoS new features, specifications for the netlink protocol, more secure NFS encryption, and multi-actuator support in the BFQ I/O sched. As always, there are many other features, new drivers, improvements and fixes.
Contents
-
Prominent features
- Btrfs performance and fragmentation improvements
- Non-executable memfds
- Support IPv4 big TCP (TSO frames larger than 64kB)
- Add new ids to the rseq system call for faster and more efficient memory allocators
- Support AMD QoS new features
- Netlink protocol specifications
- More secure NFS encryption
- Multi-actuator support in the BFQ I/O scheduler
- Core
- File systems
- Memory management
- Block layer
- Tracing, perf and BPF
- Virtualization
- Security
- Networking
- Architectures
-
Drivers
- Graphics
- Power Management
- Storage
- Drivers in the Staging area
- Networking
- Audio
- Tablets, touch screens, keyboards, mouses
- TV tuners, webcams, video capturers
- Serial
- Universal Serial Bus
- Serial Peripheral Interface (SPI)
- Watchdog
- CPU Frequency scaling
- Voltage, current regulators, power capping, power supply
- Real Time Clock (RTC)
- Pin Controllers (pinctrl)
- Multi Media Card (MMC)
- Memory Technology Devices (MTD)
- Industrial I/O (iio)
- Multi Function Devices (MFD)
- Inter-Integrated Circuit (I2C + I3C)
- Hardware monitoring (hwmon)
- General Purpose I/O (gpio)
- Leds
- DMA engines
- Hardware Random Number Generator (hwrng)
- Cryptography hardware acceleration
- PCI
- Thunderbolt
- Clock
- PHY ("physical layer" framework)
- EDAC (Error Detection And Correction)
- Various
- List of Pull Requests
- Other news sites
1. Prominent features
1.1. Btrfs performance and fragmentation improvements
This release places a number of heuristics in the block allocator to place files with different fragmentation characteristics together and separated from other types. This can help to avoid fragmentation in some cases, in particular this may help during balance.
There are also a few notable performance improvements: the send functionality now caches caches directory utimes and only emit the command when necessary, which can speed up send up to 10x. The fiemap ioctl can be now up to 3x faster when extents are shared, and there are some microoptimizations that can speed up file creation in synthetic benchmarks up to 10%.
== eBPF support for HID devices, and other BPF enhancements
As usual, this release includes a number of enhancements, like a rbtree data structure that follows the recently-added linked-list. Because of previous limitation, BPF users had to use the BPF map structures (hash, array) for data structures that don't fit well in these structures. With the introduction of kfuncs, kptrs, and the any-context BPF allocator, it is now possible to implement this rbtree data structure that can expose red-black tree structures inside the kernel more naturally.
This release also includes a somewhat exotic use of BPF: using eBPF programs as a way to add small features and tweaks to existing Input HID drivers. For example, as joystick gets older, it is common to see it wobbling around its neutral point. This is usually filtered at the application level by adding a dead zone for this specific axis. With HID-BPF, it is possible to add a filter in the kernel directly so userspace does not get woken up when nothing else is happening on the input controller.
Another use would be to add a feature that requires a new kernel API, morph a device into something else and control that from userspace, or prevent users from accessing a feature (eg. broken firmware feature), or simply tracing HID events.
Recommended LWN article: [[|https://lwn.net/Articles/909109/BPF for HID drivers]]
1.2. Non-executable memfds
memfds (which are file descriptors that just refer to an area of anonymous process memory, instead of a file system). This release adds some flags to allow disabling the executability of these files, and it's also possible to seal them.
Recommended LWN article: Enabling non-executable memfds
1.3. Support IPv4 big TCP (TSO frames larger than 64kB)
This is an IPv4 implementation of BIG TCP, which allow biggers TSO/GRO packet sizes for IPv4 traffic. Reducing number of packets traversing networking stack usually improves performance. This is similar to the IPv6 BIG TCP feature but for the v4 family.
Recommended LWN article: Going big with TCP packets
1.4. Add new ids to the rseq system call for faster and more efficient memory allocators
The rseq(2) system call (alias for "restartable sequences") was added in Linux 4.18 to provide a safe way to do concurrency updates without using locks or atomic instructions. But it also provided a method for a thread to get the CPU id number where it runs, in a way that is faster than getcpu(2).
This release extends the rseq(2) system call to also expose other identification numbers that provide some heavy-lifting needed by eg. memory allocators to allow them to use per-cpu data structures more efficiently:
- NUMA node id: This allows to gather the NUMA node id more efficiently than getcpu(2), which allows memory allocators such as tcmalloc to take advantage of this fast access to perform NUMA-aware memory allocation. It can also be useful for implementing fast-paths for NUMA-aware user-space mutexes, and even allows implementing getcpu(2) purely in user-space.
- Per-memory map concurrency ID. This concurrency ID is within the possible cpus range, and is temporarily (and uniquely) assigned to a memory map while threads are actively running within it. If a memory map has fewer threads than cores, or is limited to run on few cores concurrently through sched affinity or cgroup cpusets, the concurrency IDs will be values close to 0, thus allowing efficient use of user-space memory for per-cpu data structures.
- NUMA-aware concurrency id: It is similar to the concurrency ID, except that it provides the NUMA node ids with which each concurrency id has been associated, and it is guaranteed to never change NUMA node unless a kernel-level NUMA configuration change happens. This makes possible to create per-cpu structures in environments where a process or a set of processes belonging to cpuset are pinned to a set of cores which belong to a subset of the system's NUMA nodes. In those situations, it is possible to benefit from the compactness of concurrency IDs over CPU ids, while keeping NUMA locality, for indexing a per-cpu data structure which takes into account NUMA locality.
1.5. Support AMD QoS new features
Support for AMD QoS new features: Slow Memory Bandwidth Allocation (SMBA) and Bandwidth Monitoring Event Configuration (BMEC). These extensions are intended to provide for the monitoring of the usage of certain system resources by one or more processors and for the separate allocation and enforcement of use limits:
- Slow Memory Bandwidth Allocation (SMBA): With this feature, the QOS enforcement policies can be applied to the external slow memory connected to the host. Currently, CXL.memory is the only supported "slow" memory device.
- Bandwidth Monitoring Event Configuration (BMEC). The bandwidth monitoring events mbm_total_event and mbm_local_event are set to count all the total and local reads/writes respectively.
Official site: AMD64 Technology Platform Quality of Service Extensions
1.6. Netlink protocol specifications
The netlink protocol is a networking protocol used to communicate user space programs with the kernel. For example, it is used to configure and gather information about wireless devices. Adding new communication endpoints require manually adding them to userspace libraries. This release adds machine readable netlink protocol descriptions in YAML. The expectation is that the spec can be used to either dynamically translate between whatever types the high level language likes. Currently only genetlink is supported.
1.7. More secure NFS encryption
This release improve/harden the security provided by the Linux kernel's RPCSEC GSS Kerberos 5 mechanism (used by NFS). This release disables DES-based enctypes by default, provides a mechanism for disabling SHA1-based enctypes, and introduces two modern AES-SHA2-based enctypes that do not use deprecated crypto algorithms.
1.8. Multi-actuator support in the BFQ I/O scheduler
Some traditional hard drives have more than one arm. In order to optimize performance, the I/O scheduler must attempt to keep both arms busy. This release adds some support for such multi-actuator drives to the BFQ I/O scheduler.
2. Core
- Rust
Rust support for User Mode Linux arch commit, commit, commit
alloc: remove the borrow module (ToOwned, Cow) commit
sync: add Arc for ref-counted allocations commit
sync: add support for dispatching on Arc and ArcBorrow commit
sync: allow coercion from Arc<T> to Arc<U> commit
sync: allow type of self to be Arc<T> or variants commit
sync: allow type of self to be ArcBorrow<T> commit
sync: introduce ArcBorrow commit
sync: introduce UniqueArc commit
types: implement ForeignOwnable for Arc<T> commit
types: implement ForeignOwnable for Box<T> commit
types: implement ForeignOwnable for the unit type commit
types: introduce ForeignOwnable commit
types: introduce ScopeGuard commit
nolibc: usability improvements (errno, environ, auxv) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
fw_devlink improvements commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
VT: Support >32x32 fonts for hidpi displays commit, commit, commit
kbuild: add a tool to list files ignored by git commit
scripts/gdb: add mm introspection utils commit
- io_uring
Add a new flag (IORING_MSG_RING_FLAGS_PASS) in the message ring operations (IORING_OP_MSG_RING). This new flag enables the sender to specify custom flags, which will be copied over to cqe->flags in the receiving ring. These custom flags should be specified using the sqe->file_index field. This mechanism provides additional flexibility when sending messages between rings commit
Add support for using io_uring_register() with a registered ring fd commit
(FEATURED) RSEQ node id and mm concurrency id extensions commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
rcu: Add RCU stall diagnosis information commit, commit, commit, commit, commit
shmem: support idmapped mounts for tmpfs commit
lib: add Dhrystone benchmark test commit
Allow forcing unconditional bootconfig processing commit
fork: allow CLONE_NEWTIME in clone3 flags commit
kexec: introduce sysctl parameters kexec_load_limit_* commit
- docs
uaccess: Add minimum bounds check on kernel buffer size commit
- Task scheduler
Membarrier: Introduce MEMBARRIER_CMD_GET_REGISTRATIONS, a method to query previously issued registrations It's needed for CRIU (checkpoint/restore in userspace) commit, commit
Limit scheduler slice duration to the sysctl_sched_latency period, to improve scheduling granularity with a large number of SCHED_IDLE tasks commit
Improve the scalability of the CFS bandwidth unthrottling logic with large number of CPUs commit
3. File systems
- BTRFS
(FEATURED) Data block group size classes to reduce the fragmentation of block groups under certain unhappy workloads. It is particularly effective when the size of extents correlates with their lifetime commit, commit
(FEATURED) Send optimizations: ache directory utimes and only emit the command when necessary (speedup up to 10x) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
(FEATURED) Scan device in non-exclusive mode commit
(FEATURED) Speedup fiemap (up to 3x) when extents are shared commit, commit
(FEATURED) Small optimization in the b-tree key lookup, speedup in metadata operations (sample benchmark: fs_mark +10% of files/sec) commit, commit
Consolidate btrfs checksumming, repair and bio splitting commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- EXT4
Direct IO take shared inode lock when overwriting preallocated blocks. This can give a significant speed up for multi-threaded writes commit
- FSVERITY
- F2FS
- FUSE
- NFS
Initial conversion of NFS basic I/O to use folios commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
(FEATURED) Disable DES-based enctypes by default, provides a mechanism for disabling SHA1-based enctypes, and introduces two modern enctypes that do not use deprecated crypto algorithms commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- UDF
- ZONEFS
- EROFS
Add per-cpu threads for decompression as an option commit
4. Memory management
Per-VMA locks commit, commit, commit, commit, commit, commit, commit, commit
Implement DAMOS filtering for anon pages and commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
migrate_pages(): batch TLB flushing commit, commit, commit, commit, commit, commit, commit, commit, commit
Multi-gen LRU: memcg LRU commit, commit, commit, commit, commit, commit, commit
zsmalloc: make zspage chain size configurable commit, commit, commit, commit
(FEATURED) memfd: introduce MFD_NOEXEC_SEAL and MFD_EXEC commit, commit, commit, commit, commit
Support for memory-deny-write-execute (MDWE). Its aim is to prevent a user task from inadvertently creating an executable mapping that is (or was) writeable commit
Enable maple tree RCU mode by default commit
Support POSIX_FADV_NOREUSE in vma_has_recency() so that the LRU algorithm can ignore access to mapped files marked by this flag commit, commit
Introduce per NUMA node memory error statistics commit, commit, commit
Improves a few MGLRU functions commit, commit, commit, commit, commit, commit, commit
Get rid of first tail page fields from struct page commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- Folios changes
Convert hugetlb fault functions to folios commit, commit, commit, commit, commit, commit, commit, commit
Convert various mempolicy.c functions to use folios commit, commit, commit, commit, commit, commit
Convert page_add_file_rmap() to use a folio internally commit Convert filemap_map_pmd() to take a folio commit, commit, commit
Convert do_anonymous_page() to use a folio commit
kasan: infer allocation size by scanning metadata commit
Continue hugetlb folio conversions commit, commit, commit, commit, commit, commit, commit, commit
khugepaged: convert release_pte_pages() to use folios commit * Implement memory-deny-write-execute as a prctl commit
Convert page_add_file_rmap() to use a folio internally commit
Convert hugepage memory failure functions to folios commit, commit, commit, commit, commit, commit, commit, commit
5. Block layer
ublk_drv: add mechanism for supporting unprivileged ublk device commit, commit, commit, commit, commit, commit, commit
(FEATURED) Extend BFQ io scheduler to support multi-actuator drives commit, commit, commit, commit, commit, commit, commit, commit
virtio-blk: set req->state to MQ_RQ_COMPLETE and support completion batching for the IRQ path commit, commit
pata_parport: add driver (PARIDE replacement) commit, commit
virtio: vdpa: new SolidNET DPU driver commit, commit, commit
6. Tracing, perf and BPF
Enable cpumasks to be used as kptrs commit, commit, commit, commit, commit, commit, commit, commit, commit
Enable struct_ops programs to be sleepable commit, commit, commit
(FEATURED) BPF rbtree next-gen datastructure commit, commit, commit, commit, commit, commit, commit, commit, commit
Add flag BPF_F_NO_TUNNEL_KEY to bpf_skb_set_tunnel_key() commit, commit
bpftool: profile online CPUs instead of possible commit
libbpf: Add support for fetching up to 8 arguments in kprobes commit
Introduce cgroup.memory=nobpf commit, commit, commit, commit
perf c2c: Add report option to show false sharing in adjacent cachelines commit
perf intel-pt: Synthesize cycle events commit
perf lock contention: Add -S/--callstack-filter option commit
perf lock contention: Track lock owner commit, commit, commit
perf script: Add 'cgroup' field for output commit
perf stat: Avoid merging/aggregating metric counts twice commit
perf symbols: Improve dso__synthesize_plt_symbols() for x86 commit, commit, commit, commit, commit, commit, commit, commit, commit
perf lock contention: Improve aggr x filter combination commit, commit, commit, commit
perf report: Support Retire Latency commit, commit, commit, commit, commit, commit, commit, commit, commit
perf intel-pt: Fix the pipe mode (v2) commit, commit, commit, commit
jevents/pmu-events improvements commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
perf: Add more syscalls to benchmark commit, commit, commit, commit
tracing: Allow stacktraces to be saved as histogram variables commit, commit, commit, commit, commit
tracing: Addition of tracing instances via kernel command line commit, commit, commit, commit
tracing: Updates for 6.3 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
7. Virtualization
vhost-net: support VIRTIO_F_RING_RESET commit
efi: Support ESRT under Xen commit, commit, commit, commit, commit
xen/hypervisor: Expose Xen SIF flags to userspace commit
virtio: vdpa: new SolidNET DPU driver commit
virtio_ring: per virtqueue DMA device commit, commit, commit, commit, commit
Add throttling detection to sev-guest commit, commit, commit, commit, commit, commit, commit
8. Security
LoadPin: Allow filesystem switch when not enforcing commit, commit, commit, commit
ima: Align ima_file_mmap() parameters with mmap_file LSM hook commit, commit
9. Networking
(FEATURED) Support IPv4 big TCP commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
bpf: Add ipip6 and ip6ip decap support for bpf_skb_adjust_room() commit, commit
bridge: Limit number of MDB entries per port, port-vlan commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
(FEATURED) Netlink protocol specs commit, commit, commit, commit, commit, commit, commit, commit
icmp: Add counters for rate limits commit
IEEE 802.15.4 scan support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
IEEE 802.15.4 passive scan support commit, commit, commit, commit, commit, commit
Add IP_LOCAL_PORT_RANGE socket option. It sets or gets the per-socket default local port range. This option can be used to clamp down the global local port range, defined by the ip_local_port_range proc interface commit
Introduce rps_default_mask sysctl commit, commit, commit, commit
- mptcp
netlink: provide an ability to set default extack message commit
rxrpc: Increasing SACK size and moving away from softirq, part 5 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Introduce new DCB rewrite table commit, commit, commit, commit, commit, commit
devlink: code split and structured instance walk commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
devlink: remove devlink features commit
Use a dedicated kmem_cache for skb head allocs commit, commit, commit, commit
RPCSEC GSS krb5 enhancements commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- sched
Allow offloading of UDP NEW connections via act_ct commit, commit, commit, commit, commit, commit, commit
Add new attr TCA_EXT_WARN_MSG to report tc extact message commit
cls_api: Support hardware miss to tc action commit, commit, commit, commit, commit, commit, commit, commit
mqprio: allow reverse TC:TXQ mappings commit
Retire some tc qdiscs and classifiers commit, commit, commit, commit, commit
Netfilter updates for net-next commit, commit, commit, commit, commit, commit, commit, commit, commit
raw: add drop reasons and use another hash function commit, commit, commit
Add support for per action hw stats commit, commit, commit, commit, commit, commit, commit, commit, commit
seg6: add PSP flavor support for SRv6 End behavior commit, commit, commit
taprio automatic queueMaxSDU and new TXQ selection procedure commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
sysctl: expose all net/core sysctls inside netns commit
- wifi
cfg80211: Authentication offload to user space for MLO connection in STA mode commit
nl80211: Allow authentication frames and set keys on NAN interface commit
nl80211: emit CMD_START_AP on multicast group when an AP is started commit, commit
v4: Puncturing support in AP mode commit, commit, commit, commit
mac80211: Allow NSS change only up to capability commit
Support minimal EHT rate reporting on RX commit
xdp: introduce xdp-feature support commit, commit, commit, commit, commit, commit, commit, commit
ethtool support for IEEE 802.3 MAC Merge layer commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
sched, net: NUMA-aware CPU spreading interface commit, commit, commit
xdp: hints via kfuncs commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
add tx packets aggregation to ethtool and rmnet commit, commit, commit
10. Architectures
10.1. ARM
- Device Tree Sources
Two new 32-bit SoCs are added, both are quad-core Cortex-A7 chips from Rockchips: RV1126 commit, commit, commit, commit, commit, commit, Vision SoC with an NPU used in the Edgeble Neural Compute Module 2(Neu2) board commit, commit, while RK3128 is design for TV boxes and so far only comes with a dts for its refernece design commit, commit, commit
Other 32-bit boards, two ASpeed AST2600 based BMC boards (Ufispace NCPLite platform device tree commit, commit, commit, Facebook Greatlakes platform commit, commit), the Microchip sam9x60_curiosity development board (Armv5 based! commit, commit, commit, commit, commit, commit, commit, commit), the Enclustra PE1 FPGA-SoM baseboard (commit, commit), and a few more boards for i.MX53 and i.MX6ULL (below).
New SoC: Qualcomm SM8550 (Snapdragon 8 Gen 2) for mobile phones commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
New SoC: Qualcomm QDU1000/QRU1000 5G RAN platform commit, commit
New SoC: Rockchips RK3588/RK3588s for tablets, chromebooks and SBCs commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
New SoC: TI J784S4 for industrial and automotive applications commit, commit, commit, commit
Three Amlogic based development boards (Odroid-N2L commit, commit, commit, Radxa Zero2 commit, commit, BPI-M2-PRO commit, commit, commit, commit, commit)
Embedded machines based on NXP i.MX8MM and i.MX8MP (yavia carrier board commit, commit, commit, imx8mp-beacon-kit commit, Debix Model A board devicetree commit, commit, commit)
The Mediatek mt7986a based Banana Pi R3 router commit, commit, commit, commit, commit, commit
Six tablets based on Qualcomm MSM8916 (Snapdragon 410) (msm8916-gplus-fl8005a commit, commit, commit, commit, commit, msm8916-acer-a1-724 commit, commit, commit, commit, msm8916-samsung-j5 commit, commit, commit, commit, commit, SM6115 (Snapdragon 662) (Lenovo Tab P11 J606F/XiaoXin Pad dts commit) and SM8250 (Snapdragon 865) (Xiaomi Mi Pad 5 Pro (xiaomi-elish) commit, commit)
LTE dongles, also based on MSM8916 (msm8916-thwc commit, commit, commit))
Seven mobile phones, based on Qualcomm MSM8953 (Snapdragon 610), SDM450 and SDM632 commit, commit, commit, commit, commit, commit, commit, commit, commit
Three chromebooks based on Qualcomm SC7280 (Snapdragon 7c) commit, commit, commit, commit
Development boards based on Rockchips RK3588, RK3568, RK3566 and RK3328 commit, commit, commit, commit, commit, commit, commit, commit, commit,s commit
Five development machines based on TI K3 (AM642/AM654/AM68/AM69) commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for Samsung Galaxy tab A (2015) tablets commit, commit, commit
qcom: sm8450-hdk: enable HDMI output commit, commit, commit, commit, commit
dts: qcom: Add ADSP, CDSP & MDSS support to SM8550 and MTP board commit, commit, commit
Enable Display for SM8350 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
renesas: Simple-Card / Audio-Graph-Card/Card2 dts for ULCB/KF commit, commit, commit, commit, commit, commit
imx6ull-dhcom: Add DH electronics DHCOM i.MX6ULL SoM support commit, commit, commit, commit
ARM: remove unused davinci board & drivers commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
rockchip: add Hynitron cst340 for Anbernic 353 series commit
cns3xxx: remove entire platform commit
exynos: Add Samsung Galaxy S5 (SM-G900H) board commit
sa1100, mmp: drop unused board files commit, commit, commit, commit, commit, commit, commit, commit, commit
omap1: remove osk-mistral add-on board support commit
pxa: remove all unused boards&drivers commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
s3c: clean out obsolete platforms commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Remove old board files commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Coresight: Add support for TPDM and TPDA commit, commit, commit, commit, commit, commit, commit
crypto: Implement fused AES-CTR/GHASH version of GCM commit
Support Clang UBSAN trap codes for better reporting commit
DCC(Data Capture and Compare) driver support commit, commit, commit, commit, commit, commit, commit
coresight: Add new API to allocate trace source ID values commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
soc: qcom: Introduce PMIC GLINK commit, commit, commit, commit
soc: mediatek: Introduce mediatek-regulator-coupler driver commit
soc: nuvoton: Add SoC info driver for WPCM450 commit
soc: qcom: dcc: Drop driver for now commit
soc: qcom: socinfo: Add Soc IDs for IPQ8064 and variants commit
renesas: Add PWC support for RZ/V2M commit
sunxi: Add Allwinner D1 PPU driver commit
Add first version mt8188 vdosys0 driver commit, commit, commit, commit
Add metrics for neoverse-n2-v2 commit, commit, commit, commit, commit, commit, commit, commit, commit
firmware, arm_scmi: Introduce a unified API for SCMI Server testing commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for UltraSoc System Memory Buffer commit, commit
- ARM64
sme: Support SME 2 and SME 2.1 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Expose compat Armv8 AArch32 features commit, commit, commit, commit, commit, commit, commit, commit
Enable USB host on Jetson AGX Orin commit, commit, commit, commit, commit
ftrace: Add support for DYNAMIC_FTRACE_WITH_CALL_OPS commit, commit, commit, commit, commit, commit, commit, commit
perf: Arm SPEv1.2 support commit, commit, commit, commit, commit, commit, commit, commit, commit
Allow kernel-mode VFP/Neon in softirq context commit
gcm: add RFC4106 support commit
Accelerated GCM for IPSec on ARM/arm64 commit, commit, commit
Permit EFI boot with MMU and caches on commit, commit, commit, commit, commit, commit
10.2. x86
KVM: pmu: Introduce masked events to the pmu event filter commit
KVM: Add support running nested Microsoft Hypervisor commit, commit, commit, commit
kvm: Support AMD Automatic IBRS commit, commit, commit, commit, commit, commit, commit
- platform
Add new systems and features for Nvidia systems commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
dell-ddv: Various driver updates commit, commit, commit, commit, commit, commit
Add TPMI support commit, commit, commit, commit, commit, commit, commit
chrome: cros_ec_typec: VDM support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
gigabyte-wmi: Add support for A320M-S2H V2 commit
gigabyte-wmi: add support for B650 AORUS ELITE AX commit
gigabyte-wmi: add support for X570S AORUS ELITE commit
nvidia-wmi-ec-backlight: Add force module parameter commit
Add Hyper-v extended hypercall support in KVM commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
perf: Add PMU_FORMAT_ATTR_SHOW commit, commit, commit, commit, commit, commit, commit, commit, commit
(FEATURED) resctrl: Support for AMD QoS new features: Slow Memory Bandwidth Allocation (SMBA) and Bandwidth Monitoring Event Configuration (BMEC) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
crypto: implement aria-avx2 commit
crypto: implement aria-avx512 commit
Support extended MCA_ADDR address on SMCA systems commit
perf: Add Meteor Lake support commit
Add model number for Intel Arrow Lake processor commit
tsc: Add option to force frequency recalibration with HW timer commit
perf vendor events intel: Add Emerald Rapids commit
perf vendor events power10: Add JSON metric events to present CPI stall cycles in powerpc commit
powercap: RAPL: Add Power Limit4 support for Meteor Lake SoC commit
powercap: idle_inject: Support 100% idle injection commit
powercap: intel_rapl: add support for Emerald Rapids commit
powercap: intel_rapl: add support for Meteor Lake commit
intel_idle: add Emerald Rapids Xeon support commit
Add support for a new x86 instruction - LKGS - Load kernel GS which is part of the FRED infrastructure commit, commit, commit, commit, commit
10.3. LoongArch
Add kprobes support commit
Add kprobes on ftrace support commit
Add kretprobes support commit
ptrace: Add hardware single step support commit
ptrace: Add function argument access API commit
Add kernel relocation and KASLR support commit, commit, commit, commit, commit
Add single kernel image implementation for kdump commit, commit
Add hardware breakpoints/watchpoints support commit
10.4. RISC-V
allwinner: Add Sipeed Lichee RV devicetrees commit
KVM perf support commit, commit, commit, commit, commit, commit, commit, commit
Allwinner D1/D1s platform support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add infrastructure to allow different str* implementations commit
Add a devicetree for the Aldec PolarFire SoC TySoM commit, commit, commit
Support bpf trampoline for RV64 commit, commit, commit, commit
10.5. PowerPC
RTAS maintenance commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
pSeries dynamic secure boot secvar interface + platform keyring loading commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
pci: Add option for using pci_to_OF_bus_map commit
10.6. S390
tty3270: add support for VT100 graphics escape commit
tty3270: add support for background color commit
tty3270: add support for graphic escape commit
add support to nolibc and rcutorture commit, commit, commit, commit, commit
lib/zlib: Set of s390 DFLTCC related patches for kernel zlib commit, commit, commit, commit
KVM: Extend MEM_OP ioctl by storage key checked cmpxchg commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for RDP (Reset DAT-Protection) commit
cpumf: support user space events for counting commit
Support bpf trampoline for s390x commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
10.7. Alpha
Lazy FPU switching commit
10.8. IA-64
Remove Intel compiler support commit
10.9. M68k
Add kernel seccomp support commit
10.10. MIPS
BCM47XX: Add support for Linksys E2500 V3 commit
10.11. UM
Support LTO commit
11. Drivers
11.1. Graphics
New DRM accel driver for Intel VPU commit, commit, commit, commit, commit, commit, commit
- Intel
Remove the obsolete driver-i810 commit
Remove the obsolete driver-mga commit
Remove the obsolete driver-r128 commit
Remove the obsolete driver-savage commit
Remove the obsolete driver-sis commit
Remove the obsolete driver-tdfx commit
Remove the obsolete driver-via commit
- bridge
- panel
Renesas V4H DSI & DP output support commit, commit, commit, commit, commit, commit, commit
renesas: Add new pixel formats commit, commit, commit, commit, commit, commit, commit
Analog TV Improvements commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- habanalabs
Enable AdaptiveSync in DC interface commit
Enable GPO dynamic control support for SMU13.0.0 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for WINDOW3D profile mode on SMU13.0.0 commit, commit
DC Patches Feb 13, 2023 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
DC Patches Jan 25, 2023 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
DC Patches December 12 2022 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
DSC Electric Boogaloo for sm8[12]50 commit, commit, commit, commit, commit, commit, commit, commit
Add support for SM8550 commit, commit, commit, commit, commit
Add support for SM8450 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add SC8280XP support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add data-lanes and link-frequencies to dp_out endpoint commit, commit, commit, commit
a2xx: support loading legacy (iMX) firmware commit
- etnaviv
- ili9486
- vc4
drm/gud: Use the shadow plane helper commit, commit, commit, commit, commit, commit
simpledrm: Support system memory framebuffers commit, commit, commit, commit, commit, commit, commit
tiny: panel-mipi-dbi: Support separate I/O voltage supply commit, commit, commit
backlight: Remove pxa tosa support commit
backlight: ktz8866: Add support for Kinetic KTZ8866 backlight commit
- fbdev
gpu: host1x: External timeout/cancellation for fences commit
11.2. Power Management
efi/earlycon: Speed up scrolling by disregarding empty space commit
efi: zboot: Use EFI protocol to remap code/data with the right attributes commit
efi: Enable BTI for EFI runtimes services commit, commit, commit
efi: Support ESRT under Xen commit, commit, commit, commit, commit
utils: Add Cezanne to the list for forcing StorageD3Enable commit
ACPI: tables: Add support for NBFT commit
tools/power turbostat: Introduce support for EMR commit
- thermal
intel: Introduce Intel TCC library commit
tsens: Support using nvmem cells for calibration data commit
tsens: Support using nvmem cells for msm8974 calibration commit
imx_sc_thermal: Add iMX8QM sensors commit
intel: intel_pch: Add support for Wellsburg PCH commit
mtk: Add support for MT7986 and MT7981 commit
intel: int340x: Add production mode attribute commit
intel: powerclamp: Use powercap idle-inject feature commit
intel: powerclamp: Add two module parameters commit
rcar_gen3: Add support for R-Car V4H commit
mediatek: Add the Low Voltage Thermal Sensor driver commit
st: Remove syscfg based driver commit
11.3. Storage
ufs: qcom: Add HS-G4 support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
scsi: qla2xxx: Add option to disable FC2 Target support commit
ata: libata: exclude FUA support for known buggy drives commit
ata: pata_parport: add driver (PARIDE replacement) commit
pata: remove samsung_cf driver commit
ata: remove palmld pata driver commit
Enable pcpu bio-cache for IRQ uring-passthru I/O commit, commit
11.4. Drivers in the Staging area
r8188eu: delete driver commit
media: meye: remove this deprecated driver commit
media: stkwebcam: remove deprecated driver commit
media: cpia2: remove deprecated driver commit
media: fsl-viu: remove deprecated driver commit
media: vpfe_capture: remove deprecated davinci drivers commit
media: zr364xx: remove deprecated driver commit
media: tm6000: remove deprecated driver commit
media: atomisp: ov2680: Add exposure and gain controls commit
media: atomisp: ov2680: Drop custom ATOMISP_IOC_S_EXPOSURE support commit
media: remove davinci vpfe_capture driver commit
11.5. Networking
tools: ynl: more docs and basic ethtool specification support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Bluetooth: btintel: Set Per Platform Antenna Gain(PPAG) commit
Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE commit
Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 commit
IB/mlx5: Add support for 400G_8X lane speed commit
RDMA/hns: Support cqe inline in user space commit
bcmgeSupport wake-up from s2idle commit
bnxt_en: Add auxiliary driver support commit
can: ems_pci: Add Asix AX99100 definitions commit
can: rcar_canfd: Add support for R-Car Gen4 commit
dsa: felix: add support for MFD configurations commit
dsa: mv88e6xxx: Enable PTP receive for mv88e6390 commit
dsa: mv88e6xxx: mac-auth/MAB implementation commit
dsa: ocelot: add external ocelot switch control commit
dsa: microchip: add support for credit based shaper commit, commit
Add PLCA RS support and onsemi NCN26000 commit, commit, commit, commit, commit
amd-xgbe: add support for 2.5GbE and rx-adaptation commit, commit
amd-xgbe: Add support for 10 Mbps speed commit
dsa: microchip: add PTP support for KSZ9563/KSZ8563 and LAN937x commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
RDMA/irdma: Add support for dmabuf pin memory regions commit
Add support for the the vsc7512 internal copper phys commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
can: peak_usb: Introduce configurable CAN channel ID commit, commit, commit, commit, commit, commit, commit, commit
Add EEE support for KSZ9477 switch family commit, commit, commit, commit, commit, commit, commit, commit, commit
dsa: microchip: add PTP support for KSZ9563/KSZ8563 and LAN937x commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
e1000e: Enable Link Partner Advertised Support commit
enetc: detect frame preemption hardware capability commit
fealnx: bring back this old driver commit
ethermtk_eth_soc: introduce mtk_hw_warm_reset support commit
- etherti
ice: update xdp_features with xdp multi-buff commit
ice: use GNSS subsystem instead of TTY commit
Intel Wired LAN Driver Updates 2023-01-19 (ice) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Intel Wired LAN Driver Updates 2023-02-14 (ice) commit, commit, commit, commit, commit
ice: add XDP mbuf support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
lan966x: Add VCAP debugFS support commit
lan966x: Add support for TC flower filter statistics commit
libwx: Wangxun interrupt and RxTx support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
ipa: remaining IPA v5.0 support commit, commit, commit, commit, commit, commit, commit, commit
mdio: add amlogic gxl mdio mux support commit
micrel: Add PHC support for lan8841 commit
micrel: Add support for lan8841 PHY commit
micrel: Cable Diagnostics feature for lan8841 PHY commit
microchip: sparx5: Adding Sparx5 IS0 VCAP support commit, commit, commit, commit, commit, commit, commit, commit
microchip: sparx5: Adding Sparx5 ES0 VCAP support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support to offload macsec using netlink update commit, commit
microchip: sparx5: Improve locking in the VCAP API commit, commit, commit, commit, commit
microchip: sparx5: Adding Sparx5 ES2 VCAP support commit, commit, commit, commit, commit, commit, commit
microchip: Add support for two classes of VCAP rules commit, commit, commit, commit, commit, commit, commit, commit
microchip: Add support for PSFP in Sparx5 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
microchip: Introduce new DCB rewrite table commit, commit, commit, commit, commit, commit
microchip: vcap: Add tc flower keys for lan966x commit
mlx5 updates 2023-01-30 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlx5 updates 2023-01-10 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlx5 IPsec RoCEv2 support and netdev events fixes in RDMA commit, commit, commit, commit, commit, commit, commit, commit
mlx5 updates 2023-01-18 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlx5 updates 2023-02-10 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlx5 updates 2023-02-15 commit, commit, commit, commit, commit, commit, commit, commit, commit
mlx5 updates 2023-02-04 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlxsw: Add support of latency TLV commit, commit, commit, commit, commit, commit
mlxbf_gige: add BlueField-3 support commit, commit, commit, commit
add support for per action hw stats commit, commit, commit, commit, commit, commit, commit, commit, commit
- nfp
ngbe: Add ngbe mdio bus driver commit
phy: Add driver for Motorcomm yt8531 gigabit ethernet phy commit
phy: add genphy_c45_ethtool_get/set_eee() support commit
phylink: support validated pause and autoneg in fixed-link commit
usb: qmi_wwan: add Telit 0x1080 composition commit
tsnep: XDP support commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for PSFP in Sparx5 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
sfc: devlink support for ef100 commit, commit, commit, commit, commit, commit, commit, commit
Add eqos and fec support for imx93 commit, commit, commit, commit, commit, commit, commit
ath12k: driver for Qualcomm Wi-Fi 7 devices commit
Wangxun interrupt and RxTx support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
wangxun: Add the basic ethtool interfaces commit
virtio-net: support multi buffer xdp commit, commit, commit, commit, commit, commit, commit, commit, commit
brcmfmac: pcie: Add IDs/properties for BCM4355 commit
brcmfmac: pcie: Add IDs/properties for BCM4377 commit
iwlwifi: updates intended for v6.3 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
ath11k: Add support for IPQ5018 commit, commit, commit, commit, commit, commit, commit
mt76: enable page_pool stats commit
mt76: mt7921: add ack signal support commit
mt76: mt7921: add support to update fw capability with MTFG table commit
mt76: mt7921u: add support for Comfast CF-952AX commit
rtl8xxxu: Support new chip RTL8188EU commit
Add IPQ5018 compatible entry for ath11k commit, commit, commit, commit, commit, commit, commit
iwlwifi: updates intended for v6.3 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mt76: add flexible polling wait-interval support commit, commit
rtw89: add BTC format version to support newer firmware and features commit, commit, commit, commit, commit, commit, commit
rtw89: coex: second patchset to adopt BTC version commit, commit, commit, commit, commit, commit, commit
rtw89: coex: the last patchset to adapt BTC version commit, commit, commit, commit, commit, commit, commit, commit
rtl8xxxu: Register the LED and make it blink commit, commit, commit, commit
mt7996: Add EHT support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
11.6. Audio
fireface: update UAPI for data of knob control commit
fireface: implement message parser for Fireface 400 commit
hda: realtek: Improve support for Dell Precision 3260 commit
hda: cs35l41: Enable Amp High Pass Filter commit
- ASoC
amd: yc: Add a module parameter to influence pdm_gain commit
amd: renoir: Add a module parameter to influence pdm_gain commit
amd: ps: Add a module parameter to influence pdm_gain commit
codecs: Add support for the Infineon PEB2466 codec commit
mediatek: mt8188: support etdm in platform driver commit
fsl_xcvr: Add support for i.MX93 platform commit
SOF: ipc4-pcm: Implement pipeline trigger reference counting commit
The Iron Device SMA1303 is a boosted Class-D audio amplifier commit
SOF: mediatek: Support mt8188 platform commit
rsnd: add R-Car Gen4 Sound support commit
amd: acp: Add new cpu dai's in machine driver commit
amd: acp: Add i2s tdm support in machine driver commit
amd: acp: Enable i2s tdm support for skyrim platforms commit
SOF: ipc4-topology: add buffer type support commit
codecs: tas5720: add support for TAS5720A-Q1 (automotive) variant commit
codecs: Add support for the Renesas IDT821034 codec commit
cs42l42: Add SoundWire support commit
pxa: remove unused board support commit
samsung: remove unused drivers commit
remove unused davinci support commit
remove unused ep93xx files commit
SOF: core/ipc4/mtl: Add support for PCM delay reporting commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for DSP volume controls commit, commit, commit, commit
SOF: ipc4-topology: No need to unbind routes within a pipeline commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
nau8822: add speaker Bridge Tied Output commit, commit, commit
Add tdm support in acp machine driver commit, commit, commit, commit, commit
mediatek: common: add SMC ops and SMC CMD commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
codecs: Add Awinic AW88395 audio amplifier driver commit, commit, commit, commit, commit
SOF: Intel/ipc4: Support for low power playback (d0i3) commit, commit, commit, commit, commit
samsung: fsd: audio support for FSD SoC commit, commit, commit, commit, commit
Add support to compress API to ipc_msg_data / set_stream_data_offset commit, commit, commit, commit
11.7. Tablets, touch screens, keyboards, mouses
cap11xx: add support for cap1203, cap1293 and cap1298 commit
cros_ec_keyb: add 3 buttons for monitor function commit
goodix: add Lenovo Yoga Book X90F to nine_bytes_report DMI table commit
mtk-pmic-keys: add MT6357 support commit
xpad: add 8BitDo Pro 2 Wired Controller support commit
Remove davinci keyboard driver commit
Remove pxa930_rotary keyboard driver commit
Remove pxa930_trkball driver commit
Remove s3c24xx touchscreen driver commit
Remove zylonite touchscreen driver commit
- HID
(FEATURED Introduce eBPF support for HID devices commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add Mapping for System Microphone Mute commit
Add support for Logitech G923 Xbox Edition steering wheel commit
evision: Add preliminary support for EVision keyboards commit
hid-steam: Add Steam Deck support commit
hid-steam: Add rumble on Deck commit
input: map battery system charging commit
logitech-hidpp: Add Signature M650 commit
logitech-hidpp: Add support for Logitech MX Master 3S mouse commit
logitech-hidpp: Hard-code HID++ 1.0 fast scroll support commit
topre: Add support for 87 keys Realforce R2 commit
sony: remove DualShock4 support commit
uclogic: Add support for XP-PEN Deco PRO SW and MW commit, commit, commit, commit, commit, commit
11.8. TV tuners, webcams, video capturers
v4l: routing and streams support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
i2c: Add driver for OmniVision OV8858 commit
i2c: IMX296 camera sensor driver commit
i2c: add imx415 cmos image sensor driver commit
i2c: imx219: Support four-lane operation commit
i2c: ov5675: add .get_selection support commit
imx-pxp: Add media controller support commit
imx-pxp: add support for i.MX7D commit
davinci: remove vpbe support commit
media: i2c: max9286: Small new features commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
i2c: ov5670: OF support, runtime_pm, regulators commit, commit, commit, commit, commit, commit, commit, commit, commit
renesas: Add new pixel formats commit, commit, commit, commit, commit, commit, commit
11.9. Serial
fsl_lpuart: improve RXWATER setting and add imx8ulp support commit, commit, commit, commit, commit, commit
Enhance definition of DFH and use enhancements for UART driver commit, commit, commit, commit
8250_pci1xxxx: Add driver for the pci1xxxx's quad-uart function commit, commit, commit, commit
11.10. Universal Serial Bus
dwc3: pci: add support for the Intel Meteor Lake-M commit
dwc3: pci: add support for the Intel Meteor Lake-S commit
fotg210-udc: Implement VBUS session commit
gadget: Add support for RZ/V2M USB3DRD driver commit
gadget: add WebUSB landing page support commit
gadget: remove s3c24xx drivers commit
gadget: tegra-xudc: Add Tegra234 support commit
gadget: udc: add Renesas RZ/N1 USBF controller support commit
gadget: udc: renesas_usb3: Add role switch support for RZ/V2M commit
host: xhci-plat: Add reset support commit
host: xhci-tegra: Add Tegra234 XHCI support commit
misc: onboard_usb_hub: add Genesys Logic GL852G hub support commit
misc: onboard_usb_hub: add VIA LAB VL817 hub support commit
msunxi: add support for the F1C100s MUSB controller commit
phy: remove phy-isp1301-omap driver commit
Remove ohci-tmio driver commit
serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs commit
serial: option: add Quectel RM500U-CN modem commit
serial: option: add Telit FE990 compositions commit
serial: option: add support for VW/Skoda "Carstick LTE" commit
typec: hd3ss3220: Add polling support commit
typec: ucsi: Register USB Power Delivery Capabilities commit
xhci: host: Add Renesas RZ/V2M SoC support commit
xhci: tegra: USB2 pad power controls commit
Add device-tree support for Cypress CYPD4226 commit, commit, commit, commit, commit
Add XU support to UVC Gadget commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
UVC Gadget: Extend color matching support commit, commit, commit, commit, commit, commit, commit
typec: altmodes/displayport: Add hpd sysfs attribute commit
typec: pd: Remove usb_suspend_supported sysfs from sink PDO commit, commit
11.11. Serial Peripheral Interface (SPI)
intel: Add support for controllers commit
bcm63xx-hsAdd prepend mode support commit
bcmbca-hsAdd driver for newer HSSPI controller commit
spidev: Add Silicon Labs EM3581 device compatible commit
spidev: Add Silicon Labs SI3210 device compatible commit
spi-geni-qcom: Add support for SE DMA mode commit
bcm63xx-hsAdd polling mode support commit
Remove omap 100K driver commit
Remove s3c24xx driver commit
11.12. Watchdog
11.13. CPU Frequency scaling
Implement AMD Pstate EPP Driver commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
loongson1: Delete obsolete driver commit
Remove sa1100 driver commit
Remove s3c24xx drivers commit
11.14. Voltage, current regulators, power capping, power supply
- power
supply: Introduce Qualcomm PMIC GLINK power supply commit
reset: add Odroid Go Ultra poweroff driver commit
supply: bq25890: Add HiZ mode support commit
supply: bq25890: Support boards with more then one charger IC commit
supply: bq25890: Add new linux,iinlim-percentage property commit
supply: bq25890: Add support for having a secondary charger IC commit
reset: syscon-reboot: Add support for specifying priority commit
supply: rt9471: Add Richtek RT9471 charger driver commit
supply: rt9467: Add Richtek RT9467 charger driver commit
Remove s3c adc battery driver commit
Remove tosa_battery driver commit
Remove z2_battery driver commit
Remove pda_power supply driver commit
regulator: Introduce Maxim MAX20411 Step-Down converter commit
11.15. Real Time Clock (RTC)
abx80x: Add nvmem support commit
rv3028: add ACPI support commit
rv3032: add ACPI support commit
bbnsm: Add the bbnsm rtc support commit
pcf85363: add support for the quartz-load-femtofarads property commit
Remove v3020 driver commit
11.16. Pin Controllers (pinctrl)
qcom: add the tlmm driver sa8775p platforms commit
qcom: pinctrl-sm8550-lpass-lpi: add SM8550 LPASS commit
qcom: Introduce IPQ5332 TLMM driver commit
add mt7981 pinctrl driver commit
intel: Add ~4k bias support commit
qcom: Add QDU1000/QRU1000 pinctrl driver commit
qcom: Add SM8550 pinctrl driver commit
qcom: spmi-gpio: add support for pm8550 & pmr735d gpio control commit
qcom: Add support for i2c specific pull feature commit
Remove s3c24xx driver commit
11.17. Multi Media Card (MMC)
sdhci-of-dwcmshc: enable host V4 support for BlueField-3 SoC commit
sdhci-pxav2: add initial support for PXA168 V1 controller commit
jz4740: Add support for vqmmc power supply commit
starfive: Add sdio/emmc driver support commit
Remove tmio_mmc driver commit
Remove s3cmci driver commit
Remove cns3xxx driver commit
11.18. Memory Technology Devices (MTD)
ubi: fastmap: Add fastmap control support for module parameter commit
remove tmio_nand driver commit
spinand: Add support for AllianceMemory AS5F34G04SND commit
nand: ecc-mtk: Add ECC support fot MT7986 IC commit
11.19. Industrial I/O (iio)
accel: st_accel: Add LSM303C commit
adc: add ADC driver for the TI LMP92064 controller commit
adc: add imx93 adc support commit
adc: ti-ads7924: add Texas Instruments ADS7924 driver commit
dac: ad5686: Add support for AD5337 commit
dac: add support for max5522 commit
imu: st_lsm6dsx: add 'mount_matrix' sysfs entry to gyro channel commit
light: vcnl4000: Add interrupt support for vcnl4040 commit
magnetometer: add ti tmag5273 driver commit
magnetometer: st_magn: Add LSM303C commit
11.20. Multi Function Devices (MFD)
fpga: m10bmc-sec: Add support for N6000 commit
intel-m10-bmc: Add PMCI driver commit
ocelot: add external ocelot switch control commit
Remove htc-pasic3 driver commit
Remove toshiba tmio drivers commit
Remove toshiba tmio drivers commit
Remove ucb1400 support commit
11.21. Inter-Integrated Circuit (I2C + I3C)
Add GXP SoC I2C Controller commit
cht-wc: Add charger-chip info for the Lenovo Yoga Tab 3 YT3-X90F commit
designware: add a new bit check for IC_CON control commit
gpio: Add support on ACPI-based system commit
ls2x: Add driver for Loongson-2K/LS7A I2C controller commit
xiic: Add SCL frequency configuration support commit
11.22. Hardware monitoring (hwmon)
aquacomputer_d5next: Add Aquacomputer Aquaero sensors commit, commit, commit, commit, commit, commit
aquacomputer_d5next: Add support for Aquacomputer Aquastream Ultimate commit
aquacomputer_d5next: Add support for Aquacomputer Poweradjust 3 commit
aquacomputer_d5next: Add support for reading calculated Aquaero sensors commit
asus-ec-sensors: add zenith ii extreme alpha commit
ftsteutates: Add support for fanX_fault attributes commit
gxp-fan-ctrl: Add GXP fan controller commit
Add initial NXP MC34VR500 PMIC monitoring support commit
intel-m10-bmc-hwmon: Add N6000 sensors commit
it87: Add new chipset IT87952E commit
ltc2945: Allow setting shunt resistor commit
nct6775: B650/B660/X670 ASUS boards support commit
nzxt-smart2: Add device id commit
oxp-sensors: Add AYANEO AIR and AIR Pro commit
pmbus/max16601: Add support for MAX16600 commit
pmbus/mpq7932: Add a support for mpq7932 Power Management IC commit
pmbus/tda38640: Add driver for Infineon TDA38640 Voltage Regulator commit
remove s3c driver commit
11.23. General Purpose I/O (gpio)
Remove iop driver commit
11.24. Leds
11.25. DMA engines
dw-edma: Add RP/EP local DMA controllers support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
dw-edma: Rename debugfs dentry variables to 'dent' commit
imx-sdma: support hdmi in sdma commit
Add support for AM62A SoC DMAs commit, commit, commit, commit, commit
Remove s3c24xx driver commit
11.26. Hardware Random Number Generator (hwrng)
starfive: Add TRNG driver for StarFive SoC commit
11.27. Cryptography hardware acceleration
aspeed: Add ACRY RSA driver commit
hisilicon - supports device isolation feature commit, commit, commit
stm32/hash: Support Ux500 hash commit
ux500/hash: delete driver commit
11.28. PCI
Add ACS quirk for Wangxun NICs commit
Avoid FLR for SolidRun SNET DPU rev 1 commit
dwc: Add Root Port and Endpoint controller eDMA engine support commit
qcom: Add IPQ8074 Gen3 port support commit
qcom: Add SM8350 support commit
Add i.MX PCIe EP mode support commit, commit, commit, commit, commit, commit, commit, commit
11.29. Thunderbolt
thunderbolt: Add support for DisplayPort bandwidth allocation mode commit, commit, commit, commit, commit, commit, commit, commit
11.30. Clock
imx: add clk-gpr-mux driver commit
mediatek: add MT7981 clock support commit
clk: qcom: Add clocks for the QDU1000 and QRU1000 SoCs commit, commit
clk: qcom: Add support for SM8550 commit, commit, commit, commit, commit
clk: qcom: Add DISPCC driver for SM8550 commit, commit, commit
clk: qcom: msm8996: add support for the CBF clock commit, commit, commit, commit
- qcom: add support for sa8775p-ride
qcom: add the GCC driver for sa8775p commit
qcom: add the driver for the MSM8996 APCS clocks commit
renesas: r8a779g0: Add CAN-FD clocks commit
vc5: Add support for 5P49V60 commit
Remove davinci dm3xx drivers commit
Remove s3c24xx driver commit
samsung: remove s3c24xx specific pll bits commit
11.31. PHY ("physical layer" framework)
Add USB/DP combo PHY config for SM6350 commit, commit, commit
sm8550: Add PCIe HC and PHY support commit, commit, commit, commit, commit, commit, commit, commit
PCI/phy: Add support for PCI on sm8350 platform commit, commit, commit, commit, commit, commit
ufs: qcom: Add HS-G4 support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
phy: qualcomm: Add UFS support for SM8550 commit, commit, commit, commit, commit, commit, commit
Add Qualcomm SM6115 and SM4250 USB3 PHY support commit, commit, commit
phy: qcom: qmp-combo: add SM8350 & SM8450 support for combo USB3/DP PHY commit, commit
qcom-qmp: Add SM6125 UFS PHY support commit
qcom: Add QCOM SNPS eUSB2 repeater driver commit
qcom: phy-qcom-snps-eusb2: Add support for eUSB2 repeater commit
sun4i-usb: add support for the USB PHY on F1C100s SoC commit
tegra: xusb: Add Tegra234 support commit
tegra: xusb: Support USB role default mode commit
ti: j721e-wiz: Add support to enable LN23 Type-C swap commit
11.32. EDAC (Error Detection And Correction)
zynqmp: Add EDAC support for Xilinx ZynqMP OCM commit
i10nm: Add driver decoder for Sapphire Rapids server commit
Intel EDAC driver updates for "near" memory and new CPUs commit, commit, commit, commit, commit
11.33. Various
cxl: Introduce HDM decoder emulation from DVSEC range registers commit, commit, commit, commit, commit, commit, commit
cxl: Process event logs commit, commit, commit, commit, commit, commit, commit, commit
CXL RAM and the 'Soft Reserved' => 'System RAM' default commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
extcon: intel-cht-wc: Add support for Lenovo Yoga Tab 3 Pro YT3-X90F commit
fpga: dfl: add basic support for DFHv1 commit
- interconnect
iommu/vt-d: Support performance monitoring for IOMMU commit, commit, commit, commit, commit, commit, commit
iommu/exynos: Add fault handling on SysMMU v7 commit, commit
iommu: dart: Apple t8110 DART support commit, commit, commit, commit, commit, commit, commit
irqchip: remove davinci aintc driver commit
mailbox: qcom-apcs-ipc: add IPQ5332 APSS clock support commit
misc: pci_endpoint_test: Add i.MX8 PCIe EP device support commit
parport: remove ax88796 driver commit
pcmcia: remove unused pxa/sa1100 drivers commit
remoteproc: k3-c7x: Add support for C7xv DSP on AM62A SoC commit
remoteproc: qcom: Add support for MSM8953 ADSP commit, commit, commit, commit, commit
remoteproc: qcom_q6v5_pas: add support for SM8550 adsp, cdsp & mpss commit, commit, commit, commit, commit, commit
remoteproc: qcom_q6v5_mss: Add MSM8909 and MSM8953 commit, commit, commit, commit, commit, commit, commit
tpm_crb: Add support for CRB devices based on Pluton commit
ifcvf/vDPA implement features provisioning commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
vdpa:/mlx5: Add debugfs subtree commit, commit, commit, commit, commit, commit, commit, commit
features provisioning fixes and mlx5_vdpa support commit, commit, commit, commit, commit
virtio_ring: per virtqueue DMA device commit, commit, commit, commit, commit
Vendor stats support in vdpasim_net commit, commit, commit, commit
vfio/mlx5: Few improvements in the migration area of mlx5 driver commit, commit, commit
vfio: Support VFIO_NOIOMMU with iommufd commit
w1: remove ds1wm driver commit
misc: Add support for TMR Manager and Inject IP commit, commit, commit, commit
12. List of Pull Requests
13. Other news sites
LWN merge window part 1, part 2, development statistics.
Phoronix's feature overview