#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description List of changes and new features merged in the Linux kernel during the 5.14 development cycle Linux 5.14 [[https://lore.kernel.org/lkml/CAHk-=wh75ELUu99yPkPNt+R166CK=-M4eoV+F62tW3TVgB7=4g@mail.gmail.com/|was released]] on Sun, 29 Aug 2021. Summary: This release includes a new system call to create secret memory areas that not even root can access, intended to be used to keep secrets safe; Core Scheduling, to allow safer use of SMT systems with CPU vulnerabilities; a burstable CFS controller via cgroups which allows bursty CPU-bound workloads to borrow a bit against their future quota; two new madvise(2) flags to improve performance in some situations; support for a Ext4 journal checkpoint ioctl that causes the journal blocks to be discarded or zero-filled for purposes of safety; a cgroup interface to kill all processes within that cgroup; initial steps towards signed BPF programs; and support for the next AMD and Intel GPUs chips. As always, there are many other features, new drivers, improvements and fixes. <> = Prominent features = == New memfd_secret(2) system call to create secret memory areas == This release includes a new system call, memfd_secret(2), which allows to create a special memfd file descriptor whose contents will not be readable by any other process, not even root processes or the kernel itself; only the process that creates it can access it. This is intended to be used by programs that need to store some secret safely. Recommended LWN article: [[https://lwn.net/Articles/865256/|memfd_secret() in 5.14]] == Improved AMD and Intel GPU support == This release adds preliminary support for future AMD and Intel graphics hardware, such as AMD Yellow Carp, AMD Beige Goby and Intel Alder Lake P. == CFS burstable bandwith controller == This release introduces the burstable CFS controller via cgroups, which allows bursty CPU-bound workloads to borrow a bit against their future quota to improve overall latencies & batching. Can be tweaked via /sys/fs/cgroup/cpu//cpu.cfs_burst_us. Recommended LWN article: [[https://lwn.net/Articles/844976/|The burstable CFS bandwidth controller]] == Core Scheduling, for safe hyperthreading == Some of the recent CPU vulnerabilities allow to gather information from other processes being run in the same HyperTreading CPU. This release adds support for core scheduling, a feature that allows only trusted tasks to run concurrently on cpus sharing compute resources (like hyperthreads on a core). The goal is to mitigate the core-level side-channel attacks without requiring to disable SMT (which has a significant impact on performance in some situations). Recommended LWN article: [[https://lwn.net/Articles/861251/|Core scheduling lands in 5.14]] == Two new madvise(2) flags: MADV_POPULATE_READ and MADV_POPULATE_READ == The madvise(2) system call lets applications hint the kernel about their behavior so that the kernel can optimize the management of memory resources. In this release, two new flags have been added: MADV_POPULATE_READ, which prefault page tables, just like manually reading each individual page would do, and without breaking any COW mappings; and MADV_POPULATE_WRITE, which can be used to preallocate backend memory and prefault page tables just like manually writing (or reading+writing) each individual page, break any COW mappings in the way. This lets some application (eg. emulators like QEMU) optimize some cases. == EXT4 journal checkpoint == This release includes a new ioctl for Ext4 file systems, {{{EXT4_IOC_CHECKPOINT}}}. When called, the journal ensures all transactions and their associated buffers are submitted to the disk. In-progress transactions are waited upon and included in the checkpoint. The {{{EXT4_IOC_CHECKPOINT_FLAG_DISCARD}}} and {{{EXT4_IOC_CHECKPOINT_FLAG_ZEROOUT}}} ioctl flags cause the journal blocks to be discarded or zero-filled, respectively, after the journal checkpoint is complete. The ioctl may be useful when snapshotting a system or for complying with content deletion SLOs. == cgroup kill interface to kill all processes == This release introduces the {{{cgroup.kill}}} file. It does what it says on the tin and allows a caller to kill a cgroup by writing "1" into cgroup.kill. The file is available in non-root cgroups. == Initial steps towards BPF signed programs == This release includes the first steps towards signed bpf programs. It uses new type of bpf program that is in charge of loading other BPF programs. Recommended LWN article: [[https://lwn.net/Articles/853489/|Toward signed BPF programs]] = Core (various) = * Task scheduler * (FEATURED) Add support for core scheduling, a feature that allows only trusted tasks to run concurrently on cpus sharing compute resources (eg: hyperthreads on a core). The goal is to mitigate the core-level side-channel attacks without requiring to disable SMT (which has a significant impact on performance in some situations) [[https://git.kernel.org/linus/5cb9eaa3d274f75539077a28cf01e3563195fa53|commit]], [[https://git.kernel.org/linus/d66f1b06b5b438cd20ba3664b8eef1f9c79e84bf|commit]], [[https://git.kernel.org/linus/9edeaea1bc452372718837ed2ba775811baf1ba1|commit]], [[https://git.kernel.org/linus/9ef7e7e33bcdb57be1afb28884053c28b5f05240|commit]], [[https://git.kernel.org/linus/875feb41fd20f6bd6054c9e79a5bcd9da6d8d2b2|commit]], [[https://git.kernel.org/linus/21f56ffe4482e501b9e83737612493eeaac21f5a|commit]], [[https://git.kernel.org/linus/8a311c740b53324ec584e0e3bb7077d56b123c28|commit]], [[https://git.kernel.org/linus/539f65125d20aacab54d02d77f10a839f45b09dc|commit]], [[https://git.kernel.org/linus/8039e96fcc1de30d5bcaf05da9ca2de46a800826|commit]], [[https://git.kernel.org/linus/7afbba119f0da09824d723f8081608ea1f74ff57|commit]], [[https://git.kernel.org/linus/c6047c2e3af68dae23ad884249e0d42ff28d2d1b|commit]], [[https://git.kernel.org/linus/d2dfa17bc7de67e99685c4d6557837bf801a102c|commit]], [[https://git.kernel.org/linus/97886d9dcd86820bdbc1fa73b455982809cbc8c2|commit]], [[https://git.kernel.org/linus/6e33cad0af49336952e5541464bd02f5b5fd433e|commit]], [[https://git.kernel.org/linus/85dd3f61203c5cfa72b308ff327b5fbf3fc1ce5e|commit]], [[https://git.kernel.org/linus/7ac592aa35a684ff1858fb9ec282886b9e3575ac|commit]], [[https://git.kernel.org/linus/7b419f47facd286c6723daca6ad69ec355473f78|commit]], [[https://git.kernel.org/linus/0159bb020ca9a43b17aa9149f1199643c1d49426|commit]], [[https://git.kernel.org/linus/0159bb020ca9a43b17aa9149f1199643c1d49426|commit]] * (FEATURED) Introduce the burstable CFS controller via cgroups, which allows bursty CPU-bound workloads to borrow a bit against their future quota to improve overall latencies & batching. Can be tweaked via /sys/fs/cgroup/cpu//cpu.cfs_burst_us [[https://git.kernel.org/linus/f4183717b370ad28dd0c0d74760142b20e6e7931|commit]] * "Age" (decay) average idle time, to better track & improve workloads such as 'tbench' [[https://git.kernel.org/linus/94aafc3ee31dc199d1078ffac9edd976b7f47b3d|commit]] * Rework CPU capacity asymmetry detection [[https://git.kernel.org/linus/2309a05d2abe713f7debc951640b010370c8befb|commit]], [[https://git.kernel.org/linus/c744dc4ab58d1c09624ca3397cf15b142a0e0cb7|commit]], [[https://git.kernel.org/linus/adf3c31e18b765ea24eba7b0c1efc076b8ee3d55|commit]] * Add allowed CPU capacity knowledge to the Energy Aware Scheduler [[https://git.kernel.org/linus/489f16459e0008c7a5c4c5af34bd80898aa82c2d|commit]], [[https://git.kernel.org/linus/8f1b971b4750e83e8fbd2f91a9efd4a38ad0ae51|commit]] * delayacct: Default disabled [[https://git.kernel.org/linus/e4042ad492357fa995921376462b04a025dd53b6|commit]] * mount: Support "nosymfollow" in new mount api [[https://git.kernel.org/linus/dd8b477f9a3d8edb136207acb3652e1a34a661b7|commit]], [[https://git.kernel.org/linus/5990b5d770cbfe2b4254d870240e9863aca421e3|commit]] * procfs: allow reading /proc//fdinfo/ with {{{PTRACE_MODE_READ}}} [[https://git.kernel.org/linus/3845f256a8b527127bfbd4ced21e93d9e89aa6d7|commit]], [[https://git.kernel.org/linus/7bc3fa0172a423afb34e6df7a3998e5f23b1a94a|commit]] * io_uring * Add {{{IORING_REGISTER_IOWQ_AFF}}} that allows an application to specificy CPU affinities for any IO threads that may get created to service request, and an {{{IORING_UNREGISTER_IOWQ_AFF}}} that simply resets the masks back to the default of per-node [[https://git.kernel.org/linus/0e03496d1967abf1ebb151a24318c07d07f41f7f|commit]], [[https://git.kernel.org/linus/fe76421d1da1dcdb3a2cd8428ac40106bff28bc0|commit]] * Reduce latency by reissueing the operation [[https://git.kernel.org/linus/59b735aeeb0f23a760bc21f1c5a1ab6c79e9fe0e|commit]] * cgroup * (FEATURED) Introduce {{{cgroup.kill}}}. It allows a caller to kill a cgroup by writing "1" into it. The file is available in non-root cgroups [[https://git.kernel.org/linus/661ee6280931548f7b3b887ad26a157474ae5ac4|commit]], [[https://git.kernel.org/linus/340272b04036f2b833a7094eca5c15e5ed8e184c|commit]], [[https://git.kernel.org/linus/0de3103fa2cf9ed07cfde3e4fd578ead5de52047|commit]], [[https://git.kernel.org/linus/8075e4f6c9904189ea04a853b5480451ec74e67d|commit]], [[https://git.kernel.org/linus/85e3b86ed0b7e366b6e50da1ff2511c8758616c7|commit]] * Make per-cgroup pressure stall tracking configurable to avoid overhead for configurations which don't care about PSI [[https://git.kernel.org/linus/3958e2d0c34e18c41b60dc01832bd670a59ef70f|commit]] * seccomp: Add "atomic addfd + send reply" mode to SECCOMP_USER_NOTIF to better handle EINTR races visible to seccomp monitors [[https://git.kernel.org/linus/0ae71c7720e3ae3aabd2e8a072d27f7bd173d25c|commit]], [[https://git.kernel.org/linus/e540ad97e73cefb41e93d0c06d0fe6a8620a77e0|commit]], [[https://git.kernel.org/linus/93e720d710dfe689099c23bb91414303cf715d27|commit]], [[https://git.kernel.org/linus/62ddb91b7771626658c382c2b849a058f1586123|commit]], [[https://git.kernel.org/linus/9a03abc16c77062c73972df08206f1031862d9b4|commit]] * Build: Add build ID to stacktraces [[https://git.kernel.org/linus/a010d79b6683b6b1e66be2ea7204944f1323661c|commit]], [[https://git.kernel.org/linus/7eaf3cf3b7c5a49b3ca60e1ceb3d1d7430cc9d0e|commit]], [[https://git.kernel.org/linus/83cc6fa0049d7c5333a53f4d959a9457340284ea|commit]], [[https://git.kernel.org/linus/22f4e66df79d0a730fcd6c17f3403b5ab8c72ced|commit]], [[https://git.kernel.org/linus/9294523e3768030ae8afb84110bcecc66425a647|commit]], [[https://git.kernel.org/linus/f61b8706075a1d04ed27cec369e35cf128c728c3|commit]], [[https://git.kernel.org/linus/9ef8af2a8f25b16eec6d2865ca7d9116a24ad46a|commit]], [[https://git.kernel.org/linus/26681eb3724b617c4894cfb53cad2e3740323bc2|commit]], [[https://git.kernel.org/linus/5bf0f3bc377e5f87bfd61ccc9c1efb3c6261f2c3|commit]], [[https://git.kernel.org/linus/d5ce757d8f1bdf9def7d2f71862b48ed83d5ed12|commit]], [[https://git.kernel.org/linus/60eec32637161ca4455dfab6080215abe6b86a2a|commit]], [[https://git.kernel.org/linus/3f14d029f98f0d4f369d64458084cf31e66f820f|commit]], [[https://git.kernel.org/linus/44e8a5e9120bf4fc1ab046b648b0598e6652c36e|commit]] * futex: Provide FUTEX_LOCK_PI2, which is a variant that doesn't set FLAGS_CLOCKRT (i.e. uses CLOCK_MONOTONIC) [[https://git.kernel.org/linus/e112c41341c03d9224a9fc522bdb3539bc849b56|commit]], [[https://git.kernel.org/linus/bf22a6976897977b0a3f1aeba6823c959fc4fdae|commit]] * kcsan: Add support for reporting observed value changes [[https://git.kernel.org/linus/6f2d98192c3f204592434177ba240564346eed9f|commit]], [[https://git.kernel.org/linus/793c2579beefa95894fc0afbbdc1a80a4e3bf306|commit]], [[https://git.kernel.org/linus/95f7524d7f0c6fddbc24fb623d61b7d508626f41|commit]], [[https://git.kernel.org/linus/97aa6139e1b506795ab19941b1c3851042199788|commit]], [[https://git.kernel.org/linus/39b2e763f2defe326e960daefb7fe6acbb2a95b1|commit]], [[https://git.kernel.org/linus/19dfdc05ffed960024e175db21c8e11ef96daeee|commit]], [[https://git.kernel.org/linus/609f809746458522a7a96132acf0ca7ee67c424c|commit]], [[https://git.kernel.org/linus/7bbe6dc0ade7e394ee1568dc9979fd0e3e155435|commit]], [[https://git.kernel.org/linus/b930226f3db870cfb683c2744aeb0d29deb4cddc|commit]] * locking/atomic: convert all architectures to ARCH_ATOMIC [[https://git.kernel.org/linus/9be85de97786a75f62080de1c0c13656f65cba84|commit]], [[https://git.kernel.org/linus/201e2c1bbe659720913ed5272a2c44e6ab646c8a|commit]], [[https://git.kernel.org/linus/c7178cdecdbef8321f418fac55f3afaca3bb4c96|commit]], [[https://git.kernel.org/linus/b68622a86c8f30423c0a09204b1db2b74a06b5f0|commit]], [[https://git.kernel.org/linus/f0c7bf1b77c65c9a273207d228df27009f09ec0b|commit]], [[https://git.kernel.org/linus/2609a195fbd58f77d281c013f10b8dbaffca1637|commit]], [[https://git.kernel.org/linus/89eb78d542394a8461164009272ea654357795ad|commit]], [[https://git.kernel.org/linus/d0e03218ca3be48c6f7109e4810d58e7b7dd4135|commit]], [[https://git.kernel.org/linus/f8b6455a9d381fc513efbec0be0c312b96e6eb6b|commit]], [[https://git.kernel.org/linus/1bdadf46eff6804ace5fa46b6856da4799f12b5c|commit]], [[https://git.kernel.org/linus/6988631bdfddcedc1d27f83723ea36a442f00ea1|commit]], [[https://git.kernel.org/linus/82b993e8249ae3cb29c1b6eb8f6548f5748508b7|commit]], [[https://git.kernel.org/linus/96d330aff7060f0882a5440ddb281cc3ab232d96|commit]], [[https://git.kernel.org/linus/6db5d99304dce6d3b9b1251b788f0ff6aaf1c054|commit]], [[https://git.kernel.org/linus/fc63a6e08a8c97a3dc3a6f2e1946b949b9a6c2d3|commit]], [[https://git.kernel.org/linus/a5fb82d7e2695e667badeac202fb7d113a8ae9a9|commit]], [[https://git.kernel.org/linus/c879c39ebc3a9bea280675840d623a40b4636c80|commit]], [[https://git.kernel.org/linus/94b63eb6e131a7fe94f1c1eb8e10162931506176|commit]], [[https://git.kernel.org/linus/f84f1b9c47a55eb8db4ba5270a504f78c316ce1d|commit]], [[https://git.kernel.org/linus/e86e793c28e76ab5a0288c468713ab513b79fdd0|commit]], [[https://git.kernel.org/linus/f5b1c0f951e7b0d5634b82d57971cae25a0ba435|commit]], [[https://git.kernel.org/linus/c7b5fd6faa1dc6cdc721a978d9d122cd31bbd7b1|commit]], [[https://git.kernel.org/linus/0cc70f54ee4394b49608f0aaee50c2b4109c3be6|commit]], [[https://git.kernel.org/linus/7e517b4c11200be3b0a941b33b26798a5e808dbc|commit]], [[https://git.kernel.org/linus/3f1e931d158124bbdd5c25300333096bfff805db|commit]], [[https://git.kernel.org/linus/329c161b8baeff5fff69fe37d3ebb4bcffef91fa|commit]], [[https://git.kernel.org/linus/9eaa82935dccb74a22e3da5045bed1dac59ad2b0|commit]], [[https://git.kernel.org/linus/9efbb355831014ca004d241db8ede182c019b9bf|commit]], [[https://git.kernel.org/linus/8c6417551309fe3654b5f761214303aef361d3e8|commit]], [[https://git.kernel.org/linus/ff5b4f1ed580c59d1f26ddddc6b2622347571cec|commit]], [[https://git.kernel.org/linus/b9b12978a8e9a4bb77746e74eae37e587f7f8994|commit]], [[https://git.kernel.org/linus/3c1885187bc1faa0a1c52f7bd34550740a208169|commit]], [[https://git.kernel.org/linus/bccf1ec369ac126b0997d01a6e1deae00e2cf6b3|commit]] * kunit * Add support for QEMU [[https://git.kernel.org/linus/b6d5799b0b5866dc63be7f032473dc536f865b4d|commit]], [[https://git.kernel.org/linus/12ca7a893d543a64130d15c765fc18497b2ea65f|commit]], [[https://git.kernel.org/linus/87c9c16317882dd6dbbc07e349bc3223e14f3244|commit]] * Support skipped tests [[https://git.kernel.org/linus/6d2426b2f258da19fbe5fa1c93a5695460390eac|commit]], [[https://git.kernel.org/linus/5acaf6031f5349244e1fcfd74eb7b6212154fab3|commit]], [[https://git.kernel.org/linus/d99ea675141934a1ea5cd1b2adff34eafcb779bc|commit]], [[https://git.kernel.org/linus/40eb5cf4cc913dbb615eb97d05f2353f0404a464|commit]] * Remove the raw driver (obsoleted by Direct-IO) [[https://git.kernel.org/linus/603e4922f1c81fc2ed3a87b4f91a8d3aafc7e093|commit]] * Add new quotactl_fd() syscall [[https://git.kernel.org/linus/64c2c2c62f92339b176ea24403d8db16db36f9e6|commit]], [[https://git.kernel.org/linus/65ffb3d69ed3da28af85b1e4b2aaacd6c13ba28b|commit]] * jump_labels: variable sized jump_labels [[https://git.kernel.org/linus/25cf0d8aa2a3440ed32bf1f8df1310d6baf3f1e8|commit]], [[https://git.kernel.org/linus/80870e6ece78ce67b91398db88fb6b92a178f574|commit]], [[https://git.kernel.org/linus/8bfafcdccb52e770695b12530b1f800fe98b16b1|commit]], [[https://git.kernel.org/linus/e1aa35c4c4bc71e44dabc9d7d167b807edd7b439|commit]], [[https://git.kernel.org/linus/f9510fa9caaf8229381d5f86ba0774bf1a6ca39b|commit]], [[https://git.kernel.org/linus/fa5e5dc39669b4427830c546ede8709323b8276c|commit]], [[https://git.kernel.org/linus/001951bea748d3f675e1778f42b17290a8c551bf|commit]], [[https://git.kernel.org/linus/5af0ea293d78c8b8f0b87ae2b13f7ac584057bc3|commit]], [[https://git.kernel.org/linus/e7bf1ba97afdde75b0ef43e4bdb718bf843613f1|commit]], [[https://git.kernel.org/linus/cbf82a3dc241aea82b941a872ed5c52f6af527ea|commit]], [[https://git.kernel.org/linus/6d37b83c5d79ef5996cc49c3e3ac3d8ecd8c7050|commit]], [[https://git.kernel.org/linus/e2d9494beff21a26438eb611c260b8a6c2dc4dbf|commit]], [[https://git.kernel.org/linus/ab3257042c26d0cd44793c741e2f89bf38b21fe8|commit]] * bootconfig: Add mixed subkeys and value under the same key [[https://git.kernel.org/linus/ca24306d83a125df187ad53eddb038fe0cffb8ca|commit]], [[https://git.kernel.org/linus/e5efaeb8a8f527d6e91289ff1f67fbcae452b2ca|commit]], [[https://git.kernel.org/linus/29e1c1ad3ff7f345d80c7b81b08175f5a8c84122|commit]], [[https://git.kernel.org/linus/0ff2bb7d42c36ee60bbf3e60993666a8e0c06a24|commit]], [[https://git.kernel.org/linus/99f4f5d62338cab9dcf45735344541574daedd20|commit]] * tick/broadcast: Infrastructure to support per CPU "broadcast" devices for per CPU clockevent devices which stop in deep idle states. This allows us to utilize the more efficient architected timer on certain ARM SoCs for normal operation instead of permanentely using the slow to access SoC specific clockevent device [[https://git.kernel.org/linus/c2d4fee3f6d170dee5ee7c337a0ba5e92fad7a64|commit]], [[https://git.kernel.org/linus/e5007c288e7981e0b0cf8ea3dea443f0b8c34345|commit]], [[https://git.kernel.org/linus/c94a8537df12708cc03da9120c3c3561ae744ce1|commit]], [[https://git.kernel.org/linus/ea5c7f1b9aa1a7c9d1bb9440084ac1256789fadb|commit]], [[https://git.kernel.org/linus/245a057fee18be08d6ac12357463579d06bea077|commit]] * bitmap_parse: Support 'all' semantics [[https://git.kernel.org/linus/b18def121f077857ccf92fc620366e19850bc297|commit]], [[https://git.kernel.org/linus/a6814a79f2ca09a5e15e69324213dad29a5844ad|commit]] * binfmt: remove support for em86 (alpha only) [[https://git.kernel.org/linus/6208721f1399912a0a53c77ed86dcc25d3e20efb|commit]] = File systems = * BTRFS * scrub: add sysfs knob to limit scrub IO bandwidth per device [[https://git.kernel.org/linus/eb3b50536642b6e1ba67e84dcacdd9ccef30d850|commit]] * Support cancellable resize and device delete ioctls [[https://git.kernel.org/linus/0d7ed32c1eebfa34e28d24930ea598a4492d289e|commit]], [[https://git.kernel.org/linus/907d2710d727541fffabdc52a025916d5109b3e5|commit]], [[https://git.kernel.org/linus/578bda9e17fdb6b6eaab1980f87dd1819b123da0|commit]], [[https://git.kernel.org/linus/17aaa434ed39cbad48824ef4bb9ec3707091ae5b|commit]], [[https://git.kernel.org/linus/bb059a37c9ff3e40c0348e82a7e3ebd3918cf418|commit]], [[https://git.kernel.org/linus/67ae34b69c4146e40f3828ecb59ff00a840c01dc|commit]] * Avoid unnecessary logging of xattrs during fast fsyncs (+17% throughput, -17% runtime on xattr stress workload) [[https://git.kernel.org/linus/b590b839720cf4fa46798ee6e950ed7369f52a15|commit]] * Don't set the full sync flag when truncation does not touch extents (speeds up SQL workload) [[https://git.kernel.org/linus/0d7d316597c00fbc13fffadaab27a448d5a6a60f|commit]] * Preemptive flushing improvements: adjust clamping logic on multi-threaded workloads to avoid flushing too soon; take into account global block reserve, may help on almost full filesystems; and continue flushing when there are enough pending delalloc and ordered bytes) [[https://git.kernel.org/linus/ed738ba7f96170384f3e94a38be5536560eabc00|commit]], [[https://git.kernel.org/linus/0aae4ca9e952b83f71ce50af1290f0f5d9ab9df6|commit]], [[https://git.kernel.org/linus/610a6ef44ea83ef1c1e10b8270bbd157fbde3181|commit]], [[https://git.kernel.org/linus/1239e2da16bf85e13063de7d2e9638219efca984|commit]], [[https://git.kernel.org/linus/30acce4eb032251be4767ee393a7e6e9748259d6|commit]], [[https://git.kernel.org/linus/3e101569973e8c95ba60b5501f8a3caf7754894c|commit]], [[https://git.kernel.org/linus/385f421f18be653d21ccfd6520fbddf206ad43eb|commit]] * Make read time repair to be only submitted for each corrupted sector [[https://git.kernel.org/linus/08508fea07cdf6f62e61bae85d3af55433a16f98|commit]], [[https://git.kernel.org/linus/150e4b0597a7988f44d13e5199f08749c8ff432d|commit]], [[https://git.kernel.org/linus/1245835d24f1ea989a0cbcdf93ddea3dcbc3814f|commit]] * Eliminate a deadlock when allocating system chunks and rework chunk allocation [[https://git.kernel.org/linus/1cb3db1cf383a3c7dbda1aa0ce748b0958759947|commit]], [[https://git.kernel.org/linus/79bd37120b149532af5b21953643ed74af69654f|commit]] * Add data write support for subpage [[https://git.kernel.org/linus/98af9ab12b49a5ae338b523e64b5a7dd637781d4|commit]], [[https://git.kernel.org/linus/ed8f13bf4a2ccb6c90d3210421455c2ceae678de|commit]], [[https://git.kernel.org/linus/60e2d25500aa74388bd0a30a39bb84249f2c75d5|commit]], [[https://git.kernel.org/linus/321a02db327a82aeaf9a114518705293cb8c2b31|commit]], [[https://git.kernel.org/linus/f02a85d2d551f1a34ac3a02b59d419767c97556b|commit]], [[https://git.kernel.org/linus/e38992be1f6cf3ed88169347b7d92cec40cc44d3|commit]], [[https://git.kernel.org/linus/9047e3170a06f60a96a1d4a2f7762000657c7bbb|commit]], [[https://git.kernel.org/linus/1e1de38792e0ae28ac4a07628f20e42536c9202b|commit]], [[https://git.kernel.org/linus/6f17400bd92e82ad549ea5374ffc71e35e2e4ee5|commit]], [[https://git.kernel.org/linus/b945a4637ec72a8ed0e526580a136d24f11abde1|commit]], [[https://git.kernel.org/linus/a33a8e9afcab270bfd8081ded8efb8c1e9eac7f3|commit]], [[https://git.kernel.org/linus/4750af3bbe5d975951b09afc61f18c7b29db7d44|commit]], [[https://git.kernel.org/linus/d2a9106448abad5646591795c8962ac043db4f89|commit]], [[https://git.kernel.org/linus/c5ef5c6c733a087fc3f8b298010d7e6911bff1e3|commit]], [[https://git.kernel.org/linus/6c9ac8be458152a6316cf28fcd52c7f38f7ec8ec|commit]], [[https://git.kernel.org/linus/2d8ec40ee46d211fa8396678210faf19e013b093|commit]], [[https://git.kernel.org/linus/3115deb381e9242527017700cc7a946799d3af25|commit]], [[https://git.kernel.org/linus/0528476b6ac7832f31e2ed740a57ae31316b124e|commit]], [[https://git.kernel.org/linus/bcd77455d590eaa0422a5e84ae852007cfce574a|commit]], [[https://git.kernel.org/linus/e65f152e43484807b4caf7300e70d882e4652566|commit]] * Commit the transaction unconditionally for enospc [[https://git.kernel.org/linus/c416a30cddec0840520e9ffb170aea6c6b6c64af|commit]], [[https://git.kernel.org/linus/048085539243bfd43839fe3dc6cbc02b0c620fdc|commit]], [[https://git.kernel.org/linus/3ffad6961db6c44b324e4ee5a8025e5f63c657d7|commit]], [[https://git.kernel.org/linus/138a12d865749e28b39300b8a07337811253939b|commit]] * Device stats are also available in /sys/fs/btrfs/FSID/devinfo/DEVID/error_stats [[https://git.kernel.org/linus/da658b5708c68b03b395b7c5c50bae47826db8cc|commit]] * XFS * Consolidated log and optimisation changes [[https://git.kernel.org/linus/a6a65fef5ef8d0a6a0ce514eb66b2f3dfa777b48|commit]], [[https://git.kernel.org/linus/18842e0a4f48564bbed541947abd8131fd0e9734|commit]], [[https://git.kernel.org/linus/a79b28c284fd910bb291dbf307a26f4d432e88f3|commit]], [[https://git.kernel.org/linus/b5071ada510a76eac0d02912bf66297b9e30ca59|commit]], [[https://git.kernel.org/linus/0431d926b399d74f1cde2c355d48289c6d7fa882|commit]], [[https://git.kernel.org/linus/bad77c375e8de6c776c848e443f7dc2d0d909be5|commit]], [[https://git.kernel.org/linus/3468bb1ca6e8840789e13c7b9d8b0c556b4fbe79|commit]], [[https://git.kernel.org/linus/eef983ffeae7a1cdde8c3338155ae2dd74b8621b|commit]], [[https://git.kernel.org/linus/19f4e7cc819771812a7f527d7897c2deffbf7a00|commit]], [[https://git.kernel.org/linus/5f9b4b0de8dc2fb8eb655463b438001c111570fe|commit]] * Delay Ready Attributes [[https://git.kernel.org/linus/4126c06e25b38842a254b2de6ffc3019a7b2f0ca|commit]], [[https://git.kernel.org/linus/a8490f699f6ec88843879b92cbb21953dab379ee|commit]], [[https://git.kernel.org/linus/6286514b63e12d7bedc67e46aa1aeff9ed8378ce|commit]], [[https://git.kernel.org/linus/f0f7c502c728d0c6947219739631bad101f8737b|commit]], [[https://git.kernel.org/linus/6ca5a4a1f52952790a40099b79b5631d91163ba4|commit]], [[https://git.kernel.org/linus/5d954cc09f6baed80458ea02ec092031608ea3fe|commit]], [[https://git.kernel.org/linus/83c6e70789ff371c4eebc54f2c8d979305a1bae8|commit]], [[https://git.kernel.org/linus/3f562d092bb1edd39bfc0e6808d7108d47f8aa3a|commit]], [[https://git.kernel.org/linus/2b74b03c13c444cb5af56804cc975534e2058d06|commit]], [[https://git.kernel.org/linus/8f502a4009822a6972772ae65b34078645b3ba16|commit]] * EXT4 * (FEATURED) Add the ioctl EXT4_IOC_CHECKPOINT which allows the journal to be checkpointed, truncated and discarded or zero'ed [[https://git.kernel.org/linus/01d5d96542fd4e383da79593f8a3450995ce2257|commit]], [[https://git.kernel.org/linus/351a0a3fbc3584a00036f05cfdb0cd3eb1dca92a|commit]], [[https://git.kernel.org/linus/fd7b23be92059f14537cb9cac0f0894c3a9b1284|commit]] * Allow applications to poll on changes to /sys/fs/ext4/*/errors_count [[https://git.kernel.org/linus/d578b99443fde0968246cc7cbf3bc3016123c2f4|commit]] * F2FS * Support RO feature [[https://git.kernel.org/linus/a7d9fe3c33887085a2e10c085d378126314dc222|commit]] * Show casefolding support only when supported [[https://git.kernel.org/linus/39307f8ee3539478c28e71b4909b5b028cce14b1|commit]] * Advertise encrypted casefolding in sysfs [[https://git.kernel.org/linus/4c039d5452691fe80260e4c3dd7b629a095bd0a7|commit]] * Add {{{compress_inode}}} mount option. It supports using address space of a filesystem managed inode to cache compressed block, in order to improve cache hit ratio of random read [[https://git.kernel.org/linus/6ce19aff0b8cd386860855185c6cd79337fc4d2b|commit]] * Support migrating swapfile in aligned write mode [[https://git.kernel.org/linus/859fca6b706e005f7cf19aa2ce7bb4005bcef427|commit]] * Add nocompress extensions support [[https://git.kernel.org/linus/151b1982be5d9f4ca641687ee1a4bb4fba5d26cf|commit]] * CIFS * SMB3.1.1: Add support for negotiating signing algorithm [[https://git.kernel.org/linus/53d31a3ffd60176af24f2f77fb3a7e567134eb90|commit]] * Support share failover when remounting [[https://git.kernel.org/linus/b62366181a5e9473e9c10e98f400049491c55876|commit]] * Enable extended stats by default [[https://git.kernel.org/linus/0d52df81e07739db25afe72e10dcc623b271d905|commit]] * DLM * Make dlm reliable when re-connection occurs [[https://git.kernel.org/linus/6fb5cf9d4206f2cdccb05be1bf2307dab4e5babe|commit]], [[https://git.kernel.org/linus/a070a91cf1402b5328d3517d1fccbdeec58d3f2d|commit]], [[https://git.kernel.org/linus/8f2dc78dbc2010b497bb58e0460cb44c678a3c5b|commit]], [[https://git.kernel.org/linus/2874d1a68c4ec5623a05c8118f5dbaefb30b37ff|commit]], [[https://git.kernel.org/linus/37a247da517f4315eed21585be8aa516e0b9cec9|commit]], [[https://git.kernel.org/linus/8e2e40860c7f67c0b19b13d92cfea03a19232ce2|commit]], [[https://git.kernel.org/linus/489d8e559c6596eb08e16447d9830bc39afbe54e|commit]], [[https://git.kernel.org/linus/5b2f981fde8b0dbf0bfa117bb4322342fcfb7174|commit]], [[https://git.kernel.org/linus/706474fbc5fedd7799b488962aad3541b235165b|commit]] * FUSE * Allow fallocate(FALLOC_FL_ZERO_RANGE) [[https://git.kernel.org/linus/6b1bdb56b17c25f640261f3b18030cb0a21d7878|commit]] * Some fixes for submounts [[https://git.kernel.org/linus/d92d88f0568e97c437eeb79d9c9609bd8277406f|commit]], [[https://git.kernel.org/linus/e3a43f2a95393000778f8f302d48795add2fc4a8|commit]], [[https://git.kernel.org/linus/e4a9ccdd1c03b3dc58214874399d24331ea0a3ab|commit]], [[https://git.kernel.org/linus/b89ecd60d38ec042d63bdb376c722a16f92bcb88|commit]], [[https://git.kernel.org/linus/80ef08670d4c28a06a3de954bd350368780bcfef|commit]], [[https://git.kernel.org/linus/49221cf86d18bb66fe95d3338cb33bd4b9880ca5|commit]], [[https://git.kernel.org/linus/2d82ab251ef0f6e7716279b04e9b5a01a86ca530|commit]], [[https://git.kernel.org/linus/fe0a7bd81bfefe5eb73bce55682586c6c266e21e|commit]], [[https://git.kernel.org/linus/266eb3f2fae488fd19ee5acfc01ba9d483715699|commit]], [[https://git.kernel.org/linus/29e0e4df9d2bd1f7dd3c7293bf49e08a9d27e811|commit]], [[https://git.kernel.org/linus/1b539917374d26fb64395eeb5d4baebd7ad38f61|commit]] * NFS * Add support for application leases [[https://git.kernel.org/linus/be20037725d17935ec669044bd2b15bc40c3b5ab|commit]], [[https://git.kernel.org/linus/6b4befc0a06bc412f5b5a17fdad473aaed943170|commit]], [[https://git.kernel.org/linus/e93a5e9306a576011f03011b492d4fbaa274477b|commit]], [[https://git.kernel.org/linus/e97bc66377bca097e1f3349ca18ca17f202ff659|commit]] * ORANGEFS * Readahead adjustment [[https://git.kernel.org/linus/24523e45b44f9fff9662cd5d1423d5c2291ef131|commit]] * PSTORE * Mark pstore-blk as broken [[https://git.kernel.org/linus/d07f3b081ee632268786601f55e1334d1f68b997|commit]] * VBOXSF * vboxsf: Add support for the atomic_open directory-inode op [[https://git.kernel.org/linus/cc3ddee97cff034cea4d095de4a484c92a219bf5|commit]], [[https://git.kernel.org/linus/ab0c29687bc7a890d1a86ac376b0b0fd78b2d9b6|commit]], [[https://git.kernel.org/linus/02f840f90764f22f5c898901849bdbf0cee752ba|commit]], [[https://git.kernel.org/linus/52dfd86aa568e433b24357bb5fc725560f1e22d8|commit]] * CEPH * Add IO size metrics support [[https://git.kernel.org/linus/903f4fec78dd05a48fdccdf4539c040fb2d5bbf4|commit]] = Memory management = * (FEATURED) Introduce memfd_secret system call to create "secret" memory areas [[https://git.kernel.org/linus/6aeb25425d07a8cf2deb4cc1db4d7a667e640839|commit]], [[https://git.kernel.org/linus/10cc327883919dbd2d77c858a50698622760639d|commit]], [[https://git.kernel.org/linus/6d47c23b16aa78ff93a3050ccf4b1bd1c064b8b3|commit]], [[https://git.kernel.org/linus/1507f51255c9ff07d75909a84e7c0d7f3c4b2f49|commit]], [[https://git.kernel.org/linus/9a436f8ff6316c3c1a21a758e14ded930bd615d9|commit]], [[https://git.kernel.org/linus/7bb7f2ac24a028b20fca466b9633847b289b156a|commit]], [[https://git.kernel.org/linus/76fe17ef588ad9f54c1a3cdf7d9512718cf98c85|commit]] * Bind the rlimit counters to a user in user namespace. [[https://lwn.net/Articles/842842/|Recommended LWN article]]. [[https://git.kernel.org/linus/f9c82a4ea89c384d49ce03768ba88d049ed3f1f0|commit]], [[https://git.kernel.org/linus/905ae01c4ae2ae3df05bb141801b1db4b7d83c61|commit]], [[https://git.kernel.org/linus/b6c336528926ef73b0f70260f2636de2c3b94c14|commit]], [[https://git.kernel.org/linus/21d1c5e386bc751f1953b371d72cd5b7d9c9e270|commit]], [[https://git.kernel.org/linus/6e52a9f0532f912af37bab4caf18b57d1b9845f4|commit]], [[https://git.kernel.org/linus/d64696905554e919321e31afc210606653b8f6a4|commit]], [[https://git.kernel.org/linus/d7c9e99aee48e6bc0b427f3e3c658a6aba15001e|commit]], [[https://git.kernel.org/linus/e4aebf06695c32d49f1007f9d252f97b5b2998a7|commit]], [[https://git.kernel.org/linus/c1ada3dc7219b02b3467aa906c2f5f8b098578d1|commit]] * kasan: add memory corruption identification support for hw tag-based kasan [[https://git.kernel.org/linus/f06f78ab48fb90cfbef5289e5556704b74c46b7a|commit]], [[https://git.kernel.org/linus/a0503b8a0b3c8ef1be55744a248bffb8f533d227|commit]], [[https://git.kernel.org/linus/7a22bdc3c443d5abc420df1381e425b49e8901a3|commit]] * (FEATURED) madvise: introduce {{{MADV_POPULATE_(READ|WRITE)}}} to prefault page tables [[https://git.kernel.org/linus/a78f1ccd37fbcda706745220b5db76902b325900|commit]], [[https://git.kernel.org/linus/4ca9b3859dac14bbef0c27d00667bb5b10917adb|commit]], [[https://git.kernel.org/linus/5d334317a9ac5ab42d18a1268773d4d557df8c3e|commit]], [[https://git.kernel.org/linus/2abdd8b8a29e10aa8d600d2d377690560eb5db3f|commit]], [[https://git.kernel.org/linus/e5bfac53e31087525ba5a629124b3100393b4d3e|commit]] * Reduce kmemcache memory accounting overhead [[https://git.kernel.org/linus/fdbcb2a6d6778e0b91938529694e5f40b4a66130|commit]], [[https://git.kernel.org/linus/68ac5b3c8db2fda00af594eca4100aceaf927c0e|commit]], [[https://git.kernel.org/linus/5387c90490f7f42df3209154ca955a453ee01b41|commit]], [[https://git.kernel.org/linus/559271146efc0bf125e6390191f683eab884e4a1|commit]] * Allow high order pages to be stored on the per-cpu page allocator [[https://git.kernel.org/linus/21d02f8f8464e27434f477c73431075197a9f72f|commit]], [[https://git.kernel.org/linus/44042b4498728f4376e84bae1ac8016d146d850b|commit]] * Use local_lock for pcp protection and reduce stat overhead [[https://git.kernel.org/linus/28f836b6777b6f42dce068a40d83a891deaaca37|commit]], [[https://git.kernel.org/linus/dbbee9d5cd83f9d0a29639e260516907ceb2ac3d|commit]], [[https://git.kernel.org/linus/f19298b9516c1a031b34b4147773457e3efe743b|commit]], [[https://git.kernel.org/linus/3ac44a346a50988131db124a7e4bb99d3ec71706|commit]], [[https://git.kernel.org/linus/3e23060b2d0b7eebf37b3b6043ea68da0ebc0646|commit]], [[https://git.kernel.org/linus/43c95bcc51e4e7f3e3cbce01515fe429a4cf12a7|commit]], [[https://git.kernel.org/linus/56f0e661ea8c0178e80048df7166653a51ef2c3d|commit]], [[https://git.kernel.org/linus/df1acc856923c0a65c28b588585449106c316b71|commit]], [[https://git.kernel.org/linus/902499937e3a82156dcb5069b6df27640480e204|commit]] * Calculate pcp->high based on zone sizes and active CPUs [[https://git.kernel.org/linus/bbbecb35a41cb5c63ef78e14cc8b95fa9130bc1a|commit]], [[https://git.kernel.org/linus/b92ca18e8ca596f4f3d80c1fe833bc57a1b2458c|commit]], [[https://git.kernel.org/linus/04f8cfeaed0849e702278378bce3867577ca45fb|commit]], [[https://git.kernel.org/linus/3b12e7e97938424de2bb1b95ba0bd6a49bad39f9|commit]], [[https://git.kernel.org/linus/c49c2c47dab6b8d45022b3fabf0642a0e62e3109|commit]], [[https://git.kernel.org/linus/74f44822097c665041010994502b5971d6cd9f04|commit]] * page_reporting: Make page reporting work on arm64 with 64KB page size [[https://git.kernel.org/linus/5631de543acb5c7a740534e727f7432e45a9e6dd|commit]], [[https://git.kernel.org/linus/f58780a8e3851edae5bafb7d3af19425308a37f5|commit]], [[https://git.kernel.org/linus/9f849c6f9572d8cef407f55928d3dc68fc42ad3e|commit]], [[https://git.kernel.org/linus/f8af4d0892cbb84fc3913de75ba5da374147a691|commit]] * Free idle swap cache page after COW [[https://git.kernel.org/linus/f4c4a3f48480730214c4f02ffa480f6bf5b0718f|commit]] * Free some vmemmap pages of HugeTLB page [[https://git.kernel.org/linus/426e5c429d16e4cd5ded46e21ff8e939bf8abd0f|commit]], [[https://git.kernel.org/linus/6be24bed9da367c29b04e6fba8c9f27db39aa665|commit]], [[https://git.kernel.org/linus/cd39d4e9e71c5437b67c819c3d53032145bf2879|commit]], [[https://git.kernel.org/linus/f41f2ed43ca5258d70d53290d1951a21621f95c8|commit]], [[https://git.kernel.org/linus/b65d4adbc0f0d4619f61ee9d8126bc5005b78802|commit]], [[https://git.kernel.org/linus/ad2fa3717b74994a22519dbe045757135db00dbb|commit]], [[https://git.kernel.org/linus/e9fdff87e893ec5b7c32836675db80cf691b2a8b|commit]], [[https://git.kernel.org/linus/4bab4964a59f277915285787c828b810151de7a1|commit]], [[https://git.kernel.org/linus/774905878fc9b0b9a5ee4a889b97f773a077aeee|commit]] * Free some vmemmap pages of HugeTLB page that contain repeated information [[https://git.kernel.org/linus/3bc2b6a725963bb1b441356873da890e397c1a3f|commit]], [[https://git.kernel.org/linus/2d7a21715f25122779e2bed17db8c57aa01e922f|commit]], [[https://git.kernel.org/linus/e6d41f12df0efcaa6e30b575d40f2529024cfce9|commit]], [[https://git.kernel.org/linus/426e5c429d16e4cd5ded46e21ff8e939bf8abd0f|commit]], [[https://git.kernel.org/linus/6be24bed9da367c29b04e6fba8c9f27db39aa665|commit]], [[https://git.kernel.org/linus/cd39d4e9e71c5437b67c819c3d53032145bf2879|commit]], [[https://git.kernel.org/linus/f41f2ed43ca5258d70d53290d1951a21621f95c8|commit]], [[https://git.kernel.org/linus/b65d4adbc0f0d4619f61ee9d8126bc5005b78802|commit]], [[https://git.kernel.org/linus/ad2fa3717b74994a22519dbe045757135db00dbb|commit]], [[https://git.kernel.org/linus/e9fdff87e893ec5b7c32836675db80cf691b2a8b|commit]], [[https://git.kernel.org/linus/4bab4964a59f277915285787c828b810151de7a1|commit]], [[https://git.kernel.org/linus/774905878fc9b0b9a5ee4a889b97f773a077aeee|commit]] * memcg/slab: create a new set of kmalloc-cg- caches [[https://git.kernel.org/linus/41eb5df1cbc9b302fc263ad7c9f38cfc38b4df61|commit]], [[https://git.kernel.org/linus/494c1dfe855ec1f70f89552fce5eadf4a1717552|commit]], [[https://git.kernel.org/linus/13e680fb6a1e7749ef4f4824ed883684ceb838df|commit]] * thp: use generic THP migration for NUMA hinting fault [[https://git.kernel.org/linus/5db4f15c4fd7ae74dd40c6f84bf56dfcf13d10cf|commit]], [[https://git.kernel.org/linus/f4c0d8367ea492cdfc7f6d14763c02f472731592|commit]], [[https://git.kernel.org/linus/c5b5a3dd2c1fa61049b7789ce596faff4d659a61|commit]], [[https://git.kernel.org/linus/c5fc5c3ae0c849c713c4291addb5fce699ad0972|commit]], [[https://git.kernel.org/linus/b0b515bfb3f4f3dc208862989e38ee5268a1003f|commit]], [[https://git.kernel.org/linus/662aeea7536d84d7e1d01739694e4748ba294ce0|commit]], [[https://git.kernel.org/linus/e346e6688c4aa18588f2c6a75b572d8ca7a65f5f|commit]] * Add support for SVM atomics in Nouveau [[https://git.kernel.org/linus/af5cdaf82238fb3637a0d0fff4670e5be71c611c|commit]], [[https://git.kernel.org/linus/4dd845b5a3e57ad07f26ef808707b064696fe34b|commit]], [[https://git.kernel.org/linus/cd62734ca60dbb2ab5bb19c8d837dd9990955310|commit]], [[https://git.kernel.org/linus/a98a2f0c8ce1b2138cb8e3ae410444dedcc14809|commit]], [[https://git.kernel.org/linus/6b49bf6ddbb0d7992c816846acfa5fd1cf751c36|commit]], [[https://git.kernel.org/linus/9a5cc85c407402ae66128d31f0422a3a7ffa5c5c|commit]], [[https://git.kernel.org/linus/b756a3b5e7ead8f6f4b03cea8ac22478ce04c8a8|commit]], [[https://git.kernel.org/linus/b659baea75469f0c5bd26f18461dfcdc1bbbac82|commit]], [[https://git.kernel.org/linus/f81c69a2a144afefa277db4917a76bcaecfa2f2e|commit]], [[https://git.kernel.org/linus/8f187163eb890d6d2a53f7efea2b6963fe9526e2|commit]] * slub: move sysfs slab alloc/free interfaces to debugfs [[https://git.kernel.org/linus/64dd68497be76ab4e237cca06f5324e220d0f050|commit]] * page_pool: recycle buffers [[https://git.kernel.org/linus/c07aea3ef4d4076f18f567b98ed01e082e02ed51|commit]], [[https://git.kernel.org/linus/c420c98982fa9e749c99e022845d5f323d098b72|commit]], [[https://git.kernel.org/linus/6a5bcd84e886a9a91982e515c539529c28acdcc2|commit]], [[https://git.kernel.org/linus/133637fcfab24e831239c5f1d7042996efd8d828|commit]] * percpu: partial chunk depopulation [[https://git.kernel.org/linus/8ea2e1e35d1eb4c76290ff5d565a1bfd6c24f117|commit]], [[https://git.kernel.org/linus/1c29a3ceaf5f02919e0a89119a70382581453dbb|commit]], [[https://git.kernel.org/linus/f183324133ea535db4127f9fad3e19725ca88bf3|commit]] * percpu: memcg memory accounting rework [[https://git.kernel.org/linus/0f0cace35fa655d383b64b4fce83a44d530c9aaf|commit]], [[https://git.kernel.org/linus/4d5c8aedc8aa6a1f5d1b06eb4f5517dc60dd9440|commit]], [[https://git.kernel.org/linus/faf65dde844affa9e360ccaa4bd231c2a04b87ea|commit]] * userfaultfd: add minor fault handling for shmem [[https://git.kernel.org/linus/3460f6e5c1ed94c2ab7c1ccc032a5bebd88deaa7|commit]], [[https://git.kernel.org/linus/c949b097ef2e332fa90708127c972b823fb58ec1|commit]], [[https://git.kernel.org/linus/153132571f0204dc5844faf6b0f8096c6c29d277|commit]], [[https://git.kernel.org/linus/964ab0040ff9598783bf37776b5e31b27b50e293|commit]], [[https://git.kernel.org/linus/7d64ae3ab648a967b7ba5cc3e89281d76742c34e|commit]], [[https://git.kernel.org/linus/fa2c2b58189b28ee7bd830b4cb71abfe5060fff2|commit]], [[https://git.kernel.org/linus/5bb23edb18373b20ff740e56d7c97ea60fb51491|commit]], [[https://git.kernel.org/linus/8ba6e8640844213e27c22f5eae915710f7b7998d|commit]], [[https://git.kernel.org/linus/4a8f021ba0a220a95d4251ea3f199ef693f1249b|commit]] * Remove DISCONTIGMEM memory model [[https://git.kernel.org/linus/fdb7d9b7acd02f573ae4fc0c7772f6b5c6b1bad0|commit]], [[https://git.kernel.org/linus/e7793e53901b31a06db534679e77c0cdeab260a2|commit]], [[https://git.kernel.org/linus/8b793b442051550b6cc694213e276587e01bddcb|commit]], [[https://git.kernel.org/linus/5ab06e10990c3a04e00318c5ca93048c0f53a0a7|commit]], [[https://git.kernel.org/linus/bb1c50d3967f69f413b333713c2718d48d1ab7ea|commit]], [[https://git.kernel.org/linus/d3c251ab95b69f3dc189c4657baeac1b4c050789|commit]], [[https://git.kernel.org/linus/48d9f3355a8eaa79b00472929b517df497fc6d5f|commit]], [[https://git.kernel.org/linus/a9ee6cf5c60ed1070e786e53665f9b2f23f2bd11|commit]], [[https://git.kernel.org/linus/43b02ba93b25b1caff7a3457fc5d005485e78da5|commit]] = Block layer = * cgroup: Improve I/O priority support by letting users configure a cgroup I/O priority policy in the `blkio.prio.class` attribute. Unlike ioprio_set(), this cgroup setting does affect writeback I/O priority. See also Documentation/admin-guide/cgroup-v2.rst [[https://git.kernel.org/linus/5f6776ba413ce273f7cb211f1cf8771f0cde7c81|commit]], [[https://git.kernel.org/linus/19688d7f9592b8222f530037d9328fdc90fff14c|commit]], [[https://git.kernel.org/linus/fb44023e70224c3bd9eb949bd3ab66876bd14c56|commit]], [[https://git.kernel.org/linus/556910e39249d55e23deaec479f49e7d85bc0d24|commit]], [[https://git.kernel.org/linus/46eae2e32a6adc368230b4df0501082c5233e99c|commit]], [[https://git.kernel.org/linus/3bd473f41ae990815d6f75d285b161eebf361278|commit]], [[https://git.kernel.org/linus/2f295beab40f13ab93c004d45372238f2066a5ee|commit]], [[https://git.kernel.org/linus/3e9a99eba058f79736dccaf25934f8d6ca380fb3|commit]], [[https://git.kernel.org/linus/004a26b327c2e1ea88b2638cf16c0e30e82f297e|commit]], [[https://git.kernel.org/linus/d6d7f013d65491eaff477b9bd83b80111f5be9e4|commit]], [[https://git.kernel.org/linus/07757588e5076748308dd95ee2e3cd0b82ebb8c4|commit]], [[https://git.kernel.org/linus/d672d325b1492f5b0e54b7226f01e2d57b58bfb4|commit]], [[https://git.kernel.org/linus/c807ab520fc3fd056c47c74ced63f9d3991a171b|commit]], [[https://git.kernel.org/linus/38ba64d12d4cf9fa260c45d7398e2a24afaceefa|commit]], [[https://git.kernel.org/linus/08a9ad8bf607388d768a341957d53eae64250c2d|commit]] * blkcg: prevent dirty inodes to pin dying memory cgroups [[https://git.kernel.org/linus/4ade5867b4b878b00a4526b8621442f9442536ce|commit]], [[https://git.kernel.org/linus/592fa002180af3425ba962b8e74edd680f0ec77b|commit]], [[https://git.kernel.org/linus/8826ee4fe75051f8cbfa5d4a9aa70565938e724c|commit]], [[https://git.kernel.org/linus/29264d92a0f157f3147129066d912718b99fc6b0|commit]], [[https://git.kernel.org/linus/f3b6a6df38aa514d97e8c6fcc748be1d4142bec9|commit]], [[https://git.kernel.org/linus/72d4512e9cb14d790e361c0e085186a7ef2d2431|commit]], [[https://git.kernel.org/linus/f5fbe6b7ad6ef1fbdf8074a6ca9fdab739bf86d4|commit]], [[https://git.kernel.org/linus/c22d70a162d3cc177282c4487be4d54876ca55c8|commit]] * bfq: preserve control, boost throughput [[https://git.kernel.org/linus/511a2699237611b062df7798476bf3a1392910b9|commit]], [[https://git.kernel.org/linus/e03f2ab78a4a673e4af23c3b855591c48b9de4d7|commit]], [[https://git.kernel.org/linus/d4f49983fa3944416c28379c35fbe10c68455ea4|commit]], [[https://git.kernel.org/linus/7812472f973047a886e4ed9a91d98d6627dd746f|commit]], [[https://git.kernel.org/linus/bd3664b362381c4c1473753ebedf0ab242a60d1d|commit]], [[https://git.kernel.org/linus/efc72524b3a9e4e7bc7c07f756528736409ec1b7|commit]], [[https://git.kernel.org/linus/9a2ac41b13c573703d6689f51f3e27dd658324be|commit]] * Charge loop device i/o to issuing cgroup [[https://git.kernel.org/linus/87579e9b7d8dc36e7cfc40c03f1ae5634e16e2c5|commit]], [[https://git.kernel.org/linus/04f94e3fbe1afcb815d7c7ace78c6779772aa837|commit]], [[https://git.kernel.org/linus/c74d40e8b5e2ac5eee1ca45b12d3e174915f1d88|commit]] * dm space maps: improve performance with inc/dec on ranges of blocks [[https://git.kernel.org/linus/be500ed721a6ec8d49bf0814c277ce7162acee0e|commit]] * dm btree: improve btree residency [[https://git.kernel.org/linus/4eafdb1515a708d97e4659bd488ddac19f274c4f|commit]] * dm: Improve zoned block device support [[https://git.kernel.org/linus/1ee533eca70bb8867ad1e6f5ef8a86c8897d67d7|commit]], [[https://git.kernel.org/linus/d0ea6bde141df9311bc36e7b07ad37b449f2c4f5|commit]], [[https://git.kernel.org/linus/9ffbbb435d8f566a0924ce4b5dc7fc1bceb6dbf8|commit]], [[https://git.kernel.org/linus/e2118b3c3d94289852417f70ec128c25f4833aad|commit]], [[https://git.kernel.org/linus/bb37d77239af25cde59693dbe3fac04dd17d7b29|commit]], [[https://git.kernel.org/linus/f34ee1dce642c67104a56d562e6ec71efe901f77|commit]], [[https://git.kernel.org/linus/6842d264aa5205da338b6dcc6acfa2a6732558f1|commit]], [[https://git.kernel.org/linus/dd73c320ec3089149b802a1316321c3e0f6a6aaf|commit]], [[https://git.kernel.org/linus/7fc18728482b1a29bd7b8439a0ae7b3f23e097d1|commit]], [[https://git.kernel.org/linus/912e887505a07123917e537b657859723ce5d472|commit]], [[https://git.kernel.org/linus/bf14e2b250e4ff94392bbe87c523effdec687b0b|commit]] * dm writecache: add optional "metadata_only" parameter. When present: only metadata is promoted to the cache [[https://git.kernel.org/linus/611c3e168b1c5b6cf81e6deb8f6b4eb83f6b53fd|commit]] * dm writecache: make writeback pause configurable [[https://git.kernel.org/linus/5c0de3d72f8c05678ed769bea24e98128f7ab570|commit]] * md: io stats accounting [[https://git.kernel.org/linus/ad3fc798800fb7ca04c1dfc439dba946818048d8|commit]], [[https://git.kernel.org/linus/10764815ff4728d2c57da677cd5d3dd6f446cf5f|commit]], [[https://git.kernel.org/linus/c82aa1b76787c34fd02374e519b6f52cdeb2f54b|commit]], [[https://git.kernel.org/linus/1147f58e1010b8688bac1fd3bbab753b1379291d|commit]], [[https://git.kernel.org/linus/9b8ae7b938235229ccb112c4e887ff1bcc232836|commit]], [[https://git.kernel.org/linus/a0159832e51e3af03b89ecc5d6b9db451e529b5f|commit]], [[https://git.kernel.org/linus/528bc2cf2fccef2c2c17263f9932094bf81fee5a|commit]], [[https://git.kernel.org/linus/608f52e30aae7dc8da836e5b7b112d50a2d00e43|commit]] * md: raid5 lock contention optimization [[https://git.kernel.org/linus/97ae27252f4962d0fcc38ee1d9f913d817a2024e|commit]] * block and nvme passthrough error handling [[https://git.kernel.org/linus/c01b5a814e7b28e327883838bad159194bdd68e8|commit]], [[https://git.kernel.org/linus/be42a33b9252f0b3857cadb896e430ee17cccad4|commit]], [[https://git.kernel.org/linus/fb9b16e15cd70e21d8af7f03d700deb9509c2ce8|commit]], [[https://git.kernel.org/linus/ae5e6886b4f8d62a9d01fea4221a854e541a1cd0|commit]] = Tracing, perf and BPF = * BPF * (FEATURED) syscall program, FD array, loader program, light skeleton [[https://git.kernel.org/linus/79a7f8bdb159d9914b58740f3d31d602a6e4aca8|commit]], [[https://git.kernel.org/linus/cdf7fb0a9f3d36b279590ac41e61c6b655db0d4a|commit]], [[https://git.kernel.org/linus/af2ac3e13e45752af03c8a933f9b6e18841b128b|commit]], [[https://git.kernel.org/linus/5452fc9a17fc26816a683ab04cf1c29131ca27e4|commit]], [[https://git.kernel.org/linus/00899e7e8d9d30142ccff4cebd80effca58396b7|commit]], [[https://git.kernel.org/linus/c571bd752e91602f092823b2f1ee685a74d2726c|commit]], [[https://git.kernel.org/linus/2341d6bb133d44caeba9fbdc851f8624739a84a2|commit]], [[https://git.kernel.org/linus/387544bfa291a22383d60b40f887360e2b931ec6|commit]], [[https://git.kernel.org/linus/3d78417b60fba249cc555468cb72d96f5cde2964|commit]], [[https://git.kernel.org/linus/3abea089246f76c1517b054ddb5946f3f1dbd2c0|commit]], [[https://git.kernel.org/linus/b12688267280b223256c8cf912486577d3adce25|commit]], [[https://git.kernel.org/linus/9ca1f56ababea5f5c714074845ee1c9e4dd75956|commit]], [[https://git.kernel.org/linus/e2fa0156a434c140998aa16ecad329e4bc19f263|commit]], [[https://git.kernel.org/linus/67234743736a6ac31e3e74f6ec5e6d7bb3073676|commit]], [[https://git.kernel.org/linus/30f51aedabda92b74927979b2b3b50169e285f6b|commit]], [[https://git.kernel.org/linus/7723256bf2443d6bd7db3e583953d14107955233|commit]], [[https://git.kernel.org/linus/d510296d331accd4afaa13498220c93ae690628a|commit]], [[https://git.kernel.org/linus/4d1b62986125b6de596c98310543652a7892e097|commit]] * static linker: global symbols visibility [[https://git.kernel.org/linus/37f05601eabc29f82c03b461a22d8fafacd736d2|commit]], [[https://git.kernel.org/linus/fdbf5ddeb855a80831af2e5bb9db9218926e6789|commit]], [[https://git.kernel.org/linus/256eab48e70c0eaf5b1b9af83c0588491986c7de|commit]], [[https://git.kernel.org/linus/31332ccb756274c185cfd458b68b29a9371dceac|commit]], [[https://git.kernel.org/linus/247b8634e6446dbc8024685f803290501cba226f|commit]], [[https://git.kernel.org/linus/e5670fa0293b05e8e24dae7d18481aba281cb85d|commit]] * libbpf: Add low level TC-BPF management API [[https://git.kernel.org/linus/715c5ce454a6a9b94a1a4a3360de6a87eaf0d833|commit]] * libbpf: Add request buffer type for netlink messages [[https://git.kernel.org/linus/0ae64fb6b645e0f976e08bc3c05e518856f19d00|commit]] * perf * perf annotate: Add itrace options support [[https://git.kernel.org/linus/4bcbe438b3baaeb532dd50a5f002aed56c197e2a|commit]] * perf header: Support HYBRID_TOPOLOGY and HYBRID_CPU_PMU_CAPS [[https://git.kernel.org/linus/e119083bab80c2550065f6c0f10ba225a894595e|commit]], [[https://git.kernel.org/linus/f7d74ce32fc1b9b3cbf58c015009d1f616e60c23|commit]] * perf parse-events: Add bison --file-prefix-map option [[https://git.kernel.org/linus/6793672accf380f895b2dc39eff90c7f0cc99fb6|commit]] * perf probe: Add --bootconfig to output definition in bootconfig format [[https://git.kernel.org/linus/45237f9898fce54a8cc6d40f7455291e0e6c4277|commit]] * perf record: Add a dummy event on hybrid systems to collect metadata records [[https://git.kernel.org/linus/b91e5492f9d7ca89919cfe8b0c5b5996263182f7|commit]] * perf script: Add API for filtering via dynamically loaded shared object [[https://git.kernel.org/linus/291961fc3c28b4c1acfc3b03559aa14c286a6b0d|commit]], [[https://git.kernel.org/linus/9bde93a79a897719f829225d0b541b4b11af2c24|commit]], [[https://git.kernel.org/linus/638e2b9984ee1b8d485366f74d579467880283b4|commit]], [[https://git.kernel.org/linus/3d032a251605740b75decd3381dc9d496a245ca0|commit]], [[https://git.kernel.org/linus/0beb218315e06e888acb576909513087e5d1fa5b|commit]], [[https://git.kernel.org/linus/f645744c50806c0453b8d4a806c6347654035053|commit]], [[https://git.kernel.org/linus/e35995effdd3815cad7f0db8360c23d60479122a|commit]], [[https://git.kernel.org/linus/244afc0c93205fa144c782562ad3f9435ae4ea93|commit]], [[https://git.kernel.org/linus/6495e762522d4cf73d0b339830091799881eb025|commit]], [[https://git.kernel.org/linus/ec4c00fedbf3e713776d2776e88a7e4bc61b7efc|commit]] * perf scripting python: Add insn, srcline and srccode [[https://git.kernel.org/linus/4c62244e035e99a9e43d25a017cbe98f7562b21f|commit]], [[https://git.kernel.org/linus/6337bd0c91f66527741e61ecb73b9cff0d7f48f8|commit]], [[https://git.kernel.org/linus/cac30400a6d8159e2510a4a258db9c4ac6fbbba5|commit]], [[https://git.kernel.org/linus/67e50ce0e32580d90f64556a51b7cb2a872697ca|commit]], [[https://git.kernel.org/linus/cf9bfa6c150f038328f8059a69a6f1598d6702b2|commit]], [[https://git.kernel.org/linus/d9ae9c9776abc60d4bdf2320c4a8f32340cff527|commit]], [[https://git.kernel.org/linus/13c71b92327aaacc7a3c3ca5f003f3f66ba5af65|commit]], [[https://git.kernel.org/linus/e621b8ffec3dc46105eb3d9b90cdd3bc9632f6d8|commit]], [[https://git.kernel.org/linus/7d00540d7deb6802cde23b132b0c50347f27cc90|commit]], [[https://git.kernel.org/linus/e79457a526105c94930a5babbecaeeb794593723|commit]], [[https://git.kernel.org/linus/1a329b1c8e8ebf4107823146b5426900ab1145fe|commit]], [[https://git.kernel.org/linus/2b87386c7a1c0488bf2a27d7f4ac80aa84e22fb5|commit]], [[https://git.kernel.org/linus/a483e64c0b62e93a772cbc96f32bad885586fad7|commit]] * hwlat improvements and osnoise/timerlat tracers [[https://git.kernel.org/linus/bb1b24cf41b5b3b96a921f80f9799e7be75f167d|commit]], [[https://git.kernel.org/linus/8fa826b7344d6752f5cfd72380d9fe7bd8c6b928|commit]], [[https://git.kernel.org/linus/7bb7d802af1d0b2608ef5afafcf968073a50acb7|commit]], [[https://git.kernel.org/linus/f46b16520a087e892a189db9c23ccf7e9bb5fa69|commit]], [[https://git.kernel.org/linus/bc87cf0a08d437ea192b15f0918cb581a8698f15|commit]], [[https://git.kernel.org/linus/f27a1c9e1ba1e4f18f2c01e7bcbc400651ed821d|commit]], [[https://git.kernel.org/linus/aa892f8c887dd4331458d04de9425cde6664c694|commit]], [[https://git.kernel.org/linus/62de4f29e9174e67beb8d34ef5ced6730e087a31|commit]], [[https://git.kernel.org/linus/6880c987e45172fdaca0b4c07b0990f5b3c74f70|commit]], [[https://git.kernel.org/linus/bce29ac9ce0bb0b0b146b687ab978378c21e9078|commit]], [[https://git.kernel.org/linus/a955d7eac1779b437ceb24fc352026a2cbcec140|commit]], [[https://git.kernel.org/linus/039a602db393c00665e7a3b968b15fb6fd7042b1|commit]], [[https://git.kernel.org/linus/ba998f7d9531ef4ce462cabd2ce57a7558c33ede|commit]], [[https://git.kernel.org/linus/c8895e271f7994a3ecb13b8a280e39aa53879545|commit]] * tracing/boot: Add per-group/all events enablement [[https://git.kernel.org/linus/4f99f8489950c03c792f17ca2d55cbb591286174|commit]] = Virtualization = * KVM statistics data fd-based binary interface [[https://git.kernel.org/linus/0193cc908b5ae8aff2e2d2997ca5d4ae26ed24d4|commit]], [[https://git.kernel.org/linus/cb082bfab59a224a49ae803fed52cd03e8d6b5e0|commit]], [[https://git.kernel.org/linus/fcfe1baeddbf1c7c448b44c82586d0cbc8abc9f5|commit]], [[https://git.kernel.org/linus/ce55c049459cff0034cc1bcfdce3bf343a2d6317|commit]], [[https://git.kernel.org/linus/fdc09ddd40645b0e3f245e4512fd4b4c34cde5e5|commit]], [[https://git.kernel.org/linus/0b45d58738cd67d8b63bf093bd56f2f57a00f642|commit]], [[https://git.kernel.org/linus/bc9e9e672df9f16f3825320c53ec01b3d44add28|commit]] * virtio_pci: Support surprise removal of virtio pci device [[https://git.kernel.org/linus/43bb40c5b92659966bdf4bfe584fde0a3575a049|commit]] = Security = * ima: Add template fields to verify EVM portable signatures [[https://git.kernel.org/linus/cde1391a0b4014b0e8fc09cd316272f478b54c0f|commit]], [[https://git.kernel.org/linus/7dcfeacc5a9d0c130160b86de23279793a8732c8|commit]], [[https://git.kernel.org/linus/f8216f6b957f5657c5f4c97f4b037120c6f236bc|commit]], [[https://git.kernel.org/linus/8c7a703ec9787a1b45b024e9acd253328422dcbd|commit]], [[https://git.kernel.org/linus/8314b6732ae4e600bb933e108f96ce0176acb09c|commit]], [[https://git.kernel.org/linus/88016de3ab075790e1f1bf047576e9b557c22d19|commit]], [[https://git.kernel.org/linus/d721c15fd519c08819fbc6de39b713e2ed1d9894|commit]] * evm: Improve usability of portable signatures [[https://git.kernel.org/linus/9eea2904292c2d8fa98df141d3bf7c41ec9dc1b5|commit]], [[https://git.kernel.org/linus/aa2ead71d9daa1b6645e1d25b1f14a6286b114d0|commit]], [[https://git.kernel.org/linus/9acc89d31f0c94c8e573ed61f3e4340bbd526d0c|commit]], [[https://git.kernel.org/linus/e3ccfe1ad7d895487977ef64eda3441d16c9851a|commit]], [[https://git.kernel.org/linus/4a804b8a4572dfc81c3a59709d49ae206e4370ba|commit]], [[https://git.kernel.org/linus/cdef685be5b4ae55c3959289e72d520402839c29|commit]], [[https://git.kernel.org/linus/7e135dc725417ecc0629afb4b3b24457d2a4869d|commit]], [[https://git.kernel.org/linus/1886ab01a3fb98ee7f7739ae50eb9492f5df3641|commit]], [[https://git.kernel.org/linus/1434c6a1d32a3a1a77f58a03197b802b1724c740|commit]], [[https://git.kernel.org/linus/7aa5783d95646f924b99d245338d5b7aa7a2b3c0|commit]], [[https://git.kernel.org/linus/026d7fc92a9d629630779c999fe49ecae93f9d63|commit]], [[https://git.kernel.org/linus/ed1b472fc15aeaa20ddeeb93fd25190014e50d17|commit]] * IMA: support for duplicate measurement records [[https://git.kernel.org/linus/52c208397c246f0c31d031eb8c41f9c7e9fdec0e|commit]] = Networking = * TCP * Add stats for socket migration [[https://git.kernel.org/linus/55d444b310c64b084dcc62ba3e4dc3862269fb96|commit]] * Disable TFO blackhole logic by default [[https://git.kernel.org/linus/213ad73d06073b197a02476db3a4998e219ddb06|commit]] * Implement SRv6 End.DT46 Behavior, defined in the IETF RFC 8986 along with SRv6 End.DT4 and End.DT6 Behaviors [[https://git.kernel.org/linus/8b532109bf885b7b59b93487bc4672eb6d071b78|commit]] * xdp: extend xdp_redirect_map with broadcast support [[https://git.kernel.org/linus/cb261b594b4108668e00f565184c7c221efe0359|commit]], [[https://git.kernel.org/linus/e624d4ed4aa8cc3c69d1359b0aaea539203ed266|commit]], [[https://git.kernel.org/linus/e48cfe4bbfadd7b88821fe98f625a6b5a6d1cbb4|commit]], [[https://git.kernel.org/linus/d232924762971fe2698011bc244e05949e544541|commit]] * Add trusted VF support [[https://git.kernel.org/linus/967db3529ecac305d230aa4e60abddf6ab63543a|commit]], [[https://git.kernel.org/linus/cbc100aa220556d056272f07dc735c9758089da9|commit]], [[https://git.kernel.org/linus/bd4302b8fd166a8424af9ac2435aeb4514d811f5|commit]], [[https://git.kernel.org/linus/b1dc20407b5920d9058c2d1b021a44c32acbf8fa|commit]] * virtio/vsock: introduce SOCK_SEQPACKET support [[https://git.kernel.org/linus/a9e29e5511b9e68b64e9031edb7b7f8920ad3de1|commit]], [[https://git.kernel.org/linus/b3f7fd54881bcba5dc529935f38df649167803b1|commit]], [[https://git.kernel.org/linus/19c1b90e1979c3974cd6a3ec0cbb886a84278d84|commit]], [[https://git.kernel.org/linus/9942c192b256bc11cc903f89f4057bc97434dee9|commit]], [[https://git.kernel.org/linus/fbe70c480796d9052fcc786c76e6b029acb1c7bc|commit]], [[https://git.kernel.org/linus/0798e78b102b79ed9fe4b2beeb18cf0db117c79b|commit]], [[https://git.kernel.org/linus/8cb48554ad822fb8553380b4781ea65f1e3ca7bb|commit]], [[https://git.kernel.org/linus/b93f8877c1f2e3d3dcdec7759c5de3d67777f45d|commit]], [[https://git.kernel.org/linus/c10844c5979992fde734f566357059e4a7c815bc|commit]], [[https://git.kernel.org/linus/f07b2a5b04d4a50d931a0afe4e3e114ce09a2e4b|commit]], [[https://git.kernel.org/linus/44931195a5412a97c46d299227fbabad4e09010d|commit]], [[https://git.kernel.org/linus/e4b1ef152f53d5ea0cae89f12f241f7293657718|commit]], [[https://git.kernel.org/linus/9ac841f5e9f261245d9d2841ad123566bd160a6e|commit]], [[https://git.kernel.org/linus/53efbba12cc7ea2aa47d888532fdc1b3b43afef0|commit]], [[https://git.kernel.org/linus/ced7b713711fdd8f99d8d04dc53451441d194c60|commit]], [[https://git.kernel.org/linus/6e90a57795aa6ab2ab65fd6ac76ee0b245e5988a|commit]], [[https://git.kernel.org/linus/41b792d7a86dd7fc77d5877e814d322e9f7efa75|commit]], [[https://git.kernel.org/linus/184039eefeaeab02abf7552504d2950dccf8785b|commit]] * Reset MAC header consistently across L3 virtual devices [[https://git.kernel.org/linus/99c8719b79814cab3fd43519591dcc41c978a48c|commit]], [[https://git.kernel.org/linus/7ad136fd288c0e0177eb29e04ec289e1b873b270|commit]], [[https://git.kernel.org/linus/730eed2772e740c30229d03e3d578cc00a5ae304|commit]], [[https://git.kernel.org/linus/aab1e898c26c3e4289c62b6d6482948672fab939|commit]], [[https://git.kernel.org/linus/da5a2e49f064a86a3b102b20c545f855a7298394|commit]], [[https://git.kernel.org/linus/b2d898c8a523f44ee7b3eea608e81a6e2264579f|commit]] * batman-adv: mcast: add MRD + routable IPv4 multicast with bridges support [[https://git.kernel.org/linus/7a68cc16b82c963c096387917ced11a27c352261|commit]] * can: introduce CANFD_FDF flag for mixed content in struct canfd_frame [[https://git.kernel.org/linus/02546884221279da2725e87e35348290470363d7|commit]] * 802.11 * Support hidden AP discovery over 6GHz band [[https://git.kernel.org/linus/52bb205213a8169cc40e1eba96483a9e488c17d3|commit]] * Expose the rfkill device to the low level driver [[https://git.kernel.org/linus/358ae88881adc3ac1544104272eb7e9408f80b39|commit]] * Add rate control support for encap offload [[https://git.kernel.org/linus/3187ba0cea77c8a4cdaed44fbff02c6e63e509aa|commit]] * devlink: rate objects API [[https://git.kernel.org/linus/d395381909a32060927e3f90116f938379be0636|commit]], [[https://git.kernel.org/linus/32ac15d8fd804615e79e365d6825da2a371f91f9|commit]], [[https://git.kernel.org/linus/814b9ce65ec3b53404eeda7a11e1abb4af8d7df3|commit]], [[https://git.kernel.org/linus/92ba1f29e6e2f16eb93a0a2c7c01985920b89222|commit]], [[https://git.kernel.org/linus/160dc373eead2143ea51b7f8e2a6bf1e383f24f8|commit]], [[https://git.kernel.org/linus/4677efc486e1872f62d4632c50f7183f82296fa6|commit]], [[https://git.kernel.org/linus/885dfe121b3862d0cc1de98a69f1ca37d18e3495|commit]], [[https://git.kernel.org/linus/a27d8e352bf252eb44b04c9e628a8d759956bdd2|commit]], [[https://git.kernel.org/linus/1897db2ec3109eb1dd07b357c95c5e03d54e41b9|commit]], [[https://git.kernel.org/linus/605c4f8f199b8374cf01624822aa0b5f2c09d1c7|commit]], [[https://git.kernel.org/linus/31f0723336063f20ce81cc16ca4775979ff0a26b|commit]], [[https://git.kernel.org/linus/a8ecb93ef03de4c59fb6289f99bc9616a852c917|commit]], [[https://git.kernel.org/linus/885226f5680e099ec54564332ea85412372b4958|commit]], [[https://git.kernel.org/linus/413ee943d788610b0675cb343fac5a23d7877613|commit]], [[https://git.kernel.org/linus/d7555984507822458b32a6405881038241d140be|commit]], [[https://git.kernel.org/linus/f3d101b485ca2c831088d72878fe6e7416676cb8|commit]], [[https://git.kernel.org/linus/1a9c0482f5557f5906294d3327a981bf842ba436|commit]], [[https://git.kernel.org/linus/b62767e7bab3a397166a2fa36b409e5e2859f100|commit]] * inet_diag: add support for tw_mark [[https://git.kernel.org/linus/1b3fc771769c9f9418b23dd5676ab25a215d247d|commit]] * Add support for custom multipath hash policy for both IPv4 and IPv6 traffic. The new policy allows user space to control the outer and inner packet fields used for the hash computation [[https://git.kernel.org/linus/2e68ea92684181412b73979baf1af7d04619c52c|commit]], [[https://git.kernel.org/linus/ce5c9c20d364f156c885efed8c71fca2945db00f|commit]], [[https://git.kernel.org/linus/4253b4986f98da4bfcb6a24d3fc6ff19f28e8420|commit]], [[https://git.kernel.org/linus/67db5ca73b1f98584ae9b6ed35c1c670677c9001|commit]], [[https://git.kernel.org/linus/b95b6e072a92042320fad99de658008cc0beb3b0|commit]], [[https://git.kernel.org/linus/ed13923f980ef84dde0b9010b9e09052dc31a909|commit]], [[https://git.kernel.org/linus/73c2c5cbb15a8a82d5bea52594b0beb038963bcc|commit]], [[https://git.kernel.org/linus/511e8db54036c775b84c349167cea2c4cfd24e24|commit]], [[https://git.kernel.org/linus/185b0c190bb6d30292783f20b4d85e8dbe8a2687|commit]], [[https://git.kernel.org/linus/b7715acba4d3d6e41ce8accd808b6c7c4febec6c|commit]] * icmp: add support for extended RFC 8335 PROBE (ping) [[https://git.kernel.org/linus/1fd07f33c3ea2b4aa77426f13e8cb91d4f55af8f|commit]] * Multi Path TCP * Data checksum support [[https://git.kernel.org/linus/752e906732c69412087f716e93baa0330cb7cce3|commit]], [[https://git.kernel.org/linus/d0cc298745f5abb3c43319cb9485daf3471d6f94|commit]], [[https://git.kernel.org/linus/06fe1719aa501e3b574b1b2b3a7ad2ddac5fb9cb|commit]], [[https://git.kernel.org/linus/c94b1f96dcfb2e5bd072b10f3429ccf28778ad58|commit]], [[https://git.kernel.org/linus/c5b39e26d0036423be09c39ad142e91a2d5d278b|commit]], [[https://git.kernel.org/linus/c863225b79426459feca2ef5b0cc2f07e8e68771|commit]], [[https://git.kernel.org/linus/0625118115cf2ee8e435bf86d1c1f0bfdee9d7c8|commit]], [[https://git.kernel.org/linus/208e8f66926c5d73e3f359385c1dd49dbc48d067|commit]], [[https://git.kernel.org/linus/390b95a5fb84e7999eedb021382c96d1500e01fc|commit]], [[https://git.kernel.org/linus/dd8bcd1768ff76bf2da1154897871adcc4ec078a|commit]], [[https://git.kernel.org/linus/4e14867d5e9185e38f730d65c89b728640d68dd1|commit]], [[https://git.kernel.org/linus/fe3ab1cbd357d9d0903f2d00038c2cb7141e7fe5|commit]], [[https://git.kernel.org/linus/fc3c82eebf8e2e193412612f509530b4ff5611bf|commit]], [[https://git.kernel.org/linus/401e3030e68f1c761a7137dc6f0cf39f585ab4bd|commit]], [[https://git.kernel.org/linus/94d66ba1d8e4803066b9c6a16274343a425ed1bf|commit]], [[https://git.kernel.org/linus/af66d3e1c3fa65f2187ab418b9934068049ea27a|commit]] * Add MP_CAPABLE 'C' flag [[https://git.kernel.org/linus/d2f77960e5b03b2d373252b2ee150a4a14010f99|commit]], [[https://git.kernel.org/linus/bab6b88e056038f618b2fb977d95b05ad3da8d0c|commit]], [[https://git.kernel.org/linus/df377be38725ced628251c1a3b954ef932a5586e|commit]], [[https://git.kernel.org/linus/0cddb4a6f4e3a008d0a62be31829bdde21cf0530|commit]] * Add timestamp support [[https://git.kernel.org/linus/371087aa476ab0ac0072303ac94a3bba2d7b0a1d|commit]], [[https://git.kernel.org/linus/ced122d90f52eb6ff37272e32941845d46ac64c6|commit]], [[https://git.kernel.org/linus/9061f24bf82ec2e92dd1e7c10b98b680db023d31|commit]], [[https://git.kernel.org/linus/7a009a70ff8adcba3b31dc8922a3671e5a8e1361|commit]], [[https://git.kernel.org/linus/892bfd3ded0ef0f895ed6356d0f85e2009421747|commit]], [[https://git.kernel.org/linus/b7f653b297a4b2ed16a11883044077e6bf3e3481|commit]], [[https://git.kernel.org/linus/5e6af0a729b669b1da6f9600867e2e4910505a6d|commit]] * Restrict values of 'enabled' sysctl [[https://git.kernel.org/linus/744ee14054c8ca5ad0fe3ab9172709c17d8a240a|commit]] * Support SYSCTL only if enabled [[https://git.kernel.org/linus/804c72eeecd2cd38567b64f868cc8c63202cf1a2|commit]] * Socket migration for SO_REUSEPORT when a process using it is dying. [[https://lwn.net/Articles/853637/|See this recommended LWN article]]. [[https://git.kernel.org/linus/f9ac779f881c2ec3d1cdcd7fa9d4f9442bf60e80|commit]], [[https://git.kernel.org/linus/5c040eaf5d1753aafe12989ca712175df0b9c436|commit]], [[https://git.kernel.org/linus/333bb73f620e1a5f2e0b8df2c0d25300fab36d89|commit]], [[https://git.kernel.org/linus/1cd62c21572c1df6e7090ea4cabf4cf509616dbb|commit]], [[https://git.kernel.org/linus/54b92e84193749c9968aff2dd46e3b0f42643e18|commit]], [[https://git.kernel.org/linus/c905dee62232db583b50fe214080b98db623151e|commit]], [[https://git.kernel.org/linus/d4f2c86b2b7e2e606e0868b38c8c6c49cc193a8e|commit]], [[https://git.kernel.org/linus/e061047684af63f2d4f1338ec73140f6e29eb59f|commit]], [[https://git.kernel.org/linus/d5e4ddaeb6ab2c3c7fbb7b247a6d34bb0b18d87e|commit]], [[https://git.kernel.org/linus/50501271e773c51afe602918915c6beb62ac369f|commit]], [[https://git.kernel.org/linus/c9d0bdef89a6c943e98c851e8cc10c9c534329e6|commit]] * bridge: split IPv4/v6 mc router state and export for batman-adv [[https://git.kernel.org/linus/ce6f709775bdf9bc8dd852a8758e10a98f31f280|commit]], [[https://git.kernel.org/linus/44ebb081dc6934e43d3c7444f183d6426adeca21|commit]], [[https://git.kernel.org/linus/ff391c5d9871894c620f1e6ae2b18d7db572e49d|commit]], [[https://git.kernel.org/linus/b19232effd09c2cb5e11b1b74547406a3c9adc5a|commit]], [[https://git.kernel.org/linus/1a3065a26807b4cdd65d3b696ddb18385610f7da|commit]], [[https://git.kernel.org/linus/ee5fb2223ee581676fe7e4e5a87481c419569454|commit]], [[https://git.kernel.org/linus/d9b8c4d8d937f58e618aa1e756162e80b385c701|commit]], [[https://git.kernel.org/linus/ed2d35971a8066aa24ce65dd66c113c0506bb206|commit]], [[https://git.kernel.org/linus/a3c02e769efe66dce5e2c716862b60c8d44d191e|commit]], [[https://git.kernel.org/linus/b7fb0916544de44ce099d9f3b6129c86b484de25|commit]], [[https://git.kernel.org/linus/3b85f9ba3480c1bcbebb2bb490822bec0e7a1201|commit]] * Add the 25G BASE-R mode to the set modes supported [[https://git.kernel.org/linus/858252c9c3463abc3f7b13e42aae3b8845f0479d|commit]], [[https://git.kernel.org/linus/a56c286865692ac12291afe4c66198915c6b08f9|commit]], [[https://git.kernel.org/linus/452d2c6fbae2c11e3b0c17a3afe7b145db2196e7|commit]], [[https://git.kernel.org/linus/21e0c59edc09ff8d50722071ded66574b1cc4e99|commit]] * Retrieve netns cookie via getsocketopt [[https://git.kernel.org/linus/e8b9eab99232c4e62ada9d7976c80fd5e8118289|commit]] * Allow bypass of the lockless qdisc to improving performance (for pktgen: +23% with one thread, +44% with 2 threads) [[https://git.kernel.org/linus/dd25296afaf60b5140ddfa9e3d8e5d9df7076754|commit]], [[https://git.kernel.org/linus/c4fef01ba4793a85b2d38a472bddd1e3b56d9585|commit]], [[https://git.kernel.org/linus/d3e0f57501bde8a9585aff79afcffd99e6a5d91c|commit]] * netfilter * Add nfnetlink_hook subsystem to fetch the netfilter hook pipeline configuration. This also includes a new field to annotate the hook type as metadata [[https://git.kernel.org/linus/7b4b2fa37587394fb89fa51a4bea0820a1b37a5d|commit]], [[https://git.kernel.org/linus/e2cf17d3774c323ef6dab6e9f7c0cfc5e742afd9|commit]], [[https://git.kernel.org/linus/cf6b5ffdce5a78b2fcb0e53b3a2487c490bcbf7f|commit]], [[https://git.kernel.org/linus/5302560bb49d38bf6e62a47c44e19ef04bd5344d|commit]], [[https://git.kernel.org/linus/d4fb1f954fc7e2044b64b7d690400b99a6d5775c|commit]], [[https://git.kernel.org/linus/c5c6accd7b7e10434d6afda4f6a5107c480bb4fb|commit]] * Expose TCP and UDP flowtable offload timeouts through sysctl [[https://git.kernel.org/linus/ef8ed5ea091bf21648d0c4c1fa4a962d079eab2b|commit]], [[https://git.kernel.org/linus/975c57504da1114551fdb3a91ed61dda7739613e|commit]] * conntrack: add new sysctl to disable RST check [[https://git.kernel.org/linus/1da4cd82dd180224503e745ccf3220e3490d8897|commit]] * nf_tables: add last expression [[https://git.kernel.org/linus/836382dc24717af203ce06703530528827086955|commit]] * Support for SCTP chunks matching on nf_tables [[https://git.kernel.org/linus/133dc203d77dff617d9c4673973ef3859be2c476|commit]] * nft_nat: allow to specify layer 4 protocol NAT only [[https://git.kernel.org/linus/a33f387ecd5aafae514095c2c4a8c24f7aea7e8b|commit]] * sctp: implement RFC8899: Packetization Layer Path MTU Discovery for SCTP transport [[https://git.kernel.org/linus/745a32117b5a0799ce1dd28d5a74dc2b7bf37692|commit]], [[https://git.kernel.org/linus/d1e462a7a5f359cbb9a0e8fbfafcfb6657034105|commit]], [[https://git.kernel.org/linus/3190b649b4d9391be7bde3edd8e924e451c5d2f6|commit]], [[https://git.kernel.org/linus/d9e2e410ae301d4b540e965daca51de0e65e8a26|commit]], [[https://git.kernel.org/linus/92548ec2f1f92d0c0b60ce59592b645571672568|commit]], [[https://git.kernel.org/linus/fe59379b9ab7ddad157f5379fa47dbf84c9b5e09|commit]], [[https://git.kernel.org/linus/1dc68c194571acc4027de5f8378227d0c0ff7e13|commit]], [[https://git.kernel.org/linus/b87641aff9e772fda15d3386d159646eada2ceef|commit]], [[https://git.kernel.org/linus/83696408317735d105ad86a5470b39879ad2ec4d|commit]], [[https://git.kernel.org/linus/7307e4fa4d295f6dc017fe4b19467c486a1275d7|commit]], [[https://git.kernel.org/linus/237a6a2e318c1ed7429e72f2640054bdda91646f|commit]], [[https://git.kernel.org/linus/f6549bd37b927655c6fecad88428a731cd8a4a34|commit]], [[https://git.kernel.org/linus/d83060759a652ccb64d7486fe38c8347b4a64048|commit]], [[https://git.kernel.org/linus/9e47df005cab63e545671dba8dfd6852fff1c2cf|commit]] * ncsi * Add NCSI Intel OEM command to keep PHY link up [[https://git.kernel.org/linus/27fa107d3b8d13a57cdd7c7a40bd6548d4b9cef8|commit]], [[https://git.kernel.org/linus/abd2fddc94a619b96bf41c60429d4c32bd118e17|commit]], [[https://git.kernel.org/linus/163f5de509a8ec193df94a9b9afbeb1a9e3f46a6|commit]] * Add NCSI Intel OEM command to keep PHY up [[https://git.kernel.org/linus/abd2fddc94a619b96bf41c60429d4c32bd118e17|commit]] * smc: Add SMC statistic support [[https://git.kernel.org/linus/e0e4b8fa533858532f1b9ea9c6a4660d09beb37a|commit]], [[https://git.kernel.org/linus/8c40602b4be17571dfd75102f4f1e690311c5210|commit]], [[https://git.kernel.org/linus/f0dd7bf5e33066e554442c509ef6351728b95b51|commit]], [[https://git.kernel.org/linus/194730a9beb52d2b030ea45e12d94868d4a0e6fd|commit]] * Bluetooth: Increment management interface revision [[https://git.kernel.org/linus/43e59cb7e6077110c4622e61a188e7703e8c7e36|commit]] * SUNRPC * Allow for offlining/removing xprt via sysfs [[https://git.kernel.org/linus/e091853ebdb486fd8bde86b87178fdf3850914fc|commit]], [[https://git.kernel.org/linus/0e65ea43d9c7c038e167b20165a0e9ed1e9cca83|commit]], [[https://git.kernel.org/linus/a8482488a7d6d320f63a9ee1912dbb5ae5b80a61|commit]], [[https://git.kernel.org/linus/c1830a63c79aa90f725ed6feaad097473f2b990d|commit]], [[https://git.kernel.org/linus/5b7eb78486cd9ac58bfbd6d84ea0fe2d9fead03b|commit]], [[https://git.kernel.org/linus/85e39feead948bdf8322c961d7a9bebc20d629f3|commit]], [[https://git.kernel.org/linus/6a2840590b66e4914d583be61e40445386bb5835|commit]], [[https://git.kernel.org/linus/6f081693e7b2ba63422b735684b05a850a6351ba|commit]] * Create sysfs files for chaning the IP address [[https://git.kernel.org/linus/746787489b0c3a879ddc671ce1e0d15e71b0d881|commit]], [[https://git.kernel.org/linus/c441f125de79121b97f1eb08dbfec85c8100a01e|commit]], [[https://git.kernel.org/linus/c5a382ebdbdaac27ec109993e29f9045d70297f2|commit]], [[https://git.kernel.org/linus/572caba402e10b35a080d1b43c0193da364f3a17|commit]], [[https://git.kernel.org/linus/5b9268727f299f87432e8b035e9e8bec8ba13e8d|commit]], [[https://git.kernel.org/linus/d3abc73987fd2a5992a9bdae9f44fa43d1b4db70|commit]], [[https://git.kernel.org/linus/baea99445dd4675a834e8a5987d2f368adb62e6c|commit]], [[https://git.kernel.org/linus/2a338a543163ad6b42f4732396249cea6d3a33c8|commit]], [[https://git.kernel.org/linus/d408ebe04ac58eb370e2d264e88edbab746adda6|commit]], [[https://git.kernel.org/linus/587bc7255d26ca80b58026881db5fb3bf770cc43|commit]], [[https://git.kernel.org/linus/4a09651a6b28748af401a1dd5cf9cea06c3aa329|commit]], [[https://git.kernel.org/linus/0e5590358770ae779f3a8f5c36a3fbde40e344dc|commit]] * Allow for offlining/removing xprt via sysfs [[https://git.kernel.org/linus/e091853ebdb486fd8bde86b87178fdf3850914fc|commit]], [[https://git.kernel.org/linus/0e65ea43d9c7c038e167b20165a0e9ed1e9cca83|commit]], [[https://git.kernel.org/linus/a8482488a7d6d320f63a9ee1912dbb5ae5b80a61|commit]], [[https://git.kernel.org/linus/c1830a63c79aa90f725ed6feaad097473f2b990d|commit]], [[https://git.kernel.org/linus/5b7eb78486cd9ac58bfbd6d84ea0fe2d9fead03b|commit]], [[https://git.kernel.org/linus/85e39feead948bdf8322c961d7a9bebc20d629f3|commit]], [[https://git.kernel.org/linus/6a2840590b66e4914d583be61e40445386bb5835|commit]], [[https://git.kernel.org/linus/6f081693e7b2ba63422b735684b05a850a6351ba|commit]], [[https://git.kernel.org/linus/681d5699cbe734031c125cd5ca91826268af4568|commit]] * WWAN * Add WWAN link creation support [[https://git.kernel.org/linus/8c713dc93ca9a423d6af8849c9254742a1070c37|commit]], [[https://git.kernel.org/linus/00e77ed8e64d5f271c1f015c7153545980d48a76|commit]], [[https://git.kernel.org/linus/88b710532e53de2466d1033fb1d5125aabf3215a|commit]], [[https://git.kernel.org/linus/13adac032982c61bb590669e8e87e51558917ca1|commit]] * link creation improvements [[https://git.kernel.org/linus/f842f48891ad962c1dcac2c162f72862643fc221|commit]], [[https://git.kernel.org/linus/355a4e7e0a231af80fc0f470235dc6747d2e0936|commit]], [[https://git.kernel.org/linus/58c3b421c62edd30b0b660e3e6711ad91842c271|commit]], [[https://git.kernel.org/linus/f492fccf3d62ba8e8b4d75d3f2ab82af25b18ffa|commit]], [[https://git.kernel.org/linus/2f75238014f074daddd79ccc17fa1caf72ff3815|commit]], [[https://git.kernel.org/linus/322a0ba99c50d6abadeda709f0552eb8dac6668c|commit]], [[https://git.kernel.org/linus/9f0248ea476ee59d336d7c8bf1a5d0919d93d030|commit]], [[https://git.kernel.org/linus/ca374290aaade741a4781ae5f6e1ba7515e4e5fa|commit]], [[https://git.kernel.org/linus/83068395bbfcd96db74af75c6dc3a87a4f952220|commit]], [[https://git.kernel.org/linus/699409240389c2994e5fa1cb7d7599129bc7cfdf|commit]] * subsystem improvements [[https://git.kernel.org/linus/f36a111a74e71edbba27d4c0cf3d7bbccc172108|commit]], [[https://git.kernel.org/linus/9ee23f48f6705fff6c23e02c4ab1e6d99369cd05|commit]], [[https://git.kernel.org/linus/b64d76b782264aa91c236c11c72646459b04c301|commit]], [[https://git.kernel.org/linus/64cc80c0ff2eca6a99232fd57d33c8095dfdd878|commit]], [[https://git.kernel.org/linus/392c26f7f133b9f09e5f58db1ce6ef4b3b4df49f|commit]], [[https://git.kernel.org/linus/f458709ff40b0d992fec496952f79c7820dd3fde|commit]], [[https://git.kernel.org/linus/72eedfc4bbc7480ea8fb38d5aebb57eafc03c8d5|commit]], [[https://git.kernel.org/linus/e263c5b2e8912149b49d757511d85a16c5fb432f|commit]], [[https://git.kernel.org/linus/c230035c2f2f6371739f29e56eeb2611172225c8|commit]], [[https://git.kernel.org/linus/504672038b17b76466724dda017618b0c072a922|commit]] * Add WWAN device index sysfs attribute [[https://git.kernel.org/linus/e4e92ee78702b13ad55118d8b66f06e1aef62586|commit]] * Add WWAN port type attribute [[https://git.kernel.org/linus/b3e22e10fdda8e7be3830289a4a63ae8b88d450c|commit]] = Architectures = == X86 == * Improve Minimum Alternate Stack Size [[https://git.kernel.org/linus/7cd60e43a6def40ecb75deb8decc677995970d0b|commit]], [[https://git.kernel.org/linus/939ef713297df2cc910592305aa26af0e87f28ac|commit]], [[https://git.kernel.org/linus/1c33bb0507508af24fd754dd7123bd8e997fab2f|commit]], [[https://git.kernel.org/linus/bdf6c8b84a4fa726c382ef6d3518f3ae123a7ebd|commit]], [[https://git.kernel.org/linus/2beb4a53fc3f1081cedc1c1a198c7f56cc4fc60c|commit]], [[https://git.kernel.org/linus/8919f07276991c7bf0d0802f0356331c5c62f7a2|commit]] * platform * surface: aggregator: Extend user-space interface for events [[https://git.kernel.org/linus/0e8512fab9fd6d78e88931c02a43b04d15566d6b|commit]], [[https://git.kernel.org/linus/4b38a1dcf378f5075884b54dc5afeb9d0dfe7681|commit]], [[https://git.kernel.org/linus/b2763358feb28590f6b52a4c95c94a645dadfb26|commit]], [[https://git.kernel.org/linus/776c53c6a448905d8b9b161805b67f82301bfe91|commit]], [[https://git.kernel.org/linus/e8e298a653856b1f3a2bb7b1fe31d3faa93cc7dc|commit]], [[https://git.kernel.org/linus/cbd224e0ddfe59eb1eb92e436825f3eca4de3c10|commit]], [[https://git.kernel.org/linus/8ae200547aa9dbb1001c22325d251b825113bdb3|commit]] * Add intel_skl_int3472 driver [[https://git.kernel.org/linus/5de691bffe57fd0fc2b4dcdcf13815c56d11db10|commit]] * amd-pmc: Add new acpi id for future PMC controllers [[https://git.kernel.org/linus/83cbaf14275a30f14cf558b09389a1664b173858|commit]] * amd-pmc: Add support for ACPI ID AMDI0006 [[https://git.kernel.org/linus/9422584a601ae8e4af51e890a14a936b2b689628|commit]] * amd-pmc: Add support for logging SMU metrics [[https://git.kernel.org/linus/76620567496237f1f1f54683ec7da1755ee501d7|commit]] * amd-pmc: Add support for logging s0ix counters [[https://git.kernel.org/linus/b9a4fa6978bef902409858737fa180fa7b9346ac|commit]] * dell-privacy: Add support for Dell hardware privacy [[https://git.kernel.org/linus/8af9fa37b8a3637832cbf8fdd9bd828bd5f0de66|commit]] * gigabyte-wmi: add support for B450M S2H V2 [[https://git.kernel.org/linus/1e35b8a7780a0c043cc5389420f069b69343f5d9|commit]] * gigabyte-wmi: add support for B550 Aorus Elite V2 [[https://git.kernel.org/linus/2b2c66f607d00d17f879c0d946d44340bfbdc501|commit]] * gigabyte-wmi: add support for X570 GAMING X [[https://git.kernel.org/linus/b9570f5c9240cadf87fb5f9313e8f425aa9e788f|commit]] * intel-hid: add Alder Lake ACPI device ID [[https://git.kernel.org/linus/a59c7b6c6ff6d5437f293709e766f939d7107266|commit]] * think-lmi: Add WMI interface support on Lenovo platforms [[https://git.kernel.org/linus/a40cd7ef22fbb11229cf982920f4ec96c1f49282|commit]] * think-lmi: Add pending_reboot support [[https://git.kernel.org/linus/95d429206c97cf109591009fa386004191c62c47|commit]] * thinkpad_acpi: Add X1 Carbon Gen 9 second fan support [[https://git.kernel.org/linus/25acf21f3a78a1d2815e605e45924393e039b210|commit]] * touchscreen_dmi: Add info for the Goodix GT912 panel of TM800A550L tablets [[https://git.kernel.org/linus/fcd8cf0e3e48f4c66af82c8e799c37cb0cccffe0|commit]] * Enable Clang LTO for 32-bit as well [[https://git.kernel.org/linus/583bfd484bcc85e9371e7205fa9e827c18ae34fb|commit]] * perf/x86/cstate: Add ICELAKE_X and ICELAKE_D support [[https://git.kernel.org/linus/87bf399f86ecf36cc84fbeb7027a2995af649d6e|commit]] * split lock detection: Add "ratelimit:N" parameter to the split_lock_detect= boot option, to rate-limit the generation of bus-lock exceptions [[https://git.kernel.org/linus/1897907cca5aa22cdfcdb7fb8f0644a6add0877d|commit]], [[https://git.kernel.org/linus/ef4ae6e4413159d2329a172c12e9274e2cb0a3a8|commit]], [[https://git.kernel.org/linus/9d839c280b64817345c2fa462c0027a9bd742361|commit]] * KVM * Allow userspace to handle emulation errors (unknown instructions) [[https://git.kernel.org/linus/19238e75bd8ed8ffe784bf5b37586e77b2093742|commit]] * SVM: add module param to control the #SMI interception [[https://git.kernel.org/linus/4b639a9f82fcf15497d1613a29aa1df798a24029|commit]] * Support write protecting only large pages [[https://git.kernel.org/linus/3ad93562093d764bc22d6460e84ba60d0c57f7ab|commit]] * Add support for XMM fast hypercalls [[https://git.kernel.org/linus/43e5146436099a98fcd30793598d61e582ec6830|commit]], [[https://git.kernel.org/linus/bd38b32053eb1c53ddb7030cf0fc6d700f7f1d82|commit]], [[https://git.kernel.org/linus/5974565bc26d6a599189db7c0b1f79eaa9af8eb9|commit]], [[https://git.kernel.org/linus/d8f5537a8816c8f00ea3103e74b65987963a56c6|commit]] * Hyper-V nested virt enlightenments for SVM [[https://git.kernel.org/linus/a6c776a952175e0fad22110e8d43019f3ac6f9af|commit]], [[https://git.kernel.org/linus/32431fb2538df56693a5852a50013549c827f57c|commit]], [[https://git.kernel.org/linus/3c86c0d3dbb98865a60a0c9d5c3a229af15a8a96|commit]], [[https://git.kernel.org/linus/59d21d67f37481cfde25551ee6a467fa943812b4|commit]], [[https://git.kernel.org/linus/1e0c7d40758bcd45b4af936031144e995f87a7f6|commit]], [[https://git.kernel.org/linus/c4327f15dfc7294b2abde0ea49b3e43eec3cca38|commit]], [[https://git.kernel.org/linus/1183646a67d01ef9c46ac87da1c57dea5f7bb153|commit]] * hyper-v: Fine-grained access check to Hyper-V hypercalls and MSRs [[https://git.kernel.org/linus/f15cdceab543059a9afd9e6277cf15d56d7dfd82|commit]], [[https://git.kernel.org/linus/644f706719f0297bc5f65c8891de1c32f042eae5|commit]], [[https://git.kernel.org/linus/10d7bf1e46dc19d964f0f67d2a6d20df907742d1|commit]], [[https://git.kernel.org/linus/b4128000e2c9b176a449d748dcb083c61d61cc6e|commit]], [[https://git.kernel.org/linus/1561c2cb87ab39400d76998bf7be581c1e57f108|commit]], [[https://git.kernel.org/linus/b80a92ff81587c556da740e9073821b5c3c23b72|commit]], [[https://git.kernel.org/linus/c2b32867f2e7bfa7e7521e417ab8bbd586ac6bcc|commit]], [[https://git.kernel.org/linus/d2ac25d4196da2ff404c88bec480c835995ea69c|commit]], [[https://git.kernel.org/linus/679008e4bbeb12f4905ee0820cd2d0b9d4a21dbb|commit]], [[https://git.kernel.org/linus/a1ec661c3fdc8177a8789a9528d5bcfe0d9fc8a8|commit]], [[https://git.kernel.org/linus/9e2715ca20d7b540a271464b3ac862cf387935c1|commit]], [[https://git.kernel.org/linus/eba60ddae794bdefb9531cb08e30c19a0bc53c15|commit]], [[https://git.kernel.org/linus/978b57475c7795824676122acb75a1dea264b6d1|commit]], [[https://git.kernel.org/linus/9442f3bd9012f37ba2b4ec3ab2d7c248b137391c|commit]], [[https://git.kernel.org/linus/234d01baec5b216b60b560672957470f773ecf78|commit]], [[https://git.kernel.org/linus/0a19c8992db834c9c9e28c5633720d994629539d|commit]], [[https://git.kernel.org/linus/17b6d51771a15c7d8552c3e855b5862b3dce0977|commit]], [[https://git.kernel.org/linus/d66bfa36f9edc5ca8c83206ab39d09091623104e|commit]], [[https://git.kernel.org/linus/1aa8a4184dbde5f50b70b2c706bcfb6b57da9ea7|commit]], [[https://git.kernel.org/linus/4ad81a91119df7c0e868f9e4c82b9159645bc906|commit]], [[https://git.kernel.org/linus/34ef7d7b9c0422316ee2c34c564b222255c91532|commit]], [[https://git.kernel.org/linus/4f532b7f969fcba010703fe21e0a85f662373041|commit]], [[https://git.kernel.org/linus/a60b3c594ef3221275d4fa8aa94e206607ea66f3|commit]], [[https://git.kernel.org/linus/a921cf83cc4c927f29eef1e7a17bff176c74b886|commit]], [[https://git.kernel.org/linus/bb53ecb4d6ea453e55a971295e55dbf76adc0f8c|commit]], [[https://git.kernel.org/linus/d264eb3c14d0e5df49ecab3e8b51caadf78abefa|commit]], [[https://git.kernel.org/linus/445caed0213acef29b9d3822b6906f99860ca9ab|commit]], [[https://git.kernel.org/linus/75a3f4287fdbdca406b5a087cbc67fad313bce7d|commit]], [[https://git.kernel.org/linus/d504df3c913bb91dda41fffaebbb5bfd6d8c4b07|commit]], [[https://git.kernel.org/linus/e2e1cc1fbe54a9520956a4539a3676d2ebf122dd|commit]] * Introduce KVM_{GET|SET}_SREGS2 [[https://git.kernel.org/linus/bcb72d0627e8a3e531021c9bd2a14fae8da63ef3|commit]], [[https://git.kernel.org/linus/a36dbec67e26febc1fc551f4819e3c058b25e79c|commit]], [[https://git.kernel.org/linus/c7313155bf11906ad75ae0edc4a97bf93d69c275|commit]], [[https://git.kernel.org/linus/b222b0b88162bdef4eceb12a79d5edbbdb23dbfd|commit]], [[https://git.kernel.org/linus/0f85722341b0e3a67d0f2d2ae943b9193cb3e1b0|commit]], [[https://git.kernel.org/linus/329675dde93c6f30009dc413197bdf2b971f1e5e|commit]], [[https://git.kernel.org/linus/6dba940352038b56db9b591b172fb2ec76a5fd5e|commit]], [[https://git.kernel.org/linus/158a48ecf776d0ebc916befcb0dc0862f136a31f|commit]] * Implement nested TSC scaling [[https://git.kernel.org/linus/605a140a49099effc069f0fd509db34d91f48496|commit]], [[https://git.kernel.org/linus/805d705ff8f3a05e63ce350ac0c37a3290ed9bb7|commit]], [[https://git.kernel.org/linus/9b399dfd4c60a2249f45f3938b1b9b49394dfe3a|commit]], [[https://git.kernel.org/linus/fe3eb50418174567f6fbfb3d90a95cbd7a0cc17b|commit]], [[https://git.kernel.org/linus/3c0f99366e34c1b45e4908e151089a8bf93fbe71|commit]], [[https://git.kernel.org/linus/307a94c721fed1aaaeee68115df6f7fb8193b23f|commit]], [[https://git.kernel.org/linus/83150f2932ec4712e2630009ac4a585d4aba7a9e|commit]], [[https://git.kernel.org/linus/edcfe54058114cb3782cd2e919c224e14420e76e|commit]], [[https://git.kernel.org/linus/1ab9287add5e265352d18517551abf6d01d004fd|commit]], [[https://git.kernel.org/linus/d041b5ea93352b3d226352a7238a89da2dd7becb|commit]], [[https://git.kernel.org/linus/efe585493f914388de2382fac5ae7bd13c0555a5|commit]] * nVMX: nSVM: Add more statistics to KVM debugfs [[https://git.kernel.org/linus/d5a0483f9f3250fe359224327ca1b4a29d106981|commit]] * perf * Enable I/O stacks to IIO PMON mapping on SNR and ICX [[https://git.kernel.org/linus/f471fac77b41a2573c7b677ef790bf18a0e64195|commit]], [[https://git.kernel.org/linus/c1777be3646b48f6638d8339ad270a27659adaa4|commit]], [[https://git.kernel.org/linus/10337e95e04c9bcd15d9bf5b26f194c92c13da56|commit]] * perf stat: Add Topdown metrics L2 events as default events [[https://git.kernel.org/linus/5f148e7c6ad7f6e693a459a1df741db47a5ab82e|commit]] * perf stat: Enable BPF counters with --for-each-cgroup [[https://git.kernel.org/linus/69e874db4dded0f2fe56ae623d7f54318395c87d|commit]], [[https://git.kernel.org/linus/944138f048f7d7591ec7568c94b21de8df2724d4|commit]], [[https://git.kernel.org/linus/944138f048f7d7591ec7568c94b21de8df2724d4|commit]] * perf top: Add cgroup support for perf top (-G) [[https://git.kernel.org/linus/51f382428c17f172f430f9be8de4246b8f15f97c|commit]] * perf scripting python: Improve general scripting for Intel PT [[https://git.kernel.org/linus/d04c1ff0b3ddd5c0fbbe640996c8eaad279ed1c5|commit]], [[https://git.kernel.org/linus/8271b5095811dd75843715a462a981fd5dfe704c|commit]], [[https://git.kernel.org/linus/3f8e009e01c4ed9f75c10f33936990f3a3d39fcd|commit]], [[https://git.kernel.org/linus/54cd8b03245291c8509f96ed12a55eb1cb7dddf8|commit]], [[https://git.kernel.org/linus/bee272af78525b91c0276f9878d3273dba59948a|commit]], [[https://git.kernel.org/linus/142b05182eaa449bacd419d31d0dbbf24e048dbf|commit]], [[https://git.kernel.org/linus/22cc2f74bbe2174b54d3041ed41424f7d500026d|commit]], [[https://git.kernel.org/linus/0db2134069275d1177c2dd531cbc73578b7ec8ac|commit]], [[https://git.kernel.org/linus/2ede92173faa14ed6a5272b3e7a6dd6daae3b161|commit]], [[https://git.kernel.org/linus/a92bf335fd82eeee0e95705bfd25014ee0c8262e|commit]] * perf intel-pt: Add more support for VMs [[https://git.kernel.org/linus/18f4949427dc80bd9027001d28118cd8d555d890|commit]], [[https://git.kernel.org/linus/856ecd6ab4944b18fd3647c21ad8737d8e736025|commit]], [[https://git.kernel.org/linus/e9d64739635f8db204c9fc81f20ed70751b4e0dd|commit]], [[https://git.kernel.org/linus/2a525f6a5502bfd80568e6befb84053cf650ad25|commit]], [[https://git.kernel.org/linus/83d7f5f1ad0ec6072bb5b4ca32795f0c199424e2|commit]], [[https://git.kernel.org/linus/6aa3afc9c8b7bca75640e5aaa67f04dcb158b325|commit]], [[https://git.kernel.org/linus/335358cc3090d85793c663a625fa1c9195b8670e|commit]], [[https://git.kernel.org/linus/0fc9d338944254561289e8639ac05ebf72b4b082|commit]], [[https://git.kernel.org/linus/5ac35d778a40c9f244a38920247ad41a44c66a02|commit]], [[https://git.kernel.org/linus/31c7e27dae0e15ed466d8acced7e3a536e547b07|commit]], [[https://git.kernel.org/linus/fa8f949d16c09ce51d3fa9827210d1f71d62ed8f|commit]], [[https://git.kernel.org/linus/e3ff42bdebcfeb5f61fcc7a769d642dfc8b923d1|commit]] * Support perf-mem/perf-c2c for AlderLake [[https://git.kernel.org/linus/ddc11da5eb37e27a4b66cddcaf11233ef51b3a79|commit]], [[https://git.kernel.org/linus/d2f327acc638312a96d0c0a20c56c7db945d30d7|commit]], [[https://git.kernel.org/linus/a91ffcf30e0002e6f52d4c2cd9639443e514e88a|commit]], [[https://git.kernel.org/linus/e7ce8d11bfb06a06c1e00830c223514086191649|commit]], [[https://git.kernel.org/linus/4a9086adc329c9460aefc563969b24eed534adba|commit]], [[https://git.kernel.org/linus/a6d9de8427584553b71492071f6ffd7c92ec8b99|commit]], [[https://git.kernel.org/linus/d5a8bd0fcd069819aa48f5e38548e07d5eb3e651|commit]], [[https://git.kernel.org/linus/79e157b00853af0e96d76997a93feec476a23bfa|commit]] * perf vendor events intel: Add core event list for Icelake Server [[https://git.kernel.org/linus/cdb29a8fd0c9fff693cd7b7e14a8f4e9e7cf00ed|commit]] * perf vendor events intel: Add uncore event list for Icelake Server [[https://git.kernel.org/linus/c58972ef285676ec6739bf0713e2fc30df3b4fa6|commit]] * perf vendor events intel: Update event list for Icelake Client [[https://git.kernel.org/linus/71fbc431c19c2306fedf934fa9f267a5bdcdc44b|commit]] * perf vendor events power10: Adds 24x7 nest metric events for power10 platform [[https://git.kernel.org/linus/a3cbcadfdfc330c28a45f06e8f92fd1d59aafa19|commit]] * perf x86 kvm-stat: Support to analyze kvm MSR [[https://git.kernel.org/linus/046b243a6afb74d276ca52a81be62aed9a90672b|commit]] == ARM == * Device Tree Sources * Raspberry Pi 400 [[https://git.kernel.org/linus/1c701accecf21932ebcbd8acacb4557af3797e77|commit]] * Rockchip: RK3568 SoC and EVB, video codecs for rk3036/3066/3188/322x [[https://git.kernel.org/linus/01610a24cefa182b155a17e38cd0b84f8a3f0529|commit]], [[https://git.kernel.org/linus/a3adc0b9071d880dcceb78b5e921843502f272bd|commit]] * Qualcomm: SA8155p Automotive platform (SM8150 derivative), SM8150/8250 enhancements and support for Sony Xperia 1/1II and 5/5II [[https://git.kernel.org/linus/5b85e8f2225c21b68eb93c1c9e071fc3f989de1d|commit]], [[https://git.kernel.org/linus/d0a6ce59ea4e529e30df950e3f0f61533be5301c|commit]], [[https://git.kernel.org/linus/69cdb97ef6529b6b23c81da37bab7b183af7b8ee|commit]] * Qualcomm: New support for Microsoft Surface Duo (SM8150-based), Huawei Ascend G7 [[https://git.kernel.org/linus/d1f781db47a88c8889ca5c258a8f9448e201e430|commit]], [[https://git.kernel.org/linus/55056b229189be2b4b8e636f0566a0b5bfd3c8f8|commit]] * Allwinner: More device bindings for V3s, Forlinx OKA40i-C and !NanoPi R1S H5 boards [[https://git.kernel.org/linus/d0aac8cbbd0ce601ef38317a3f69028b6910bace|commit]], [[https://git.kernel.org/linus/9962cb9be2db877c232aaf00db40125c0d7bf4bc|commit]] * !MediaTek: More device bindings for mt8167, new Chromebook system variants for mt8183 [[https://git.kernel.org/linus/0a9cefe21aec60d58cd1bf68a784c7116d76ef97|commit]], [[https://git.kernel.org/linus/f006bcf1c97200a41c1923ae045fbc153bf49ebe|commit]], [[https://git.kernel.org/linus/6cd7fdc8c53007b9ccf37c86b031552fff5aaa1d|commit]], [[https://git.kernel.org/linus/dd6e3b06214f39cce1aae7698e69706cc038a0ed|commit]], [[https://git.kernel.org/linus/f11f44be2427a601595be1c2f8d6e3a77d3a0f98|commit]] * Renesas: RZ/G2L SoC and EVK added [[https://git.kernel.org/linus/68a45525297b2e9afbd9bba807ddd2c9f69beee6|commit]], [[https://git.kernel.org/linus/690ea5d394eb370973ffcb9ecda6a1855fe87d01|commit]] * Amlogic: !BananaPi BPI-M5 board added [[https://git.kernel.org/linus/976e920183e406726637db925efdf8b407a2d03a|commit]] * Support for GE B1x5v2 and !B1x5Pv2 [[https://git.kernel.org/linus/1fac5db35ee91b88b07f6e062b0c2355fe71b289|commit]] * Add intel-ixp42x-welltech-epbx100 [[https://git.kernel.org/linus/9321a97c8c1cf76ae315cae5fd4c140bc65e2449|commit]] * imx28: Add DTS description of imx28 based XEA board [[https://git.kernel.org/linus/445ae16ac1c580a388d0249cac715e83b7c1d5cb|commit]] * imx: Add i.mx6q !DaSheng COM-9XX SBC board support [[https://git.kernel.org/linus/4b7f6f3b251aaf455b45a8d4904bad0b59da0c8f|commit]] * qcom: Add board support for HK10 [[https://git.kernel.org/linus/1ed34da63a37f773f957174d4b6122f9e08d158c|commit]] * qcom: sc7180: Add pompom rev3 [[https://git.kernel.org/linus/ad6fc14313387d3cddf75d7ff9ae668849006e09|commit]] * qcom: sc7180: Add CoachZ rev3 [[https://git.kernel.org/linus/b502efda6480d7577f9f822fd450d6bc3a4ac2e6|commit]] * ti: k3-am65: Add support for UHS-I modes in MMCSD1 subsystem [[https://git.kernel.org/linus/79b08ae7c411840ea5a9fba349025d217e700576|commit]] * qcom: pmm8155au_2: Add base dts file [[https://git.kernel.org/linus/b557471bb286b5df7eda477041d58b12d4b44219|commit]] * qcom: pmm8155au_1: Add base dts file [[https://git.kernel.org/linus/10489ef12feddd7e663851fc45aeb65855dcf2a8|commit]] * imx: Add i.mx8mm Gateworks gw7901 dts support [[https://git.kernel.org/linus/2b1649a83afc917b66731a4ccaec64eca5f9861d|commit]], [[https://git.kernel.org/linus/bf3605187530d82ece4f22bb1f2ac53d231f41d4|commit]] * tegra: pmc: Add core power domain [[https://git.kernel.org/linus/f880ee9e96887786dc21e9433ede1719bc3b2624|commit]] * tegra: pmc: Add driver state syncing [[https://git.kernel.org/linus/41bafa698ddd07533914f34aeb432e762ed0cd30|commit]] * tegra: regulators: Support core domain state syncing [[https://git.kernel.org/linus/029f7e24a65df641ac843cda8dabe359ff0826eb|commit]] * qcom: rpmhpd: Add SC8180X [[https://git.kernel.org/linus/3b1a0582482c81682960aafe69c87660e4fdf3be|commit]] * qcom: rpmpd: Add MDM9607 RPM Power Domains [[https://git.kernel.org/linus/af32011f76b759d68a6e3005d450ef7b82e1479a|commit]] * qcom: socinfo: Add more IDs [[https://git.kernel.org/linus/9bf8257fefc9d14f589c2a933ba1193cc1912200|commit]] * ARM: imx: add smp support for imx7d [[https://git.kernel.org/linus/e34645f45805d8308866de7b69f117f554605bb6|commit]] * ARM64 * Allow Pointer Authentication to be configured independently for kernel and userspace [[https://git.kernel.org/linus/b27a9f4119afa460289cd327f403e2ec9c8e0511|commit]], [[https://git.kernel.org/linus/d053e71ac8442d4fd24fb85591489813cdb56365|commit]] * firmware: Add initial support for Arm FF-A [[https://git.kernel.org/linus/3fdc0cb59d97f87e2cc708d424f1538e31744286|commit]], [[https://git.kernel.org/linus/e781858488b918e30a6ff28e9eab6058b787e3b3|commit]], [[https://git.kernel.org/linus/3bbfe9871005f38df2955b2e125933edf1d2feef|commit]], [[https://git.kernel.org/linus/714be77e976a4b013b935b3223b2ef68856084d0|commit]], [[https://git.kernel.org/linus/d0c0bce831223b08e5bade2cefc93c3ddb790796|commit]], [[https://git.kernel.org/linus/cc2195fe536c28e192df5d07e6dd277af36814b4|commit]] * Prepare instruction decoder for objtool [[https://git.kernel.org/linus/5f154c4e20d7edd38bddec78f3e0a7628057ef76|commit]], [[https://git.kernel.org/linus/633e5e938fea957577e6db33540a78debf0c5cbe|commit]], [[https://git.kernel.org/linus/72fd723694b6f4f1d1f19f673fb93801d7d1a0e8|commit]], [[https://git.kernel.org/linus/427bfc59e2281eaede70f050062dc31257c46652|commit]], [[https://git.kernel.org/linus/d4b217330d7e0320084ff04c8491964f1f68980a|commit]], [[https://git.kernel.org/linus/54880044c639f9c59346eabe637f9f8f39a112b8|commit]], [[https://git.kernel.org/linus/71766b81de8204a0fb56de3ad1972516bac99f5b|commit]] * String function updates [[https://git.kernel.org/linus/43de30d36742dbbde22f2ad526c3e5a403c271e2|commit]], [[https://git.kernel.org/linus/758602c04409d8c5a092cef570b2de125ce0f2ae|commit]], [[https://git.kernel.org/linus/325a1de81287a3d4ea2b8e6528a534c6c3a7c608|commit]], [[https://git.kernel.org/linus/020b199bc70d98d92e1bbc6a71358d7293ebc5ea|commit]], [[https://git.kernel.org/linus/b6c4ea48415d26ec08fb67fbbd3eefdb1f96ffa6|commit]], [[https://git.kernel.org/linus/285133040e6ce0e6f37db962f2b4dad10ea46da0|commit]], [[https://git.kernel.org/linus/9e51cafd783b22018fb15bfb06d65f69349223a9|commit]], [[https://git.kernel.org/linus/344323e0428b9911406bede6cff23d1482c19eae|commit]] * perf: Add more support on caps under sysfs [[https://git.kernel.org/linus/281e44f5fd4f82d86a2b86f0592c698f7311a674|commit]] * kasan: support specialized outlined tag mismatch checks [[https://git.kernel.org/linus/1cbdf60bd1b74e397d48aa877367cfc621f45ffe|commit]] * MTE support for KVM guest [[https://git.kernel.org/linus/69e3b846d8a753f9f279f29531ca56b0f7563ad0|commit]], [[https://git.kernel.org/linus/ea7fc1bb1cd1b92b42b1d9273ce7e231d3dc9321|commit]], [[https://git.kernel.org/linus/e1f358b5046479d2897f23b1d5b092687c6e7a67|commit]], [[https://git.kernel.org/linus/673638f434ee4a00319e254ade338c57618d6f7e|commit]], [[https://git.kernel.org/linus/f0376edb1ddcab19a473b4bf1fbd5b6bbed3705b|commit]], [[https://git.kernel.org/linus/04c02c201d7e8149ae336ead69fb64e4e6f94bc9|commit]] == POWERPC == * Speedup mremap [[https://git.kernel.org/linus/3bbda69c48d27474a9e6a90cf4680b295a7efa46|commit]], [[https://git.kernel.org/linus/cec6515abbda4bea11ffa2cd700ce062bc07a6d7|commit]], [[https://git.kernel.org/linus/feac00aad12373b994ff4d340ff818792e833a0a|commit]] * sstep: Add emulation support and tests for 'setb' instruction [[https://git.kernel.org/linus/5b75bd763d369e43e6d09e85eaea22fde37c0e89|commit]] * Optimise KUAP on book3s/32[[https://git.kernel.org/linus/91ec66719d4c5c0e7b4e32585b01881660d1bc53|commit]], [[https://git.kernel.org/linus/91bb30822a2e1d7900f9f42e9e92647a9015f979|commit]], [[https://git.kernel.org/linus/7235bb3593781ed022d0714a73c2c0d8eb8a835f|commit]], [[https://git.kernel.org/linus/863771a28e27dc9eaeaa88cea300370d032f0e0f|commit]], [[https://git.kernel.org/linus/882136fb2f5208a35ddad9205b20e5791edd4782|commit]], [[https://git.kernel.org/linus/86f46f3432727933be82f64b739712a6edb9d704|commit]], [[https://git.kernel.org/linus/50d2f104cd9572af476579eae9aa1b38de602ec7|commit]], [[https://git.kernel.org/linus/6b4d630068b0c5cdd6d8e599182b131448e0cb06|commit]], [[https://git.kernel.org/linus/16132529cee586ee9a058bb33cfbdcb5d884f6b3|commit]], [[https://git.kernel.org/linus/9f5bd8f1471d7498c934c0a686fd0997cf872653|commit]], [[https://git.kernel.org/linus/d008f8f8a0c3efe4fe1008a797f9497ea5965e27|commit]], [[https://git.kernel.org/linus/cb2f1fb205cc20695fcaef84baf80d9d3e54c88b|commit]] * 8xx: Allow disabling KUAP at boot time [[https://git.kernel.org/linus/f6025a140ba8dcabdfb8a1e27ddaf44821700dce|commit]] * 44x: Implement Kernel Userspace Exec Protection (KUEP) [[https://git.kernel.org/linus/10248dcba1205042a3a0ea65eb441030702d97cd|commit]] * Enable VAS and NX-GZIP support on PowerVM [[https://git.kernel.org/linus/91cdbb955aa94ee0841af4685be40937345d29b8|commit]], [[https://git.kernel.org/linus/413d6ed3eac387a2876893c337174f0c5b99d01d|commit]], [[https://git.kernel.org/linus/06c6fad9bfe0b6439e18ea1f1cf0d178405ccf25|commit]], [[https://git.kernel.org/linus/1a0d0d5ed5e3cd9e3fc1ad4459f1db2f3618fce0|commit]], [[https://git.kernel.org/linus/3856aa542d90ed79cd5ed4cfd828b1fb04017131|commit]], [[https://git.kernel.org/linus/3b26797350352479f37216d674c8e5d126faab66|commit]], [[https://git.kernel.org/linus/7bc6f71bdff5f8921e324da0a8fad6f4e2e63a85|commit]], [[https://git.kernel.org/linus/8f3a6c92802b7c48043954ba3b507e9b33d8c898|commit]], [[https://git.kernel.org/linus/540761b7f51067d76b301c64abc50328ded89b1c|commit]], [[https://git.kernel.org/linus/f33ecfde30ce6909fff41339285e0274bb403fb8|commit]], [[https://git.kernel.org/linus/ca77d48854177bb9749aef7329201f03b2382fbb|commit]], [[https://git.kernel.org/linus/b22f2d88e435cdada32581ca1f11b9806adf459a|commit]], [[https://git.kernel.org/linus/6d0aaf5e0de00491de136f387ebed55604cedebe|commit]], [[https://git.kernel.org/linus/7da00b0e71334aa1e3d8db1cc1f40eb47cb1e188|commit]], [[https://git.kernel.org/linus/b4ba22114c78de48fda3818f569f75e97d58c719|commit]], [[https://git.kernel.org/linus/8c099490fd2bd3b012b3b6d0babbba3b90e69b55|commit]], [[https://git.kernel.org/linus/99cd49bb39516d1beb1c38ae629b15ccb923198c|commit]] * Further Strict RWX support [[https://git.kernel.org/linus/1f9ad21c3b384a8f16d8c46845a48a01d281a603|commit]], [[https://git.kernel.org/linus/71a5b3db9f209ea5d1e07371017e65398d3c6fbc|commit]], [[https://git.kernel.org/linus/4fcc636615b1a309b39cab101a2b433cbf1f63f1|commit]], [[https://git.kernel.org/linus/6a3a58e6230dc5b646ce3511436d7e74fc7f764b|commit]], [[https://git.kernel.org/linus/bc33cfdb0bb84d9e4b125a617a437c29ddcac4d9|commit]], [[https://git.kernel.org/linus/62e3d4210ac9c35783d0e8fc306df4239c540a79|commit]], [[https://git.kernel.org/linus/c35717c71e983ed55d61e523cbd11a798429bc82|commit]], [[https://git.kernel.org/linus/4d1755b6a762149ae022a32fb2bbeefb6680baa6|commit]], [[https://git.kernel.org/linus/c988cfd38e489d9390d253d4392590daf451d87a|commit]] * Add support for Microwatt soft-core [[https://git.kernel.org/linus/53d143fe08c24c2ce44ee329e41c2a6aad57ebb5|commit]], [[https://git.kernel.org/linus/151b88e8482167f6eb3117d82e4905efb5e72662|commit]], [[https://git.kernel.org/linus/0d0f9e5f2fa7aacf22892078a1065fa5d0ce941b|commit]], [[https://git.kernel.org/linus/aa9c5adf2f61da39c92280d9336e091852e292ff|commit]], [[https://git.kernel.org/linus/48b545b8018db61ab4978d29c73c16b9fbfad12c|commit]], [[https://git.kernel.org/linus/c25769fddaec13509b6cdc7ad17458f239c4cee7|commit]], [[https://git.kernel.org/linus/4a1511eb342bd80c6ea0e8a7ce0bbe68aac96ac5|commit]], [[https://git.kernel.org/linus/c93f80849bdd9b45d834053ae1336e28f0026c84|commit]], [[https://git.kernel.org/linus/4a21192e2796c3338c4b0083b494a84a61311aaf|commit]] * Fast interrupt exits [[https://git.kernel.org/linus/9a3ed7adcabce24a85fbe05f54e762b18756ec22|commit]], [[https://git.kernel.org/linus/bf9155f1970c4dbf9ec6b87d3688433bd494a4e1|commit]], [[https://git.kernel.org/linus/1df7d5e4baeac74d14c1bee18b2dff9302b3efbc|commit]], [[https://git.kernel.org/linus/59dc5bfca0cb6a29db1a50847684eb5c19f8f400|commit]], [[https://git.kernel.org/linus/e754f4d13e3919aafa485657599907aa63b9a40c|commit]], [[https://git.kernel.org/linus/dd152f70bdc1b91445b10c65ac874b90c93fb3b5|commit]], [[https://git.kernel.org/linus/63e40806eea984f770c992120bbfd71b589ea580|commit]], [[https://git.kernel.org/linus/f23699c93becd746295aaa506537882a46a62219|commit]], [[https://git.kernel.org/linus/862fa563524b9f92d7e89fe332732bd3421772db|commit]], [[https://git.kernel.org/linus/9d1988ca87dd90ecf80a0601c7fd13071fbb1a83|commit]], [[https://git.kernel.org/linus/13799748b957bc5659f97c036224b0f4b42172e2|commit]], [[https://git.kernel.org/linus/f84aa284947f325c5697d35b92abd2047224f24b|commit]], [[https://git.kernel.org/linus/a214ee8802adb864d175ea6ca4176223bcc11d2b|commit]], [[https://git.kernel.org/linus/99f98f849cf13e5fac532979ccdb77dff07665db|commit]], [[https://git.kernel.org/linus/61eece2d1707796fd45225ea3d20e9289251311c|commit]], [[https://git.kernel.org/linus/ae58b1c645895c28ca155843db6788d57ea99e11|commit]] * papr_scm: Add support for reporting dirty-shutdown-count [[https://git.kernel.org/linus/de21e1377c4fe65bfd8d31e446482c1bc2232997|commit]] * xmon: Add support for running a command on all cpus in xmon [[https://git.kernel.org/linus/b8ee3e6d6c5eec7e66de82449382f1a206db2046|commit]] * Implement huge VMAP and VMALLOC on powerpc 8xx [[https://git.kernel.org/linus/79c1c594f49a88fba9744cb5c85978c6b1b365ec|commit]], [[https://git.kernel.org/linus/c742199a014de23ee92055c2473d91fe5561ffdf|commit]], [[https://git.kernel.org/linus/f7ee1f13d606c1b1be3bdaf1609f3991bc06da87|commit]], [[https://git.kernel.org/linus/3382bbee0464bf31e63853c6ec2a83ead77a01cc|commit]], [[https://git.kernel.org/linus/a6a8f7c4aa7eb50304b5c4e68eccd24313f3a785|commit]] * Book3S: C-ify the P9 entry/exit code [[https://git.kernel.org/linus/f36011569b90b3973f07cea00c5872c4dc0c707f|commit]], [[https://git.kernel.org/linus/f33e0702d98cc5ff21f44833525b07581862eb57|commit]], [[https://git.kernel.org/linus/31c67cfe2a6a5a7364dc1552b877c6b7820dd556|commit]], [[https://git.kernel.org/linus/04ece7b60b689e1de38b9b0f597f8f94951e4367|commit]], [[https://git.kernel.org/linus/69fdd67499716efca861f7cecabdfeee5e5d7b51|commit]], [[https://git.kernel.org/linus/1b5821c630c219e3c6f643ebbefcf08c9fa714d8|commit]], [[https://git.kernel.org/linus/e2762743c6328dde14290cd58ddf2175b068ad80|commit]], [[https://git.kernel.org/linus/023c3c96ca4d196c09d554d5a98900406e4d7ecb|commit]], [[https://git.kernel.org/linus/413679e73bdfc2720dc2fa2172b65b7411185fa7|commit]], [[https://git.kernel.org/linus/6ffe2c6e6dcefb971e4046f02086c4adadd0b310|commit]], [[https://git.kernel.org/linus/09512c29167bd3792820caf83bcca4d4e5ac2266|commit]], [[https://git.kernel.org/linus/48013cbc504e064d2318f24482cfbe3c53e0a812|commit]], [[https://git.kernel.org/linus/9dc2babc185e0a24fbb48098daafd552cac157fa|commit]], [[https://git.kernel.org/linus/89d35b23910158a9add33a206e973f4227906d3c|commit]], [[https://git.kernel.org/linus/c00366e2375408e43370cd7981af3354f7c83ed3|commit]], [[https://git.kernel.org/linus/6d770e3fe9a120560cda66331ce5faa363400e97|commit]], [[https://git.kernel.org/linus/a32ed1bb70723ec7a6c888b6c7071d516cca0e8f|commit]], [[https://git.kernel.org/linus/68e3baaca8c56bbb336d2215f201f4047ce736e5|commit]], [[https://git.kernel.org/linus/edba6aff4f2c3893e168df6a2e9a20f3c39b0b30|commit]], [[https://git.kernel.org/linus/41f779917669fcc28a7f5646d1f7a85043c9d152|commit]], [[https://git.kernel.org/linus/2e1ae9cd56f8616a707185f3c6cb7ee2a20809e1|commit]], [[https://git.kernel.org/linus/aaae8c79005846eeafc7a0e5d3eda4e34ea8ca2e|commit]], [[https://git.kernel.org/linus/9769a7fd79b65a6a6f8362154ab59c36d0defbf3|commit]], [[https://git.kernel.org/linus/dcbac73a5b374873bd6dfd8a0ee5d0b7fc844420|commit]], [[https://git.kernel.org/linus/2ce008c8b25467ceacf45bcf0e183d660edb82f2|commit]], [[https://git.kernel.org/linus/cbcff8b1c53e458ed4e23877048d7268fd13ab8a|commit]], [[https://git.kernel.org/linus/a9aa86e08b3a0b2c273cdb772283c872e55f14bf|commit]], [[https://git.kernel.org/linus/6165d5dd99dbaec7a309491c3951bd81fc89978d|commit]], [[https://git.kernel.org/linus/ac3c8b41c27ea112daed031f852a4b361c11a03e|commit]], [[https://git.kernel.org/linus/079a09a500c399f804effcf9bb49214cdfa698e5|commit]], [[https://git.kernel.org/linus/0bf7e1b2e9a496e1ebca9e3e1f53c7e98add4417|commit]], [[https://git.kernel.org/linus/fae5c9f3664ba278137e54a2083b39b90c64093a|commit]] * Support for H_RPT_INVALIDATE in PowerPC KVM [[https://git.kernel.org/linus/f09216a190a4c2f62e1725f9d92e7c122b4ee423|commit]], [[https://git.kernel.org/linus/d6265cb33b710789cbc390316eba50a883d6dcc8|commit]], [[https://git.kernel.org/linus/f0c6fbbb90504fb7e9dbf0865463d3c2b4de49e5|commit]], [[https://git.kernel.org/linus/53324b51c5eee22d420a2df68b1820d929fa90f3|commit]], [[https://git.kernel.org/linus/b87cc116c7e1bc62a84d8c46acd401db179edb11|commit]], [[https://git.kernel.org/linus/81468083f3c76a08183813e3af63a7c3cea3f537|commit]] == RISCV == * Add THP support [[https://git.kernel.org/linus/f5397c3ee0a3e2ca0a6d66d079ffcd5386b45b81|commit]], [[https://git.kernel.org/linus/141682f5b9d658b5fba7c33cf8574329a7840cdc|commit]], [[https://git.kernel.org/linus/c3b2d67046d236edb45eed5ca561c62ee7baa788|commit]], [[https://git.kernel.org/linus/e88b333142e4aba7410d6d3292ad97b3a8588bfe|commit]] * mremap speedup [[https://git.kernel.org/linus/3332f4190674114e08daaf6859c11a7e464bceff|commit]] * Add mem kernel parameter support [[https://git.kernel.org/linus/c9811e379b211c67ba29fb09d6f644dd44cfcff2|commit]] * Enable KFENCE for riscv64 [[https://git.kernel.org/linus/47513f243b452a5e21180dcf3d6ac1c57e1781a6|commit]] * Add VMAP_STACK overflow detection [[https://git.kernel.org/linus/31da94c25aea835ceac00575a9fd206c5a833fed|commit]] == S390 == * AP: support new dynamic AP bus size limit [[https://git.kernel.org/linus/bd39654a2282c1a51c044575a6bc00d641d5dfd1|commit]] * ap/zcrypt: notify userspace with online, config and mode info [[https://git.kernel.org/linus/df6f508c68dbc65def0098cbdf8de7683ae551d2|commit]] * cpumf: Allow concurrent access for CPU Measurement Counter Facility [[https://git.kernel.org/linus/a029a4eab39e4bf542907a3263773fce3d48c983|commit]] * vdso: add minimal compat vdso [[https://git.kernel.org/linus/779df2248739b6308c03b354c99e4c352141e3bc|commit]] * boot: add zstd support [[https://git.kernel.org/linus/7b034d9c1b08b3d06ad712283c1115a7fe39e354|commit]] * KVM: stats: Support binary stats retrieval for a VCPU [[https://git.kernel.org/linus/ce55c049459cff0034cc1bcfdce3bf343a2d6317|commit]] == UML == * PCI support. It communicates with the outside (of UML) with virtio, which we previously added using vhost-user, and then offers a PCI bus to the inside system, where normal PCI probing etc. happens, but all config space & IO accesses are forwarded over virtio [[https://git.kernel.org/linus/0bbadafdc49d11a1836e5946f517d18cceaea6c8|commit]], [[https://git.kernel.org/linus/ca2e334232b6cd4ae5af9da2df83c009d042aefb|commit]], [[https://git.kernel.org/linus/2efea7dfaa67eba020e88bcb07a10030de63dfa5|commit]], [[https://git.kernel.org/linus/fbb42e7fe2c4962cb51776fff5462e6264d9716b|commit]], [[https://git.kernel.org/linus/33c7d0616a0482def19d7f981d4eaa429086c771|commit]], [[https://git.kernel.org/linus/d6b399a0e02a9063a5812af6cb8b657a4a1ecf68|commit]], [[https://git.kernel.org/linus/a5ab7c8467f1934236e33d5fa1c3c6de831a6648|commit]], [[https://git.kernel.org/linus/68f5d3f3b6543266b29e047cfaf9842333019b4c|commit]], [[https://git.kernel.org/linus/43c590cb86665be702c0af0231a10ec813df9cfd|commit]] * Allow not setting extra rpaths in the linux binary [[https://git.kernel.org/linus/386093c68ba3e8bcfe7f46deba901e0e80713c29|commit]] * Add support for host CPU flags and alignment [[https://git.kernel.org/linus/d8fb32f4790f2a286e58db8548016378ac35fc6f|commit]], [[https://git.kernel.org/linus/c0ecca6604b80e438b032578634c6e133c7028f6|commit]], [[https://git.kernel.org/linus/dd3035a21ba7ccaa883d7107d357ad06320d78fc|commit]] == M68K == * Replace macide driver with generic platform drivers [[https://git.kernel.org/linus/cabd10be0b9e4bf043dc828321875b937b2aa7ca|commit]] * Replace q40ide driver with pata_falcon and falconide [[https://git.kernel.org/linus/44b1fbc0f5f30e66a56d29575349f0b1ebe2b0ee|commit]] == MIPS == * ath79: ar9331: Add !OpeneEmbed SOM9331 Board [[https://git.kernel.org/linus/cbafa54aa2ae23939846e150ad4ba98c784f6395|commit]] = Drivers = == Graphics == * Add simpledrm driver, a DRM driver for simple-framebuffer framebuffers as provided by the kernel's boot code. This driver enables basic graphical output on many different graphics devices that are provided by the platform (e.g., EFI, VESA, embedded framebuffers) [[https://git.kernel.org/linus/11e8f5fd223bd4d33fa10527bad3fe48469a15df|commit]] * Mark AGP ioctls as legacy [[https://git.kernel.org/linus/04dfe19a5ed683e91d8285df5be1dbde2f2f39af|commit]] * HDMI infoframe signal colorimetry support [[https://git.kernel.org/linus/e057b52c1d90e2898fdc01c95d21bd70c81b968a|commit]], [[https://git.kernel.org/linus/72921cdf8ac248c904e3883418d2f74f45028222|commit]], [[https://git.kernel.org/linus/bccd5c5102a97d62b6339ebbea5b3f805ba13c14|commit]] * Remove DRM_KMS_FB_HELPER config option * 16bpc fixed point format fourcc * Intel * XeLPD Display IP preperation work * (FEATURED) ADL-P enablement patches * Disable mmap ioctl for discerte GPUs * Start enabling HuC loading for Gen12+ * Initial TTM support for Discrete GPUs * ADL-S PCI ID update * Initial LMEM support for DG1 [[https://git.kernel.org/linus/2bc9c04ea7020df3a98682f12c50e38870d3104a|commit]], [[https://git.kernel.org/linus/36150bba44329d7a96e58498bfc91fee9a2de08c|commit]], [[https://git.kernel.org/linus/710217292a61110a8ccf010cf6886d25e34bf024|commit]], [[https://git.kernel.org/linus/357814f878f97a82fd7b4146e1a50822847c4ed7|commit]], [[https://git.kernel.org/linus/ebcb40298947bdb0622e53c69734e6b4fb64b348|commit]], [[https://git.kernel.org/linus/2459e56fd8af0b47fcbfbdff2fdc02e4077680ec|commit]], [[https://git.kernel.org/linus/4f869f1dbd7eac42f3d4b129b8c941de54de77bf|commit]], [[https://git.kernel.org/linus/0e997a36ecb61b161a22980ec9240ee7537f3f62|commit]], [[https://git.kernel.org/linus/0a46be95c282956a9d3229a46e33ba701c26594c|commit]] * amdgpu * Aldebaran updates + initial SR-IOV * (FEATURED) New GPU: Beige Goby support [[https://git.kernel.org/linus/6f1695918c2ad0e1abc9d9450285e6ee3b938c85|commit]], [[https://git.kernel.org/linus/2542e3c654f2e513020df5729d51ac2e2e1ae913|commit]], [[https://git.kernel.org/linus/b41f5b7ab02667780939c533618d76582df605a6|commit]], [[https://git.kernel.org/linus/f7b97efef6dc86ca5b82790bee35c0956d9e471d|commit]], [[https://git.kernel.org/linus/d2bfc50de286ae69f9184e031a528c8976345e1e|commit]], [[https://git.kernel.org/linus/8573035a95f526e88535b3f9ff856e468572989f|commit]], [[https://git.kernel.org/linus/fd5b4b44e453c1ba850bedb197c38310f3379299|commit]], [[https://git.kernel.org/linus/ece6fb068d6952811434c921a7b2a7a7e13a54ac|commit]], [[https://git.kernel.org/linus/aa2caa2ad6b88a31ccefa50518d130a99afffba0|commit]], [[https://git.kernel.org/linus/2d527ea6fd32a8656042d9699c54e302282c0ce3|commit]], [[https://git.kernel.org/linus/a1dede364b998b629df32d10d2ef15844854e14d|commit]], [[https://git.kernel.org/linus/898319ca1e17232e7e46974969e1cc1b1eadbc2e|commit]], [[https://git.kernel.org/linus/8760403e1965d324779dee922158bde145b60b2d|commit]], [[https://git.kernel.org/linus/67b35b08e7a1fb8dc6f6754c7f6e4b3a4bfe4003|commit]], [[https://git.kernel.org/linus/5663da86c90dc09c654be636ecebc66dbdda42a8|commit]], [[https://git.kernel.org/linus/afee60e4c54b7d2f4db8d938b0621bfdb486c558|commit]], [[https://git.kernel.org/linus/0e5f4b098888dc559608d09662e1a32491aa7398|commit]], [[https://git.kernel.org/linus/5cf607cc357d20c0e03d377eedeb872872291e99|commit]], [[https://git.kernel.org/linus/c86eb51705ae473e5ecbb349b62e064bb870da16|commit]], [[https://git.kernel.org/linus/4d3526690a4b94dc3eddf8ff51acf4a147198d4f|commit]], [[https://git.kernel.org/linus/c0729819104a166b561019f77c18b8ddb8b4e94f|commit]], [[https://git.kernel.org/linus/77a3e25102c335e5c0be5caac538630157bc7083|commit]], [[https://git.kernel.org/linus/3df8ecc8a1de88098a75c860504d14317c5f6200|commit]], [[https://git.kernel.org/linus/f703d4b6f206881be6cb4e66a3c7c2aea5b12cd5|commit]], [[https://git.kernel.org/linus/09c31c778daf3bd66910760d25cb1599affac37b|commit]], [[https://git.kernel.org/linus/5ed7715dbb369e3b0e10875040cbb1efe1b16e03|commit]], [[https://git.kernel.org/linus/fbe8115c6ab77eecbabbac23379132ec5e8b273a|commit]], [[https://git.kernel.org/linus/7077b19a38240abe4d76d688e52681ad1ec47304|commit]], [[https://git.kernel.org/linus/bc6bd46bc370a6c05f63afcf8e028bf82d172faa|commit]], [[https://git.kernel.org/linus/d75caec8a4540b66c4521a1e4cd7e0e8e65291fe|commit]], [[https://git.kernel.org/linus/147de218c23186f403922d7ea4cb168076224830|commit]], [[https://git.kernel.org/linus/5d36b865e4f77869468d07387672adf08b351a33|commit]], [[https://git.kernel.org/linus/170c193ffd97979080e437eba72f337e403a1ef6|commit]], [[https://git.kernel.org/linus/a764bef36de06b45f52550c9c5575eca395dbf48|commit]], [[https://git.kernel.org/linus/e47e4c0e4f1bde175dff777943c5b42b0c62dcc1|commit]], [[https://git.kernel.org/linus/d69d278fc72fb844b60720160a9fe53412afa4a2|commit]], [[https://git.kernel.org/linus/ac79f42a72175a99f360e78c790cfe3e7148467f|commit]], [[https://git.kernel.org/linus/ece3cbadb4f5580ebc2e612ca822dfa3e24af0e5|commit]], [[https://git.kernel.org/linus/2db8378f098e390057d90cb1b815afcdb17b6979|commit]], [[https://git.kernel.org/linus/8198ace7a074de4dfdc10885ccf081476b50d41b|commit]], [[https://git.kernel.org/linus/cd6d421e3d1ad5926b74091254e345db730e7706|commit]], [[https://git.kernel.org/linus/015b448985a43e897d3fe82a691071578cd103d7|commit]], [[https://git.kernel.org/linus/656fe9b6566323eefc0fbb3b8b4b2450e0191f12|commit]], [[https://git.kernel.org/linus/ddaed58b577da70e01ea6316836abd18b9f2cea3|commit]], [[https://git.kernel.org/linus/fa5d21edbbc16dd2212d49bb59018d3221c0be3d|commit]], [[https://git.kernel.org/linus/e5fd073fd463670a7698de429da6b01bf0c2abd9|commit]], [[https://git.kernel.org/linus/ac87f94294530bae182044a237110676a7f911e7|commit]], [[https://git.kernel.org/linus/258ec890cc509c468638ce18a6ed48a058d7f49a|commit]] * (FEATURED) New GPU: Yellow Carp support [[https://git.kernel.org/linus/02680c23d7b3febe45ea3d4f9818c2b2dc89020a|commit]], [[https://git.kernel.org/linus/ee9236b78b2155544ece975c14f424f518d18bc8|commit]], [[https://git.kernel.org/linus/90a187d26f526f389525ce98c625c0d88eafe430|commit]], [[https://git.kernel.org/linus/8bf84f60c53e80e26ce798c73d2f46d43d5c0da0|commit]], [[https://git.kernel.org/linus/cdf9979be9769f96693a70b037f6e14115e99b68|commit]], [[https://git.kernel.org/linus/e79907216b7466e49db6b525f2de7a69756554f2|commit]], [[https://git.kernel.org/linus/f82e7e49a6a020e4c0c6032a72e1706df926c309|commit]], [[https://git.kernel.org/linus/c817cfa31349f2b71a823ff1d5a3d3e8d6e728af|commit]], [[https://git.kernel.org/linus/531d6e5de836335086270a4dd8aa6d201b6b712a|commit]], [[https://git.kernel.org/linus/bbbdc9739efa8edc5bf0e34c821f4ea5609de096|commit]], [[https://git.kernel.org/linus/e88d68e106a7d3ba8d8017c524600fe1d9bd794c|commit]], [[https://git.kernel.org/linus/5c462ca9a074ea13a83fcf0a21ed6bb780cc2a71|commit]], [[https://git.kernel.org/linus/bf9d4e88c28b397ec6ec289c592ed41b552b8929|commit]], [[https://git.kernel.org/linus/011b514fd8e5d19f78e7216587577b51ec5e4373|commit]], [[https://git.kernel.org/linus/385bb92fdc5813c5f6a8168d6bba8680f2c1d0de|commit]], [[https://git.kernel.org/linus/52dfd6c47e8e66cb859f5b804b4ee23fa8d07a6b|commit]], [[https://git.kernel.org/linus/e1aeab8a211502d44a4c9ba0104e570473de0bd0|commit]], [[https://git.kernel.org/linus/20761d0a797931356b3adf4240d72fde0be5fdbf|commit]], [[https://git.kernel.org/linus/f50740be5e64d25e3812a315d3ab2369fd6ebebf|commit]], [[https://git.kernel.org/linus/b4bc9f10c740c8fb3d78e5ac44c1604a5b84cd98|commit]], [[https://git.kernel.org/linus/120a6db47296ed56d821c5914f703c5d51bd416b|commit]], [[https://git.kernel.org/linus/cba00ce82d348970cf20efaa042e0d4faa821217|commit]], [[https://git.kernel.org/linus/e15a5fb9b6ac2556a4fe59dba5faa34c695e8b73|commit]], [[https://git.kernel.org/linus/bea75349945f4a446d29e434dad40ec78ff5fcbc|commit]], [[https://git.kernel.org/linus/1b3869386e57bd3ea4ef47226a0f08f2b9fcfb30|commit]], [[https://git.kernel.org/linus/04a69d20a09322b26d2af6bae56ece26e20dbdf7|commit]], [[https://git.kernel.org/linus/903bb18bcda39fb0929aeea84a93d74a4787cd3c|commit]], [[https://git.kernel.org/linus/94adc46fb01c3276d51424d5fd0f68ce4e870abf|commit]], [[https://git.kernel.org/linus/e44510e24e12ff3d02be4445d8c5a9e2d7699c17|commit]], [[https://git.kernel.org/linus/9c6c48e623825727ff98baae016fa02805dd4e03|commit]], [[https://git.kernel.org/linus/83ae09b52fc1da2d0082708f5561e50417c2e8c8|commit]], [[https://git.kernel.org/linus/fd0a316e21c2eea6e200e570b0d9cb600ad3e748|commit]], [[https://git.kernel.org/linus/647f007937a624ed7e213bb89deb0903b1d80799|commit]], [[https://git.kernel.org/linus/999dc9c520671b4c2247626c1d44318691896c25|commit]], [[https://git.kernel.org/linus/a885bea764f58739a92b0fb20780105795ca5e4e|commit]], [[https://git.kernel.org/linus/f1e9aa65f8727c26ae0ea792898ffda45b203c67|commit]], [[https://git.kernel.org/linus/6bd955723eb48315aa736914cf20dc4e74ff6cce|commit]], [[https://git.kernel.org/linus/b7dd14c730e490cb86c760f4dd44b9c7721390ff|commit]], [[https://git.kernel.org/linus/db72c3fac913058b3c6c379a904ceb79c78b9659|commit]], [[https://git.kernel.org/linus/3975cd8f7c257321bbbba5a740db0eb254c93f58|commit]], [[https://git.kernel.org/linus/3d417b585792998da570ae75cd505bd70d2c813b|commit]], [[https://git.kernel.org/linus/737a9f860f9791c83b82860740a05de9d64305db|commit]], [[https://git.kernel.org/linus/ee8d893f0fee658327bedef106b63427361d95dd|commit]], [[https://git.kernel.org/linus/54f4f6f3591dd322ddf8abaf8acafda6efccee80|commit]], [[https://git.kernel.org/linus/948b1216c9993ca21c474f815f276f572b04fd78|commit]], [[https://git.kernel.org/linus/c16e87d6f43184dc32d3ba1ceca8081d6aab0269|commit]], [[https://git.kernel.org/linus/bb763b5f8efda540a35fd4ba5ca7d27aeb5162a9|commit]], [[https://git.kernel.org/linus/de8d6375e34be4d2e463ebbab53f6f799678bee6|commit]], [[https://git.kernel.org/linus/77755dd32efa3896c784ea5069c9b7141446708a|commit]], [[https://git.kernel.org/linus/4cea0fc9816add710cf31d4704ec27d8b59129e4|commit]], [[https://git.kernel.org/linus/d54e9e70f5e86e510eac888a683587136455444e|commit]], [[https://git.kernel.org/linus/a831bafa00c390e99d204bf4eaf45ddc47de7e0d|commit]], [[https://git.kernel.org/linus/d70b6842bd649c641d962aebb26a773225eb98e9|commit]], [[https://git.kernel.org/linus/2f6888afded8a96cf558067cd5366b0dce8812a3|commit]], [[https://git.kernel.org/linus/0b8b1c4d1a422b6f89918a15d9586de8d5795f46|commit]], [[https://git.kernel.org/linus/a06370edff72f2ef9cb1b3c73701f53deaf7756d|commit]], [[https://git.kernel.org/linus/907b3436f19b2d03f173a46b4efdf605fd7af90b|commit]], [[https://git.kernel.org/linus/4b161967529c921d14849b3cc493d6234976b7f2|commit]], [[https://git.kernel.org/linus/3df43e65e7cbf3760b1a4f685ea51a19b2dc988e|commit]], [[https://git.kernel.org/linus/40954754f722db4bebaf2ffc201ab1702a272494|commit]], [[https://git.kernel.org/linus/bd8dcea93a7d45a3366b5f3e6c341a677ff90acf|commit]], [[https://git.kernel.org/linus/9df5b9bd8b69d27c007ed67ca2cf8495e8f848ae|commit]], [[https://git.kernel.org/linus/b3accd6f6642699cc50bcf9a43d4c5f878f23eee|commit]], [[https://git.kernel.org/linus/0cf6faafc43d46b4b3714159c7a9e8ecd2b11bd6|commit]], [[https://git.kernel.org/linus/6c83a0151b8f028eedd51f618a17cb838c11d217|commit]], [[https://git.kernel.org/linus/7d38d9dc4ecc44e210a602f6e99d0831589f6dd8|commit]], [[https://git.kernel.org/linus/203ed53f658ac1c1d842648d8acae7f393de7f09|commit]], [[https://git.kernel.org/linus/bdc974cfd78bbb427f6d84d652fe5b74350d9578|commit]], [[https://git.kernel.org/linus/753625643e218eb72a6e7b7df87db595a446931a|commit]], [[https://git.kernel.org/linus/d997ea5c58bb1c05df9e1f6eb030f6647d938eac|commit]], [[https://git.kernel.org/linus/118a331516581c3acf1279857b0f663a54b7f31b|commit]], [[https://git.kernel.org/linus/d8a2b4f3a9fc16cd8888e94440e03347a2b1e5e7|commit]], [[https://git.kernel.org/linus/cbaf919f3313af6a8415076f315d63d0cda1635e|commit]], [[https://git.kernel.org/linus/110d3968fe9508142cb76b530d141209efa169a8|commit]], [[https://git.kernel.org/linus/ba5a5371812e1f177414d30a9ce9691017cf30b6|commit]], [[https://git.kernel.org/linus/74458c081fcfb0423877e630de2746daefdb16e4|commit]], [[https://git.kernel.org/linus/ef22ccbcfbc9f474d3448f2d5e53dc6a51f2f62d|commit]], [[https://git.kernel.org/linus/56546ffc08fee516a84cbe2cc7f216302a170bb5|commit]], [[https://git.kernel.org/linus/b04cb1924cba734f2a3eb7931f8266b3b6c27637|commit]], [[https://git.kernel.org/linus/809fe88d83434b88899425511e86e7edf354ce6d|commit]], [[https://git.kernel.org/linus/bf62221e9d0e1e4ba50ab2b331a0008c15de97be|commit]], [[https://git.kernel.org/linus/fcffbcf48df325e39e4f50c6264b39d0de60e34a|commit]], [[https://git.kernel.org/linus/64b1d0e8d5002f5b9e898ea543f75e55e3aa28ee|commit]], [[https://git.kernel.org/linus/bae1f0b8a5b189e5cdbb89d6995f6117d5bb8126|commit]], [[https://git.kernel.org/linus/2083640f0d5bf9b3c4432b6dae9885a3bd604ce6|commit]], [[https://git.kernel.org/linus/926d6972efb6c51bae1c47dea2635defdefb2781|commit]], [[https://git.kernel.org/linus/1ebcaebdb51514689daddbc306b0943afa5b0130|commit]], [[https://git.kernel.org/linus/38ddc4babe032e67a554ef46e398aac1af5f724e|commit]], [[https://git.kernel.org/linus/c8b73f7fdbb117bc839559a8e8f495b700f043af|commit]], [[https://git.kernel.org/linus/27f5355f5d9706dfc1c2542253689f421008c969|commit]] * PCIe ASPM support [[https://git.kernel.org/linus/0064b0ce85bb86d8a6fa066323f6318956c2dd59|commit]] * Renoir TMZ enablement [[https://git.kernel.org/linus/e2329e74a615cc58b25c42b7aa1477a5e3f6a435|commit]] * Initial multiple eDP panel support * Use fdinfo to track devices/process info [[https://git.kernel.org/linus/874442541133f78c78b6880b8cc495bab5c61704|commit]] * 16bpc fixed point format support [[https://git.kernel.org/linus/050cd3d616d96c3a04f4877842a391c0a4fdcc7a|commit]] * Initial smartshift support [[https://git.kernel.org/linus/a7673a1c1acdd81aa462997a4c3b8f24464a8eeb|commit]], [[https://git.kernel.org/linus/7b32dd0bfd60e9ab9e4463bf5b2cb514966f82ff|commit]], [[https://git.kernel.org/linus/ac3fbe3b2cc862b26431476dce8f7758db301789|commit]] * New INFO query for additional vbios info [[https://git.kernel.org/linus/29b4c589b43d8dc0c0a5342cd2ac5da6ec1116b5|commit]] * amdkfd * SR-IOV aldebaran support [[https://git.kernel.org/linus/cecd91b4f791d52f61a4feca5c3359b1d45a938b|commit]] * Add HMM-based SVM memory manager [[https://git.kernel.org/linus/2aeb742b72121c539cfc9cff8c00c5ca32ba4b1c|commit]], [[https://git.kernel.org/linus/40ce74d1b28d38e5debc14b5a6ddd9071ae2d310|commit]], [[https://git.kernel.org/linus/42de677f79999791bee4e21be318c32d90ab62c6|commit]], [[https://git.kernel.org/linus/c5e2e4781ac5760c6b5efb09fed6ac7725fcf041|commit]], [[https://git.kernel.org/linus/04d8d73dbcbe645a378fca6adc6f0e7111e46c17|commit]], [[https://git.kernel.org/linus/d8a3c1c80ceb656de00b45fe1595a040e5535202|commit]], [[https://git.kernel.org/linus/b1c46c7d622bed62898579548a7e9a21e1320c9d|commit]], [[https://git.kernel.org/linus/4683cfecadeb383b03019ad11aeea1efac38c1ba|commit]], [[https://git.kernel.org/linus/d27afacfead5af7a38c1a65c93c07b7bca6f2420|commit]], [[https://git.kernel.org/linus/f80fe9d3c1149bb2ad0d7807aaaf5eff7c4e80a6|commit]], [[https://git.kernel.org/linus/8a7c184a16d73ab25360e0f5997f82306ff5d5a2|commit]], [[https://git.kernel.org/linus/9705c85ff2dc0e421255a1a68171c3b78116b313|commit]], [[https://git.kernel.org/linus/063e33c5469cf5f46407701f1121a978a3af2ce8|commit]], [[https://git.kernel.org/linus/0f7b5c44d4c53710993e4773bd6eaf171f1888e6|commit]], [[https://git.kernel.org/linus/814ab9930cfd709768439799eae3c7ef0a658b54|commit]], [[https://git.kernel.org/linus/c46ebb6a6d9d28fce66595b56db070b0cc4fab71|commit]], [[https://git.kernel.org/linus/e49fe4040a10c1cd3b215c511f658d15aa7c8be9|commit]], [[https://git.kernel.org/linus/b53fa124acdcec6d05bcdb36b55bf0f84471b1b7|commit]], [[https://git.kernel.org/linus/50ea50cf6f6d31d3235ad1853c5dbea766a3ed11|commit]], [[https://git.kernel.org/linus/0b0e518d61af8e1cb73cbbfb313b215640c8a6f3|commit]], [[https://git.kernel.org/linus/48ff079b28d82dbce000cc45c0fd35b6ae9ffbda|commit]], [[https://git.kernel.org/linus/90d7d3eda5796fa48048f1114b0aa090c5465d17|commit]], [[https://git.kernel.org/linus/9dd9cc2f7433cdf389049c91c87c09eaccece373|commit]], [[https://git.kernel.org/linus/2383f56bbe4ae1460d11ae77b93c1730c4a20c26|commit]], [[https://git.kernel.org/linus/ea53af8a59c89b1bb6743d0956da53eee4cb4cd2|commit]], [[https://git.kernel.org/linus/eb2cec5537bbab46a319b4b0bcd71c320c382d2b|commit]], [[https://git.kernel.org/linus/f04c79cfba7e01db060d17c8d46f23cf8e02845a|commit]], [[https://git.kernel.org/linus/b41896e3eeb5cfb9f906f5d72d9b9c735dc234d4|commit]], [[https://git.kernel.org/linus/5f319c5c21b5909abb43d8aadc92a8aa549ee443|commit]], [[https://git.kernel.org/linus/485bea1f90b3347bb5c1f8adad533f14d8d8ff1c|commit]], [[https://git.kernel.org/linus/cda0f85bfa5e5fddc51b94cfd6680c6697707a89|commit]], [[https://git.kernel.org/linus/564d2b92c7d4569cdc76a08fd700de1309faa5e8|commit]], [[https://git.kernel.org/linus/1a3b2b5dca1924f2e7eae618ad79471c4a253236|commit]], [[https://git.kernel.org/linus/4c166eb95decf03cfee42d03b42145513a15554a|commit]], [[https://git.kernel.org/linus/4ab159d2547c26b34a4ff4770598b72660da1461|commit]] * Add debugfs entry for dsc passthrough [[https://git.kernel.org/linus/fcd1e484c8aedb0c125d4a22f7f20b418c4a9e6d|commit]] * Add debugfs node to read private buffer [[https://git.kernel.org/linus/27ebf21f9220e5991cf33c34d6b47e8dea4fe905|commit]] * Add a new device ID for Aldebaran [[https://git.kernel.org/linus/838eb73c8d5fa9bf3dcc75010b0eb819eb5bb7ed|commit]] * Add DID for beige goby [[https://git.kernel.org/linus/e00f543d3596c71201438d967877138ab33bb3de|commit]] * Add another Renoir DID [[https://git.kernel.org/linus/775da83005cb61d4c213c636df9337da05714ff1|commit]] * Add new dimgrey cavefish DID [[https://git.kernel.org/linus/06ac9b6c736ac9da600b1782d7ac6d6e746286c4|commit]] * Add sysfs counters for vm fault and migration [[https://git.kernel.org/linus/751580b3ff9ac6bf39da8586e132dbebee2409ef|commit]], [[https://git.kernel.org/linus/d4ebc2007040a0aff01bfe1b194085d3867328fd|commit]] * vmwgfx * Add basic support for SVGA3 [[https://git.kernel.org/linus/2cd80dbd35518d5900d83cdb3fb3295e5e9d820b|commit]] * Enable console with fbdev emulation [[https://git.kernel.org/linus/5dbf2fc587cb79cb366bd6e79ac6b52269d64fc5|commit]] * msm * devcoredump support for display errors [[https://git.kernel.org/linus/a4324a7a1c3d57ecfba0fee3e8b2d370eb5597c9|commit]], [[https://git.kernel.org/linus/98659487b845c05b6bed85d881713545db674c7c|commit]], [[https://git.kernel.org/linus/9d30a4bcf43c255498a537169c9bf279e6ec55de|commit]], [[https://git.kernel.org/linus/0f6090f37f801871b292c296ed34eb2b089a0477|commit]], [[https://git.kernel.org/linus/a698b5cdfe63663dc6d5cb4c19109cd9757f8daf|commit]], [[https://git.kernel.org/linus/d87fe031bf3aac81d583f1ac57888691cc154dc5|commit]], [[https://git.kernel.org/linus/2ec5b3dc18bab1108f49262e59fc22bb5939fe0b|commit]] * mdp5: alpha/blend_mode/zpos support [[https://git.kernel.org/linus/ed6b97e5b5a78fbdf7dbfa2745db7289fc333d7f|commit]] * a6xx: cached coherent buffer support [[https://git.kernel.org/linus/8eaf9b02acb5512db33d15ec039a6be285eaa5e2|commit]], [[https://git.kernel.org/linus/a5fc7aa901b6818c67cc7e5cef8201fbaab8fa1b|commit]], [[https://git.kernel.org/linus/af9b3547079915d682d14ea98018d6fa6edf97ca|commit]], [[https://git.kernel.org/linus/d12e339044a00ecae993b06672c38c168a92f0c3|commit]], [[https://git.kernel.org/linus/9ef364432db4a11ff2dbee398d7ed06e93bdfe5e|commit]] * gpu iova fault improvement [[https://git.kernel.org/linus/f8f934c180f629bb927a04fd90d6a16ef1a94073|commit]], [[https://git.kernel.org/linus/ab5df7b953d87efddba4f9df83862f7dcb39b8d5|commit]], [[https://git.kernel.org/linus/2a574cc05d380665648c067689ce300168169a68|commit]], [[https://git.kernel.org/linus/ba6014a4e480c3c2b169438c47273a113c35ba4e|commit]], [[https://git.kernel.org/linus/e25e92e08e32c6bf63a968929d232f13dcf9938c|commit]] * Add support for Adreno 660 GPU [[https://git.kernel.org/linus/f6d62d091cfd1c307a1bb83ef46d334d9ac27751|commit]] * Add debugfs to trigger shrinker [[https://git.kernel.org/linus/5434941fd45d30dadc7e9e1227cf109bb3796d22|commit]] * mediatek * MT8167 HDMI support [[https://git.kernel.org/linus/8562e78c0b834e77d96c752974af7586939fcc54|commit]], [[https://git.kernel.org/linus/15870b97c36ab7fa07d4488b0a2457c2f2da6700|commit]], [[https://git.kernel.org/linus/41ca9caaae0bfc959b22dbcd59d88a7107707e17|commit]], [[https://git.kernel.org/linus/c91026a938c261c2241c391a12b7f99647cb8a06|commit]], [[https://git.kernel.org/linus/511cf7d1233154df1af043c9fb843821d98ed24a|commit]] * MT8183 DPI dual edge support [[https://git.kernel.org/linus/6385ed8eaa02190c3a6f9b18790ada785ebf5253|commit]] * bochs * Add screen blanking support [[https://git.kernel.org/linus/250e743915d47163a075e63f282e9818b54651f1|commit]] * etnaviv * Export more GPU ID values to userspace [[https://git.kernel.org/linus/1ff79a4a49c239dedd67a12a16a8c3a8b53cf838|commit]] * Add HWDB entry for GPU on i.MX8MP [[https://git.kernel.org/linus/989c9dad613155a60f15747e3f1db210a6304ecf|commit]] * imx * Add color properties [[https://git.kernel.org/linus/fc1e985b67f9f318bc5797c9370715f5d020dac3|commit]] * panfrost * Add support for mt8183 GPU [[https://git.kernel.org/linus/a7a596cd31151b08ad0273af3665dac8c0b93842|commit]], [[https://git.kernel.org/linus/09da3191827f2fd326205fb58881838e6ea36fb7|commit]], [[https://git.kernel.org/linus/1275e41753683f992177d74f450437f1a3be33c0|commit]] * Export AFBC_FEATURES register to userspace [[https://git.kernel.org/linus/3e2926f8753dac1ded56c8ef3e91f56ee763dafd|commit]] * vkms * Add overlay plane support [[https://git.kernel.org/linus/2f56dd8c77c8c24420d2791c39816e2cfb08bef5|commit]], [[https://git.kernel.org/linus/cac80e71cfb0b00202d743c6e90333c45ba77cc5|commit]], [[https://git.kernel.org/linus/32a1648aca440904e0943b9cf36d5a3318205bb1|commit]], [[https://git.kernel.org/linus/310e506c06e495b8fbe3502c70d896bc5b8b2502|commit]] * ttm: Provide tt_shrink file via debugfs [[https://git.kernel.org/linus/b057f37bb24f9c4f833549ce48a0d2d6fccba2c4|commit]] * panel * simple: runtime PM support [[https://git.kernel.org/linus/3235b0f20a0a4135e9053f1174d096eff166d0fb|commit]] * Add rotation support for Elida KD35T133 panels [[https://git.kernel.org/linus/610d9c311b1387f8c4ac602fee1f2a1cb0508707|commit]] * hyperv * Add new DRM driver for HyperV graphics [[https://git.kernel.org/linus/76c56a5affeba1e163b66b9d8cc192e6154466f0|commit]] * bridge: * TI SN65DSI83 + SN65DSI84: add driver [[https://git.kernel.org/linus/ceb515ba29ba6b798a579d7c62c5f71a766f7aa6|commit]] * It66121: Add driver + DT bindings [[https://git.kernel.org/linus/988156dc2fc9f260f4296633e47ec9cf0c61a498|commit]] * Adv7511: Support I2S IEC958 encoding [[https://git.kernel.org/linus/ae053fa234f42b4abc582372af7410ad0e3e1dad|commit]] * Add ChromeOS EC ANX7688 bridge driver support [[https://git.kernel.org/linus/44602b10d7f2a5f7d1314500dde3e6c15a67c5dd|commit]] * backlight: rt4831: Adds support for Richtek RT4831 backlight [[https://git.kernel.org/linus/190ccab3185eee564c08ec96d9bbf4aff9b764f4|commit]] == Power Management == * ACPI * Add full support for RGRT ACPI table [[https://git.kernel.org/linus/536e35c938c67941d4279e09dc3a2825119715fd|commit]] * Add support for the BDAT ACPI table [[https://git.kernel.org/linus/9401eafaff836c1b828cd5300fb4bd35a548609b|commit]] * Add support for the SVKL table [[https://git.kernel.org/linus/6496f03e36ce832137733b39f6e670434af3a1c5|commit]] * PM: Add support for upcoming AMD uPEP HID AMDI007 [[https://git.kernel.org/linus/f0c6225531e4a9e43e51c5f7b02089bdd725c734|commit]] * Add driver for the VIOT table [[https://git.kernel.org/linus/3cf485540e7b8550936ce3602edf2f58e4007304|commit]] * s2idle: Add support for new Microsoft UUID [[https://git.kernel.org/linus/5dbf509975780851251361f2db287fdce11b7cae|commit]] * thermal * rockchip: Support RK3568 !SoCs in the thermal driver [[https://git.kernel.org/linus/16bee043fc0a6eb6e9d5306f8e9366a3dcee1fea|commit]] * mediatek: Add sensors-support [[https://git.kernel.org/linus/24e21d9f40ec3fb4228e3427454b733316a2a6c6|commit]] * int340x/processor_thermal: Add PCI MMIO based thermal driver [[https://git.kernel.org/linus/acd65d5d1cf4a3324c8970ba74632abe069fe23e|commit]] == Storage == * Remove legacy IDE driver (obsoleted by libata drivers) [[https://git.kernel.org/linus/492b1389005c71e0ce81e24d5be6271546aa8c34|commit]], [[https://git.kernel.org/linus/cdc429452596ea9e0c76c8b10b5e93feab522906|commit]], [[https://git.kernel.org/linus/468c736b5eb34c712636279eb49251a6f7156f40|commit]], [[https://git.kernel.org/linus/b90257bfddbd01f3686d99c256ae6dd24a6a1deb|commit]], [[https://git.kernel.org/linus/b7fb14d3ac63117e0e8beabe75f4ea52051fbe3a|commit]] * ahci: Add support for Dell S140 and later controllers [[https://git.kernel.org/linus/9c54cd10e43947caa64920aaa7a30858193f8ef5|commit]] * nvmet: add ZBD backened support [[https://git.kernel.org/linus/c28a61471c5898e832c6e8634b2659249761b833|commit]], [[https://git.kernel.org/linus/6e597263f990a2db99e7380debc4044c38867971|commit]], [[https://git.kernel.org/linus/9a01b58c22ccabd00e990e9dc01c2de5865d6e4d|commit]], [[https://git.kernel.org/linus/ab5d0b38c0475d6ff59f1a6ccf7c668b9ec2e0a4|commit]], [[https://git.kernel.org/linus/aaf2e048af2704da5869f27b508b288f36d5c7b7|commit]] * scsi * efct: Broadcom (Emulex) FC Target driver [[https://git.kernel.org/linus/edba59f3cdc1cc6f6d3c2dcceccfc0b1a26d75d9|commit]], [[https://git.kernel.org/linus/216fc0b4b2e162c08d51736d95dc6a7f4c094883|commit]], [[https://git.kernel.org/linus/18be69fa34863e737130db78e6474ad44d85aaf6|commit]], [[https://git.kernel.org/linus/7c5b76831ec45dba58d89ed7bd5f8c5373443e12|commit]], [[https://git.kernel.org/linus/1628f5b4976fd8bf965c8d78e930d01f47092e79|commit]], [[https://git.kernel.org/linus/9bd267093b8cf7e007c46252bc8cd1ce3bae2b8f|commit]], [[https://git.kernel.org/linus/388f36edec42094837569391b6b4ca91d4bb4c1e|commit]], [[https://git.kernel.org/linus/5aa09c48688fde15402931a4aa7e3cf31cac7a4a|commit]], [[https://git.kernel.org/linus/d7b71fd2195e6d1bfb3e47a44a543631cfc85db6|commit]], [[https://git.kernel.org/linus/3146240f19bfd13eb75a7846ccd556067df78722|commit]], [[https://git.kernel.org/linus/fcd427303eb90aa3cb08e7e0b68e0e67a6d47346|commit]], [[https://git.kernel.org/linus/6bc6180d7b5c972c10a2f5392621921de32ce5bc|commit]], [[https://git.kernel.org/linus/ffc3d500930fa7966c86aa66128d5e20711bf9a8|commit]], [[https://git.kernel.org/linus/202bfdffae27a50d6fae0a259cde1333d9833127|commit]], [[https://git.kernel.org/linus/8f406ef728597da39c935ab9c12f4940139775f9|commit]], [[https://git.kernel.org/linus/cdaf39bad54623df45979f036eab1353106cf17d|commit]], [[https://git.kernel.org/linus/75a10a7a913362ff5a7b52de69c456295ed151c2|commit]], [[https://git.kernel.org/linus/4df84e8466242de835416a4ec0c856c0e2ed26eb|commit]], [[https://git.kernel.org/linus/e10fc23359805bf688e005446e054d541b24728e|commit]], [[https://git.kernel.org/linus/580c0255e4effe49b9974044e78a03e76d977618|commit]], [[https://git.kernel.org/linus/63de51327a64c74e85611a0161eaae71256a3b6d|commit]], [[https://git.kernel.org/linus/e2cf422ba833658c79681ba86b7c09988f3a0f28|commit]], [[https://git.kernel.org/linus/f45ae6aac0a077ca15a6e7baae0a62eef099ea7d|commit]], [[https://git.kernel.org/linus/3e6414003bf9acd3b7e20474f950779fafb658d5|commit]], [[https://git.kernel.org/linus/692e5d73a8118e1ff6759705eee9cacd9c14605c|commit]], [[https://git.kernel.org/linus/dd53d333aadb980944021d076c825d5736a13db5|commit]], [[https://git.kernel.org/linus/6ae7147bfe337823e0479ca43d3264f9776588ff|commit]], [[https://git.kernel.org/linus/ab332fcbcd81b1ed2a1eb02c8a0b951f94dd265d|commit]], [[https://git.kernel.org/linus/32ddbad5b61e9a3b3dd59076b9242069fd2b675a|commit]], [[https://git.kernel.org/linus/6f84c11ecc62fc7175a37733f7391e0a81fee996|commit]], [[https://git.kernel.org/linus/ebc076b3eddc807729bd81f7bc48e798a3ddc477|commit]] * mpi3mr: Add mpi30 driver [[https://git.kernel.org/linus/c4f7ac64616ee513f9ac4ae6c4d8c3cccb6974df|commit]], [[https://git.kernel.org/linus/824a156633dfdb0e17979a0d0bb2c757d1bb949c|commit]] * nvme: Added a new sysfs attribute appid_store [[https://git.kernel.org/linus/3dbbca75ed679d629d0c2895a42b55657873d04f|commit]] * qedf: Add vendor identifier attribute [[https://git.kernel.org/linus/adb98ec72b7213f39cf83dae41d6137da33bde5a|commit]] * qla2xxx: Add heartbeat check [[https://git.kernel.org/linus/d94d8158e1841813624e9fecf93a12e64e004dd8|commit]] == Drivers in the Staging area == * spmi: hisi-spmi-controller: move driver from staging [[https://git.kernel.org/linus/e562cf3aea3e1ea46566907f7627e5512840a2b4|commit]] * phy: phy-hi3670-usb3: move driver from staging into phy [[https://git.kernel.org/linus/8de6b7edd493af5587e479afa85706d6fe9c5725|commit]] * fbtft: Add support for orientation on Himax HX8347d [[https://git.kernel.org/linus/fd4c5961d8193a5bc3e7f8d5f94c9b469c037394|commit]] * android: ashmem: add size field in procfs fdinfo [[https://git.kernel.org/linus/594ea7358b051d4638fb587e0234a8a038f47e3d|commit]] * media: hantro: add initial SAMA5D4 support [[https://git.kernel.org/linus/82ad940c00949965739360f68b90d9a00ccefc81|commit]] * media: imx: imx7_mipi_csis: Add i.MX8MM support [[https://git.kernel.org/linus/f0e7cfbb43f1961f12b9903f602b6e6ddf1ada02|commit]] * media: sp8870: move it to staging [[https://git.kernel.org/linus/b998a59f82f1152605eae4f7617778020549e81a|commit]] * media: av7110: move driver to staging [[https://git.kernel.org/linus/989cf18ed08f8b6efd1d1592d1d0108fa09b98f5|commit]] * Add support for older Rockchip !SoCs to V4L2 hantro and rkvdec drivers [[https://git.kernel.org/linus/b32178e77d257c148b8ad8c31db36bb0c2d49bab|commit]], [[https://git.kernel.org/linus/502cf736419aba4cfa0a6737cf66d286c699f144|commit]], [[https://git.kernel.org/linus/4b898fedeb26c4d09b83a2c5a3246a34ab99e216|commit]], [[https://git.kernel.org/linus/c9caebd57b3a0e3fc981bfc9e79de5c4086e0c1b|commit]], [[https://git.kernel.org/linus/78bb1ae5472cabfaf474d348437c25ccaddde75e|commit]], [[https://git.kernel.org/linus/4f34591568e7a1e4a9d0839b4c8d3155f3047f72|commit]] * Add HANTRO G2/HEVC decoder support for IMX8MQ [[https://git.kernel.org/linus/4dd0f63b51c24afd2f34afbae2e728cf00c390e6|commit]], [[https://git.kernel.org/linus/d395a78db9eabd12633b39e05c80e803543b6590|commit]], [[https://git.kernel.org/linus/42cb2a8f27d284b6c73dfc23bed4d6991f3bc1a3|commit]], [[https://git.kernel.org/linus/8968cfc282955c3f853b34d9ceaaa1ba33943e94|commit]], [[https://git.kernel.org/linus/31ad15e688e58a94779971f428c414b7a3f882d1|commit]], [[https://git.kernel.org/linus/35f51f6091bcf2cb90d9ac2f41465c415a34632e|commit]], [[https://git.kernel.org/linus/b7782b34a76615f8199daf1bce544aa73e35f44d|commit]], [[https://git.kernel.org/linus/cb5dd5a0fa518dff14ff2b90837c3c8f98f4dd5c|commit]], [[https://git.kernel.org/linus/45040f675041956ad763f9ef139ecee3647aa8bb|commit]] * Drop kpc2000 driver [[https://git.kernel.org/linus/922a0524f7c46784fadb75aa2ac85405e0a25696|commit]] == Networking == * Add Mellanox !BlueField Gigabit Ethernet driver [[https://git.kernel.org/linus/f92e1869d74e1acc6551256eb084a1c14a054e19|commit]] * Bluetooth * btusb: Add support for Lite-On Mediatek Chip [[https://git.kernel.org/linus/393dc5d19c825906f955210f10ee3befc39854f7|commit]] * Enable Bluetooth functionality for WCN6750 [[https://git.kernel.org/linus/d8f97da1b92d2fe89d51c673ecf80c4016119e5c|commit]], [[https://git.kernel.org/linus/ecf6b2d9566606cd78bdc0af36e5a938624b13d1|commit]], [[https://git.kernel.org/linus/99fba8e3f1d1fd60042187a90ba2381efc1833f7|commit]], [[https://git.kernel.org/linus/d88c6de4f8b6e6f1b6c3e3a85d39106c83553bc9|commit]], [[https://git.kernel.org/linus/7a4cb1635a4b879f8d118ec7c6586aef913819f3|commit]] * btbcm: Add entry for BCM43430B0 UART Bluetooth [[https://git.kernel.org/linus/27f4d1f214ae4a3364623f212ea2d45f772d35b1|commit]] * btusb: Add 0x0b05:0x190e Realtek 8761BU (ASUS BT500) device [[https://git.kernel.org/linus/33404381c5e875cbd57eec6d9bbacd3b13b404c9|commit]] * btusb: Add a new QCA_ROME device (0cf3:e500) [[https://git.kernel.org/linus/0324d19cb99804d99e42c990b8b1e191575a091b|commit]] * RDMA/hns: Support getting max QP number from firmware [[https://git.kernel.org/linus/61b460d10094f5d8e243276f72ece12fc8324dcf|commit]] * RDMA/irdma: Add Intel Ethernet Protocol Driver for RDMA [[https://git.kernel.org/linus/8498a30e1b9484629598cce97d200f517445e26b|commit]], [[https://git.kernel.org/linus/44d9e52977a1b90b0db1c7f8b197c218e9226520|commit]], [[https://git.kernel.org/linus/3f49d684256963d3f27dfb9d9ff228e2255be78d|commit]], [[https://git.kernel.org/linus/d1850c005aee2254205301279a67316a649c712a|commit]], [[https://git.kernel.org/linus/a3a06db504d30d46875eb4ebc89568dde841d64d|commit]], [[https://git.kernel.org/linus/3ae331c75128fc65abc5a656eeb22d8a7803762d|commit]], [[https://git.kernel.org/linus/146b9756f14c04894226fb97e2f102f217139c27|commit]], [[https://git.kernel.org/linus/e8c4dbc2fcacf5a7468d312168bb120c27c38b32|commit]], [[https://git.kernel.org/linus/b48c24c2d710cf34810c555dcef883a3d35a9c08|commit]], [[https://git.kernel.org/linus/dd90451fac23be5adcee8627eb65e7d228cd03f6|commit]], [[https://git.kernel.org/linus/551c46edc7690c1656fbe44ef770ec4e6c004215|commit]], [[https://git.kernel.org/linus/915cc7ac0f8e2a23675ee896e87f17c7d3c47089|commit]], [[https://git.kernel.org/linus/ddae5d62f3db22ac462f5aed5b71fc67cb35e329|commit]], [[https://git.kernel.org/linus/48d6b3336a9fc570b48126c4409abf94dd5c5e8a|commit]], [[https://git.kernel.org/linus/fa0cf568fd76550c1ddb806c03a65a1a4a1ea909|commit]], [[https://git.kernel.org/linus/f6d2bbdf3d96fd7cae05fe1f030bdbf352033188|commit]] * RDMA/mlx5 * Add support to SQD2RTS transition [[https://git.kernel.org/linus/021c1f24f002e9312ad3516f65f148299f2eb4ee|commit]], [[https://git.kernel.org/linus/c906b86e9c44946fae505a5996b1f4c24a699fe6|commit]] * RDMA/mlx5: Support real-time timestamp directly from the device [[https://git.kernel.org/linus/336529518e9724d4cecabc622e57bcdce02e7c61|commit]] * RDMA/rxe: Implement memory windows [[https://git.kernel.org/linus/660a59369e1ed96dd0ff1d9d73bad5b48aa50884|commit]], [[https://git.kernel.org/linus/08224016abde5ddca25bb976a66c974b2e2bdbed|commit]], [[https://git.kernel.org/linus/af732adfacb2c6d886713624af2ff8e555c32aa4|commit]], [[https://git.kernel.org/linus/beec0239c3fae5828cc2f4b8869d75d8b3e82ee7|commit]], [[https://git.kernel.org/linus/886441fb2e658e601e22705c1a9c856ac2e8a464|commit]], [[https://git.kernel.org/linus/c1a411268a4b17ecdf271f0cefed53e10e9fa166|commit]], [[https://git.kernel.org/linus/32a577b4c3a9d0b5d3e47ac47ffd50774a04f82a|commit]], [[https://git.kernel.org/linus/3902b429ca14f325123057f3e5cafe8d45d00263|commit]], [[https://git.kernel.org/linus/cdd0b85675aecc77eba8c38d55070a014a49ab98|commit]], [[https://git.kernel.org/linus/570d2b99d00d9e023328c0a0b8000ab485113384|commit]] * ath11k * Add support for WCN6855 [[https://git.kernel.org/linus/755b1f73173e004e8c89a17fa4e8b329481495d4|commit]], [[https://git.kernel.org/linus/e4073430ee1dec5402a6158755ac8b84eade83c6|commit]], [[https://git.kernel.org/linus/0d55b76fd815f4d685a62afe44e623501186ceb4|commit]], [[https://git.kernel.org/linus/ed66849e159ba92a91ccde13ce3aebd90c644e05|commit]], [[https://git.kernel.org/linus/8845fed1ad7b2fcd4dde82737c197805255bed0f|commit]], [[https://git.kernel.org/linus/0fbf19570099cf1c41e86b3b14a392d46131ed0d|commit]], [[https://git.kernel.org/linus/5088df0504fe7d9623bf5789950327bc9e594fed|commit]] * Enable QCN9074 device [[https://git.kernel.org/linus/49f5b114e36ebc69318ab95f98b57df7458b0f42|commit]] * atl1c * Add 4 RX/TX queue support for Mikrotik 10/25G NIC [[https://git.kernel.org/linus/057f4af2b1716f6d6cef285a1c9b7a9bb63d822b|commit]] * Support for Mikrotik 10/25G NIC features [[https://git.kernel.org/linus/f19d4997fd1fb01bed127e1056ce3a5de922d9ee|commit]], [[https://git.kernel.org/linus/d7ab6419bdee50dbc4a53e69c290a1ef05dae7f9|commit]], [[https://git.kernel.org/linus/545fa3fb1e84855820a5ed25053d6a5afbd30900|commit]], [[https://git.kernel.org/linus/b0390009502b0c635f9ddc26a16025268f6c6211|commit]], [[https://git.kernel.org/linus/ea0fbd05d7bd3298290d3579a837311ee5ceaf18|commit]] * bnxt_en: Add hardware PTP timestamping support on 575XX devices [[https://git.kernel.org/linus/78eeadb8fea6d1a37d5060fe2ea0a0b45f8d8860|commit]], [[https://git.kernel.org/linus/ae5c42f0b92ca0abefe2e3930a14fc2e716c81a2|commit]], [[https://git.kernel.org/linus/118612d519d83b98ead11195a5c818f5e8904654|commit]], [[https://git.kernel.org/linus/390862f45c85b8ebbf9c5c09192bf413a8fb72f8|commit]], [[https://git.kernel.org/linus/7f5515d19cd7aa02a866fd86622a022f12e06f0f|commit]], [[https://git.kernel.org/linus/83bb623c968e7351aee5111547693f95f330dc5a|commit]], [[https://git.kernel.org/linus/93cb62d98e9c3d8c94cc09a15b9ab1faf342c392|commit]] * brcmfmac: support parse country code map from DT [[https://git.kernel.org/linus/1a3ac5c651a0c859bdea64ed964fc93c2ba980d3|commit]] * can: c_can: add ethtool support [[https://git.kernel.org/linus/2722ac986e93c4cabbefde299d01ed24db40a645|commit]] * dpaa2-mac: Add ACPI support for DPAA2 MAC driver [[https://git.kernel.org/linus/3264f599c1a83a08a172031a647ca5c1f30411b3|commit]] * dsa * Provide cable test support for the ksz886x switch [[https://git.kernel.org/linus/ec4b94f9b37bf028cb9b9c39cd1c1cb5dd1ab40c|commit]], [[https://git.kernel.org/linus/2c709e0bdad4d996ec8925b9ee6d5b97458708f1|commit]], [[https://git.kernel.org/linus/0033f890f95ba52dd7bf154d62aa9a5317456401|commit]], [[https://git.kernel.org/linus/52939393bd682248a415de4c0439280aafaccd66|commit]], [[https://git.kernel.org/linus/f873f112553b520e86be3992a38b19e3747b31af|commit]], [[https://git.kernel.org/linus/36838050c453e591ff2ee744d1149630bc5c3310|commit]], [[https://git.kernel.org/linus/c916e8e1ea724db0f7bae36c11aaadc631226321|commit]], [[https://git.kernel.org/linus/49011e0c1555dd7a689d0f32fd78c1ecd43e59cd|commit]] * mv88e6xxx: enable !SerDes PCS register dump via ethtool -d on Topaz [[https://git.kernel.org/linus/953b0dcbe2e3f7bee98cc3bca2ec82c8298e9c16|commit]] * mv88e6xxx: enable !SerDes RX stats for Topaz [[https://git.kernel.org/linus/a03b98d68367b18e5db6d6850e2cc18754fba94a|commit]] * qca8k: Multiple improvement to qca8k stability [[https://git.kernel.org/linus/5d9e068402dcf7354cc8ee66c2152845306d2ccb|commit]], [[https://git.kernel.org/linus/2ad255f2faaffb3af786031fba2e7955454b558a|commit]], [[https://git.kernel.org/linus/504bf65931824eda83494e5b5d75686e27ace03e|commit]], [[https://git.kernel.org/linus/ba5707ec58cfb6853dff41c2aae72deb6a03d389|commit]], [[https://git.kernel.org/linus/028f5f8ef44fcf87a456772cbb9f0d90a0a22884|commit]], [[https://git.kernel.org/linus/d7805757c75c76e9518fc1023a29f0c4eed5b581|commit]], [[https://git.kernel.org/linus/aaf421425cbdec4eb6fd75a29e65c2867b0b7bbd|commit]], [[https://git.kernel.org/linus/b7c818d194927bdc60ed15db55bb8654496a36b7|commit]], [[https://git.kernel.org/linus/6e82a457e06252b59102486767539cc9c2aba60b|commit]], [[https://git.kernel.org/linus/227a9ffc1bc77037339530607fe129af3824620e|commit]], [[https://git.kernel.org/linus/83a3ceb39b2495171aabe9446271b94c678354f3|commit]], [[https://git.kernel.org/linus/5bf9ff3b9fb5ecb67a1a3517b26db3a00f2a2f11|commit]], [[https://git.kernel.org/linus/0fc57e4b5e39461fc0a54aae0afe4241363a7267|commit]], [[https://git.kernel.org/linus/95ffeaf18b3bb90eeef52cbf7d79ccc9d0345ff5|commit]], [[https://git.kernel.org/linus/1ee0591a1093c2448642c33433483e9260275f7b|commit]], [[https://git.kernel.org/linus/e4b9977cee1583da38a6e9118078bb728aaccf7b|commit]], [[https://git.kernel.org/linus/63c33bbfeb6842a956a0eb12901e28eb335bdb18|commit]], [[https://git.kernel.org/linus/60df02b6ea4581d72eb7a3ab7204504a54059b72|commit]], [[https://git.kernel.org/linus/617960d72e93de0f3fa52407e2d39e8c43e73b0a|commit]], [[https://git.kernel.org/linus/759bafb8a3226326ca357613bc90acf738f80c32|commit]], [[https://git.kernel.org/linus/0c994a28e7518f098c84a3049cb2915780db873a|commit]], [[https://git.kernel.org/linus/b7ebac354d54f1657bb89b7a7ca149db50203e6a|commit]], [[https://git.kernel.org/linus/a46aec02bc06ac2c33f326339e4ef88c735dc30d|commit]], [[https://git.kernel.org/linus/d0e13fd5626c3346dfb43831f8fb42b14764dac3|commit]], [[https://git.kernel.org/linus/272833b9b3b3969be7a91839121d86662c8c4253|commit]] * Add NXP SJA1110 support to the sja1105 DSA driver [[https://git.kernel.org/linus/15074a361fee151ee4207d20020a2de178cf490f|commit]], [[https://git.kernel.org/linus/84db00f2c04338da329e2cc9a055d5a0b82fa159|commit]], [[https://git.kernel.org/linus/4c7ee010cf75e5769037d4f152a8192dcf5eb49c|commit]], [[https://git.kernel.org/linus/bf4edf4afb87e67bed8678c09a01110148830483|commit]], [[https://git.kernel.org/linus/91a050782cbfc8f81c7c6aa0c5ce396bea51df3b|commit]], [[https://git.kernel.org/linus/41fed17fdbe5311b141d39c40f028a594b0a0c72|commit]], [[https://git.kernel.org/linus/3e77e59bf8cf105d64f70133e41c38daf482acc3|commit]] * DSA tagging driver for NXP SJA1110 [[https://git.kernel.org/linus/29305260d29ec4ed9a657af818f2744a6ee09913|commit]], [[https://git.kernel.org/linus/6c0de59b3d735f4c8c704dae30db540204b496ec|commit]], [[https://git.kernel.org/linus/4e50025129efabb07714c1f27a80526897da374b|commit]], [[https://git.kernel.org/linus/baa3ad08de6d44a40b94ef1a65640b5076755f9d|commit]], [[https://git.kernel.org/linus/ab6a303c5440156dd475b5884cff26a7245630f8|commit]], [[https://git.kernel.org/linus/233697b3b3f60b17d02ca2a35230aee0ac6f1759|commit]], [[https://git.kernel.org/linus/617ef8d9377b9aac381c023cd0823da264c2f463|commit]], [[https://git.kernel.org/linus/4913b8ebf8a9c56ce66466b4daa07d7d4678cdd8|commit]], [[https://git.kernel.org/linus/30b73242e679fb6cdee9f00aac6e05278fef48ca|commit]], [[https://git.kernel.org/linus/566b18c8b752f67c4e82f0eb4563dd71f84a8799|commit]] * qualcomm: rmnet: Enable Mapv5 [[https://git.kernel.org/linus/710b797cf61b318995db6d31767a532162db113d|commit]], [[https://git.kernel.org/linus/e1d9a90a9bfdb0735062d3adb16b07314b4b7b01|commit]], [[https://git.kernel.org/linus/b6e5d27e32ef6089d316ce7e1ecaf595584d4b84|commit]] * fsl/fman: Add fibre support [[https://git.kernel.org/linus/75d5641497a60bb5d36ff77fd3f526906cbc148c|commit]] * gianfar: Implement rx_missed_errors counter [[https://git.kernel.org/linus/14870b75fe0be5c565339f008ba25326f86a7ce8|commit]] * gve: Introduce DQO descriptor format [[https://git.kernel.org/linus/c6a7ed77ee6334f3a85a0f3db74ca80101e25304|commit]], [[https://git.kernel.org/linus/dbdaa6754051280d929514a1722b9d5bc7c65a61|commit]], [[https://git.kernel.org/linus/35f9b2f43f8e0aee52421640912edc1ec309fd2e|commit]], [[https://git.kernel.org/linus/920fb45193551dc0e6cd8fa89e2487906f1867f6|commit]], [[https://git.kernel.org/linus/8a39d3e0dadfe27a50019fa83dc57c5158e42ed1|commit]], [[https://git.kernel.org/linus/a5886ef4f4bfc305bfd9efdf6166621b5c602fca|commit]], [[https://git.kernel.org/linus/5ca2265eefc0bdfc80d4cbe9f70a81c40c41ae60|commit]], [[https://git.kernel.org/linus/c4b87ac87635879ecf0d26807dc00df9bb7eb508|commit]], [[https://git.kernel.org/linus/223198183ff1fc099184081f997bf1f710f1ef72|commit]], [[https://git.kernel.org/linus/a4aa1f1e69df5612bcc0d7cf2ca23b9fae79941b|commit]], [[https://git.kernel.org/linus/1f6228e459f8bcfcda2f6a157bbd1ceb57b566f4|commit]], [[https://git.kernel.org/linus/5e8c5adf95f8a537ec08e8e3798d8bc3464deee8|commit]], [[https://git.kernel.org/linus/9c1a59a2f4bcf9926ac5814ae0ce53e449ee0b95|commit]], [[https://git.kernel.org/linus/0dcc144a7994007e50afe4806e0e4ef860f58013|commit]], [[https://git.kernel.org/linus/a57e5de476be0b4b7f42beb6a21c19ad9c577aa3|commit]], [[https://git.kernel.org/linus/9b8dd5e5ea48bbb7532d20c4093a79d8283e4029|commit]] * hns3 * Add VLAN filter control support [[https://git.kernel.org/linus/b44eb28d44a65370e77d0bcd9a87cee3fa1daaca|commit]], [[https://git.kernel.org/linus/f2dbf0ed4e0c1789cc7c74ab3798bd0cdb7a2bf1|commit]], [[https://git.kernel.org/linus/132023de7149e7dde4b457328cb233dc58561b54|commit]], [[https://git.kernel.org/linus/060e9accaa743d701e653213651cf3feee1ae921|commit]], [[https://git.kernel.org/linus/2ba306627f5950c9a7850f3b0499d39e522dc249|commit]], [[https://git.kernel.org/linus/32e6d104c6fe01713a039a98842e4d2f6bb505ec|commit]], [[https://git.kernel.org/linus/fa6a262a255003ebb1f514fffd3399f3946d4fc9|commit]], [[https://git.kernel.org/linus/0ca821da86a5ec24eb2ece24fe87e5bf518c5939|commit]] * Add support for PTP [[https://git.kernel.org/linus/0bf5eb788512187b744ef7f79de835e6cbe85b9c|commit]], [[https://git.kernel.org/linus/b34c157f0cdd0b9e52c002288ff77b1a553dd438|commit]] * Add RAS compatibility adaptation solution [[https://git.kernel.org/linus/17f59244029bf9c0673725efdd0386ed95e127a7|commit]], [[https://git.kernel.org/linus/2e2deee7618b062efe3aba9fcb017dadcf148819|commit]], [[https://git.kernel.org/linus/e65e9f5c2e4efc17657d016d767eb7010d9dd598|commit]], [[https://git.kernel.org/linus/8a95e360fd512f1cb55239645879b15d26bc7e21|commit]], [[https://git.kernel.org/linus/1c360a4a077fc0f74a350fe2ef267cbe8a9388e3|commit]] * Add support for FD counter in debugfs [[https://git.kernel.org/linus/03a92fe8cedb6f619df416d38d0b57fd55070cd7|commit]] * Add support for dumping MAC umv counter in debugfs [[https://git.kernel.org/linus/d59daf6a4ceedf342f349e94f1300e1598213252|commit]] * Remove the useless debugfs file node cmd [[https://git.kernel.org/linus/b4689aaf18633ff1b9ce37b09e226a7964ce9751|commit]] * Add support for a new RXD advanced layout [[https://git.kernel.org/linus/796640778c26f3d99fde173bb7b1d726b5f0d816|commit]] * ice * Add support for auxiliary input/output pins [[https://git.kernel.org/linus/172db5f91d5f7b91670c68a7547798b0b5374158|commit]] * Add support for set/get of driver-stored firmware parameters [[https://git.kernel.org/linus/7f9ab54d314456884209f088aeaaf24e14d9ddf4|commit]] * Enable transmit timestamps for E810 devices [[https://git.kernel.org/linus/ea9b847cda647b9849b0b9fa0447e876a1ac62e1|commit]] * Add support for sideband messages [[https://git.kernel.org/linus/8f5ee3c477a8e416e30ec75caed53a80fdca3462|commit]] * Enable receive hardware timestamping [[https://git.kernel.org/linus/77a781155a659053f3b7e81a0ab115d27ff151cd|commit]] * igc * Add support for AF_XDP zero-copy [[https://git.kernel.org/linus/0c20f2d29fff7ecd3b2802536d0089ed908304a5|commit]], [[https://git.kernel.org/linus/73a6e3721261524567eb5e319d5dc8e37b5f18dc|commit]], [[https://git.kernel.org/linus/f485164867d3b960e811d94fc83e12d5a687ef05|commit]], [[https://git.kernel.org/linus/4609ffb9f6157880e76c038f8df4fbf4e148a41a|commit]], [[https://git.kernel.org/linus/a27e6e73e5501fd0cb84467d71ddeac9a5855e0b|commit]], [[https://git.kernel.org/linus/6123429516c7fc6a7ee2f0a9dbef8c0c16ffb7cc|commit]], [[https://git.kernel.org/linus/859b4dfa4115d11aa1fda7d0628a93a9d61a7c46|commit]], [[https://git.kernel.org/linus/fc9df2a0b520d7d439ecf464794d53e91be74b93|commit]], [[https://git.kernel.org/linus/9acf59a752d4c686739117d3b3129e60af1ba5c1|commit]] * Enable HW VLAN Insertion and HW VLAN Stripping [[https://git.kernel.org/linus/8d7449630e3450bc0546dc0cb692fbb57d1852c0|commit]] * iosm: PCIe Driver for Intel M.2 Modem [[https://git.kernel.org/linus/7e98d785ae6184c7580a33619dae8b651769ff08|commit]], [[https://git.kernel.org/linus/7f41ce085de0bada1e8c974cb3edd906ee49cb4c|commit]], [[https://git.kernel.org/linus/dc0514f5d828e8358fdab722cfa9c263bb583fea|commit]], [[https://git.kernel.org/linus/3670970dd8c661c10c10c300d726f59428eaad32|commit]], [[https://git.kernel.org/linus/edf6423c04037040c7e0549fdebc903d68979515|commit]], [[https://git.kernel.org/linus/30ebda7a313d1b45ea64311d8dbb12ff3961bb80|commit]], [[https://git.kernel.org/linus/10685b6e9868cdee3c747a6b6fce53332875ed2f|commit]], [[https://git.kernel.org/linus/3b575260cb863d063669f382458e94ebdae6843d|commit]], [[https://git.kernel.org/linus/51c45fa95435c55f2ae161fb9634671ab0411ead|commit]], [[https://git.kernel.org/linus/9413491e20e1aba6e471d90c19cc43e523216a4d|commit]], [[https://git.kernel.org/linus/be8c936e540fe6e60d03fa1578205c936e71335b|commit]], [[https://git.kernel.org/linus/faed4c6f6f486fbd0bde233dd46beb26ebdb1ab2|commit]], [[https://git.kernel.org/linus/64516f633bfd2f576f3a18fe72184595367d11bf|commit]], [[https://git.kernel.org/linus/110e6e02eb190ee4a799502d6cfa0f28d4efc294|commit]], [[https://git.kernel.org/linus/2a54f2c7793409736f2e5ea101e050b3f1997088|commit]], [[https://git.kernel.org/linus/f7af616c632ee2ac3af0876fe33bf9e0232e665a|commit]] * ipa * Add support for IPA v3.1 [[https://git.kernel.org/linus/2afd6c8b43c1ee50444d410e953d7d2adf86b5ea|commit]], [[https://git.kernel.org/linus/c31d73494fa5016596f0b36aeb3e388160c9c473|commit]], [[https://git.kernel.org/linus/3833d0abd2c5827fb50a6cc9f1654d7ea0b64b2c|commit]], [[https://git.kernel.org/linus/110971d1ee4db10f48374a9303e86db158da354e|commit]], [[https://git.kernel.org/linus/bae70a803a771d0f1e55cfe1db195d8af2765dd8|commit]], [[https://git.kernel.org/linus/1bb1a117878b925dcb959830cd3384c11ed0dea5|commit]] * Add support for inline checksum offload [[https://git.kernel.org/linus/5567d4d9e7381230462a564d4f466177f3ba9dd5|commit]] * Introduce sysfs code [[https://git.kernel.org/linus/2e3cf97f4741b320e8f4639fcca732b17614a55f|commit]] * iwlwifi: * Add 9560 killer device [[https://git.kernel.org/linus/c863797b8198e1b34516023198708ddb0f9fd2b9|commit]] * dd new SoF with JF devices [[https://git.kernel.org/linus/a5bf1d4434b93394fa37494d78fe9f3513557185|commit]] * Add new so-jf devices [[https://git.kernel.org/linus/891332f697e14bfb2002f56e21d9bbd4800a7098|commit]] * pcie: Add support for AX231 radio module with Ma devices [[https://git.kernel.org/linus/7e2c14372bd89ffe4cefd678b8b1743cac376f4c|commit]] * Support ver 6 of WOWLAN_CONFIGURATION and ver 10 of WOWLAN_GET_STATUSES [[https://git.kernel.org/linus/5b16565a7f9d82c6aa475ede72d62424b70f7726|commit]] * yoyo: support region TLV version 2 [[https://git.kernel.org/linus/a451b823074ca40bda686f3fb48875103e17d7da|commit]] * marvell * Marvell Prestera add flower and match all support [[https://git.kernel.org/linus/8b474a9f6b3793480392bbdfcc546bb8e21b3735|commit]], [[https://git.kernel.org/linus/13defa275eef90c07886dbd9e74e3dada8af7348|commit]] * prestera: add LAG support [[https://git.kernel.org/linus/3d5048cc54bd250cfbb358c37fcc011135977887|commit]], [[https://git.kernel.org/linus/82bbaa05bf9062d085b236d4799c494b62c1c7ef|commit]], [[https://git.kernel.org/linus/255213ca688767662a23d14f3fbf099c0e0b755d|commit]] * Implementation of devlink functionality [[https://git.kernel.org/linus/0a9003f45e9105628a2437ae1d8877e695cb34b8|commit]], [[https://git.kernel.org/linus/a80cf955c9e51d137fc772510b213c8d2c96c1d3|commit]], [[https://git.kernel.org/linus/66826c43e63d5c5e8307bd36862d6334db9d98b7|commit]] * mdio: Add ACPI support code for mdio [[https://git.kernel.org/linus/803ca24d2f92e2cf393df4705423f7b09a5eabd9|commit]] * mlx5/mlx5e * Add support for new multipath hash policies [[https://git.kernel.org/linus/eb0e4d59b6edbe678ecfc5d5b77608b634057f08|commit]], [[https://git.kernel.org/linus/7725c1c8f73260de2ef0d01ca23b64260fc66ffd|commit]], [[https://git.kernel.org/linus/9d23d3eb6f4134f19947e6319b79ce1e440aba98|commit]], [[https://git.kernel.org/linus/28bc824807a5cb95edb46807c210dfff37a3a0b3|commit]], [[https://git.kernel.org/linus/b7b8f435ea3b33ba7067f992c5b85a62f24d19ed|commit]], [[https://git.kernel.org/linus/01848e05f8bbff2d799073b307fe2eb42bee764b|commit]], [[https://git.kernel.org/linus/daeabf89eb892cf827608177ecae7ca9389c195a|commit]] * Add support for doorbell bypassing [[https://git.kernel.org/linus/b57c46cb3c3bca46e1f0b258493572d234362de8|commit]] * Add support for running with virtio_vdpa [[https://git.kernel.org/linus/6f5312f801836e6af9bcbb0bdb44dc423e129206|commit]] * Remove Mellanox SwitchIB ASIC support [[https://git.kernel.org/linus/9b43fbb8ce243603444780c0bbb962a047a35b7c|commit]] * mt7601u: add USB device ID for some versions of !XiaoDu WiFi Dongle [[https://git.kernel.org/linus/829eea7c94e0bac804e65975639a2f2e5f147033|commit]] * mt76 * mt7921: enable rx offloads [[https://git.kernel.org/linus/5b0b5c6a1c2195942ac48ec8bbf567789f903353|commit]], [[https://git.kernel.org/linus/868fe07ee612f81a493504190cdfcc9d344c9dc3|commit]], [[https://git.kernel.org/linus/24299fc869f7caded8ae30a33f205ab37be729d4|commit]], [[https://git.kernel.org/linus/0e75732764e86a7741d7807b4408cd02cbaf1e0c|commit]] * mt7615: add thermal sensor device support [[https://git.kernel.org/linus/109e505ad944dc207aaa9ee134b0994be09d291d|commit]] * mt7663: enable hw rx header translation [[https://git.kernel.org/linus/54c31b9e6507cd8183a27fa862cc3a407a332076|commit]] * mt7915: add MSI support [[https://git.kernel.org/linus/bdac593c981b3b8986a8d37e020946ba1f6dfaa4|commit]] * mt7915: add support for tx status reporting [[https://git.kernel.org/linus/3de4cb1756565a22321039eb9ae0193519bed967|commit]] * mt7915: add thermal sensor device support [[https://git.kernel.org/linus/33fe9c639c13de03ce04a1dc2c904d66d1cd02eb|commit]] * mt7921: add back connection monitor support [[https://git.kernel.org/linus/10de032a31683585292cd10b598d896d7bcf276f|commit]] * mt7921: enable HE BFee capability [[https://git.kernel.org/linus/1153668eefca6860dba3a6e94f24bf7146d62d50|commit]] * mt7921: enable hw offloading for wep keys [[https://git.kernel.org/linus/a60951d4faa0ef2e475797dd217c2eaee32ed1c2|commit]] * mt7921: enable random mac address during sched_scan [[https://git.kernel.org/linus/9f367c81de94a8171f7149f14a5f740f0009dd27|commit]] * mt7921: enable runtime pm by default [[https://git.kernel.org/linus/a2d3442e3db1028f57efdeff26cd6e72a82cb648|commit]] * mt7921: limit txpower according to userlevel power [[https://git.kernel.org/linus/8225816d2974204c09228f94c0451bd959575475|commit]] * mvpp2: ACPI MDIO support for Marvell controllers [[https://git.kernel.org/linus/7c4d7ca8cce3c8167e10f52a5afb553851f2086b|commit]], [[https://git.kernel.org/linus/62a6ef6a996f5eec73d30d079573a1fa8f95fcd9|commit]], [[https://git.kernel.org/linus/33fc11f0983b969f6da3a295567aa814e958980b|commit]], [[https://git.kernel.org/linus/c54da4c1acb1d62b3aec36b18473c430675e26d4|commit]], [[https://git.kernel.org/linus/dfce1bab8fdc2a2603a896ed836905ba63f13384|commit]], [[https://git.kernel.org/linus/8d909440ab3b118627b002e4e19e806b866371ba|commit]] * nfp: Introduce conntrack offloading to the nfp driver [[https://git.kernel.org/linus/2bda0a5e3bf8924cc6dc5955df610defa10d70e7|commit]], [[https://git.kernel.org/linus/c8b034fbeba55847be999595d63ad7d04f06c141|commit]], [[https://git.kernel.org/linus/e236e4849b583d0e77b856417ce2f03b1d6b31db|commit]], [[https://git.kernel.org/linus/bd0fe7f96a3c44c6ed0ab645abbad8b43a8cc5c1|commit]], [[https://git.kernel.org/linus/072c089ca536a87591a21741ffa972ae7626c96a|commit]], [[https://git.kernel.org/linus/fa81d6d214a4202b539a815d6c9d6b3c8e70ca95|commit]], [[https://git.kernel.org/linus/f7ae12e2f95dc5bed1a0c6cfd73cf6690d465855|commit]], [[https://git.kernel.org/linus/3c863c300c0959aeeef13f797c85ea58f6b291c6|commit]], [[https://git.kernel.org/linus/62268e78145f633af07e832bfecc960c4b6dda90|commit]], [[https://git.kernel.org/linus/95255017e0a84692faa33fdc0746433987b5aff0|commit]], [[https://git.kernel.org/linus/b5e30c61d8cbd1002ac3456e29952b8c78bc542f|commit]], [[https://git.kernel.org/linus/30c4a9f4fe3f47ffa5783329fa5553f8baef3a76|commit]], [[https://git.kernel.org/linus/4772ad3f58d2423ab4a6587e422eeac3ab8be369|commit]] * octeontx2-af * DMAC based packet filtering [[https://git.kernel.org/linus/6f14078e3ee59ccc5806f7bff0f25f94a6d3ff80|commit]], [[https://git.kernel.org/linus/dbc52debf95f8f902f74309e7ae0de38e1ed4e4c|commit]], [[https://git.kernel.org/linus/79d2be385e9eabe4403eb85bcc7d3efc6b936a76|commit]] * Introduce DMAC based switching [[https://git.kernel.org/linus/fa2bf6baf2b1d8350e5193ce4014bdddc51a25d0|commit]], [[https://git.kernel.org/linus/cb7a6b3bac1d0d773f2b6cc35f6bab61eb5de5ef|commit]], [[https://git.kernel.org/linus/23109f8dd06d0bd04c9360cf7c501c97b0ab1545|commit]] * Add support for custom KPU entries [[https://git.kernel.org/linus/3a7244152f9c22f32f37dfba2a9b070a90bf877a|commit]] * Add ingress ratelimit offload [[https://git.kernel.org/linus/e8e095b3b37004a4048af69de60c9af2d2268a1d|commit]], [[https://git.kernel.org/linus/e7d8971763f3e7f12d9f9933faf6bd4912538d85|commit]], [[https://git.kernel.org/linus/2ca89a2c37527221edc549ffd3b65c6f8d9d4088|commit]], [[https://git.kernel.org/linus/5d2fdd86d517350c4fc903a5a69a562a4b0084e4|commit]], [[https://git.kernel.org/linus/68fbff68dbea35f9e6f7649dd22fce492a5aedac|commit]] * pcs: add 2500BASEX support for Intel mGbE controller [[https://git.kernel.org/linus/f27abde3042ab4d30d0003eaf5e6641baef94a56|commit]] * Port the SJA1105 DSA driver to XPCS [[https://git.kernel.org/linus/5673ef86380414be1702ba2f1ef92526a14dd1e0|commit]], [[https://git.kernel.org/linus/47538dbeb70198c6036cfd4a60b292f1398f8f5e|commit]], [[https://git.kernel.org/linus/7413f9a6af00bb4dc0ef01944aceb8e2ee17a8d5|commit]], [[https://git.kernel.org/linus/d4433d5b7b34fa316c473769d51c79b2755953e4|commit]], [[https://git.kernel.org/linus/2031c09e6d5f50d4c337da11efd1deb8279687d6|commit]], [[https://git.kernel.org/linus/36641b045c839797739f9863e86e4dae2370e24f|commit]], [[https://git.kernel.org/linus/dd0721ea4c7a6c2ec8b309ff57d74d88f08d4c23|commit]], [[https://git.kernel.org/linus/f7380bba42fd0654bf8195fb741d5f92b0f46df9|commit]], [[https://git.kernel.org/linus/a853c68e29bb974ca0cc0a8eaf88c333217556aa|commit]], [[https://git.kernel.org/linus/3ad1d171548e85fd582c8de8c0946875579aebe8|commit]], [[https://git.kernel.org/linus/27871359bdf82677c0a854d17eb93c34402321c9|commit]], [[https://git.kernel.org/linus/ece578bc3ea44a39efdb5299ce60c1a54cd2e184|commit]], [[https://git.kernel.org/linus/56b63466333b25f4d6482516070251cb0a757a6c|commit]] * phy * dsa micrel/ksz886x add MDI-X support [[https://git.kernel.org/linus/52939393bd682248a415de4c0439280aafaccd66|commit]] * Add !MediaTek Gigabit Ethernet PHY driver [[https://git.kernel.org/linus/e40d2cca01893c1941f5959b14bb0cd0d4f4d099|commit]] * Add driver for Motorcomm yt8511 phy [[https://git.kernel.org/linus/48e8c6f1612b3d2dccaea2285231def830cc5b8e|commit]] * Add support for qca8k switch internal PHY in at803x [[https://git.kernel.org/linus/272833b9b3b3969be7a91839121d86662c8c4253|commit]] * micrel: ksz8081 add MDI-X support [[https://git.kernel.org/linus/f873f112553b520e86be3992a38b19e3747b31af|commit]] * micrel: ksz886x/ksz8081: add cabletest support [[https://git.kernel.org/linus/49011e0c1555dd7a689d0f32fd78c1ecd43e59cd|commit]] * nxp-c45-tja11xx: add timestamping support [[https://git.kernel.org/linus/514def5dd33984e986e0a3afd2a369d8b4688d3f|commit]] * Add 25G BASE-R support [[https://git.kernel.org/linus/21e0c59edc09ff8d50722071ded66574b1cc4e99|commit]] * r8152: support pauseparam of ethtool_ops [[https://git.kernel.org/linus/163d01c56e80fdbd3e386162b969d6cb43af3b5c|commit]] * Remove the caif_hsi driver [[https://git.kernel.org/linus/ca75bcf0a83b6cc7f53a593d98ec7121c4839b43|commit]] * rsi: Add support for changing beacon interval [[https://git.kernel.org/linus/29ca9e6ca5a5f850829c53557bf18912e56da6c9|commit]] * rtw88 * Add beacon filter support [[https://git.kernel.org/linus/cd96e22bc1da0a7ddbe0769f6e393022aa8be1f1|commit]] * Add path diversity [[https://git.kernel.org/linus/1188301fd8ef370ef344a98fbbf04b8b07148294|commit]] * Dump FW crash via devcoredump [[https://git.kernel.org/linus/7b80f3e48c4b0ff85ff91945a2537d0bbc3e3cc4|commit]] * sfp: add support for 25G BASE-R SFPs [[https://git.kernel.org/linus/452d2c6fbae2c11e3b0c17a3afe7b145db2196e7|commit]] * sparx5 * Adding the Sparx5 Switch Driver [[https://git.kernel.org/linus/f8c63088a98bac8926cb40ecf46ebd71dc1232c4|commit]], [[https://git.kernel.org/linus/3cfa11bac9bbede3066e15bcd5fb26c755c3da45|commit]], [[https://git.kernel.org/linus/f3cad2611a77f0229dc16aa7bd2ef63e35ea9fb6|commit]], [[https://git.kernel.org/linus/946e7fd5053a218d3907268cd85c9a519561d5d8|commit]], [[https://git.kernel.org/linus/b37a1bae742f92cc9b1f777d54e04ee3d86bbfc2|commit]], [[https://git.kernel.org/linus/78eab33bb68b565176917b24a0b72a2f5b938d84|commit]], [[https://git.kernel.org/linus/d6fce5141929697a27f029c633433d487f6f62cb|commit]], [[https://git.kernel.org/linus/0a9d48ad0d09ce869ea44e405e066959aa5d5371|commit]], [[https://git.kernel.org/linus/af4b11022e2d39865e390dd50946c4e8703ec3c7|commit]], [[https://git.kernel.org/linus/d0f482bb06f9447d44d2cae0386a0bd768c3cc16|commit]] * stmmac * Add Ingenic !SoCs MAC support [[https://git.kernel.org/linus/3b8401066e5a8ee465891cc8bad614c797701348|commit]], [[https://git.kernel.org/linus/2bb4b98b60d7dc89fc0a5bb64534be348ab654df|commit]] * Add RK3566/RK3568 SoC support [[https://git.kernel.org/linus/3bb3d6b1c1957e88bfc5e77a4557f7e6ba761fe3|commit]] * Introducing support for DWC xpcs Energy Efficient Ethernet [[https://git.kernel.org/linus/e80fe71b3ffe1ec31c4a9be60170f897bbdf1b92|commit]], [[https://git.kernel.org/linus/7617af3d1a5e0938eb1fd2742f19bcea772c7f8d|commit]] * Add support for RK3308 gmac [[https://git.kernel.org/linus/2cc8c910f51594dde79764a52b2974ddc8f70509|commit]], [[https://git.kernel.org/linus/b4ac94565c142da9f050e2c2ffd85f7288d556d2|commit]], [[https://git.kernel.org/linus/8d1a81f21a9e0c5967bbec1918a777369dc07856|commit]] * Enable 2.5Gbps link speed [[https://git.kernel.org/linus/597a68ce32167e7d07bf40648e1501f786f60f99|commit]], [[https://git.kernel.org/linus/f27abde3042ab4d30d0003eaf5e6641baef94a56|commit]], [[https://git.kernel.org/linus/46682cb86a37da435e5668db98555a1de0f0448b|commit]] * Add option to enable PHY WOL with PMT enabled [[https://git.kernel.org/linus/5a9b876e9d76810536bac70c78d961198612919c|commit]], [[https://git.kernel.org/linus/945beb7556334166900508fab7e4f50fcd233593|commit]], [[https://git.kernel.org/linus/1dd53a61488d3fd916967fa334e95866637b0b2a|commit]] * Add dwmac support for Loongson [[https://git.kernel.org/linus/30bba69d7db40e732d6c0aa6d4890c60d717e314|commit]] * usb/phy: asix: add support for ax88772A/C PHYs [[https://git.kernel.org/linus/dde25846925765a88df8964080098174495c1f10|commit]], [[https://git.kernel.org/linus/e532a096be0e5e570b383e71d4560e7f04384e0f|commit]] * wcn36xx: Enable downstream consistent Wake on Lan [[https://git.kernel.org/linus/ba4e967379f0a2c2a72fb572c69761218a2468a6|commit]], [[https://git.kernel.org/linus/f2f49601067bd7b7f3392a50a3738335fe9d0cb8|commit]], [[https://git.kernel.org/linus/5478c41fce5dd6b751075856666a0f9a101c3dd2|commit]], [[https://git.kernel.org/linus/6feb634f4d9fceb0241612ad46ad55b54fd78df5|commit]], [[https://git.kernel.org/linus/c7a61af55976dbd11b176d2badda869a7537dca4|commit]], [[https://git.kernel.org/linus/1456223c468447b1c5d2c1d8748748eea379a501|commit]], [[https://git.kernel.org/linus/8974e5917b31c30ab30af1e992cfb35eec839a5f|commit]], [[https://git.kernel.org/linus/6693f7675c9b055ee3428844ee8999bfe22d3cd2|commit]], [[https://git.kernel.org/linus/bedf1169bcae2f762b37d40dc9db648fe7ad1952|commit]], [[https://git.kernel.org/linus/60f0078b1ebd51b5cde01f0001c8402a9ef0cec5|commit]], [[https://git.kernel.org/linus/ebe7c1a6635f19c61c14b78ba05a287e3022f4f8|commit]], [[https://git.kernel.org/linus/1e2e8ee957343575be7b370367b8312f7c489ac0|commit]] * Add RPMSG WWAN CTRL driver [[https://git.kernel.org/linus/60302ce4ea075369641426ef407c110e36ea8ba1|commit]], [[https://git.kernel.org/linus/5e90abf49c2adfbd6954429c2a1aafdfe9fcab92|commit]], [[https://git.kernel.org/linus/31c143f712750143abaca396236bbe8707700111|commit]] * mac80211_hwsim: add concurrent channels scanning support over virtio [[https://git.kernel.org/linus/626c30f9e77354301ff9162c3bdddaf92d9b5cf3|commit]] == Audio == * Add Scarlett Gen 3 support [[https://git.kernel.org/linus/785b6f29a795f109685f286b91e0250c206fbffb|commit]], [[https://git.kernel.org/linus/4be47798d76e6e694d8258eeb4d4be0a64371e34|commit]], [[https://git.kernel.org/linus/a5b3612305b221425a7e2244d0620b9c4ebf25ed|commit]], [[https://git.kernel.org/linus/303f204e83526d8f83220f41ba93b5af796bc323|commit]], [[https://git.kernel.org/linus/8aea2e32a9e3c3a685dc6f3f7d58fbbd6263a857|commit]], [[https://git.kernel.org/linus/9e15fae6c51a362418f8b3054f1322c54675df94|commit]], [[https://git.kernel.org/linus/2fa96277fee64c74a2d9343e369d7eb846271a88|commit]], [[https://git.kernel.org/linus/dbbd4f9ea06612f78261d3a9b6bc74ed5770537d|commit]], [[https://git.kernel.org/linus/ae58a1a1d7a49906737d6593dcad61acf12640e1|commit]], [[https://git.kernel.org/linus/6ef9fa4a0eb4cdc1f9a20070d2fca374bec62fff|commit]], [[https://git.kernel.org/linus/9cfe1276a6736fe0bc84ed956e318c37cd0934e8|commit]], [[https://git.kernel.org/linus/3b9e3720a91e419785de0fa536d24557ae6474e8|commit]], [[https://git.kernel.org/linus/f02da6534810acb8d101143255a30e706ec7bb81|commit]], [[https://git.kernel.org/linus/8df25eb0a2ecdcc25a869f6126c35f89af90efb2|commit]], [[https://git.kernel.org/linus/e914d8432cb4b99e8a3c42c12e912179a1cf3e73|commit]], [[https://git.kernel.org/linus/ac34df733d2dfe3b553897a1e9e1a44414f09834|commit]], [[https://git.kernel.org/linus/d5bda7e03982f67ce2f6c0d79b750fb27077331a|commit]] * bebob: add support for !ToneWeal FW66 [[https://git.kernel.org/linus/50ebe56222bfa0911a932930f9229ee5995508d9|commit]] * firewire * Add replay target to cache sequence of packet [[https://git.kernel.org/linus/f9e5ecdfc2c2f2a87f4aa8aa3d0216016103d769|commit]] * firewire-motu: add support for AES/EBU clock source in v2 protocol [[https://git.kernel.org/linus/683d36690f8a34a6323b6b3a655e5fa56ef80b5f|commit]] * firewire-motu: add support for MOTU 828 [[https://git.kernel.org/linus/d13d6b284d8b80802e3ab1c33f210579884c3060|commit]] * firewire-motu: add support for MOTU 896 [[https://git.kernel.org/linus/b431f16f1685b38d4dda0434f4bae2265ab9e3da|commit]] * firewire-motu: add support for hybrid model of MOTU Ultralite mk3 [[https://git.kernel.org/linus/64584f329352bb7c6980c7fba608ad6239769642|commit]] * hda * realtek: Add another ALC236 variant support [[https://git.kernel.org/linus/1948fc065a89f18d057b8ffaef6d7242ad99edb8|commit]] * intel-dsp-cfg: add missing ElkhartLake PCI ID [[https://git.kernel.org/linus/114613f62f42e7cbc1242c4e82076a0153043761|commit]] * oxfw: add explicit device entry for Loud Technologies Mackie Onyx Sattelite [[https://git.kernel.org/linus/c59bc10e7f6a425e8f63ffcf375a9b019476577c|commit]] * oxfw: add explicit device entry for Loud Technologies Tapco Link.FireWire 4x6 [[https://git.kernel.org/linus/2239924be45cccf3106ee6bee2fb5829a1348113|commit]] * rawmidi: Add framing mode [[https://git.kernel.org/linus/08fdced60ca08e34e316a3ab945636fcdfcbc973|commit]] * usb-audio: Add support for Denon DN-X1600 [[https://git.kernel.org/linus/7fdabab8f56239466275adea5d2f0a6fff27527b|commit]] * ASoC * Add Rockchip rk817 audio CODEC support [[https://git.kernel.org/linus/0d6a04da9b25b9a7cf2cac5f5079e3296d3bee0f|commit]] * Intel: Boards: tgl_max98373: Add BT offload support [[https://git.kernel.org/linus/37897babed2e5ff622d29b61bf27c8567087b516|commit]] * Intel: add sof-cs42l42 machine driver [[https://git.kernel.org/linus/5a7f27a624d9e33262767b328aa7a4baf7846c14|commit]] * Intel: boards: add support for adl boards in sof-rt5682 [[https://git.kernel.org/linus/2e4dba57ea56dc04d5c452be37bfb4db7d8229de|commit]] * Intel: sof_rt5682: Enable Bluetooth offload on tgl and adl [[https://git.kernel.org/linus/fd2856929fb47b8921942b17a6dfa2757e76144f|commit]] * Intel: sof_sdw: add support for Bluetooth offload [[https://git.kernel.org/linus/19f1eace04412a10268532091d5c316a13aab90a|commit]] * Intel: sof_sdw: remove hdac-hdmi support [[https://git.kernel.org/linus/b0cf3d3ccf31f31c9c415566968caf1405fc0893|commit]] * SOF: Intel: pci-tgl: add ADL-M support [[https://git.kernel.org/linus/1f763d0388af6f6cffcdb1080ce112c63d766809|commit]] * codecs: Add driver for NXP/Goodix TFA989x (TFA1) amplifiers [[https://git.kernel.org/linus/af00978a0a06bab60bd5adf54a65ea69d19ce35d|commit]] * codecs: tfa989x: Add support for tfa9897 [[https://git.kernel.org/linus/1ba1d69d8aa938f64cb07604b320a5074c3bb107|commit]] * codecs: wcd-clsh: add new version support [[https://git.kernel.org/linus/19c5d1f6a0c39cf910c8d211ea40ff758bcb3f49|commit]] * ASoC: codecs: add wcd938x support [[https://git.kernel.org/linus/e02c65f3a7ce11ce522e805c78ed2f1da5d96975|commit]], [[https://git.kernel.org/linus/16572522aece6a142d303a25f32544643f52c383|commit]], [[https://git.kernel.org/linus/e8ba1e05bdc016700c85fad559a812c2e795442f|commit]], [[https://git.kernel.org/linus/8da9db0cd6694c98f64b6ec413337ac834e05bb0|commit]], [[https://git.kernel.org/linus/d5add08fcbce35faeeffa62d7e8f21fd979d8420|commit]], [[https://git.kernel.org/linus/04544222886881cb0865040dcdf747fe7e025947|commit]], [[https://git.kernel.org/linus/8d78602aa87a3805902bed83157526fdc5b837d4|commit]] * codecs: wcd934x: add Headset and button detection support [[https://git.kernel.org/linus/c6d25d5786090edc7299b32160644bb2e468c25d|commit]], [[https://git.kernel.org/linus/0e5c9e7ff899808afa4e2b08c2e6ccc469bed681|commit]], [[https://git.kernel.org/linus/9fb9b1690f0ba6b2c9ced91facc1fc44f5a0d5c1|commit]], [[https://git.kernel.org/linus/c15d4b72098ca3055d98ce0d66127fe37a6a6361|commit]] * cs42l42: Add support for 2304000 Bit clock [[https://git.kernel.org/linus/f5b49d98516c12aff40896782aa37be77d3c616e|commit]] and support for 2400000 Bit clock [[https://git.kernel.org/linus/4b38da6ffd6227c930be5c246f6f0f8ef3a80f16|commit]] * fsl_spdif: add support for enabling raw capture mode [[https://git.kernel.org/linus/604e5178444ea1d8053cf073e2c68fbc73a4e142|commit]] * imx-card: Add imx-card machine driver [[https://git.kernel.org/linus/aa736700f42fa0813e286ca2f9274ffaa25163b9|commit]] * meson: g12a-toacodec: add support for SM1 TOACODEC [[https://git.kernel.org/linus/7487238c5f530b418745ce134d1b0a7fba3a0d8d|commit]] * qcom: Add four speaker support on MI2S secondary [[https://git.kernel.org/linus/c223f41c1a52bfe10f1d3311679b1d1f9813e500|commit]] * qdsp6: Add Quinary MI2S ports support [[https://git.kernel.org/linus/099ab4fcf3752a1bc721138632d28aa6685b1cee|commit]], [[https://git.kernel.org/linus/d0293e2aa6c1cfc29c7e571721036650b4f656eb|commit]], [[https://git.kernel.org/linus/98e80779ff9a03b913e59850d55ac00f3eec9cdd|commit]], [[https://git.kernel.org/linus/35f78d0277fc522028e9504454c555d9b0f53bec|commit]] * rsnd: add debugfs support [[https://git.kernel.org/linus/1f9c82b5ab83ff24f5c2b62bf9a912e4aef8905e|commit]] * rsnd: add null CLOCKIN support [[https://git.kernel.org/linus/d6956a7dde6fbf843da117f8b69cc512101fdea2|commit]] * rt711: add two jack detection modes [[https://git.kernel.org/linus/683b0df26c3333a5c020a2764b71a70d082c1c61|commit]] * tlv320aic32x4: add support for TAS2505 [[https://git.kernel.org/linus/b4525b6196cd7f83eba16d8679a55f8bb9571052|commit]], [[https://git.kernel.org/linus/688d47cdd9344b1485eb28c2a7aa99743ed529a3|commit]], [[https://git.kernel.org/linus/8e0eb2fb5c0732a6fa53f2df7079754152857c24|commit]] * topology: Add support for multiple kcontrol types to a widget [[https://git.kernel.org/linus/d29d41e28eea65493395dda0b6d1fff23ca374f4|commit]] == Tablets, touch screens, keyboards, mouses == * resistive-adc-touch: add support for z1 and z2 channels [[https://git.kernel.org/linus/fb082cd59afa7fbd3a610e9835050675040b1b99|commit]] * edt-ft5x06: add support for iovcc-supply [[https://git.kernel.org/linus/df4c40f484191362976f46f655c88d4ea0b6d51f|commit]] * pm8941-pwrkey: add support for PMK8350 PON_HLOS PMIC peripheral [[https://git.kernel.org/linus/2fcbda9a822db2ff990fd9f19075843737bc1685|commit]] * Add SparkFun Qwiic Joystick driver [[https://git.kernel.org/linus/552e4047f3341ead7c7d61eddfc5c39dbf20452b|commit]] * HID * input: Add support for Programmable Buttons [[https://git.kernel.org/linus/bcfa8d14570d85c998a9b706b074ab151b286edf|commit]] * apple: Add support for Keychron K1 wireless keyboard [[https://git.kernel.org/linus/ebe0b42a4252333aa4af60fd4d11b69405aa6068|commit]] * amd_sfh: Add initial support for HPD sensor [[https://git.kernel.org/linus/24a31ea94922d391a96a9dd0a9a830de65423817|commit]] * amd_sfh: Extend ALS support for newer AMD platform [[https://git.kernel.org/linus/0aad9c95eb9a2b086322e28ae2e58ad25598604e|commit]] * amd_sfh: Extend driver capabilities for multi-generation support [[https://git.kernel.org/linus/f264481ad614dfd9aae59eeefa5fc664cdf173ae|commit]] * lg-g15: Add support for the Logitech Z-10 speakers [[https://git.kernel.org/linus/cbe5b6b6a77ad262d9f9a56962c9b1ac2f91c0f5|commit]] == TV tuners, webcams, video capturers == * Add HANTRO G2/HEVC decoder support for IMX8MQ [[https://git.kernel.org/linus/4dd0f63b51c24afd2f34afbae2e728cf00c390e6|commit]], [[https://git.kernel.org/linus/d395a78db9eabd12633b39e05c80e803543b6590|commit]], [[https://git.kernel.org/linus/42cb2a8f27d284b6c73dfc23bed4d6991f3bc1a3|commit]], [[https://git.kernel.org/linus/8968cfc282955c3f853b34d9ceaaa1ba33943e94|commit]], [[https://git.kernel.org/linus/31ad15e688e58a94779971f428c414b7a3f882d1|commit]], [[https://git.kernel.org/linus/35f51f6091bcf2cb90d9ac2f41465c415a34632e|commit]], [[https://git.kernel.org/linus/b7782b34a76615f8199daf1bce544aa73e35f44d|commit]], [[https://git.kernel.org/linus/cb5dd5a0fa518dff14ff2b90837c3c8f98f4dd5c|commit]], [[https://git.kernel.org/linus/45040f675041956ad763f9ef139ecee3647aa8bb|commit]] * MPEG-2 stateless API cleanup and destaging [[https://git.kernel.org/linus/118f3e1562f2b15e30ed65a2718cd9ed710054b1|commit]], [[https://git.kernel.org/linus/81bbb65f19819440b42270e1f033d9b14279540c|commit]], [[https://git.kernel.org/linus/88e78409a83a579fde7f150be7ebeefab0e1f774|commit]], [[https://git.kernel.org/linus/f329e21e9dadc5c8ee37c781b30fe63bf7217201|commit]], [[https://git.kernel.org/linus/b6d7e8031c9c17462935329ca8b37f0da2f99da0|commit]], [[https://git.kernel.org/linus/701a6a410c319729c86bfb696860f21adbff1bfa|commit]], [[https://git.kernel.org/linus/45f97ba1ce8059632c6f1518fda1faedd7db55fb|commit]], [[https://git.kernel.org/linus/2f0968827a48a3b01a0cc9185abd41978d5ce918|commit]], [[https://git.kernel.org/linus/3c994c6d21db2269518648f0dab21f10fd46e4ee|commit]], [[https://git.kernel.org/linus/f4815b399111d992c1118c708f464a847dfd29e2|commit]] * atmel: atmel-isc-base: add support for more formats and additional pipeline modules [[https://git.kernel.org/linus/debfa496871c181b658def0f2b200302bd9b1216|commit]] * imx208: Add imx208 camera sensor driver [[https://git.kernel.org/linus/d953e3cb4adf66322862d459451435a2eb1b7770|commit]] * mtk-vcodec: Add MT8192 H264 venc driver [[https://git.kernel.org/linus/37eeacba7cb6bfbed9596e7b2f8b672e1c957ac7|commit]] * mtk-vcodec: Support MT8192 H264 4K encoding [[https://git.kernel.org/linus/caf231ac25bdde69d257366e2f8d13b37af5458e|commit]] * ov8856: Add support for 2 data lanes [[https://git.kernel.org/linus/c492ec9ae9ede77dd794b14913b0382376da2bff|commit]] * ov8856: add vflip/hflip control support [[https://git.kernel.org/linus/c19b93a69c8ea6d672b786d1e130e9b4260b4e71|commit]] * rcar-csi2: Add support for Y10 and Y8 [[https://git.kernel.org/linus/e70bc1ea973ddac75119c75fe11b064dd8731051|commit]] * rc: add keymap for Toshiba CT-90405 remote [[https://git.kernel.org/linus/53a370f621a04a06bd2402c13580d7e4eb172c98|commit]] * rc: remove tango ir driver and keymap [[https://git.kernel.org/linus/58c08df5751d823332ccdb49f1d5795479097119|commit]] == Universal Serial Bus == * cdc-wdm: WWAN framework integration [[https://git.kernel.org/linus/cac6fb015f719104e60b1c68c15ca5b734f57b9c|commit]] * gadget: f_uac2/u_audio: add feedback endpoint support [[https://git.kernel.org/linus/24f779dac8f3efb9629adc0e486914d93dc45517|commit]] * gadget: f_uac2: add adaptive sync support for capture [[https://git.kernel.org/linus/40c73b30546e759bedcec607fedc2d4be954508f|commit]] * gadget: u_audio: add real feedback implementation [[https://git.kernel.org/linus/e89bb4288378b85c82212b60dc98ecda6b3d3a70|commit]] * isp1760: add support for isp1763 [[https://git.kernel.org/linus/60d789f3bfbb7428e6ba2949de70a6db8e12e8fa|commit]] * isp1763: add peripheral mode [[https://git.kernel.org/linus/d369c9187c1897ce5339716354ce47b2c2f67352|commit]] * serial * cp210x: add ID for CEL EM3588 USB ZigBee stick [[https://git.kernel.org/linus/d6a206e60124a9759dd7f6dfb86b0e1d3b1df82e|commit]] * cp210x: add support for GPIOs on CP2108 [[https://git.kernel.org/linus/8051334e901f2f7ab9fa30a15b74cdc8e58dfde2|commit]] * ftdi_sio: add device ID for Auto-M3 OP-COM v2 [[https://git.kernel.org/linus/8da0e55c7988ef9f08a708c38e5c75ecd8862cf8|commit]] * option: add Telit FD980 composition 0x1056 [[https://git.kernel.org/linus/5648c073c33d33a0a19d0cb1194a4eb88efe2b71|commit]] * option: add new VID/PID to support Fibocom FG150 [[https://git.kernel.org/linus/2829a4e3cf3a6ac2fa3cdb681b37574630fb9c1a|commit]] * option: add support for u-blox LARA-R6 family [[https://git.kernel.org/linus/94b619a07655805a1622484967754f5848640456|commit]] * usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS [[https://git.kernel.org/linus/6abf2fe6b4bf6e5256b80c5817908151d2d33e9f|commit]] * xhci-mtk: allow multiple Start-Split in a microframe [[https://git.kernel.org/linus/d3997fce189fc4423169c51a81ba5ca01144d886|commit]] * Thunderbolt * Offline on-board retimer NVM upgrade support [[https://git.kernel.org/linus/0f28879cf6836f170773a9456c856e1f08f56764|commit]], [[https://git.kernel.org/linus/cae5f5151d76635f6b5c08133184c48048346e63|commit]], [[https://git.kernel.org/linus/ccc5cb8ad5d18ec0e008d1652711fa1c18e9366c|commit]], [[https://git.kernel.org/linus/3406de7cc20f254010f2f17450a58541fb77ffea|commit]], [[https://git.kernel.org/linus/3fb10ea4ce86d4d06622be894099c59872e92c57|commit]], [[https://git.kernel.org/linus/ff3a8306456755689babc7bcc29c60e582738c7b|commit]], [[https://git.kernel.org/linus/1cbf680f7687f55ae5a1405556519bc70d66a616|commit]], [[https://git.kernel.org/linus/faa1c615f0bdd4f3ac5288bf2952f49dfeac916c|commit]], [[https://git.kernel.org/linus/25335b30daf66f4cc03715c2ac9cdc3258fb5531|commit]] * Add self-authenticate support for new dock [[https://git.kernel.org/linus/fe6f6f95919ccdc8a3e2c5dae9b1740583e16523|commit]] * Add support for Intel Alder Lake [[https://git.kernel.org/linus/135794868ad83d0327cdd78df469e118f1fe7cc4|commit]] * Add wake from DisplayPort [[https://git.kernel.org/linus/6026b703e8f61bf9c395bb286fa3b46956ce0496|commit]] == Serial Peripheral Interface (SPI) == * add of_device_uevent_modalias support [[https://git.kernel.org/linus/3ce6c9e2617ebc09b2d55cc88134b90c19ff6d31|commit]] * hisi-kunpeng: Add debugfs support [[https://git.kernel.org/linus/2b2142f247ebeef74aaadc1a646261c19627fd7e|commit]] * spi-mem: add automatic poll status functions [[https://git.kernel.org/linus/c955a0cc8a286e5da1ebb88c19201e9bab8c2422|commit]] * stm32-qspi: add automatic poll status feature [[https://git.kernel.org/linus/86d1c6bbae32122c5f703b2d8acccf5d4258f2bb|commit]] == Watchdog == * Add hrtimer-based pretimeout feature [[https://git.kernel.org/linus/7b7d2fdc8c3e3f9fdb3558d674e1eeddc16c7d9e|commit]] * sbsa: Support architecture version 1 [[https://git.kernel.org/linus/abd3ac7902fb77f8386f485f7284253fc0c4d803|commit]] * hpwdt: New PCI IDs [[https://git.kernel.org/linus/742b80c56135971e35e6753c7400d7d6ee842a90|commit]] * sama5d4_wdt: add support for sama7g5-wdt [[https://git.kernel.org/linus/5ae233fba8edee84fdd70e72a69bb7a41a273194|commit]] * Add Mstar MSC313e WDT driver [[https://git.kernel.org/linus/e9800b7994642a794afd4894f072541c14277ce8|commit]] * Remove MV64x60 watchdog driver [[https://git.kernel.org/linus/bc65baf73b68448e79e8ff797522d1976788deb1|commit]] == Serial == * fsl_lpuart: add loopback support [[https://git.kernel.org/linus/8a0c810d94f02d7aa2074658ee6d0ec0a39f0555|commit]] * liteuart: Add support for earlycon [[https://git.kernel.org/linus/4bc2bd5aefd60a2837a20b1e88e89eaaa677d229|commit]] * sh-sci: Add support for RZ/G2L SoC [[https://git.kernel.org/linus/3b2cd60689fa439481f535ee4463fb223a276f43|commit]] * Add Option International GSM-Ready 56K/ISDN modem [[https://git.kernel.org/linus/d495dd743d5ecd47288156e25c4d9163294a0992|commit]] == CPU Frequency scaling == * mediatek: add support for mt8365 [[https://git.kernel.org/linus/70d99a8f0442bbc5abfa34ea27ce1fcacff57f90|commit]] * cppc: Add support for frequency invariance [[https://git.kernel.org/linus/fe2535a44904a77615a3af8e8fd7dafb98fb0e1b|commit]], [[https://git.kernel.org/linus/eead1840cbd31e553bf8ccdefbd5b065bf596b71|commit]], [[https://git.kernel.org/linus/83150f5d05f065fb5c12c612f119015cabdcc124|commit]], [[https://git.kernel.org/linus/1eb5dde674f57b1a1918dab33f09e35cdd64eb07|commit]] * intel_pstate: HWP support on hybrid processors [[https://git.kernel.org/linus/c3d175e4852bfdfd1e4021dff8715fc407dedd98|commit]], [[https://git.kernel.org/linus/eb3693f0521e020dd8617c7fa3ddf5c9f0d8dea0|commit]] * intel_pstate: Add Icelake servers support in no-HWP mode [[https://git.kernel.org/linus/fbdc21e9b038d00d0d56fa4e0f7701d42ae08f00|commit]] * intel_pstate: Add Cometlake support in no-HWP mode [[https://git.kernel.org/linus/706c5328851d23dec4d9b433cbf864d900a54edf|commit]] == Voltage, current regulators, power capping, power supply == * power * power: supply: rn5t618: Add more properties [[https://git.kernel.org/linus/7d76367774d716d28bf003defded61a37b4c83ed|commit]], [[https://git.kernel.org/linus/20a3c8b57b2bc2b372bba55ce9d9a90d0030892e|commit]] * supply: pm2301_charger: Delete driver [[https://git.kernel.org/linus/aa8c8bf64b6e11f846087301f033b0e5977b1342|commit]] * supply: Drop BD70528 support [[https://git.kernel.org/linus/4b53bdd53a90cd660918766f445c0ee16fe57cf1|commit]] * regulator * bd70528: Drop BD70528 support [[https://git.kernel.org/linus/71de5d6e63c992abe037c43bc581cff432a5a1c4|commit]] * bd9576: Support error reporting [[https://git.kernel.org/linus/e7bf1fa58c46db9f72220c4472272d6da0a54c91|commit]] * fan53555: add tcs4526 [[https://git.kernel.org/linus/5eee5eced95f1b35c8567688ed52932b7e58deee|commit]] * max8893: add regulator driver [[https://git.kernel.org/linus/d83f778c627ad4e80bd82dbc88ffa1b1b18876bb|commit]] * mt6359: Add support for MT6359 regulator [[https://git.kernel.org/linus/d7a58decc7049e8ca9707b63fcc2556cde3d26c5|commit]] * mt6359: Add support for MT6359P regulator [[https://git.kernel.org/linus/4cfc965475124c4eed2b7b5d8b6fc5048a21ecfd|commit]] * qcom-rpmh: Add new regulator found on SA8155p adp board [[https://git.kernel.org/linus/9a336ed97d00bb69547272fc7d0439802bece375|commit]] * rt6160: Add support for Richtek RT6160 [[https://git.kernel.org/linus/de20b747c5836ffc6768914b95d7617139fac4f4|commit]] * rt6245: Add support for Richtek RT6245 [[https://git.kernel.org/linus/a747070e9b629eeb70118651dfbd500bf8bb5ebe|commit]] * sy7636a: Initial commit [[https://git.kernel.org/linus/8c485bedfb7852fa4de2a34aac2a6fd911f539f4|commit]] == Real Time Clock (RTC) == * m41t80: add support for fixed clock [[https://git.kernel.org/linus/f765e349c3e1f2e676ad4bd61197216b26976022|commit]] * imxdi: add wakeup support [[https://git.kernel.org/linus/bcae59d0d45b866d5b9525ea8ece6d671e6767c8|commit]] * bd70528: Drop BD70528 support [[https://git.kernel.org/linus/e5e3352580702b3727637dd988cddfe6a5880fe9|commit]] == Pin Controllers (pinctrl) == * tigerlake: Add Alder Lake-M ACPI ID [[https://git.kernel.org/linus/258435a1c8187f559549e515d2f77fa0b57bcd27|commit]] * amd: Add device HID for new AMD GPIO controller [[https://git.kernel.org/linus/1ca46d3e43569186bd1decfb02a6b4c4ddb4304b|commit]] * mediatek: add support for mt8365 SoC [[https://git.kernel.org/linus/e94d8b6fb83a81fa8c6595fadcada7b349e7694a|commit]] * qcom: pinctrl: Add pinctrl driver for sm6125 [[https://git.kernel.org/linus/0c3ae641a27a41e4998663b34c133d6ff3131df7|commit]] == Multi Media Card (MMC) == * Add support for cache ctrl for SD cards [[https://git.kernel.org/linus/130206a615a9831a65e186484a5a332f9f6d29c8|commit]] * Initital support for new power/perf features for SD cards [[https://git.kernel.org/linus/e62f1e0b2384e25fe61042da3ecf08b7d8262f8d|commit]], [[https://git.kernel.org/linus/c7bedef053cf7fd26efca90551a95c1776dd9e2f|commit]], [[https://git.kernel.org/linus/1e0b069bdc583925d6207e091e55ad4d0f30eb4c|commit]], [[https://git.kernel.org/linus/04f967ad28c836815f6894b618643dd23670c6e5|commit]], [[https://git.kernel.org/linus/6fa79651cc808f68db6f6f297be5a950ccd5dffb|commit]], [[https://git.kernel.org/linus/cec18ad93e35a219d2277dbbdbfedb4f83a7a220|commit]], [[https://git.kernel.org/linus/41e84fe1647e0d6ec309882bc247667e304c351f|commit]], [[https://git.kernel.org/linus/dbea8ae9febdea11cb74d094e6b730987079679e|commit]], [[https://git.kernel.org/linus/c784f92769ae8eafb2eb489408757528ff7525df|commit]], [[https://git.kernel.org/linus/4e6306e0b83c6251699c2202e859b55ddf7b8c5f|commit]], [[https://git.kernel.org/linus/2c5d42769038045b92160a849aad43c4b3170e2a|commit]] * Add support for disabling HS400 mode via DT [[https://git.kernel.org/linus/f722e650d965307f8c4c24cf4edc166b6abe9dc6|commit]] * sdhci-iproc: Add support for the legacy sdhci controller on the BCM7211 [[https://git.kernel.org/linus/98b5ce4c08ca85727888fdbd362d574bcfa18e3c|commit]] * JZ4740: Add support for JZ4775 [[https://git.kernel.org/linus/d1c777ee5c5e0a08755ee39f6dc4d222bfd9c832|commit]] == Memory Technology Devices (MTD) == * Add OTP nvmem provider support [[https://git.kernel.org/linus/4b361cfa862479fbb1d14ddf01de4dbc7146dcc5|commit]] * rawnand: NV-DDR support [[https://git.kernel.org/linus/961965c45c706175b24227868b1c12d72775e446|commit]], [[https://git.kernel.org/linus/4dd7ef970bee8a93e1817ec028a7e26aef046d0d|commit]], [[https://git.kernel.org/linus/ed2a491037116387f109e851a2b46adcb5feca3b|commit]], [[https://git.kernel.org/linus/64de50e38e6fced70d1cb9ad3112de0691d0ed2d|commit]], [[https://git.kernel.org/linus/b16e0d5d7d693fe93e75569ac1ec80b513902a92|commit]], [[https://git.kernel.org/linus/dbb7b2e07564443c2d357398e83e27c2fa5a89ed|commit]], [[https://git.kernel.org/linus/7ce872d9f55f46ef54b60ed39c0144b24578d7c3|commit]], [[https://git.kernel.org/linus/1666b815ad1a5b6373e950da5002ac46521a9b28|commit]], [[https://git.kernel.org/linus/9310668fb60a7ee76c4fdfd6388747a6f2beaf75|commit]], [[https://git.kernel.org/linus/94c8ce8e3e96f549ff16381e82974c0af012a7f8|commit]], [[https://git.kernel.org/linus/45606518f961b9e7adddc017e7813fa9f92b43fb|commit]], [[https://git.kernel.org/linus/fee9c6d8f098f7054f97ec1dbcfb42a2a3238f23|commit]], [[https://git.kernel.org/linus/d7a773e8812bcf7a5412e4baebc6eb1c11242551|commit]], [[https://git.kernel.org/linus/09cdb237c3c8773921a7c265ce1cdd23818a3f14|commit]], [[https://git.kernel.org/linus/e32df79f19c756f072bd517ece65df1efd496f95|commit]], [[https://git.kernel.org/linus/f3fe156ede6db96a060cc98ff1bce1ee6417a68b|commit]], [[https://git.kernel.org/linus/9d3194bf2aef81c04177ab6bbe50406aa8d550dc|commit]], [[https://git.kernel.org/linus/a9ecc8c814e9600836e00cb592f1cb5378393126|commit]], [[https://git.kernel.org/linus/b134ed01d95e195d8fd1c2a1388810496860be5b|commit]], [[https://git.kernel.org/linus/698ddeb89e01840dec05ffdb538468782e641a56|commit]], [[https://git.kernel.org/linus/10938a08fc4055667da7518685fbd8ea7d09de1b|commit]], [[https://git.kernel.org/linus/4edde60314587382e42141df2f41ca968dc20737|commit]] * rawnand: omap: Add larger page NAND chips support [[https://git.kernel.org/linus/c06dd49fd59a0abd6fa3d9fc5f6eb1776af4e5e4|commit]] * rawnand: pl353: Add support for the ARM PL353 SMC NAND controller [[https://git.kernel.org/linus/08d8c62164a322eb923034acacf25246b775593a|commit]] * spi-nor: enable locking support for MX25L12805D [[https://git.kernel.org/linus/7ea40b54e83baed17d85567cfae56175def39a55|commit]] * spi-nor: intel-spi: Add support for Intel Alder Lake-M SPI serial flash [[https://git.kernel.org/linus/854955ae96dbd436ba4719dd1cedb7c1c40bd303|commit]] * spinand: macronix: Add support for serial NAND flash [[https://git.kernel.org/linus/c374839f9b4475173e536d1eaddff45cb481dbdf|commit]] == Industrial I/O (iio) == * accel: Add driver for Murata SCA3300 accelerometer [[https://git.kernel.org/linus/9cc9806e22178e5dbeb4e058df23427454d8d287|commit]] * accel: add support for FXLS8962AF/FXLS8964AF accelerometers [[https://git.kernel.org/linus/a3e0b51884ee3a5d890bd5124d9a270f61589e57|commit]] * accel: bmc150: Add support for yoga's with dual accelerometers with an ACPI HID of DUAL250E [[https://git.kernel.org/linus/f2bf22dc9ea8ead180fc0221874bd556bf1d2685|commit]], [[https://git.kernel.org/linus/f407e2dca0f559621114eeaf657880d83f237fbd|commit]], [[https://git.kernel.org/linus/42d1c1dc0f91cae51781b4c5ccdb26989d7521dc|commit]], [[https://git.kernel.org/linus/3aac11a7c2d1c6b165945893bdee43ea359d3e4f|commit]], [[https://git.kernel.org/linus/ba8bd0b33b7bd4f250ff538dce67292ee2db1434|commit]], [[https://git.kernel.org/linus/35157f443b6f4537b03ea1752bd96fbb28ec7a4f|commit]], [[https://git.kernel.org/linus/addab6febc42ed94e4eee1abbe486150e4f8b9e9|commit]], [[https://git.kernel.org/linus/61ddd0a75d14311b0c4d5de06bec7afeb8b21612|commit]], [[https://git.kernel.org/linus/e6148fe791071a091fe7fd8bc1d99ccc4958c70e|commit]] * accel: bmc150: Add device IDs for BMA253 [[https://git.kernel.org/linus/49e95c689ad8a5f12a8a9aff3a50821969ebe0d7|commit]] * accel: kxcjk-1013: Add support for KX023-1025 [[https://git.kernel.org/linus/c630c1768522d5728e51470ea4f292a35919bb6d|commit]] * adc: ad7298: Enable on Intel Galileo Gen 1 [[https://git.kernel.org/linus/494186662ecf1c6e0c1d68b06b45434f298688d9|commit]] * adc: add ADC driver for the TI TSC2046 controller [[https://git.kernel.org/linus/9374e8f5a38defe90bc65b2decf317c1c62d91dd|commit]] * afe: iio-rescale: Support processed channels [[https://git.kernel.org/linus/53ebee9499805add3eef630d998c40812e6a1c39|commit]] * light: Added AMS tsl2591 driver implementation [[https://git.kernel.org/linus/2335f0d7c790157bebf76fae963ba41bcba45fdb|commit]] * sps30: add support for serial interface [[https://git.kernel.org/linus/b2e171f5a5c6003bd2e9a8f7dfd8acf714af429b|commit]] * sps30: separate core and interface specific code [[https://git.kernel.org/linus/8f3f130852785dac0759843835ca97c3bacc2b10|commit]] * st_sensors: Add lsm9ds0 IMU support [[https://git.kernel.org/linus/6731ca3999ffa4c878a661b980759300dfb0237e|commit]] * temperature: add driver support for ti tmp117 [[https://git.kernel.org/linus/df041e737a38a316976273281f66fbce2ec4b397|commit]] == Multi Function Devices (MFD) == * Add Rockchip rk817 audio CODEC support [[https://git.kernel.org/linus/4a1c456a57c3366d736548ad4d09eb3aa0b9ddaf|commit]] * Add support for the MediaTek MT6359 PMIC [[https://git.kernel.org/linus/e545b8f380a96174df40db4203d09156e096ee89|commit]] * intel-lpss: Add Intel Alder Lake-M PCI IDs [[https://git.kernel.org/linus/9fb3cad02517cd34311c8ba15c5d78027c63db02|commit]] * pm8008: Add driver for QCOM PM8008 PMIC [[https://git.kernel.org/linus/6b149f3310a4661f70512861b11400ee6b28cdcd|commit]] * rt4831: Adds support for Richtek RT4831 [[https://git.kernel.org/linus/3367ac3ea0dc0d8b7a9471fe75d0f1ce3e1922a4|commit]] * tps68470: Remove tps68470 MFD driver [[https://git.kernel.org/linus/24700e1f41f0dcbe389b8d9e5830aaca2192093c|commit]] == Pulse-Width Modulation (PWM) == * pca9685: Support new usage_power setting in PWM state [[https://git.kernel.org/linus/ae16db1fd3a1b8d1713ba6af5cf27be32918d2b8|commit]] == Inter-Integrated Circuit (I2C + I3C) == * stm32f7: add SMBus-Alert support [[https://git.kernel.org/linus/c8062d11e20c218b310145bc918e116423fb1e83|commit]] * riic: Add RZ/G2L support [[https://git.kernel.org/linus/010e765b406f8e08685ea5b687c63a5ea234719a|commit]] == Hardware monitoring (hwmon) == * pmbus: Add support for reading direct mode coefficients [[https://git.kernel.org/linus/e8e00c83a268d5b7d2f5bd490c2269c1ede76a07|commit]] * pmbus/zl6100: Add support for ZLS1003, ZLS4009 and ZL8802 [[https://git.kernel.org/linus/ab9d85e9d5555c75992dc42bf3b9eebe0955ceb9|commit]] * adm1275: enable adm1272 temperature reporting [[https://git.kernel.org/linus/9da9c2dc57b2fa2e65521894cb66df4bf615214d|commit]] * Add sht4x Temperature and Humidity Sensor Driver [[https://git.kernel.org/linus/505c2549373f3aa9ee16493f872e57876ffb70b1|commit]] * pmbus/pim4328: Add PMBus driver for PIM4006, PIM4328 and PIM4820 [[https://git.kernel.org/linus/317f9d808a7a0dad28eba10d96527f536ff28347|commit]] * pmbus: Add support for MPS Multi-phase mp2888 controller [[https://git.kernel.org/linus/e4db7719d037b820024a213f74703ae1abf5b00c|commit]] * pmbus: Add driver for Delta DPS-920AB PSU [[https://git.kernel.org/linus/3efbcee8d4029795fa0a1ef90dc5b9ea763ed207|commit]] == DMA engines == * qcom: gpi: Add SM8250 compatible [[https://git.kernel.org/linus/23e51f110f914ab9eb2eb4ddd83f3fc8ffda99b5|commit]] == Cryptography hardware acceleration == * hisilicon: supports to configure function's QoS for ACC [[https://git.kernel.org/linus/72b010dc33b9598883bc84d40b0a9d07c16f5e39|commit]], [[https://git.kernel.org/linus/cc0c40c613d2c7a00f3bce4770a925dc56672f01|commit]], [[https://git.kernel.org/linus/362c50bad3a792969f8142372a0813aadee89a61|commit]], [[https://git.kernel.org/linus/2966d9d3078c623f48054ef1bfe9a975e5d1fe0c|commit]], [[https://git.kernel.org/linus/3bbf0783636be8fd672907df25904288f14566f2|commit]], [[https://git.kernel.org/linus/3d2a429271bb622da48983631625c20de3b5f1e5|commit]], [[https://git.kernel.org/linus/c02f5302e46a2505cb0a6170470759a7db929979|commit]], [[https://git.kernel.org/linus/38a9eb8182a24c7ef2dbe82ab46cafe8f8e9b271|commit]] * hisilicon/qm: add MSI detection steps on Kunpeng930 [[https://git.kernel.org/linus/9b75e311acadb978001c81400a6ba64f48bf00e8|commit]] * hisilicon/qm: implement for querying hardware tasks status [[https://git.kernel.org/linus/d18344c0d095df544bd7174b8fae2cba523dd4a4|commit]] * hisilicon/sec: supports new aeads for new hardware [[https://git.kernel.org/linus/c16a70c1f253e70f5d49b8e1054769bc8dbc3848|commit]], [[https://git.kernel.org/linus/6c46a3297beae4ae2d22b26da5e091f058381c7c|commit]], [[https://git.kernel.org/linus/668f1ab70378d836a9df0cc01abf21c40c4d9348|commit]], [[https://git.kernel.org/linus/9039878ade5d7ec6ac8db299ab8e7d0d563e3447|commit]] * hisilicon: supports new skciphers for new hardware [[https://git.kernel.org/linus/7b44c0eecd6ade576bfb7a104dcdae5580237420|commit]], [[https://git.kernel.org/linus/5652d55a76f6f59f0c1cfc7b90050742738cd227|commit]], [[https://git.kernel.org/linus/6161f40c630bd7ced5f236cd5fbabec06e47afae|commit]] * hisilicon: add new type of sqe for Kunpeng930 [[https://git.kernel.org/linus/d5c1477b2f39173a988c01694d9bfafc771fa6ef|commit]], [[https://git.kernel.org/linus/adc3f65a7806dda12894870731509b6778735319|commit]] * nx: Add sysfs interface to export NX capabilities [[https://git.kernel.org/linus/8c099490fd2bd3b012b3b6d0babbba3b90e69b55|commit]] * octeontx2 - Add mailbox support for CN10K [[https://git.kernel.org/linus/4cd8c3152edeb0a580e0552317606a1f90bc59ab|commit]] * octeontx2 - add support for CPT operations on CN10K [[https://git.kernel.org/linus/40a645f753b32346f1ab3953e769479561a19b8d|commit]] * octeontx2 - add support to map LMTST region for CN10K [[https://git.kernel.org/linus/eb33cd9116b2f1d193352c77bd829b61b1249b00|commit]] * sl3516 - Add sl3516 crypto engine [[https://git.kernel.org/linus/46c5338db7bd45b2cf99570560f00389d60fd6b4|commit]] == PCI == * ixp4xx: Add a new driver for IXP4xx [[https://git.kernel.org/linus/f7821b49345848246692c6e0aa170c8bc6723f86|commit]] * iproc: Support multi-MSI only on uniprocessor kernel [[https://git.kernel.org/linus/2dc0a201d0f59e6818ef443609f0850a32910844|commit]] * Add sysfs "removable" attribute [[https://git.kernel.org/linus/c037b6c818c30b6afa11dc70018fc4a075f26028|commit]] == FRU Support Interface (FSI) == * Aspeed: Reduce poll timeout [[https://git.kernel.org/linus/1e2233d4f3dfdad501134f685caab9e936675387|commit]] == Clock == * Add support for the lmk04832 [[https://git.kernel.org/linus/3bc61cfd6f4a57de32132075b15b0ac8987ced1d|commit]] * agilex/stratix10: add support for the 2nd bypass [[https://git.kernel.org/linus/c2c9c5661a48bf2e67dcb4e989003144304acd6a|commit]] * hisilicon: Add clock driver for hi3559A SoC [[https://git.kernel.org/linus/6c81966107dc0caa5d2ebedbcebb5f10d865064d|commit]] * imx: scu: add gpr clocks support [[https://git.kernel.org/linus/5392c5de096a1cad7cc06265a8cbf18de2da22c7|commit]] * ingenic: Add support for the JZ4760 [[https://git.kernel.org/linus/bdbfc029374f6d9ed31bc44983501fd1008b677f|commit]] * lmk04832: add support for digital delay [[https://git.kernel.org/linus/6181baa177d417211ea28de793524ec3d13b256d|commit]] * clk: qcom: Add camera clock controller driver for SM8250 [[https://git.kernel.org/linus/f21b6bfecc2760eaa9c2b485c74dffddbe92151a|commit]], [[https://git.kernel.org/linus/a3b82fa77b861364b5abac3bf310124276e8f65d|commit]], [[https://git.kernel.org/linus/5d66ca79b58cb3cbeb4720c7da064faf03c27446|commit]] * qcom: Add MDM9607 GCC driver [[https://git.kernel.org/linus/48b7253264eadc05a3d84db9ea11eef528a0108a|commit]] * qcom: clk-rcg2: Add support for duty-cycle for RCG [[https://git.kernel.org/linus/7f891faf596ede96dd209b2257abf9df636b481f|commit]] * qcom: dispcc-sm8250: Add EDP clocks [[https://git.kernel.org/linus/2ebdd326d19954c4705bf4417f33e765bff70c8e|commit]] * renesas: Add CPG core wrapper for RZ/G2L SoC [[https://git.kernel.org/linus/ef3c613ccd68a78727b817c3dacf4a68d1ffc67f|commit]] * renesas: Add support for R9A07G044 SoC [[https://git.kernel.org/linus/17f0ff3d49ff1a9d4027f9c2bef4725ab41aa9a5|commit]] * renesas: r9a07g044: Add P2 Clock support [[https://git.kernel.org/linus/668756f7299d2d3c75add17cb415717e247450ef|commit]] * renesas: rcar-gen3: Add boost support to Z clocks [[https://git.kernel.org/linus/3a0e84845891eebccce767b4f8cd5ed1b9bffc14|commit]] * renesas: rcar-gen3: Increase Z clock accuracy [[https://git.kernel.org/linus/50086045bd07a9bc55c113f2b19a8f3746c9f9b0|commit]] * renesas: rzg2l: Add multi clock PM support [[https://git.kernel.org/linus/2fa9fd69b3ee015a873e44f7c645ad7bcb79d290|commit]] * si5341: Add sysfs properties to allow checking/resetting device faults [[https://git.kernel.org/linus/9b13ff4340dff30f361462999a6a122fcc4e473f|commit]] * stm32mp1: new compatible for secure RCC support [[https://git.kernel.org/linus/21e743300dd0b9e57425de4a9ba651493b165e03|commit]] * ti: add am33xx/am43xx spread spectrum clock support [[https://git.kernel.org/linus/0899431f95a7a695f342527548b24ffd902c68ab|commit]] == PHY ("physical layer" framework) == * qcom-qusb2: Add configuration for SM4250 and SM6115 [[https://git.kernel.org/linus/7756f1d6369e61d1cc47d6e51619d1e1d1681a2e|commit]] * qcom-qmp: Add support for SDX55 QMP PCIe PHY [[https://git.kernel.org/linus/be0ddb5dfd8b6f3f32e493d34f3819182f354d5e|commit]] * phy-rockchip-inno-usb2: add support for RK3308 USB phy [[https://git.kernel.org/linus/31f840e7ff3e515c2b2cc9eaee42f5440805650c|commit]] * phy-can-transceiver: Add support for generic CAN transceiver driver [[https://git.kernel.org/linus/a4a86d273ff1b6f7551c67908556fd91c9affd22|commit]] * rockchip: add Innosilicon-based CSI dphy [[https://git.kernel.org/linus/bd1f775d6027810d366600e2490a2ff247e3466e|commit]] == EDAC (Error Detection And Correction) == * i10nm: Add detection of memory levels for ICX/SPR servers [[https://git.kernel.org/linus/4bd4d32e9a38d7ffb091b4109ab63c8f601e5678|commit]] * i10nm: Add support for high bandwidth memory [[https://git.kernel.org/linus/c945088384d00e6eb61535cc4ba25bc062090909|commit]] * igen6: Add Intel Alder Lake SoC support [[https://git.kernel.org/linus/ad774bd5a8c23a319773ac3668382f24d62a39a8|commit]] * igen6: Add Intel ICL-NNPI SoC support [[https://git.kernel.org/linus/4e591c056819850366d2fcb642f4f40dd4eef93a|commit]] * igen6: Add Intel Tiger Lake SoC support [[https://git.kernel.org/linus/0b7338b27e821a61cfa695077aa352312c0ab2f6|commit]] * skx_common: Add new ADXL components for 2-level memory [[https://git.kernel.org/linus/2f4348e5a86198704368a699a7c4cdeb21d569f5|commit]] == IOMMU == * Add IOMMU driver for rk356x [[https://git.kernel.org/linus/7e0fc5072e0b7a3e4dfbc39ad54aefa494bdf3da|commit]], [[https://git.kernel.org/linus/9e6f3cd589cb711b5949cfbeb84e5440906195bd|commit]], [[https://git.kernel.org/linus/227014b33f62f93a462f8125038ef6609d7a1572|commit]], [[https://git.kernel.org/linus/c55356c534aa651ccc3053ef2d5d8d810adacf5f|commit]] * amd: Add {{{amd_iommu=force_enable}}} option [[https://git.kernel.org/linus/b1e650db2cc4acca6e7c9974f6a2ca232261173a|commit]] * Add support for ACPI VIOT [[https://git.kernel.org/linus/db59e1b6e49201beacdbd0622aa3594f2de4f727|commit]], [[https://git.kernel.org/linus/11a8c5e3a94b12848f24d9c63b5c175ce0b80729|commit]], [[https://git.kernel.org/linus/3cf485540e7b8550936ce3602edf2f58e4007304|commit]], [[https://git.kernel.org/linus/ac6d704679d343e55615551f19e9b2e18d68518b|commit]], [[https://git.kernel.org/linus/8ce4904bfd22de04ac3cd35d469c0a3337bdeb7b|commit]] * vt-d: Expose latency monitor data through debugfs [[https://git.kernel.org/linus/456bb0b97f00fe8defba155c0a4c48d951635395|commit]] * vt-d: Support asynchronous IOMMU nested capabilities [[https://git.kernel.org/linus/521f546b4e4cedfbfbb5787f940a592dd20dd1f2|commit]] * rockchip: Add support for iommu v2 [[https://git.kernel.org/linus/c55356c534aa651ccc3053ef2d5d8d810adacf5f|commit]] == Various == * xillybus: Add driver for XillyUSB (Xillybus variant for USB) [[https://git.kernel.org/linus/a53d1202aef122894b6e46116a92174a9123db5d|commit]] * counter: Add support for Intel Quadrature Encoder Peripheral [[https://git.kernel.org/linus/b711f687a1c1c14c2da589e84e4f61b975196951|commit]] * cxl * pmem: Add core infrastructure for PMEM support [[https://git.kernel.org/linus/6af7139c979474a29a6ad642c9bf32d92e24c5bc|commit]], [[https://git.kernel.org/linus/8fdcb1704f61a8fd9be0f3849a174d084def0666|commit]], [[https://git.kernel.org/linus/fd14602d05229671be81018fa226f9afdafdba88|commit]], [[https://git.kernel.org/linus/2bbafda405c04cfed1b57b761d13ada3154c0f89|commit]], [[https://git.kernel.org/linus/21083f51521fb0f60dbac591f175c3ed48435af4|commit]] * CXL port and decoder enumeration [[https://git.kernel.org/linus/4812be97c015bddf12c70155858df43acc35a4eb|commit]], [[https://git.kernel.org/linus/3feaa2d35880de935fc0d02acf808f355564f4e6|commit]], [[https://git.kernel.org/linus/7d4b5ca2e2cb5d28db628ec79c706bcfa832feea|commit]], [[https://git.kernel.org/linus/3b94ce7b7bc1b436465a93f19a50e0b495b429a1|commit]], [[https://git.kernel.org/linus/40ba17afdfabb01688c61565dbe02a916241bc05|commit]] * CXL ACPI tables for object creation [[https://git.kernel.org/linus/3e23d17ce1980c7cbd9426a3764eef7d7bcd443f|commit]], [[https://git.kernel.org/linus/da6aafec3dca6132dd80a74a4d918ffd86c7ae35|commit]] * Add media provisioning required commands [[https://git.kernel.org/linus/87815ee9d0060a91bdf18266e42837a9adb5972e|commit]] * extcon: sm5502: Add support for SM5504 [[https://git.kernel.org/linus/d97c0ff5a124f48109c4b32d6471c7bccd497009|commit]], [[https://git.kernel.org/linus/f33c056dea2ea6633d40d36371457380d372c607|commit]] * firmware: Add initial support for Arm FF-A [[https://git.kernel.org/linus/e781858488b918e30a6ff28e9eab6058b787e3b3|commit]], [[https://git.kernel.org/linus/3bbfe9871005f38df2955b2e125933edf1d2feef|commit]], [[https://git.kernel.org/linus/714be77e976a4b013b935b3223b2ef68856084d0|commit]], [[https://git.kernel.org/linus/d0c0bce831223b08e5bade2cefc93c3ddb790796|commit]], [[https://git.kernel.org/linus/cc2195fe536c28e192df5d07e6dd277af36814b4|commit]] * reset: mchp: sparx5: add switch reset driver [[https://git.kernel.org/linus/453ed4283bebd0776682c5a3227619d92caa9c8c|commit]] * reset: stm32mp1: remove stm32mp1 reset [[https://git.kernel.org/linus/590ff40e06d802f6080e03443c6bcff0cd4ba37d|commit]] * hwspinlock: add sun6i hardware spinlock support [[https://git.kernel.org/linus/3c881e05c814c970e4f9577446a9d3461d134607|commit]] * interconnect: qcom: Add SC7280 interconnect provider driver [[https://git.kernel.org/linus/46bdcac533cca06c481524343de7d9cc46d67093|commit]] * ipmi: Allow raw access to KCS devices [[https://git.kernel.org/linus/78ca0c0549803ab0f5ecab43e295111b7ccdc7f2|commit]], [[https://git.kernel.org/linus/ec6f0cf17a639743e622d4156b0a5009263fd479|commit]], [[https://git.kernel.org/linus/961f7a3af9a9e60bbd2f95ae2d3e9e5e6f41fe6a|commit]], [[https://git.kernel.org/linus/55ab48b4e356212fbe084ca110db73bb9a6e7058|commit]], [[https://git.kernel.org/linus/d7096970075ef47c9906fd241cc4939cc11ddd01|commit]], [[https://git.kernel.org/linus/faae6e391eda73a5b9870c78349064282a625bfa|commit]], [[https://git.kernel.org/linus/d4e7ac68f771addc19352121706d8584eb0166cd|commit]], [[https://git.kernel.org/linus/7cafff991e32d4b97251982ab0665601b65f2736|commit]], [[https://git.kernel.org/linus/28651e6c4237f4aee5e0744ce37d3a50e7b1f36b|commit]], [[https://git.kernel.org/linus/fb6379f524ff56314fa857bb5c84bd22eee41eb7|commit]], [[https://git.kernel.org/linus/3a3d2f6a4c64b9e709edc13b685ce46c8629060e|commit]], [[https://git.kernel.org/linus/e880275ccfa120bf6235180ca76f01271b7b97ec|commit]], [[https://git.kernel.org/linus/a7fd43d95054fe03cac3878538dcf12caa854889|commit]], [[https://git.kernel.org/linus/a5e4236d560579a20e2bc870f6e6f32e4e7c0354|commit]], [[https://git.kernel.org/linus/78ff5a1666cd4a1129ca53dad5c68700fe63ab6a|commit]], [[https://git.kernel.org/linus/d0ec795c8c275ceca2076861f7fe3cc5f18da348|commit]] * mailbox * imx-mailbox: support i.MX8ULP MU [[https://git.kernel.org/linus/4f0b776ef5831700fe47567f6d986be410d7b9e4|commit]] * qcom-apcs: Add SM6125 compatible [[https://git.kernel.org/linus/72648436b55f310749352e005a508ede082f63d6|commit]] * qcom: Add MSM8939 APCS support [[https://git.kernel.org/linus/8a7cdb108d3020e221944fbd52b9e047f3f51594|commit]] * mbox: add polarfire soc system controller mailbox [[https://git.kernel.org/linus/83d7b1560810e038e1d07ca6bff41edaeae29725|commit]] * misc: eeprom_93xx46: Add new 93c56 and 93c66 compatible strings [[https://git.kernel.org/linus/14374fbb3f06ddaba186d608a58c07f3d48d08df|commit]] * mxser: drop ISA support [[https://git.kernel.org/linus/291343676e328e1493204faa149746829c488b06|commit]] * nvmem: Add support for FRAM [[https://git.kernel.org/linus/fd307a4ad332ef50be5569c92490219e7cd84ce5|commit]] * ptp: support virtual clocks and timestamping [[https://git.kernel.org/linus/5d43f951b1ac797450bb4d230fdc960b739bea04|commit]], [[https://git.kernel.org/linus/73f37068d540eba5f93ba3a0019bf479d35ebd76|commit]], [[https://git.kernel.org/linus/44c494c8e30e35713c7d11ca3c5ab332cbfabacf|commit]], [[https://git.kernel.org/linus/acb288e8047b7569fbc9af6fa6e9405315345103|commit]], [[https://git.kernel.org/linus/c156174a67070042d51d2c866146d3c934d5468c|commit]], [[https://git.kernel.org/linus/895487a3a10fb3a177e20dcde875515d46ccd4df|commit]], [[https://git.kernel.org/linus/6c9a0a0f2333b1e3c29fef47a8b12131fce4905b|commit]], [[https://git.kernel.org/linus/d463126e23f112629edb01594141ca437a92a108|commit]], [[https://git.kernel.org/linus/d7c08826558811e1bf88de3750a7051f27d0e25c|commit]], [[https://git.kernel.org/linus/2214d7032479e50ff1fa7276e6efe1df08173fbf|commit]], [[https://git.kernel.org/linus/5ce15f2783332dce99ef04e2bdc927f0fa84105d|commit]] * pwm: core: Support new usage_power setting in PWM state [[https://git.kernel.org/linus/9e40ee18a1dc1623a5368d6232aaed52fd29dada|commit]] * regmap * Introduce inverted status registers support [[https://git.kernel.org/linus/bcd23f93d3984a94d64ce0b6bbfa3789c0e8ebaf|commit]] * Add MDIO bus support [[https://git.kernel.org/linus/1f89d2fe16072a74b34bdb895160910091427891|commit]] * mdio: Add clause-45 support [[https://git.kernel.org/linus/f083be9db060fbac09123d80bdffb2c001ac0e2b|commit]] * remoteproc * imx_rproc: support i.MX7ULP/8MN/8MP [[https://git.kernel.org/linus/bad70abdfac1e27d9aa7cc07b02caad5c06667ba|commit]], [[https://git.kernel.org/linus/7a95b19a39c6bc4c107be9f0e8fa6fbee4db777d|commit]], [[https://git.kernel.org/linus/5dc9e9d1b7582b0b7cba10f22763bcb7b1d33902|commit]], [[https://git.kernel.org/linus/e13d1a43aa0f6ef509c9dfda6489fe80b7315620|commit]], [[https://git.kernel.org/linus/52bda8d375143585c366a7d4e5b5e680cf14100b|commit]], [[https://git.kernel.org/linus/cc0316c10fb7063022f604fdaee129109723d1ea|commit]], [[https://git.kernel.org/linus/c8a1a56d8729bdad179e6d4c35830ba3b8dfa20e|commit]], [[https://git.kernel.org/linus/79806d32d5aaafbf170e9b0c03b15d1be77f4c64|commit]] * TI K3 R5F remoteproc support on AM64x !SoCs [[https://git.kernel.org/linus/ee99ee7c929c3e7484b663c4b7da91ab1f050d5b|commit]] * Add AM64x SoC support to PRU remoteproc driver [[https://git.kernel.org/linus/0740ec0893ea1d74a217000d684e79b6e648bb9d|commit]], [[https://git.kernel.org/linus/bfc245129caa84dd384caf002921ededf5917951|commit]] * qcom: pas: Add SC8180X adsp, cdsp and mpss [[https://git.kernel.org/linus/aef6a521e5bf61b3be4567f6c88776956a6d8b32|commit]] * w1: ds2438: adding support for calibration of current measurements [[https://git.kernel.org/linus/ddb20bcf77382c92389a5b506e5f52e840dc70a4|commit]], [[https://git.kernel.org/linus/c9f2713531a9ba2018695a3e191e28d84eaeaae6|commit]], [[https://git.kernel.org/linus/67c6964228b6c0c759893915f0cb47a564c256dc|commit]], [[https://git.kernel.org/linus/1f5e7518f063728aee0679c5086b92d8ea429e11|commit]], [[https://git.kernel.org/linus/fd6ec5d79507f99639c94f107e8a98550c9e1cf6|commit]], [[https://git.kernel.org/linus/c999fbbdcf778c2ea77f59e26d7448a1ab8fa8a2|commit]] * uio: uio_pci_generic: add memory resource mappings [[https://git.kernel.org/linus/e4e050167fd0faf104933b13aff9a8bb541c5f4a|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/43bd8a67cd10e9526656e2bc160e52920bd9e43c|libata updates]] * [[https://git.kernel.org/torvalds/c/ef60eb0eb6e0aaf0aae302cb6362a81b2491e997|MMC and MEMSTICK updates]] * [[https://git.kernel.org/torvalds/c/52f8cf8b0b540a8e4ebba52fe5ee3f57c2682f92|regmap updates]] * [[https://git.kernel.org/torvalds/c/c10383b3fb10286dfeac7754ca964ec992f6fe78|regulator updates]] * [[https://git.kernel.org/torvalds/c/69609a91ac1d82f9c958a762614edfe0ac8498e3|spi updates]] * [[https://git.kernel.org/torvalds/c/2a5c61843e31cefd099f085764c2df2dac9fcd65|hwmon updates]] * [[https://git.kernel.org/torvalds/c/f565b20734d32bab5a899123d2c58909dbf46a5d|x86 RAS updates]] * [[https://git.kernel.org/torvalds/c/2594b713c12faa8976f97d8d16b3d8b343ff4ea2|x86 cpu updates]] * [[https://git.kernel.org/torvalds/c/d04f7de0a5134de13420e72ae62a26f05d312c06|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/6796355bc49b625a701389c954073c4e5dad4381|EFI updates]] * [[https://git.kernel.org/torvalds/c/b89c07dea16137696d0f2d479ef665ef7c1022ab|objtool fix and updates]] * [[https://git.kernel.org/torvalds/c/a15286c63d113d4296c58867994cd266a28f5d6d|locking updates]] * [[https://git.kernel.org/torvalds/c/28a27cbd86076c1a6be311c751b421c4c17a7dd9|perf events updates]] * [[https://git.kernel.org/torvalds/c/54a728dc5e4feb0a9278ad62b19f34ad21ed0ee4|scheduler udpates]] * [[https://git.kernel.org/torvalds/c/9269d27e519ae9a89be8d288f59d1ec573b0c686|timers/nohz updates]] * [[https://git.kernel.org/torvalds/c/e5a0fc4e20d3b672489efc22b515c549bb77db42|x86 exception handling updates]] * [[https://git.kernel.org/torvalds/c/909489bf9f88d314dc18be930cefa99ec9a4aac7|x86 asm updates]] * [[https://git.kernel.org/torvalds/c/1b98ed0e83577bc03515f498a5de342f7dbf0b47|x86 boot update]] * [[https://git.kernel.org/torvalds/c/8e4d7a78f08a788a839bd88a2710ba7a71a86e24|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/5f498328a91b59841557b8c4e8f0360e509dd454|x86 mm update]] * [[https://git.kernel.org/torvalds/c/1b1cf8fe99830e8c95f0fe110b02ba51c2bbc4e0|x86 splitlock updates]] * [[https://git.kernel.org/torvalds/c/17cfb9d332243f6d2551818df27d666d3dd70a23|m68k updates]] * [[https://git.kernel.org/torvalds/c/9840cfcb97fc8b6aa7b36cec3cc3fd763f14052e|arm64 updates]] * [[https://git.kernel.org/torvalds/c/36824f198c621cebeb22966b5e244378fa341295|kvm updates]] * [[https://git.kernel.org/torvalds/c/31e798fd6f0ff0acdc49c1a358b581730936a09a|media updates]] * [[https://git.kernel.org/torvalds/c/6159c49e12284b4880fd60e0575a71a40556a67e|crypto updates]] * [[https://git.kernel.org/torvalds/c/a60c538ed2ff9d084544a894219eed9c5ab980e5|integrity subsystem updates]] * [[https://git.kernel.org/torvalds/c/a58e203530ebdf6e5413bebc7f976d756188a4b5|fscrypt updates]] * [[https://git.kernel.org/torvalds/c/7aed4d57b113f81214bea1ddb10480f620ade800|erofs updates]] * [[https://git.kernel.org/torvalds/c/122fa8c588316aacafe7e5a393bb3e875eaf5b25|btrfs updates]] * [[https://git.kernel.org/torvalds/c/233a806b00e31b3ab8d57a68f1aab40cf1e5eaea|documentation updates]] * [[https://git.kernel.org/torvalds/c/616ea5cc4a7b058f8c27e37b9a597d8704c49130|seccomp updates]] * [[https://git.kernel.org/torvalds/c/07bdc0746a5a23c5bdd041feb2fd8cd7b5ee7a97|pstore updates]] * [[https://git.kernel.org/torvalds/c/8ec035ac4a1391c16c3cf328e6e8d9531d7a229f|fallthrough fixes]] * [[https://git.kernel.org/torvalds/c/c54b245d011855ea91c5beff07f1db74143ce614|user namespace rlimit handling update]] * [[https://git.kernel.org/torvalds/c/b694011a4aec3e8df98bc59fdb78e018b09de79d|hyperv updates]] * [[https://git.kernel.org/torvalds/c/e563592c3e4296780e5a184a917b8b86e126f0b3|printk updates]] * [[https://git.kernel.org/torvalds/c/371fb85457c857eeac1611d3661ee8e637f6548c|CPU hotplug cleanup]] * [[https://git.kernel.org/torvalds/c/62180152e0944e815ebbfd0ffd822d2b0e2cd8e7|CPU hotplug fix]] * [[https://git.kernel.org/torvalds/c/21edf50948728f55b685ad95f196ba46196eb767|irq updates]] * [[https://git.kernel.org/torvalds/c/a941a0349cf11ed250a04864fef268c2e05a1d32|timer updates]] * [[https://git.kernel.org/torvalds/c/a22c3f615a6fef6553e20c559d31ea817216b4e6|x86 interrupt related updates]] * [[https://git.kernel.org/torvalds/c/1dfb0f47aca11350f45f8c04c3b83f0e829adfa9|x86 entry code related updates]] * [[https://git.kernel.org/torvalds/c/3563f55ce65462063543dfa6a8d8c7fbfb9d7772|power management updates]] * [[https://git.kernel.org/torvalds/c/5e6928249b81b4d8727ab6a4037a171d15455cb0|ACPI updates]] * [[https://git.kernel.org/torvalds/c/72ad9f9d215397aa0ffacf88c5f7e020b856d47f|PNP updates]] * [[https://git.kernel.org/torvalds/c/349a2d52ffe59b7a0c5876fa7ee9f3eaf188b830|device properties framework updates]] * [[https://git.kernel.org/torvalds/c/65090f30ab791810a3dc840317e57df05018559c|misc updates from Andrew Morton]] * [[https://git.kernel.org/torvalds/c/30d1a556a9970e02794501068fd91d4417363f0a|mount_setattr updates]] * [[https://git.kernel.org/torvalds/c/b97902b62ae8d5bdd20f56278d8083b4324bf7b5|openat2 fixes]] * [[https://git.kernel.org/torvalds/c/bbd91626f71c1582301044f5942751eeb4ca98ba|cifs updates]] * [[https://git.kernel.org/torvalds/c/8418dabd97ce4b0713c36dd8226978f737c342b0|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/007b350a58754a93ca9fe50c498cc27780171153|dlm updates]] * [[https://git.kernel.org/torvalds/c/c0c6d209b66096b22a59a01bce48e4867704338e|IPMI driver updates]] * [[https://git.kernel.org/torvalds/c/ebb81c14543fb43cb2e1f2bfb5d32f5e390cf895|mailbox updates]] * [[https://git.kernel.org/torvalds/c/776ba3ad659e4955079f57f8d859e7994ea35076|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/e60d726f5d8ccc85f18b9f1f6839112dc8c58fb8|tpm driver updates]] * [[https://git.kernel.org/torvalds/c/4b5e35ce075817bc36d7c581b22853be984e5b41|EDAC updates]] * [[https://git.kernel.org/torvalds/c/df04fbe8680bfe07f3d7487eccff9f768bb02533|HID updates]] * [[https://git.kernel.org/torvalds/c/df668a5fe461bb9d7e899c538acc7197746038f4|core block updates]] * [[https://git.kernel.org/torvalds/c/440462198d9c45e48f2d8d9b18c5702d92282f46|block driver updates]] * [[https://git.kernel.org/torvalds/c/44b6ed4cfab8474061707b60e35afaf2c92a9dc3|clang feature updates]] * [[https://git.kernel.org/torvalds/c/6bd344e55f73f7ae671bf5c1ebe5bd814f3c4b27|SELinux updates]] * [[https://git.kernel.org/torvalds/c/290fe0fa6f5a1a3374dfd03fe0eda6c43d53e6cf|audit updates]] * [[https://git.kernel.org/torvalds/c/5c874a5b29c264f88fafb323e8df7da7b214b6a9|smack updates]] * [[https://git.kernel.org/torvalds/c/92183137e6c14b68ff4de51f6ef371b2b1fe6e68|SafeSetID update]] * [[https://git.kernel.org/torvalds/c/f4cc74c9382d8b02181cfdc6d29ee5bc7a1f7d02|microblaze updates]] * [[https://git.kernel.org/torvalds/c/dbe69e43372212527abf48609aba7fc39a6daa27|networking updates]] * [[https://git.kernel.org/torvalds/c/2cfa582be80081fb8db02d4d9b44bff34b82ac54|device mapper updates]] * [[https://git.kernel.org/torvalds/c/a6ecc2a491e378e00e65e59a006d4005e1c2f4af|ext4 updates]] * [[https://git.kernel.org/torvalds/c/911a2997a5b7c16b27dfe83d8e2f614e44d90f74|misc fs updates]] * [[https://git.kernel.org/torvalds/c/c288d9cd710433e5991d58a0764c4d08a933b871|io_uring updates]] * [[https://git.kernel.org/torvalds/c/e058a84bfddc42ba356a2316f2cf1141974625c9|drm updates]] * [[https://git.kernel.org/torvalds/c/514798d36572fb8eba6ccff3de10c9615063a7f5|clk updates]] * [[https://git.kernel.org/torvalds/c/e04360a2ea01bf42aa639b65aad81f502e896c7f|rdma updates]] * [[https://git.kernel.org/torvalds/c/a32b344e6f4375c5bdc3e89d0997b7eae187a3b1|pin control updates]] * [[https://git.kernel.org/torvalds/c/19b438592238b3b40c3f945bb5f9c4ca971c0c45|MIPS updates]] * [[https://git.kernel.org/torvalds/c/e267992f9ef0bf717d70a9ee18049782f77e4b3a|percpu updates]] * [[https://git.kernel.org/torvalds/c/3dbdb38e286903ec220aaf1fb29a8d94297da246|cgroup updates]] * [[https://git.kernel.org/torvalds/c/71bd9341011f626d692aabe024f099820f02c497|more updates from Andrew Morton]] * [[https://git.kernel.org/torvalds/c/406254918b232db198ed60f5bf1f8b84d96bca00|perf tool updates]] * [[https://git.kernel.org/torvalds/c/4cad67197989c81417810b89f09a3549b75a2441|asm/unaligned.h unification]] * [[https://git.kernel.org/torvalds/c/019b3fd94ba73d3ac615f0537440b81f129821f6|powerpc updates]] * [[https://git.kernel.org/torvalds/c/a48ad6e7a35dc3f3b521249204daf4c9427628e5|KUnit update]] * [[https://git.kernel.org/torvalds/c/35e43538af8fd2cb39d58caca1134a87db173f75|Kselftest update]] * [[https://git.kernel.org/torvalds/c/cd3eb7efaa995db00db0ba64893814f9831be842|iommu updates]] * [[https://git.kernel.org/torvalds/c/e72b069609aa76cc1de35f5d434dbfaa5392ae9a|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/ced4cca754a6322463720768ce50c45c2865ba5b|configfs updates]] * [[https://git.kernel.org/torvalds/c/e4aa67b023167c570be95a39149a918cca9e36a0|jfs updates]] * [[https://git.kernel.org/torvalds/c/9f7b640f001f9781e0803fb60e7b3e7f2f1a1757|xfs updates]] * [[https://git.kernel.org/torvalds/c/bd31b9efbf549d9630bf2f269a3a56dcb29fcac1|SCSI updates]] * [[https://git.kernel.org/torvalds/c/d6b63b5b7d7f363c6a54421533791e9849adf2e0|sound updates]] * [[https://git.kernel.org/torvalds/c/a70bb580bfeaead9f685d4c28f7cd685c905d8c3|devicetree updates]] * [[https://git.kernel.org/torvalds/c/757fa80f4edca010769f3f8d116c19c85f27e817|tracing updates]] * [[https://git.kernel.org/torvalds/c/f92a322a63517a798f2da57d56b483a6ae8f45a1|vfs d_path() updates]] * [[https://git.kernel.org/torvalds/c/d3acb15a3a1b841dc709c3853ec900170b2478e5|iov_iter updates]] * [[https://git.kernel.org/torvalds/c/58ec9059b396a570b208239b4edc45eeb68b14c4|vfs name lookup updates]] * [[https://git.kernel.org/torvalds/c/8e8d9442d1139d05d0c3b83efa34c4b7693d2969|VFIO updates]] * [[https://git.kernel.org/torvalds/c/303392fd5c160822bf778270b28ec5ea50cab2b4|LED updates]] * [[https://git.kernel.org/torvalds/c/855ff900b8605df2b9ea309534cd2f02dc0c4cb8|i2c updates]] * [[https://git.kernel.org/torvalds/c/0c66a95c7e014abc3489e69dd3972d9225027d49|CXL (Compute Express Link) updates]] * [[https://git.kernel.org/torvalds/c/0d4d4c6ff6debde4c44a418c59b304d4b514541c|arch/csky updates]] * [[https://git.kernel.org/torvalds/c/2bb919b62f6e5959552a90a399d09d683afa3d1d|s390 updates]] * [[https://git.kernel.org/torvalds/c/a412897fb546fbb291095be576165ce757eff70b|memblock updates]] * [[https://git.kernel.org/torvalds/c/b97efd5e98106e1198884c13762ef03637605f87|KCSAN updates]] * [[https://git.kernel.org/torvalds/c/28e92f990337b8b4c5fdec47667f8b96089c503e|RCU updates]] * [[https://git.kernel.org/torvalds/c/8fc4fb1728855a22f9149079ba51877f5ee61fc9|m68knommu update]] * [[https://git.kernel.org/torvalds/c/da85e7ed6993144a9ca43a1106c7f898626390a3|MTD updates]] * [[https://git.kernel.org/torvalds/c/1f89a590b26e34ec7c32fbafaed446e52c3d0c3f|input updates]] * [[https://git.kernel.org/torvalds/c/b8052599420cd94505baec1f22b4e7c9e5ae5fce|gpio updates]] * [[https://git.kernel.org/torvalds/c/18ef082713ad1104c32cd17a15abdc3f43c9b28a|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/463c09d09d426d4dfe1a83e1461e28d6b2d7f66a|mfd updates]] * [[https://git.kernel.org/torvalds/c/3f8b8e7dbd79086ad48fcff33de9399f3da66a69|backlight updates]] * [[https://git.kernel.org/torvalds/c/eed0218e8cae9fcd186c30e9fcf5fe46a87e056e|char / misc driver updates]] * [[https://git.kernel.org/torvalds/c/f5c13f1fdef9fed65b95c3c5f343d22c425ac1d7|driver core changes]] * [[https://git.kernel.org/torvalds/c/a16d8644bad461bb073b92e812080ea6715ddf2b|staging / IIO driver updates]] * [[https://git.kernel.org/torvalds/c/c932ed0adb09a7fa6d6649ee04dd78c83ab07ada|tty / serial updates]] * [[https://git.kernel.org/torvalds/c/79160a603bdb51916226caf4a6616cc4e1c58a58|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/7a5e9a17b2d8905e368ddfb33ddd40ef57f2d7cc|exfat updates]] * [[https://git.kernel.org/torvalds/c/729437e334a9d9e079e2be9a42629316bee8a17e|orangefs updates]] * [[https://git.kernel.org/torvalds/c/8e4f3e15175ffab5d2126dc8e7c8cfcc1654a5aa|fuse updates]] * [[https://git.kernel.org/torvalds/c/76e2d16bd5d0193f891a0e30f14ef5c8c370bc8f|coccinelle updates]] * [[https://git.kernel.org/torvalds/c/df8ba5f160335cf9ea09c0a037235331a171fe1a|kgdb updates]] * [[https://git.kernel.org/torvalds/c/4c55e2aeb8082cb118cd63596bfe0dc5247b78e1|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/77d34a4683b053108ecd466cc7c4193b45805528|ARM development updates]] * [[https://git.kernel.org/torvalds/c/d0fe3f47ef09bf5a74f7d20e129b2d15b4a824d0|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/b5e6d1261e2090df1325e762669c8eab6d4fb2fb|hwspinlock updates]] * [[https://git.kernel.org/torvalds/c/383df634f14778302879e41d985958070e8f2320|more fallthrough fixes]] * [[https://git.kernel.org/torvalds/c/4ea90317956718e0648e1f87e56530db809a5a04|xen updates]] * [[https://git.kernel.org/torvalds/c/1423e2660cf134a8f21f2451865a04792013e49e|x86 fpu updates]] * [[https://git.kernel.org/torvalds/c/a931dd33d370896a683236bba67c0d6f3d01144d|module updates]] * [[https://git.kernel.org/torvalds/c/0cc2ea8cebe909203f994e9113dc1f1b3907d03c|nfsd updates]] * [[https://git.kernel.org/torvalds/c/9d69294be2a363a0128f4dc0316a7a4bb29ea91f|watchdog updates]] * [[https://git.kernel.org/torvalds/c/c6e8c51f6978c7aa44641ea4e9071b42d921eb97|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/aef4226f914016cc00affa8476ba5164dcca56fd|more power management updates]] * [[https://git.kernel.org/torvalds/c/e9f1cbc0c4114880090c7a578117d3b9cf184ad4|more ACPI updates]] * [[https://git.kernel.org/torvalds/c/316a2c9b6a5f6f056441275f748e077027179f36|pci updates]] * [[https://git.kernel.org/torvalds/c/b0dfd9af28b60d7ec42c359ae84c1ba97e093100|more clk updates]] * [[https://git.kernel.org/torvalds/c/8c1bfd746030a14435c9b60d08a81af61332089b|pwm updates]] * [[https://git.kernel.org/torvalds/c/bd9c3506032983d7bc3245015951db0aad9e6e3d|yet more updates from Andrew Morton]] * [[https://git.kernel.org/torvalds/c/227c4d507c71acb7bece298a98d83e5b44433f62|f2fs updates]] * [[https://git.kernel.org/torvalds/c/96890bc2eaa1f6bfc1b194e0f0815a10824352a4|NFS client updates]] * [[https://git.kernel.org/torvalds/c/47a7ce62889a52841bcc8cec98dd3bf45af3b4f0|ceph updates]] * [[https://git.kernel.org/torvalds/c/e49d68ce7cc5a865ce14c1e57938438ab01c3ce3|ext4 updates]] * [[https://git.kernel.org/torvalds/c/7a400bf28334fc7734639db3566394e1fc80670c|UBIFS updates]] * [[https://git.kernel.org/torvalds/c/dcf3c935dd9e8e76c9922e88672fa4ad6a8a4df8|UML updates]] * [[https://git.kernel.org/torvalds/c/9b76d71fa8be8c52dbc855ab516754f0c93e2980|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/1eb8df18677d197d7538583823c373d7f13cbebc|virtio,vhost,vdpa updates]] * [[https://git.kernel.org/torvalds/c/a022f7d575bb68c35be0a9ea68860411dec652fe|more block updates]] * [[https://git.kernel.org/torvalds/c/6e207b882159ed3e35a4cd4ff0fc155cce5e3cbc|ARM SoC updates]] * [[https://git.kernel.org/torvalds/c/e083bbd6040f4efa5c13633fb4e460b919d69dae|ARM devicetree updates]] * [[https://git.kernel.org/torvalds/c/071e5aceebebf1d33b5c29ccfd2688ed39c60007|ARM driver updates]] * [[https://git.kernel.org/torvalds/c/af4cf6a5689a9ecc21722cb2bb6220dcaee89c6e|ARM defconfig updates]] * [[https://git.kernel.org/torvalds/c/e98e03d075537a14928661ebfbfcde34b0eced1a|more s390 updates]] * [[https://git.kernel.org/torvalds/c/81361b837a3450f0a44255fddfd7a4c72502b667|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/f7ea4be434fe7ea38699d14c1192481899e6ac94|thermal updates]] * [[https://git.kernel.org/torvalds/c/88bbd8a031b83d4a91f1f8f4c1ce8caa16dc0886|i3c updates]] * [[https://git.kernel.org/torvalds/c/de5540965853e514a85d3b775e9049deb85a2ff3|RTC updates]] * [[https://git.kernel.org/torvalds/c/b1412bd75abe8b1c57ecca4a85f92c8ddb4ccd39|more perf tool updates]] * [[https://git.kernel.org/torvalds/c/8b9cc17a46215af733c83bea36366419133dfa09|more SCSI updates]] = Other news sites = * LWN's merge [[https://lwn.net/Articles/861248/|window part 1]], [[https://lwn.net/Articles/861695/|part 2]] * Phoronix [[https://www.phoronix.com/scan.php?page=article&item=linux-514-features&num=1|Feature list]]