#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description Summary of the changes and new features merged in the Linux kernel during the 6.9 development cycle Linux 6.9 [[https://lore.kernel.org/linux-kernel/CAHk-=whnKYL-WARzrZhVTZ8RP3WZc24C9_DT7JMJooONNT2udQ@mail.gmail.com/T/|was released]] on Sunday, 12 of May 2024 Summary: This release includes suppor for x86 FRED, which is a new way of transitioning between CPU ring privileves; it also includes support for creating pidfds for threads; support for BPF arenas, which is a sparse shared memory region between the BPF programs and user space; and BPF tokens, which allow delegating functionality to less privileged programs; host support for AMD Secure Nested Paging; support for weighted interleaveing memory policies; support for a FUSE passthrough mode that makes regular file I/O faster; and a new device mapper VDO deduplication target. As always, there are many other features, new drivers, improvements and fixes. <> = Prominent features = == pidfd: pidfds for threads and pidfs == pifds (PID fd, a file descriptor that represents a process) is a concept that was added first in [[https://kernelnewbies.org/Linux_5.3#New_.27pidfd.27_functionality_to_help_service_managers_to_deal_with_PID_reuse_problems|Linux 5.3]] to deal with the problems of traditional PIDs, and it has been gaining support in several APIs since then. In this release, pidfds add a few features: * Create pidfds for threads. Until now pidfds could only be created for thread-group leaders * {{{clone()}}} and {{{clone3()}}} can now be called with {{{CLONE_PIDFD | CLONE_THREAD}}} * Moving pidfds to a tiny pseudo filesystem that allows several improvements Recommended LWN article: [[https://lwn.net/Articles/963749/|A new filesystem for pidfds]] == x86 FRED support == FRED (Fast Return and Event Delivery) is a new architecture on Intel processors that defines simple new transitions that change privilege level (ring transitions). It is a replacement for IDT event delivery on x86 and addresses most of the technical nightmares which IDT exposes. [[https://www.kernel.org/doc/html/latest/arch/x86/x86_64/fred.html|Documentation]] == BPF improvements: arenas and tokens == This new release incorporates, as usual, new BPF features. A couple of features stand out from the rest: * BPF arenas: a sparse shared memory region between the BPF program and user space * BPF tokens: provides the ability to delegate a subset of BPF subsystem functionality from privileged system-wide daemon (e.g., systemd or any other container manager) through special mount options for userns-bound BPF FS to a trusted unprivileged application. The main motivation is to enable containerized BPF applications to be used together with user namespaces. This is currently impossible, as CAP_BPF, required for BPF subsystem usage, cannot be namespaced or sandboxed, as a general rule. Recommended LWN articles: * [[https://lwn.net/Articles/961941/|A proposal for shared memory in BPF programs]] * [[https://lwn.net/Articles/947173/|Finer-grained BPF tokens]] == Host support for AMD Secure Nested Paging == AMD EPYC systems utilizing Zen 3 and newer microarchitectures add support for a new feature called SEV-SNP, which adds Secure Nested Paging support on top of the SEV/SEV-ES support already present on existing EPYC systems. This release adds support for acting as a KVM host capable of running SNP guests. One of the main features of SNP is the addition of an RMP (Reverse Map) table to enforce additional security protections for private guest memory. == Weighted interleaving memory policies == When trying to allocate memory, the kernel has to decide from which node NUMA node it should allocate that memory. The existing memory interleave mechanism does an even round-robin distribution of memory across all nodes. This release provides a weighted interleave mechanism that distributes memory across nodes according to a provided weight, which helps to provide greater use of the total available memory bandwidth. Recommended LWN article: [[https://lwn.net/Articles/948037/|Weighted interleaving for memory tiering]] == Faster FUSE I/O == This release adds a passthrough mode for regular file I/O. This allows performing read and write (also via memory maps) on a backing file without incurring the overhead of roundtrips to userspace. For now this is only allowed to privileged servers, but this limitation will go away in the future. Recommended LWN article: [[https://lwn.net/Articles/932060/|FUSE passthrough for file I/O]] == Slightly faster timer setup == Kernel code uses a lot of timers which are canceled or rearmed before they expire. However, when timers are enqueued a target CPU is choosen, which is wasted time if these timers are not going to be used. In this release, the CPU selection is avoided whenever possible, which makes some hot code paths in the kernel a bit faster in optional cases. Recommended LWN article: [[https://lwn.net/Articles/913568/|Better CPU selection for timer expiration]] == Device mapper VDO deduplication target == This release adds a new device mapper VDO (virtual data optimizer) target which provides block-level deduplication, compression, and thin provisioning. As a device mapper target, it can add these features to the storage stack, compatible with any file system. The vdo target does not protect against data corruption, relying instead on integrity protection of the storage below it. Documentation: [[https://www.kernel.org/doc/html/latest/admin-guide/device-mapper/vdo.html|dm-vdo]] Documentation: [[https://www.kernel.org/doc/html/latest/admin-guide/device-mapper/vdo-design.html|Design of dm-vdo]] = Core (various) = * Filesystem visibility ioctls (get/set UUID, get sysfs path) [[https://git.kernel.org/linus/dd9019604cdaaff1327bfd36737230f912e2780d|commit]], [[https://git.kernel.org/linus/41bcbe59c3b3fa7171dd2e3a365e6d5154198f30|commit]], [[https://git.kernel.org/linus/a4af51ce229b1e1eab003966dbfebf9d80093a77|commit]], [[https://git.kernel.org/linus/e2f7dd6e55d2f39734abcebd0cf673700e206197|commit]], [[https://git.kernel.org/linus/ae8c511757304e0c393661b5ed2ad7073e2a351d|commit]] * Add RWF_NOAPPEND flag for pwritev2 [[https://git.kernel.org/linus/73fa7547c70b32cc69685f79be31135797734eb6|commit]] * io_uring * Add napi busy polling support [[https://git.kernel.org/linus/13d381b440ed84ec4cc92975de035efb1a9e5f7e|commit]], [[https://git.kernel.org/linus/405b4dc14b10c5bdb3e9a6c3b9596c1597f7974d|commit]], [[https://git.kernel.org/linus/8d0c12a80cdeb80d5e0510e96d38fe551ed8e9b5|commit]], [[https://git.kernel.org/linus/ff183d427da0a733b0dbe11bd7acaf2dcb37b4cc|commit]], [[https://git.kernel.org/linus/ef1186c1a875bfa8a8cbfc2a9670b14b082187a9|commit]] * improve the usercopy for sendmsg/recvmsg [[https://git.kernel.org/linus/792060de8b3e9ca11fab4afc0c3c5927186152a2|commit]] * Export SQPOLL utilization stats [[https://git.kernel.org/linus/3fcb9d17206e31630f802a3ab52081d1342b8ed9|commit]] * Add support for ftruncate [[https://git.kernel.org/linus/b4bb1900c12e6a0fe11ff51e1aa6eea19a4ad635|commit]] * epoll: Per epoll context busy poll support. This makes epoll-based busy polling much more usable for user applications than the current system-wide sysctl and hardcoded budget [[https://git.kernel.org/linus/18e2bf0edf4dd88d9656ec92395aa47392e85b61|commit]], [[https://git.kernel.org/linus/de57a251082211b68e8c01e0e8210a23c022ac57|commit]], [[https://git.kernel.org/linus/c6aa2a7778d8e3ba7c6f84c8095f0b89f0617830|commit]], [[https://git.kernel.org/linus/85455c795c07882091b15c0613f78d4567d9be36|commit]] * (FEATURED) pidfd * clone: allow {{{CLONE_THREAD | CLONE_PIDFD}}} together [[https://git.kernel.org/linus/83b290c9e3b5d95891f43a4aeadf6071cbff25d3|commit]] * Implement {{{PIDFD_THREAD}}} flag for pidfd_open() [[https://git.kernel.org/linus/64bef697d33b75fc06c5789b3f8108680271529f|commit]] * Allow to override signal scope in {{{pidfd_send_signal()}}} [[https://git.kernel.org/linus/e1fb1dc08e73466830612bcf2f9f72180965c9ba|commit]] * Add pidfs [[https://git.kernel.org/linus/cb12fd8e0dabb9a1c8aef55a6a41e2c255fcdf4b|commit]], [[https://git.kernel.org/linus/9d9539db8638cfe053fcd1f441746f0e2c8c2d32|commit]] * Allow to change ipc/mq sysctls inside ipc namespace [[https://git.kernel.org/linus/9220066ea807e3efce21476bffcac16743e9db22|commit]], [[https://git.kernel.org/linus/f9436a5d0497f759330d07e1189565edd4456be8|commit]], [[https://git.kernel.org/linus/50ec499b9a43e46200c9f7b7d723ab2e4af540b3|commit]] * (FEATURED) timers: Move from a push remote at enqueue to a pull at expiry model [[https://git.kernel.org/linus/f73d9257ff3c2f415e8c342a91b7f5acfc3ce512|commit]], [[https://git.kernel.org/linus/89f01e10c99a5ca2ff88b545fad763d360cdbfc8|commit]], [[https://git.kernel.org/linus/57e95a5c4117dc6a67dc416d82079c02dab7e983|commit]], [[https://git.kernel.org/linus/63997775b795f97ef51f3e56bc3abc9edc04bbb0|commit]], [[https://git.kernel.org/linus/c0e8c5b59949e8b8b004481c99e102df606fc312|commit]], [[https://git.kernel.org/linus/aae55e9fb8fc73893f86165f0d84a33b7080902a|commit]], [[https://git.kernel.org/linus/b2cf7507e18649a30512515ec0ca89f26b2c2d0f|commit]], [[https://git.kernel.org/linus/39ed699fb660c65cef4759c041763c75e0948425|commit]], [[https://git.kernel.org/linus/21927fc89e5feebc1f7cbf50bb58b81d776a62b4|commit]], [[https://git.kernel.org/linus/4c532939aa2e9345ee346bc69d3d12d56d5aa9aa|commit]], [[https://git.kernel.org/linus/70b4cf84f3acd9e72c9ea9064d82577b6f29a60b|commit]], [[https://git.kernel.org/linus/90f5df66c86c259d61aff84e16f519fe1424e1ef|commit]], [[https://git.kernel.org/linus/e2e1d724e948c87a31c18c34c6b6a193a9b2a0f0|commit]], [[https://git.kernel.org/linus/83a665dc99a7b0721fa1e02fb60d2a1789ccd371|commit]], [[https://git.kernel.org/linus/bebed6649e85fe55275bd20104ec8e0bdff1bf54|commit]], [[https://git.kernel.org/linus/8e7e247f64a1e0fee430aba28d9108f7598eb237|commit]], [[https://git.kernel.org/linus/73129cf4b69cd1aaa3dd5eb7900a9c349773f5ae|commit]], [[https://git.kernel.org/linus/7ee988770326fca440472200c3eb58935fe712f6|commit]], [[https://git.kernel.org/linus/9f6a3c602c235c3cccbe673fb7e1cca30ca4be0d|commit]] * workqueue * Implement BH workqueue and convert several tasklet users. [[https://lwn.net/Articles/960041/|Recommended LWN article]] [[https://git.kernel.org/linus/c35aea39d1e106f61fd2130f0d32a3bac8bd4570|commit]], [[https://git.kernel.org/linus/2fcdb1b44491e08f5334a92c50e8f362e0d46f91|commit]], [[https://git.kernel.org/linus/4cb1ef64609f9b0254184b2947824f4b46ccab22|commit]], [[https://git.kernel.org/linus/4f19b8e01e2fb6c97d4307abb7bde4d34a1e601e|commit]], [[https://git.kernel.org/linus/96068b6030391082bf0cd97af525d731afa5ad63|commit]], [[https://git.kernel.org/linus/8eb17dc1a6b5db7e89681f59285242af8d182f95|commit]], [[https://git.kernel.org/linus/7245d24f874d781cf3f1530e6d24e1e0eba4269a|commit]] * Implement system-wide max_active for unbound workqueues [[https://git.kernel.org/linus/a045a272d887575da17ad86d6573e82871b50c27|commit]], [[https://git.kernel.org/linus/afa87ce85379e2d93863fce595afdb5771a84004|commit]], [[https://git.kernel.org/linus/4c6380305d21e36581b451f7337a36c93b64e050|commit]], [[https://git.kernel.org/linus/1c270b79ce0b8290f146255ea9057243f6dd3c17|commit]], [[https://git.kernel.org/linus/c5404d4e6df6faba1007544b5f4e62c7c14416dd|commit]], [[https://git.kernel.org/linus/9f66cff212bb3c1cd25996aaa0dfd0c9e9d8baab|commit]], [[https://git.kernel.org/linus/dd6c3c5441263723305a9c52c5ccc899a4653000|commit]], [[https://git.kernel.org/linus/91ccc6e7233bb10a9c176aa4cc70d6f432a441a5|commit]] * Control intensive warning threshold through cmdline [[https://git.kernel.org/linus/ccdec92198df0c91f45a68f971771b6b0c1ba02d|commit]] * Bump the minimum supported version of LLVM to 13.0.1 [[https://git.kernel.org/linus/9a12e9a165b3b5f0695dc77e1c68947692d6285f|commit]], [[https://git.kernel.org/linus/de5f3984664e55bdb5f29108d579857facd407ac|commit]], [[https://git.kernel.org/linus/c6d9a4a93725ea396d48a39cdef67befe6b392c3|commit]], [[https://git.kernel.org/linus/e5efd80a9a7688a26ef34b9c1d3801c25abdf350|commit]], [[https://git.kernel.org/linus/22d3da073f331f1b7f236d15a2f4ede54351bfbe|commit]], [[https://git.kernel.org/linus/9feceff1d2d6075b9556b84b81a14c584ef78aa5|commit]], [[https://git.kernel.org/linus/9c1b86f8ce04ec4aa22c1119480b3950bf4724c8|commit]], [[https://git.kernel.org/linus/a38d97181271baac6405570881c2822ad5cb5c5c|commit]], [[https://git.kernel.org/linus/634e4ff9ffd8828eb76f23cf976ce77124e4e20d|commit]], [[https://git.kernel.org/linus/19336376bda6ac084bf7619101a9e321f0129ce1|commit]], [[https://git.kernel.org/linus/7d354f49b8d6b29208beb6233ebd197c7570a88b|commit]] * filelock: split file leases out of struct file_lock [[https://git.kernel.org/linus/c4b3ffb508a0376643578365a4caacf681c5dc9e|commit]], [[https://git.kernel.org/linus/b6aaba5b76e9596cb4d62d081cca41e114becacc|commit]], [[https://git.kernel.org/linus/a69ce85ec9af6bdc0b3511959a7dc1a324e5e16a|commit]], [[https://git.kernel.org/linus/459c814a3c5fa39cf7fa85a263b0316cbe1b8720|commit]], [[https://git.kernel.org/linus/1a62c22a156f7235acdbdb7ca0dcddf5062744b0|commit]], [[https://git.kernel.org/linus/fde4951834c22fc634c1e1238b874f894ef46c9c|commit]], [[https://git.kernel.org/linus/76698510f593daf8aa0582492090d0c2e484c3e8|commit]], [[https://git.kernel.org/linus/282c30f320ba25794b66c2231ab134d15465ef21|commit]], [[https://git.kernel.org/linus/269a6194dcbaa5d8e61f32000486fc0f2acf08d0|commit]], [[https://git.kernel.org/linus/a1c2af326cb7d7cd07db38740ebb3aafa428fd6f|commit]], [[https://git.kernel.org/linus/0e9876d8e88d81a35742e90048ab3784c49b910b|commit]], [[https://git.kernel.org/linus/347d49fdf36c5e2411afdb312935d88183fe5811|commit]], [[https://git.kernel.org/linus/c69ff4071935f946f1cddc59e1d36a03442ed015|commit]], [[https://git.kernel.org/linus/ad399740bd41da5558d8b8b2b19481740ca063cb|commit]], [[https://git.kernel.org/linus/6021d62c677f12f2f975bb1bf2389730e1d9f746|commit]], [[https://git.kernel.org/linus/1a6c75d4bbd297a2121e3ea1e21aa964d65cbc5a|commit]], [[https://git.kernel.org/linus/75a1bbe60a7425fcaa670bff58b8589b1f880810|commit]], [[https://git.kernel.org/linus/32fa5ba3171116a5501e60245dc97e82fe3cf267|commit]], [[https://git.kernel.org/linus/7c18509bdaefe2164e62829d614ef9ea429f29d2|commit]], [[https://git.kernel.org/linus/ae7eb16e0b5043beeca4f78fa2cde5f075cddda1|commit]], [[https://git.kernel.org/linus/4629172fd7290233d65a08ce2f2e2cbbcdbcd255|commit]], [[https://git.kernel.org/linus/9bb430a89d2dfce58a3d61a3a04e149109d3934e|commit]], [[https://git.kernel.org/linus/587a67b6830b56afce19dcb5d2f6c3d7f30492e0|commit]], [[https://git.kernel.org/linus/3d40f78169a0a954ff06e2b0f8e21463f7edb433|commit]], [[https://git.kernel.org/linus/d9077f7bad141df143cc4fa000a68a868bcea7c0|commit]], [[https://git.kernel.org/linus/e8a166cf3d72373d71af45438b8cbb05dc5e3cf6|commit]], [[https://git.kernel.org/linus/b6be3714005c3933886be71011f19119e219e77c|commit]], [[https://git.kernel.org/linus/4ca52f539865853e6ddbc393745cd0b305f0d810|commit]] * lib * sort: Optimize the number of swaps and comparisons [[https://git.kernel.org/linus/0e02ca29a5634dfb90fe1bad9467ee0965a1e170|commit]], [[https://git.kernel.org/linus/db946a42226052a13fbce8757ff77b3107dd2030|commit]] * min_heap: Min heap optimizations [[https://git.kernel.org/linus/c641722e0c944e423572dd6222c677678d793ed5|commit]], [[https://git.kernel.org/linus/c499c717ee7cc07f47d7ee38a1791a58dcf1d4eb|commit]] * swiotlb: add debugfs to track swiotlb transient pool usage [[https://git.kernel.org/linus/02e765697038c596dc4a1126a13b018608365d81|commit]] * panic: add option to dump blocked tasks in panic_print [[https://git.kernel.org/linus/2e3fc6ca521499a985a1829a21759ac25359c0f3|commit]] * rcu: Provide a boot time parameter to control lazy RCU [[https://git.kernel.org/linus/7f66f099de4dc4b1a66a3f94e6db16409924a6f8|commit]] * rust * In-place module initialisation [[https://git.kernel.org/linus/e838a0d4d5260bce452c96914a6e86b217c53c55|commit]], [[https://git.kernel.org/linus/323617f649c0966ad5e741e47e27e06d3a680d8f|commit]], [[https://git.kernel.org/linus/df70d04d56975f527b9c965322cf56e245909071|commit]] * str: implement `Display` and `Debug` for `BStr` [[https://git.kernel.org/linus/4951ddd51b816b5e4095cd3cd3bd46fb73b96a65|commit]] * Additional !CondVar methods needed by Rust Binder [[https://git.kernel.org/linus/f090f0d0eea9666a96702b29bc9a64cbabee85c5|commit]], [[https://git.kernel.org/linus/e7b9b1ff1d49e2117f2d78fa5f11b0d006c169f7|commit]], [[https://git.kernel.org/linus/82e170874849c4c57dba6b4ee1a08fae1c0a5f02|commit]], [[https://git.kernel.org/linus/3e6454177f3a76265cba4901d5caa4eb0c7b6447|commit]] * upgrade to Rust 1.75.0 [[https://git.kernel.org/linus/c5fed8ce65493f71611280f225826e7bd5e49791|commit]] * upgrade to Rust 1.76.0 [[https://git.kernel.org/linus/768409cff6cc89fe1194da880537a09857b6e4db|commit]] * Move i_mmap_rwsem to mitigate a false sharing with i_mmap [[https://git.kernel.org/linus/d3b1a9a778e1a014c5331d1e8d4863fd999eb0b5|commit]] = File systems = * BCACHEFS * Subvolumes may now be renamed [[https://git.kernel.org/linus/7f76b08acac4b41bd4bf1670470dd0770d61d0b9|commit]] * no_splitbrain_check option [[https://git.kernel.org/linus/2f300f09c7899eb35077aad0a1634cd06a29423a|commit]] * BTRFS * Minor speedup in logging when repeatedly allocated structure is preallocated only once, improves latency and decreases lock contention [[https://git.kernel.org/linus/e383e158ed1b6abc2d2d3e6736d77a46393f80fa|commit]] * Minor throughput increase (+6%), reduced lock contention after clearing delayed allocation bits, applies to several common workload types [[https://git.kernel.org/linus/8a46e55a6cbb0c795c4b5a31139c9f2a6eca6589|commit]], [[https://git.kernel.org/linus/f5169f12d7ea5dad54884ba1dbbf9e17394c2087|commit]], [[https://git.kernel.org/linus/f23f89524b33a0dbc73a74d4d36128fe52eace33|commit]], [[https://git.kernel.org/linus/f4f15454fa42c91490d08e5eb8b4c11f0355a576|commit]], [[https://git.kernel.org/linus/bdc0f89e068a610909579f3d1fc8cf4d54600be3|commit]], [[https://git.kernel.org/linus/b5d563925903e40a4425dff64e53127554e5fcc6|commit]], [[https://git.kernel.org/linus/d23626d8bc4597836eb33d88dacbc3858df7e4d3|commit]], [[https://git.kernel.org/linus/99c15fec3280a766b0df2903542410c475585bed|commit]], [[https://git.kernel.org/linus/4e94ee80e197bf0eaa18b3eb2b98850f0adced3a|commit]] * EXT2 * Mark as deprecated [[https://git.kernel.org/linus/b960e8093e7a57de98724931d17b2fa86ff1105f|commit]] * F2FS * Support file pinning for zoned devices [[https://git.kernel.org/linus/9703d69d9d153bb230711d0d577454552aeb13d4|commit]] * Add a proc entry show disk layout [[https://git.kernel.org/linus/f238eff95f485b9e8a1b1a8d4602e8e9d0ae331d|commit]] * Support SEEK_DATA and SEEK_HOLE for compression files [[https://git.kernel.org/linus/a94c7fded76bfd1a061deae7be80fedbfa26774e|commit]] * introduce FAULT_NO_SEGMENT [[https://git.kernel.org/linus/8b10d3653735e117bc1954ade80d75ad7b46b801|commit]] * introduce FAULT_BLKADDR_CONSISTENCE [[https://git.kernel.org/linus/c7115e094ca820bb72e0c89f158d16bc48c6fa04|commit]] * FUSE * (FEATURED) FUSE passthrough for file io [[https://git.kernel.org/linus/57e1176e6086673d31bf0a0dc58e144c8e65e589|commit]], [[https://git.kernel.org/linus/5ca73468612d8e0767614992da8decc7f9f48926|commit]], [[https://git.kernel.org/linus/7dc4e97a4f9a55bae6ed6ab3f96c92921259d59f|commit]], [[https://git.kernel.org/linus/44350256ab943d424d70aa60a34f45060b3a36e8|commit]], [[https://git.kernel.org/linus/aed918310ea2542059eeab6c74defca95c30f77b|commit]], [[https://git.kernel.org/linus/fda0b98ef0a6a2e3fe328b869d53002c8c82001b|commit]], [[https://git.kernel.org/linus/4a90451bbc7f7fde94041fbb9ca96dd915069943|commit]], [[https://git.kernel.org/linus/fc8ff397b2a91590031ae08534de627f957005cb|commit]] * inode IO modes and mmap + parallel dio [[https://git.kernel.org/linus/7de64d521bf92396b7da8ae0600188ea5d75a4c9|commit]], [[https://git.kernel.org/linus/d2c487f150ae00e3cb9faf57aceacc584e0a130c|commit]], [[https://git.kernel.org/linus/699cf8246ee4c2c524f18c2e395909d16e7fda1b|commit]], [[https://git.kernel.org/linus/9bbb6717dfd286a2861ca33273f4d7c3e65423b0|commit]], [[https://git.kernel.org/linus/9511176bbaee0ac60ecc84e7b01cf5972a59ea17|commit]], [[https://git.kernel.org/linus/cb098dd24bab8a315aa00bab1ccddb6be872156d|commit]], [[https://git.kernel.org/linus/e26ee4efbc79610b20e7abe9d96c87f33dacc1ff|commit]], [[https://git.kernel.org/linus/0c9d708953d02f74cea05a01cf3e2c8f5a9fbaf4|commit]], [[https://git.kernel.org/linus/205c1d8026835746d8597e1aa70c370e014e83fa|commit]] * Add support for resend pending requests [[https://git.kernel.org/linus/9e7f5296f475ba5ab887ae3e55b922e17e99752b|commit]], [[https://git.kernel.org/linus/760eac73f9f69aa28fcb3050b4946c2dcc656d12|commit]] * Add support for explicit export disabling [[https://git.kernel.org/linus/e022f6a1c711ab6d76e9e59dce77e2b25df75076|commit]] * virtiofs * emit uevents on filesystem events [[https://git.kernel.org/linus/9086b2d9e9f3da0b0f939aa1d7ff74e9bf5b54c8|commit]] * Export filesystem tags through sysfs [[https://git.kernel.org/linus/9086b2d9e9f3da0b0f939aa1d7ff74e9bf5b54c8|commit]], [[https://git.kernel.org/linus/a8f62f50b4e4ea92a938fca2ec1bd108d7f210e9|commit]], [[https://git.kernel.org/linus/40488cc16f7ea0d193a4e248f0d809c25cc377db|commit]] * HUGETLBFS * Support idmapped mounts [[https://git.kernel.org/linus/91e78a1eb6b1c0d1a8b434d46b869941e3b3e9e2|commit]] * NFS * Support admin-revocation of v4 state [[https://git.kernel.org/linus/6b4ca49dc310d107f36642c39b2c9e3fbf8ba3c9|commit]], [[https://git.kernel.org/linus/779457285a45cb95d625d407becd6417cb3d1c96|commit]], [[https://git.kernel.org/linus/c6540026dfe68b2cc6b6891404f8efa7c40e53e9|commit]], [[https://git.kernel.org/linus/83e733161fde43e2f99cefa68e369944460fce39|commit]], [[https://git.kernel.org/linus/3f29cc82a84c23cfd12b903029dd26002ca825f5|commit]], [[https://git.kernel.org/linus/1ac3629bf012592cb0320e52a1cceb319a05ad17|commit]], [[https://git.kernel.org/linus/39e1be6471a36253b510b1eb891f57c994ba650d|commit]], [[https://git.kernel.org/linus/11b2cfbf6c7821a1a7be621843642d2d55c6bf79|commit]], [[https://git.kernel.org/linus/d688d8585e6bea5e4e37f7497feea93b6b0a469c|commit]], [[https://git.kernel.org/linus/1c13bf9f2e3cd5a59ef988c6c5a49fe0f02bcdfc|commit]], [[https://git.kernel.org/linus/39657c740644e1468cfd2129f43d0ae08bd53531|commit]], [[https://git.kernel.org/linus/06efa66750a68ccd79097b6b03361a0ba358d292|commit]], [[https://git.kernel.org/linus/1e33e1414bec54a4feafa9e67e2617031be0afe2|commit]] * Make nfs stats visible in network NS [[https://git.kernel.org/linus/1548036ef1204df65ca5a16e8b199c858cb80075|commit]], [[https://git.kernel.org/linus/d47151b79e3220e72ae323b8b8e9d6da20dc884e|commit]], [[https://git.kernel.org/linus/2057a48d0dd00c6a2a94ded7df2bf1d3f2a4a0da|commit]] * Make nfsd stats visible in network ns [[https://git.kernel.org/linus/d98416cc2154053950610bb6880911e3dcbdf8c5|commit]], [[https://git.kernel.org/linus/93483ac5fec62cc1de166051b219d953bb5e4ef4|commit]], [[https://git.kernel.org/linus/a2214ed588fb3c5b9824a21cff870482510372bb|commit]], [[https://git.kernel.org/linus/f094323867668d50124886ad884b665de7319537|commit]], [[https://git.kernel.org/linus/16fb9808ab2c99979f081987752abcbc5b092eac|commit]], [[https://git.kernel.org/linus/ab42f4d9a26f1723dcfd6c93fcf768032b2bb5e7|commit]], [[https://git.kernel.org/linus/4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d|commit]], [[https://git.kernel.org/linus/418b9687dece5bd763c09b5c27a801a7e3387be9|commit]], [[https://git.kernel.org/linus/3f6ef182f144dcc9a4d942f97b6a8ed969f13c95|commit]], [[https://git.kernel.org/linus/e41ee44cc6a473b1f414031782c3b4283d7f3e5f|commit]] * NTFS * Remove NTFS classic [[https://git.kernel.org/linus/7ffa8f3d30236e0ab897c30bdb01224ff1fe1c89|commit]] * SMB * Add support for durable handles v1/v2 [[https://git.kernel.org/linus/c8efcc786146a951091588e5fa7e3c754850cb3c|commit]], [[https://git.kernel.org/linus/fa9415d4024fd0c58d24a4ad4f1826fb8bfcc4aa|commit]] * Allow changing password during remount [[https://git.kernel.org/linus/c1eb537bf4560b3ad4df606c266c665624f3b502|commit]] * Aadd support for WSL reparse points [[https://git.kernel.org/linus/5a4b09ecf8e8ad26ea03a37e52e310fe13f15b49|commit]] * introduce reparse mount option [[https://git.kernel.org/linus/eb90e8ecb2b54ac1af51e28596e0ef7ba351476d|commit]] * QNX4 * Convert to use the new mount api [[https://git.kernel.org/linus/6b91bfa1651d841f0066bae2b1322cac29fdfb61|commit]] * CODA * Convert coda to use the new mount API [[https://git.kernel.org/linus/5916f439f2eb81eef98703b9a8f1dc91e3aa7129|commit]] * EFS * Convert efs to use the new mount api [[https://git.kernel.org/linus/39a6c668e4e78c3bc262c24d9aabd0a49027f948|commit]] * UDF * convert to new mount API [[https://git.kernel.org/linus/c4e89cc674ac36743f9c28db8c1b565039e9e08b|commit]], [[https://git.kernel.org/linus/7a8e72c16e734f2ccdfe8d86bcd2e176aa5e978a|commit]] * XFS * Online repair of quota counters [[https://git.kernel.org/linus/3d8f1426977f1bf10f867bcd26df6518ae6c2b2c|commit]], [[https://git.kernel.org/linus/564fee6d20537eec2be2e74c8d829c654d6d8855|commit]], [[https://git.kernel.org/linus/ebd610fe82c1d2a94c6fe27cd04d5cf911b5e171|commit]], [[https://git.kernel.org/linus/5a3ab5849583217090e29299c7bee88b827c12d8|commit]], [[https://git.kernel.org/linus/48dd9117a34fe9a34a6be0b1dba5694e0f19cbd4|commit]], [[https://git.kernel.org/linus/200491875ce144fdc49827387fff2f604b73c0a9|commit]], [[https://git.kernel.org/linus/7038c6e5261eef2442bff086f80a493dbd8bfdc9|commit]], [[https://git.kernel.org/linus/96ed2ae4a9b06b417e1c20c086c77755a43284bf|commit]] * Report corruption to the health trackers [[https://git.kernel.org/linus/0b8686f19879d896bbe2d3e893f433a08160452d|commit]], [[https://git.kernel.org/linus/50645ce8822d23ae3e002d3bee775fa8c315f957|commit]], [[https://git.kernel.org/linus/de6077ec4198b9313c6e09e4c6acbe9179d057c1|commit]], [[https://git.kernel.org/linus/1196f3f5abf736809cafac1696967ac318a44ca0|commit]], [[https://git.kernel.org/linus/a78d10f45b23149f1b23019a4f4fb57dcf852e39|commit]], [[https://git.kernel.org/linus/ca14c0968c1f693ab4bcb5368c800c33e7a2ad7e|commit]], [[https://git.kernel.org/linus/b280fb0cbf48cea962d90bbe9c080ee1e77c3b4c|commit]], [[https://git.kernel.org/linus/baf44fa5c37a2357a7ae92889f74bc1824f33fd4|commit]], [[https://git.kernel.org/linus/841a5f87e2d08c60836859da69575b36caadb37d|commit]], [[https://git.kernel.org/linus/8368ad49aaf771a6283840140149440b958b20fb|commit]], [[https://git.kernel.org/linus/989d5ec3175be7c0012d7744c667ae6a266fab06|commit]] * Add support for FS_IOC_GETFSSYSFSPATH [[https://git.kernel.org/linus/231e872529885483056c0170641ddd76686e3a89|commit]] * ZONEFS * Convert to use the new mount api [[https://git.kernel.org/linus/567e629fd296561aacd04547a603b163de3dabbe|commit]] = Memory management = * (FEATURED) weighted interleave mempolicy and sysfs extension [[https://git.kernel.org/linus/9685e6e30d116d72fb013b0bce261a676b7575c1|commit]], [[https://git.kernel.org/linus/fa3bea4e1f8202d787709b7e3654eb0a99aed758|commit]], [[https://git.kernel.org/linus/dce41f5ae2539d1c20ae8de4e039630aec3c3f3c|commit]] * Transparent Contiguous PTEs for User Mappings [[https://git.kernel.org/linus/311a6cf29690bb8295327bad0e76e0ad48cadcc4|commit]], [[https://git.kernel.org/linus/c6ec76a2ebc5829e5826b218d2e1475ec11b333e|commit]], [[https://git.kernel.org/linus/b972fc6afba002319fe23bc698ce6431ee43868c|commit]], [[https://git.kernel.org/linus/fb23bf6bd288db3187c27b971e558a3e9f70ae96|commit]], [[https://git.kernel.org/linus/532736558e8ef2865eae1d84b52dda4422cac810|commit]], [[https://git.kernel.org/linus/2bdba9868a4ffcb1492db7272f34b54387910177|commit]], [[https://git.kernel.org/linus/fb5451e5f72b31002760083a99fbb41771c4f1ad|commit]], [[https://git.kernel.org/linus/4602e5757bcceb231c3a13c36c373ad4a750eddb|commit]], [[https://git.kernel.org/linus/6b1e4efb6f5499ae8f9f5cdda7502285a0edbf51|commit]], [[https://git.kernel.org/linus/583ceaaa339960e673ac0029f323bb1c6ffc96d7|commit]], [[https://git.kernel.org/linus/5a00bfd6a52cf31e93d5f1b734087deb32a3cffa|commit]], [[https://git.kernel.org/linus/6280d7317ccae19c776a3b6cf9848c964f958091|commit]], [[https://git.kernel.org/linus/659e193027910a5d3083e34b488ab459d2ef5082|commit]], [[https://git.kernel.org/linus/c1bd2b4028ae5b4d2ada64b31c40cc44cdf00972|commit]], [[https://git.kernel.org/linus/f0c2264958e18bc7bc35b567d51b99461e4de34f|commit]], [[https://git.kernel.org/linus/cbb0294fdd72a5f63ec59fad5c0a98d63bd572fc|commit]] * increase folio batch size [[https://git.kernel.org/linus/9cecde80aae0fb0aa44425575d5aca71bc646d89|commit]] * huge_memory: enable debugfs to split huge pages to any order [[https://git.kernel.org/linus/fc4d182316bd5309b4066fd9ef21529ea397a7d4|commit]] * tools/mm: add thpmaps script to dump THP usage info [[https://git.kernel.org/linus/2444172cfde45a3d6e655f50c620727c76bab4a2|commit]] * convert mm counter to take a folio [[https://git.kernel.org/linus/0103b27a6b826729dc1500d013e53ebed48980b3|commit]], [[https://git.kernel.org/linus/530c2a0da0b440bec4af3dae5bd7110f77962e9b|commit]], [[https://git.kernel.org/linus/7101422464ecbca75540feab65b465dee3283438|commit]], [[https://git.kernel.org/linus/6b27cc6c66abf0f0b091a95ca1ad4e0fc68c11fd|commit]], [[https://git.kernel.org/linus/5662400a9ac03f38ef3b84e4ff9a640a4604bef9|commit]], [[https://git.kernel.org/linus/eabafaaa957553142cdafc8ae804fb679e5a5f5e|commit]], [[https://git.kernel.org/linus/439992ff4637ad5042ca8ee1f659fae24890de3e|commit]], [[https://git.kernel.org/linus/0601ac883a814930c3a38d39a115fdc05179d886|commit]], [[https://git.kernel.org/linus/a23f517b0e1554467b0eb3bc1ebcb4d626217302|commit]] * Freelist loading optimization. When the per-cpu slab is depleted and a new one loaded from the cpu partial list, optimize the loading to avoid an irq enable/disable cycle. This results in a 3.5% performance improvement on the "perf bench sched messaging" test [[https://git.kernel.org/linus/90b1e56641bbab801e22141c56aa79dc095a3764|commit]], [[https://git.kernel.org/linus/a6def11b6dcde5d8f1fcc9e2c0ae71399432b62e|commit]], [[https://git.kernel.org/linus/c63349fc4a2d10f5d1b5ee805cb639ee88fd6e4a|commit]] * zswap: optimize the scalability of zswap rb-tree [[https://git.kernel.org/linus/44c7c734a5132fc02f5584c7207f1d0c483f3ccd|commit]], [[https://git.kernel.org/linus/bb29fd7760ae39905127afd31fc83294625ff704|commit]] * ptdump: Refactor CONFIG_DEBUG_WX and check_wx_pages debugfs attribute [[https://git.kernel.org/linus/565474afe08ad28de0d655c5ed36aab3702cb93d|commit]], [[https://git.kernel.org/linus/6cdc82db0c044d36137dd98f33e8aa0b8742987f|commit]], [[https://git.kernel.org/linus/592e15f62f943a77e8732db0da2d8a61c1ad7bf3|commit]], [[https://git.kernel.org/linus/a5e8131a0329673f70faee2e9ffb02e8a5bb3c89|commit]], [[https://git.kernel.org/linus/a90f0a02f139a13d3c26dd20644b50fc731f17da|commit]] * userfaultfd: handle zeropage moves by UFFDIO_MOVE [[https://git.kernel.org/linus/eb1521dad8f391d3f3b88f589db27a288b55b8ed|commit]] * Optimize fork() with PTE-mapped THP [[https://git.kernel.org/linus/f8d937761d65c87e9987b88ea7beb7bddc333a0e|commit]], [[https://git.kernel.org/linus/d7c0e5f722ab229153c22efc836bf220479bdce6|commit]], [[https://git.kernel.org/linus/23ed190868a65525b8941370630fbb215f12ebe8|commit]], [[https://git.kernel.org/linus/12b884f2e09ab42d3879a3e2c703e7157691013c|commit]], [[https://git.kernel.org/linus/53723298ba436830fdf0744c19b57b2a18f44041|commit]], [[https://git.kernel.org/linus/25365e10699aa0e320345d019194fbea9f37a4ae|commit]], [[https://git.kernel.org/linus/6e8f588708971e0626f5be808e8c4b6cdb86eb0b|commit]], [[https://git.kernel.org/linus/6cdfa1d5d5d8285108495c33588c48cdda81b647|commit]], [[https://git.kernel.org/linus/e5ea320aec811c0e5cddefda17052579e0306415|commit]] * cma: add sysfs file 'release_pages_success' [[https://git.kernel.org/linus/b9ad003af13a1fe34319da6c2082038bce833831|commit]] * zswap: optimize zswap lru list [[https://git.kernel.org/linus/a230c20e63efef3daab510979898b25a0e446b36|commit]], [[https://git.kernel.org/linus/0827a1fb143fae588cb6f5b9a97c405d6c2ddec9|commit]], [[https://git.kernel.org/linus/b49547ade38a63ff39c9fbc53fb38622cb63854a|commit]], [[https://git.kernel.org/linus/f9c0f1c32cb568e16ef0676d8e7827a3ad443742|commit]], [[https://git.kernel.org/linus/c2e2ba770200b379069011a1fdeeb41e4569c486|commit]], [[https://git.kernel.org/linus/3b631bd06550040b37cd2ebb00e2374404db0360|commit]] * Optimize unmap/zap with PTE-mapped THP [[https://git.kernel.org/linus/da510964c095cb5e070800ef38752c453d2aa71d|commit]], [[https://git.kernel.org/linus/4d5bf0b6183f79ea361dd506365d2a471270735c|commit]], [[https://git.kernel.org/linus/0cf18e839f64fff9a58569cc9a596bf97310e044|commit]], [[https://git.kernel.org/linus/d11838ed63ee842fc9ef335b9f3aee3aa26f2ab5|commit]], [[https://git.kernel.org/linus/10ebac4f95e7a9951c453d6c66d9beb5a35db338|commit]], [[https://git.kernel.org/linus/789753e17c4d6593932f07e40b740373123296a6|commit]], [[https://git.kernel.org/linus/d7f861b9c43aadbe384ab1382d2e76750bedc91e|commit]], [[https://git.kernel.org/linus/c30d6bc8d0153630e600e8f67ba88c670d9e1b0c|commit]], [[https://git.kernel.org/linus/2b42a7e531509577bd822aece610cd6d0dbf0dd7|commit]], [[https://git.kernel.org/linus/e61abd4490684de379b4a2ef1be2dbde39ac1ced|commit]] * memcg: use larger batches for proactive reclaim [[https://git.kernel.org/linus/287d5fedb377ddc232b216b882723305b27ae31a|commit]] * userfaultfd: per-vma locks in userfaultfd [[https://git.kernel.org/linus/867a43a34ff8a38772212045262b2c9b77807ea3|commit]], [[https://git.kernel.org/linus/32af81af2f6f4c23b1b4ff68410e91da660af102|commit]], [[https://git.kernel.org/linus/5e4c24a57b0c126686534b5b159a406c5dd02400|commit]], [[https://git.kernel.org/linus/f91e6b41dd11daffb138e3afdb4804aefc3d4e1b|commit]] * print stacks and their outstanding allocations [[https://git.kernel.org/linus/05bb6f4e826bc8d02632ff942ee8d34b7be37379|commit]], [[https://git.kernel.org/linus/ba6fe53772447968194a9c182f082b33ac1c8daa|commit]], [[https://git.kernel.org/linus/8151c7a35d8bd8a12e93538ef7963ea209b6ab41|commit]], [[https://git.kernel.org/linus/4bedfb314bdd85c1662ecc46fa25b33b998f994d|commit]], [[https://git.kernel.org/linus/3ee34eabac2abb6b1b6fcdebffe18870719ad000|commit]], [[https://git.kernel.org/linus/765973a098037b198ffb813244dbdb45c875ad5f|commit]], [[https://git.kernel.org/linus/217b2119b9e260609958db413876f211038f00ee|commit]] * Mitigate a vmap lock contention [[https://git.kernel.org/linus/282631cb2447318e2a55b41a665dbe8571c46d70|commit]], [[https://git.kernel.org/linus/72210662c5a2b6005f6daea7fe293a0dc573e1a5|commit]], [[https://git.kernel.org/linus/5b75b8e1b9040b34f43809b1948eaa4e83e39112|commit]], [[https://git.kernel.org/linus/7679ba6b36dbb300b757b672d6a32a606499e14b|commit]], [[https://git.kernel.org/linus/7fa8cee003166ef6db0bba70d610dbf173543811|commit]], [[https://git.kernel.org/linus/8f33a2ff307248c3e55a7696f60b3658b28edb57|commit]], [[https://git.kernel.org/linus/38f6b9af04c4b79f81b3c2a0f76d1de94b78d7bc|commit]], [[https://git.kernel.org/linus/53becf32aec1c8049b854f0c31a11df5ed75df6f|commit]], [[https://git.kernel.org/linus/55c49fee57af99f3c663e69dedc5b85e691bbe50|commit]], [[https://git.kernel.org/linus/d093602919ad5908532142a048539800fa94a0d1|commit]], [[https://git.kernel.org/linus/8e1d743f2c2671aa54f6f91a2b33823f92512870|commit]] * khugepaged: bypassing unnecessary scans with {{{MMF_DISABLE_THP}}} check [[https://git.kernel.org/linus/879c6000e191b61b97e17bce44c4564ee42eb612|commit]] * shmem: properly report quota mount options [[https://git.kernel.org/linus/b4d3de57cab266fcb536007bf51f42249af364c3|commit]] * Enable >0 order folio memory compaction [[https://git.kernel.org/linus/73318e2cafe53e8b7c8899d990cf8eaca32184d0|commit]], [[https://git.kernel.org/linus/733aea0b3a7bba0451dfc19322665de13a5b7af4|commit]], [[https://git.kernel.org/linus/ee6f62fd34f0bb99ef93f799bcf5fc6a6b24945b|commit]], [[https://git.kernel.org/linus/5267fe5d092e80a83740e5a1f6d5638d88ac7309|commit]] * zswap: optimize for dynamic zswap_pools [[https://git.kernel.org/linus/94ace3fec8477f8a46d08fc57cd1dd5efbd0a32b|commit]], [[https://git.kernel.org/linus/bf9b7df23cb3c03d8cdbcaa58817e60ce06105ac|commit]] * Handle hugetlb faults under the VMA lock [[https://git.kernel.org/linus/7c43a553792a1701affeef20959dfb2ccb26dcee|commit]], [[https://git.kernel.org/linus/9acad7ba3e25d11f4c96df1b7312ae89e6faca5c|commit]], [[https://git.kernel.org/linus/7dac0ec8fa3f4977d04974e94806dfa8bdac7ed2|commit]], [[https://git.kernel.org/linus/997f0ecb11da15602a3d34e10f9ca8418db794d0|commit]] * madvise: pageout: ignore references rather than clearing young [[https://git.kernel.org/linus/2864f3d0f5831a50253befc5d4583868268b7153|commit]] * Split a folio to any lower order folios [[https://git.kernel.org/linus/c010d47f107f609b9f4d6a103b6dfc53889049e9|commit]], [[https://git.kernel.org/linus/8897277acfef7f70fdecc054073bea2542fc7a1b|commit]], [[https://git.kernel.org/linus/502003bb76b83649cd4ff7f701987ac5cf43bc4b|commit]], [[https://git.kernel.org/linus/319a624ec2b79db7a0b0a2a2a61e3aa5c96eabfc|commit]], [[https://git.kernel.org/linus/9a581c12cddb06696fe4811239934fcde57ceb91|commit]], [[https://git.kernel.org/linus/b8791381d7edae3706edde207f52d9e483ed400c|commit]] * Rearrange batched folio freeing [[https://git.kernel.org/linus/be5a9e17a2ccbecfb7020aa1938e2c62d8a9189c|commit]], [[https://git.kernel.org/linus/f39ec4dcb9e9b03b2a280829b8c15e3ae607398c|commit]], [[https://git.kernel.org/linus/d4111eecdc3c2a5eabafcc467dbfce0e216fa485|commit]], [[https://git.kernel.org/linus/7c33b8c4229af19797c78de48827ca70228c1f47|commit]], [[https://git.kernel.org/linus/24835f899c0129a4733e899e4da20e2e72f40bd9|commit]], [[https://git.kernel.org/linus/4907e80b76af004b6af42f0d4131e23ac73bc07c|commit]], [[https://git.kernel.org/linus/bc2ff4cbc3294c01f29449405c42ee26ee0e1f59|commit]], [[https://git.kernel.org/linus/7c76d92253dbb7c53ba03a4cd6639113cd1f7d3a|commit]], [[https://git.kernel.org/linus/29f3843026cf83414a8bc319c97c1d09a6c33f4e|commit]], [[https://git.kernel.org/linus/8b7b0a5eee22e3cd0468944d0720120c36340a2b|commit]], [[https://git.kernel.org/linus/f77171d241e379ea93448a53d58104191e02135c|commit]], [[https://git.kernel.org/linus/90491d87dd46a4c843dae775b9e72c91624c5a7b|commit]], [[https://git.kernel.org/linus/99fbb6bfc16f202adc411ad5d353db214750d121|commit]], [[https://git.kernel.org/linus/f1ee018baee9f4e724e08859c2559323be768be3|commit]], [[https://git.kernel.org/linus/4882c80975e2bf7241a5b043eb1dbe8df2726a29|commit]], [[https://git.kernel.org/linus/6871cc5742f411bf8ebbcb78b4afeb992d888228|commit]], [[https://git.kernel.org/linus/63b774993dd02b17127cb404b7362fc436632995|commit]], [[https://git.kernel.org/linus/31b2ff82aefb33ce92496a1becddd6ce51060db2|commit]] * !PageFlags cleanups [[https://git.kernel.org/linus/ce3467af6bded1c0018ca67ea1599f45fbb8100b|commit]], [[https://git.kernel.org/linus/29cfe7556bfd6be043b6eb602a29c89d43565d71|commit]], [[https://git.kernel.org/linus/0d846469fd216d37a91845945e9baad11dfa107b|commit]], [[https://git.kernel.org/linus/7da8988c7c0e28dad8d0e9a697d6e7baa66f4534|commit]], [[https://git.kernel.org/linus/9164448d3100d5118bda5e9d38b69a9f32cea509|commit]], [[https://git.kernel.org/linus/dfbac6dc68bae989bd68a56947dcca16c5574fda|commit]], [[https://git.kernel.org/linus/b3a3203309c89061452250f7384507787b7badcb|commit]], [[https://git.kernel.org/linus/fae7d834c43ccdb9fcecaf4d0f33145d884b3e5c|commit]] * parallelize hugetlb page init on boot [[https://git.kernel.org/linus/26d1dc6bb2305cd64dc0cd18e5773cbbcec41bb1|commit]], [[https://git.kernel.org/linus/c6c21c31d0d8b200d448b5edc1e2d47991b3df5a|commit]], [[https://git.kernel.org/linus/d5c3eb3f5026aece935afca3cbe8f9fea113844c|commit]], [[https://git.kernel.org/linus/2e73ff236e09bd2c91c91fd5c84804503b7ea90a|commit]], [[https://git.kernel.org/linus/fc37bbb3289f61e23e3f866eeeb6c865ee4d3088|commit]], [[https://git.kernel.org/linus/b78b27d02930f6f0262353080d0f784ce7aa377e|commit]], [[https://git.kernel.org/linus/bd5ed02e23958cb56d0f5a90ebe620c8b47dab47|commit]] * vmscan: retry kswapd's priority loop with cache_trim_mode off on failure [[https://git.kernel.org/linus/d221dd5fea6415cc6c7acb7d68c8e5dfd61c3902|commit]] * Prohibit the last subpage from reusing the entire large folio [[https://git.kernel.org/linus/cd197c3a2040100fd8668b33e72b07d4790b39d7|commit]] * damon: let DAMOS feeds and tame/auto-tune itself [[https://git.kernel.org/linus/2dbb60f789cbb5c0000a4664f40f9358b3a62ba2|commit]], [[https://git.kernel.org/linus/3c17174f64fe4900a3c5eadaa6e9116b11a9bd33|commit]], [[https://git.kernel.org/linus/7ce55f8ffdedc0e59d53f7003b7bd912b19918a7|commit]], [[https://git.kernel.org/linus/4d791a0a2ab47d70131909942009f12f61db20ab|commit]], [[https://git.kernel.org/linus/106e26fc1c4c1a0e3747246e15df2bc3aa9d46b2|commit]], [[https://git.kernel.org/linus/75c40c2509e797830dd90d92568262ba69a89c9c|commit]], [[https://git.kernel.org/linus/6813131578ecd830c3be9b8a26bc62a2d2027610|commit]], [[https://git.kernel.org/linus/06ba5b309ed870cf1a0fedc611d0e7fbb6425a2d|commit]], [[https://git.kernel.org/linus/adc3908b3ccfd1ee5282e5ba75a24d9b536777c6|commit]], [[https://git.kernel.org/linus/bcce9bc16f56fbc254857fcb31674ab868b824d7|commit]], [[https://git.kernel.org/linus/4daacfe8f99f4b4cef562649d56c48642981f46e|commit]], [[https://git.kernel.org/linus/c71f8a710c39f8138bdd6abcd922789ebffa2de3|commit]], [[https://git.kernel.org/linus/89d347a545a704e0bd4fc61f9aea956d71bc72d2|commit]], [[https://git.kernel.org/linus/78f2f60377ee43b7f27b4584dae754b8aa3f80e1|commit]], [[https://git.kernel.org/linus/91f21216a79d00f7da380ed4ce100e8a7a0d0cff|commit]], [[https://git.kernel.org/linus/a6068d6dfa2f53bdee9d48f32d9e39cdeb74b372|commit]], [[https://git.kernel.org/linus/68c4905bba24691eed0cfb5c19f106f6c162ce02|commit]], [[https://git.kernel.org/linus/58dea17d7a0f8e5dfd36d4ae26e85a26e866b0d4|commit]], [[https://git.kernel.org/linus/9e736fdffe527b25cdd8c5b019e88681796fdb6e|commit]] = Block layer = * Cache issue side time querying [[https://git.kernel.org/linus/08420cf70cfb32eed2a0abfeb5c54c5651bd0c99|commit]], [[https://git.kernel.org/linus/da4c8c3d0975f031ef82d39927102e39fa6ddfac|commit]], [[https://git.kernel.org/linus/06b23f92af87a84d70881b2ecaa72e00f7838264|commit]] * blk: Handle HMP systems when completing IO [[https://git.kernel.org/linus/af550e4c968294398fc76b075f12d51c76caf753|commit]], [[https://git.kernel.org/linus/b361c9027b4e4159e7bcca4eb64fd26507c19994|commit]] * Open block devices as files [[https://git.kernel.org/linus/40ebc18b991bdb867bc693a4ac1b5d7db44838f3|commit]], [[https://git.kernel.org/linus/7c09a4ed6156c6cab6b951e027ca6ea24af454ba|commit]], [[https://git.kernel.org/linus/1b9e2d90141c5e25faefbb7891f0ed8606aa02cf|commit]], [[https://git.kernel.org/linus/e5ca9d391615269b05a6ed871fec66d9db650520|commit]], [[https://git.kernel.org/linus/a56aefca8d386181415a1fb7cfec2f72b0404797|commit]], [[https://git.kernel.org/linus/e97d06a46526d9392cbdbd7eda193091e1af2723|commit]], [[https://git.kernel.org/linus/f9d8c3c4236ef2a1c15b01200b9d164e2c5a54c7|commit]], [[https://git.kernel.org/linus/190f676afa00d07082db170400aaa2cd4de0933f|commit]], [[https://git.kernel.org/linus/f3a608827d1f8de0dd12813e8d9c6803fe64e119|commit]], [[https://git.kernel.org/linus/16ca5dfd8dcd2816edc8f4e68ac4b9c5a606fc98|commit]], [[https://git.kernel.org/linus/a28d893eb3270cf62c10dd8777af0d8452cdc072|commit]], [[https://git.kernel.org/linus/ab838b3fd9a442a62f36ea7eeb93e77259f787ce|commit]] * Improve ublk device deletion [[https://git.kernel.org/linus/13fe8e6825e44129b6cbeee41d3012554bf8d687|commit]], [[https://git.kernel.org/linus/1221b9e982e181f1c37789c46fe5bfe32d97bec4|commit]] * (FEATURED) dm vdo: add the dm-vdo deduplication and compression DM target [[https://git.kernel.org/linus/883069e30e0be28d792db04b97a1785848155d6b|commit]], [[https://git.kernel.org/linus/3f493fcea0fc7b93dc1296030445575e363ccb51|commit]], [[https://git.kernel.org/linus/827c6389c6e496a9d8bd2f94667dd7638c75fe3e|commit]], [[https://git.kernel.org/linus/766130e8a9f358652a43dd7ab3edfc6fca5b9b73|commit]], [[https://git.kernel.org/linus/58a55a59160cc2f59168431859b6ae154b154246|commit]], [[https://git.kernel.org/linus/29a811959c72b60601842b5c61a66d677ecbcc92|commit]], [[https://git.kernel.org/linus/7ce49449ffb9409935d78712550be97cd5e68bb2|commit]], [[https://git.kernel.org/linus/89f9b701f5b800daa76506d5bba197624e97ee44|commit]], [[https://git.kernel.org/linus/79535a7881c0cbe95063a2670d840cc950ae9282|commit]], [[https://git.kernel.org/linus/06e932fea1aafbaa62c0c872060de5f28f717814|commit]], [[https://git.kernel.org/linus/b46d79bdb82aa12bf1101c1a38f0233cefe94cb1|commit]], [[https://git.kernel.org/linus/04bf7ac646ab5eb0987bbd6e87b156b856b1b03f|commit]], [[https://git.kernel.org/linus/cc46b9554b3f6d2f09b1111386b2706e5b4f56c8|commit]], [[https://git.kernel.org/linus/a9457ab9d084047d6ac6a920d95bf431255672b0|commit]], [[https://git.kernel.org/linus/6afc7bcaa40d7ec6bf37483b35e68615cfaad524|commit]], [[https://git.kernel.org/linus/14d531d7b7a124151c54f05e929d6e6fa896b68d|commit]], [[https://git.kernel.org/linus/f11aca85b0346fe7d04eca6eb8db2011398782e7|commit]], [[https://git.kernel.org/linus/c65bfacedc3e9d394c06dacd7b9c70e6bdf41702|commit]], [[https://git.kernel.org/linus/03d1e20fa16e0aaa753c09f2ae72faec27a01273|commit]], [[https://git.kernel.org/linus/c9570b2ced0305ad2e69ff57012641c584bfa2a9|commit]], [[https://git.kernel.org/linus/a4eb7e2555171a95135678ea111a60f0d2a154e6|commit]], [[https://git.kernel.org/linus/4e7ff03922cba20997680dbe78531997760d6117|commit]], [[https://git.kernel.org/linus/b0530561331c12dd6abf480e09e3deff84899bd1|commit]], [[https://git.kernel.org/linus/46766d4888ffdfd2bce91a6879bd6285a92a4881|commit]], [[https://git.kernel.org/linus/4fcb4290dfe303de048fe01968513da6f4512147|commit]], [[https://git.kernel.org/linus/03d1089e1dc7f05afb2bfc76bffc71de17e4297e|commit]], [[https://git.kernel.org/linus/4fa98386be2ff32f18b939d3bf5f6841d638fccd|commit]], [[https://git.kernel.org/linus/95a72357688803736bf60db973cbf94c0ff3a6da|commit]], [[https://git.kernel.org/linus/cfaf07fae7a262865a67b6010eef3bc0a1ae50b2|commit]], [[https://git.kernel.org/linus/062401f0de3540322db559946249f639c6a211ec|commit]], [[https://git.kernel.org/linus/d9e894d9b2ec9f3117f4d16400a3981c48bb0639|commit]], [[https://git.kernel.org/linus/a3957b1f3ec9ec78dd33422f3a8b4ee6781d8e3b|commit]], [[https://git.kernel.org/linus/024512e7326a27311de5158d5396eb39bbe030bc|commit]], [[https://git.kernel.org/linus/ddb12d6714a5c28c87826180a331f5c68a66c5a5|commit]], [[https://git.kernel.org/linus/c9ba9fd33cbb400589a8b3e6a612243cde71d1e6|commit]], [[https://git.kernel.org/linus/09eff388df02ac0fff7d726ca2136d623d1db907|commit]], [[https://git.kernel.org/linus/8ce89dde122b4e3913552b68983e95e606710837|commit]], [[https://git.kernel.org/linus/92f8d7a94fe743831728943aa8988ddf1dddac22|commit]], [[https://git.kernel.org/linus/9533d804ae02f3908acccaa45031fd868d720ba8|commit]], [[https://git.kernel.org/linus/4390aa138b61cf257989e1f0a0deb53e46adae96|commit]] * Fix I/O priority lost in device-mapper [[https://git.kernel.org/linus/5d8d40815314684af2593c075e6eee1afb42bb92|commit]], [[https://git.kernel.org/linus/d95e2c34a3ca76861014cde4205934e434c27c45|commit]], [[https://git.kernel.org/linus/6e5f0f6383b4896c7e9b943d84b136149d0f45e9|commit]], [[https://git.kernel.org/linus/f3c89983cb4fc00be64eb0d5cbcfcdf2cacb965e|commit]] * iomap: map multiple blocks per ->map_blocks in iomap writeback. It significantly reduces CPU usage for buffered write workloads [[https://git.kernel.org/linus/30deff8531f469453ccc0981f14eceb0a2ea68d6|commit]], [[https://git.kernel.org/linus/80d012e98894ac9112cbcddf2fbf276c2e4be0ec|commit]], [[https://git.kernel.org/linus/f525152a0f0ff34eb92b322703d76ba37095f556|commit]], [[https://git.kernel.org/linus/410bb2ce611133a11d4d11f0aef4c83f095c3200|commit]], [[https://git.kernel.org/linus/19871b5c7a003946d3cd4209a348ab7c0df5dbad|commit]], [[https://git.kernel.org/linus/432acd550e3607d5fea23e27f6ab4e4567deccfd|commit]], [[https://git.kernel.org/linus/6b865d6530230b0c446efd93e0207b8eed7eadb2|commit]], [[https://git.kernel.org/linus/7ea1d9b4a840c2dd01d1234663d4a8ef256cfe39|commit]], [[https://git.kernel.org/linus/dec3a7b3aa45802e70c350d73e11564cd444e448|commit]], [[https://git.kernel.org/linus/e3a491a26b62466ad14a423e8c81a04d5969bfe5|commit]], [[https://git.kernel.org/linus/ae5535efd8c445ad6033ac0d5da0197897b148ea|commit]] = Tracing, perf and BPF = * (FEATURED) Introduce BPF arena [[https://git.kernel.org/linus/9f2c156f90a422b4897a8c2831076a96a31413d1|commit]], [[https://git.kernel.org/linus/2edc3de6fb650924a87fffebebc3b7572cbf6e38|commit]], [[https://git.kernel.org/linus/4d2b56081c32cb33364745da434b88eeaa9d8d8d|commit]], [[https://git.kernel.org/linus/667a86ad9b71d934c444eec193cf3508016f35c5|commit]], [[https://git.kernel.org/linus/204c628730c62de5a0b593008549a9b95aa96b01|commit]], [[https://git.kernel.org/linus/80a4129fcf20da3c6941411155a9b3b45caa5b8d|commit]], [[https://git.kernel.org/linus/8df839ae23b8c581bdac4b6970d029d65a415852|commit]], [[https://git.kernel.org/linus/2fe99eb0ccf2bb73df65ebcbbf2f2ff70e63547b|commit]], [[https://git.kernel.org/linus/317460317a02a1af512697e6e964298dedd8a163|commit]], [[https://git.kernel.org/linus/79ff13e99169ddb0e2277e046dbfb112f77dfac5|commit]], [[https://git.kernel.org/linus/6082b6c328b5486da2b356eae94b8b83c98b5565|commit]], [[https://git.kernel.org/linus/142fd4d2dcf58b1720a6af644f31de1a5551f219|commit]], [[https://git.kernel.org/linus/eed512e8ac64339cfc69da1a6a4b60982cb502ca|commit]] * (FEATURED) BPF token [[https://git.kernel.org/linus/40bba140c60fbb3ee8df6203c82fbd3de9f19d95|commit]], [[https://git.kernel.org/linus/98e0eaa36adfb580a3aa43fca62847ec0f625d3f|commit]], [[https://git.kernel.org/linus/1571740a9ba036f26cc5211a86021199987219e8|commit]], [[https://git.kernel.org/linus/1a8df7fa00aac35aff9ef1941c5334b3a01d09e4|commit]], [[https://git.kernel.org/linus/a75bb6a16518d4a224f24116633f3f9d5787f6d1|commit]], [[https://git.kernel.org/linus/c5707b2146d229691e193d5158ea70b21b8ba180|commit]], [[https://git.kernel.org/linus/6c3eba1c5e283fd2bb1c076dbfcb47f569c3bfde|commit]], [[https://git.kernel.org/linus/ed54124b88056fd629c6af71664dfcd4d3b3e0b8|commit]], [[https://git.kernel.org/linus/ee54b1a910e4d49c9a104f31ae3f5b979131adf8|commit]], [[https://git.kernel.org/linus/4527358b76861dfd64ee34aba45d81648fbc8a61|commit]], [[https://git.kernel.org/linus/37891cea6699200fb83eae464ebe1c0f73040474|commit]], [[https://git.kernel.org/linus/7f6719f7a8662a40afed367a685516f9f34e7bc2|commit]], [[https://git.kernel.org/linus/906ee42cb1be1152ef24465704cc89edc3f571c1|commit]], [[https://git.kernel.org/linus/c6c5be3eee975ae640966844db66d404c1de79b1|commit]], [[https://git.kernel.org/linus/e1cef620f598853a90f17701fcb1057a6768f7b8|commit]], [[https://git.kernel.org/linus/ab8fc393b27cd2d6dd1ced1ba2358ddcd123fc15|commit]], [[https://git.kernel.org/linus/22db41226b679768df8f0a4ff5de8e58f625f45b|commit]], [[https://git.kernel.org/linus/1d28635abcf1914425d6516e641978011984c58a|commit]], [[https://git.kernel.org/linus/29c302a2e265a356434b005155990a9e766db75d|commit]], [[https://git.kernel.org/linus/f2d0ffee1f03395d9ae65f9c615b6a0ee05d0e12|commit]], [[https://git.kernel.org/linus/688b7270b3cb75e8ac78123d719967db40336e5b|commit]], [[https://git.kernel.org/linus/ecd435143eb03611e25694141bf59d1c04ad5b9e|commit]], [[https://git.kernel.org/linus/4cbb270e115bc197ff2046aeb54cc951666b16ec|commit]], [[https://git.kernel.org/linus/322122bf8c75b1df78d6608516807a0354f6ab3c|commit]], [[https://git.kernel.org/linus/18678cf0ee13cf19bac4ecd55665e6d1d63108b3|commit]], [[https://git.kernel.org/linus/1d0dd6ea2e38c18e1b31a8c3c59b6bdfe4f4efde|commit]] * BPF token support in libbpf's BPF object [[https://git.kernel.org/linus/98e0eaa36adfb580a3aa43fca62847ec0f625d3f|commit]], [[https://git.kernel.org/linus/36fb94944b35062db15ab3059f4123048cac658c|commit]], [[https://git.kernel.org/linus/1571740a9ba036f26cc5211a86021199987219e8|commit]], [[https://git.kernel.org/linus/a75bb6a16518d4a224f24116633f3f9d5787f6d1|commit]], [[https://git.kernel.org/linus/c5707b2146d229691e193d5158ea70b21b8ba180|commit]], [[https://git.kernel.org/linus/e1cef620f598853a90f17701fcb1057a6768f7b8|commit]], [[https://git.kernel.org/linus/ed54124b88056fd629c6af71664dfcd4d3b3e0b8|commit]], [[https://git.kernel.org/linus/66d636d70a79c1d37e3eea67ab50969e6aaef983|commit]], [[https://git.kernel.org/linus/909fa05dd3c181e5b403912889057f7cdbf3906c|commit]], [[https://git.kernel.org/linus/8062fb12de99b2da33754c6a3be1bfc30d9a35f4|commit]], [[https://git.kernel.org/linus/37891cea6699200fb83eae464ebe1c0f73040474|commit]], [[https://git.kernel.org/linus/906ee42cb1be1152ef24465704cc89edc3f571c1|commit]], [[https://git.kernel.org/linus/c6c5be3eee975ae640966844db66d404c1de79b1|commit]], [[https://git.kernel.org/linus/ecd435143eb03611e25694141bf59d1c04ad5b9e|commit]], [[https://git.kernel.org/linus/1a8df7fa00aac35aff9ef1941c5334b3a01d09e4|commit]], [[https://git.kernel.org/linus/ab8fc393b27cd2d6dd1ced1ba2358ddcd123fc15|commit]], [[https://git.kernel.org/linus/4527358b76861dfd64ee34aba45d81648fbc8a61|commit]], [[https://git.kernel.org/linus/ee54b1a910e4d49c9a104f31ae3f5b979131adf8|commit]], [[https://git.kernel.org/linus/688b7270b3cb75e8ac78123d719967db40336e5b|commit]], [[https://git.kernel.org/linus/29c302a2e265a356434b005155990a9e766db75d|commit]], [[https://git.kernel.org/linus/f2d0ffee1f03395d9ae65f9c615b6a0ee05d0e12|commit]], [[https://git.kernel.org/linus/4cbb270e115bc197ff2046aeb54cc951666b16ec|commit]], [[https://git.kernel.org/linus/40bba140c60fbb3ee8df6203c82fbd3de9f19d95|commit]], [[https://git.kernel.org/linus/d734ca7b33dbf60eb15dcf7c44f3da7073356777|commit]], [[https://git.kernel.org/linus/322122bf8c75b1df78d6608516807a0354f6ab3c|commit]], [[https://git.kernel.org/linus/dc5196fac40c2cb96330bcb98eef868a7fd225b3|commit]], [[https://git.kernel.org/linus/18678cf0ee13cf19bac4ecd55665e6d1d63108b3|commit]], [[https://git.kernel.org/linus/1d0dd6ea2e38c18e1b31a8c3c59b6bdfe4f4efde|commit]], [[https://git.kernel.org/linus/f5fdb51fb980077a4c6c78f3f775821f611fb38b|commit]], [[https://git.kernel.org/linus/c3dd6e94df7193f33f45d33303f5e85afb2a72dc|commit]] * (FEATURED) BPF token and BPF FS-based delegation [[https://git.kernel.org/linus/98e0eaa36adfb580a3aa43fca62847ec0f625d3f|commit]], [[https://git.kernel.org/linus/36fb94944b35062db15ab3059f4123048cac658c|commit]], [[https://git.kernel.org/linus/1571740a9ba036f26cc5211a86021199987219e8|commit]], [[https://git.kernel.org/linus/a75bb6a16518d4a224f24116633f3f9d5787f6d1|commit]], [[https://git.kernel.org/linus/c5707b2146d229691e193d5158ea70b21b8ba180|commit]], [[https://git.kernel.org/linus/e1cef620f598853a90f17701fcb1057a6768f7b8|commit]], [[https://git.kernel.org/linus/ed54124b88056fd629c6af71664dfcd4d3b3e0b8|commit]], [[https://git.kernel.org/linus/66d636d70a79c1d37e3eea67ab50969e6aaef983|commit]], [[https://git.kernel.org/linus/909fa05dd3c181e5b403912889057f7cdbf3906c|commit]], [[https://git.kernel.org/linus/9af3775962afa8b5cd0cc30c1e454405a650c1f3|commit]], [[https://git.kernel.org/linus/906ee42cb1be1152ef24465704cc89edc3f571c1|commit]], [[https://git.kernel.org/linus/c6c5be3eee975ae640966844db66d404c1de79b1|commit]], [[https://git.kernel.org/linus/ecd435143eb03611e25694141bf59d1c04ad5b9e|commit]], [[https://git.kernel.org/linus/1a8df7fa00aac35aff9ef1941c5334b3a01d09e4|commit]], [[https://git.kernel.org/linus/ab8fc393b27cd2d6dd1ced1ba2358ddcd123fc15|commit]], [[https://git.kernel.org/linus/4527358b76861dfd64ee34aba45d81648fbc8a61|commit]], [[https://git.kernel.org/linus/ee54b1a910e4d49c9a104f31ae3f5b979131adf8|commit]], [[https://git.kernel.org/linus/688b7270b3cb75e8ac78123d719967db40336e5b|commit]], [[https://git.kernel.org/linus/29c302a2e265a356434b005155990a9e766db75d|commit]], [[https://git.kernel.org/linus/f2d0ffee1f03395d9ae65f9c615b6a0ee05d0e12|commit]], [[https://git.kernel.org/linus/4cbb270e115bc197ff2046aeb54cc951666b16ec|commit]], [[https://git.kernel.org/linus/40bba140c60fbb3ee8df6203c82fbd3de9f19d95|commit]], [[https://git.kernel.org/linus/d734ca7b33dbf60eb15dcf7c44f3da7073356777|commit]], [[https://git.kernel.org/linus/322122bf8c75b1df78d6608516807a0354f6ab3c|commit]], [[https://git.kernel.org/linus/dc5196fac40c2cb96330bcb98eef868a7fd225b3|commit]], [[https://git.kernel.org/linus/18678cf0ee13cf19bac4ecd55665e6d1d63108b3|commit]], [[https://git.kernel.org/linus/1d0dd6ea2e38c18e1b31a8c3c59b6bdfe4f4efde|commit]], [[https://git.kernel.org/linus/f5fdb51fb980077a4c6c78f3f775821f611fb38b|commit]], [[https://git.kernel.org/linus/c3dd6e94df7193f33f45d33303f5e85afb2a72dc|commit]] * bpf: PTR_TO_BTF_ID arguments in global subprogs [[https://git.kernel.org/linus/20d59ee55172fdf6072abf871fa62b2070d6383f|commit]], [[https://git.kernel.org/linus/18810ad3929ff6b5d8e67e3adc40d690bd780fd6|commit]], [[https://git.kernel.org/linus/54c11ec4935a61af32bb03fc52e7172c97bd7203|commit]], [[https://git.kernel.org/linus/e31f98c1af810a13395ee9ab57402d82272445af|commit]], [[https://git.kernel.org/linus/522bb2c1f82b12eb7befaae815d1d959b8e6bba2|commit]] * BPF FS mount options parsing follow ups [[https://git.kernel.org/linus/98e0eaa36adfb580a3aa43fca62847ec0f625d3f|commit]], [[https://git.kernel.org/linus/36fb94944b35062db15ab3059f4123048cac658c|commit]], [[https://git.kernel.org/linus/1571740a9ba036f26cc5211a86021199987219e8|commit]], [[https://git.kernel.org/linus/a75bb6a16518d4a224f24116633f3f9d5787f6d1|commit]], [[https://git.kernel.org/linus/c5707b2146d229691e193d5158ea70b21b8ba180|commit]], [[https://git.kernel.org/linus/e1cef620f598853a90f17701fcb1057a6768f7b8|commit]], [[https://git.kernel.org/linus/ed54124b88056fd629c6af71664dfcd4d3b3e0b8|commit]], [[https://git.kernel.org/linus/66d636d70a79c1d37e3eea67ab50969e6aaef983|commit]], [[https://git.kernel.org/linus/909fa05dd3c181e5b403912889057f7cdbf3906c|commit]], [[https://git.kernel.org/linus/8062fb12de99b2da33754c6a3be1bfc30d9a35f4|commit]], [[https://git.kernel.org/linus/37891cea6699200fb83eae464ebe1c0f73040474|commit]], [[https://git.kernel.org/linus/906ee42cb1be1152ef24465704cc89edc3f571c1|commit]], [[https://git.kernel.org/linus/c6c5be3eee975ae640966844db66d404c1de79b1|commit]], [[https://git.kernel.org/linus/ecd435143eb03611e25694141bf59d1c04ad5b9e|commit]], [[https://git.kernel.org/linus/1a8df7fa00aac35aff9ef1941c5334b3a01d09e4|commit]], [[https://git.kernel.org/linus/ab8fc393b27cd2d6dd1ced1ba2358ddcd123fc15|commit]], [[https://git.kernel.org/linus/4527358b76861dfd64ee34aba45d81648fbc8a61|commit]], [[https://git.kernel.org/linus/ee54b1a910e4d49c9a104f31ae3f5b979131adf8|commit]], [[https://git.kernel.org/linus/688b7270b3cb75e8ac78123d719967db40336e5b|commit]], [[https://git.kernel.org/linus/29c302a2e265a356434b005155990a9e766db75d|commit]], [[https://git.kernel.org/linus/f2d0ffee1f03395d9ae65f9c615b6a0ee05d0e12|commit]], [[https://git.kernel.org/linus/4cbb270e115bc197ff2046aeb54cc951666b16ec|commit]], [[https://git.kernel.org/linus/40bba140c60fbb3ee8df6203c82fbd3de9f19d95|commit]], [[https://git.kernel.org/linus/d734ca7b33dbf60eb15dcf7c44f3da7073356777|commit]], [[https://git.kernel.org/linus/322122bf8c75b1df78d6608516807a0354f6ab3c|commit]], [[https://git.kernel.org/linus/dc5196fac40c2cb96330bcb98eef868a7fd225b3|commit]], [[https://git.kernel.org/linus/18678cf0ee13cf19bac4ecd55665e6d1d63108b3|commit]], [[https://git.kernel.org/linus/1d0dd6ea2e38c18e1b31a8c3c59b6bdfe4f4efde|commit]], [[https://git.kernel.org/linus/f5fdb51fb980077a4c6c78f3f775821f611fb38b|commit]], [[https://git.kernel.org/linus/c3dd6e94df7193f33f45d33303f5e85afb2a72dc|commit]] * Introduce may_goto and cond_break [[https://git.kernel.org/linus/0c8bbf990bddef1a4f32889b18a4a016d9bd2cfd|commit]], [[https://git.kernel.org/linus/06375801525717173aee790310b7d959bb77879b|commit]], [[https://git.kernel.org/linus/4f81c16f50baf6d5d8bfa6eef3250dcfa22cbc08|commit]], [[https://git.kernel.org/linus/011832b97b311bb9e3c27945bc0d1089a14209c9|commit]] * perf tools: Introduce data type profiling (v1) [[https://git.kernel.org/linus/61a9741e9f78c64c5178e4ae9d405eeceff04c8f|commit]], [[https://git.kernel.org/linus/348366b963e4e1462c8354827a9cb910aa865bf2|commit]], [[https://git.kernel.org/linus/67bc54bbc5a25c0488cc488558a11c14c10f5f14|commit]], [[https://git.kernel.org/linus/08973307d28311505b85216d724826e2ca21759e|commit]], [[https://git.kernel.org/linus/263925bf843f5ca8257317d74992f8e6b7d222e3|commit]], [[https://git.kernel.org/linus/81e57deec32594b124d777b1d3ca8a1415410230|commit]], [[https://git.kernel.org/linus/a3397d69e4e7a1ea37af413ccbdf52dec208ce11|commit]], [[https://git.kernel.org/linus/83bfa06d08050d03d35004e8579df9718a614100|commit]], [[https://git.kernel.org/linus/60cb19b485a534a896431393a877d853bbe51b67|commit]], [[https://git.kernel.org/linus/ded8c48497b825f15436048e8ea3a731a3f7dece|commit]], [[https://git.kernel.org/linus/fc044c53b99fad039ac30b95b289992ebf7dd6b4|commit]], [[https://git.kernel.org/linus/d3030191d3a6292408c5cf999ebcc1d10e00e9c2|commit]], [[https://git.kernel.org/linus/9bd7ddd1576164fbb8d369c6a7b018af9544e202|commit]], [[https://git.kernel.org/linus/b9c87f536c6f28c75ace8a014646faad00f0e1ec|commit]], [[https://git.kernel.org/linus/0669729eb0afb0cf55fe1b97d7a8b1315354910f|commit]], [[https://git.kernel.org/linus/e2c1c8ff2d2ffec340b8fc73ee13b8fb516d1c6d|commit]], [[https://git.kernel.org/linus/6f1b6291cf73cb3223f6fb9ec16862a5fe7ed957|commit]], [[https://git.kernel.org/linus/a65e8c0b7855e951138eff077af4a6a8721a7ef6|commit]], [[https://git.kernel.org/linus/871304a79f755b2ab594bbd21857ecb4c4aa57c9|commit]], [[https://git.kernel.org/linus/7a54f1d83defa6dd6c25c0851191f6d3a0a42362|commit]], [[https://git.kernel.org/linus/d60469d7c0e5c4e8de10699377d2ba79004236a4|commit]], [[https://git.kernel.org/linus/4a111cadac85362ed9476737d7a36e8dd3a8e476|commit]], [[https://git.kernel.org/linus/3f5928e461e394d27bc1ed7d0785b1e63c43d6a1|commit]], [[https://git.kernel.org/linus/fb7fd2a14a503b9a23fe10303923fc0605c22288|commit]], [[https://git.kernel.org/linus/3eee606757ad82f32332a2da174aa032bfd9cc32|commit]], [[https://git.kernel.org/linus/1cf4df0373eed561f543a9e0e0ac2498384d67a0|commit]], [[https://git.kernel.org/linus/3a0c26edc3d2f39da3a91eb6eae404253e7ccbaa|commit]], [[https://git.kernel.org/linus/58824fa0087e1cb732edbf1f112a5ea0b2205c8b|commit]], [[https://git.kernel.org/linus/227ad323854ab48d45966461d7a0a94e03f19368|commit]], [[https://git.kernel.org/linus/2f2c41bdd87f450a6a71c5d090d42c248ca4bf1e|commit]], [[https://git.kernel.org/linus/c06547d02094e7eb81389e9485a45d91cc21914c|commit]] * perf symbols: Slightly improve module file executable section mappings [[https://git.kernel.org/linus/94a830d7cc1bde5058f375c11329961948a70c87|commit]], [[https://git.kernel.org/linus/0bdfbd04c67e0578f304aef10a0b3b5cff392022|commit]] * perf stat: Support per-cluster aggregation [[https://git.kernel.org/linus/cbc917a1b03bce85f385c1e640c9dcb02ffb9ab0|commit]] * perf script: Intro capstone disasm engine to show instruction trace [[https://git.kernel.org/linus/659663f0bccce884059985d5e43e066419cda4e2|commit]], [[https://git.kernel.org/linus/6750ba4b6442fa5ea4bf5c0e4b4ff8b0249ef71d|commit]], [[https://git.kernel.org/linus/9941723438eec4c2388f588e1d4fd98f4a49ab01|commit]], [[https://git.kernel.org/linus/8f0ec15ff66243896ff3e534696c6af7ff013901|commit]], [[https://git.kernel.org/linus/8b767db3309595a23eff1c3f2498f17b1f3a9bbc|commit]] * perf tools: Add -H short option for --hierarchy [[https://git.kernel.org/linus/7727d59de44e4568d0ad0f3867c8bdec69d688fe|commit]] * perf: Expose sample ID / stream ID to python scripts [[https://git.kernel.org/linus/acfd65c89403f3f6478d4451d76377dd8b88bf02|commit]] * tracing: Support to dump instance traces by ftrace_dump_on_oops [[https://git.kernel.org/linus/19f0423fd55c301c8edaea286e568ec657f42750|commit]] * Introducing trace buffer mapping by user-space [[https://git.kernel.org/linus/180e4e390978af9d0cc060e87920c462276453b9|commit]], [[https://git.kernel.org/linus/6b76323e5a483e53568254146c3d141123f3b839|commit]] * tracing/user_events: Introduce multi-format events. Currently user_events supports 1 event with the same name and must have the exact same format when referenced by multiple programs. This release allows programs to indicate it wishes to use the same user_event name, but may have several different formats of the event [[https://git.kernel.org/linus/64805e4039f1687b9857034123a9ec10bb9abddd|commit]], [[https://git.kernel.org/linus/bcb7bdcc17e0e8d79b19748d912ae6991f087345|commit]], [[https://git.kernel.org/linus/1e953de9e9b4ca77a9ce0fc17a0778eba3a4ca64|commit]], [[https://git.kernel.org/linus/3727db1c09b44c5bdcf2497a538da24beee16a3a|commit]] * tracing/probes: Support function parameter access from return probe. This allows user to compare how a data structure field is changed after executing a function [[https://git.kernel.org/linus/25f00e40ce7953db197af3a59233711d154c9d80|commit]], [[https://git.kernel.org/linus/f6e2253a617c4030b807a18383101b59d6f0f536|commit]], [[https://git.kernel.org/linus/7e37b6bc3cc096e24709908076807bb9c3cf0d38|commit]], [[https://git.kernel.org/linus/032330abd08b4da56e39e98aa4d9a9079cbe1d15|commit]], [[https://git.kernel.org/linus/6572786006fa96ad2c35bb31757f1f861298093b|commit]], [[https://git.kernel.org/linus/e8c32f24766a1f22da024e73d1eb8e9c822482ac|commit]], [[https://git.kernel.org/linus/c18f9eabeec766ac8348ce7391d6fd368198522c|commit]], [[https://git.kernel.org/linus/035ba76014c096316fa809a46ce0a1b9af1cde0d|commit]] * tools/rtla: Add -U/--user-load option to timerlat [[https://git.kernel.org/linus/a23c05fd76cf4ad27e0c74f7a93e7b089e94a55c|commit]] = Virtualization = * xen: attempt to inflate the memory balloon on PVH [[https://git.kernel.org/linus/38620fc4e8934f1801c7811ef39a041914ac4c1d|commit]] * Introduce /dev/mshv drivers [[https://git.kernel.org/linus/410779d8d81fcfb45f839238dc6505af5357f5b8|commit]] * vDPA: allow userspace query virtio-block device [[https://git.kernel.org/linus/c9d989b4ababe3ec7291b204f365eaadec0afa26|commit]], [[https://git.kernel.org/linus/65848f46e1d6c01fbd0d79a1c051d978a6e6002e|commit]], [[https://git.kernel.org/linus/330b8aea692410fbe8f0d058e01aea2986613ff7|commit]], [[https://git.kernel.org/linus/3a1d33fb7e5f96471aa7bfe97dd09afc2aa03b39|commit]], [[https://git.kernel.org/linus/1ac61ddfee93278f87370f6c43ed669b845f9037|commit]], [[https://git.kernel.org/linus/c2475a9a789721bfdcc1b16aaf61ccfecb891914|commit]], [[https://git.kernel.org/linus/6bdc7846e627ec21fc79a6d2554f69546a7b4985|commit]], [[https://git.kernel.org/linus/54fb04b02efd8f56e388443d5f9e03e68eef48e6|commit]], [[https://git.kernel.org/linus/81f64e1d911550832b8065631c28c87c96ffca36|commit]], [[https://git.kernel.org/linus/ae1374b7f72c973631ce881a654664fd2b40c4b9|commit]] * x86/hyperv: Use Hyper-V entropy to seed guest random number generator [[https://git.kernel.org/linus/f2580a907e5c0e8fc9354fd095b011301c64f949|commit]] * vfio/nvgrace-gpu: Add vfio pci variant module for grace hopper [[https://git.kernel.org/linus/701ab935859fcfd4a8c8a97f3ee4fb5294a9d481|commit]], [[https://git.kernel.org/linus/30e920e1debb437e5aea7a4ccdab61634354297a|commit]], [[https://git.kernel.org/linus/4de676d494cd8fb2b4c65e58c19ebbdb36673957|commit]] * Interrupt eventfd hardening [[https://git.kernel.org/linus/675daf435e9f8e5a5eab140a9864dfad6668b375|commit]], [[https://git.kernel.org/linus/7447d911af699a15f8d050dfcb7c680a86f87012|commit]], [[https://git.kernel.org/linus/810cd4bb53456d0503cc4e7934e063835152c1b7|commit]], [[https://git.kernel.org/linus/b620ecbd17a03cacd06f014a5d3f3a11285ce053|commit]], [[https://git.kernel.org/linus/fe9a7082684eb059b925c535682e68c34d487d43|commit]], [[https://git.kernel.org/linus/fcdc0d3d40bc26c105acf8467f7d9018970944ae|commit]], [[https://git.kernel.org/linus/18c198c96a815c962adc2b9b77909eec0be7df4d|commit]] * vDPA: Allocate each vq with its size individually [[https://git.kernel.org/linus/f6fa2f7ea07db70d883a9f8944e6119c10934c5f|commit]], [[https://git.kernel.org/linus/47e62e6d62fcae0a00b9f00228c458661595b380|commit]], [[https://git.kernel.org/linus/0a926fc972532788719fd03c4a44724ec23c1875|commit]], [[https://git.kernel.org/linus/36503e5e06a986ae9dbf042589d0ef6e4cbfe15a|commit]], [[https://git.kernel.org/linus/56d61ae558bf7b052c6149c06a902dba0ba33fb1|commit]], [[https://git.kernel.org/linus/1496c47065f9f8413296780c63374daee9bdae20|commit]], [[https://git.kernel.org/linus/273ae08fa03f907d09d6fe815a3982a7298ba804|commit]], [[https://git.kernel.org/linus/cd2147067409f0945ad7668cf74c347d3b426057|commit]] = Security = * Move IMA and EVM to the LSM infrastructure [[https://git.kernel.org/linus/f09068b5a114ed28d2df2e82a7d30dde0145dc69|commit]], [[https://git.kernel.org/linus/a7811e34d100acf24870eb949c5ae3e49dde18b9|commit]], [[https://git.kernel.org/linus/75a323e604fc77c50c7ef2af6f0eeef221637642|commit]], [[https://git.kernel.org/linus/2d705d8024143c272a764320c880ccd3230bb699|commit]], [[https://git.kernel.org/linus/06cca5110774f7b59a1685431ac697865588f4ca|commit]], [[https://git.kernel.org/linus/784111d0093e007950cc20033daf3d74ac388821|commit]], [[https://git.kernel.org/linus/2b6a4054f8c2758cf5c1d78f6ba7006a940b31ce|commit]], [[https://git.kernel.org/linus/84594c9ecdca7ca595bc50e315093cb76921fd8e|commit]], [[https://git.kernel.org/linus/cd3cec0a02c7338ce2901c574f3935b8f6984aab|commit]], [[https://git.kernel.org/linus/0298c5a9b168f0d74ea3bf881301c4bd9252d367|commit]], [[https://git.kernel.org/linus/dae52cbf5887ac51c3574648124cfe475a9b3246|commit]], [[https://git.kernel.org/linus/8b9d0b825c6573d654c8b8039ea79920926305c2|commit]], [[https://git.kernel.org/linus/8f46ff5767b0b18329140d80d6bcabd818f42c4c|commit]], [[https://git.kernel.org/linus/55051039fdadc0cf2c271cc83a976842b443b159|commit]], [[https://git.kernel.org/linus/08abce60d63fb55f440c393f4508e99064f2fd91|commit]], [[https://git.kernel.org/linus/fbd0506e5c5874fd52403fd38e3e77d895689870|commit]], [[https://git.kernel.org/linus/77fa6f314f0376176ef6bf3d84403e0d8b54ce28|commit]], [[https://git.kernel.org/linus/bad5247a2c4f7eab6fb922af3362740a562dc665|commit]], [[https://git.kernel.org/linus/779cb1947e270504c66a96fc0b7e6e31c748b1e1|commit]], [[https://git.kernel.org/linus/fec5f85e468d6f47851d531ec81f9da821768e00|commit]], [[https://git.kernel.org/linus/526864dd2f60c16bcdc84e9e7bc6d69d08cfee21|commit]], [[https://git.kernel.org/linus/b8d997032a46fcf47d5bda011c0d1e87b20c08ba|commit]], [[https://git.kernel.org/linus/314a8dc728d038378795236f6b5199265f921f45|commit]], [[https://git.kernel.org/linus/9238311176115aac1b1a86e8e968c04ebec747a1|commit]] * integrity: Remove LSM [[https://git.kernel.org/linus/b6c0dec9f78bc691166d60347b52b3adf03d5875|commit]] = Networking = * Abstract page from net stack [[https://git.kernel.org/linus/21d2e6737c9789aa9b23c8a4131cbca8260139fd|commit]], [[https://git.kernel.org/linus/18ddbf5cf0e7553fd05c3e1a02d740514ee3f0a6|commit]] * bonding: Add independent control state machine [[https://git.kernel.org/linus/240fd405528bbf7fafa0559202ca7aa524c9cd96|commit]] * Bare UDP L3 Encapsulation Module [[https://git.kernel.org/linus/4ab597d2962195ca4f01a429f9b2ea87ee684be3|commit]], [[https://git.kernel.org/linus/3e7a0dccf0703edd3a2d9e3361f672241c31773b|commit]] * ipv6/addrconf: introduce a {{{regen_min_advance}}} sysctl [[https://git.kernel.org/linus/a5fcea2d2f790aa90b6e996d411ae2cf8db55186|commit]] * Bluetooth: Disconnect devices before rfkilling adapter [[https://git.kernel.org/linus/d77433cdd2524cb924a5ec0476429330e9ee9f0e|commit]], [[https://git.kernel.org/linus/b14202aff5acba3b672704d792e821f02f8f562a|commit]], [[https://git.kernel.org/linus/fee054b7579fe252f8b9e6c17b9c5bfdaa84dd7e|commit]], [[https://git.kernel.org/linus/968667f2e0345a67a6eea5a502f4659085666564|commit]] * dqs: add NIC stall detector based on BQL [[https://git.kernel.org/linus/6025b9135f7a8b46826a5fcf947259da43bac281|commit]] * tools/net/ynl: Add features for tc family [[https://git.kernel.org/linus/2267672a6190cfb0349e95a70e09dc6a973007c1|commit]], [[https://git.kernel.org/linus/a387a921139e07587b0fb93c9c0fec8b6800776d|commit]], [[https://git.kernel.org/linus/e45fee0f49fcbafe9f0f883ef22afb890504a5e6|commit]], [[https://git.kernel.org/linus/bf8b832374fb85931acda478920e3a270f53bf17|commit]], [[https://git.kernel.org/linus/9d6429c33976fcce0d46124a9151314137687e0f|commit]], [[https://git.kernel.org/linus/fe09ae5fb93be371a72d1b2ac62fb3eead51a728|commit]], [[https://git.kernel.org/linus/78d23416979500c749049d5d20bac457bcca2fb5|commit]], [[https://git.kernel.org/linus/aa931b44ae3e32329b054e3cd8ba1a4f1aa9e0d8|commit]], [[https://git.kernel.org/linus/e2ece0bc5ab1f7e0bb00f3b81fd4132b774d880d|commit]], [[https://git.kernel.org/linus/886365cf40b2b53864f1ef0655fe7999c2477418|commit]], [[https://git.kernel.org/linus/ab463c4342d1d14f25357c0f9f1a9744d7417edd|commit]], [[https://git.kernel.org/linus/5f2823c48ad6f63fc033e8ec5e995fcd5cbab409|commit]], [[https://git.kernel.org/linus/971c3eeaf668ed312d032d12becb106982d2b2bd|commit]] * TCP: introduce drop reasons for tcp receive path [[https://git.kernel.org/linus/3d359faba191c95e97ac6699b0163e797812bfca|commit]], [[https://git.kernel.org/linus/e615e3a24ed6f1a501f9b5426ec0b476fded4d22|commit]], [[https://git.kernel.org/linus/65be4393f363c4bd5c388ddf3e3eb4abee2b1f79|commit]], [[https://git.kernel.org/linus/a4a69a3719ec55f677b8481f58215b6338b781e5|commit]], [[https://git.kernel.org/linus/ee01defe25bad09a37b68dd051a7e931d1e4cd91|commit]], [[https://git.kernel.org/linus/48e4704aedb9f17213206dc649fdac90f94cb749|commit]], [[https://git.kernel.org/linus/7d6ed9afde8547723f6f96f81f984cc6c48eef52|commit]], [[https://git.kernel.org/linus/253541a3c1e43f6b42033f78d2289a216af58387|commit]], [[https://git.kernel.org/linus/ed43e76cdcc497e2b27d84db27e7df5612be2643|commit]], [[https://git.kernel.org/linus/b9825695930546af725b1e686b8eaf4c71201728|commit]] * udp: add local "peek offset enabled" flag [[https://git.kernel.org/linus/f796feabb9f5b1e5c48780a7a0023ab4b82336dd|commit]] * multicast event support for ioam6 [[https://git.kernel.org/linus/f655c78d6225f585ef60a9d93ffb79d507ff3ad3|commit]], [[https://git.kernel.org/linus/62759361eb4929ffe692639176887020c76234a2|commit]], [[https://git.kernel.org/linus/5fa918a33563e050d45fb8f260f9240b2039f432|commit]] * pull-request: can-next 2024-02-13 [[https://git.kernel.org/linus/80c5bac02a820dc569e38e102456ec4b34f6f607|commit]], [[https://git.kernel.org/linus/1fa80e23c15051edc1c594270517de3517ded798|commit]], [[https://git.kernel.org/linus/73b8f5015889d4b5fbd885fa310ad8905fe50e4f|commit]], [[https://git.kernel.org/linus/251f913d19a8a960126359c20bd5719461e5399f|commit]], [[https://git.kernel.org/linus/7af9682d9eab968afe3293d0cde8f43d7bf4e622|commit]], [[https://git.kernel.org/linus/ba72f6c78b9beb3d85736b62b8167eaa93e0866b|commit]], [[https://git.kernel.org/linus/4248ba9ea24fa2c8a2106bfb14f775035e9ea8aa|commit]], [[https://git.kernel.org/linus/4d572776d4dfa2d5385a2ec3acec3cc059149e13|commit]], [[https://git.kernel.org/linus/85216f56bde74ec365da3fdff1929505538ce894|commit]], [[https://git.kernel.org/linus/e1aa35e16399d600215470411dfb56e1d6f8e017|commit]], [[https://git.kernel.org/linus/e55b963e4e94011e9de7a6448ea8e50a12bb9953|commit]], [[https://git.kernel.org/linus/7508a10ca295c635fad9c9f34ac96384d806af89|commit]], [[https://git.kernel.org/linus/14f0a0a4407ebb6f36eb7d394d497d4632c654dc|commit]], [[https://git.kernel.org/linus/e668673ed3992579f23413a13d7ed314cb62ee74|commit]], [[https://git.kernel.org/linus/4dcd08b9676aa43782fbfa34d6a9d4e23e89ea26|commit]], [[https://git.kernel.org/linus/9515223bd0bb9bb0a31b61a68f1049148c1d85ff|commit]], [[https://git.kernel.org/linus/fec846fa7eddf7bb651bf88bd78c7db1410ae3b1|commit]], [[https://git.kernel.org/linus/07f25091ca0265da65ea7a4bd2409c627f529c6f|commit]], [[https://git.kernel.org/linus/a163c5761019b94258ca655b27b46e82657fd6f5|commit]], [[https://git.kernel.org/linus/9721866f07e108f892c15ae0c03059e5221b5594|commit]], [[https://git.kernel.org/linus/c83c22ec1493c0b7cc77327bedbd387e295872b6|commit]], [[https://git.kernel.org/linus/c306c3873de0804bea4bb2ac717bd2c088acc589|commit]], [[https://git.kernel.org/linus/ec390d0876170c075fb5ada568db1e03dd790b5b|commit]] * add multi-buff support for xdp running in generic mode [[https://git.kernel.org/linus/e6d5dbdd20aa6a86974af51deb9414cd2e7794cb|commit]], [[https://git.kernel.org/linus/4d2bb0bfe8741a8778e0053f31a4e0f0cba80e8b|commit]], [[https://git.kernel.org/linus/2b0cfa6e49566c8fa6759734cf821aa6e8271a9e|commit]] * netdev: add per-queue statistics [[https://git.kernel.org/linus/af7b3b4adda592cb49e202f3617454d5dda4c5b5|commit]], [[https://git.kernel.org/linus/92f8b1f5ca0f157f564e75cef4c63641c172e0f1|commit]], [[https://git.kernel.org/linus/8ccf3800dbdeaf26bcdefa471c9c8e0da7e6ec7a|commit]], [[https://git.kernel.org/linus/ab63a2387cb906d43b72a8effb611bbaecb2d0cd|commit]] * remove three mutexes in diag dumps [[https://git.kernel.org/linus/86e8921df05c6e9423ab74ab8d41022775d8b83a|commit]], [[https://git.kernel.org/linus/e50e10ae5d81ddb41547114bfdc5edc04422f082|commit]], [[https://git.kernel.org/linus/db5914695a84a7b128ec2e4e9272e6e8091753e1|commit]], [[https://git.kernel.org/linus/efd402537673f9951992aea4ef0f5ff51d858f4b|commit]], [[https://git.kernel.org/linus/f44e64990beb41167bd7c313d90bcf7e290c3582|commit]], [[https://git.kernel.org/linus/114b4bb1cc19239b272d52ebbe156053483fe2f8|commit]], [[https://git.kernel.org/linus/223f55196bbdb182a9b8de6108a0834b5e5e832e|commit]], [[https://git.kernel.org/linus/622a08e8de9f9ad576fd56e3a2e97a84370a8100|commit]], [[https://git.kernel.org/linus/1d55a6974756cf3979efd2cc68bcece611a44053|commit]] * make SK_MEMORY_PCPU_RESERV tunable [[https://git.kernel.org/linus/12a686c2e761f1f1f6e6e2117a9ab9c6de2ac8a7|commit]] * tcp: Support arbitrary SYN Cookie at TC. [[https://git.kernel.org/linus/4eaafe5a5b7b5f2fcec22914bc5b8b2d860896b7|commit]], [[https://git.kernel.org/linus/7b0f570f879adecf12329ecd60485e7e6b4783c1|commit]], [[https://git.kernel.org/linus/45c28509fee6b4c867374b83c5b9e10dac245988|commit]], [[https://git.kernel.org/linus/a74712241b4675175cd8e3310fa206d8756ad5a1|commit]], [[https://git.kernel.org/linus/50468cddd6bc27e75e7377e376674d40fd1b1d73|commit]], [[https://git.kernel.org/linus/e472f88891abbc535a5e16a68a104073985f6061|commit]], [[https://git.kernel.org/linus/34efc9cfe7c6d11ccc438ca03b59a1bf43cc60ec|commit]], [[https://git.kernel.org/linus/efce3d1fdff53ef45b11ff407f16bc2f6f292b93|commit]], [[https://git.kernel.org/linus/7577bc8249c3fc86096ef1b1c9a8f4b6232231e7|commit]], [[https://git.kernel.org/linus/695751e31a63efd2bbe6779873adf1e4deb00cd5|commit]] * Switch EEE netlink interface to use EEE linkmode bitmaps [[https://git.kernel.org/linus/2bb0526129592de59c3e2cd3e8ebe426b7b5b07f|commit]], [[https://git.kernel.org/linus/0b3100bc8fa7a05804737dba96075ea8d45316ce|commit]], [[https://git.kernel.org/linus/285cc15cc555b4f05ebf2556bc6e85a6d36b790a|commit]], [[https://git.kernel.org/linus/d80a52335374e484a4ff2afdc9af843e73273945|commit]], [[https://git.kernel.org/linus/1f069de63602e8d39d7d9fd6195f65235316f79a|commit]], [[https://git.kernel.org/linus/1d756ff13da6a2222ac4387511f2a0e2e83ce670|commit]] * Add getsockopt support for IP_ROUTER_ALERT and IPV6_ROUTER_ALERT [[https://git.kernel.org/linus/eeb78df4063c0b162324a9408ef573b24791871f|commit]] * Support for nexthop group statistics [[https://git.kernel.org/linus/746c19a52ec50b81422fd4772254d55e588d7df6|commit]], [[https://git.kernel.org/linus/5072ae00aea434d922cabd1c3e6236350a77c4d7|commit]], [[https://git.kernel.org/linus/a207eab1039b501daddc8e729c9cc5d99fe93d18|commit]], [[https://git.kernel.org/linus/f4676ea74b8549cd88dbfe2a592ce4530039e61f|commit]], [[https://git.kernel.org/linus/2118f9390d83cf942de8b34faf3d35b54f9f4eee|commit]], [[https://git.kernel.org/linus/5877786fcf52d1b255afcd61832753d1619f0738|commit]], [[https://git.kernel.org/linus/95fedd7685912f96304615efe50485588b1c3567|commit]] * remove three mutexes in diag dumps [[https://git.kernel.org/linus/86e8921df05c6e9423ab74ab8d41022775d8b83a|commit]], [[https://git.kernel.org/linus/e50e10ae5d81ddb41547114bfdc5edc04422f082|commit]], [[https://git.kernel.org/linus/db5914695a84a7b128ec2e4e9272e6e8091753e1|commit]], [[https://git.kernel.org/linus/efd402537673f9951992aea4ef0f5ff51d858f4b|commit]], [[https://git.kernel.org/linus/f44e64990beb41167bd7c313d90bcf7e290c3582|commit]], [[https://git.kernel.org/linus/114b4bb1cc19239b272d52ebbe156053483fe2f8|commit]], [[https://git.kernel.org/linus/223f55196bbdb182a9b8de6108a0834b5e5e832e|commit]], [[https://git.kernel.org/linus/622a08e8de9f9ad576fd56e3a2e97a84370a8100|commit]] * ioam6: netlink multicast event [[https://git.kernel.org/linus/f655c78d6225f585ef60a9d93ffb79d507ff3ad3|commit]], [[https://git.kernel.org/linus/62759361eb4929ffe692639176887020c76234a2|commit]], [[https://git.kernel.org/linus/5fa918a33563e050d45fb8f260f9240b2039f432|commit]] * ipv6: lockless accesses to devconf [[https://git.kernel.org/linus/2aba913f99debce6cd1c7f606d69d094d1202559|commit]], [[https://git.kernel.org/linus/2a02f8379bde89472cddb49dc8e55a17e0b68eed|commit]], [[https://git.kernel.org/linus/32f754176e889cdfe989ef08ece19859427755df|commit]], [[https://git.kernel.org/linus/ddea75d344dd87cf7f5d79efb1aab80b493f8393|commit]], [[https://git.kernel.org/linus/d289ab65b89c1d4d88417cb6c03e923f21f95fae|commit]], [[https://git.kernel.org/linus/624d5aec487cf8c2955d9c5880685714f7fe8e6f|commit]], [[https://git.kernel.org/linus/45b90ec9a214ff7fbde8190126301a07387c46e5|commit]], [[https://git.kernel.org/linus/2f0ff05a44302c91af54a5f9efe1b65b7681540e|commit]], [[https://git.kernel.org/linus/a8fbd4d90720b6c930661ed593d54aba77cec3c2|commit]], [[https://git.kernel.org/linus/096361b15577a583afcc28179a08c75cf95e9dae|commit]], [[https://git.kernel.org/linus/fca34cc075996767fbbdb6252be9ddd21c34c920|commit]], [[https://git.kernel.org/linus/e0bb2675fea2783c45bb95d74f00c55156720863|commit]], [[https://git.kernel.org/linus/e7135f484994494a38071e3653a83d21d305f50c|commit]], [[https://git.kernel.org/linus/e248948a4471c6efca19f7c5e657b30ee67a6485|commit]] * mptcp * dump for userspace pm [[https://git.kernel.org/linus/b055671b39363ada7270b815448042aade4d60eb|commit]], [[https://git.kernel.org/linus/9963b77e25c63b3f1fee306a8e83e9e0b45ebad0|commit]], [[https://git.kernel.org/linus/950c332125f66d7419a24fc933f05606ae199b40|commit]], [[https://git.kernel.org/linus/34e74a5cf3b7d0ab5e54725be19bd27c8b367a63|commit]], [[https://git.kernel.org/linus/d32c8fb1c881478e4af8e6ac3c922d35c8ba3ca8|commit]], [[https://git.kernel.org/linus/564ae6794ec5f050bb6df4446820777e7253f960|commit]], [[https://git.kernel.org/linus/4cc5cc7ca052c816e20ed0cbc160299b454cbb75|commit]], [[https://git.kernel.org/linus/9e6c88e2f05b05892113fc56fabc652ac1ee7043|commit]], [[https://git.kernel.org/linus/06afe09091ee69dc7ab058b4be9917ae59cc81e5|commit]], [[https://git.kernel.org/linus/34ca91e15e69917d2dbb6a76fdf8d28c5c7dc05e|commit]], [[https://git.kernel.org/linus/2d0c1d27ea4eced07bd841d1cfccb838b437dfae|commit]], [[https://git.kernel.org/linus/c19ee3c7e38857b7d266d09129fa509d34716ec3|commit]], [[https://git.kernel.org/linus/9ae7846c4b6b3c7ccd0c9c96012b92f443295a7d|commit]], [[https://git.kernel.org/linus/38f027fca1b724c6814fff4b8ad16b59c14a3e2a|commit]] * Implement TCP_NOTSENT_LOWAT support [[https://git.kernel.org/linus/29b5e5ef87397963ca38d3eec0d296ad1c979bbc|commit]], [[https://git.kernel.org/linus/7f71a337b5152ea0e7bef408d1af53778a919316|commit]], [[https://git.kernel.org/linus/adf1bb78dab55e36d4d557aa2fb446ebcfe9e5ce|commit]], [[https://git.kernel.org/linus/b111d8fbd2cbc63e05f3adfbbe0d4df655dfcc5b|commit]], [[https://git.kernel.org/linus/a74762675f700a5473ebe54a671a0788a5b23cc9|commit]], [[https://git.kernel.org/linus/037db6ea57da7a134a8183dead92d64ef92babee|commit]] * MCTP core protocol updates, minor fixes & tests [[https://git.kernel.org/linus/c16d2380e8fdd9fc1fd0e9c60e068f264b2d0ced|commit]], [[https://git.kernel.org/linus/61b50531dc66b0b299da22580074d8960f99bb0c|commit]], [[https://git.kernel.org/linus/aee6479a458e2c5027e558cfe26c60c37f8efc80|commit]], [[https://git.kernel.org/linus/d192eaf57f006072e8fffbbc5312da87ead86fc3|commit]], [[https://git.kernel.org/linus/fc944ecc4f1a287882d90441360a0ba61d45fd8b|commit]], [[https://git.kernel.org/linus/109a5331143da79eb2b63dee9c65188784edfbce|commit]], [[https://git.kernel.org/linus/ee076b73e576b0a052d5686d873346b285ae50ea|commit]], [[https://git.kernel.org/linus/9acdc089c08884c1f1b4567efcd7290781ee8e3a|commit]], [[https://git.kernel.org/linus/43e6795574f5d75284a3cb21f5b76a5ffb98e8e6|commit]], [[https://git.kernel.org/linus/a1f4cf5791e7914f3e42f5462669353104fef8a9|commit]], [[https://git.kernel.org/linus/1394c1dec1c619a46867ed32791a29695372bff8|commit]] * nf_tables: Introduce NFT_TABLE_F_PERSIST [[https://git.kernel.org/linus/da5141bbe0c2693d85f14a89ee991921904f4d0c|commit]], [[https://git.kernel.org/linus/31bf508be656a429a17e3adb31e9acae5c1a6299|commit]], [[https://git.kernel.org/linus/941988af572434e4aa93fb0f2f509f92adfd691a|commit]] * netlink: Add getsockopt support for NETLINK_LISTEN_ALL_NSID [[https://git.kernel.org/linus/8b6d307f4391c20cfd76bbb15f8b3784d36e0755|commit]] * packet: Add getsockopt support for PACKET_COPY_THRESH [[https://git.kernel.org/linus/76839e2f1fded42382ac7bad215cd9e9c293e97d|commit]] * rxrpc: Miscellaneous changes and make use of MSG_SPLICE_PAGES [[https://git.kernel.org/linus/3b86b2028c4de998978baae780edfc36995bebc5|commit]], [[https://git.kernel.org/linus/3e0b83ee535d44befddb3f0a6c75a531cf47f869|commit]], [[https://git.kernel.org/linus/12a66e77c4999b97a2c2b8f5e4e7533c656cee12|commit]], [[https://git.kernel.org/linus/4d267ad6fd566c58d33ac899fefd5357b9a71908|commit]], [[https://git.kernel.org/linus/693f9c13ec890b0ab36dfb9a5441fdce47255737|commit]], [[https://git.kernel.org/linus/d32636982ce967110588c8445660b85685e26e5a|commit]], [[https://git.kernel.org/linus/4b68137a20bc88fbbdf32301ed604ef000c94e5c|commit]], [[https://git.kernel.org/linus/37473e41623409286ab2f5db628a59d4da9a79d7|commit]], [[https://git.kernel.org/linus/12bdff73a147aebcea8efae2b395ef0c27448909|commit]], [[https://git.kernel.org/linus/a1c9af4d4467354132417c2d8db10d6e928a7f77|commit]], [[https://git.kernel.org/linus/a711d976e1cd7a58a51ecf2816e705fd01fe3489|commit]], [[https://git.kernel.org/linus/99afb28c676cc36747cdb18ffaa6692a60888853|commit]], [[https://git.kernel.org/linus/49489bb03a501547450e8fdc6d85d023d8a3b2c4|commit]], [[https://git.kernel.org/linus/41b8debba79ca4a4aee35f2e3c66bfc7bb6691ee|commit]], [[https://git.kernel.org/linus/44125d5aaddadfe37a97e642218df184871187be|commit]], [[https://git.kernel.org/linus/ba132d841d5637655273c28d30751c8d18ac189b|commit]], [[https://git.kernel.org/linus/1ac6a8536c2cbb12b593f0f4ffd7816b15a484fa|commit]], [[https://git.kernel.org/linus/d73f3a7488754b01a9b86154763f266dcde6ca4e|commit]], [[https://git.kernel.org/linus/17469ae0582aaacad36e8e858f58b86c369f21ef|commit]], [[https://git.kernel.org/linus/153f90a066dd4a91ef7edc0df3964dd097a5e2a5|commit]], [[https://git.kernel.org/linus/ff342bdc59f4a7431d0b58ce8bc2ef7d44cff15f|commit]] * af_unix: Random improvements for GC [[https://git.kernel.org/linus/99a7a5b9943ea2d05fb0dee38e4ae2290477ed83|commit]], [[https://git.kernel.org/linus/11498715f266a3fb4caabba9dd575636cbcaa8f1|commit]], [[https://git.kernel.org/linus/d0f6dc26346863e1f4a23117f5468614e54df064|commit]], [[https://git.kernel.org/linus/d9f21b3613337b55cc9d4a6ead484dca68475143|commit]], [[https://git.kernel.org/linus/8b90a9f819dc2a06baae4ec1a64d875e53b824ec|commit]], [[https://git.kernel.org/linus/5b17307bd0789edea0675d524a2b277b93bbde62|commit]], [[https://git.kernel.org/linus/97af84a6bba2ab2b9c704c08e67de3b5ea551bb2|commit]], [[https://git.kernel.org/linus/31e03207119a535d0b0e3b3a7f91983aeb2cb14d|commit]] * wifi * Add support to flush stations based on link ID [[https://git.kernel.org/linus/f6ca96aa51a4ae1b3a416fbe85acdf1197c405a6|commit]], [[https://git.kernel.org/linus/ec67d6e0d491d2a2df270ddcb7aa44db0984e11c|commit]], [[https://git.kernel.org/linus/16405bd7fd2ea8553bc87a5aa9720e3014e91df6|commit]] * Add link_id handling in AP channel switch during Multi-Link Operation [[https://git.kernel.org/linus/480e7048aa0bbf0a79a976cdfa0195fd157da902|commit]], [[https://git.kernel.org/linus/4ace04c0bdbde3b028ec0a5a3be2471cdb1efb67|commit]] * Add a flag to disable wireless extensions [[https://git.kernel.org/linus/5f404005055304830bbbee0d66af2964fc48f29e|commit]], [[https://git.kernel.org/linus/be23b2d7c3b7c8bf57b1cf0bf890bd65df9d0186|commit]] * patches 2024-01-02 [[https://git.kernel.org/linus/3aca362a4c1411ec11ff04f81b6cdf2359fee962|commit]], [[https://git.kernel.org/linus/ccb964b4ab1663ce92f389b72c052fc47a0ffdb9|commit]], [[https://git.kernel.org/linus/03d5110241eb3a7e25030e75b546f6f7a62d3007|commit]], [[https://git.kernel.org/linus/9362fabcede336d2e780c6ae44eff0f882349dd2|commit]], [[https://git.kernel.org/linus/d18125b640309e925441ce49559be33867ae6b29|commit]], [[https://git.kernel.org/linus/6a19031da91515ebcc4ddaae87914bbcccede75e|commit]], [[https://git.kernel.org/linus/a8b652604e39ff73b8b7f91e7c29a18904eb8a7c|commit]], [[https://git.kernel.org/linus/4d1d6b3f45999b1ddde53831d639a67e2655285f|commit]], [[https://git.kernel.org/linus/2518e89d5b1913c360f8e4cd9fc6eda6146b8800|commit]], [[https://git.kernel.org/linus/2a0698f86d4dfc43cc0c1703efb7ba6b1506a4e2|commit]], [[https://git.kernel.org/linus/f7660b3f584aadd25dde18aa1902488577a15863|commit]], [[https://git.kernel.org/linus/8f500fbc6c655976c8062b1f1e55bd0b3095d6c2|commit]], [[https://git.kernel.org/linus/83e897a961b801536dd1d736e9ede5b1ddb1c188|commit]], [[https://git.kernel.org/linus/34b5ff4617fa1145eec5a1c62fa1ce6ac2fb0b28|commit]] * patches 2024-02-06 [[https://git.kernel.org/linus/49c17da387bb069d802b9be538f0f07d08e1c2b8|commit]], [[https://git.kernel.org/linus/d73fbaf24c5a1e0698a7a5e17d66a5100efef72a|commit]], [[https://git.kernel.org/linus/675516f55db27b351334c9027407e40b1e72818b|commit]], [[https://git.kernel.org/linus/a64be8296e31f432d4a9df4db684cc8a250eb81c|commit]], [[https://git.kernel.org/linus/a110a3b79177ddd7e7295671df97fb5386406835|commit]], [[https://git.kernel.org/linus/7b5e25b8baebc02db728bfbdc3080be863144c7b|commit]] * Initial element helper cleanups [[https://git.kernel.org/linus/147ceae2053402cbbe543944abf3a8494ef76895|commit]], [[https://git.kernel.org/linus/07095d167749d49de876613b3567a246d86135a1|commit]], [[https://git.kernel.org/linus/6239da18d2f947523a80fb1f85f8d8a13d1726c1|commit]], [[https://git.kernel.org/linus/06b4c8665dcff32f50153fd4cddc4b05f31569a7|commit]], [[https://git.kernel.org/linus/ea8af8be4232a3f476d8659319cab794be44e73b|commit]], [[https://git.kernel.org/linus/90233160d761e4ea56c7ac30e36fdaec73b3bdc4|commit]], [[https://git.kernel.org/linus/9d0480a7c05b6482195acafbc5f4f3b4a1cc2b8b|commit]], [[https://git.kernel.org/linus/e0b5ee918723dcf47d3773bc95cbcb428436f817|commit]], [[https://git.kernel.org/linus/552a26b3854e12d73ab0527ee0d46454a2e650fb|commit]], [[https://git.kernel.org/linus/28aa895bb0b324ed4a0cb441e5fbb882befb5e1c|commit]] * refactor and wider-BW OFDMA support [[https://git.kernel.org/linus/761748f001800d925c2ee8b04407e7aee12c3ffb|commit]], [[https://git.kernel.org/linus/f04d2c247e0407ff8219395bef11ddc0837b7397|commit]], [[https://git.kernel.org/linus/310c8387c63830bc375827242e0f9fa689f82e21|commit]], [[https://git.kernel.org/linus/6092077ad09ce880c61735c314060f0bd79ae4aa|commit]], [[https://git.kernel.org/linus/d1256c1546a0e03f103e2f0381103dc747ea7f81|commit]], [[https://git.kernel.org/linus/f73ef56c941248ae8b1e19862e11a7bb517b9af1|commit]], [[https://git.kernel.org/linus/9bf7079bc2271321fac467cae981c44e495b76b9|commit]], [[https://git.kernel.org/linus/d1155f2873cfd387ffb7f5423edbfb2bb22eaf32|commit]], [[https://git.kernel.org/linus/ce10e8653f8b6569ea5d4f96917b5eaee7437072|commit]], [[https://git.kernel.org/linus/6593c7aec7fa15d59af4fbefdbb3d46d27d6e3ed|commit]], [[https://git.kernel.org/linus/0a44dfc070749514b804ccac0b1fd38718f7daa1|commit]] * support redirect to any socket bound to the same umem [[https://git.kernel.org/linus/968595a93669b6b4f6d1fcf80cf2d97956b6868f|commit]], [[https://git.kernel.org/linus/2863d665ea41282379f108e4da6c8a2366ba66db|commit]] * xfrm: Allow UDP encapsulation only in offload modes [[https://git.kernel.org/linus/773bb766ca4a05bf363203030b72b10088869224|commit]] * Support forwarding of ICMP Error messages in IPSec, per RFC 4301 [[https://git.kernel.org/linus/63b21caba17ef2df5982c7b75eb989100212b27b|commit]] = Architectures = * ARM * New SoC * Mediatek MT7981B (Filogic 820) and MT7988A (Filogic 880), networking SoCs designed to be used in wireless routers, similar to the already supported MT7986A (Filogic 830), along with Xiaomi AX3000T and BPI-R4 boards [[https://git.kernel.org/linus/cf29427573ccedcbbc269cebbea253ad90439129|commit]], [[https://git.kernel.org/linus/e0314a63604500654217c7e92bbff238760b3e0c|commit]], [[https://git.kernel.org/linus/afd36e9d91b0a840983b829a9e95407d8151f7e7|commit]], [[https://git.kernel.org/linus/6c1d134a103f68ca4d6bd2a509262fba5c032725|commit]], [[https://git.kernel.org/linus/1e136f4a92fa99bad1e6f07c8eb2e106d3b54c29|commit]] * NXP TQMa8Xx (i.MX8QXP/i.MX8DXP) support [[https://git.kernel.org/linus/970dd89c530500bd35041d2e4b311b8475669d07|commit]], [[https://git.kernel.org/linus/71363a485ad0ceacf9ad40b90bbfc67ab83afad2|commit]], [[https://git.kernel.org/linus/cc605a4c1204ccaa117f6f56e863971e03072342|commit]], [[https://git.kernel.org/linus/95549bba873632c0c106c737cd02120d36298c91|commit]] * Renesas !R8A779G2 (R-Car V4H ES2.0) and White Hawk variants [[https://git.kernel.org/linus/97ba0c2b4b0994044e404b7a96fc92a2e0424534|commit]], [[https://git.kernel.org/linus/c90efc452ac121c11ea4dcd5a235f66fc2b5b46b|commit]], [[https://git.kernel.org/linus/b332da51a929de9081058b17d108008cd6a0d15f|commit]], [[https://git.kernel.org/linus/c18327b36e9c1efb917953fc14b869c37d2884e1|commit]], [[https://git.kernel.org/linus/7605e7e90b6a5c87e05d031018a8e6d024b73953|commit]], [[https://git.kernel.org/linus/a9baf0b42d2048984027ab456f30ee3e93815893|commit]], [[https://git.kernel.org/linus/1b940d036d5a2235323851c579100d1d835d1474|commit]], [[https://git.kernel.org/linus/55cda67bf3121c7cdf9aa65ed2a5d1927027c5b0|commit]]; and R8A779H0 (R-Car V4M) Gray Hawk Single support [[https://git.kernel.org/linus/227ec979581047bad97ec6ac8307fc1e85befff8|commit]], [[https://git.kernel.org/linus/93189f33fcb4e678c9494cddeff96b123ef5674f|commit]], [[https://git.kernel.org/linus/49558e814fefdf33bf0b2d1c46c30d6a3f9634f3|commit]], [[https://git.kernel.org/linus/ad3393fefd6427999de8d93accb8ea31e1339fa0|commit]], [[https://git.kernel.org/linus/3bbdf8c3d32103e21d9a826e40340fa59fc579ea|commit]], [[https://git.kernel.org/linus/2969768dae22c1b76f3784f9630002113b5867d5|commit]], [[https://git.kernel.org/linus/f077cab34df3010df6f4996e648dba5f43fd6b85|commit]], [[https://git.kernel.org/linus/0c7a8cbbcee00631aa643b54e67f7245a98f6f8e|commit]], [[https://git.kernel.org/linus/ae286bd7e9ed889b7284aa8bdb321a9938cc89ca|commit]], [[https://git.kernel.org/linus/1fa8924a488a46b2709f1babd7176193fa077a93|commit]], [[https://git.kernel.org/linus/8923149ffc77eefa16d5412e30cf0e9cf26a01ba|commit]], [[https://git.kernel.org/linus/ff3d9bfa25fabc4bf014d4e350ded1dc12b0a44a|commit]] * TI J722S, another automotive variant of its K3 family, related to the AM62 series [[https://git.kernel.org/linus/2f277dbe1a4ac40b1157ba3b2914d39f4040bbed|commit]], [[https://git.kernel.org/linus/ea55b9335ad81e32f2833c71b2dcb591792e54dd|commit]], [[https://git.kernel.org/linus/de82585f62e08283572d385d0cd6b57893a99d1c|commit]] * New machine support * Add samsung-matisselte and common matisse dtsi [[https://git.kernel.org/linus/05ab3014636ff60a319d37cdf37dca594b015eec|commit]], [[https://git.kernel.org/linus/d305361f36b8dc9b9be916ce668866cf2c8e9d71|commit]], [[https://git.kernel.org/linus/2a478a521876d9daea016be3e9513a67871169b5|commit]], [[https://git.kernel.org/linus/66e9ba516be3c165b1adf86ed2bd7e2ec4a3b578|commit]] * Add support for LG tegra based phones [[https://git.kernel.org/linus/ea5e97e9ce0466b421bf0350fdb05409f5369162|commit]], [[https://git.kernel.org/linus/b68e6e0d50c5d184eae8686f1bd90f9790eb5694|commit]], [[https://git.kernel.org/linus/a82242d802c7cea66aa6630707c60a456657d1c2|commit]] * marvell: a38x: add solidrun armada 388 clearfog boards [[https://git.kernel.org/linus/668445d1c7ca4c0e056fda85935d2c291b46ac10|commit]], [[https://git.kernel.org/linus/d265e1fecf4fdbf2aa46d278bc370890d8e7c707|commit]], [[https://git.kernel.org/linus/e1916d0a953b85f8f3b9c9a252d65194291a2fba|commit]], [[https://git.kernel.org/linus/a3cb441dafb545b487515cfd53ebb576ba7b25d9|commit]], [[https://git.kernel.org/linus/2f9086ef0a20b4751e7c5b40a46becd44c336106|commit]], [[https://git.kernel.org/linus/665eac573ea989b368fc12962765cfadab020552|commit]], [[https://git.kernel.org/linus/0d390855f61b03db829783311a175b272d0ebc17|commit]], [[https://git.kernel.org/linus/7268e0dd3eabee7368c09696dd2bd03a002cc896|commit]], [[https://git.kernel.org/linus/d9d100d1ca9e4cebed560c6822fec5ed62d41843|commit]], [[https://git.kernel.org/linus/429cc56b8de40a51c2c08850ca717ef3e1c2bf3d|commit]] * imx: Add support for Apalis Evaluation Board v1.2 [[https://git.kernel.org/linus/5ec35a64c8cbfc2775adf2dc097a359bc1f5c9f3|commit]] * rockchip: Pine64 !PineTab2 support [[https://git.kernel.org/linus/1b7e19448f8fbeee23111795f67a003431c40b27|commit]], [[https://git.kernel.org/linus/6a0a5a2a71b3e3c4ae1ee0b34a496cbf2d980832|commit]], [[https://git.kernel.org/linus/420186db1483da4e16cd5d5a472f511a35dbc1b7|commit]], [[https://git.kernel.org/linus/baae3a0b10c499d4228514a701602f6fd2a8d6b4|commit]] * A set-top box using Amlogic Meson G12A !S905X2 [[https://git.kernel.org/linus/d881d79f8c77d7f9935a8d9424a1dc4364787bf1|commit]], [[https://git.kernel.org/linus/acbe5b6b0fb74197ebff06a62abcfec9858c23ae|commit]], [[https://git.kernel.org/linus/beee431b3257334e450999ebe77636bb18ca87e7|commit]], [[https://git.kernel.org/linus/fedeacff9611917231d710382e7ccb518cd440a6|commit]] * imx6dl: Add support for Sielaff i.MX6 Solo board [[https://git.kernel.org/linus/8458002b765c2768490bde9cb8f7665d2ffcf102|commit]], [[https://git.kernel.org/linus/6e489bd5aab648fe1bfd8f739e6e4246540b606a|commit]] * Ten Chromebooks, all based on Mediatek MT8186 [[https://git.kernel.org/linus/8855d01fb81f5f89a43d1228ea2be831e80b0262|commit]], [[https://git.kernel.org/linus/09828b16d0b50d45a0493b47ee094cfef903ee72|commit]], [[https://git.kernel.org/linus/59acfd63310779ebf6f77f1a910212562c0d4dd8|commit]], [[https://git.kernel.org/linus/779b1bf173b638f0f738c80439471c2ab7a3ec0b|commit]], [[https://git.kernel.org/linus/8dc6ceaab323bd9a7e2b6516dbbf5f4f0b67a731|commit]], [[https://git.kernel.org/linus/5a5df67bc3412470d8a6a1b0955beb7af6a5cbff|commit]], [[https://git.kernel.org/linus/449b13223d90b9e095dca6c9d4b4ae90cd560673|commit]], [[https://git.kernel.org/linus/a12598b95c5931ca7f762de26e8e711d381cfbc9|commit]]; [[https://git.kernel.org/linus/2041d0cdd0191e559b6e99c355ab6e1a95ecaaaa|commit]] * One development board based on Mediatek MT8395 (Genio 1200) [[https://git.kernel.org/linus/96564b1e2ea4d294f678833e71033ca849138b92|commit]], [[https://git.kernel.org/linus/aa3b537355996913b0371ad17deec069d2fcf4aa|commit]] * A third development board for Qualcomm SM8550 (Snapdragon 8 Gen 2) [[https://git.kernel.org/linus/b5e25ded2721ad75456eac21acb5b2fc6fa5d2bb|commit]], [[https://git.kernel.org/linus/507cad6e0f0ea64d33f9d7902520d7c72fc8c0ca|commit]] * Rockchips RK35xx based machines, including NAS, Tablet, Game console and industrial form factors [[https://git.kernel.org/linus/7140387ff49d0f44648d26f975c6fead1c5055b0|commit]], [[https://git.kernel.org/linus/8ffe365f8dc798a08bf21d5050f7b21bd6a855a4|commit]]; [[https://git.kernel.org/linus/05a708c6ebcadfb6c506f649375ccfc56b572652|commit]], [[https://git.kernel.org/linus/b3244351e2b39bd49aba780ea204f0f2a45a4725|commit]], [[https://git.kernel.org/linus/acbf9184a87d5d6868809baa3a6c7d0537d1f321|commit]], [[https://git.kernel.org/linus/46943b333d60b8f4998df359fe697254eb2f90ad|commit]]; [[https://git.kernel.org/linus/039a03c377d64ec832a8fb1b8f8b5badd404989f|commit]], [[https://git.kernel.org/linus/a695a5009c8fd239a98d98209489997ff5397d2b|commit]], [[https://git.kernel.org/linus/e0c732291250e205fb834881ad7ecf9ee3ffef45|commit]], [[https://git.kernel.org/linus/9913a60f318b6c88ea8385048952e3557464bb84|commit]] * coresight-tpdm: Add support to configure CMB [[https://git.kernel.org/linus/2d9ab11c262e39f3bc829d0679257ab942d5878f|commit]] * Add Acelink EW-7886CAX [[https://git.kernel.org/linus/d9cd3b12883034be34e7379b43d4049dc8806a9e|commit]], [[https://git.kernel.org/linus/802814130cc9a791959e6a042c5fb04f243c2430|commit]] * iot2050: Add support for new SM variant [[https://git.kernel.org/linus/5adf911c7067d3d76d85cc33fd60e201ce43d89d|commit]], [[https://git.kernel.org/linus/8829fe97f1b505acd63f25e4f36bc90957b24c29|commit]], [[https://git.kernel.org/linus/93abe383bfd35357b3319a2430afb7826324337d|commit]], [[https://git.kernel.org/linus/1ef134a43213360aeef8f5508b5760bf0cf73280|commit]], [[https://git.kernel.org/linus/2a99c7792a0cf4f1df1362f43f319af509c05bd8|commit]], [[https://git.kernel.org/linus/f2c6d71e4728528b031d6e93b97a5c21018efa70|commit]], [[https://git.kernel.org/linus/f1a024f76db0167987fb9b53d4ae5483c118ead7|commit]] * Add support for Theobroma-Systems Tiger SoM [[https://git.kernel.org/linus/f95d0903d0a5778822861411d441265b02ff3b31|commit]], [[https://git.kernel.org/linus/6173ef24b35b703078da8b714ba913bd78ee4d3d|commit]], [[https://git.kernel.org/linus/c0263538c5ad8abd2053da6931e21878fa4ae58e|commit]], [[https://git.kernel.org/linus/a8037ceb89649659831e86a87a9329d1bb43c735|commit]] * allwinner: h618: Add Sipeed Longan SoM 3H and Pi 3H board [[https://git.kernel.org/linus/b9957d2d7d22001c94236e0e5b18a8d2a0981275|commit]], [[https://git.kernel.org/linus/b9836187df7e688228d73cc3d93996a84cff7062|commit]] * Add basic support for QNAP TS-433 [[https://git.kernel.org/linus/9da1c0327d58e0cfc2d86799192585ddeb1ae4a0|commit]], [[https://git.kernel.org/linus/0660dd951e1a09e155e31732fbdf735112b5d6c4|commit]] * allwinner: Add Remix Mini PC support [[https://git.kernel.org/linus/4d39a8eb07eb672911a8144672eeaeb759d16484|commit]], [[https://git.kernel.org/linus/53e437141f759d505b325ecfdcca4cb29dfff25d|commit]], [[https://git.kernel.org/linus/171b99b27691d15e33861d3cc92ac93a80e290ab|commit]] * Add Support for !NanoPi R6S and R6C boards [[https://git.kernel.org/linus/d5f1d7437451dbd86a91747793ecd7842e0ce88f|commit]], [[https://git.kernel.org/linus/f1b11f43b3e983b26d8010fc43ba6c2b979826f2|commit]], [[https://git.kernel.org/linus/2eaa5e73f51ff5abce18d58f6d0635880df1b8d0|commit]] * Add Variscite VAR-SOM-MX93 support [[https://git.kernel.org/linus/4ce623d9f1bff7164058ea2aca987e808d0660eb|commit]], [[https://git.kernel.org/linus/2ca8377bf20a341edc95e13e2bf45ff03040f0f5|commit]] * Add Support for !NanoPi R6S and R6C boards [[https://git.kernel.org/linus/d5f1d7437451dbd86a91747793ecd7842e0ce88f|commit]], [[https://git.kernel.org/linus/f1b11f43b3e983b26d8010fc43ba6c2b979826f2|commit]], [[https://git.kernel.org/linus/2eaa5e73f51ff5abce18d58f6d0635880df1b8d0|commit]] * Add support for Freebox fbx8am boards [[https://git.kernel.org/linus/d881d79f8c77d7f9935a8d9424a1dc4364787bf1|commit]], [[https://git.kernel.org/linus/acbe5b6b0fb74197ebff06a62abcfec9858c23ae|commit]], [[https://git.kernel.org/linus/beee431b3257334e450999ebe77636bb18ca87e7|commit]], [[https://git.kernel.org/linus/fedeacff9611917231d710382e7ccb518cd440a6|commit]] * rockchip: Pack Edgeble NCM6A, 6B DT [[https://git.kernel.org/linus/8c711ff32748b46688ddc6663e377dba12ed22cd|commit]], [[https://git.kernel.org/linus/5d85d4c7e03b44bc31814420bb73b2ba12e42c22|commit]], [[https://git.kernel.org/linus/736e39a0af98d5dd165b8cc99837790c3e019d39|commit]], [[https://git.kernel.org/linus/40137b58e7dec7624de41b9c4c22219e230b5b99|commit]], [[https://git.kernel.org/linus/9b606d2d11af4b131e7a3e5889f43a193e637c66|commit]], [[https://git.kernel.org/linus/271e4e979a5a32617fe811df8410cfc477918c68|commit]], [[https://git.kernel.org/linus/92eaee21abbdf07001a7ee3c0d03c48889619600|commit]], [[https://git.kernel.org/linus/9f6d8911cc3b7fbe270ef991b0db0a8b623e01a9|commit]], [[https://git.kernel.org/linus/951d6aaa37fed409c30669ddfed5d1e040cdb281|commit]], [[https://git.kernel.org/linus/762751c183750243f68c1b48889d89d4653c9f19|commit]] * qcom: add AIM300 AIoT board support [[https://git.kernel.org/linus/3019d8f7eacdd2d14502f0fa5c3e4267da8409a3|commit]], [[https://git.kernel.org/linus/d7f3a3691e3c133c637fa381cdc91e7d1af9c5d7|commit]] * qcom: msm8916-samsung-fortuna/rossa: Add initial device trees [[https://git.kernel.org/linus/faf69431464b95a99d74c29cf93497ab64a00ec8|commit]] * Add phyBOARD-Segin-i.MX93 support [[https://git.kernel.org/linus/a8587c5c5157e1ad3152f24c785f472d2175299f|commit]], [[https://git.kernel.org/linus/f63d609b602b7123778a304483c04430f082dd63|commit]], [[https://git.kernel.org/linus/bb191b14c5d57b46a983b5b531fb82803a9601cc|commit]] * freescale: imx8qm: add apalis eval v1.2 carrier board [[https://git.kernel.org/linus/2fb268978a54220dcb1ac4d9812700760c3a828a|commit]], [[https://git.kernel.org/linus/73b30950320057ac96957a819612d0a127494022|commit]] * ti: am65x: Add PCIe + USB DT overlay files [[https://git.kernel.org/linus/c094c53604f8c3fbfbdfe30b60153a50509b69ed|commit]], [[https://git.kernel.org/linus/32b366a55e1bc3b633a8ed82c7289abb75fd9420|commit]], [[https://git.kernel.org/linus/8ada14cafc5e185c668198617cd1ab4f1d8d325a|commit]] * stm32-fmc2-ebi: Add MP25 FMC2 support [[https://git.kernel.org/linus/d9be8d5c5b032e5383ff5c404ff4155e9c705429|commit]], [[https://git.kernel.org/linus/cc7d5cf8021983a736f9d963dda2dd45de02b395|commit]], [[https://git.kernel.org/linus/ce0fd9db653b18ed15aea08ee80056cc9ec094e9|commit]], [[https://git.kernel.org/linus/c1e04ab409aa0df2f554d7b318d82e8730ac4fa6|commit]] * mediatek: Add Acelink EW-7886CAX [[https://git.kernel.org/linus/ea28a2d196c20c6e58686fa46285c6528acc0b19357b847475fe186825d0ff8f35ac641467cdccc5|commit]] * ti: k3-j721e-sk: Add overlay for IMX219 [[https://git.kernel.org/linus/f767eb9180967c2961d47955dc1a3d099819f244|commit]] * qcom: msm8916-samsung-fortuna/rossa: Add initial device trees [[https://git.kernel.org/linus/e1839f78e4699005cfd4f5f59107c33b174fa706|commit]] * Dynamically allocate cpumasks and increase supported CPUs to 512 [[https://git.kernel.org/linus/3fbd56f0e7c14e7c7a7597fd4a368753fe70d76f|commit]] * imx: support i.MX95 ELE/V2X MU [[https://git.kernel.org/linus/8df6bab6cb9abc98736ffae410a74647995873c6|commit]], [[https://git.kernel.org/linus/2a0ac450128bc4a8562e0606bb4b9f8eff11911f|commit]], [[https://git.kernel.org/linus/81f91d6aeb4783739aff1818b09d1d5aaca8276a|commit]], [[https://git.kernel.org/linus/f0e0110c189ebe35f4c4f84abb0eecaf00ca69f3|commit]], [[https://git.kernel.org/linus/b6819b8d531c8cf1659c7b1fc6a7c533260ab505|commit]] * coresight: Add support to configure TPDM CMB subunit [[https://git.kernel.org/linus/53d4a017a52458d835a1f9524df09c65c2208400|commit]], [[https://git.kernel.org/linus/f021801c418e7a81455a410a5b195961349d8e93|commit]], [[https://git.kernel.org/linus/4ed57f75898ce466ed60ce3c146290742985aa95|commit]], [[https://git.kernel.org/linus/8e8804145a46e092c5207bb1258d29236a2cbcaa|commit]], [[https://git.kernel.org/linus/9f0ea8e8344b8549af404f2f1ddb25e22d6b09e1|commit]], [[https://git.kernel.org/linus/dc6ce57e2aa0b10b0b78517245ea0ba47eed75b1|commit]], [[https://git.kernel.org/linus/e6d7f5252f73cf21d3676de794916204524f51b5|commit]], [[https://git.kernel.org/linus/a1705ffcce5268eb95a5e716ee32c9d181b8c228|commit]], [[https://git.kernel.org/linus/19bfaff3845727f354079a140f092336d97e5c1e|commit]] * scmi: Add boost frequency support [[https://git.kernel.org/linus/6f19efc0a1ca08bc61841b971d8b85ab505d95c8|commit]], [[https://git.kernel.org/linus/44139ed4943ee8ec186eea3e9072ca16d2b48133|commit]], [[https://git.kernel.org/linus/a897575e79d7a2ec79abe942b50ecd1d1cdd821b|commit]] * arm_scmi: Report frequencies in the perf notifications [[https://git.kernel.org/linus/22ffc748a6475e75e058ecb16c5afdd6b9f1885f|commit]] * nvmem: Add ZynqMP efuse access support [[https://git.kernel.org/linus/29be47fcd6a06ea2e79eeeca6e69ad1e23254a69|commit]], [[https://git.kernel.org/linus/737c0c8d07b5f671c0a33cec95965fcb2d2ea893|commit]], [[https://git.kernel.org/linus/e34b943068d30f20db31f28100affdaaedc7efab|commit]], [[https://git.kernel.org/linus/9f742e3efc978a480d64b10b353bde656e275aa1|commit]] * Dynamically allocate cpumasks and increase supported CPUs to 512 [[https://git.kernel.org/linus/0499a78369adacec1af29340b71ff8dd375b4697|commit]] * KVM: Add support for {{{FEAT_E2H0}}}, or lack thereof [[https://git.kernel.org/linus/da9af5071b25cb81682c3506c96516fe55186577|commit]], [[https://git.kernel.org/linus/3944382fa6f22b54fd399632b1af92c28123979b|commit]], [[https://git.kernel.org/linus/d9a065914dccce0bbd967cdef1ec21b4de545daf|commit]], [[https://git.kernel.org/linus/d42bf63fd4db20e1a7a414c2ebe257a81c8c7d6e|commit]], [[https://git.kernel.org/linus/aade38faca631f25ec2842da4094d74bb2790bd5|commit]], [[https://git.kernel.org/linus/53eaeb7fbe2702520125ae7d72742362c071a1f2|commit]], [[https://git.kernel.org/linus/c21df6e43f0ed51903738ee34cdb2ec2f978024d|commit]], [[https://git.kernel.org/linus/805bb61f827997c59b92669ae8cc3740ebcf1087|commit]], [[https://git.kernel.org/linus/cfc680bb04c54e61faa51a34d8383a0aa25b583f|commit]], [[https://git.kernel.org/linus/94f29ab2d8018c035098b58d89fc4ae36894a706|commit]] * Allow the VM to select DEVICE_* and NORMAL_NC for IO memory [[https://git.kernel.org/linus/a39d3a966a090989b89c0287a67cd98c85ae2f52|commit]], [[https://git.kernel.org/linus/8c47ce3e1d2c285349edf426b98e8460ce3e2f33|commit]], [[https://git.kernel.org/linus/5c656fcdd6c60f71fccb07fe7b9d8d7e6c9811ff|commit]], [[https://git.kernel.org/linus/c034ec84e8795cf379bd47cc8871445f070a0110|commit]] * KVM: VM configuration enforcement [[https://git.kernel.org/linus/891766581deaf84919911c6a046592ce0ac49bc6|commit]], [[https://git.kernel.org/linus/2fd8f31c32f061822c18d13d17c1ea6a531cc443|commit]], [[https://git.kernel.org/linus/cc5f84fbb008ff0904e0a8c0fb207cee2eb99bc9|commit]], [[https://git.kernel.org/linus/84de212d739ecd16c6289ec4ed47e27b0080bac6|commit]], [[https://git.kernel.org/linus/c5bac1ef7df6bcce4feaa5a609119cab5d5e4730|commit]], [[https://git.kernel.org/linus/d39051d39269dff2ec82c61f3da60edec08d5643|commit]], [[https://git.kernel.org/linus/fdd8e3452359d513cdad1bb8467791b69697181a|commit]], [[https://git.kernel.org/linus/aeddd5b214c8ce7271d7da7aa64ff20fb9032966|commit]], [[https://git.kernel.org/linus/0beb14de740df93a5af0edc0bd4941dc037e6688|commit]], [[https://git.kernel.org/linus/7fd498f473f121db10997d720628423e6538f3b7|commit]], [[https://git.kernel.org/linus/8ecdccb9e5dbbddfe5eb2d4201c1b921461b1bd4|commit]], [[https://git.kernel.org/linus/89bc63fabc8af0897b7ed4fb127006c205dc622c|commit]], [[https://git.kernel.org/linus/19f3e7ea29f8f485f06b47f7c38f9e9e81013ada|commit]], [[https://git.kernel.org/linus/b03e8bb5a906ab0b67fe90e636c3ebff8eb0e91c|commit]], [[https://git.kernel.org/linus/888f0880702293096619b300150cd7e59fcd9743|commit]], [[https://git.kernel.org/linus/11adda4010ba332d9977c98faf1848625348fe40|commit]], [[https://git.kernel.org/linus/81ffcace31c24b79d2891d72b3f892dd2b5937d9|commit]], [[https://git.kernel.org/linus/58627b722ee2e6cfd0b6ebe27d056f7c23acc99d|commit]], [[https://git.kernel.org/linus/d196c20c6e58686fa46285c6528acc0b19357b84|commit]], [[https://git.kernel.org/linus/76b457a5cdeae453481910b2b3978d775e9563dc|commit]], [[https://git.kernel.org/linus/c62d7a23b9479b946f00d58046e0bdf7f233a2b9|commit]], [[https://git.kernel.org/linus/52571d058b0775d57c9d1bc62d8a19b2da51ef39|commit]], [[https://git.kernel.org/linus/085eabaa74a12345b7dd083b160519fe3a52f2ce|commit]], [[https://git.kernel.org/linus/b80b701d5a67d07f4df4a21e09cb31f6bc1feeca|commit]], [[https://git.kernel.org/linus/f5a5a406b4b8bb6c1fc7a1e92a872bd86061a53f|commit]], [[https://git.kernel.org/linus/9958d58779c92b72ef5b29284d073ecaa2a28764|commit]] * Transparent Contiguous PTEs for User Mappings [[https://git.kernel.org/linus/311a6cf29690bb8295327bad0e76e0ad48cadcc4|commit]], [[https://git.kernel.org/linus/c6ec76a2ebc5829e5826b218d2e1475ec11b333e|commit]], [[https://git.kernel.org/linus/b972fc6afba002319fe23bc698ce6431ee43868c|commit]], [[https://git.kernel.org/linus/fb23bf6bd288db3187c27b971e558a3e9f70ae96|commit]], [[https://git.kernel.org/linus/532736558e8ef2865eae1d84b52dda4422cac810|commit]], [[https://git.kernel.org/linus/2bdba9868a4ffcb1492db7272f34b54387910177|commit]], [[https://git.kernel.org/linus/fb5451e5f72b31002760083a99fbb41771c4f1ad|commit]], [[https://git.kernel.org/linus/4602e5757bcceb231c3a13c36c373ad4a750eddb|commit]], [[https://git.kernel.org/linus/6b1e4efb6f5499ae8f9f5cdda7502285a0edbf51|commit]], [[https://git.kernel.org/linus/583ceaaa339960e673ac0029f323bb1c6ffc96d7|commit]], [[https://git.kernel.org/linus/5a00bfd6a52cf31e93d5f1b734087deb32a3cffa|commit]], [[https://git.kernel.org/linus/6280d7317ccae19c776a3b6cf9848c964f958091|commit]], [[https://git.kernel.org/linus/659e193027910a5d3083e34b488ab459d2ef5082|commit]], [[https://git.kernel.org/linus/c1bd2b4028ae5b4d2ada64b31c40cc44cdf00972|commit]], [[https://git.kernel.org/linus/f0c2264958e18bc7bc35b567d51b99461e4de34f|commit]], [[https://git.kernel.org/linus/cbb0294fdd72a5f63ec59fad5c0a98d63bd572fc|commit]] * Rust enablement for AArch64 [[https://git.kernel.org/linus/724a75ac9542fe1f8aaa587da4d3863d8ea292fc|commit]], [[https://git.kernel.org/linus/f82811e22b480a203a438d8e1f29af9c93ccbb0c|commit]] * Support for 2023 DPISA extensions [[https://git.kernel.org/linus/c1932cac7902a8b0f7355515917dedc5412eb15d|commit]], [[https://git.kernel.org/linus/f4dcccdda5867bb68f48046e86e5a7ccaae10d27|commit]], [[https://git.kernel.org/linus/b6c0b424cb91a864e62533a6520743ddcdde5270|commit]], [[https://git.kernel.org/linus/203f2b95a882dc46dd9873562167db69a1f61711|commit]], [[https://git.kernel.org/linus/cc9f69a3dad3b64b299dc2d5f95935fe16cb8b79|commit]], [[https://git.kernel.org/linus/7bcebadda045bead18f6f7050af59af388c4507c|commit]], [[https://git.kernel.org/linus/4035c22ef7d43a6c00d6a6584c60e902b95b46af|commit]], [[https://git.kernel.org/linus/8c46def44409fc914278630b7ba5ac142ab7c4f4|commit]], [[https://git.kernel.org/linus/44d10c27bd75b88b50d0c5cf2c3fe92933c39f1e|commit]] * Add support for LPA2 and WXN at stage 1 [[https://git.kernel.org/linus/68aec33f8f5a87b0450159e5e141d2d6c9d76850|commit]], [[https://git.kernel.org/linus/50e3ed0f93f4f62ed2aa83de5db6cb84ecdd5707|commit]], [[https://git.kernel.org/linus/82ca151da7d54d7571c5d511d016b7780d5d559f|commit]], [[https://git.kernel.org/linus/6ed8a3a094b43a27ac35e5c95a8004a1d83d1b79|commit]], [[https://git.kernel.org/linus/cb1a393c40eee2f1692c995ea0cc6e45bfccde4d|commit]], [[https://git.kernel.org/linus/aa6a52b2470c375ecd71b1d81c89d93b11134b56|commit]], [[https://git.kernel.org/linus/e0f92f0d1b512cf11b918c5828e73d5df5b667cc|commit]], [[https://git.kernel.org/linus/16f22981b6d7ea6815d2e4527b82cac5e2f65c89|commit]], [[https://git.kernel.org/linus/e6128a8e523cfa8f46a1501e6432c37523b47bdf|commit]], [[https://git.kernel.org/linus/aa99aad798a8bc6d35ada2af1dc38f75d364e1ce|commit]], [[https://git.kernel.org/linus/7ac8d5b2423cc0112ac2519276610865142a577b|commit]], [[https://git.kernel.org/linus/9684ec186f8fadde52d6b6eaf64ca508897d0c71|commit]], [[https://git.kernel.org/linus/35876f35f4821c92fb1bbff7eec5780dba4fffdb|commit]], [[https://git.kernel.org/linus/48157aa39286b8eddfb81eeaab4d64d0231450e7|commit]], [[https://git.kernel.org/linus/dcfe969a641984fcd2b52aa257e478443612c050|commit]], [[https://git.kernel.org/linus/0383808e4d99ac31892655ae9dc93597eb6f1412|commit]], [[https://git.kernel.org/linus/a669c6a4935626786e456b25e9cf2bfbba908f15|commit]], [[https://git.kernel.org/linus/925a0eb48044bf3d48531703c3b7522e1a8c87fb|commit]], [[https://git.kernel.org/linus/95e059b5db6082e62632f40434059759c7c1f6ed|commit]], [[https://git.kernel.org/linus/84b04d3e6bdbc7551e62b75dd97cae4a8bddb1b6|commit]], [[https://git.kernel.org/linus/d40900fcb39700207823486ca512a1a87d6331e2|commit]], [[https://git.kernel.org/linus/352b0395b5053fca01b9dc60294235511f5f3d65|commit]], [[https://git.kernel.org/linus/9ddd9baa42a01d383d278096a11b200b53ba9470|commit]], [[https://git.kernel.org/linus/8d47b8e5c74a1be600fd68bbbb4c2ecd8d4cc33c|commit]], [[https://git.kernel.org/linus/734958ef0b5497b1b9cb827afb541e7825477bbd|commit]], [[https://git.kernel.org/linus/ba5b0333a847ac026725122e085b2fea9e1674bc|commit]], [[https://git.kernel.org/linus/9c4cd2a7d12c2c5b11efe7831b54e46c73eb3a8c|commit]], [[https://git.kernel.org/linus/e223a449125571daa62debd8249fa4fc2da0a961|commit]], [[https://git.kernel.org/linus/a6bbf5d4d9d13509fd068de664238c16934962c6|commit]], [[https://git.kernel.org/linus/567a70c181df72f3bb42ca825adb5de682713caa|commit]], [[https://git.kernel.org/linus/5d101654226d64ac0a6928019fbf476b46e9d14b|commit]], [[https://git.kernel.org/linus/2b6c8f96cc47eb1b41f7ebf28dfc2459c39f7fa9|commit]], [[https://git.kernel.org/linus/34b98e55f6840cab938d480968c0f600a2ed97d5|commit]], [[https://git.kernel.org/linus/30687dec5ed5576c743a4cd012a91f93848fe902|commit]], [[https://git.kernel.org/linus/a86aa72eb3b075b985473d1d2973c7d00f568f17|commit]], [[https://git.kernel.org/linus/293d865f0af58e6ff2ff0ba0e890674e00d036b1|commit]], [[https://git.kernel.org/linus/db95ea787bd19be666ba41733259ffea65963bff|commit]], [[https://git.kernel.org/linus/60d043c101769b4fd6f609b4a7b9b8ad1f867860|commit]], [[https://git.kernel.org/linus/9cce9c6c2c3b7d46698d9bb693389d37740fec28|commit]], [[https://git.kernel.org/linus/af73b9a2dd39fb458627a325dcdc9c76e274eae0|commit]], [[https://git.kernel.org/linus/0dd4f60a2c76938c2625f6c630c225699d97608b|commit]], [[https://git.kernel.org/linus/97a6f43bb049e64b9913c50c7530e13d78e205d4|commit]], [[https://git.kernel.org/linus/8a6e40e1f68e9fc44497db88e0c0f21bb513c551|commit]] * Add CSI2RX capture support on TI J7 platforms [[https://git.kernel.org/linus/491821cebcf5cfa86dbc6bbf03f45322dea31b11|commit]], [[https://git.kernel.org/linus/f87c88947396674586a42a163b72efa3999e3dee|commit]], [[https://git.kernel.org/linus/fed1e53ecf9f0ecf04bd931428287fd1002899ef|commit]], [[https://git.kernel.org/linus/4111db03dc05c49ded2d9ec21b52c0ca45b59303|commit]] * Add UFS support for SC7180/SM7125 [[https://git.kernel.org/linus/b010fdb4ea58fb1a0c59c550ef5692745b1e4dc2|commit]], [[https://git.kernel.org/linus/13c7a1683e6372500695ca1ac4fd9cfab2d81be6|commit]], [[https://git.kernel.org/linus/1cf2bf8ffadf2f0ab9ad10a1e0f65b3a0a10d402|commit]], [[https://git.kernel.org/linus/4d314d27130b674a3687135fe94f44a40f107f76|commit]], [[https://git.kernel.org/linus/6016fb7c91f72f4afbb4017e13cd91954d0f1a9b|commit]], [[https://git.kernel.org/linus/7551d945cb9ad8e8cfa4888c6b7be19855754baf|commit]], [[https://git.kernel.org/linus/526b333d7c275a851ce982357218496569b3958e|commit]] * soc/tegra: fuse: Add ACPI support [[https://git.kernel.org/linus/e29482e8487954c87dc7b4fdbc53574bf1d4cce2|commit]], [[https://git.kernel.org/linus/13a69354147e0aaf39695bfb9062738916e924a0|commit]], [[https://git.kernel.org/linus/972167c690801ddf60e88da50493b4ffe103c7f2|commit]], [[https://git.kernel.org/linus/4569e604b5abc2eacc30dd6ac7e3e0fbaa87bc42|commit]], [[https://git.kernel.org/linus/f0139d666685ef339fe5b588696db754e0ac8159|commit]], [[https://git.kernel.org/linus/7092e9b3bed1252c7d3f5812b9fb9d82375b73a6|commit]], [[https://git.kernel.org/linus/d1056b771ddbe119f733fd980c854d1bcf33d13e|commit]], [[https://git.kernel.org/linus/71661c1c8c34d100be03b229dfc7cd7d2db7f62e|commit]], [[https://git.kernel.org/linus/7b0c505eb3414619feef0bd8acc455858f17c1c6|commit]] * mtk-socinfo driver implementation [[https://git.kernel.org/linus/998f0633773b3432829fe45d2cd2ffb842f3c78e|commit]], [[https://git.kernel.org/linus/423a54da3c7ee6d27b862b1bae6e639a1374a36a|commit]], [[https://git.kernel.org/linus/94e4dd09581b2b3461cf336218fea85cba281dd8|commit]] * soc/qcom: Add support for LUT PPG [[https://git.kernel.org/linus/5e9ff626861a0f8c7264ca9278ed68860a417a24|commit]], [[https://git.kernel.org/linus/c47d14545b991064b1dd15906cfb413dbc2780ac|commit]], [[https://git.kernel.org/linus/d7d0efaf528a613a5f553ed3df2db23bc5614d9e|commit]], [[https://git.kernel.org/linus/5b2dd77be1d85ac3a8be3749f5605bf0830e2998|commit]], [[https://git.kernel.org/linus/641fde51bdb26c09ea8cdbd82084e93bd88d1fcb|commit]], [[https://git.kernel.org/linus/05338ba56c7f8731b18f36b6db178d3cb79fe64f|commit]], [[https://git.kernel.org/linus/6ab1f766a80a6f46c7196f588e867cef51f4f26a|commit]] * qcom: socinfo: Add SM8475 IDs [[https://git.kernel.org/linus/c8f349ac13d174f0ceb26df67b86075b491cacc1|commit]], [[https://git.kernel.org/linus/307b7d8f70b25733c88c66846bab5acf319fffef|commit]] * qcom: spm: add support for SPM regulator [[https://git.kernel.org/linus/893768803fa4ab7e5d75448980832b517d251a25|commit]], [[https://git.kernel.org/linus/8c843db2bca12e911e0d0343c52a9e9a17704ae3|commit]], [[https://git.kernel.org/linus/551d90275631a7dd2d290aa60aedabc597029216|commit]], [[https://git.kernel.org/linus/c169576dddff63be2108cb289a9ab1b7fc19ef53|commit]], [[https://git.kernel.org/linus/4117a60c8e4c8d5f9fc05578e359d09d0fdf9d07|commit]], [[https://git.kernel.org/linus/3a3b949fd9555190f2a477271b79e6194f0a824b|commit]], [[https://git.kernel.org/linus/aa4e327fbbf665e96701fa1f53a97ae86b646603|commit]], [[https://git.kernel.org/linus/c9491a16e571d7f33e1d00d1ec4ce9b035bb290c|commit]], [[https://git.kernel.org/linus/9f77f78bd420ffddafe8c019c9e94097ef32c4d6|commit]], [[https://git.kernel.org/linus/0ac87aed5b5ddf734423505b73ce815d67a20113|commit]], [[https://git.kernel.org/linus/57e2b067f19b8de616d1e849ce3786df602bfe7f|commit]] * bpf, arm64: * Use BPF prog pack allocator in BPF JIT [[https://git.kernel.org/linus/77eea559bae925e3cd3c5193efcd37675ec227df|commit]], [[https://git.kernel.org/linus/1dad391daef129e01e28206b8d586608ff026548|commit]], [[https://git.kernel.org/linus/451c3cab9a65e656c3b3d106831fc02d56b8c34a|commit]] * Support Exceptions [[https://git.kernel.org/linus/22fc0e80aeb5c0c1377e6c02d7248f8fbf5df7fc|commit]], [[https://git.kernel.org/linus/e74cb1b422131615a0fe3bedd4ab2e38b7442d10|commit]] * X86 * (FEATURED) Enable FRED [[https://git.kernel.org/linus/14619d912b658ecd9573fb88400d3830a29cadcb|commit]], [[https://git.kernel.org/linus/9356c4b8886c4f7d3436c3f7fe31715bdcf1c79e|commit]], [[https://git.kernel.org/linus/cdd99dd873cb11c40adf1ef70693f72c622ac8f3|commit]], [[https://git.kernel.org/linus/32b09c230392ca4c03fcbade9e28b2053f11396b|commit]], [[https://git.kernel.org/linus/f8b8ee45f82b681606d288bcec89c9071b4079fc|commit]], [[https://git.kernel.org/linus/df8838737b3612eea024fce5ffce0b23dafe5058|commit]], [[https://git.kernel.org/linus/51c158f7aaccc6f6423a61a1df4a0d4c0d9d22a9|commit]], [[https://git.kernel.org/linus/51ef2a4da7ec347e3315af69a426ac36fab98a6c|commit]], [[https://git.kernel.org/linus/530dce278afffd8084af9a23493532912cdbe98a|commit]], [[https://git.kernel.org/linus/cd19bab825bda5bb192ef1d22e67d069daf2efb8|commit]], [[https://git.kernel.org/linus/a4cb5ece145828cae35503857debf3d49c9d1c5f|commit]], [[https://git.kernel.org/linus/208d8c79fd0f155bce1b23d8d78926653f7603b7|commit]], [[https://git.kernel.org/linus/ee63291aa8287cb7ded767d340155fe8681fc075|commit]], [[https://git.kernel.org/linus/2333f3c473c1562633cd17ac2eb743c29c3b2d9d|commit]], [[https://git.kernel.org/linus/58c80cc55e079933205597ecf846583c5e6e4946|commit]], [[https://git.kernel.org/linus/cd6df3f378f63f5d6dce0987169b182be1cb427c|commit]], [[https://git.kernel.org/linus/3c77bf02d0c03beb3efdf7a5b427fb2e1a76c265|commit]], [[https://git.kernel.org/linus/8df719341e8556f1e2bfa0f78fc433db6eba110b|commit]], [[https://git.kernel.org/linus/99fcc968e7c4b117c91f7d03c302d860b74b947b|commit]], [[https://git.kernel.org/linus/2cce95918d635126098d784c040b59333c464b20|commit]], [[https://git.kernel.org/linus/90f357208200a941e90e75757123326684d715d0|commit]], [[https://git.kernel.org/linus/2e670358ec1829238c99fbff178e285d3eb43ef1|commit]], [[https://git.kernel.org/linus/70d0fe5d0923abfb28c26e71171944f4801f9f38|commit]], [[https://git.kernel.org/linus/ad41a14cc2d66229479d73e4a7dc1fda26827666|commit]], [[https://git.kernel.org/linus/e554a8ca49d6d6d782f546ae4d7f036946e7dd87|commit]], [[https://git.kernel.org/linus/3167b37f82ea8f9da156ff4edf100756bbc9277e|commit]], [[https://git.kernel.org/linus/ff45746fbf005f96e42bea466698e3fdbf926013|commit]], [[https://git.kernel.org/linus/5105e7687ad3dffde77f6e4393b5530e83d672dc|commit]], [[https://git.kernel.org/linus/65c9cc9e2c14602d98f1ca61c51ac954e9529303|commit]], [[https://git.kernel.org/linus/8f4a29b0e8a40d865040800684d7ff4141c1394f|commit]], [[https://git.kernel.org/linus/ffa4901f0e004e1a0a4e18a2452a1fcc27277cc0|commit]], [[https://git.kernel.org/linus/09794f68936a017e5632774c3e4450bebbcca2cb|commit]], [[https://git.kernel.org/linus/0115f8b1a26ef49338cdb0bd98ad374b8586d0fd|commit]], [[https://git.kernel.org/linus/3810da12710aaa05c6101418675c923642a80c0c|commit]] * (FEATURED) Add AMD Secure Nested Paging (SEV-SNP) Initialization Support [[https://git.kernel.org/linus/7364a6fbca45f826952ea932699fb2171d06ee73|commit]], [[https://git.kernel.org/linus/fad133c79afa02344d05001324a0474e20f3e055|commit]], [[https://git.kernel.org/linus/f366a8dac1b8fef28a470d4e67b9843ebb8e2a1f|commit]], [[https://git.kernel.org/linus/94b36bc244bb134ec616dd3f2d37343cd8c1be54|commit]], [[https://git.kernel.org/linus/2c35819ee00b8893626914b3384cdef2afea7dbd|commit]], [[https://git.kernel.org/linus/b6e0f6666f74f0794530e3557f5b0a4ce37bd556|commit]], [[https://git.kernel.org/linus/54055344b232c917a9e492a8bf5864fed99ad6b8|commit]], [[https://git.kernel.org/linus/1ca5614b84eed5904f65f143e0e7aaab0ac4c6b2|commit]], [[https://git.kernel.org/linus/75253db41a467ab7983b62616b25ff083c28803a|commit]], [[https://git.kernel.org/linus/3a45dc2b419e691f3dd7fb42c2a1b1cc8146be4f|commit]], [[https://git.kernel.org/linus/f5db8841ebe59dbdf07fda797c88ccb51e0c893d|commit]], [[https://git.kernel.org/linus/04d65a9dbb33e20500005e151d720acead78c539|commit]], [[https://git.kernel.org/linus/c3b86e61b75645276aa2565649a6da5d6e77030f|commit]], [[https://git.kernel.org/linus/e3fd08afb7c350d5612f113eadfb4ebb6ed08deb|commit]], [[https://git.kernel.org/linus/8ef979584ea86c247b768f4420148721a842835f|commit]], [[https://git.kernel.org/linus/1f568d36361b4891696280b719ca4b142db872ba|commit]], [[https://git.kernel.org/linus/24512afa4336a1c14de750238abe32759cfba4b0|commit]], [[https://git.kernel.org/linus/cb645fe478eaad32b6168059bb6b584295af863e|commit]], [[https://git.kernel.org/linus/a867ad6b340f47b7333b80a54b8507fc2cd80aa4|commit]], [[https://git.kernel.org/linus/e8bbd303d7de3fb32be1434a5d5ce3e1cb182018|commit]] * (FEATURED) Add AMD Secure Nested Paging (SEV-SNP) Hypervisor Support [[https://git.kernel.org/linus/24512afa4336a1c14de750238abe32759cfba4b0|commit]], [[https://git.kernel.org/linus/f5db8841ebe59dbdf07fda797c88ccb51e0c893d|commit]], [[https://git.kernel.org/linus/e8d93d5d93f85949e7299be289c6e7e1154b2f78|commit]], [[https://git.kernel.org/linus/1f568d36361b4891696280b719ca4b142db872ba|commit]], [[https://git.kernel.org/linus/3a45dc2b419e691f3dd7fb42c2a1b1cc8146be4f|commit]], [[https://git.kernel.org/linus/1ca5614b84eed5904f65f143e0e7aaab0ac4c6b2|commit]], [[https://git.kernel.org/linus/75253db41a467ab7983b62616b25ff083c28803a|commit]], [[https://git.kernel.org/linus/a26b7cd2254695f8258cc370f33280db0a9a3813|commit]], [[https://git.kernel.org/linus/b6e0f6666f74f0794530e3557f5b0a4ce37bd556|commit]], [[https://git.kernel.org/linus/8ef979584ea86c247b768f4420148721a842835f|commit]], [[https://git.kernel.org/linus/94b36bc244bb134ec616dd3f2d37343cd8c1be54|commit]], [[https://git.kernel.org/linus/2c35819ee00b8893626914b3384cdef2afea7dbd|commit]], [[https://git.kernel.org/linus/e0096d01c4fcb8c96c05643cfc2c20ab78eae4da|commit]], [[https://git.kernel.org/linus/54055344b232c917a9e492a8bf5864fed99ad6b8|commit]] * RAS * Introduce AMD Address Translation Library [[https://git.kernel.org/linus/3f3174996be6b4312c38f54d5969f5d5b75fec9e|commit]] * Introduce a FRU memory poison manager [[https://git.kernel.org/linus/6f15e617cc99323339dc241d19956f0d640c4354|commit]] * FMPM Debug Updates [[https://git.kernel.org/linus/7d19eea51757ad72faf4b0493e5bde85ca62012e|commit]], [[https://git.kernel.org/linus/838850c50884cdd1c96fce1063ef918c394d4bdc|commit]], [[https://git.kernel.org/linus/9d2b6fa09d15d021fb83ec6f1336176ebaebbeec|commit]] * AMD/ATL: Add MI300 DRAM to normalized address translation support [[https://git.kernel.org/linus/87a61237530769d5a7a750fbc747ac0d1b2e18c1|commit]] * AMD/ATL: Add MI300 row retirement support [[https://git.kernel.org/linus/3b566b30b41401888ee0e8eb904a1e7a6693794b|commit]] * AMD/ATL: Add MI300 support [[https://git.kernel.org/linus/453f0ae797328e675840466c80e5b268d7feb9ba|commit]] * AMD/FMPM: Add debugfs interface to print record entries [[https://git.kernel.org/linus/7d19eea51757ad72faf4b0493e5bde85ca62012e|commit]] * iommu/amd: SVA Support (part 3) - refactor support for GCR3 table [[https://git.kernel.org/linus/cf70873e3d01653df69115576501f8f7f6f2b203|commit]], [[https://git.kernel.org/linus/a7b2aff3132562bd26657d9a707f8fa82967147f|commit]], [[https://git.kernel.org/linus/87a6f1f22c9781b1b37847caf65e070bfa6dadb5|commit]], [[https://git.kernel.org/linus/7b4e5623d8e4f1475b7deac42035d0129fb36ed0|commit]], [[https://git.kernel.org/linus/474bf01ed9f0358b243b264339baafcfbe6c6670|commit]], [[https://git.kernel.org/linus/8e017973317235468a330aa197134c1aebbf13da|commit]], [[https://git.kernel.org/linus/4ebd4c7f2501cc5876717e0f2382d5b825e59405|commit]], [[https://git.kernel.org/linus/c2a6af5e08c27350cb007db4cfeeb413017888b0|commit]], [[https://git.kernel.org/linus/fb575d17813f6aff2e8b7e051dac8def2c291bff|commit]], [[https://git.kernel.org/linus/02b990253db7cbdc3ef0631e9c202a69512a14c4|commit]], [[https://git.kernel.org/linus/6f35fe5d8a0ad0125c52fb20f5d67000e369eb3a|commit]], [[https://git.kernel.org/linus/e8e1aac33458d80545e5ad37b2a3e4243eee278e|commit]], [[https://git.kernel.org/linus/a6ffb9b3d71ea21c9d56ac5856fe321ef584bb19|commit]], [[https://git.kernel.org/linus/b2e8a7f5d2c3d99285e13cdd330d339d9b040599|commit]], [[https://git.kernel.org/linus/b7731065523048276a80c8e16120208153438930|commit]], [[https://git.kernel.org/linus/fda5108ebafe7797dc8e1279f04e6e9145c9ad10|commit]], [[https://git.kernel.org/linus/bf8aff2945ba4091f503df673b9df33002546e6a|commit]] * platform * fujitsu-laptop: Add battery charge control support [[https://git.kernel.org/linus/14c8a1451810cf616c959574bee4fad246f3a0cb|commit]] * intel/hid: Add Lunar Lake and Arrow Lake support [[https://git.kernel.org/linus/79ce88064bb04ec62c4e9e4da4614d36906f8a04|commit]] * ISST: Add Granite Rapids-D to HPM CPU list [[https://git.kernel.org/linus/d8c2d38c4d1dee8fe8e015b9ebf65bdd8e4da99b|commit]] * Support for mode FN key [[https://git.kernel.org/linus/0959afbafaf8791a9810fba2c55a64dfdcc3b66e|commit]] * acer-wmi: Add predator_v4 module parameter [[https://git.kernel.org/linus/f9124f2a454a6f1edb4eae9f0646b1a61fd74dba|commit]] * acer-wmi: Add support for Acer PH16-71 [[https://git.kernel.org/linus/20a36ec343d4c5abc2378a45ab5e7ea1ca85020a|commit]] * hp-wmi: Add thermal profile support for 8BAD boards [[https://git.kernel.org/linus/3a057bf30e044a51af8e6a8fe8cbfac49e2b9bc5|commit]] * amd/pmf: Updates to amd-pmf driver [[https://git.kernel.org/linus/3eecb434d7f21be5fc79604b67954be30d7e39cb|commit]], [[https://git.kernel.org/linus/8362e862fb87992f083f75dd49d029e8fc0d803b|commit]], [[https://git.kernel.org/linus/233f78e11e1fa0387d1600875bef02a2d714f2e2|commit]], [[https://git.kernel.org/linus/5fdc8b82aab4c8430bbd8d26a3c3898aaff90a40|commit]], [[https://git.kernel.org/linus/a33e9e106601b5271561e7d79a3d3c4e7e84f07f|commit]], [[https://git.kernel.org/linus/48d38f569261bc6faa2b099be7a4029e538e095f|commit]], [[https://git.kernel.org/linus/6262938eef28254f49c34af48e18cb543b0db5cd|commit]] * platform: ideapad-laptop: support Fn+R dual-function key [[https://git.kernel.org/linus/c5211eacf3326538fbf31b612e5ea546ca8a3425|commit]] * Add model number for another Intel Arrow Lake mobile processor [[https://git.kernel.org/linus/8a8a9c9047d1089598bdb010ec44d7f14b4f9203|commit]] * amd_nb: Add new PCI IDs for AMD family 0x1a [[https://git.kernel.org/linus/0e640f0a47d8426eab1fb9c03f0af898dfe810b8|commit]] * Enumerate Branch History Injection (BHI) bug [[https://git.kernel.org/linus/be482ff9500999f56093738f9219bbabc729d163|commit]] * ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors [[https://git.kernel.org/linus/a51ab63b297ce9e26e3ffb9be896018a42d5f32f|commit]] * Rework APIC registration [[https://git.kernel.org/linus/3205c9833d69b97e8694efe3e193312dea4c571f|commit]], [[https://git.kernel.org/linus/7cdcdab1a660bbe9f98bf1591c048ce7ccee59e0|commit]], [[https://git.kernel.org/linus/5c5682b9f87a3b7bd4833884f300ec673685f6a6|commit]], [[https://git.kernel.org/linus/b7065f4f844c7876ed071b67e2ba57838152bd63|commit]], [[https://git.kernel.org/linus/c8f808231f1fb63553f90d4b3796cb6804d1e693|commit]], [[https://git.kernel.org/linus/bd745d1c41e7fa56242889eb5dc6df2d7dd5df32|commit]], [[https://git.kernel.org/linus/4c4c6f38704ab0e3f85f660b7479de7aa559d79a|commit]], [[https://git.kernel.org/linus/c0a66c2847908e41c771ca2355fba935a82a9f62|commit]], [[https://git.kernel.org/linus/e7530702346637af46bca1d114e6d63312eb3461|commit]], [[https://git.kernel.org/linus/0e53e7b656cf5aa67c08eca381cec858478195a7|commit]], [[https://git.kernel.org/linus/8d415ee225a3d15d3e3029524350e8237a4de7b8|commit]], [[https://git.kernel.org/linus/090610ba704a66d7a58919be3bad195f24499ecb|commit]], [[https://git.kernel.org/linus/6055f6cf0d462fa0d9212a8279b6b0d1130552e1|commit]], [[https://git.kernel.org/linus/7c0edad3643f4493c4dafa6f5dfcfb1a86432156|commit]], [[https://git.kernel.org/linus/ff37b09c8495ed897ea470014d1461660db6a942|commit]], [[https://git.kernel.org/linus/5e40fb2d4a4c7503cab4f923b7d985dbcf583581|commit]], [[https://git.kernel.org/linus/882e0cff9ef340e7a47659a9aab9da64f4b9b847|commit]], [[https://git.kernel.org/linus/354da4cf57af5d8b5302251204d6077600b6d3d6|commit]], [[https://git.kernel.org/linus/cab8e164a49c0ee5c9acb7edec33d76422d831bf|commit]], [[https://git.kernel.org/linus/4176b541c2c68bf79d0a05f316713ed8f0c9cdb4|commit]], [[https://git.kernel.org/linus/72530464ed609bcdd49a760e9d0bc3b16717ff2b|commit]], [[https://git.kernel.org/linus/fd43b8ae76e903c76f14d06eb939449bcc3f614f|commit]], [[https://git.kernel.org/linus/f1f758a80516775b5d12d7c93cbedb2a08cd4c98|commit]], [[https://git.kernel.org/linus/8078f4d6102f9370b3b7436d25717735d21f5c09|commit]], [[https://git.kernel.org/linus/380414be78bf8dbe1c3ed98feb75e2579c4a1bae|commit]], [[https://git.kernel.org/linus/ea2dd8a5d4361ef0b000196043fa407f05b16f1d|commit]], [[https://git.kernel.org/linus/58aa34abe9954cd5dfbf322fc612146c5f45e52b|commit]] * Rework topology evaluation [[https://git.kernel.org/linus/d805a6916037a716e858a0a91d844bad1ca8f48b|commit]], [[https://git.kernel.org/linus/6cf70394e7205a0d65780473aa2081839eb93471|commit]], [[https://git.kernel.org/linus/035fc90a9d8fcff39b9bb43b9ff132756d947ea5|commit]], [[https://git.kernel.org/linus/bcccdf8b30736250d5057e0940468a41d633e672|commit]], [[https://git.kernel.org/linus/3d41009425225ca5e09016c634ecee513b4713bb|commit]], [[https://git.kernel.org/linus/22d63660c35eb751c63a709bf901a64c1726592a|commit]], [[https://git.kernel.org/linus/ebdb20361059b3c4fd7b23cfa10c28e798b7a3d2|commit]], [[https://git.kernel.org/linus/c749ce393b8fe9db5ed894411f06eafa88f0e13a|commit]], [[https://git.kernel.org/linus/fab75e790f00dca592d9a934d9f1237b81093b99|commit]], [[https://git.kernel.org/linus/3279081dd0cb6bc13ffd5ee0e5cb11cfeae2c625|commit]], [[https://git.kernel.org/linus/03fa6bea5a3e13ccbc211af1fa7e75d34239a408|commit]], [[https://git.kernel.org/linus/bda74aae20086c044b31ca0dcdab7deaaf23d0e8|commit]], [[https://git.kernel.org/linus/ace278e7eca6be5d36eb6f1efb660c13b66c4d64|commit]], [[https://git.kernel.org/linus/43d86e3cd9a77912772cf7ad37ad94211bf7351d|commit]], [[https://git.kernel.org/linus/7e3ec6286753b404666af9a58d283690302c9321|commit]], [[https://git.kernel.org/linus/92853a7774f942e3692dbd83bace82333a2b47bd|commit]], [[https://git.kernel.org/linus/598e719c40d67b1473d78423e941bed4ea6c726d|commit]], [[https://git.kernel.org/linus/d5474e4d2c91b3f27864e9898f7f6e49daf26d93|commit]], [[https://git.kernel.org/linus/f7fb3b2dd92c633871b7037773b89531c488a371|commit]] * KVM: SVM: Add support for allowing zero SEV ASIDs [[https://git.kernel.org/linus/466eec4a22a76c462781bf6d45cb02cbedf21a61|commit]], [[https://git.kernel.org/linus/0aa6b90ef9d75b4bd7b6d106d85f2a3437697f91|commit]], [[https://git.kernel.org/linus/cc4ce37bed85989daf8f38bf19ea591f3b36fb0c|commit]], [[https://git.kernel.org/linus/fdd58834d132046149699b88a27a0db26829f4fb|commit]] * hyperv: Use Hyper-V entropy to seed guest random number generator [[https://git.kernel.org/linus/f2580a907e5c0e8fc9354fd095b011301c64f949|commit]] * perf vendor event and TMA 4.7 metric update [[https://git.kernel.org/linus/176e66715d0ea5ccf65b36b411d760ab18a0de4a|commit]], [[https://git.kernel.org/linus/c72a20435a5b94258f50887841f6a5393c5429bc|commit]], [[https://git.kernel.org/linus/4018680df9359d7447d5a89af014b5f4882edc8d|commit]], [[https://git.kernel.org/linus/5f9a13bee0a660d01152ca968406d761c1926653|commit]], [[https://git.kernel.org/linus/2a264a1946136645b23db7f3588c1669744deec5|commit]], [[https://git.kernel.org/linus/f9044d46b75a7bb971b97c9b3b2c6f09d324c55e|commit]], [[https://git.kernel.org/linus/f15fa6ba76dc55bed34750a9f50031754ec3fe6b|commit]], [[https://git.kernel.org/linus/9626368d429a7b8fe12adf79be3d009ae0f569c2|commit]], [[https://git.kernel.org/linus/2252ddf4343caf7271d5e2e438c44c9d7590e35f|commit]], [[https://git.kernel.org/linus/1d262a85e289fdaa75923aa5eac4489e9158466f|commit]], [[https://git.kernel.org/linus/52530942ba4363fa3cce31d0801332572dcb8796|commit]], [[https://git.kernel.org/linus/6f146b249b3ada0082209b34abf01c90c702a96b|commit]], [[https://git.kernel.org/linus/b15cae3f697c5d75014f417cb5aa10aab248e5ab|commit]], [[https://git.kernel.org/linus/c4bb31c7b05132e8aed99b267e262da1859a6805|commit]], [[https://git.kernel.org/linus/eedd6d0a72f26a92863fbeac0139b61f7ccc4736|commit]], [[https://git.kernel.org/linus/14bc1a59f2709f02e7bf12d5f22fa41f6611919f|commit]], [[https://git.kernel.org/linus/7163acea3076fde4e996d902e7638a1e9a641b88|commit]], [[https://git.kernel.org/linus/24cda3081ac2a94e3eb0f2d6dd9e9968010afbec|commit]], [[https://git.kernel.org/linus/ea518afc992032f7570c0a89ac9240b387dc0faf|commit]], [[https://git.kernel.org/linus/8cf54fa8444190105c4129da3b9cf34b5d57c5c5|commit]], [[https://git.kernel.org/linus/70bfdad63f87fbfb31bc8eb70a16374b437de25b|commit]], [[https://git.kernel.org/linus/e8866cdbe10182ad57cbd638802244ee9c82f20f|commit]], [[https://git.kernel.org/linus/5dcc2abaa54548f00e02d9d68280db20a86bc87a|commit]], [[https://git.kernel.org/linus/c31d718ca217921192254946ae2fdeb63d2ef7a7|commit]], [[https://git.kernel.org/linus/e2c8b40e374683a9b85944fa02db35081d2eeee6|commit]], [[https://git.kernel.org/linus/8792e8f89da1dccb874d0c38685c52e504e0a49d|commit]], [[https://git.kernel.org/linus/53c83c79aa590309464a05876fecf73f20f943d6|commit]], [[https://git.kernel.org/linus/74f76c3ba7d5a68fac8fa1f711433742c8870807|commit]], [[https://git.kernel.org/linus/89b66259a73a106e94333ca3c03f8059b8c24ce1|commit]], [[https://git.kernel.org/linus/8972c0335305e899b21c9f9ef30db3e7caf4e588|commit]] * MIPS * Add support for the Mobileye !EyeQ5 SoC [[https://git.kernel.org/linus/101bd58fde10681aea9d9677424275bb88a8845f|commit]], [[https://git.kernel.org/linus/179771efacd7bbdd9bac5c5961ac4ac03df6585d|commit]], [[https://git.kernel.org/linus/ef39583440ab3e7e9186200a451250172f96572b|commit]], [[https://git.kernel.org/linus/3391b95cf6a0b5b70904857dcc415b832f81866a|commit]], [[https://git.kernel.org/linus/263909a753d9fe070868a9b0890cb03fb402eaa1|commit]], [[https://git.kernel.org/linus/80f2e4cd2573c7d5c8ecc287fb09b15f8dcafae0|commit]], [[https://git.kernel.org/linus/f34158edd24995203412cc950d1882a626c5ad65|commit]], [[https://git.kernel.org/linus/5e9d13bd3de8c34ee81b9db8c50887fea5b93834|commit]], [[https://git.kernel.org/linus/8f6fd33b728eddb90db7b950e85b07aecfeada44|commit]], [[https://git.kernel.org/linus/e40192dabaaae540578339d86b4e3fb105973710|commit]], [[https://git.kernel.org/linus/c401814730b057461f1b3c95f71a5980447c953b|commit]], [[https://git.kernel.org/linus/b1264ad8a4a072013e0c119ead699165edcd7734|commit]], [[https://git.kernel.org/linus/524aa6b17ab5ebb55ad909fbc2ac6cda0995e0db|commit]], [[https://git.kernel.org/linus/7c8697ef033f2a500d0c5de8f844ad312991fe61|commit]] * POWERPC * Add Power11 architected and raw mode [[https://git.kernel.org/linus/c2ed087ed35ca569d8179924ba560be248c758e5|commit]] * perf: Power11 Performance Monitoring support [[https://git.kernel.org/linus/b22ea627225b53ec7ce25c19d6df9fa8217d1643|commit]] * RISCV * Support fast gup [[https://git.kernel.org/linus/7f43d57b900d7e221a73204239b74d4001193599|commit]], [[https://git.kernel.org/linus/3f910b7a522e064d7261f31a00d9c9dca31d902a|commit]], [[https://git.kernel.org/linus/69be3fb111e73bd025ce6d2322371da5aa497c70|commit]], [[https://git.kernel.org/linus/40d1bb92a49313b3e0dc5513fdd2578362c40312|commit]], [[https://git.kernel.org/linus/8246601a7d391ce8207408149d65732f28af81a1|commit]] * Support RANDOMIZE_KSTACK_OFFSET [[https://git.kernel.org/linus/05d450aabd7386246c5aafc341fe9febe5855967|commit]] * Support kCFI + BPF on riscv64 [[https://git.kernel.org/linus/e63985ecd22681c7f5975f2e8637187a326b6791|commit]] * Linux RISC-V AIA Support [[https://git.kernel.org/linus/5c5a71d0434093cd42d09afd4e2032c0b16a7da8|commit]], [[https://git.kernel.org/linus/2333df5ae51ead2188d07c99e841e159a664741e|commit]], [[https://git.kernel.org/linus/0eebc69db358fd2f6fe34cc4db6428df6a540dd7|commit]], [[https://git.kernel.org/linus/abb7205794900503d6358ef1fb645373753a794d|commit]], [[https://git.kernel.org/linus/25d862e183d4efeb5e8b9843d783c90aaae4b14a|commit]], [[https://git.kernel.org/linus/21a8f8a0eb35ceb21e2c9ddd87468bc3b5ac87c0|commit]], [[https://git.kernel.org/linus/ca8df97fe6798afbe395fc4a8e23bac0c7fbd248|commit]], [[https://git.kernel.org/linus/027e125acdbad79e9a7274940e8bf92299b208af|commit]], [[https://git.kernel.org/linus/3b806a5a1a39d593d6fe0def2ef474402f551f91|commit]], [[https://git.kernel.org/linus/b68d0ff529a939a118ec52f271be8cad5d99e79a|commit]], [[https://git.kernel.org/linus/5b98d210ac1e4eb35abfbd940df50dec10ae81e1|commit]], [[https://git.kernel.org/linus/8ec99b033147ef3bb8f0a560c24eb1baec3bc0be|commit]], [[https://git.kernel.org/linus/3c46fc5b5507be1f4aa144a1fbd83b0ccba04cc6|commit]], [[https://git.kernel.org/linus/a15587277a246c388c83b1cd9cf7c1a868cd752f|commit]], [[https://git.kernel.org/linus/6c725f33d67b53f2d302c2c4509deae953fc6ade|commit]], [[https://git.kernel.org/linus/f4e116b2c5eec0dc1ab65e7105c180d4f8627b39|commit]], [[https://git.kernel.org/linus/0151a8db49b0a88f967dca0ea5ae2bee2d67b22a|commit]] * !StarFive's !StarLink PMU Support [[https://git.kernel.org/linus/b9f71ab2152e5b344c02eb3ff43637162aaf29e6|commit]], [[https://git.kernel.org/linus/49925c1c5a6c93a857b3dffcce3a7fb48ec72cbb|commit]], [[https://git.kernel.org/linus/66461b43b0c05da2e7c606b9eea7f1f3b565b9c3|commit]], [[https://git.kernel.org/linus/c2b24812f7bc5fbd6f2f92af070856fbe4c37b40|commit]] * Support Andes PMU extension [[https://git.kernel.org/linus/a13a806dfb8a21e57f4e9777cafb547e51c97bbd|commit]], [[https://git.kernel.org/linus/ea0e0178e101c8d4662a0db7424df057b88e2712|commit]], [[https://git.kernel.org/linus/bc969d6cc96a2d0539576ec639f7a2a7dcf757f8|commit]], [[https://git.kernel.org/linus/96303bcb401c21dc1426d8d9bb1fc74aae5c02a9|commit]], [[https://git.kernel.org/linus/f4cc33e78ba8624a79ba8dea98ce5c85aa9ca33c|commit]], [[https://git.kernel.org/linus/f5102e31c209798cafd2d79463f5093771aadc12|commit]], [[https://git.kernel.org/linus/be5e8872b3fbc74b4a58a7e6a7e9fb7e8509eaf8|commit]], [[https://git.kernel.org/linus/61609bf2b29dcb07de3aaad7d6212cc3c341192b|commit]], [[https://git.kernel.org/linus/95113bb705157f3518cec4ff0225a922507a0f8b|commit]], [[https://git.kernel.org/linus/b88727d554f0fb826e0608192f59542497ba19c5|commit]], [[https://git.kernel.org/linus/270fc77e7b0e38964635c2c5d87ad354dbd2cd34|commit]] * KVM RISC-V report few more ISA extensions through ONE_REG [[https://git.kernel.org/linus/d8c0831348e78fdaf67aa95070bae2ef8e819b05|commit]], [[https://git.kernel.org/linus/77fc0bfa43f83c1080b35a4915c767cf2c4979ff|commit]], [[https://git.kernel.org/linus/d9bb4eca32f99c5fcde705d1bb4cb6b445dbd6e8|commit]], [[https://git.kernel.org/linus/f943ebe2ec26272d71f9c7643ec667c616419bb1|commit]], [[https://git.kernel.org/linus/d808f0b1be4888a87524164bc7dad2242734de38|commit]] * RISC-V crypto with reworked asm files [[https://git.kernel.org/linus/67daf84203a02cf004e7c3faed8b654817326e26|commit]], [[https://git.kernel.org/linus/600a3853dfa007935220b3489e2be5ab8950b4b4|commit]], [[https://git.kernel.org/linus/8c8e40470ffeb7a279254c78c7779d7294a76ef1|commit]], [[https://git.kernel.org/linus/34ca4ec628deb4f00da38c7d73486b8499e30dea|commit]], [[https://git.kernel.org/linus/178f3856436c748485cb7f8c134be2471f6d539f|commit]], [[https://git.kernel.org/linus/b8d06352bbf397608a262c9d5f2b03ce32a3544a|commit]], [[https://git.kernel.org/linus/df513ed49f0073ce1778eb469ab5db44bceade30|commit]], [[https://git.kernel.org/linus/b3415925a08b13e468e8f3805bce86015475dd99|commit]], [[https://git.kernel.org/linus/bb54668837a073f18e173dd7be63f9ef5ee9f7ac|commit]], [[https://git.kernel.org/linus/eb24af5d7a05bbcdebb0398f91af990719644093|commit]], [[https://git.kernel.org/linus/563a5255afa237c961c5c8c8c552425c519b88da|commit]] * S390 * implement "memmap on memory" feature on s390 [[https://git.kernel.org/linus/4a3e5de9c4ec41bb0684b0d4e0c16abc39617d88|commit]], [[https://git.kernel.org/linus/890a4212de718fcbb4ba4ee36569af31908d9dc5|commit]], [[https://git.kernel.org/linus/fb6d5eb9f4c9620acbd8a78dafff0164c1b8824e|commit]], [[https://git.kernel.org/linus/1a65b73ae9abd608575e9bfbaa003d829d39fab9|commit]], [[https://git.kernel.org/linus/c5f1e2d1890935a734c302b9b8579748222b8e1e|commit]], [[https://git.kernel.org/linus/9eda317c15ff13be621d219a5de365d1550f41f7|commit]] * Make kernel fpu context preemptible [[https://git.kernel.org/linus/4eed43de9ba0ae3af6716544408d185a152424cd|commit]] * Add relocs tool [[https://git.kernel.org/linus/55dc65b46023540d5136dcd1f3076661f850dd99|commit]] * pai: export number of sysfs attribute files [[https://git.kernel.org/linus/d414f4ecb240b994cba8c9666def0a4b9c953601|commit]] * compile relocatable kernel with/without fPIE [[https://git.kernel.org/linus/778666df60f0d96f215e33e27448de47a2207fb3|commit]], [[https://git.kernel.org/linus/766c580356ecca88b32c47b8128bec7d6d014533|commit]], [[https://git.kernel.org/linus/8192a1b3807510d0ed5be1f8988c08f8d41cced9|commit]] * ap: add debug possibility for AP messages [[https://git.kernel.org/linus/6a2892d09df545c6ea828bc8ad08112961b88f6d|commit]] * pkey: harmonize pkey s390 debug feature calls [[https://git.kernel.org/linus/0ccac45295403a7730d7bdd8b047a824b7a23a2e|commit]] * pkey: introduce dynamic debugging for pkey [[https://git.kernel.org/linus/6d749b4e02087fa4a68092eef260d31a345603c6|commit]] * zcrypt: add debug possibility for CCA and EP11 messages [[https://git.kernel.org/linus/b69b65f51148531ff3dd942a038614f77d9d60e3|commit]] * zcrypt: introduce dynamic debugging for AP and zcrypt code [[https://git.kernel.org/linus/08b2c3706de21d77cfe88017536f790a86bed397|commit]] * LoongArch * Add objtool, orc and livepatching support for LoongArch [[https://git.kernel.org/linus/e91c5e4c21b0339376ee124cda5c9b27d41f2cbc|commit]], [[https://git.kernel.org/linus/cb8a2ef0848ca80d67d6d56e2df757cfdf6b3355|commit]], [[https://git.kernel.org/linus/b2d23158e6c881326321c2351b92568be4e57030|commit]], [[https://git.kernel.org/linus/b8e85e6f3a09fc56b0ff574887798962ef8a8f80|commit]], [[https://git.kernel.org/linus/e52ec98c5ab18c0710ea22bf52f45e60a725adaf|commit]], [[https://git.kernel.org/linus/199cc14cb4f1cb8668be45f67af41755ed5f0175|commit]], [[https://git.kernel.org/linus/d5ab2bc36c6b0ce2f3409f934ff9cdf6d6768fa2|commit]], [[https://git.kernel.org/linus/3c7266cd7bc5e7843b631fea73cb0e82111e3158|commit]] * Select HAVE_ARCH_USERFAULTFD_MINOR in Kconfig [[https://git.kernel.org/linus/f48ad26e5e57016b447461f22ecf7c3ed8337353|commit]] = Drivers = == Graphics == * Intel * Update ADL-N PCI IDs [[https://git.kernel.org/linus/425b463859eda4f4c071e517267acdd1c0d731bd|commit]] * Early Transport for Panel Replay and PSR [[https://git.kernel.org/linus/467e4e061c44ff79cdd2c6b5cbc42842caf189f1|commit]], [[https://git.kernel.org/linus/f3c2031db7dfdf470a2d9bf3bd1efa6edfa72d8d|commit]], [[https://git.kernel.org/linus/1bff93b8bc27a18aa87752819bfda6f00bceb10e|commit]], [[https://git.kernel.org/linus/86b26b6aeac78c396fa022f49c58a4daffffc983|commit]], [[https://git.kernel.org/linus/9962c25ac41bf6e45bf3afeb56e10a03f0c663f7|commit]], [[https://git.kernel.org/linus/3291bbb93e160e8b9b74ed0116738570f8744fe5|commit]], [[https://git.kernel.org/linus/7f85883e4a7b95559fb61cd202196ac8c8f857d7|commit]] * Add Display Port tunnel BW allocation support [[https://git.kernel.org/linus/1e59ab501abac4fd664de143485be99b341bc78f|commit]], [[https://git.kernel.org/linus/295654f7e554a9f089bdab0b2bb9a9aad7c402c0|commit]], [[https://git.kernel.org/linus/1dd9d86ab60b9810cc99640fa7ebe42e1b9c8b4f|commit]], [[https://git.kernel.org/linus/d1e217d44b406e005a9dbca78c74a35b3da1a300|commit]], [[https://git.kernel.org/linus/204863d668ff06b8b33e626766e6e75e48ed9639|commit]], [[https://git.kernel.org/linus/e35cce9371fe1dd88a40cce676b12a98d36fcd77|commit]], [[https://git.kernel.org/linus/4ba732a64cdb66daf1eac0306a98c1bbfbe3aac1|commit]], [[https://git.kernel.org/linus/85e5be68217be3d131a8a6ea1aba7db942dd50ea|commit]], [[https://git.kernel.org/linus/363c31787344f240b7cef68ec2734665ec292f7e|commit]], [[https://git.kernel.org/linus/a4ea61b7482f56cc99391ccf65f13dec2ec51d1d|commit]], [[https://git.kernel.org/linus/199c7d75b2676b64b0b3cda075450d59debe612b|commit]], [[https://git.kernel.org/linus/91888b5b1ad2fda3f4c6b8de5dd42dbe8b90ac2c|commit]], [[https://git.kernel.org/linus/39818c06c829c7f8bcf21993d2e085c156c2f4f8|commit]], [[https://git.kernel.org/linus/259e2e0a043238111b85f4d45239c3538883e185|commit]], [[https://git.kernel.org/linus/a4efae87ecb21bfb7da96f15ee23815da802024a|commit]], [[https://git.kernel.org/linus/e7e5048f4ad5e7a81f7b788b2e73c76cebd5b55b|commit]], [[https://git.kernel.org/linus/6496dbecb9c242cb87c237dbf1a51a89588b20f7|commit]], [[https://git.kernel.org/linus/7605d0e8c178b2408a9191df8f95b52df08cb63a|commit]], [[https://git.kernel.org/linus/fb687904aae27c8bf5b5f653c0bf72171bd43b41|commit]], [[https://git.kernel.org/linus/a32f3a95413881b69c8dd319334927eb9519013c|commit]], [[https://git.kernel.org/linus/e60cff453b82789a652239c6200bd90d5178d2a0|commit]] * xe: Add uAPI to query GuC firmware submission version [[https://git.kernel.org/linus/9bc36e58d162466236a38489e4b41f38a8848c94|commit]] * panel: simple: Add BOE BP082WX1-100 8.2" panel [[https://git.kernel.org/linus/dc90214ff58be575fdceb549f901506cdef5d093|commit]] * v3d: Show the memory-management stats on debugfs [[https://git.kernel.org/linus/502756e23360d1192c496bc6791e97621e8578d8|commit]] * panel: Add support for Novatek NT36672E panel driver [[https://git.kernel.org/linus/ea4f9975625af861c2795c557b8fab2b492ff749|commit]] * panel: st7703: Add Panel Rotation Support [[https://git.kernel.org/linus/762195e5c26936b891fb54ba0183aa3ef366b41e|commit]] * drm/i915: Add GuC submission interface version query [[https://git.kernel.org/linus/b112364867499e1327801da200868a6c506465fa|commit]] * panel: Add driver for BOE TH101MB31IG002-28A panel [[https://git.kernel.org/linus/420186db1483da4e16cd5d5a472f511a35dbc1b7|commit]] * Add support for Novatek NT36672E LCD DSI panel [[https://git.kernel.org/linus/ea4f9975625af861c2795c557b8fab2b492ff749|commit]], [[https://git.kernel.org/linus/30cc664f0962ed1e62d9009a34bf04b48e1a5a4a|commit]] * Add display support for stm32f769-disco board [[https://git.kernel.org/linus/9b26d5c044d6a29ebfb1845408e0f2a7c5f89818|commit]], [[https://git.kernel.org/linus/a995fd2e8b3c6defd1dcdd3fb350c224e41ea1d0|commit]], [[https://git.kernel.org/linus/f1317928fa03203929665af61e6d9ac0e29ea84d|commit]], [[https://git.kernel.org/linus/219a1f49094f50bf9c382830d06149e677f76bed|commit]], [[https://git.kernel.org/linus/55e963738a353300ee1714056c6889dfee7d5a5c|commit]], [[https://git.kernel.org/linus/9676bee4afb188230d591b9cd015c3ab442f578f|commit]], [[https://git.kernel.org/linus/598e5adfeb6062f5d4d352c0ef888b2b29d7e215|commit]] * rockchip: Add HDMI support for RK3128 [[https://git.kernel.org/linus/50a3c772bd927dd409c484832ddd9f6bf00b7389|commit]], [[https://git.kernel.org/linus/073aa696f8cbc170a2c3502c2165aeb835be0156|commit]], [[https://git.kernel.org/linus/4278ff62b73936a9138b60cc0610381003132b77|commit]], [[https://git.kernel.org/linus/62ff41017e147472b07de6125c3be82ce02a8dd7|commit]], [[https://git.kernel.org/linus/ceeb0f0104a62c867656c2730a51df47e7350b8f|commit]], [[https://git.kernel.org/linus/ae3436a5e7c2ef4f92938133bd99f92fc47ea34e|commit]], [[https://git.kernel.org/linus/3fd6e33f8fde16869d4cd9cef71ca964b2b0789b|commit]], [[https://git.kernel.org/linus/c1ceee3248742149d1a602fd913bd88857da1d52|commit]], [[https://git.kernel.org/linus/4ec295efef1ac4969a9667b40e1e91fa45d90c4a|commit]], [[https://git.kernel.org/linus/d7ba3d711cf537ef0ece14cd85d2113ca338a00b|commit]], [[https://git.kernel.org/linus/aa4f96e2de82f5e0dfc0102d08f66918c5e3637f|commit]], [[https://git.kernel.org/linus/71892cee6ceb3e1b88e0bb44b05c8397d8261a85|commit]], [[https://git.kernel.org/linus/5f92474844a4fcb7997da20dd1de2031aed1d794|commit]], [[https://git.kernel.org/linus/cc9ec38cb2cd32518fe02615d004e96ce2fd0348|commit]], [[https://git.kernel.org/linus/5f2e93e6719701a91307090f8f7696fd6b3bffdf|commit]], [[https://git.kernel.org/linus/47a145c03484d33e65d773169d5ca1b9fe2a492e|commit]], [[https://git.kernel.org/linus/8f0df2012b8a94aed0cc450016f7592c24e92cfb|commit]], [[https://git.kernel.org/linus/1044f4a31734eef000f42cdaaf35bb2f76286be5|commit]], [[https://git.kernel.org/linus/f01e33cb586b5fd354cba73052f82c3b4246109d|commit]], [[https://git.kernel.org/linus/164abbd2b7ef62aae6fc80450a2d085acdc3da3e|commit]], [[https://git.kernel.org/linus/d3e040f450ec8e46ff42fa495a433b976ab47686|commit]], [[https://git.kernel.org/linus/407eaa4aa64a8429094fa75fac00fff5e471138d|commit]], [[https://git.kernel.org/linus/139771b8239c43ad1bd6c2976aa12788096a5483|commit]], [[https://git.kernel.org/linus/5aab66e319df2a6fc4ab06bcb4bd974c1ac4927e|commit]], [[https://git.kernel.org/linus/153fe8dbd866869846af3a359ecf82d5ad9fe247|commit]], [[https://git.kernel.org/linus/695b9b57443d88a1c8e0567c88a79d1a4532c75e|commit]], [[https://git.kernel.org/linus/701029621d4141d0c9f8b81a88a37b95ec84ce65|commit]], [[https://git.kernel.org/linus/8ff7bc4808f25e4dd75c3775dba313ddf35277e1|commit]], [[https://git.kernel.org/linus/f8723484e045ff2d176124484907ec0199c55a0c|commit]] * panel: add one more Leadtek panel, the ltk101b4029w [[https://git.kernel.org/linus/239cce651ea617002ff26f068f2568b2baf6421a|commit]], [[https://git.kernel.org/linus/c71efc6337135670164334404ef11506b31b7a81|commit]], [[https://git.kernel.org/linus/f9488c160d6e8e5e548452a0d36057a1f8c04045|commit]] * solomon: Add support for the SSD133x controller family [[https://git.kernel.org/linus/b4299c936d8fd62b75621cad8dbf8aa9178e7c0e|commit]], [[https://git.kernel.org/linus/e06b7373cfb96b73d05712fbd15b6d6a78ce9b9d|commit]], [[https://git.kernel.org/linus/a72aa8985c41ec241263b802857d84f4c90a8694|commit]] * Support panels used by MT8173 Chromebooks in edp-panel [[https://git.kernel.org/linus/7c8690d8fc80e6149d9a8c85d22ba03f4d8dcc69|commit]], [[https://git.kernel.org/linus/f4ccd9fea227070497df29d68dcbcb55bdb3a9e3|commit]], [[https://git.kernel.org/linus/4464af92f276537716db87aa21828190b5e12463|commit]] * Add a few generic edp panels and use correct modes [[https://git.kernel.org/linus/fb3f43d50d9b22946702085d1fa2139c8741283d|commit]], [[https://git.kernel.org/linus/9f7843b515811aea6c56527eb195b622e9c01f12|commit]], [[https://git.kernel.org/linus/4d53cf81479500d7af787fe6bc881c24ec31f005|commit]], [[https://git.kernel.org/linus/962845c090c4f85fa4f6872a5b6c89ee61f53cc0|commit]], [[https://git.kernel.org/linus/fc6e7679296530106ee0954e8ddef1aa58b2e0b5|commit]] * msm: Add support for CDM over DP [[https://git.kernel.org/linus/55fb8ffc18024138f956f8579fb800961a015385|commit]], [[https://git.kernel.org/linus/21497a463347189b9a144cd513eee9d0ce4de7b6|commit]], [[https://git.kernel.org/linus/57d6ca4c191777d5bb183762f7023ebdc63f45ce|commit]], [[https://git.kernel.org/linus/ee2fcc0f514b14e31c5d7d5991fb3ea9395be472|commit]], [[https://git.kernel.org/linus/3ed77f333bb0d9c21bf02014542928609aedc593|commit]], [[https://git.kernel.org/linus/5b30d1cbd4fba2b3188e9a293df99a7ddf5d2100|commit]], [[https://git.kernel.org/linus/551ee0f210991d25f336bc27262353bfe99d3eed|commit]], [[https://git.kernel.org/linus/6db6e5606576c96bbb8fb1bb40aa46118af8f724|commit]], [[https://git.kernel.org/linus/b40c8377d792cfae38e7b82dca03aae147de6585|commit]], [[https://git.kernel.org/linus/09b27a482a18e836ab0a275c850aba8f537a30c2|commit]], [[https://git.kernel.org/linus/64f7b81f035801cd948a00c4988165b768b8087d|commit]], [[https://git.kernel.org/linus/d6e547c091d8825c3e1506443f55a32667825e43|commit]], [[https://git.kernel.org/linus/683d374582e3e8afc1b8547789e0b8e0b5b3f6fe|commit]], [[https://git.kernel.org/linus/32b6ff95b91240e632f55be35c6ccd4bbe7434e4|commit]], [[https://git.kernel.org/linus/ab2f8603e22ee6479d2d167c1bae90f20b23cbb5|commit]], [[https://git.kernel.org/linus/0ab07bb96826f4006a90840fbda51df501a905e3|commit]], [[https://git.kernel.org/linus/7cde7ce5be3e0344d70a5ef8d27190b0a24aa6a0|commit]], [[https://git.kernel.org/linus/984809d85007694dc119844a3ab8f2dd258822e8|commit]], [[https://git.kernel.org/linus/1cfc64a6ea55d2d2b2e3c2e1f742c8ad967eeea8|commit]] * msm/adreno: Add support for SM7150 [[https://git.kernel.org/linus/0958eccbeb818f56b314c34881315bd6e81d90e2|commit]], [[https://git.kernel.org/linus/a7165277ff68609a6c4a8b320f801e7af8368fe9|commit]] * msm/adreno: Add A702 support [[https://git.kernel.org/linus/4fcac83b4f2b98f7e9b71d91e44680528b3c2cd4|commit]], [[https://git.kernel.org/linus/813b04f758c35b466da09441dafcded9c93c347e|commit]], [[https://git.kernel.org/linus/18397519cb62248865ca33266a483dbcf7d08b5f|commit]] * msm: Add support for the A750 GPU found on the SM8650 platform [[https://git.kernel.org/linus/4fcac83b4f2b98f7e9b71d91e44680528b3c2cd4|commit]], [[https://git.kernel.org/linus/070c0ee1ef9f5550cac9247190f0289349f28c01|commit]], [[https://git.kernel.org/linus/dc94d0cc718329a39ea2e986a123421a9203b471|commit]], [[https://git.kernel.org/linus/8a05f74d567a556bde2c890e09914d7c56fe1ac3|commit]], [[https://git.kernel.org/linus/de13192662b746db33aea5c5c981085971c4a0bb|commit]], [[https://git.kernel.org/linus/d2bcca0ccccfa5efe0e61bebaf3a367f3af79201|commit]] * msm: Add display support for !X1E80100 [[https://git.kernel.org/linus/cf4d77b126b68a95f3139b7f458619a9e3124406|commit]], [[https://git.kernel.org/linus/81de267367d4deb2a5ecda3eecd12f8d12ff0b02|commit]], [[https://git.kernel.org/linus/c22d32f2413179be4d33a7c1d58e2db96b02b569|commit]] * Add GPU support for MSM8226 (Adreno A305B) [[https://git.kernel.org/linus/3d6ab124a4d5dece5778ac6b7ebea6b6754e7e28|commit]], [[https://git.kernel.org/linus/0be7a75b66dfddd2e8d8bb528cb8d37f627c5bfc|commit]] * imx8mp: Add support for HDMI [[https://git.kernel.org/linus/dc23fba7063867ed745cb6f0bd27a0dc5f558dbc|commit]], [[https://git.kernel.org/linus/cc1de24853245e79ed06a9975cebea197c622166|commit]], [[https://git.kernel.org/linus/f490d0cb9360466f6df0def3eccc47fabba9775b|commit]], [[https://git.kernel.org/linus/28aff8c2050112f45a26baa2569366ac797b698a|commit]], [[https://git.kernel.org/linus/bcf1b3eec61f2e35f4a0516a882b452ab9fc49b3|commit]], [[https://git.kernel.org/linus/fc67d663aabdfddbba8e16a40c3f6a973face509|commit]], [[https://git.kernel.org/linus/1f36d634670d8001a45fe2f2dcae546819f9c7d8|commit]], [[https://git.kernel.org/linus/059c53e877ca6e723e10490c27c1487a63e66efe|commit]], [[https://git.kernel.org/linus/f6772c5882d2229b4e0d9aadbcac3eb922e822c0|commit]], [[https://git.kernel.org/linus/697624ee8ad557ab5417f985d2c804241a7ad30d|commit]], [[https://git.kernel.org/linus/8933d29e7703f6f905bc84186b915b0ab4fe03bb|commit]] * Add display driver for MT8188 VDOSYS1 [[https://git.kernel.org/linus/7bacaee4f5d0fdf00b1734c1be67cc415b3822c0|commit]], [[https://git.kernel.org/linus/c90ca391c1e4b7fca1648e5015a57e39080e7ab3|commit]], [[https://git.kernel.org/linus/1168bb692bb9c45a31deda73cc3c87d368c7f490|commit]], [[https://git.kernel.org/linus/15ef04e2b683153670791ce961871865a6a6ee13|commit]], [[https://git.kernel.org/linus/21b287146adf39304193e4c49198021e06a28ded|commit]], [[https://git.kernel.org/linus/c0349314d5a0ddabdde136c1ac72e0254beb36bb|commit]], [[https://git.kernel.org/linus/8ac6935e5689a491f0bec78fec732722b3dad094|commit]], [[https://git.kernel.org/linus/3526cfaed24269918135d09626afc5a155e4811a|commit]], [[https://git.kernel.org/linus/a7430e2bf950394cc44b523184338b092dc6aef6|commit]], [[https://git.kernel.org/linus/9c5a05fc8fca2d3be919f92816fc8d11ebdfd7be|commit]], [[https://git.kernel.org/linus/8daf02f03ca4cf70b1f985293b8515252f9767aa|commit]], [[https://git.kernel.org/linus/b97fa2f3e19b9bbac934a2cfa9218aa67f12240e|commit]], [[https://git.kernel.org/linus/b82a2a4b85628a287ae4e9da6f8c258b955f0c45|commit]], [[https://git.kernel.org/linus/27222a779d0404d6faab8aeaf028db4ac4de9b1f|commit]], [[https://git.kernel.org/linus/2ffdd4773d98b1f7488f8e37bd881bbecec24d85|commit]], [[https://git.kernel.org/linus/2e1421d6ce321118dfff370e473ba8d290b2ecbd|commit]], [[https://git.kernel.org/linus/11b918d90aebf87b7d317ec95c17b46716f43d57|commit]], [[https://git.kernel.org/linus/73b5ab27ab2ee616f2709dc212c2b0007894a12e|commit]], [[https://git.kernel.org/linus/ba527e9a11b33cc7315171807add5b2f594b23ac|commit]], [[https://git.kernel.org/linus/67637de7bbdea8356ecfd37b545c906961e1137f|commit]] * Add support for ETML1010G3DRA LVDS display on phyBOARD-Pollux [[https://git.kernel.org/linus/f1a9ff95971a879572f56bbc8b1e1ca0b1a812b8|commit]], [[https://git.kernel.org/linus/326d86e197fc10248c1f60f39bead8002208113e|commit]], [[https://git.kernel.org/linus/aeb262c353354eab81ab0d3242afa70984b7dc34|commit]], [[https://git.kernel.org/linus/7a61bbc10a7b2734fbffa4438340b6878cce2e5c|commit]] * amdgpu * Remove freesync video [[https://git.kernel.org/linus/959143dab12fbc84352f8a12bc3cd79cc229178b|commit]] * JPEG 5.0 Support [[https://git.kernel.org/linus/cff9960317fc41a555b463a7f5c66c488f0b749b|commit]], [[https://git.kernel.org/linus/2cc301d20f80ecf532754aad39e150f488acdcb7|commit]], [[https://git.kernel.org/linus/605ebd35f059eb7dc087c4b5def1a8ce80acec55|commit]], [[https://git.kernel.org/linus/dfad65c65728401587142577dd283476491bac83|commit]] * PSP 14.0 support [[https://git.kernel.org/linus/2fb4460fb84d507c55d3e346dfe95230e6d17c5b|commit]], [[https://git.kernel.org/linus/e71658299d458c1384bbc09662830204559cfa47|commit]], [[https://git.kernel.org/linus/876fa5f8a066591335d28348563e52302a82c141|commit]], [[https://git.kernel.org/linus/f19cb916151d929db70e2ddc5929d713c1aff97e|commit]], [[https://git.kernel.org/linus/815282549896b8c87049969559d9ba843a9d318b|commit]], [[https://git.kernel.org/linus/8d339b0df22956ce7e3ed8b1aa08ac8fe7f7952d|commit]], [[https://git.kernel.org/linus/a78791c2b29ed2ea0f064ba84ce3c25bdd04c80c|commit]], [[https://git.kernel.org/linus/efc11f34e25f11ced38718ebc664accb8b22dab8|commit]] * Add aca sysfs remove support [[https://git.kernel.org/linus/6eb726a082e5e75fbeeb4137986f74d289d74091|commit]] * DC Patches January 18, 2024 [[https://git.kernel.org/linus/2a8e918f48bd089d06084ec4561da7e2fe5d434b|commit]], [[https://git.kernel.org/linus/8457bddc266c754af18f074373edf1ab764ea066|commit]], [[https://git.kernel.org/linus/9feaa4c0de831748046c4e85ea2d6cd50d132e05|commit]], [[https://git.kernel.org/linus/a125206c20049e5e70431323788065bbc3c4130e|commit]], [[https://git.kernel.org/linus/a499b68cce3c535531432c805682f4350a90f150|commit]], [[https://git.kernel.org/linus/855f42ba925453af803e2b7ebd156f0ff0e9efe0|commit]], [[https://git.kernel.org/linus/f980579c29a6df2d30b44af958992be07baa0fcc|commit]], [[https://git.kernel.org/linus/c597479f27b6b96c61c70cb25b5e1a4f9ea4c7f7|commit]], [[https://git.kernel.org/linus/624e0d7f39cb5849016c2093e4ea620842e0cf8a|commit]], [[https://git.kernel.org/linus/60818ed76577c9565cf761b03bc7d1460448b986|commit]], [[https://git.kernel.org/linus/b8f2234846d7ebd1347013425ffdead4d123147f|commit]], [[https://git.kernel.org/linus/4516a7930203dc0cdbb59db114000f8b02a2f119|commit]] * DC Patches Jan 29 2024 [[https://git.kernel.org/linus/e8d131285c98927554cd007f47cedc4694bfedde|commit]], [[https://git.kernel.org/linus/c50c9c872e76d6b171b5fb77341f337c78349bca|commit]], [[https://git.kernel.org/linus/2ba36e18566b2c5b77bbdf06bd7e77f994fa0ff5|commit]], [[https://git.kernel.org/linus/4ba9ca63e696f7bdc91293aeb70c22203b7089be|commit]], [[https://git.kernel.org/linus/6e4337f695c25162f0296934152506ad596fcebf|commit]], [[https://git.kernel.org/linus/6b2b782ad6a25734ae847d1659bea3f613dbb563|commit]], [[https://git.kernel.org/linus/e8911e0a53de64ee954ef536bc7706dac930dbeb|commit]], [[https://git.kernel.org/linus/b26b943a8dcf627a80aac6aad64a30490774691c|commit]], [[https://git.kernel.org/linus/6bd0960644ed424683995cb6b9bece03e8ccfcee|commit]], [[https://git.kernel.org/linus/7fc0d111baad0a65f8341b904937ad2b10cc4f1e|commit]], [[https://git.kernel.org/linus/5024ae7fa88c1236b12607a84116af37245c0e59|commit]], [[https://git.kernel.org/linus/f2a905b01c6dcca8ce298316eac4e42f766ce766|commit]], [[https://git.kernel.org/linus/607e1b0cf480cb8dbd65b372397871d7389942b5|commit]], [[https://git.kernel.org/linus/05d3dfd3edba097596d8fef5c69efe0df61ce59e|commit]], [[https://git.kernel.org/linus/f341055b10bd8be55c3c995dff5f770b236b8ca9|commit]], [[https://git.kernel.org/linus/9af68235ad3dfde220cc93058362c7d699b00f59|commit]], [[https://git.kernel.org/linus/13b3d6bdbeb4efc1c3b7822bae684aca49ed2308|commit]], [[https://git.kernel.org/linus/d46fb0068c54d3dc95ae8298299c4d9edb0fb7c1|commit]], [[https://git.kernel.org/linus/2812b5add41ea1b608923d5fb6a0d4f5b0d3186c|commit]], [[https://git.kernel.org/linus/2bf85adfb3044a92aa7b9a2d9e92073cd957bd8c|commit]], [[https://git.kernel.org/linus/ed2466da2c1cc493bc40b60390cc5366d4db22c9|commit]], [[https://git.kernel.org/linus/5549c37e3cf2db848d898829c9833d16e2bcdd1b|commit]] * Add panel_power_savings sysfs entry to eDP connectors [[https://git.kernel.org/linus/63d0b87213a0ba241b3fcfba3fe7b0aed0cd1cc5|commit]] * DC Patches January 31, 2024 [[https://git.kernel.org/linus/461bf81a10163601ae271aecc680aa2c6a9f6bcb|commit]], [[https://git.kernel.org/linus/0701117efd1ed97c8547228ff597ed25d34296c5|commit]], [[https://git.kernel.org/linus/8f5951172b6dbda75a9cdf5990650e1cf8b1dd22|commit]], [[https://git.kernel.org/linus/c84dff70e16de0c66d8463629f4941a08ce4875d|commit]], [[https://git.kernel.org/linus/c2359c6d7f4d495e2e17098d809d5c57f0963ada|commit]], [[https://git.kernel.org/linus/7f6f92b1036f44a961b78240f5a4c3b630e589fc|commit]], [[https://git.kernel.org/linus/3fa6352415e15186198edf7f6e8d23c7f6b9d96d|commit]], [[https://git.kernel.org/linus/c7b33856139ddfb368f52a4ebf6cbe4662f3f9ee|commit]], [[https://git.kernel.org/linus/70efd0422021dad3c56a6d7dd141c2c8e360f10e|commit]], [[https://git.kernel.org/linus/d5aaa9dbb28f1aaf1b0ef9d3cc54037c646c425a|commit]], [[https://git.kernel.org/linus/6a068e64fb25dbc81256fc03db0d4579d222bccd|commit]], [[https://git.kernel.org/linus/1b5b72b4d67c1e72c4fc19151fd669acecc92faa|commit]], [[https://git.kernel.org/linus/84d2ae7ca0e5df1b698fd036c41b6b85deac92e8|commit]], [[https://git.kernel.org/linus/0a5fd7811a17af708cefdaab93af86838353002d|commit]], [[https://git.kernel.org/linus/288c0254a0b0c9980dba9df7d5afadf27280b99c|commit]], [[https://git.kernel.org/linus/2e7ef37c7ca8c50b6d47b7572644d1a0bcda46a7|commit]], [[https://git.kernel.org/linus/6226a5aa77370329e01ee8abe50a95e60618ce97|commit]], [[https://git.kernel.org/linus/a9b1a4f684b32bcd33431b67acd6f4c275728380|commit]], [[https://git.kernel.org/linus/db8391479f44769bb570f605702ac24ec6c62b85|commit]], [[https://git.kernel.org/linus/dddb3e5a6df57201c935ce67cf44f87aa3f61da8|commit]], [[https://git.kernel.org/linus/ead4c6b94d9b9d9801fd73220cbb032cb7908ac9|commit]] * Add ATHUB 4.1 support [[https://git.kernel.org/linus/53edf77179f30e06130cea35e903b0b1a6af7b3a|commit]] * HDP 7.0 Support [[https://git.kernel.org/linus/f3bcdf2d90c1bd6d946e44e771aa896fb8d27ef8|commit]] * JPEG 5.0 Support [[https://git.kernel.org/linus/cff9960317fc41a555b463a7f5c66c488f0b749b|commit]], [[https://git.kernel.org/linus/2cc301d20f80ecf532754aad39e150f488acdcb7|commit]], [[https://git.kernel.org/linus/605ebd35f059eb7dc087c4b5def1a8ce80acec55|commit]], [[https://git.kernel.org/linus/dfad65c65728401587142577dd283476491bac83|commit]] * Add Support for RK3566 Powkiddy RGB10MAX3 [[https://git.kernel.org/linus/039a03c377d64ec832a8fb1b8f8b5badd404989f|commit]], [[https://git.kernel.org/linus/a695a5009c8fd239a98d98209489997ff5397d2b|commit]], [[https://git.kernel.org/linus/e0c732291250e205fb834881ad7ecf9ee3ffef45|commit]], [[https://git.kernel.org/linus/9913a60f318b6c88ea8385048952e3557464bb84|commit]] * PSP 14.0 support [[https://git.kernel.org/linus/2fb4460fb84d507c55d3e346dfe95230e6d17c5b|commit]], [[https://git.kernel.org/linus/e71658299d458c1384bbc09662830204559cfa47|commit]], [[https://git.kernel.org/linus/876fa5f8a066591335d28348563e52302a82c141|commit]], [[https://git.kernel.org/linus/f19cb916151d929db70e2ddc5929d713c1aff97e|commit]], [[https://git.kernel.org/linus/815282549896b8c87049969559d9ba843a9d318b|commit]], [[https://git.kernel.org/linus/8d339b0df22956ce7e3ed8b1aa08ac8fe7f7952d|commit]], [[https://git.kernel.org/linus/a78791c2b29ed2ea0f064ba84ce3c25bdd04c80c|commit]], [[https://git.kernel.org/linus/efc11f34e25f11ced38718ebc664accb8b22dab8|commit]] * Implement new ras ACA driver [[https://git.kernel.org/linus/04c4fcd2630d400959f791a598070dab9d2133cd|commit]], [[https://git.kernel.org/linus/f38765de8385c326c7e53236fa70c20b013613f7|commit]], [[https://git.kernel.org/linus/0599849c3276f3a24abc34d80ec4d1ca564d9971|commit]], [[https://git.kernel.org/linus/bbcbfd4363e9447088e98932c41f417f3bb08050|commit]], [[https://git.kernel.org/linus/1714a1ffafcb692b66fec2535b8ade0c1eed271e|commit]], [[https://git.kernel.org/linus/33dcda51e9bd1b904d034fee3332ded8ad254125|commit]], [[https://git.kernel.org/linus/f45e6f2b5c79562019c304f4c0c7ee08a9da7160|commit]], [[https://git.kernel.org/linus/f5e4cc8461c408dcb679bb1f7c3bd8a586406709|commit]], [[https://git.kernel.org/linus/0f3cd24e96b872c6fe240f155bc11ea34dfe85bf|commit]], [[https://git.kernel.org/linus/37973b69eab43d46dd316372b5739cc4c52a42fd|commit]], [[https://git.kernel.org/linus/0c54e457ac5847b755a05d7570675e5c9abf28f4|commit]], [[https://git.kernel.org/linus/373e970a4a2a6b8a6176bf22b7b588558f2c1d9b|commit]] * Add display support for Fairphone 4 [[https://git.kernel.org/linus/891af1aa1ea42514b9a7f42caaa1fa0c32f8e232|commit]], [[https://git.kernel.org/linus/2abe4a310cc742332038aed5f9f4a15e65a0bcc1|commit]], [[https://git.kernel.org/linus/654f26a0f43cfd35a5ebd19e008b6f065f2a1f92|commit]], [[https://git.kernel.org/linus/3b59787a5170e12beb636cf1a66e481526f293cc|commit]] * drm/msm: provide migration path from MDP5 to DPU driver [[https://git.kernel.org/linus/7204df5e7e681238d457da03502f4b653403d7e7|commit]], [[https://git.kernel.org/linus/b8b123187035bebdfc4dd6932bdd3fc98ff8fdde|commit]], [[https://git.kernel.org/linus/39b06ed6d4f325072f479bf5358cfe2013569e27|commit]], [[https://git.kernel.org/linus/d2570ee67a4719802f7ce4ad79260a97f07c6bd9|commit]] * Add RZ/{G2L,G2LC} and RZ/V2L Display Unit support [[https://git.kernel.org/linus/583f2bdc8a44695f423c98d0ba565abf4c67e9c6|commit]], [[https://git.kernel.org/linus/bf7e1dc79a59d670ce4819d24c769823563bbea2|commit]], [[https://git.kernel.org/linus/768e9e61b3b99191d8fe1aead6e71f551738b5c4|commit]], [[https://git.kernel.org/linus/ac23216bb1f5caa5ae6f3ac70aa7f78a5b50f88d|commit]], [[https://git.kernel.org/linus/c1bb7f9f1e151bb50888666108e66ad2848e030d|commit]] * Kinetic !ExpressWire library and KTD2801 backlight driver [[https://git.kernel.org/linus/a5554f1b5bc3be5d01f41b7550aa5b05b7c88c09|commit]], [[https://git.kernel.org/linus/922235a9b89417e4c355ca813a1049c755b89570|commit]], [[https://git.kernel.org/linus/b5a8c50e5c1896b913c289e09f98b539fd1740ac|commit]], [[https://git.kernel.org/linus/1368d06dd2c99186174290c03d79c132db16efe2|commit]] == Power Management == * Introduce runtime modifiable Energy Model: Add a new feature which allows to modify Energy Model (EM) power values at runtime. It will allow to better reflect power model of a recent !SoCs and silicon. Different characteristics of the power usage can be leveraged and thus better decisions made during task placement in EAS. It's part of feature set know as Dynamic Energy Model. It has been presented and [[https://www.youtube.com/watch?v=2C-5uikSbtM&list=PL0fKordpLTjKsBOUcZqnzlHShri4YBL1H|discussed recently at OSPM2023]]. This patch set implements the 1st improvement for the EM [[https://git.kernel.org/linus/5a367f7b7014af86bd1ac0865a42db55187dbd3c|commit]], [[https://git.kernel.org/linus/1b600da510735a0f92c8b4140a7e2cb037a6a6c3|commit]], [[https://git.kernel.org/linus/818867224d41725dcf4abe890d8f24e5d6bd9c67|commit]], [[https://git.kernel.org/linus/8552d6820168d6508bd1f7cd49be248dcb74efb3|commit]], [[https://git.kernel.org/linus/24e9fb635df2790eccb0e95ff65c6dee7a97fcb7|commit]], [[https://git.kernel.org/linus/09417e673cbd578a1eaf8aba34a668119622d79c|commit]], [[https://git.kernel.org/linus/e7b1cc9a7ea6d7862baac0fd7b145573618727dd|commit]], [[https://git.kernel.org/linus/977230d5d50314f9920d3ee6348773d8babbfb58|commit]], [[https://git.kernel.org/linus/e20b7a8172b5f6fea82d063c8f1f4df881701759|commit]], [[https://git.kernel.org/linus/ee1a19873ce1234a3c2e6f84af3624fc73bfbd9c|commit]], [[https://git.kernel.org/linus/e3f1164fc9ee8430b3a51e400abfa1b67664f538|commit]], [[https://git.kernel.org/linus/99907d6054f2d39a625004f9f4e3fe9297838a3c|commit]], [[https://git.kernel.org/linus/ffcf9bce7af02a21fb73738999de1e3d4fde5aca|commit]], [[https://git.kernel.org/linus/4274521fabee05375d10bea0e36a806ed4ab7b45|commit]], [[https://git.kernel.org/linus/ca0fc871f16f4bef746b5ba814b67afb59119700|commit]], [[https://git.kernel.org/linus/faf7075b79a259136e2b57ce52b48a7096270e8b|commit]], [[https://git.kernel.org/linus/a3c78778f50c4db6cc0bb6aa2986c0174b1267d0|commit]], [[https://git.kernel.org/linus/22ea02848c07d1cbd15a5f442138ca429866300d|commit]], [[https://git.kernel.org/linus/eb1ad4d431674368bab4ef4e312f2e8c158294f9|commit]], [[https://git.kernel.org/linus/aa11a7ebfd5d698f541641922beede1cb474bf70|commit]] * ACPI: Drop the custom_method debugfs interface [[https://git.kernel.org/linus/0cc46f1a52b4220ec11d98a01575909ca820a7b4|commit]] * efi/libstub: Fall back to CC proto for measurement [[https://git.kernel.org/linus/d228814b1913444dfdd9a25519ed7b38a19653e2|commit]], [[https://git.kernel.org/linus/ac93cbfc2a2c8e9641a4b49cd1e7b9d34f935e1a|commit]], [[https://git.kernel.org/linus/0bbe5b0ea97aaaea6387bab89919a8654b07df27|commit]], [[https://git.kernel.org/linus/7a1381e8313f1f01cbecbe3fc2ddaa24fe37033a|commit]] * hibernate: LZ4 compression support [[https://git.kernel.org/linus/9c06a46f1524a05b2dccf5c74d7555b2cfcbe5db|commit]], [[https://git.kernel.org/linus/3fec6e5961b77af6a952b77f5c2ea26f7513b216|commit]], [[https://git.kernel.org/linus/8bc29736357e7f9a6bd0d16b57b5612197e1924b|commit]], [[https://git.kernel.org/linus/a06c6f5d3cc90b3b070d7b99979d57238db77a86|commit]], [[https://git.kernel.org/linus/89a807625f9701154167bf6bf136adfa1be4d849|commit]] * RISC-V: ACPI: Add LPI support [[https://git.kernel.org/linus/85ab6fdf3791c68aa7b8eb484f68855b8a6b9884|commit]], [[https://git.kernel.org/linus/359df7c5be4ba5c57f641010be7237ad9f09ea53|commit]], [[https://git.kernel.org/linus/4877fc92142f635be418d8c915eb48ef87681108|commit]], [[https://git.kernel.org/linus/6649182a383c9872e9543e2e7d4981d971bf0998|commit]] * RISC-V: ACPI: Enable CPPC based cpufreq support [[https://git.kernel.org/linus/028d1aee1f0768f96a40871e2e33727a10ff146f|commit]], [[https://git.kernel.org/linus/282b9df4e9603bbb5c9cbf3ea60bc393287e8a2f|commit]], [[https://git.kernel.org/linus/7ee1378736f09fceef95d2c9122d2cff14a375da|commit]], [[https://git.kernel.org/linus/30f3ffbee86b576705aabdd9093165a49cd66011|commit]] * ACPI: cpufreq: Add highest perf change notification [[https://git.kernel.org/linus/9c4a13a08a9b7afa4bc33f57675358f0195e302c|commit]] * turbostat msr, perf controls and aperf/mperf via perf [[https://git.kernel.org/linus/5088741ec805cd249e27c7176ed09bdab164960e|commit]], [[https://git.kernel.org/linus/4a1bb4dad5d16669e841410944e7bc84ef7263fc|commit]], [[https://git.kernel.org/linus/05a2f07db8883b027c0b4a475fcc586278922b8d|commit]], [[https://git.kernel.org/linus/bb5db22c13125b38b0740e19c18ae94f8e5a0eb6|commit]], [[https://git.kernel.org/linus/fb5ceca046efc84f69fcf9779a013f8a0e63bbff|commit]], [[https://git.kernel.org/linus/538d505fde20393bce1e6fb95cec82b56cdd22ef|commit]], [[https://git.kernel.org/linus/de39d38c06eb047954c5ad20a3f9acb6d3c78498|commit]], [[https://git.kernel.org/linus/4e2bbbf78cf7144204214fd0bd7cca309acd8f89|commit]], [[https://git.kernel.org/linus/3ac1d14d0583a2de75d49a5234d767e2590384dd|commit]], [[https://git.kernel.org/linus/a0e86c90b83c118985260e36490583b5a38d4359|commit]], [[https://git.kernel.org/linus/ebf8449caba1df2eb6ba0b465fe15dc06d3b9135|commit]], [[https://git.kernel.org/linus/e48934c9f1048ed4640b60321baf1986d1a470e1|commit]], [[https://git.kernel.org/linus/aed48c48fa65abdd584e14f7d0273711bc10d223|commit]], [[https://git.kernel.org/linus/3e4048466c396cff52c6d435156dbcd0571e4381|commit]], [[https://git.kernel.org/linus/e5f4e68eed85fa8495d78cd966eecc2b27bb9e53|commit]], [[https://git.kernel.org/linus/b6fe938317eed58e8c687bd5965a956e15fb5828|commit]], [[https://git.kernel.org/linus/bb6181fa6bc942aac3f7f2fa8e3831952a2ef118|commit]], [[https://git.kernel.org/linus/227ed18f456a68bbb69807294a9089208663a6d3|commit]], [[https://git.kernel.org/linus/d89dffa976bcd13fd87eb76e02e3b71c3a7868e3|commit]], [[https://git.kernel.org/linus/2d2ccd57338779469777d4319152151272994182|commit]] * thermal/drivers/sun8i: Extend H6 calibration to support 4 sensors [[https://git.kernel.org/linus/63e39fcaa6db821b05103b55483a44d0c5b43abb|commit]] * thermal/drivers/sun8i: Add support for H616 THS controller [[https://git.kernel.org/linus/83620b3b04c663663c5f75d44db7a16077e4f02b|commit]] * thermal/drivers/rcar_gen3: Add support for R-Car V4M [[https://git.kernel.org/linus/f077cab34df3010df6f4996e648dba5f43fd6b85|commit]], [[https://git.kernel.org/linus/ff3d9bfa25fabc4bf014d4e350ded1dc12b0a44a|commit]] * Writable trip points handling rework [[https://git.kernel.org/linus/cca52f696952962f020c7e1393740d0ba07c3dc2|commit]], [[https://git.kernel.org/linus/46f5bef8ec2e1e05ad2fda0bcf5ac32e191ec694|commit]], [[https://git.kernel.org/linus/5340f7647294fa8ff8cf5a1bee326b2bd8340e27|commit]], [[https://git.kernel.org/linus/a85739c8c6894c3b9ff860e79e91db44cb59bd63|commit]], [[https://git.kernel.org/linus/4a62d588a84e13c68017bd16bc9c2531a2cde08f|commit]] * thermal: int340x: processor_thermal: Add Lunar Lake-M PCI ID [[https://git.kernel.org/linus/f1f0c445226c8f03ad329cc2d8072556198fb24a|commit]] == Storage == * Pass data lifetime information to SCSI disk devices. UFS vendors need the data lifetime information to achieve good performance. [[https://git.kernel.org/linus/b2f860903fe9774f755a917edc674ba6e879fa55|commit]], [[https://git.kernel.org/linus/f19c3e4fe2542d7b145d294386666958c9fabe17|commit]], [[https://git.kernel.org/linus/4977c0f4523e1d6c87df4eedceb33d38f055c5fb|commit]], [[https://git.kernel.org/linus/af180c0880f9df14be31807f0bb0fa6f0d34a943|commit]], [[https://git.kernel.org/linus/4f53138fffc2b18396859aa4ff3e7ef2b0839c2b|commit]], [[https://git.kernel.org/linus/ad620becda436fc02e50e5f6fe01de1d1f3794c9|commit]], [[https://git.kernel.org/linus/96b171d6dba6a66c63312f35e3ac6465b2c2ca94|commit]], [[https://git.kernel.org/linus/b952eb270df38bc0d930a1ef965666ecf54a2097|commit]], [[https://git.kernel.org/linus/b1e5c0b34db8e7dac04af618e53c64e70c86aac8|commit]], [[https://git.kernel.org/linus/eb6fe0c388e43b02e261f0fdee60e42f6298d7f7|commit]], [[https://git.kernel.org/linus/f8ab2710177a762ce0f9b8426f9fc292394949df|commit]] * Add ZynqMP efuse access support [[https://git.kernel.org/linus/29be47fcd6a06ea2e79eeeca6e69ad1e23254a69|commit]], [[https://git.kernel.org/linus/737c0c8d07b5f671c0a33cec95965fcb2d2ea893|commit]], [[https://git.kernel.org/linus/e34b943068d30f20db31f28100affdaaedc7efab|commit]], [[https://git.kernel.org/linus/9f742e3efc978a480d64b10b353bde656e275aa1|commit]] * scsi: ufs: core: Add CPU latency QoS support for UFS driver [[https://git.kernel.org/linus/2777e73fc154e2e87233bdcc0e2402b33815198e|commit]] * nvmet: implement unique discovery NQN [[https://git.kernel.org/linus/95409e277d8343810adf8700d29d4329828d452b|commit]] * nvmet: introduce new max queue size configuration entry [[https://git.kernel.org/linus/ca2b221d89a81849a2f4a25d024a3d527a210ab6|commit]] == Drivers in the Staging area == * Remove EMMA Mobile USB Gadget and board staging support [[https://git.kernel.org/linus/ce54e9342124ededf0a00ed4e8a8aee535bfbf00|commit]], [[https://git.kernel.org/linus/f402f7a02af6956d3fd4ce17d6bd08054231f72d|commit]], [[https://git.kernel.org/linus/cc13301acc39f04a8de0a58e6915731829f5e436|commit]], [[https://git.kernel.org/linus/4a46fffc210f246eb513f40a4bc3d4e33e2d23e2|commit]] == Networking == * UIO_MEM_DMA_COHERENT for cnic/bnx2/bnx2x [[https://git.kernel.org/linus/576882ef5e7fce030b65c92b508a0f84ea5a81c2|commit]], [[https://git.kernel.org/linus/bfe78793b264f9e7a809f755f8ef5cb9bb163827|commit]], [[https://git.kernel.org/linus/7722151e4651c973c18df0c18c015edcc7b43b25|commit]], [[https://git.kernel.org/linus/019947805a8d703fbb57d607187ff1148bb267ff|commit]] * can * kvaser_pciefd: Add support for Kvaser M.2 PCIe 4xCAN [[https://git.kernel.org/linus/85216f56bde74ec365da3fdff1929505538ce894|commit]] * xilinx_can: Add ECC support [[https://git.kernel.org/linus/8e6fbf7f66dc056cbf23e02d4b66e9afd2b89887|commit]] * igc: Add support for LEDs on i225/i226 [[https://git.kernel.org/linus/ea578703b03d5d651b091c39f717dc829155b520|commit]] * mlxbf_gige: add support to display pause frame counters [[https://git.kernel.org/linus/c2234161985212d28711c1030337515d3852db80|commit]] * mlx5 socket direct (Multi-PF) [[https://git.kernel.org/linus/a0873a5d542559698edfd4c8fc6e6636d338eea2|commit]], [[https://git.kernel.org/linus/75a543962ecb30cc3548d877142ebc8012e3447d|commit]], [[https://git.kernel.org/linus/678eb448055a45ea9dc63377c9f0ad7f2dd90f98|commit]], [[https://git.kernel.org/linus/d3d0576660905c80c4cf02178cae2246e900872a|commit]], [[https://git.kernel.org/linus/f218179b78f5bfa2300a7f0fdc0d5e9727b7a773|commit]], [[https://git.kernel.org/linus/ae40550e3a8aa8a3e8ef888c12adb1498617f7ff|commit]], [[https://git.kernel.org/linus/4375130bf527053ef2c1619921af4ceb2cb53172|commit]], [[https://git.kernel.org/linus/381978d28317bc7ee242ed17e4eb11c63094a8b8|commit]], [[https://git.kernel.org/linus/846122b126f8ed26b745206193dbae5afecf2da9|commit]], [[https://git.kernel.org/linus/67936e138586990d727fec887781a7f41f09a096|commit]], [[https://git.kernel.org/linus/40e6ad9182b48b60c50b23b3a63e6d132f02b3ec|commit]], [[https://git.kernel.org/linus/7f525acbccdf7e682d36c196445fb07b8b68dd79|commit]], [[https://git.kernel.org/linus/d1a8b2c3e43418dd3449a068020f4f32068534cc|commit]], [[https://git.kernel.org/linus/ed29705e4ed1d5c1b2184fecc4684bd56c5d24ee|commit]], [[https://git.kernel.org/linus/77d9ec3f6c8cc592c7e2a1a741f39512198555af|commit]] * dsa * Add KSZ8567 switch support [[https://git.kernel.org/linus/3723b56d6f73f7c8c3b521a80556f129830f6fb9|commit]] * microchip: Add support for bridge port isolation [[https://git.kernel.org/linus/a7f08029e2e84ecafbfff50fcff976fafee72799|commit]] * hns3: add new 200G link modes for hisilicon device [[https://git.kernel.org/linus/dd1f65f0db27467f742d8c6e5276b8e8e0c83890|commit]] * aquantia: add AQR111 and AQR111B0 PHY ID [[https://git.kernel.org/linus/038ba1dc4e54d51d953f5618d8eb5dd39bd9de25|commit]] * aquantia: add AQR113 PHY ID [[https://git.kernel.org/linus/71b605d32017e5b8d257db7344bc2f8e8fcc973e|commit]] * dp83826: support TX data voltage tuning [[https://git.kernel.org/linus/d1d77120bc2867b3e449e07ee656a26b2fb03d1e|commit]] * dp83867: Add support for active-low LEDs [[https://git.kernel.org/linus/447b80a9330ef2d9a94fc5a9bf35b6eac061f38b|commit]] * phy: realtek: add support for RTL8126A-integrated 5Gbps PHY [[https://git.kernel.org/linus/5befa3728b855e9f75b29bb0069a1ca7f5bab2f7|commit]] * ravb: Add runtime PM support [[https://git.kernel.org/linus/48f894ab07c444b9b26a0913d2032de663f4aecb|commit]] * usb: qmi_wwan: add Telit FN920C04 compositions [[https://git.kernel.org/linus/0b8fe5bd73249dc20be2e88a12041f8920797b59|commit]] * usb:qmi_wwan: support Rolling modules [[https://git.kernel.org/linus/d362046021ea122309da8c8e0b6850c792ca97b5|commit]] * octeontx2-pf: Add TC flower offload support for TCP flags [[https://git.kernel.org/linus/3b43f19d065d2e6669209f991bbf1522b351d0c4|commit]] * r8169: add support for RTL8126A [[https://git.kernel.org/linus/3907f1ffc0ecf466d5c04aadc44c4b9203f3ec9a|commit]] * ath12k: add firmware-2.bin support [[https://git.kernel.org/linus/12f491cd6d812559e2d986b7836e9062d2efde96|commit]] * ath12k: enable 802.11 power save mode in station mode [[https://git.kernel.org/linus/54ca3308a23c5fc0cd5c53d86918217834626c44|commit]] * mac80211_hwsim: enable all links only in MLO [[https://git.kernel.org/linus/358ddc7bfa980888b69b406a7c4ce0a5b0ac5c30|commit]] * mt76: mt76x2u: add netgear wdna3100v3 to device table [[https://git.kernel.org/linus/70b8250b30e2abbaa230e962a7198aa552654ce6|commit]] * mt76: mt7925: support temperature sensor [[https://git.kernel.org/linus/396e41a74a88654f23e36c46d2995752c91654a5|commit]] * rtl8xxxu: Add TP-Link TL-WN823N V2 [[https://git.kernel.org/linus/1209f487d452ff7e822dec30661fd6b5163fb8cf|commit]] * ath12k: P2P support for WCN7850 [[https://git.kernel.org/linus/2830bc9e784ff18ecb0eafd53d0bdae32c478c16|commit]], [[https://git.kernel.org/linus/ * ath11k: add support for QCA2066 [[https://git.kernel.org/linus/515bcdf587f9911f2d5de51524cb7e048d295052|commit]], [[https://git.kernel.org/linus/5dc9d1a55e953d9059ecbdd8fe6ec81e9edd349e|commit]] * ath11k: support 2 station interfaces [[https://git.kernel.org/linus/f019f4dff2e4cb8704dc608496e3f2829de3e919|commit]], [[https://git.kernel.org/linus/24395ec117076216c78d0874d9d44f62ba1f9747|commit]] * Add octeon_ep_vf driver [[https://git.kernel.org/linus/cb7dd712189f2fe5eb34ac2f904e28283f055cae|commit]], [[https://git.kernel.org/linus/2c0c32c72be29fba0bbd535308038b49caaf4fc1|commit]], [[https://git.kernel.org/linus/c5cb944ded9475bce2c4197f9c7103eab8c7c3f8|commit]], [[https://git.kernel.org/linus/ca6ecb0d3c3a0f470fc31ff2a3b22e4feb3fbe73|commit]], [[https://git.kernel.org/linus/c3fad23cdc069aeff8f1b22a27e8a471c1d9d517|commit]], [[https://git.kernel.org/linus/1cd3b407977c3ab1d2ddc26cb7113e7fb1509cd1|commit]], [[https://git.kernel.org/linus/c92881599efb3bf7a6c29a971d4c907735b4ef8c|commit]], [[https://git.kernel.org/linus/90cabae2a2349fba33b5ff30ab700a328d34eeb2|commit]] * stmmac: mmc_core: Add missing mmc statistics in DW GMAC [[https://git.kernel.org/linus/ff20393bdc4537c5e044e3002d7f25a45f0d0f98|commit]], [[https://git.kernel.org/linus/dfe073f8714dc8022b5578510e2288e5292adeb5|commit]] * phy: mdio-bcm-unimac: Support for ASP 2.2 and optimizations [[https://git.kernel.org/linus/cc7f105e7604477a9f40171331d35153e65a6ce3|commit]], [[https://git.kernel.org/linus/4688f4f41cfa76638a37db3837cc485e5c83d307|commit]], [[https://git.kernel.org/linus/9112fc0109fc0037ac3b8b633a169e78b4e23ca1|commit]], [[https://git.kernel.org/linus/1d472eb5b6701810e0b25ae5cea40a9908019780|commit]], [[https://git.kernel.org/linus/edac4b1132972cf086d59f3919febecc1430ebca|commit]] * mlxsw: Support for nexthop group statistics [[https://git.kernel.org/linus/79fa52145e19803ed47bd5f2136c19c5e16f512d|commit]], [[https://git.kernel.org/linus/10bf92fd775ec2c6af1127c04e54e5b7ad0d35de|commit]], [[https://git.kernel.org/linus/e99eb57e9b14d830a571c5255248d4d7eb08b27e|commit]], [[https://git.kernel.org/linus/a22b042660ca1d695cc225401c72b3fb393acd49|commit]], [[https://git.kernel.org/linus/152a3a7320d1582009db85d8be365ce430d079af|commit]], [[https://git.kernel.org/linus/44c2fbebe18aa2452cf8a3dbef4f38850d42b564|commit]], [[https://git.kernel.org/linus/2d32c49386cbb748ef775aab60aa687d4a320d3b|commit]], [[https://git.kernel.org/linus/41acb5549e607d158395a6b1bbd8c6e05cbb280f|commit]], [[https://git.kernel.org/linus/6fb88aaf272a6aa58fd90a308cb0ef34f78aace4|commit]], [[https://git.kernel.org/linus/8acb480e43c81bc72b528677084428cf2dc7a12c|commit]], [[https://git.kernel.org/linus/5a5a98e5176e4a4d38c98bc40890e0ab0102fd2c|commit]] * esd: add support for esd GmbH PCIe/402 CAN interface [[https://git.kernel.org/linus/9721866f07e108f892c15ae0c03059e5221b5594|commit]], [[https://git.kernel.org/linus/4dcd08b9676aa43782fbfa34d6a9d4e23e89ea26|commit]] * idpf: refactor virtchnl messages [[https://git.kernel.org/linus/41252855df77a9bef119489b66671e317efb5a7e|commit]], [[https://git.kernel.org/linus/e54232da12388a45ba4c30de4f6eab4bbc71994f|commit]], [[https://git.kernel.org/linus/34c21fa894a1af6166f4284c81d1dc21efed8f38|commit]], [[https://git.kernel.org/linus/6009e63c57c9cee216c5f8d415a2f88353abc0a4|commit]], [[https://git.kernel.org/linus/8c49e68f542f6a3bf800103ead26df61ceaa18c3|commit]], [[https://git.kernel.org/linus/4f5126a075c415044d36e9e6948a8a3a43e97ad0|commit]], [[https://git.kernel.org/linus/5dc283fa5cf72011248b00e1036b17876e4f5a40|commit]], [[https://git.kernel.org/linus/bcbedf253e918bcba8df999d300c3336e96fabff|commit]], [[https://git.kernel.org/linus/43b67308df98ac58055c6a3126427a76d7802e1a|commit]], [[https://git.kernel.org/linus/52361a06d3f2995f6cdbe35792ed1514067871d6|commit]], [[https://git.kernel.org/linus/14696ed173af247a2d80b779c2f0cb08c94dfb4d|commit]] * mlx5 socket direct (Multi-PF) [[https://git.kernel.org/linus/83a59ce0057b7753d7fbece194b89622c663b2a6|commit]], [[https://git.kernel.org/linus/77d9ec3f6c8cc592c7e2a1a741f39512198555af|commit]], [[https://git.kernel.org/linus/c82d360325112ccc512fc11a3b68cdcdf04a1478|commit]], [[https://git.kernel.org/linus/4375130bf527053ef2c1619921af4ceb2cb53172|commit]], [[https://git.kernel.org/linus/4a04a31f49320d078b8078e1da4b0e2faca5dfa3|commit]], [[https://git.kernel.org/linus/c73a3ab8fa6e93a783bd563938d7cf00d62d5d34|commit]], [[https://git.kernel.org/linus/d72baceb92539a178d2610b0e9ceb75706a75b55|commit]], [[https://git.kernel.org/linus/c88c49ac9c18fb7c3fa431126de1d8f8f555e912|commit]], [[https://git.kernel.org/linus/63b9ce944c0e26c44c42cdd5095c2e9851c1a8ff|commit]], [[https://git.kernel.org/linus/e4f9686bdee7b4dd89e0ed63cd03606e4bda4ced|commit]], [[https://git.kernel.org/linus/a0873a5d542559698edfd4c8fc6e6636d338eea2|commit]], [[https://git.kernel.org/linus/e2578b4f983cfcd47837bbe3bcdbf5920e50b2ad|commit]], [[https://git.kernel.org/linus/605fcce33b2d1beb0139b6e5913fa0b2062116b2|commit]], [[https://git.kernel.org/linus/a45af9a96740873db9a4b5bb493ce2ad81ccb4d5|commit]], [[https://git.kernel.org/linus/c4fb94aa822d6c9d05fc3c5aee35c7e339061dc1|commit]] * Add support for QMC HDLC [[https://git.kernel.org/linus/54762918ca856028d33d1d56d017a4d7706c6196|commit]], [[https://git.kernel.org/linus/f0c9c45c78989ece6a29973759508ad2797eb844|commit]], [[https://git.kernel.org/linus/de5f84338970815b9fdd3497a975fb572d11e0b5|commit]], [[https://git.kernel.org/linus/796992282cb046939cbbcbd0051e804095304fa4|commit]], [[https://git.kernel.org/linus/fe612629746cf5cc7040529f780d46929605d0a6|commit]] * bnxt: add per-queue statistics [[https://git.kernel.org/linus/af7b3b4adda592cb49e202f3617454d5dda4c5b5|commit]], [[https://git.kernel.org/linus/92f8b1f5ca0f157f564e75cef4c63641c172e0f1|commit]], [[https://git.kernel.org/linus/8ccf3800dbdeaf26bcdefa471c9c8e0da7e6ec7a|commit]] * Add support for TI DP83826 configuration [[https://git.kernel.org/linus/2844a0d7cffe0567d1d3d18be227542bd1f15d2e|commit]], [[https://git.kernel.org/linus/d2ed0774b6334ce3986c5efb17ab9c4095b8d969|commit]], [[https://git.kernel.org/linus/95f4fa1f459a69827d752bd55205af7c55b76e4e|commit]] * rtw89: support MCC for !WiFi 7 chips [[https://git.kernel.org/linus/0f93824ed720e7149567a9ce5deb700c3b9142b6|commit]], [[https://git.kernel.org/linus/f931cce310e0beb2d4b9f2b60b3e3ce69ff87dfb|commit]], [[https://git.kernel.org/linus/9de7829aa6fa78402f4efef60d919b1f8b54bbdb|commit]], [[https://git.kernel.org/linus/b8e59e55345878747b6de944e785728fb215b26c|commit]], [[https://git.kernel.org/linus/6ca3b88c320b5933b4371f940f70aba382e12ecf|commit]] * ath11k: add support for QCA2066 [[https://git.kernel.org/linus/a7f8dedb4be2cc930a29af24427b885405ecd15d|commit]], [[https://git.kernel.org/linus/515bcdf587f9911f2d5de51524cb7e048d295052|commit]] * ravb: Add runtime PM support (part 2) [[https://git.kernel.org/linus/d53bd80cb32d917e224b19925bb8f500941a3659|commit]], [[https://git.kernel.org/linus/a5f149a97d09cc9340d8fb4e22a3074a7bc1e02d|commit]], [[https://git.kernel.org/linus/bbf2345fa6582c5292bc5c537e7a29aad918be0c|commit]], [[https://git.kernel.org/linus/a260f080660ef8bac97404dd0b9ddbe35a608426|commit]], [[https://git.kernel.org/linus/a71a50e391bf00fdc88bb13a867620c59ad744da|commit]], [[https://git.kernel.org/linus/7bddccc9911cdff377e16b9a5a386721279b4438|commit]] * ionic: add XDP support [[https://git.kernel.org/linus/ecd63a0217d5f1e8a92f7516f5586d1177b95de2|commit]], [[https://git.kernel.org/linus/56434a01b12e99eb60908f5f2b27b90726d0a183|commit]], [[https://git.kernel.org/linus/d678be1dc1ec59eee1f733ff603f601469ff368d|commit]], [[https://git.kernel.org/linus/97538c146cca50dc6cd3d37b5ddcb43c6fc10a46|commit]], [[https://git.kernel.org/linus/d67ee210dafd0a3f3d65ed2d01027cd0e0de93d6|commit]], [[https://git.kernel.org/linus/c699f35d658f3c21b69ed24e64b2ea26381e941d|commit]], [[https://git.kernel.org/linus/af87a3aa1b5f397a2f5c99b97b000943c5177da7|commit]], [[https://git.kernel.org/linus/f81da39bf4c0a544d057330d3c3c93336307ea51|commit]], [[https://git.kernel.org/linus/180e35cdf035d1c2e9ebdc06a9944a9eb81cc3d8|commit]], [[https://git.kernel.org/linus/5377805dc1c02ad3721a9256f0eef9b4813952e7|commit]] * Add ECC feature support to Tx and Rx FIFOs for Xilinx CAN Controller. [[https://git.kernel.org/linus/a93fca920167755db7e931f9b302b355edec910a|commit]], [[https://git.kernel.org/linus/39eb7e9791866973dbb7a3a6d2061d70356c7d90|commit]], [[https://git.kernel.org/linus/e1d1698eb36c4e3af9cc77e610cfbe47861c491c|commit]], [[https://git.kernel.org/linus/7075d733b8e431c011d30c219012d40ea0c92e1d|commit]] * pds_core: AER handling [[https://git.kernel.org/linus/881c1b3c486c7f181e0ca8c8df30f5f860c0d659|commit]], [[https://git.kernel.org/linus/2cbab3c296f1addd73b40549a2271b30f960df8b|commit]], [[https://git.kernel.org/linus/2dac60e062340c1e5c975ad6465192d11c40d47a|commit]], [[https://git.kernel.org/linus/d740f4be7cf0faded598fe43e2f472c47230c298|commit]] * phy: add support for the EEE 2 registers [[https://git.kernel.org/linus/9a1e31299decfb4fc134933dbb6c34236187173f|commit]], [[https://git.kernel.org/linus/1bbe04e305fb2b5127650e6f2c0dbd611e8ebb14|commit]], [[https://git.kernel.org/linus/b63584c86edbaf7477c3569cec331672bb7714d5|commit]], [[https://git.kernel.org/linus/ef6ee3a31bdc699391f2db4eff407fdb06895809|commit]], [[https://git.kernel.org/linus/80e4021c25d8c1ddae0dd655ed5f6b1e938dd79b|commit]] * rtw89: 8922a: add chip_ops::set_channel() and helpers [[https://git.kernel.org/linus/03830bb909a064bd590748127367878cf1d50fb0|commit]], [[https://git.kernel.org/linus/2c681cbf6c3a76ef3cdd9b33c3b1644caab209d1|commit]], [[https://git.kernel.org/linus/f59cb1a030989ca0e5638fd4de91afddfbdbf89f|commit]], [[https://git.kernel.org/linus/ca1e1163889395cae54c4f051c301a8a6d6de311|commit]] * iwlwifi: updates - 2024-02-18 [[https://git.kernel.org/linus/78f65fbf421a61894c14a1b91fe2fb4437b3fe5f|commit]], [[https://git.kernel.org/linus/a07369d7fb0df37c61f271280b7497a882a3d291|commit]], [[https://git.kernel.org/linus/3eab2034364dc446d3ccd0bee15af681638fcb9d|commit]], [[https://git.kernel.org/linus/32a1bbd3fe3ff21deca67e3508ab3cc05931ccd2|commit]], [[https://git.kernel.org/linus/740dfecc336bc79789b992f260e1a5bdfbdf2bfa|commit]], [[https://git.kernel.org/linus/32a5690e9acb461c7c6a4595f9e77a6fb5c4094f|commit]], [[https://git.kernel.org/linus/3f505a30ea6b0fdfa4bf214b5383e8d4e6a2832e|commit]], [[https://git.kernel.org/linus/e2967e83921a3748116b8e330cbbb794817ceee8|commit]], [[https://git.kernel.org/linus/653a90f6b226d8f95d06cb6c0bf5473f99582cc9|commit]], [[https://git.kernel.org/linus/d3433d1bb7bde449035f54b7000361ce151bad07|commit]] * phy: marvell-88q2xxx: add driver for the Marvell 88Q2220 PHY [[https://git.kernel.org/linus/6935d46c2da64aa032a557374c95336e265cd7ef|commit]], [[https://git.kernel.org/linus/fb0a43f5bd454dfae94aeb293b32669c6ef83b37|commit]], [[https://git.kernel.org/linus/28a75e4c813c7ae7de5b4baf4c29369769247cc6|commit]], [[https://git.kernel.org/linus/ac0c530619cefa68fba816dabbcf6f4ffbf60c3d|commit]], [[https://git.kernel.org/linus/969dd0cf295d6f19b577aea0b48a11c4087693e9|commit]], [[https://git.kernel.org/linus/ec2660946a57d35aa5f3b9a71ae0ab81e5cfcb83|commit]], [[https://git.kernel.org/linus/744cd0f212d72758fb094c1d13ec61b27ab6de3f|commit]], [[https://git.kernel.org/linus/8d9a577f0eea92f1b5b82874eabf93b505d02c78|commit]], [[https://git.kernel.org/linus/3810e029e23e220487c33f77b56a762ef1dc8ff3|commit]], [[https://git.kernel.org/linus/953cc643329b38434bb7d6206951d1a48016e38b|commit]], [[https://git.kernel.org/linus/aa136e5dad9fbec9e98867278555a81f2d75ea10|commit]], [[https://git.kernel.org/linus/e57e4c7f6cc943be3346f938361334bb3634db3d|commit]], [[https://git.kernel.org/linus/9df6f705c0934a49d0f0a3468a5b5044c8aec4f1|commit]], [[https://git.kernel.org/linus/a68a813836e12b15715d9101309899123c250302|commit]] * bnxt_en: Ntuple filter improvements [[https://git.kernel.org/linus/5d5b90fb4e907c72ff0cddcd0f0c7a98facafaa2|commit]], [[https://git.kernel.org/linus/ef4ee64e99903692f46b82b1f84c1173004dbb54|commit]], [[https://git.kernel.org/linus/ae8186b2d4064699e182682cff2ddc1c9486be38|commit]], [[https://git.kernel.org/linus/438ba39b25fe71fc9cd862f30d25e54ed8f00603|commit]], [[https://git.kernel.org/linus/f6eff053a60c4c501baae29f245e66a67494dffb|commit]], [[https://git.kernel.org/linus/257bbf45af81bac9b0e38be530a554e2cff92700|commit]], [[https://git.kernel.org/linus/532c034e4b2b460a2d8584ce8f9e11f646c7f4e9|commit]], [[https://git.kernel.org/linus/8c81ae6c54c1273a1e08b10e1e2aa5bc321af10c|commit]], [[https://git.kernel.org/linus/9294299867734ceff303012cd6ec98990fbd78e6|commit]], [[https://git.kernel.org/linus/93e90104bd1207a987241e2a696d53bb0b025a9e|commit]] * rtw89: update scan features, EHT beamforming capability and PCI setting [[https://git.kernel.org/linus/53fe234f15b9e45a699591828950b1c3416da239|commit]], [[https://git.kernel.org/linus/6ebe995542d0aafcee234dc8cdf50cbb24279591|commit]], [[https://git.kernel.org/linus/dc10daddfeb1252e9fd170da086ac2d43f8f7272|commit]] * dsa: realtek: support reset controller and update docs [[https://git.kernel.org/linus/56998aa6b7f0f31ce8df23c00701af2d8e8a1f1a|commit]], [[https://git.kernel.org/linus/61fc41317666be400802ac793f47de816ef7bd57|commit]], [[https://git.kernel.org/linus/28001bb1955fcfa63e535848c4289fcd7bb88daf|commit]] * dsa: mv88e6xxx: add Amethyst specific SMI GPIO function [[https://git.kernel.org/linus/e3ab3267a0bbedc37725bb845a332ec33b247263|commit]], [[https://git.kernel.org/linus/5c5b0c444be3e851046f1c1074459b8d15d2a0f9|commit]] * Support for ASP 2.2 and optimizations [[https://git.kernel.org/linus/cc7f105e7604477a9f40171331d35153e65a6ce3|commit]], [[https://git.kernel.org/linus/4688f4f41cfa76638a37db3837cc485e5c83d307|commit]], [[https://git.kernel.org/linus/9112fc0109fc0037ac3b8b633a169e78b4e23ca1|commit]], [[https://git.kernel.org/linus/1d472eb5b6701810e0b25ae5cea40a9908019780|commit]], [[https://git.kernel.org/linus/edac4b1132972cf086d59f3919febecc1430ebca|commit]] * pull-request: can-next 2024-03-04 [[https://git.kernel.org/linus/79f7319908fb568f60b7ddbe0cb9c9d2e714ac87|commit]], [[https://git.kernel.org/linus/ef488e47e060eb6d6b08de12a2a9b40ba345c4d0|commit]], [[https://git.kernel.org/linus/9b221ba452aa752a088f88bc40196e8f927b26f3|commit]], [[https://git.kernel.org/linus/0b40cd9b4ecca68d95edd1a2ce688c64db58b095|commit]] * Intel Wired LAN Driver Updates 2024-02-28 (ixgbe, igc, igb, e1000e, e100) [[https://git.kernel.org/linus/662200e324daebe6859c1f0f3ea1538b0561425a|commit]], [[https://git.kernel.org/linus/33c1af8e2c75ab601524e25efeeed0173d703ce7|commit]], [[https://git.kernel.org/linus/1b43e0d20f2d007ec4c124b0deaa848ff8d61f4a|commit]], [[https://git.kernel.org/linus/aa9870f5c7ef44c904d35618b6717b9ef7810760|commit]] * ethernet: Rework EEE [[https://git.kernel.org/linus/27c136c8738f6bec10c26aaf0a486f19edef7bf7|commit]], [[https://git.kernel.org/linus/aff1b8c84b44894f305f94b1a7aa4fc1e773c614|commit]], [[https://git.kernel.org/linus/6a2495adc0c83d039a872b75d9d348a5dd3eb9f4|commit]], [[https://git.kernel.org/linus/e3b6876ab85061e7de198f023a0c2bfc7478b420|commit]], [[https://git.kernel.org/linus/fe0d4fd9285e5013b4bafbd3338847235b805a1c|commit]], [[https://git.kernel.org/linus/6f2fc8584a46bb35787bfc1dad1fb7dd5898e21f|commit]], [[https://git.kernel.org/linus/49168d1980e220cf3d1b761e1eafac62041cb94d|commit]], [[https://git.kernel.org/linus/3e43b903da04927f60894a603678f761c66d6e37|commit]] * mlx5 socket direct (Multi-PF) [[https://git.kernel.org/linus/83a59ce0057b7753d7fbece194b89622c663b2a6|commit]], [[https://git.kernel.org/linus/77d9ec3f6c8cc592c7e2a1a741f39512198555af|commit]], [[https://git.kernel.org/linus/c82d360325112ccc512fc11a3b68cdcdf04a1478|commit]], [[https://git.kernel.org/linus/4375130bf527053ef2c1619921af4ceb2cb53172|commit]], [[https://git.kernel.org/linus/4a04a31f49320d078b8078e1da4b0e2faca5dfa3|commit]], [[https://git.kernel.org/linus/c73a3ab8fa6e93a783bd563938d7cf00d62d5d34|commit]], [[https://git.kernel.org/linus/d72baceb92539a178d2610b0e9ceb75706a75b55|commit]], [[https://git.kernel.org/linus/c88c49ac9c18fb7c3fa431126de1d8f8f555e912|commit]], [[https://git.kernel.org/linus/63b9ce944c0e26c44c42cdd5095c2e9851c1a8ff|commit]], [[https://git.kernel.org/linus/e4f9686bdee7b4dd89e0ed63cd03606e4bda4ced|commit]], [[https://git.kernel.org/linus/a0873a5d542559698edfd4c8fc6e6636d338eea2|commit]], [[https://git.kernel.org/linus/e2578b4f983cfcd47837bbe3bcdbf5920e50b2ad|commit]], [[https://git.kernel.org/linus/605fcce33b2d1beb0139b6e5913fa0b2062116b2|commit]], [[https://git.kernel.org/linus/a45af9a96740873db9a4b5bb493ce2ad81ccb4d5|commit]], [[https://git.kernel.org/linus/c4fb94aa822d6c9d05fc3c5aee35c7e339061dc1|commit]] * wan: Add support for QMC HDLC, framer infrastructure and PEF2256 framer [[https://git.kernel.org/linus/a9a0303dfe3fe2bc04512c4ce6a589131845d386|commit]], [[https://git.kernel.org/linus/7cc9bda9c163877255a61a052987ce6b85da1263|commit]], [[https://git.kernel.org/linus/32881b253c945ea1493abc18e25928808331f5df|commit]], [[https://git.kernel.org/linus/37c646dc515a28eb38cc2495c34fb219f153e916|commit]], [[https://git.kernel.org/linus/7a2ee1576dcc6bbe017a8283fba237b05b13fd15|commit]], [[https://git.kernel.org/linus/ba3b7e4753c5ad80b3670277a2104aeb421e0d7d|commit]], [[https://git.kernel.org/linus/2d965e25fa4180988a1ef4f07803fa7a182a4ae5|commit]], [[https://git.kernel.org/linus/fc0c64154e5ddeb6f63c954735bd646ce5b8d9a4|commit]], [[https://git.kernel.org/linus/796992282cb046939cbbcbd0051e804095304fa4|commit]], [[https://git.kernel.org/linus/f2deea16bf187ad6e1f2a7b0d2fd0b1a4db0b1b7|commit]], [[https://git.kernel.org/linus/82c944d05b1a24c76948ee9d6bb1d7de1ebb8b3a|commit]], [[https://git.kernel.org/linus/b1891c13645b67c9cd2c661a693b9b6b56b87e80|commit]], [[https://git.kernel.org/linus/9217161115bfb76ae7b3b9e5a803f554a1c5e76a|commit]], [[https://git.kernel.org/linus/c96e976d9a05d559f4ac4f617ea0f798c75a1799|commit]], [[https://git.kernel.org/linus/dfe66d012af2ddfa566cf9c860b8472b412fb7e4|commit]], [[https://git.kernel.org/linus/48490dc36742b616f846368f300ebedfe9323da1|commit]], [[https://git.kernel.org/linus/0e034aec5be2e8b1199b87b04d32e4a8b805a9db|commit]], [[https://git.kernel.org/linus/766f5f900f156655c04230403fffdfb169a511ed|commit]], [[https://git.kernel.org/linus/f0c9c45c78989ece6a29973759508ad2797eb844|commit]], [[https://git.kernel.org/linus/fe612629746cf5cc7040529f780d46929605d0a6|commit]], [[https://git.kernel.org/linus/6f9b814d3765b2425da235570b1318c952142f1a|commit]], [[https://git.kernel.org/linus/0e85feacc8156b230285040d82537c922cc15fe6|commit]], [[https://git.kernel.org/linus/54762918ca856028d33d1d56d017a4d7706c6196|commit]], [[https://git.kernel.org/linus/1e95d20ae8e6a383b4c1dd2282e5259790724037|commit]], [[https://git.kernel.org/linus/0d75119d08448cb94583467c01adb212b0728502|commit]], [[https://git.kernel.org/linus/9b7a69d0bd2bb7bcf1b811f273a27be929520b61|commit]] * gve: Add header split support [[https://git.kernel.org/linus/056a70924a0272718adfa37ffcfc1e1d426a0d7e|commit]], [[https://git.kernel.org/linus/5e37d8254e7f551dda62e7590e819d69c7491845|commit]], [[https://git.kernel.org/linus/0b43cf527d1d6b75597b0f6c40a60a8b67837afe|commit]] * Add support for TI DP83826 configuration [[https://git.kernel.org/linus/2844a0d7cffe0567d1d3d18be227542bd1f15d2e|commit]], [[https://git.kernel.org/linus/d2ed0774b6334ce3986c5efb17ab9c4095b8d969|commit]], [[https://git.kernel.org/linus/95f4fa1f459a69827d752bd55205af7c55b76e4e|commit]] * rtw89: 8922a: add chip_ops::set_channel() and helpers [[https://git.kernel.org/linus/03830bb909a064bd590748127367878cf1d50fb0|commit]], [[https://git.kernel.org/linus/2c681cbf6c3a76ef3cdd9b33c3b1644caab209d1|commit]], [[https://git.kernel.org/linus/f59cb1a030989ca0e5638fd4de91afddfbdbf89f|commit]], [[https://git.kernel.org/linus/ca1e1163889395cae54c4f051c301a8a6d6de311|commit]] * ionic: add XDP support [[https://git.kernel.org/linus/ecd63a0217d5f1e8a92f7516f5586d1177b95de2|commit]], [[https://git.kernel.org/linus/56434a01b12e99eb60908f5f2b27b90726d0a183|commit]], [[https://git.kernel.org/linus/d678be1dc1ec59eee1f733ff603f601469ff368d|commit]], [[https://git.kernel.org/linus/97538c146cca50dc6cd3d37b5ddcb43c6fc10a46|commit]], [[https://git.kernel.org/linus/d67ee210dafd0a3f3d65ed2d01027cd0e0de93d6|commit]], [[https://git.kernel.org/linus/c699f35d658f3c21b69ed24e64b2ea26381e941d|commit]], [[https://git.kernel.org/linus/af87a3aa1b5f397a2f5c99b97b000943c5177da7|commit]], [[https://git.kernel.org/linus/f81da39bf4c0a544d057330d3c3c93336307ea51|commit]], [[https://git.kernel.org/linus/180e35cdf035d1c2e9ebdc06a9944a9eb81cc3d8|commit]], [[https://git.kernel.org/linus/5377805dc1c02ad3721a9256f0eef9b4813952e7|commit]] * rtw89: 8922a: add chip_ops related to TX/RX, RF access and thermal [[https://git.kernel.org/linus/a6c759c8962b11fdc62ced6f70a3f6ed0a50e033|commit]], [[https://git.kernel.org/linus/b16daa62125e3f841a135c37dfd996cdf7e7960d|commit]], [[https://git.kernel.org/linus/1ba63a8a752a76ebe4b26d80c6d25bd04484a9eb|commit]], [[https://git.kernel.org/linus/f8a7840e98a440f466954c0b9eed99a9f064a564|commit]], [[https://git.kernel.org/linus/1de97cd362c4080aab595b84bf0bff3ebc702446|commit]], [[https://git.kernel.org/linus/88d1f9b22fab815dd8c27ccb06f30d4814eaa11a|commit]] * stmmac: EST conformance support [[https://git.kernel.org/linus/5ca63ffdb94ba2bac4c23c8609aabd7edd03c312|commit]], [[https://git.kernel.org/linus/fd5a6a71313e27c4f601526081b69d4e76f03dea|commit]], [[https://git.kernel.org/linus/c5c3e1bfc9e0ee72af528df8d773980f4855938a|commit]] * Enable networking support for !StarFive JH7100 SoC [[https://git.kernel.org/linus/e16d3dc0a2d7cd7bd673ce08b39a4239aafe0938|commit]], [[https://git.kernel.org/linus/2db68ddbf33a76b5913ca281660979b4c48f1df6|commit]], [[https://git.kernel.org/linus/53e41b76a8ff27f4969e3816c0ce3a1af8156091|commit]], [[https://git.kernel.org/linus/a242b2051ba2ec2d042680c381fdb7e34e66278d|commit]], [[https://git.kernel.org/linus/6e204aa2116cf9677b8b93ba15d7831d98e4a236|commit]], [[https://git.kernel.org/linus/5ca37ca2a483828ade47a26f0d977024bdebfc14|commit]], [[https://git.kernel.org/linus/4287cd628f77de6ddaa1f458274a5337f373b040|commit]] * rtw89: add hardware scan and power save mode for !WiFi 7 chips [[https://git.kernel.org/linus/f651300cd8849a3703892fe5efd397c7a44a7f60|commit]], [[https://git.kernel.org/linus/f1abee76dba829ada6e30ac640443e81bde2f878|commit]], [[https://git.kernel.org/linus/ac54faf507e5d2776a7dca2c13665745d4490cd5|commit]], [[https://git.kernel.org/linus/a412920b70199c07504ea9e937b00f07916a541a|commit]], [[https://git.kernel.org/linus/b5d7020134d91ccb9ae763f738aaa466e37ac25a|commit]], [[https://git.kernel.org/linus/e58e3117019cfa732706211c151fd94d8fb08ce3|commit]], [[https://git.kernel.org/linus/60b22511921fe79b2a94a27c09cadfd32fcef5d5|commit]] * ENA driver changes [[https://git.kernel.org/linus/ae82209293297c423c0c40575cae7b464248866c|commit]], [[https://git.kernel.org/linus/071271f39ce833a3534d1fbd47174d1bed6d9326|commit]], [[https://git.kernel.org/linus/bd765cc910127ee8ed6cd83dae0f0bfbca69d71e|commit]], [[https://git.kernel.org/linus/50613650c3d6255cef13a129ccaa919ca73a6743|commit]], [[https://git.kernel.org/linus/5e82eb333949e2f1652bf70d36dfaa875306ae11|commit]], [[https://git.kernel.org/linus/4b4012da28cf240d0208833297c4435a11de0039|commit]], [[https://git.kernel.org/linus/a53d850a79c39b97a2d954d0db5c481c44e8dc7c|commit]], [[https://git.kernel.org/linus/70c9360390ea9c1e5a86109f34b9f0ae0c60be82|commit]], [[https://git.kernel.org/linus/06a96fe6f9f02f1205774b60c2f42f09a6832f31|commit]], [[https://git.kernel.org/linus/50d7a2660579889fba28b7e4543d4ce85aa2311b|commit]], [[https://git.kernel.org/linus/716bdaeceaeea93be4028218ebe42d19cdd48625|commit]] * ath12k: QCN9274 dualmac bring up [[https://git.kernel.org/linus/2d3a7384b9c8ea0b640747176cc01af64cf722ec|commit]], [[https://git.kernel.org/linus/664a1c96b297965c443446e61ccb02ebc961ddc3|commit]], [[https://git.kernel.org/linus/f7019c2fcdf68a0df3a30735c91bb4fb8e2b810d|commit]], [[https://git.kernel.org/linus/9f06911998cac015e333f519243f1601ca687f47|commit]], [[https://git.kernel.org/linus/afeee629e72eeed719eb3f2918d7c8f3ae33497f|commit]], [[https://git.kernel.org/linus/af9bc78d14fbe77db6e7526efaced162060f27bc|commit]], [[https://git.kernel.org/linus/28703381099022e18df1de7c2c665d72f92c7819|commit]], [[https://git.kernel.org/linus/57c8b5c332e587cceec5d6bde57146edc2f4af87|commit]], [[https://git.kernel.org/linus/6925eba532e1e9a30ae0f6807dba07f596ba0cd6|commit]], [[https://git.kernel.org/linus/3cf1a9f7a1b2823af5a57e277bbb7c730c8d737b|commit]], [[https://git.kernel.org/linus/94e8235c679db3e3b130a91d4c1d8f5023a5bb01|commit]], [[https://git.kernel.org/linus/902700d55d4a4522bb3eb4ef94f752a19c42230a|commit]], [[https://git.kernel.org/linus/419927ec8438e336f9dea183de9153da4e65dafc|commit]] * iwlwifi: updates - 2024-02-01 [[https://git.kernel.org/linus/fc7214c3c986142758ae9d2cd456c98e48547b5e|commit]], [[https://git.kernel.org/linus/16867c38bcd3be2eb9016a3198a096f93959086e|commit]], [[https://git.kernel.org/linus/5932ad87828b267649d750869c89c0f1a3873477|commit]], [[https://git.kernel.org/linus/a23c0af103e184bb1252dddddda040f6641bea7b|commit]], [[https://git.kernel.org/linus/669761e897a4fc87ae0e4625590f2a396a87a3d1|commit]], [[https://git.kernel.org/linus/18f523654d4943c87da3ec512dad74828be764e4|commit]], [[https://git.kernel.org/linus/091d89428f18ac8e67b4032dfa305e957040bdd9|commit]], [[https://git.kernel.org/linus/12e1a6a5b038bcf2c58fd356758710180222e5bc|commit]], [[https://git.kernel.org/linus/dc4fe7500e7a1a1ab56a7708ac9be4c90fd12174|commit]], [[https://git.kernel.org/linus/c1b393a7dc237505088129945a85b570af8742da|commit]], [[https://git.kernel.org/linus/61ff84440c402ad3e0c3989b3bef99f0db5e6766|commit]], [[https://git.kernel.org/linus/b97ada404c4eecb90c79fd884cdc09022d549d20|commit]], [[https://git.kernel.org/linus/a51d1cf5ad64a17230cf90e1770d363c5cbc0d5c|commit]], [[https://git.kernel.org/linus/20935f3e646e687f32f044d9d75a4a8637c086db|commit]], [[https://git.kernel.org/linus/4dde4ff0eadd6cde43aa5f39fbea36355f9f6e44|commit]], [[https://git.kernel.org/linus/dd273e8a22f9302c499ae4248c95a212fccd6811|commit]], [[https://git.kernel.org/linus/dc2b94a111e0fb3779a86dd8d303ad842880f869|commit]] * iwlwifi: updates - 2024-01-29 [[https://git.kernel.org/linus/c289f5cd6978af1bd14c1b7c230aaa011e1b3b5d|commit]], [[https://git.kernel.org/linus/ce1fa3adc007ce3fd6beb8f4d733e00daa64c6c0|commit]], [[https://git.kernel.org/linus/f639602a58e7564dd091c7c0793f61042bad9bb6|commit]], [[https://git.kernel.org/linus/137d33ac476489645e4a67d66d3abf930cecb419|commit]], [[https://git.kernel.org/linus/8001849921028775eafb5263feadf49e821e9ecf|commit]], [[https://git.kernel.org/linus/0fcdf55fced7121c43fa576433986f1c04115b73|commit]], [[https://git.kernel.org/linus/6770eee75148ba10c0c051885379714773e00b48|commit]], [[https://git.kernel.org/linus/65d3333e4d4f35853aa2991324206e1cb17b81d7|commit]], [[https://git.kernel.org/linus/0c769cb6b9f364423c255f117774c9ecd5bf23ea|commit]], [[https://git.kernel.org/linus/3d869feacb74309e4f1cb69572df16ec9862012c|commit]], [[https://git.kernel.org/linus/c8d8f3911135921ace8e939ea0956b55f74bf8a0|commit]], [[https://git.kernel.org/linus/619a900f279800876e425ce4ef41c4e493bdf7d4|commit]], [[https://git.kernel.org/linus/bc197d3c400f48ce7d9402c968ceeb5680e5b639|commit]], [[https://git.kernel.org/linus/64a06679e680d163d91b4642227244184c29ca02|commit]], [[https://git.kernel.org/linus/51eb17b8d5597250fea513050c26a53f2ff183b2|commit]] * iwlwifi: updates - 2024-01-31 [[https://git.kernel.org/linus/3bc67e7c18cd69e88b801336cfe2a4dc7b4981a4|commit]], [[https://git.kernel.org/linus/427661e4c48887ea2a226cd972e574ae7686fb95|commit]], [[https://git.kernel.org/linus/be3a8cbb1ca7d6737bfff9ea9ca260958f4bf6f0|commit]], [[https://git.kernel.org/linus/8c9bef26e98b71b18afe8de6212b750c4e9f9ecf|commit]], [[https://git.kernel.org/linus/e1c54d6377348fa2f7e216f53426f1b5fb9a59b1|commit]], [[https://git.kernel.org/linus/ad5a85d8fdd346ecc34217e3bd713bf0b519912d|commit]], [[https://git.kernel.org/linus/084e0452a42b1d4ccde601cc1873a4ee9d8a4cbb|commit]], [[https://git.kernel.org/linus/760cfa5bbd3bdd5ca2b36ca447d69788651ab17b|commit]], [[https://git.kernel.org/linus/bc8d0a4528f167742ecb511ba663795235e9d15c|commit]], [[https://git.kernel.org/linus/c868a189ecfe8cc0b3173c2eaa7f0b659326c151|commit]], [[https://git.kernel.org/linus/09059c6764a8870ff7515c2d78ecbea7fbcffc23|commit]], [[https://git.kernel.org/linus/c0a3dfc1ce955732ae8cd301a052f2277aa55436|commit]], [[https://git.kernel.org/linus/2594e4d9e1a2d79bf7bb262974abaf5ef153e371|commit]], [[https://git.kernel.org/linus/8408e83e16bb4d1d8f0ccf6937cae0357478ec50|commit]] * rtw89: fw: support firmware secure boot [[https://git.kernel.org/linus/43f8a4dc40a70b3598dd0aae401dddaf63ca0d5b|commit]], [[https://git.kernel.org/linus/12ff5e1cca33b32fae0b183203f5b58a610e137e|commit]], [[https://git.kernel.org/linus/5462b8505f538b00d287a6de9a0fb2be6059bfc4|commit]], [[https://git.kernel.org/linus/dedf78efd2885048ca36bc17fbd4e1c0af33f2ad|commit]] * mlx5 updates 2024-01-26 [[https://git.kernel.org/linus/917d1e799ddf9492bd0c71a23d84af0b6bb12bae|commit]], [[https://git.kernel.org/linus/a90f55916f150ced7b2635bedd43676f922ee075|commit]], [[https://git.kernel.org/linus/8d7db0abafb8766132c13d32ebe9d5bdb6c968e2|commit]], [[https://git.kernel.org/linus/daa6a6eb8f881a846ef9d1698d1da97999e8d86b|commit]], [[https://git.kernel.org/linus/f9f221c98fd83df518fbb2f5ad33980cfedfe1bf|commit]], [[https://git.kernel.org/linus/91a72ada66053b4dba95cf1a60a5a23fdbd6faf7|commit]], [[https://git.kernel.org/linus/507472ed0e37244e7703378409407b0606de6077|commit]], [[https://git.kernel.org/linus/fb3bfdfcd10609c90911307a545864d2996d951f|commit]], [[https://git.kernel.org/linus/6fb7f9408779d5153430f207785628f3e16a85fc|commit]], [[https://git.kernel.org/linus/bcad0e5312314ea6d69989c382df42f9a8348783|commit]], [[https://git.kernel.org/linus/fd2bc4195d5107f88c1b90e1ec935888ccbfc5c0|commit]], [[https://git.kernel.org/linus/17aa2d79b7e550acea2eeafb079773344bada714|commit]], [[https://git.kernel.org/linus/21e16fa5dc6c6f69d9f2cf84e6d8f147ec4c1fbe|commit]], [[https://git.kernel.org/linus/77bed87f76207b73eded817f3c3db2b8b827dfe0|commit]], [[https://git.kernel.org/linus/137cef6d55564fb687d12fbc5f85be43ff7b53a7|commit]] * ath12k: P2P support for WCN7850 [[https://git.kernel.org/linus/2830bc9e784ff18ecb0eafd53d0bdae32c478c16|commit]], [[https://git.kernel.org/linus/28035a88f8b3cc849e4b13b9b5f5dd0aa1e18365|commit]], [[https://git.kernel.org/linus/019b58dcb6ed267e17b7efd03ec8575c1b67d942|commit]], [[https://git.kernel.org/linus/e65a6398657561831b8a1a5aa3ec43ff24c428f2|commit]], [[https://git.kernel.org/linus/ef860c6a3adfc5f3fc5b5c96fc0e1856c944a1d1|commit]], [[https://git.kernel.org/linus/cf0425eead75687078369e48691b8a5f624885cd|commit]], [[https://git.kernel.org/linus/4f684533afe2317b5338209cbad4551bae7949a2|commit]], [[https://git.kernel.org/linus/32e7b12e2611e6b49510a3b36c0ba4deafac10c7|commit]], [[https://git.kernel.org/linus/fe3cbdfc4f5837401729e77e86da553d1e86f2bd|commit]], [[https://git.kernel.org/linus/575ec73cb8803b4e149df5ff5cdb9f1ce3735554|commit]], [[https://git.kernel.org/linus/c9e4e41e71ffaf3f6ff1fafcb96fda92a12dc2f5|commit]] * rtw89: 8922a: add firmware RF calibrations [[https://git.kernel.org/linus/1a0cba5dc983048ec0e13615b97c87a8882dff36|commit]], [[https://git.kernel.org/linus/af41e89ea323ca48d3ddf1a55b0f632d19ae0ae6|commit]], [[https://git.kernel.org/linus/80f47f82f3191b5d2530ad510814b4afab121672|commit]], [[https://git.kernel.org/linus/4dbd964f33aab6f99891b9610ad4b36cc215be0d|commit]], [[https://git.kernel.org/linus/9c66da3b19b5526b00bdd9ca2ef20560be21291f|commit]], [[https://git.kernel.org/linus/7e2629dc843fb46f0b8b3aba44708b508f6f98cf|commit]], [[https://git.kernel.org/linus/ad1c86e92698fa524078abc83a0709ccca06dbcd|commit]], [[https://git.kernel.org/linus/bd6f5f27cb2c2b0635cc9212fb82e6f112e7e681|commit]], [[https://git.kernel.org/linus/b835141be5a94c3f170107c1f5446a4a7b204ac6|commit]], [[https://git.kernel.org/linus/32919a0438946170bd944c557833186514c399f3|commit]], [[https://git.kernel.org/linus/ff146ec22d5fe136b71b31703b1bea540ffc4d5f|commit]] * phy: realtek: complete 5Gbps support and replace private constants [[https://git.kernel.org/linus/db1bb7741ff29bf2cefcbc0ca567644e9ed1caa9|commit]], [[https://git.kernel.org/linus/2b9ec5dfb8255656ca731ab9d9bf59d94566d377|commit]], [[https://git.kernel.org/linus/6c06c88fa838fcc1b7e5380facd086f57fd9d1c4|commit]] * iwlwifi: updates - 2024-02-05 [[https://git.kernel.org/linus/4d951e265c116c38862dcb1f59af5803762d4048|commit]], [[https://git.kernel.org/linus/f863afbd301ef2a29364316dd14a73699d0bc673|commit]], [[https://git.kernel.org/linus/f94c24386d04ec242207bdbdc59ccb1b0b3cfc3c|commit]], [[https://git.kernel.org/linus/814cdd7c37525133e54c667ca3cae6461ded93dd|commit]], [[https://git.kernel.org/linus/80b0c88033ff8a9a0d6817ccdeebd512bef06cc0|commit]], [[https://git.kernel.org/linus/f51d6431824f0afb9f73d68971d154c47c26b86a|commit]], [[https://git.kernel.org/linus/8b720901d97d45d477121a406cb120cee6291b55|commit]], [[https://git.kernel.org/linus/3012477cd510044d346c5e0465ead4732aef8349|commit]], [[https://git.kernel.org/linus/a20ac99b5f5ee768866b42d28138d90d89158042|commit]], [[https://git.kernel.org/linus/449619744df11873f4b4e534502e1f10653b57ce|commit]], [[https://git.kernel.org/linus/2e57b77583ca34fdb6e14f253172636c52f81cf2|commit]], [[https://git.kernel.org/linus/83f57c936b6e210d517fb5fa526895234bc974e8|commit]], [[https://git.kernel.org/linus/e047e0e3cc8b647eecf6ce644d5dacba44700d94|commit]], [[https://git.kernel.org/linus/3d801a7591824aa29fdb0774e0881890d4a773f1|commit]], [[https://git.kernel.org/linus/318b3fac347cc307b39412cd8133488a83cd73a9|commit]] * iwlwifi: updates - 2024-02-06 [[https://git.kernel.org/linus/d5bd4041cd70faf26fc9a54bd6f172537bbe77f3|commit]], [[https://git.kernel.org/linus/87f5b5f2c036cdf1ed2269b1d11f005b9bd0b2dc|commit]], [[https://git.kernel.org/linus/38a3241f2f7d6e863c71cd6f5fabf2a000d89c9f|commit]], [[https://git.kernel.org/linus/4dbc306e0736685c5298073bed19cbf9f4b4cb92|commit]], [[https://git.kernel.org/linus/e35f316bce9e5733c9826120c1838f4c447b2c4c|commit]], [[https://git.kernel.org/linus/dbc396244a5e1ce51e90abd3acc98de707445d6d|commit]], [[https://git.kernel.org/linus/b7198383ef2debe748118996f627452281cf27d7|commit]], [[https://git.kernel.org/linus/ae6d30a715210de16682369269cb6c25134ddbe2|commit]], [[https://git.kernel.org/linus/5f4e0994996fa08d57711b5b247a0cb3085ec66a|commit]], [[https://git.kernel.org/linus/ff04f78ce38d79bdbf6b1fd276a6a2d035e21951|commit]], [[https://git.kernel.org/linus/24e5252c590dd8fd9ed702e0fbe426eda78641cd|commit]] * wwan: t7xx: Add fastboot interface [[https://git.kernel.org/linus/2dac6381c3da50d4b2525fd0514e41e8041ad974|commit]], [[https://git.kernel.org/linus/007f26f0d68e28509d369fe0e71845e095bdd955|commit]], [[https://git.kernel.org/linus/409c38d4f156740bf3165fd6ceae4fa6425eebf4|commit]], [[https://git.kernel.org/linus/e3caf184107a4e2e196528b98b218ddc41e4cb8c|commit]] * renesas: Add HW checksum offload support for RZ/G2L !GbEthernet IP [[https://git.kernel.org/linus/6c8e2803ef36d3c0c20c7019a19c668c3b0ac1d1|commit]], [[https://git.kernel.org/linus/c2da9408579d52fdf9b0ec494534d6ac66d4511e|commit]] * bnxt_en: Ntuple and RSS updates [[https://git.kernel.org/linus/0c36211bac9b03de2e010597303b930211068caa|commit]], [[https://git.kernel.org/linus/7efd79c0e6893f74cd3150bfebe54e3054541702|commit]], [[https://git.kernel.org/linus/be40b4e9cac8b8f376f3669becf2a3c147d5b05b|commit]], [[https://git.kernel.org/linus/e462998abc6280ac093ca18e312d2a8ccc0df64b|commit]], [[https://git.kernel.org/linus/5de1fce3369564ca6b9eed339838c51ec6290270|commit]], [[https://git.kernel.org/linus/1018319f949ced15a66364bddf1fab08ed54817f|commit]], [[https://git.kernel.org/linus/7c8036fb71ce56ca6ce6f3f271fcbaa58e8512ae|commit]], [[https://git.kernel.org/linus/44af4b622a3d0a7c509f77ccb0689d3ca18da5cc|commit]], [[https://git.kernel.org/linus/f42822f22b1c5f72c7e3497d9683f379ab0c5fe4|commit]], [[https://git.kernel.org/linus/8336a974f37df3c5512f11c88fc96e122f1f7482|commit]], [[https://git.kernel.org/linus/9ba0e56199e3e31357ae18daec8b025fe96f26b6|commit]], [[https://git.kernel.org/linus/c8d129c437f62738e8a750f75cb4896a2d0fea60|commit]], [[https://git.kernel.org/linus/25041467d0934f7a458a7efc59697c38d9525a40|commit]] * phy: Introduce PHY Package concept [[https://git.kernel.org/linus/9b1d5e055508393561e26bd1720f4c2639b03b1a|commit]], [[https://git.kernel.org/linus/d1cb613efbd3cd7d0c000167816beb3f248f5eb8|commit]], [[https://git.kernel.org/linus/385ef48f468696d6d172eb367656a3466fa0408d|commit]], [[https://git.kernel.org/linus/471e8fd3afcef5a9f9089f0bd21965ad9ba35c91|commit]], [[https://git.kernel.org/linus/f508a226b517a6a8afd78a317de46bc83e3e3d51|commit]], [[https://git.kernel.org/linus/8453c88c7a150a5ae52382b0bfda00a4b0a643ef|commit]], [[https://git.kernel.org/linus/ee9d9807bee0e6af8ca2a4db6f0d1dc0e5b41f44|commit]], [[https://git.kernel.org/linus/dd87eaa137870bfc7aab38953384768bf1c87a3f|commit]], [[https://git.kernel.org/linus/737eb75a815f9c08dcbb6631db57f4f4b0540a5b|commit]], [[https://git.kernel.org/linus/47b930d0dd437af927145dba50a2e2ea1ba97c67|commit]] * Add octeon_ep_vf driver [[https://git.kernel.org/linus/63c7234f50e8e760fb6b0abdc2bfb6ce83d56cc9|commit]], [[https://git.kernel.org/linus/37d79d0596062057f588bdbb2ebad5455a43d353|commit]], [[https://git.kernel.org/linus/d4a3a0fc9c2d012093cf75a8d95034966c17e71e|commit]], [[https://git.kernel.org/linus/1f2c2d0cee023ca93299c322e3393af8be234ef8|commit]], [[https://git.kernel.org/linus/db468f92c3b9437dfeb1dcf55d9b7d1b97769a6c|commit]], [[https://git.kernel.org/linus/862cd659a6fbac664f1fcdd7149046040a7a7e9c|commit]], [[https://git.kernel.org/linus/4230dfc9c3f708f4765736b862aa313aa97e3c2e|commit]], [[https://git.kernel.org/linus/6a610a46bad1fd9886d9bf19f4220ecbb7c1b9ef|commit]], [[https://git.kernel.org/linus/397dfb57dcc25f393b32506eeb00600c56fe2444|commit]] * Ethernet common fault IRQ support [[https://git.kernel.org/linus/5c2215167d122be0ee51676188b95529380d3d22|commit]], [[https://git.kernel.org/linus/1963e65b3dfee3f42dcb5d40b28764ec9939792c|commit]] * dsa: realtek: variants to drivers, interfaces to a common module [[https://git.kernel.org/linus/98b75c1c149c653ad11a440636213eb070325158|commit]], [[https://git.kernel.org/linus/8685c98d45c54346caf005de69988e13c731c533|commit]], [[https://git.kernel.org/linus/ded3813b44fe11a3bbd2c9d7df8870e8c19a7ccd|commit]], [[https://git.kernel.org/linus/9fc469b2943d9b1ff2a7800f823e7cd7a5cac0ca|commit]], [[https://git.kernel.org/linus/bce254b839abe67577bebdef0838796af409c229|commit]], [[https://git.kernel.org/linus/bba140a566ed075304c49c52ab32c0016cab624a|commit]], [[https://git.kernel.org/linus/33f4336cbd32c21717b60d013693a0bd51a27db6|commit]], [[https://git.kernel.org/linus/68c66d8d8a19088967a0ab6bb98cb5ecc80ca0be|commit]], [[https://git.kernel.org/linus/8be040ecd94c1a9a137927d18534edfae0a9b68a|commit]], [[https://git.kernel.org/linus/4667a1db2f550d23e01ba655fce331196ead6e92|commit]], [[https://git.kernel.org/linus/b4bd77971f3c290c4694ed710cc6967593b10bc2|commit]] * r8169: add LED support for RTL8125/RTL8126 [[https://git.kernel.org/linus/be51ed104ba9929c741afb718ef7198dbcecef94|commit]] * ice: add E825C device family support [[https://git.kernel.org/linus/372e27de4ca8e5f22586198cd9429bfea75021ac|commit]], [[https://git.kernel.org/linus/7a15668f665c014f345761fdc283051b97a48e00|commit]], [[https://git.kernel.org/linus/f64e189442332f198cea239eee4da6f72465059e|commit]] * m_can: Optimizations for m_can/tcan part 2 [[https://git.kernel.org/linus/db88681c4885b8f2f07241c6f3f1fcf2d773754e|commit]], [[https://git.kernel.org/linus/251f913d19a8a960126359c20bd5719461e5399f|commit]], [[https://git.kernel.org/linus/9515223bd0bb9bb0a31b61a68f1049148c1d85ff|commit]], [[https://git.kernel.org/linus/e55b963e4e94011e9de7a6448ea8e50a12bb9953|commit]], [[https://git.kernel.org/linus/ba72f6c78b9beb3d85736b62b8167eaa93e0866b|commit]], [[https://git.kernel.org/linus/1fa80e23c15051edc1c594270517de3517ded798|commit]], [[https://git.kernel.org/linus/7508a10ca295c635fad9c9f34ac96384d806af89|commit]], [[https://git.kernel.org/linus/c306c3873de0804bea4bb2ac717bd2c088acc589|commit]], [[https://git.kernel.org/linus/4248ba9ea24fa2c8a2106bfb14f775035e9ea8aa|commit]], [[https://git.kernel.org/linus/e668673ed3992579f23413a13d7ed314cb62ee74|commit]], [[https://git.kernel.org/linus/a163c5761019b94258ca655b27b46e82657fd6f5|commit]], [[https://git.kernel.org/linus/14f0a0a4407ebb6f36eb7d394d497d4632c654dc|commit]], [[https://git.kernel.org/linus/ec390d0876170c075fb5ada568db1e03dd790b5b|commit]], [[https://git.kernel.org/linus/07f25091ca0265da65ea7a4bd2409c627f529c6f|commit]], [[https://git.kernel.org/linus/80c5bac02a820dc569e38e102456ec4b34f6f607|commit]] * extend EEE tx idle timer support [[https://git.kernel.org/linus/9c50139727265c088f936e496777bf588850e9f1|commit]], [[https://git.kernel.org/linus/57d2d2c8f132c830565058a5cdd8138350e068ec|commit]], [[https://git.kernel.org/linus/2ce30993831041b9dcd31eb12896be6611e8b7e2|commit]] * ath11k: save max transmit power in vdev start response event from firmware [[https://git.kernel.org/linus/46f20de2c4f8faadea12679a3edb2082f35dcf1e|commit]] * ath12k: support some new strings while searching board/regdb data in board-2.bin [[https://git.kernel.org/linus/52f8c45fa36df0754b4562b7b535be8475304ebe|commit]], [[https://git.kernel.org/linus/511207452221a94242664be47c4ceb63d5c6b293|commit]], [[https://git.kernel.org/linus/97474e5f54243be13d72cbda50624f0114213c7d|commit]], [[https://git.kernel.org/linus/62abdc06c50eb18e3fa62f7136e66842a96f6b58|commit]], [[https://git.kernel.org/linus/f4c2a9d62213cf7004db5c74ce12d26d63a23629|commit]] * rtl8xxxu: Add concurrent mode for 8188f [[https://git.kernel.org/linus/3f9baa99f8429ea6f56e7cc8d881c027518e9573|commit]], [[https://git.kernel.org/linus/073401c3b6b9eaea027240baf07f2b84dd2d2d26|commit]], [[https://git.kernel.org/linus/5ce0d7e8aee03e73b35f0fe1f1ebbdd4e45776f3|commit]], [[https://git.kernel.org/linus/b837f78fbffa5f8e7e7c59879db54793abf161ec|commit]], [[https://git.kernel.org/linus/9aa776209ca31695bead52674ad943848ccc97d5|commit]], [[https://git.kernel.org/linus/80fd8687db41b1e04f78c37137d090f2165cca6e|commit]], [[https://git.kernel.org/linus/1cd165adf314f6bf25cde58f02f4ff51d01730b0|commit]], [[https://git.kernel.org/linus/69abad618efd17e50bc6f880332ab36b660b0b34|commit]], [[https://git.kernel.org/linus/2bbd7d584046038ce655e476628bb15e1460fac6|commit]], [[https://git.kernel.org/linus/05b22e9b7d84253f765cde01cb09d144094b61c9|commit]], [[https://git.kernel.org/linus/61fdbd9e2a9d74c716bf4d9684653de5efdee691|commit]], [[https://git.kernel.org/linus/6b76638287055791e74b32c401a39ea1b91e7158|commit]], [[https://git.kernel.org/linus/eef55f1545c92c7181d5083453dee1296298ad3e|commit]], [[https://git.kernel.org/linus/7f444692cde83c1455682c2d0d2c9a666422b867|commit]], [[https://git.kernel.org/linus/43532c050f8eec4056a21978fdb5b958e1477553|commit]], [[https://git.kernel.org/linus/d55cb6d8a99441aff55cb9ce663a07f7f1667e83|commit]], [[https://git.kernel.org/linus/f86dd8eaf8da84ee5b803d90b8c311d7e2725d0b|commit]], [[https://git.kernel.org/linus/00add60cad3c9690ac0f9d4f6685f96ccd607670|commit]], [[https://git.kernel.org/linus/a047e46a7b98de384a158b25a05dc09aa7d70c5f|commit]], [[https://git.kernel.org/linus/f232e9d91bb84817c60c051a3e3b56dd2721a7b3|commit]], [[https://git.kernel.org/linus/3ff7a05996f901a7a10068b42e9dc8435f908a4c|commit]] * rtw89: update H2C commands of BA CAM, TX pause and beacon [[https://git.kernel.org/linus/e3552b37dacea361a2ae488cc10c3d2e243ee514|commit]], [[https://git.kernel.org/linus/c313c31ff40d6fe65570eaf237c8ba4428aeace6|commit]], [[https://git.kernel.org/linus/3b96833a5727135a206001f941b43288f6d61099|commit]], [[https://git.kernel.org/linus/5d461dba16fa0887ad434b66298b3f8dd2d13235|commit]], [[https://git.kernel.org/linus/bcd1ae78448ea15d5d93ac5e07070e46e5d082da|commit]], [[https://git.kernel.org/linus/6f066439f9dc9584543aac3d60cfecba10c4a579|commit]], [[https://git.kernel.org/linus/69466b979a72008022ee7c054b6123488eb00472|commit]], [[https://git.kernel.org/linus/cdd368ce1ca4a6d70dc08da4175309a93ed88062|commit]], [[https://git.kernel.org/linus/2d623151bf26c81e6af4847907a01935f0a5285e|commit]], [[https://git.kernel.org/linus/a880b9283009b312a7a5e8f03e068712f8750651|commit]] * ath11k: add support for 6 GHz station for various modes : LPI, SP and VLP [[https://git.kernel.org/linus/ddd7f45c899f7524bdbe6a32fe4906cde8b07b9b|commit]], [[https://git.kernel.org/linus/6f4e235be6550f67791616d88682fb99f4e670e4|commit]], [[https://git.kernel.org/linus/7004bdceef605e5c1c5ab4aaf282002ad7523ddd|commit]], [[https://git.kernel.org/linus/ed0a61dcb2d3936cf15dfc04341c4d0fc297919f|commit]], [[https://git.kernel.org/linus/74ef2d05ede63fd6416aa635aa8972dff901325f|commit]], [[https://git.kernel.org/linus/cf2df0080bd59cb97a1519ddefaf59788febdaa5|commit]], [[https://git.kernel.org/linus/f8a573bd5f3b1c272c431831add259deabfd9948|commit]], [[https://git.kernel.org/linus/e3d373ec4f02bf41379d91707e3e3f2a46464cd7|commit]], [[https://git.kernel.org/linus/1329beb56297021042788223e666f6ccd2e11a0a|commit]], [[https://git.kernel.org/linus/17144d32e90708cd5532055f3d9894ced9ac45a2|commit]], [[https://git.kernel.org/linus/92425f788feede9bf152ecf3fb7a264942ee7719|commit]] * rtl8xxxu: channel switch support [[https://git.kernel.org/linus/4a56e9652ec2ffce87b099aa2fc5b4eb2d5b2666|commit]], [[https://git.kernel.org/linus/ece90a8622320bf5a24d3326da1f8e109891573c|commit]], [[https://git.kernel.org/linus/1213acb478a7181cd73eeaf00db430f1e45b1361|commit]] * ath12k: some improvement to RX throughput [[https://git.kernel.org/linus/955df16f2a4c3023753680925e71e099818c2329|commit]], [[https://git.kernel.org/linus/b0970f50839ecbb71d43914fe88ea7eeb3416a21|commit]], [[https://git.kernel.org/linus/60b9376583217c8726be0a57d9ff71d52e9ce261|commit]] * rtw89: declare EHT capabilities [[https://git.kernel.org/linus/4f47e0cf1a84debed285b2b6a4a567a2cfec7e9b|commit]], [[https://git.kernel.org/linus/9156181f62744ddea2f2b7a5d7180c08f143a056|commit]], [[https://git.kernel.org/linus/c5bdcddaa32c602a8864a3a1df3a10429f0ed8a9|commit]], [[https://git.kernel.org/linus/c19443700370d77f400625246df9a825f4ff85f4|commit]] * tsnep: Add link down PHY loopback support [[https://git.kernel.org/linus/5f76499fb541c3e8ae401414bfdf702940c8c531|commit]] * rtw89: fw: add H2C commands to set security CAM, CMAC, DMAC and JOIN [[https://git.kernel.org/linus/011e276865d32db280381a166ac9245451555459|commit]], [[https://git.kernel.org/linus/85eacdcabd0f9293fd20e598424a1cf990542b73|commit]], [[https://git.kernel.org/linus/7992619306562fa70fc2ed9ee859daf5408b0c1f|commit]], [[https://git.kernel.org/linus/7e24cc86c9c9ac5102494e89289a4a276da9c224|commit]], [[https://git.kernel.org/linus/8d666e57545525e160af96f52ba5027c5f3430de|commit]], [[https://git.kernel.org/linus/3832a9c40b356500c5b85a6fdf9577c590fcd637|commit]], [[https://git.kernel.org/linus/3d49ed071582c612815a20463e727a4b8b2875fd|commit]], [[https://git.kernel.org/linus/999db6f48b28008d0045d29b739d0d670a9ab453|commit]] * iwlwifi: updates - 2022-01-23 [[https://git.kernel.org/linus/289f57bbef09b0a2385a5187274e37d76031de14|commit]], [[https://git.kernel.org/linus/fdccafad7e9b49e75fb484c5aa29954d34f3c63a|commit]], [[https://git.kernel.org/linus/de0c2cdcb7eb8e08f3886b433277472d97af0f6e|commit]], [[https://git.kernel.org/linus/dfdfe4be183b27b278d78225d48b98b3c1ca6285|commit]], [[https://git.kernel.org/linus/099a47dbe71b758e6875d0297467f2b8d23014df|commit]], [[https://git.kernel.org/linus/3a3ef3940798e85121066a859127e72a528dc32a|commit]], [[https://git.kernel.org/linus/38d84aaed52832945887ae8618bed68c89a3bf81|commit]], [[https://git.kernel.org/linus/c4d32f2745c75c9041937767f0329f6f1051778b|commit]], [[https://git.kernel.org/linus/37f7ec38ea5c31180461f82e895e13fdd549b595|commit]], [[https://git.kernel.org/linus/22d9987c79cb8d1d04625cde5f63fc01abae2b6a|commit]], [[https://git.kernel.org/linus/cf74ce02e394109e16efcb4f15a8e885e9a834a7|commit]], [[https://git.kernel.org/linus/6c8ce23854b66db94d88e0957e531cb074806c16|commit]], [[https://git.kernel.org/linus/47cde0942959ca11855e1aa5d66209d8625c2a2b|commit]], [[https://git.kernel.org/linus/77b8b078440eb136efd03427404134e1d88dca50|commit]] * phy: generic polarity + LED support for qca808x [[https://git.kernel.org/linus/7196062b64ee470b91015f3d2e82d225948258ea|commit]], [[https://git.kernel.org/linus/91e893b43d1c8e8b6f4ba0737b597091423024f3|commit]], [[https://git.kernel.org/linus/7ae215ee7bb855f13c80565470fc7f67db4ba82f|commit]], [[https://git.kernel.org/linus/355c6dc37efa7fe6a64d155254cec8e180e5e6cb|commit]], [[https://git.kernel.org/linus/c94d1783136eb66f2a464a6891a32eeb55eaeacc|commit]] * dsa: microchip: implement PHY loopback [[https://git.kernel.org/linus/9e62bed6e105f2f522e360a024fc93c64c58a207|commit]], [[https://git.kernel.org/linus/d1b7d0d85d59bfe6f57b1604a922466e4f8ee734|commit]], [[https://git.kernel.org/linus/0c657f860e675e051553c579669804d21da52364|commit]] * octeontx2-af: Add filter profiles in hardware to extract packet headers [[https://git.kernel.org/linus/c57e32fb29f20535bfa8b5ec45285d0bf0370ecd|commit]] * Bluetooth * btusb: Add Realtek RTL8852BE support ID 0x0bda:0x4853 [[https://git.kernel.org/linus/d1a5a7eede2977da3d2002d5ea3b519019cc1a98|commit]] * btrtl: Add the support for RTL8852BT/RTL8852BE-VT [[https://git.kernel.org/linus/1fb9943146968ee542a2bb7ea05b90e3ca7481cf|commit]] * btusb: Add new VID/PID 13d3/3602 for MT7925 [[https://git.kernel.org/linus/560ff4bc99070bfb493018b6b7045af269a008a4|commit]] * btusb: Add support Mediatek MT7920 [[https://git.kernel.org/linus/1cb63d80fff6c4f501469e28a0eb6379639e0711|commit]] * RDMA/hns: Support configuring congestion control algorithm with QP granularity [[https://git.kernel.org/linus/6ec429d5887a41b2dc8d92e391552f5604085cc2|commit]], [[https://git.kernel.org/linus/d20a7cf9f714f0763efb56f0f2eeca1cb91315ed|commit]] * netdevsim: link and forward skbs between ports [[https://git.kernel.org/linus/8ee60f9c41fb01440e8a8f97127869c9b1978362|commit]], [[https://git.kernel.org/linus/dfb429ea4f2db6a946ada94cce8955e87906e6b5|commit]], [[https://git.kernel.org/linus/8debcf5832c3e8a6baaea27c75ad8a6ba5077beb|commit]], [[https://git.kernel.org/linus/9eb95228a74163e26d338913a5d61e571ea45307|commit]], [[https://git.kernel.org/linus/f532957d76de89b8ee2545cb6ad5265e1701d0ba|commit]] == Audio == * virtio: add support for audio controls [[https://git.kernel.org/linus/d6568e3de42dd971a1356f7ba581e6600d53f0a0|commit]] * firewire-motu: add support for MOTU 896 mk3 !FireWire and Hybrid [[https://git.kernel.org/linus/6d5a2dda9beacfbec60e764356144438da12b597|commit]] * HDA: intel-sdw-acpi: add kernel parameter to select alternate controller [[https://git.kernel.org/linus/3d6a89a6dc58f2a96daf7fd4232970794ffbb188|commit]] * hda/realtek: cs35l41: Support ASUS ROG G634JYR [[https://git.kernel.org/linus/0bfe105018bd2d7b1e4373193d9b55b37cf4458b|commit]] * hda: cs35l41: Support additional HP Envy Models [[https://git.kernel.org/linus/33e5e648e6311135e4ada01bcfb6ff54be98926d|commit]] * hda: cs35l56: Add support for CS35L54 and CS35L57 [[https://git.kernel.org/linus/769dca2316d69f8e86b7761d7072752cba710f58|commit]] * hda: cs35l41: Support HP models without _DSD using dual Speaker ID [[https://git.kernel.org/linus/92bf7367857e2a36dc6ec3c0bcadfc8c0b74d1b3|commit]] * Support HP Models without _DSD [[https://git.kernel.org/linus/aa8e3ef4fe5332c2ce33507e874b20d9c0077c21|commit]], [[https://git.kernel.org/linus/92bf7367857e2a36dc6ec3c0bcadfc8c0b74d1b3|commit]], [[https://git.kernel.org/linus/33e5e648e6311135e4ada01bcfb6ff54be98926d|commit]], [[https://git.kernel.org/linus/135096ebfab656823d0037102a00776f3914fee3|commit]] * ASoC * codecs: add support for WCD939x Codec [[https://git.kernel.org/linus/395228688d9a1dfb7143947729e12db1f762fa1b|commit]], [[https://git.kernel.org/linus/10f514bd172a40b9d03d759678e4711612d671a1|commit]], [[https://git.kernel.org/linus/be2af391cea018eaea61f929eaef9394c78faaf2|commit]], [[https://git.kernel.org/linus/0c105997eefd98603796c4e5890615527578eb04|commit]], [[https://git.kernel.org/linus/edf647d1335fd55c81cdb8cc8cbf1da7d97739df|commit]], [[https://git.kernel.org/linus/166ee0b3bfbb3611579c77fc84e44cd27a0099ef|commit]] * acp: Support microphone from device Acer 315-24p [[https://git.kernel.org/linus/4b9a474c7c820391c0913d64431ae9e1f52a5143|commit]] * Support SAI and MICFIL on i.MX95 platform [[https://git.kernel.org/linus/b4da82cf8009c5277c79fde0784a34c3073c699d|commit]], [[https://git.kernel.org/linus/2f2d78e2c29347a96268f6f34092538b307ed056|commit]], [[https://git.kernel.org/linus/52523f70fdf9b2cb0bfd1999eba4aa3a30b04fa6|commit]] * codecs: ES8326: Adding new volume kcontrols [[https://git.kernel.org/linus/966323dd9a65dde599f59176280468a0cb04c875|commit]] * Intel: mtl-match: Add cs42l43_l0 cs35l56_l23 for MTL [[https://git.kernel.org/linus/84b22af29ff6c74e09e3faa0ad52c843cca1f426|commit]] * Add support for QMC HDLC, framer infrastructure and PEF2256 framer [[https://git.kernel.org/linus/a9a0303dfe3fe2bc04512c4ce6a589131845d386|commit]], [[https://git.kernel.org/linus/7cc9bda9c163877255a61a052987ce6b85da1263|commit]], [[https://git.kernel.org/linus/32881b253c945ea1493abc18e25928808331f5df|commit]], [[https://git.kernel.org/linus/37c646dc515a28eb38cc2495c34fb219f153e916|commit]], [[https://git.kernel.org/linus/7a2ee1576dcc6bbe017a8283fba237b05b13fd15|commit]], [[https://git.kernel.org/linus/ba3b7e4753c5ad80b3670277a2104aeb421e0d7d|commit]], [[https://git.kernel.org/linus/2d965e25fa4180988a1ef4f07803fa7a182a4ae5|commit]], [[https://git.kernel.org/linus/fc0c64154e5ddeb6f63c954735bd646ce5b8d9a4|commit]], [[https://git.kernel.org/linus/796992282cb046939cbbcbd0051e804095304fa4|commit]], [[https://git.kernel.org/linus/f2deea16bf187ad6e1f2a7b0d2fd0b1a4db0b1b7|commit]], [[https://git.kernel.org/linus/82c944d05b1a24c76948ee9d6bb1d7de1ebb8b3a|commit]], [[https://git.kernel.org/linus/b1891c13645b67c9cd2c661a693b9b6b56b87e80|commit]], [[https://git.kernel.org/linus/9217161115bfb76ae7b3b9e5a803f554a1c5e76a|commit]], [[https://git.kernel.org/linus/c96e976d9a05d559f4ac4f617ea0f798c75a1799|commit]], [[https://git.kernel.org/linus/dfe66d012af2ddfa566cf9c860b8472b412fb7e4|commit]], [[https://git.kernel.org/linus/48490dc36742b616f846368f300ebedfe9323da1|commit]], [[https://git.kernel.org/linus/0e034aec5be2e8b1199b87b04d32e4a8b805a9db|commit]], [[https://git.kernel.org/linus/766f5f900f156655c04230403fffdfb169a511ed|commit]], [[https://git.kernel.org/linus/f0c9c45c78989ece6a29973759508ad2797eb844|commit]], [[https://git.kernel.org/linus/fe612629746cf5cc7040529f780d46929605d0a6|commit]], [[https://git.kernel.org/linus/6f9b814d3765b2425da235570b1318c952142f1a|commit]], [[https://git.kernel.org/linus/0e85feacc8156b230285040d82537c922cc15fe6|commit]], [[https://git.kernel.org/linus/54762918ca856028d33d1d56d017a4d7706c6196|commit]], [[https://git.kernel.org/linus/1e95d20ae8e6a383b4c1dd2282e5259790724037|commit]], [[https://git.kernel.org/linus/0d75119d08448cb94583467c01adb212b0728502|commit]], [[https://git.kernel.org/linus/9b7a69d0bd2bb7bcf1b811f273a27be929520b61|commit]] * SOF: Extend ChainDMA and DSPless mode to LNL+ SDW [[https://git.kernel.org/linus/0c3d57365a03ec920cc90614527ac11ad5a6f323|commit]], [[https://git.kernel.org/linus/2065610b5ddd5b58eed1dc3b3c3db27a26ebd4b6|commit]], [[https://git.kernel.org/linus/8722d245a73ff32491bff390136367ec223e2906|commit]], [[https://git.kernel.org/linus/df82dbb5fb28a762113fc6d98985d36ef7785e32|commit]], [[https://git.kernel.org/linus/ba91d0919a78d344d19b02a3899d0921b2f903d1|commit]], [[https://git.kernel.org/linus/f9618ff105a0f6f5a6beed3edc557ea6a7d26df6|commit]], [[https://git.kernel.org/linus/797b92591a236ac370257c1e742f6fd394993db5|commit]], [[https://git.kernel.org/linus/0afce89ff88a85b09201cd23ec272527faf6a480|commit]], [[https://git.kernel.org/linus/d69f9ecbe1ecfa97b9c8ab7b6332bd73ba2ff4d8|commit]], [[https://git.kernel.org/linus/67bde2e8c0e4702911dd614d80127e098521a83c|commit]], [[https://git.kernel.org/linus/3858464de57b77db51f83e3831950cf18a6aff28|commit]], [[https://git.kernel.org/linus/daa09d0615ce9c781777802874cffa4380f883c3|commit]], [[https://git.kernel.org/linus/426476344f01096c7dae6c5413cc8a8d9bbdea29|commit]], [[https://git.kernel.org/linus/a5b7767723e739c700f5c56841790a85bd7f13ae|commit]], [[https://git.kernel.org/linus/743eb6c68d3534e01e73d316ddcaa7334c0e29d3|commit]] * Intel: avs: TGL-based platforms support [[https://git.kernel.org/linus/b96ccdcf9d58ed49a576ee9ad10e94e98b9bbb2e|commit]], [[https://git.kernel.org/linus/8a6502ade116bc4b8293f094f8d74059c67c3f27|commit]], [[https://git.kernel.org/linus/275b583d047a23c48d01b0c45fb5d95618c1da2d|commit]], [[https://git.kernel.org/linus/e1a0cbae52d0bf3cb350eba5c95c46c14a5bcda4|commit]], [[https://git.kernel.org/linus/a8f858d98f016a0209edaf1518fd45a5e5c62d47|commit]], [[https://git.kernel.org/linus/5b417fe0cded0b5917683398e6519aae8045cd40|commit]], [[https://git.kernel.org/linus/1b72943ab1159ad27c11a302644fabb8bc2881bb|commit]], [[https://git.kernel.org/linus/5acb19ecd1982bd1578912473b33df75a23fefc2|commit]], [[https://git.kernel.org/linus/97bd565ff5a2fc89d302f9919fde37fadf51b645|commit]], [[https://git.kernel.org/linus/7576e2f4d99df6efabb77f52b9539fd345233aee|commit]], [[https://git.kernel.org/linus/36478a74c7ddaf58d80da5cef9c5ddb5beed5a2e|commit]] * cs35l56: Add support for CS35L54 and CS35L57 [[https://git.kernel.org/linus/afd17e6debf9494af778a58ec7706da05ede0730|commit]] * codecs: add support for WCD939x Codec [[https://git.kernel.org/linus/395228688d9a1dfb7143947729e12db1f762fa1b|commit]], [[https://git.kernel.org/linus/10f514bd172a40b9d03d759678e4711612d671a1|commit]], [[https://git.kernel.org/linus/be2af391cea018eaea61f929eaef9394c78faaf2|commit]], [[https://git.kernel.org/linus/0c105997eefd98603796c4e5890615527578eb04|commit]], [[https://git.kernel.org/linus/edf647d1335fd55c81cdb8cc8cbf1da7d97739df|commit]], [[https://git.kernel.org/linus/166ee0b3bfbb3611579c77fc84e44cd27a0099ef|commit]] * soundwire/SOF: add !SoundWire Interface support for AMD SOF stack [[https://git.kernel.org/linus/260b08aed4a770335ece16781d8023e9ff488ae0|commit]], [[https://git.kernel.org/linus/c1263c75294cc8178ca964e0220b35518d6fb38d|commit]], [[https://git.kernel.org/linus/d948218424bf9194860fcc10259ff42487cf4bd9|commit]], [[https://git.kernel.org/linus/fa90c54f6d27664cc67691f9e52d9165e0c25ca7|commit]], [[https://git.kernel.org/linus/8af5c7e9cc89ebc6427ef8fde1de77e88ddd3e05|commit]], [[https://git.kernel.org/linus/2188c2cfaa4f431c1d537bb029a6e9b0810b7e7f|commit]], [[https://git.kernel.org/linus/ed5e8741b8db908d51a26e368c18573ee1b9e208|commit]], [[https://git.kernel.org/linus/5f97c59a77421a5e8aa3b5c4cbdda66a3c956e44|commit]], [[https://git.kernel.org/linus/ed0ef85795b58134172e8c82ab2f1b869cd501a6|commit]], [[https://git.kernel.org/linus/96eb818510120a869711876026ca7c0aa2b4171e|commit]], [[https://git.kernel.org/linus/cf0ddbc29dfaacb26d58a594619e42ced286ff29|commit]], [[https://git.kernel.org/linus/aff9d088a306541117e420d96ed6b6f1215a7e2d|commit]], [[https://git.kernel.org/linus/14d89e55dec9c4e49d196b9d5d659d02dcc8252b|commit]] * Intel: avs: Add support for sending initial module config [[https://git.kernel.org/linus/8a49ef789b1be68242624d460df2ada8087308a7|commit]], [[https://git.kernel.org/linus/1b4217ebbb3e9d9b014db660618a4ddb61b3c321|commit]], [[https://git.kernel.org/linus/a5766cd479fd212e9831ceef8e9ab630c91445ab|commit]] * Intel: soc-acpi-intel-lnl-match: Add rt722 support [[https://git.kernel.org/linus/7fa43af5b4cc78c4616d8345740203807593ed43|commit]] * Intel: Machine driver updates for 6.9 [[https://git.kernel.org/linus/def127feaa8a9d8684ac41139638b079e6e637e2|commit]], [[https://git.kernel.org/linus/8266c73126b75eabbebefe7ce489a798e9ef2662|commit]], [[https://git.kernel.org/linus/6b4c7d4d8297a9f395ff4addba8e5fde7f730c37|commit]], [[https://git.kernel.org/linus/c13e03126a5be90781084437689724254c8226e1|commit]], [[https://git.kernel.org/linus/7a2a8730d51f95b263a1e8b888598dc6395220dc|commit]], [[https://git.kernel.org/linus/fff04329ac4bd21951d65f29934c15ff7e4b03a1|commit]], [[https://git.kernel.org/linus/1b7f775209bbee6b993587bae69acb9fc12ceb17|commit]], [[https://git.kernel.org/linus/c1469c3a8a306e5f1eab1ae9585640d08e183f87|commit]], [[https://git.kernel.org/linus/dbda8647fb9ff39a957018673249d6bc0b1ccbf1|commit]], [[https://git.kernel.org/linus/49f679a175b4fbdea88ba8787c22bce90c60565b|commit]], [[https://git.kernel.org/linus/528ee84f0fe08788b2e72aad7bc8a13dd2a169ca|commit]], [[https://git.kernel.org/linus/4ca5ba58f15ae5a9ad1fa7a5f0d0e50b03b36614|commit]], [[https://git.kernel.org/linus/9be229ffc7a46c645a39d5993a2709d9936e046a|commit]], [[https://git.kernel.org/linus/5da85a3523b5acd3a00347cae32ae2ffe4f4ac8a|commit]], [[https://git.kernel.org/linus/922edacfadf8ca0c9a13788badaf18d41db29cd1|commit]], [[https://git.kernel.org/linus/996727aad856e55f6e65fdc6093281e51f0534da|commit]], [[https://git.kernel.org/linus/0bbb0136b4e7729f533b1b3eb805c4217086e4ce|commit]], [[https://git.kernel.org/linus/579d6596ebea488ad661bfa484c771c2b47eecc5|commit]], [[https://git.kernel.org/linus/9f3763b3628def09440f1f0405cc127104c31634|commit]] * Intel: avs: Expose FW version with sysfs [[https://git.kernel.org/linus/f7fc624be3dbfb78047a1cab795b93c7235fbf1c|commit]] == Tablets, touch screens, keyboards, mouses == * xpad - add support for ASUS ROG RAIKIRI [[https://git.kernel.org/linus/be81415a32ef6d8a8a85529fcfac03d05b3e757d|commit]] * navpoint: remove driver [[https://git.kernel.org/linus/f0eb58dd08770a2e24bfc41db5ee3ff7c3a684ee|commit]] * iqs7222: add support for IQS7222D v1.1 and v1.2 [[https://git.kernel.org/linus/992cf65674778e22436807796b2df927de21bb75|commit]] * imagis: add touch key support [[https://git.kernel.org/linus/2d77f70bb7180060072b9c2406d67e4b3872af15|commit]] * imagis: add support for IST3032C [[https://git.kernel.org/linus/90cb57a6c5717b83a110c0da720a03ee32ed255e|commit]], [[https://git.kernel.org/linus/d88f84bfccd2a17a81fbf404eaae77208e827c31|commit]], [[https://git.kernel.org/linus/10ad7d7a428f7bb336c3cb226ab8aa0e6a947dac|commit]], [[https://git.kernel.org/linus/c53d309a4299fffde14e281440a25c2355d8b621|commit]], [[https://git.kernel.org/linus/54a62ed17a705ef1ac80ebca2b62136b19243e19|commit]] * add initial support for Goodix Berlin touchscreen IC [[https://git.kernel.org/linus/3aa182bbc5b657329a8b85fa5303b8af0f461636|commit]], [[https://git.kernel.org/linus/fba09e817c66f9731c71fe7cdd4556f7d989f1cb|commit]], [[https://git.kernel.org/linus/44362279bdd481b1b2aefb15e9fc54a2fcd846c1|commit]], [[https://git.kernel.org/linus/9c81ef43576e1721c442424abac48717da5e6266|commit]] * xpad: add support for Snakebyte GAMEPADs [[https://git.kernel.org/linus/81c32343d04f8ca974681d5fb5d939d2e1f58851|commit]] * HID * intel-ish-hid: ipc: Add Arrow Lake PCI device ID [[https://git.kernel.org/linus/4d05105e7c64f1abfd876b4d646eeb929fd577e8|commit]] * Patchsets for Samsung driver [[https://git.kernel.org/linus/ac203cdbe97a197dddd2925c542ad5a52a8693fa|commit]], [[https://git.kernel.org/linus/6168f717afc368747a368188e8a98df90b5740d5|commit]], [[https://git.kernel.org/linus/9b8e4adad160f5d084f28eb6075dadd1efe80c65|commit]], [[https://git.kernel.org/linus/944536c2a4de9dadd39bda5e8e4f2617df8c3b57|commit]], [[https://git.kernel.org/linus/46e779b087f6061d6453f3b263cc8602b407b6d1|commit]], [[https://git.kernel.org/linus/e7290046728627e8c7a8f49632581437ab6d4300|commit]] == TV tuners, webcams, video capturers == * ti: j721e-csi2rx: add support for RGB formats [[https://git.kernel.org/linus/5eb0ad467cb0cf8f9a6621d079a1f7ecd804153f|commit]] * ti: j721e-csi2rx: add GREY format [[https://git.kernel.org/linus/24a4e4025d1a3d9b502d20b147a8baec8900eb24|commit]] * imx-jpeg: Support for negotiating bytesperline with client [[https://git.kernel.org/linus/c8027d79e0ab37ae7751e2e974ec06016cf9f56c|commit]] * cadence: csi2rx: add support for RGB formats [[https://git.kernel.org/linus/77759eb0b895e6be7ab1fbbfdf064b6fea62b406|commit]] * imx335: Add support for test pattern generator [[https://git.kernel.org/linus/37e83782f9dd7bb830ef4714f04fae6605e43221|commit]] * rkisp1: Add support for i.MX8MP [[https://git.kernel.org/linus/9c140d9926761b0f5d329ff6c09a1540f3d5e1d3|commit]], [[https://git.kernel.org/linus/6e6822893fa913f8573da21c693e8edc250ca0c8|commit]], [[https://git.kernel.org/linus/fdac4ce9f4fd2120b439d29607f922665ffe31f6|commit]], [[https://git.kernel.org/linus/bcb40cc11309a787a2bdefb3a77380151d1739a1|commit]], [[https://git.kernel.org/linus/6c144351f2366c590336cc6c23918e20c43ef938|commit]], [[https://git.kernel.org/linus/9f9cd26aec8406bbae42d7d2afe23a5d368b7b9a|commit]], [[https://git.kernel.org/linus/82754080edbaf3f756c0efc3a9b153565e791bdd|commit]], [[https://git.kernel.org/linus/0a593f711ac7fb775ac132e9f5fea54ae2a0d85d|commit]], [[https://git.kernel.org/linus/900f6676760d56c4bd091ac66494141977a429a9|commit]], [[https://git.kernel.org/linus/da1484c7ba028f06274630ea2b6a2e51f6ec201a|commit]], [[https://git.kernel.org/linus/716f9748963922c205e7696d2cbc4ee50f0743e9|commit]], [[https://git.kernel.org/linus/2db6cad8c13a476efaee23c9209ee3de29bf9427|commit]], [[https://git.kernel.org/linus/fd62bd4e1f1f9a075656ecce7773816e65516b3d|commit]] * imx335: Support additional link-freq and TPG [[https://git.kernel.org/linus/a6403dddaebf32a3cad3763924a10be02ed327e0|commit]], [[https://git.kernel.org/linus/2d5aea517c195d32ccf73be8543da9d4ec539503|commit]], [[https://git.kernel.org/linus/a95253d83297f8c740cad822df4b5288c0c10c04|commit]], [[https://git.kernel.org/linus/afa6f62e46df5385e318a8f38382e8cc5564c377|commit]], [[https://git.kernel.org/linus/14a60786d72edb73809362a296b8694ffc85d36a|commit]] * IPU bridge improvements for IPU6 [[https://git.kernel.org/linus/bef852dcd5a16418856b69699484c7df6803917b|commit]], [[https://git.kernel.org/linus/e0251c2a1dec8b71af5ea030564b2ca3d937b0fc|commit]], [[https://git.kernel.org/linus/ec86a04bedb1727c847552dd270df9fdbc098cf4|commit]] * Add support for video hardware codec of STMicroelectronics STM32 SoC series [[https://git.kernel.org/linus/87f7f576e3d83fffbd067b058ad77e012a32b3de|commit]], [[https://git.kernel.org/linus/d96a6119e332f4ae5cdd55698da68d372aede2d0|commit]], [[https://git.kernel.org/linus/b0fb9ca30a67edeb8baf6b64014904ebb8ccf0e2|commit]], [[https://git.kernel.org/linus/46c4dffb74a477aba4d741118beb90c8dfaa9939|commit]], [[https://git.kernel.org/linus/60314831d2942b6eab974af74d2238dffc321359|commit]] * Add support MDP3 on MT8195 platform [[https://git.kernel.org/linus/4294b9d6c8c40501e2dd824f6aad3f0b981cedf1|commit]], [[https://git.kernel.org/linus/bd2fac0048ed09480eecd82d86cefedcf0167399|commit]], [[https://git.kernel.org/linus/ee0d0dbb80f6bd812db80f369562fd85d3ac567c|commit]], [[https://git.kernel.org/linus/0e9bd2fcda5dfc0d703c659d4b7ba2cf07dfdb9f|commit]], [[https://git.kernel.org/linus/9288eae430cbc4de82e82f295ccf7c5d877c0c2b|commit]], [[https://git.kernel.org/linus/51d918d62b0facd7be0d8d1ad66a8c6c589f34b3|commit]], [[https://git.kernel.org/linus/d9b52f735668183ecb1d127881135af4c150e39d|commit]], [[https://git.kernel.org/linus/d97fd41e83f4468e1abb58b0a706456bc7f65162|commit]], [[https://git.kernel.org/linus/e280d1a0eb93354c46f503700b38d3660c34b3dd|commit]], [[https://git.kernel.org/linus/92cdfc39af1b8f582b21f863ccd9983b9813b554|commit]], [[https://git.kernel.org/linus/73e00953c3601008a7f500e25a1767b1012b2091|commit]], [[https://git.kernel.org/linus/adce64c4cef6f08ac6fa51546d94d3a49a66144f|commit]] * misc improvements for j721e-csi2rx [[https://git.kernel.org/linus/1d99e68ce7fd9b5f5ab01d72455e8acd699e49cc|commit]], [[https://git.kernel.org/linus/c93beb5243750911a9a95aac31688ff85512b22e|commit]], [[https://git.kernel.org/linus/5b2a3687e440af6c237d5c8b9131d28f5a9550c0|commit]], [[https://git.kernel.org/linus/448699c522af9e3266f168c3f51f4c3713c7bee1|commit]] * Add support for video hardware codec of STMicroelectronics STM32 SoC series [[https://git.kernel.org/linus/87f7f576e3d83fffbd067b058ad77e012a32b3de|commit]], [[https://git.kernel.org/linus/d96a6119e332f4ae5cdd55698da68d372aede2d0|commit]], [[https://git.kernel.org/linus/b0fb9ca30a67edeb8baf6b64014904ebb8ccf0e2|commit]], [[https://git.kernel.org/linus/46c4dffb74a477aba4d741118beb90c8dfaa9939|commit]], [[https://git.kernel.org/linus/60314831d2942b6eab974af74d2238dffc321359|commit]] == Universal Serial Bus == * Add phy notify connect and disconnect [[https://git.kernel.org/linus/53a2d95df83688d0e160e3d55a925d85dbfd4809|commit]], [[https://git.kernel.org/linus/b48415afe5fd7e6f5912d4c45720217b77d8e7ea|commit]], [[https://git.kernel.org/linus/eeda494542e55b603c7b80e14bfc5ee4ab7f9814|commit]], [[https://git.kernel.org/linus/5de5f1e292e56fe4b8d28923d325f4c16f3766cf|commit]] * Make default authorization mode configurable [[https://git.kernel.org/linus/bec7e43b162c58798e6dc30d8e70d1e2318aaf2d|commit]], [[https://git.kernel.org/linus/aa6e11e9a792997a183d3b6936b01601233c570d|commit]] * uapi: OTG 3.0 [[https://git.kernel.org/linus/b558469580f82b925d6651ac8d7a01070402dbf8|commit]] * serial: option: add Lonsung U8300/U9300 product [[https://git.kernel.org/linus/cf16ffa17c398434a77b8a373e69287c95b60de2|commit]] * serial: option: add Telit FN920C04 rmnet compositions [[https://git.kernel.org/linus/582ee2f9d268d302595db3e36b985e5cbb93284d|commit]] * serial: option: add support for Fibocom FM650/FG650 [[https://git.kernel.org/linus/fb1f4584b1215e8c209f6b3a4028ed8351a0e961|commit]] * serial: option: add Fibocom FM135-GL variants [[https://git.kernel.org/linus/356952b13af5b2c338df1e06889fd1b5e12cbbf4|commit]] * serial: option: add Rolling RW101-GL and RW135-GL support [[https://git.kernel.org/linus/311f97a4c7c22a01f8897bddf00428dfd0668e79|commit]] * typec: mux: Add ITE IT5205 Alternate Mode Passive MUX driver [[https://git.kernel.org/linus/41fe9ea1696c85fdef1b0ea3f9184edb9ab7faba|commit]] * serial: add device ID for !VeriFone adapter [[https://git.kernel.org/linus/cda704809797a8a86284f9df3eef5e62ec8a3175|commit]] * serial: option: add MeiG Smart SLM320 product [[https://git.kernel.org/linus/46809c51565b83881aede6cdf3b0d25254966a41|commit]] * Export BOS descriptor to sysfs [[https://git.kernel.org/linus/12fc84e8c4288cc8ed5f14a35e077130c2cfece2|commit]] * serial: cp210x: add ID for MGP Instruments PDS100 [[https://git.kernel.org/linus/a0d9d868491a362d421521499d98308c8e3a0398|commit]] * serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M [[https://git.kernel.org/linus/b1a8da9ff1395c4879b4bd41e55733d944f3d613|commit]] * gadget: f_fs: expose ready state in configfs [[https://git.kernel.org/linus/43a029724d1c8219cc4e58e9fafbeedd1bc283fa|commit]] * typec: qcom-pmic-typec: enable support for PMI632 PMIC [[https://git.kernel.org/linus/f69b3e40f46e8cf568809eb05a2e07bfea45b672|commit]], [[https://git.kernel.org/linus/a06a2f12f9e2fa9628a942efd916cf388b19c6ce|commit]], [[https://git.kernel.org/linus/65145a03d65be80d389bf24c1874c634527de849|commit]], [[https://git.kernel.org/linus/d2f9b93de0fe71b5040be391afd3d065ab113fb7|commit]], [[https://git.kernel.org/linus/f637c0c6dd811d2e28320a6ced4363186f8a89c6|commit]], [[https://git.kernel.org/linus/52cfdc9c6c3306f0bda4f217396f508d3f5459fb|commit]], [[https://git.kernel.org/linus/dfdaba27b4660ec26de955cf4459499ddb005e2d|commit]], [[https://git.kernel.org/linus/7e3a1f6470f7243c81156d2ead60f87da1184225|commit]], [[https://git.kernel.org/linus/159919a184c5ef82fac3605b2390b17a549c06ac|commit]], [[https://git.kernel.org/linus/19281571a4d5b6049dad9318db081af48818b1d2|commit]], [[https://git.kernel.org/linus/d11a79dd047e18dd0b76bc9abebb8470858856d6|commit]], [[https://git.kernel.org/linus/f1a27f081c1fa1eeebf38406e45f29636114470f|commit]], [[https://git.kernel.org/linus/f2e5d3de7e1fbf24483e7f996e519b3ebc3935a1|commit]], [[https://git.kernel.org/linus/c1214b579733df7017c0e5f97f26eeb4b66df0c6|commit]], [[https://git.kernel.org/linus/cf92b9df3dcf45eab0fe3fcf9e97ce55c31c48c0|commit]] * USB-C TCPM Orientation Support [[https://git.kernel.org/linus/ac92ea6b656374abab230f9f38fd3f0ab6cd0d61|commit]], [[https://git.kernel.org/linus/8774ea7a553e2aec323170d49365b59af0a2b7e0|commit]], [[https://git.kernel.org/linus/0be4e1d4df32cfb9222bdea67a9ae9665af57a9c|commit]] * typec: add SOP' support to the tcpm and alt mode drivers [[https://git.kernel.org/linus/6bd181ba60e198fef6f750b543832f161fbd9f39|commit]], [[https://git.kernel.org/linus/030509ac473da439e3d5438b1cd3c5b899844046|commit]], [[https://git.kernel.org/linus/231b7318413cef0f8e5c2ca8db1a95b666c25d70|commit]], [[https://git.kernel.org/linus/7e7877c55eb1e4dbf1ce11e40af9e1d6b2c83e5b|commit]], [[https://git.kernel.org/linus/71ba4fe566560d1d4740d8fbce5a71e16f2fc23e|commit]], [[https://git.kernel.org/linus/59cd27a0cab1ceddcc4251309fd3643921ed9ab9|commit]], [[https://git.kernel.org/linus/41d9d75344d900814b883ba85164645eebbaf846|commit]], [[https://git.kernel.org/linus/7494d4bc8e32a9480fd56b018db8e404b54b24e6|commit]], [[https://git.kernel.org/linus/fb7ff25ae43332cb64c9e7bbbe36a6cc308d8de1|commit]], [[https://git.kernel.org/linus/e03f6fef5ea885f80dc6c7339a7f8aea1b0a609f|commit]], [[https://git.kernel.org/linus/3bbb9ba4f66006f27ad0d5ceaf2480117e16d489|commit]], [[https://git.kernel.org/linus/af8b627046bcb024e34923a8fa3903dcfc297dee|commit]] * Add ac5 to EHCI Orion [[https://git.kernel.org/linus/c63fe1cc70933ca667d834a8d836162d3bfc7b0a|commit]], [[https://git.kernel.org/linus/d5862720c018db3046855cd43a497e346309a5d5|commit]] * dwc3: add glue driver for Hi3798MV200 [[https://git.kernel.org/linus/8d36c0e433e0807700fe967953f8b0beb0dc5159|commit]], [[https://git.kernel.org/linus/e7b98987b4d7a6e13c130b71ffe72340b0a7639c|commit]] * misc: onboard_usb_hub: Add support for TI TUSB8020B [[https://git.kernel.org/linus/966bf794e04358c68c4247302d02b587f41c5d09|commit]], [[https://git.kernel.org/linus/0842b8feb4f1e40fd83bf981e78b341b9877b4c6|commit]] * gadget: functionfs: DMABUF import interface [[https://git.kernel.org/linus/af33a9190d0226251e9cbc137c88a707b0bbe356|commit]], [[https://git.kernel.org/linus/d2f4831eafbaba63dc79c4f0512f11822b24c3e7|commit]], [[https://git.kernel.org/linus/7b07a2a7ca02a20124b552be96c5a56910795488|commit]], [[https://git.kernel.org/linus/799970a5b15deec8bbcb098b11a73d8acc55d075|commit]], [[https://git.kernel.org/linus/99f638dd49ca80538addec6b3733ddb5784c9373|commit]] * typec: add SOP' support to the tcpm and alt mode drivers [[https://git.kernel.org/linus/6bd181ba60e198fef6f750b543832f161fbd9f39|commit]], [[https://git.kernel.org/linus/030509ac473da439e3d5438b1cd3c5b899844046|commit]], [[https://git.kernel.org/linus/231b7318413cef0f8e5c2ca8db1a95b666c25d70|commit]], [[https://git.kernel.org/linus/7e7877c55eb1e4dbf1ce11e40af9e1d6b2c83e5b|commit]], [[https://git.kernel.org/linus/71ba4fe566560d1d4740d8fbce5a71e16f2fc23e|commit]], [[https://git.kernel.org/linus/59cd27a0cab1ceddcc4251309fd3643921ed9ab9|commit]], [[https://git.kernel.org/linus/41d9d75344d900814b883ba85164645eebbaf846|commit]], [[https://git.kernel.org/linus/7494d4bc8e32a9480fd56b018db8e404b54b24e6|commit]], [[https://git.kernel.org/linus/fb7ff25ae43332cb64c9e7bbbe36a6cc308d8de1|commit]], [[https://git.kernel.org/linus/e03f6fef5ea885f80dc6c7339a7f8aea1b0a609f|commit]], [[https://git.kernel.org/linus/3bbb9ba4f66006f27ad0d5ceaf2480117e16d489|commit]], [[https://git.kernel.org/linus/af8b627046bcb024e34923a8fa3903dcfc297dee|commit]] * mtu3: Add MT8195 MTU3 ip-sleep wakeup support [[https://git.kernel.org/linus/4158af057c7f84790d7b04f589d5b8a93fddf469|commit]], [[https://git.kernel.org/linus/f99044cd1451d13f2d812ede24eb186ea6335a07|commit]] * ftdi_sio: add support for GMC Z216C Adapter IR-USB [[https://git.kernel.org/linus/3fb7bc4f3a98c48981318b87cf553c5f115fd5ca|commit]] == Serial Peripheral Interface (SPI) == * spi-mt65xx: Support sleep pin control [[https://git.kernel.org/linus/4247d7f2ca564bbede54054da1f35a359bb061bd|commit]] * s3c64xx: winter cleanup and gs101 support [[https://git.kernel.org/linus/91a9b8e6b63eeb3634e736a4b65ae536c08155b2|commit]], [[https://git.kernel.org/linus/1a234accc93191a3a73eb4cc264abb6d79d63430|commit]], [[https://git.kernel.org/linus/f186d34071fb2a7db7249b09d5e1796b18b37d7d|commit]], [[https://git.kernel.org/linus/90efde223d2ab5ab84008986d97df0f01a49f15f|commit]], [[https://git.kernel.org/linus/42a9ac378d918176e17592cbe79d8b0606f951e4|commit]], [[https://git.kernel.org/linus/b5e736bd6881d9e78384eed8ab7fdcb586f0e402|commit]], [[https://git.kernel.org/linus/60dc8d342e933097eb82db5859edcac9077a6db5|commit]], [[https://git.kernel.org/linus/e9c49effde70fb4b10d0ad9c94b69fe6314fc608|commit]], [[https://git.kernel.org/linus/4c6452050530b741daf108de0c02cd2299f8f5d1|commit]], [[https://git.kernel.org/linus/a336d41bbea51e11e3e4f56bd3877a535c077129|commit]], [[https://git.kernel.org/linus/ff690e75d64b0ca119adbfc3bd0b444bc1d0a1c5|commit]], [[https://git.kernel.org/linus/7ddaa43ee9fdd7f5cb0cec624d0a970701a68375|commit]], [[https://git.kernel.org/linus/4568fa574fcef3811a8140702979f076ef0f5bc0|commit]], [[https://git.kernel.org/linus/5d7f4f4367079992c7a1bb1654ffea87ddc82be8|commit]], [[https://git.kernel.org/linus/e010c04958604edd7034913c5348f537852449bc|commit]], [[https://git.kernel.org/linus/97b63f4707046b2ef99d077dd4d333c3acca06ae|commit]], [[https://git.kernel.org/linus/f02cebdfe91a3818d4d71eb96a34fd90c9192c52|commit]] * samsung: Add Exynos850 support [[https://git.kernel.org/linus/81a51eb6be3dbb76790b7353ec8dfaadfc751782|commit]], [[https://git.kernel.org/linus/737cf74b38007fd5d5d2f15d4d4bc16e5f1cbfed|commit]] == Watchdog == * Introduce EC-based watchdog [[https://git.kernel.org/linus/843dac4d3687f7628ba4f76e1481ee3838b27a35|commit]], [[https://git.kernel.org/linus/4d2ff655fb85a0bf1ecec6022ffdacb2a5f83fd2|commit]] == Serial == * Add rs485 support to uartps driver [[https://git.kernel.org/linus/fccc9d9233f918ee50cf2955ae7134a7f3418351|commit]], [[https://git.kernel.org/linus/74231ab6cc2d02303ddf1fabd878756c52f788a5|commit]], [[https://git.kernel.org/linus/32152467ffac3b79eae7313959c310946b0e6072|commit]] * GS101 Oriole: CMU_PERIC0 support and USI updates [[https://git.kernel.org/linus/5887cab232f7abf4ff2e7701dec38b8f0feb4cff|commit]], [[https://git.kernel.org/linus/893f133a040b605b53f4d0a24107cd0886a53bc3|commit]], [[https://git.kernel.org/linus/a0f80b86ff53c2bb99662008269096ecb45d7288|commit]], [[https://git.kernel.org/linus/6d44d1a1fb62e033dde18d73cbbb604663eb84c0|commit]], [[https://git.kernel.org/linus/f6553769131bdc9dc4f8ccb7c7dfabe49028f817|commit]], [[https://git.kernel.org/linus/1d3f02abd551c69c6a82b9f22430b497b0bf7c55|commit]], [[https://git.kernel.org/linus/d97b6c902a40673debee3cb98d79405193890f34|commit]], [[https://git.kernel.org/linus/f80c43887ab3bea4f8b1e112dc1dcc044904cf7b|commit]], [[https://git.kernel.org/linus/af5c317a93ef168c105bd28afdd675e962244591|commit]], [[https://git.kernel.org/linus/0b87a9fd670abe939f6ffae7d4ab4af2c1ca6996|commit]], [[https://git.kernel.org/linus/4f6f9a3f8fc70c2497b30f190702b8321aae16fe|commit]], [[https://git.kernel.org/linus/e62c706f3aa0cf1c2b4a71542cb07223e68453c6|commit]] * stm32: improve driver for stm32mp25 [[https://git.kernel.org/linus/5d207f62cec8d6e6f0fb6f35495723bf3960daf7|commit]], [[https://git.kernel.org/linus/7be985bd7cd5c6c605ec710e691620b8afb983fd|commit]], [[https://git.kernel.org/linus/7316888fa44f48bd00070290d2eb229f44a55135|commit]], [[https://git.kernel.org/linus/ec240f88934f6ecda5cd21514cc6f30e0ec5d955|commit]] * microchip: Burst Mode Support for PCI1XXXX [[https://git.kernel.org/linus/90d051b63519b0e653432168ecee8a4c0abc24dd|commit]], [[https://git.kernel.org/linus/aba8290f368d965d49c929a283b3bf41783d3ada|commit]], [[https://git.kernel.org/linus/b7fbca372bb6247990e2419c09fe6064d107542d|commit]], [[https://git.kernel.org/linus/e0ae1431dfb6899836f5689225ac464394570b18|commit]] * microchip: Add 4 Mbps support in PCI1XXXX UART [[https://git.kernel.org/linus/1ed67ecd13490daaac0b56891bbe1c1666c8cee3|commit]] == CPU Frequency scaling == * amd-pstate preferred core. Not all cores are able to reach the maximum frequency respecting the infrastructure limits. Consequently, AMD has redefined the concept of maximum frequency of a part. This means that a fraction of cores can reach maximum frequency. To find the best process scheduling policy for a given scenario, OS needs to know the core ordering informed by the platform through highest performance capability register of the CPPC interface [[https://git.kernel.org/linus/f3a052391822b772b4e27f2594526cf1eb103cab|commit]], [[https://git.kernel.org/linus/3a004e1fee4ba3d37976c1a9707869acc8d60b55|commit]], [[https://git.kernel.org/linus/dfddf34a3f0d45483f5b3e46c2e7bda173796f1b|commit]], [[https://git.kernel.org/linus/e571a5e2068ef57945fcd5d0fb950f8f96da6dc8|commit]] * cpufreq: scmi: Enable boost support [[https://git.kernel.org/linus/a8e949d41c72a0a860b1c3571d6b274e9b77b6bb|commit]] * cpufreq: intel_pstate: Allow model specific EPPs [[https://git.kernel.org/linus/240a8da623008eb9f4e32c7a19ce16a6605911dc|commit]] * intel_pstate: Update Meteor Lake EPPs [[https://git.kernel.org/linus/1f4b7fdd71e066aa7c01e3e26ceeb39b47dd5461|commit]], [[https://git.kernel.org/linus/240a8da623008eb9f4e32c7a19ce16a6605911dc|commit]] * scmi: Add boost frequency support [[https://git.kernel.org/linus/6f19efc0a1ca08bc61841b971d8b85ab505d95c8|commit]], [[https://git.kernel.org/linus/44139ed4943ee8ec186eea3e9072ca16d2b48133|commit]], [[https://git.kernel.org/linus/a897575e79d7a2ec79abe942b50ecd1d1cdd821b|commit]] == Voltage, current regulators, power capping, power supply == * mp8859: Cleanups and enhancements [[https://git.kernel.org/linus/fdf82f23ca25a80bee354b667259bf57dcfb607d|commit]], [[https://git.kernel.org/linus/4317ecadbeeab5464a8c34b27b73e2d2f81ef718|commit]], [[https://git.kernel.org/linus/6df0921e9013622091c283aa2a5be8c5d1ca3642|commit]], [[https://git.kernel.org/linus/6c848d772eee0f03b72542f35e1a66469030390f|commit]], [[https://git.kernel.org/linus/b79d93d99e084bf1abafba2b7aabff6a06defcd0|commit]], [[https://git.kernel.org/linus/b65e9149bdb76e9b09f6fb76fea1f10bde256619|commit]], [[https://git.kernel.org/linus/c8e794cfb05344af7b9ae920b5548a25a7e91fe9|commit]], [[https://git.kernel.org/linus/d7217c91bbde48ee60d3ce67cda6557f56c6b639|commit]], [[https://git.kernel.org/linus/673d06a858864c7dca9dd5c36a78f5f7fda793af|commit]] * power: supply: bq27xxx: Add devm action to free IDA [[https://git.kernel.org/linus/b282c30dad3e10738a4f03043efaff93d9e8de02|commit]], [[https://git.kernel.org/linus/7911cf971c1cbf69cb110ab83598c3c415cf2c70|commit]], [[https://git.kernel.org/linus/f2d506d9fe10f0104951f61ad0d414ac8b8dbc38|commit]], [[https://git.kernel.org/linus/73697f0acc773a357946a3c5a917bfb4c85128a3|commit]], [[https://git.kernel.org/linus/8e27c2aef8c321ce94c69f397f26d7647a1914d0|commit]] == Pin Controllers (pinctrl) == * renesas: Add support for R-Car V4M [[https://git.kernel.org/linus/1604b9788ee334e3aa2b0aa465d39d41878ad2c9|commit]], [[https://git.kernel.org/linus/f077cab34df3010df6f4996e648dba5f43fd6b85|commit]], [[https://git.kernel.org/linus/bc56b11cd734a7c640a6e434cb40cd0c52da9376|commit]], [[https://git.kernel.org/linus/fbaff0364a42e3160c0fbc56087c4348434066d1|commit]], [[https://git.kernel.org/linus/4759b702d07601e17050636a909966902d3bdd91|commit]], [[https://git.kernel.org/linus/291f7856fc451cbe6697a5b2d0ed849c4252b60a|commit]], [[https://git.kernel.org/linus/2acf13cec939c084c70a2b7e99af2f5554ca3f17|commit]], [[https://git.kernel.org/linus/97191e536c37359d17d6d32bc29acb911f731e60|commit]], [[https://git.kernel.org/linus/b33c4b4b84813fadddbd8c10e87f78de3fb10e87|commit]], [[https://git.kernel.org/linus/73f35ebbf4b7783e241740418c9e962cc746bb8a|commit]], [[https://git.kernel.org/linus/1fa8924a488a46b2709f1babd7176193fa077a93|commit]], [[https://git.kernel.org/linus/a0974d843d0be7780eafa87a8e4b63f32fef5766|commit]], [[https://git.kernel.org/linus/e79da260fcb1d8eb91ccf946cef63f971b22964b|commit]], [[https://git.kernel.org/linus/4ab1ee6f4f05e3b184e7a2d62b0be6bcf424107c|commit]], [[https://git.kernel.org/linus/2a9d0273d1303b74ebac669b7637053b8b8180c6|commit]] * pinctrl: Add driver for Awinic AW9523/B I2C GPIO Expander [[https://git.kernel.org/linus/576623d706613feec2392ef16b84e23a46200552|commit]] == Multi Media Card (MMC) == * sdhci-of-dwcmshc: support Sophgo CV1800B and SG2002 [[https://git.kernel.org/linus/017199c2849c3d6d417791ec1cf5521005d663a1|commit]], [[https://git.kernel.org/linus/849e81817b9b0658a65b668cd65849fa1fb054e0|commit]] * add hi3798mv200 specific extensions of DWMMC [[https://git.kernel.org/linus/25d043841db17b7ad7d850caf4652bd8b3d580ed|commit]], [[https://git.kernel.org/linus/cddacdce8ffb168d6cc5ffd0bd5a55153e528135|commit]], [[https://git.kernel.org/linus/8d63f97113a7e474b4fbbdc6ccde1091da167211|commit]], [[https://git.kernel.org/linus/0e4018ff5d12866a134dbdd0204d1b2629f71e31|commit]] == Memory Technology Devices (MTD) == * ubi: allow UBI volumes to provide NVMEM [[https://git.kernel.org/linus/51932f9fc4871619e93abf4de6f1282ec23d936c|commit]], [[https://git.kernel.org/linus/3ce485803da1b79b2692b6d0c2792829292ad838|commit]], [[https://git.kernel.org/linus/a1de28dd203176bb9cf62576a90d761aa57fe924|commit]], [[https://git.kernel.org/linus/762d73cd930e3073e927b2ec0811519bde2c8fb4|commit]], [[https://git.kernel.org/linus/e17f38b736691de1cf9e842c748e2960341c9870|commit]], [[https://git.kernel.org/linus/7e84c961b2eb062d2f47037dcca52dcd1d3615b5|commit]], [[https://git.kernel.org/linus/927c145208b04490fb40c5c88a1086b592bfac25|commit]] * spinand: Add support for 5-byte IDs [[https://git.kernel.org/linus/34a956739d295de6010cdaafeed698ccbba87ea4|commit]] * spinand: winbond: add support for W25N04KV [[https://git.kernel.org/linus/e0ccf861b80698a5cc6f97c89bf8d5761f465fce|commit]] * rawnand: stm32_fmc2: add MP25 support [[https://git.kernel.org/linus/0bfad3b3561d6f219b768d2a4265642ee9d31b1d|commit]] * rawnand: brcmnand: Add support for getting ecc setting from strap [[https://git.kernel.org/linus/c2cf7e25eb2a3c915a420fb8ceed8912add7f36c|commit]] * Remove support for Carillo Ranch driver [[https://git.kernel.org/linus/77bf032528393d2dc9430b3cea1fee8d0762a86f|commit]] * rawnand: stm32_fmc2: add MP25 support [[https://git.kernel.org/linus/a9ae475cc60d908dfd232d1c064fc34ec51d3228|commit]], [[https://git.kernel.org/linus/c1e04ab409aa0df2f554d7b318d82e8730ac4fa6|commit]] == Industrial I/O (iio) == * Add new backend framework [[https://git.kernel.org/linus/bb42191f85c389bf816373d25c3e4c94045cf4ff|commit]], [[https://git.kernel.org/linus/794ef0e57854d794173c8ab6bcce3285032dcd95|commit]], [[https://git.kernel.org/linus/a032b921bdeba2274866daafc8e791edd609eb13|commit]], [[https://git.kernel.org/linus/4b0b159a194f6f2dd967532951474c0b6bb2b456|commit]], [[https://git.kernel.org/linus/49bb3839e0153b1f48aaa8dd502ea66b8b56db8a|commit]], [[https://git.kernel.org/linus/1a97905d3e48ebe79a06d16143fbfa427c56ce5f|commit]], [[https://git.kernel.org/linus/9c446288d7b31402adb454535cb2c3cbdb55bb88|commit]] * adc: adding support for PAC193x [[https://git.kernel.org/linus/0fb528c8255bd2de6a2fba26ed28d75a7f0cb630|commit]] * adc: rtq6056: Add support for the whole RTQ6056 family [[https://git.kernel.org/linus/89a1034cd84148d4040385386850377cdbfeb70c|commit]] * adc: ti-ads1298: Add driver [[https://git.kernel.org/linus/00ef7708fa6073a84f6898fdcdfe965d903b0378|commit]] * frequency: admfm2000: New driver [[https://git.kernel.org/linus/5659785a329edaca710ada74e62ce2c24cce6cfa|commit]] * hid-sensor-als: Add light chromaticity support [[https://git.kernel.org/linus/2ec17b1950bb824f9a8d5f055e466d02c40eb64c|commit]] * hid-sensor-als: Add light color temperature support [[https://git.kernel.org/linus/3765d426fe864e109d00aeb48f22413b896b2eb9|commit]] * imu: bmi323: Add ACPI Match Table [[https://git.kernel.org/linus/3cc5ebd3a2d6247aeba81873d6b040d5d87f7db1|commit]] * light: as73211: add support for as7331 [[https://git.kernel.org/linus/02324a09cbe2ae38ab081dd5a1f620ccfd3c62b7|commit]] * hid-sensor-als: Add support of color temperature and chromaticity [[https://git.kernel.org/linus/ee3710f39f9d0ae5137a866138d005fe1ad18132|commit]], [[https://git.kernel.org/linus/5f05285df691b1e82108eead7165feae238c95ef|commit]], [[https://git.kernel.org/linus/00c45c9ef9b243cd0d48ae2bd0b8d908a9e04b2d|commit]], [[https://git.kernel.org/linus/f2a71ebdf2312a07824fb8445267e62bc0074e56|commit]] * pressure: mprls0025pa add SPI driver [[https://git.kernel.org/linus/b586b40e1952a343ae68142d16512f39596ca71b|commit]], [[https://git.kernel.org/linus/369cc90a020f1cbc5c08bd53a23fb0c69c4ec3df|commit]], [[https://git.kernel.org/linus/0181749d4e0e8f11403f9441b1aa1880f42c2226|commit]], [[https://git.kernel.org/linus/f088491661012c444f8754d3c46a4aa780ff8ae4|commit]], [[https://git.kernel.org/linus/a0858f0cd28e822b91376ae288d5548bc1847531|commit]], [[https://git.kernel.org/linus/7b34e1e330298cc47985de2e71498ec71f933931|commit]], [[https://git.kernel.org/linus/63cd31d320b50b7e004964c04ce3e73935cd3873|commit]], [[https://git.kernel.org/linus/0a0fb0e63e5178905e9fdba8195686b4e2de26c4|commit]], [[https://git.kernel.org/linus/9e65506ca9c7ff716c8441a33417820ad61d3a16|commit]], [[https://git.kernel.org/linus/d8fd0449e2208407a2f4b191b6d4161203c50f0c|commit]] * pressure: hsc030pa: cleanup and triggered buffer [[https://git.kernel.org/linus/05f5d78834a118b06b0292beb20891f45415d07b|commit]], [[https://git.kernel.org/linus/66b53cb790e794b180cbd4d6bffa34dadbc7ab3d|commit]], [[https://git.kernel.org/linus/15fdc52f35b853e3fa550087987b5ee4ffbd199b|commit]], [[https://git.kernel.org/linus/158b48c8648b105577179122734280e2c3abe6e1|commit]], [[https://git.kernel.org/linus/df3186e829c33e3c577e00e8b3faa25763a44bb0|commit]], [[https://git.kernel.org/linus/50b6ced709c695a127df3aed89461a11fadc2791|commit]] * Add support for AF8133J magnetometer [[https://git.kernel.org/linus/4953612115726e487e8124a210f6fad9780e0b6c|commit]], [[https://git.kernel.org/linus/1d8f4b04621f0f33a3d51699ffa32ddf54fe74ed|commit]], [[https://git.kernel.org/linus/3b2eaffd2bd2ce9c6c0e7f9e210135475e9a46ec|commit]], [[https://git.kernel.org/linus/14166bac93b2cd16789368bef74a24cab6e81825|commit]] * light: add support for AMS AS7331 [[https://git.kernel.org/linus/b4d971656407a888df111c8334e46f35cee0368d|commit]], [[https://git.kernel.org/linus/8745465e884c06736aafc6c0e7344ac3a3c7df94|commit]] * imu: Add support for ASM330LHHXG1 [[https://git.kernel.org/linus/7c28226cd03746c7e87409ee75d45e42f1687d89|commit]], [[https://git.kernel.org/linus/16ac43a1b18cb07d2c1c72f81027968315a8bb53|commit]], [[https://git.kernel.org/linus/0e2bf22aede4c6d7a0494aa2df636ff16bab41eb|commit]] * imu: Add bmi323 support for ASUS ROG ALLY [[https://git.kernel.org/linus/5198baf8817d7e6e0fe2f3e74ea2ead714b74d9c|commit]], [[https://git.kernel.org/linus/5a01e812a6fe8e1541e84f897c8b74ebfef1df7c|commit]] * humidity: hdc3020: add threshold events support [[https://git.kernel.org/linus/3ad0e7e5f0cb4d1cb1f1fb687d10e45cabf1928c|commit]], [[https://git.kernel.org/linus/9f9bfae410e6cdfa454e779c9ef3b737a213ce2c|commit]], [[https://git.kernel.org/linus/52882c6fb16ff406b7f5330958523328ce40f248|commit]] * frequency: admfm2000: New driver [[https://git.kernel.org/linus/baef58b1b09ac0e9339e021144b921560482c8bd|commit]], [[https://git.kernel.org/linus/7b5f651127550f2506aae7aac6b78ff6568f5725|commit]] * amplifiers: hmc425a: add support for LTC6373 Instrumentation Amplifier [[https://git.kernel.org/linus/a0e7a2b703d3ef8630ab27b17b4c988a0a809f99|commit]], [[https://git.kernel.org/linus/09ac57ac01e16268de9677728606c68d8d513d3a|commit]], [[https://git.kernel.org/linus/2edb22571e853d0ee69187f08f1269053f326d76|commit]], [[https://git.kernel.org/linus/ff96eb45baf2803f3c529fe79c76659c9af1a3fc|commit]], [[https://git.kernel.org/linus/5c7403abf9da656f5827cb9081c2ad7bfab0d673|commit]] * adc: ti-ads1298: Add driver [[https://git.kernel.org/linus/8608471262ddf4b8ed4120d7211251e8b8dcbda9|commit]], [[https://git.kernel.org/linus/1a0703ede4493bd74f9c6b53f782b749e175a88e|commit]] * adc: rtq6056: Add support for the whole RTQ6056 family [[https://git.kernel.org/linus/41b5684e58b1286ae0fa180bc50b661a27efee33|commit]] * adc: adding support for Microchip PAC193X Power Monitor [[https://git.kernel.org/linus/a8ce0b4e5653c3aafd602be1e3aaf5d08cb00923|commit]] * accel: mxc4005: new ACPI ID for the MXC6655 accelerometer [[https://git.kernel.org/linus/c8f883a78fa27c3bff3130b1abb37902a1fd3563|commit]] * accel: bmi088: add i2c support for bmi088 accel driver [[https://git.kernel.org/linus/b2463c49ab68376b20d5165400e47fc675976dd2|commit]] == Multi Function Devices (MFD) == * twl: system-power-controller [[https://git.kernel.org/linus/86583375aaf76fb2a03085100bbc3123c6ced559|commit]], [[https://git.kernel.org/linus/8ba560ec14267af1169e1f5407fbce514fd4f6f6|commit]], [[https://git.kernel.org/linus/391b3e9abe4423b79a904ac9de3fe7f17914a746|commit]], [[https://git.kernel.org/linus/ba95cc59e2a523614379081f092cb2d104882b58|commit]], [[https://git.kernel.org/linus/ca9414a1d08756c8392f9219caee607e1b7bade1|commit]], [[https://git.kernel.org/linus/0c7cc7497f6f62a65037e94cf0d885ab0af3c0d3|commit]] == Pulse-Width Modulation (PWM) == * !DesignWare PWM improvements [[https://git.kernel.org/linus/ab19d52bec6c1b266228417b58ae6f36f3ea097c|commit]], [[https://git.kernel.org/linus/ebf2c89eb95ec9598da19184632b765de72a7db4|commit]], [[https://git.kernel.org/linus/144a0008b30bc133cbaa9da7cf56d7cf2bacc4f9|commit]], [[https://git.kernel.org/linus/92702df3570e1ccfa050e135e50c450502251b79|commit]] * mediatek: add support for MT7988 [[https://git.kernel.org/linus/eb58bf4afd708eb3c64c7b9b2c5fbfacdcdee3e5|commit]], [[https://git.kernel.org/linus/0c2d3bd748833cdc0b0fc32c7d14a6b1f9f6ea3f|commit]] == Inter-Integrated Circuit (I2C + I3C) == * Add Mobileye !EyeQ5 support to the Nomadik I2C controller & use hrtimers for timeouts [[https://git.kernel.org/linus/c763072ab4533f0669b19c60d8a18b31f2877164|commit]], [[https://git.kernel.org/linus/ec189b9fb83cd1c869d45bfe3c9cb27b71093a16|commit]], [[https://git.kernel.org/linus/ae9977eefc4a1e6e8fda619f5b8734efb6f11b58|commit]], [[https://git.kernel.org/linus/d4f4a361c4eadbc992dfb9667c9a73bb879f4458|commit]], [[https://git.kernel.org/linus/7d4c57abb9284030dc58ffac4fb76eb12d3d947c|commit]], [[https://git.kernel.org/linus/1b9a8e8af0d969ad8f2deece827e691a1b07ba1b|commit]], [[https://git.kernel.org/linus/7489cd43a2ea26c963c422c08e943a4a616fdb15|commit]], [[https://git.kernel.org/linus/a9f5cd892354425dcba67692e0afe3af6a2b4b1f|commit]], [[https://git.kernel.org/linus/75ff4309cdb1d7303750aeed07a5d80382fe2e71|commit]] * muxes: pca954x: Enable features on MAX7357 [[https://git.kernel.org/linus/df7cbce47a993b14dc2cf71ba0cba081766277e0|commit]], [[https://git.kernel.org/linus/5731cb4bef55d1fb649bc862b8e6f8e4cfd10e92|commit]] * designware: Generic polling mode code [[https://git.kernel.org/linus/197ecadad842855437a36ffc161648418ae02a97|commit]], [[https://git.kernel.org/linus/64b6426a6e97a95c044fd2fff3f0adf7c1edb60c|commit]], [[https://git.kernel.org/linus/04c71da4a9f4eef94bec153ed667d105dacffda3|commit]], [[https://git.kernel.org/linus/535677e44d57a31e1363529b5ecddb92653d7136|commit]], [[https://git.kernel.org/linus/c94612a72ac87b0337a0d85b9263266776ed4190|commit]], [[https://git.kernel.org/linus/bd002efaa16e4cfffc25db2d9c4669aaa2b43646|commit]] == Hardware monitoring (hwmon) == * Add driver for ASUS ROG RYUJIN II 360 AIO cooler [[https://git.kernel.org/linus/ed3e03790c5c9f29f032dde9bb784e198984a759|commit]] * Add driver for Astera Labs PT5161L retimer [[https://git.kernel.org/linus/1b2ca93cd0592b1fcbc6f8b64e02552bc15f4bb4|commit]] * Add driver for LTC4282 [[https://git.kernel.org/linus/cbc29538dbf7d7400f1ffc5dd5713e6a551463a0|commit]] * Add driver for MPS MPQ8785 Synchronous Step-Down Converter [[https://git.kernel.org/linus/f20b4a931130cb574c40563cfda0fc2cb944b4df|commit]], [[https://git.kernel.org/linus/7e6707f7da317eb98c12de6a477d5cfb5057705f|commit]] * Add driver for NZXT Kraken X and Z series AIO CPU coolers [[https://git.kernel.org/linus/f3b4b146eb107bda47ee4a8b0927699f962e8a2f|commit]] * Surface fan monitoring driver [[https://git.kernel.org/linus/197b980644eae1184844d451d10fe3ea51c7597d|commit]], [[https://git.kernel.org/linus/d612bf839f618b090672356889e3bbdac67aebd5|commit]] * Add support for LTC4282 [[https://git.kernel.org/linus/35c1bfb99fef9c71f9df5c1325db99a79300bc97|commit]], [[https://git.kernel.org/linus/d07c41eb963a4f621d1867c36ad3b79b2f5faa20|commit]] * Add support for Amphenol !ChipCap 2 [[https://git.kernel.org/linus/3af350929e752fe72f0457033d448bff9aac695a|commit]], [[https://git.kernel.org/linus/8f89ac2b9bdec95e4a05612a198b4255dce2ca8a|commit]], [[https://git.kernel.org/linus/b86d76015376a89ff99acfcd783e9ae4f4b9360d|commit]], [[https://git.kernel.org/linus/5f85c4d10ef46a5f457a9d337159ff620a0a2191|commit]], [[https://git.kernel.org/linus/cc804e48fef1535150f7b300b81990230b8a10f0|commit]] * Support pwm/tach driver for aspeed ast26xx [[https://git.kernel.org/linus/7e1449cd15d1096157d1a9923b82e37602fb7eb0|commit]], [[https://git.kernel.org/linus/df9d235c300d143d319ff8373988ef213ec19024|commit]], [[https://git.kernel.org/linus/3b0ac1f90c44178b295432e1bf7ef05c2ca20014|commit]] * dell-smm: Add XPS 9315 to fan control whitelist [[https://git.kernel.org/linus/8debe3c1295ef36958dae77487eed9cf6584c008|commit]] * nct6683: Add another customer ID for MSI [[https://git.kernel.org/linus/7fce84a991cdc1b28e03d14c997ec65187df6da5|commit]] * oxp-sensors: Add support for Ayaneo Air Plus 7320u [[https://git.kernel.org/linus/692cf83bc3c10c8af4dce0d9d2596c72b1037f6c|commit]] * sht3x: read out sensor serial number [[https://git.kernel.org/linus/9d613d9b8a9e54cc21379a40de29294adc1e6594|commit]] == General Purpose I/O (gpio) == * Add ChromeOS EC GPIO driver [[https://git.kernel.org/linus/f837fe1bffe6976ed5e7198b1892ea248b75358b|commit]] == Leds == * Kinetic !ExpressWire library and KTD2801 backlight driver [[https://git.kernel.org/linus/a5554f1b5bc3be5d01f41b7550aa5b05b7c88c09|commit]], [[https://git.kernel.org/linus/922235a9b89417e4c355ca813a1049c755b89570|commit]], [[https://git.kernel.org/linus/b5a8c50e5c1896b913c289e09f98b539fd1740ac|commit]], [[https://git.kernel.org/linus/1368d06dd2c99186174290c03d79c132db16efe2|commit]] * Add NCP5623 multi-led driver [[https://git.kernel.org/linus/7b7e50f8f5e0b12ebd6cc7076602eca7256de118|commit]] * Add support for LUT PPG [[https://git.kernel.org/linus/5e9ff626861a0f8c7264ca9278ed68860a417a24|commit]], [[https://git.kernel.org/linus/c47d14545b991064b1dd15906cfb413dbc2780ac|commit]], [[https://git.kernel.org/linus/d7d0efaf528a613a5f553ed3df2db23bc5614d9e|commit]], [[https://git.kernel.org/linus/5b2dd77be1d85ac3a8be3749f5605bf0830e2998|commit]], [[https://git.kernel.org/linus/641fde51bdb26c09ea8cdbd82084e93bd88d1fcb|commit]], [[https://git.kernel.org/linus/05338ba56c7f8731b18f36b6db178d3cb79fe64f|commit]], [[https://git.kernel.org/linus/6ab1f766a80a6f46c7196f588e867cef51f4f26a|commit]] == Cryptography hardware acceleration == * hisilicon/qm: add stop function and obtain queue status [[https://git.kernel.org/linus/9066ac364d8659ab7c993b83c60a6182c3ec1ef9|commit]], [[https://git.kernel.org/linus/ce133a22123055f5f988499cd9ac7953d2bf0677|commit]], [[https://git.kernel.org/linus/12b8ae68f50de200c038246c2496822f38b18fe2|commit]] * hisilicon/qm: add debugfs qm_state for hisilicon driver [[https://git.kernel.org/linus/8db78dd6cca25f558676b31c31a84771bfa5b51d|commit]], [[https://git.kernel.org/linus/8413fe3e7fdfb412baa9e31b3f1d2eaf6d21a373|commit]] * qat: improve recovery flows [[https://git.kernel.org/linus/2aaa1995a94a3187e52ddb9f127fa1307ee8ad00|commit]], [[https://git.kernel.org/linus/f5419a4239af8b3951f990c83d0d8c865a485475|commit]], [[https://git.kernel.org/linus/ae508d7afb753f7576c435226e32b9535b7f8b10|commit]], [[https://git.kernel.org/linus/758a0087db98fa23a3597289dbf3643ba9db2700|commit]], [[https://git.kernel.org/linus/e2b67859ab6efd4458bda1baaee20331a367d995|commit]], [[https://git.kernel.org/linus/750fa7c20e60926431ec50d63899771ffcd9fd5c|commit]], [[https://git.kernel.org/linus/4469f9b2346834085fe4478ee1a851ee1de8ccb2|commit]], [[https://git.kernel.org/linus/ec26f8e6c784ae391e69b19f4738d7196ed7794d|commit]], [[https://git.kernel.org/linus/9567d3dc760931afc38f7f1144c66dd8c4b8c680|commit]] == PCI == * epf-mhi: Add support for SA8775P SoC [[https://git.kernel.org/linus/c670e29f5bfe6c404a5405a0fa8e235de2f4f0c9|commit]] * qcom: Add PCIe support for !X1E80100 [[https://git.kernel.org/linus/6d0c39324c5fd8a788a000ab9cead1dbb2fa49a8|commit]], [[https://git.kernel.org/linus/692eadd5169808d5c7273b83f237038029d0bb21|commit]] * imx6: add imx95 pci support [[https://git.kernel.org/linus/adfdef7381d5a834cb1d68402041d09733906984|commit]], [[https://git.kernel.org/linus/4e37c2f48712d5874619685819e1cf7307f60840|commit]], [[https://git.kernel.org/linus/0044966cdadf3896389e6075d18468cfc0a54215|commit]], [[https://git.kernel.org/linus/b7d67c6130ee0a900dc5c8c37da849138188b182|commit]], [[https://git.kernel.org/linus/f5c04da3a12b0a69fa2cb5235fe5d1407fb15b51|commit]], [[https://git.kernel.org/linus/6a40185838759cdae728ed79738680d798863ce7|commit]], [[https://git.kernel.org/linus/cf94ce97dbf11718272a8117716b56349e81c272|commit]], [[https://git.kernel.org/linus/f99b121c258918906b119d9333277fa6987a7fb1|commit]], [[https://git.kernel.org/linus/d99aa8d3c4aca24b2d912e546939a5c571ed2acd|commit]], [[https://git.kernel.org/linus/671a89c45181e4025ec6e1cd6056bd874de6bcde|commit]] == Thunderbolt == * !DisplayPort and bandwidth allocation mode improvements [[https://git.kernel.org/linus/fca0f40ac7ff1213ffc1757b9cd4d126c69d3931|commit]], [[https://git.kernel.org/linus/769da9708ae62f3c0a491b67c9514a53e5769feb|commit]], [[https://git.kernel.org/linus/d44b9827e7f460c7555800065de81b75f4967145|commit]], [[https://git.kernel.org/linus/c7857ee68e1b9b805430f365392b6d40f75a48fc|commit]], [[https://git.kernel.org/linus/b4734507ac55cc7ea1380e20e83f60fcd7031955|commit]], [[https://git.kernel.org/linus/7b5e0bfc03cb904638200444264cfb20f7f6bea7|commit]], [[https://git.kernel.org/linus/52a4490e89d7c4effe613d8dffd2ac0a2a786bd7|commit]], [[https://git.kernel.org/linus/37f49727cc53b1987859fc767ac637078d351c4d|commit]], [[https://git.kernel.org/linus/2ec67a48cf8f18b8c6cecc70dcd5d52cbf8eba7e|commit]], [[https://git.kernel.org/linus/ccd845021147dc8257a05ed8f5a7f9c61a9101e3|commit]] == Clock == * qcom: Add TCSR, GPU, CAM and DISP clock controllers for !X1E80100 [[https://git.kernel.org/linus/c32f4f4ae1c6035b44bb4ca7a41fa4fd51244597|commit]], [[https://git.kernel.org/linus/ee3f0739035f5a73695ce2e62866585e6f762d0d|commit]], [[https://git.kernel.org/linus/4f70a09bde32d8fe59ef2101c5122fa460205c01|commit]], [[https://git.kernel.org/linus/bb213e13cef07c39e102eb61d15604fa839daf94|commit]], [[https://git.kernel.org/linus/76126a5129b57a705a621c2711eed149c5be5873|commit]], [[https://git.kernel.org/linus/c984dde8f3f85053fc1ec6baf57eb4fdfdd9bf46|commit]], [[https://git.kernel.org/linus/acddef6e17441b537225717a6701a9aadf170e51|commit]], [[https://git.kernel.org/linus/7180f3685de9b420f822f9c880148f15c9793185|commit]], [[https://git.kernel.org/linus/80de9d9dfba1739469b4cc5de5339762b6682e87|commit]], [[https://git.kernel.org/linus/06aff116199c1b7e57e1c796fa0a8bebeac8beea|commit]] * samsung: Add CPU clocks for Exynos850 [[https://git.kernel.org/linus/be20ccc17f41240b52106bf3dad01734a7f11080|commit]], [[https://git.kernel.org/linus/338f1c25269185cbea6e3dd966e5c859af2323f7|commit]], [[https://git.kernel.org/linus/f707e891eb8b655aec1b74c2171e8d529ed9c455|commit]], [[https://git.kernel.org/linus/152cc7478677dee6a11685585fd17efbce6e9db5|commit]], [[https://git.kernel.org/linus/61f4399c74d0677ee64e42f7b8d4ab01ee39de45|commit]], [[https://git.kernel.org/linus/a36bda74ede4c33dfa95482b56058f13fb64a426|commit]], [[https://git.kernel.org/linus/78bc2312ef9cea4af1073dfab4c71d91b2015b5d|commit]], [[https://git.kernel.org/linus/76dedb9c0bb3cf3c6d639d043d7ecc98816053cc|commit]], [[https://git.kernel.org/linus/6d7d203ca6914e84166a00d0f0bdfda6cbce76a7|commit]], [[https://git.kernel.org/linus/c9bc1f778625b0ae93641e6d14d83b62d16e549d|commit]], [[https://git.kernel.org/linus/84d42803e4f163b1b6cb4ae05d91af693a1985c2|commit]], [[https://git.kernel.org/linus/9c746e5afdc3f784593c903d4be3d418f75d7787|commit]] * gs101 oriole: peripheral block 1 (peric1) and i2c12 support [[https://git.kernel.org/linus/118261df42496241713cf8190535e9c90e7011f0|commit]], [[https://git.kernel.org/linus/f9555ac036e253ca99a4d6d55e7e9402b77df77d|commit]], [[https://git.kernel.org/linus/455061eb32434d5db11836a4de72ea2f4bdf61c8|commit]], [[https://git.kernel.org/linus/2999e786d7e9596a0057d70098e339d59d7e72f9|commit]], [[https://git.kernel.org/linus/3c7322405d1efac27cc547fa4d6947cf23871dac|commit]], [[https://git.kernel.org/linus/7d66d98b5bf376a999df13c65bbc0aac3cc9de02|commit]] * Add support for Mobileye !EyeQ5 system controller [[https://git.kernel.org/linus/ae156a3633d377d43990eb539f8a007c0c2bf769|commit]], [[https://git.kernel.org/linus/1a0703ede4493bd74f9c6b53f782b749e175a88e|commit]], [[https://git.kernel.org/linus/ff773fd2199960ffab0caae07451fe0f12b05bb8|commit]], [[https://git.kernel.org/linus/244fbbb81c46eefcc5f3a9cc37c4668f9d8ff801|commit]] * imx-sysctr: support i.MX95 [[https://git.kernel.org/linus/418062b548b138a1e6a9fde3a8ddf7fa77c44c9e|commit]], [[https://git.kernel.org/linus/6685d552a0cc3a86e10dbe6d98e1b51717a27a63|commit]] == PHY ("physical layer" framework) == * realtek: usb: add new driver for the Realtek RTD SoC USB 3.0 PHY [[https://git.kernel.org/linus/b48415afe5fd7e6f5912d4c45720217b77d8e7ea|commit]] * realtek: usb: add new driver for the Realtek RTD SoC USB 2.0 PHY [[https://git.kernel.org/linus/eeda494542e55b603c7b80e14bfc5ee4ab7f9814|commit]] * Add UFS support for SC7180/SM7125 [[https://git.kernel.org/linus/b010fdb4ea58fb1a0c59c550ef5692745b1e4dc2|commit]], [[https://git.kernel.org/linus/13c7a1683e6372500695ca1ac4fd9cfab2d81be6|commit]], [[https://git.kernel.org/linus/1cf2bf8ffadf2f0ab9ad10a1e0f65b3a0a10d402|commit]], [[https://git.kernel.org/linus/4d314d27130b674a3687135fe94f44a40f107f76|commit]], [[https://git.kernel.org/linus/6016fb7c91f72f4afbb4017e13cd91954d0f1a9b|commit]], [[https://git.kernel.org/linus/7551d945cb9ad8e8cfa4888c6b7be19855754baf|commit]], [[https://git.kernel.org/linus/526b333d7c275a851ce982357218496569b3958e|commit]] * qualcomm: phy-qcom-qmp-ufs: Add High Speed Gear 5 support for SM8550 [[https://git.kernel.org/linus/b34ae8598c9c3a95e7f8eaeaa1fcf6fdba0aef68|commit]] * qcom: qmp-usbc: enable SDM660 support [[https://git.kernel.org/linus/319a12e7c399df4316f54f6cc83cd6cdffb4ec4a|commit]], [[https://git.kernel.org/linus/507156f5a99fa03c0dce8281ff3d26fbf473630c|commit]], [[https://git.kernel.org/linus/78f2d7df63cd3811ef878e881fa017a20a648c0f|commit]], [[https://git.kernel.org/linus/0ca5e2bf2f4753a879ed3f4a747ee5c947152838|commit]] * qcom: qmp-pcie: Add support for G3/G4 PCIe PHY for !X1E80100 [[https://git.kernel.org/linus/606060ce8fd09891d97358e35fb2d2c00c787449|commit]], [[https://git.kernel.org/linus/70e0af37e81e8a19e207ccf14953109d793087cb|commit]], [[https://git.kernel.org/linus/e94b29f2bd73db149ce7fee9a41a7b6ca17f7918|commit]] * phy: mtk-mipi-csi: add driver for CSI phy [[https://git.kernel.org/linus/442f34ede7afd23e0fa1d838790f531d5e59d697|commit]] * Add support for RK3588 HDMI/eDP Combo PHY [[https://git.kernel.org/linus/553be2830c5f33308483e8118de748a2c69fe593|commit]], [[https://git.kernel.org/linus/3312a0e8f64ec68db695224fcc7457e7292426eb|commit]] * Add support for dual refclk configurations in Cadence Torrent PHY driver [[https://git.kernel.org/linus/5398be49d7c1d88ead4aba82703fef35894b36ba|commit]], [[https://git.kernel.org/linus/dc44dac3a787d55c26991d56a605c606b8ec3960|commit]], [[https://git.kernel.org/linus/c8369091b49766f4cf40ba11b90741074f8e6f18|commit]], [[https://git.kernel.org/linus/b426146adc2091368dc0f908d27fd4c6b62a6f95|commit]], [[https://git.kernel.org/linus/088de1293c84d0c08f0f4c30d2dd7cb14888aa6c|commit]] == EDAC (Error Detection And Correction) == * AMD Address Translation Library [[https://git.kernel.org/linus/1289c431641f8beacc47db506210154dcea2492a|commit]], [[https://git.kernel.org/linus/6c9058f49084569d1d816e87185e0a4f9ab1a321|commit]], [[https://git.kernel.org/linus/3f3174996be6b4312c38f54d5969f5d5b75fec9e|commit]] * EDAC/{igen6,i10nm}: Add EDAC support for two Intel CPUs [[https://git.kernel.org/linus/e77086c3750834553cf6fd2255c5f3ee04843ed8|commit]], [[https://git.kernel.org/linus/65c441ec582247757059e0662fb6f9ebce4965f2|commit]] == Various == * accel/ivpu changes for 6.9 [[https://git.kernel.org/linus/adfef713d2b58864a17072b09def3da043289e0d|commit]], [[https://git.kernel.org/linus/42328003ecb6a5446a6f33424891e391f0a16575|commit]], [[https://git.kernel.org/linus/575fcdd3cfd435f99f4cb10271ca0aaf6f6de255|commit]], [[https://git.kernel.org/linus/3bd0edf825b71c147aaf194f4b7bd9c9dd04f21c|commit]], [[https://git.kernel.org/linus/70ef769f512927c2bb65555b38f034d0adc29267|commit]], [[https://git.kernel.org/linus/b7f9b9b67ebdaff4847f13c721228e63b5c13222|commit]], [[https://git.kernel.org/linus/f32d59677ab1427ce9b9624a07cbc97f04519baf|commit]], [[https://git.kernel.org/linus/00b9151cd4a33040b7f5ae04aaf1650e885ff3e0|commit]] * 7-segment LED display [[https://git.kernel.org/linus/eb86be5424d4c08e686d5e578b72a26c516ae58a|commit]], [[https://git.kernel.org/linus/4664b0bbb69ce61a913336a1f093383a4aa43824|commit]], [[https://git.kernel.org/linus/899383f9ecf59881a0f43fbf7d74b26bd1e1a16f|commit]] * linedisp: Clean up and add new driver [[https://git.kernel.org/linus/815876dc0b40787f75f26cca25d2cc62291ee8c2|commit]], [[https://git.kernel.org/linus/a459b2707abd417a502d9fc5e7a1f43a2d7bef2e|commit]], [[https://git.kernel.org/linus/4ce026d5f4ccb89a493b7c57d87d53a3ccb0be59|commit]], [[https://git.kernel.org/linus/ef2086a9e1c9e82ae35e5b0d0d522fc344e3357a|commit]], [[https://git.kernel.org/linus/f6815c79d2292cbb1e2305e44b733d01fb33f65f|commit]], [[https://git.kernel.org/linus/16934de47da778f0861057df98b08058e0935a5c|commit]], [[https://git.kernel.org/linus/0ee6eb851ec549367d28e5eab31387ea289ffd20|commit]], [[https://git.kernel.org/linus/5a805a7827b64125ddfbd7d34d7a374db30d4caa|commit]], [[https://git.kernel.org/linus/a9bcd02fa42217c795bc9538a149936c82648476|commit]] * cdx: add MSI support for CDX bus [[https://git.kernel.org/linus/0e439ba38e615e505404b3935585f1898bafaea9|commit]] * cxl * Add CXL EINJ debugfs files [[https://git.kernel.org/linus/8039804cfa7314ad50085a779923aa5469889f88|commit]] * Add support to report region access coordinates to numa nodes [[https://git.kernel.org/linus/863027d40993f13155451bd898bfe4c4e9b7002f|commit]], [[https://git.kernel.org/linus/6ef83c4e19e9ce20a05127eec8a10911cf3516a7|commit]], [[https://git.kernel.org/linus/11270e526276ffad4c4237acb393da82a3287487|commit]], [[https://git.kernel.org/linus/067353a46d8ccdac279ebab97c038c3658e97541|commit]], [[https://git.kernel.org/linus/debdce20c4f28b7e5aa48512e7abf270a00e9051|commit]], [[https://git.kernel.org/linus/1745a7b364dfd339ab2696b7d51d7ed950ed2598|commit]], [[https://git.kernel.org/linus/c20eaf44113eac090b0d77fa2036143a836b9f56|commit]], [[https://git.kernel.org/linus/54b9460b0a28c4c76a7b455ec1b3b61a13e97291|commit]], [[https://git.kernel.org/linus/3d8be8b398e3d315200d6c139f0166fe5f1bd576|commit]], [[https://git.kernel.org/linus/032f7b37adff6985e22516053698b77131c2ce96|commit]], [[https://git.kernel.org/linus/bd98cbbbf82a3086423865816e1b5ab4bb4b6c60|commit]], [[https://git.kernel.org/linus/3d9f4a197230d6f4d5f816bcae0e0497b0eec410|commit]] * dpll: expose lock status error value to user [[https://git.kernel.org/linus/2c54a4d71246379f4ffb9beb6a780f9a49fdfc24|commit]], [[https://git.kernel.org/linus/e2ca9e75849e63eab6544549b6888595997e8153|commit]], [[https://git.kernel.org/linus/cf4f0f1e1c465da7c1f6bc89c3ff50bf42f0ab02|commit]] * fpga: dfl-pci: add PCI subdevice ID for Intel D5005 card [[https://git.kernel.org/linus/bb1dbeceb1c20cfd81271e1bd69892ebd1ee38e0|commit]] * interconnect: qcom: Add SM7150 driver support [[https://git.kernel.org/linus/4a1574cea02c2cf06a506cff045187f948c92212|commit]] * irqchip: Add !StarFive external interrupt controller [[https://git.kernel.org/linus/e4e535036173addff38d6b295a231a553d1e0d3a|commit]] * Add GPIO interrupt support for Amlogic-T7 !SoCs [[https://git.kernel.org/linus/3f734564a03df595c671316314b65a465d333f4a|commit]], [[https://git.kernel.org/linus/05c74a23407ccdba4ddfb02b1cb42cc9d28514ab|commit]], [[https://git.kernel.org/linus/e281bfa6f759b667357454c1d3d283f7a52871da|commit]] * qcom: Add MSM8909 interconnect provider driver [[https://git.kernel.org/linus/1cef9f2d1ef8ccdf7414a39e054852b66376b631|commit]], [[https://git.kernel.org/linus/47878b451216cf5e5a23bb3f931a9f932464e93d|commit]] * Add RPMPD support for MSM8974 [[https://git.kernel.org/linus/5bf85865eaaa21d453f75d479387743697858a26|commit]], [[https://git.kernel.org/linus/7547f9a027e37b7d5057492ac7907ac77c155618|commit]], [[https://git.kernel.org/linus/05d103950352d35c99142fe52ab50a8280dff7aa|commit]] * powercap/dtpm_devfreq: Use new Energy Model interface to get table [[https://git.kernel.org/linus/27d2c37e7dea41801378c473089b80385ca65491|commit]] * powercap: intel_rapl: Add support for Arrow Lake [[https://git.kernel.org/linus/4add6e841a3e079c8cb18fab6eaf7385c28c25c7|commit]] * powercap: intel_rapl: Add support for Lunar Lake-M paltform [[https://git.kernel.org/linus/876ed77fbed4450a0006ce9a953433a599848c9c|commit]] * ptp: add !FemtoClock3 Wireless as ptp hardware clock [[https://git.kernel.org/linus/1ddfecafabf71e0e5345dff877d2680083c7e078|commit]] * ptp: ocp: add Adva timecard support [[https://git.kernel.org/linus/ef61f5528fca6c3bbb2f8bc002fd1949c9d1f9b9|commit]] * qcom: Introduce DSP support for SM8650 [[https://git.kernel.org/linus/af53ecef19ffab5eed346032a0e79110cb82cc1d|commit]], [[https://git.kernel.org/linus/a3dd84d308c561f5600c8e2260f693857022a2c4|commit]], [[https://git.kernel.org/linus/1abd3130cf55c206689c76fee41299dbf58577bc|commit]], [[https://git.kernel.org/linus/3c28bf48065b38b3551b1944c0b5d37529e98ff2|commit]] * qcom_q6v5_pas: Add aDSP and cDSP for !X1E80100 [[https://git.kernel.org/linus/62210f7509e13a2caa7b080722a45229b8f17a0a|commit]], [[https://git.kernel.org/linus/1d7823f28631f139294646bb189de94b8a07c7f1|commit]], [[https://git.kernel.org/linus/9e93276d6639a0bb701e69d393680c6fb07bc12e|commit]] * gpio: ASoC: shared GPIO resets [[https://git.kernel.org/linus/0dae534c48239be0a99092e46e1baade0cf3e04a|commit]], [[https://git.kernel.org/linus/0f28982835c29752cdb657f1f8316b2ea42c407a|commit]], [[https://git.kernel.org/linus/cee544a40e4426040946e685988b1489f13e6600|commit]], [[https://git.kernel.org/linus/26ea8511c849f9fea325bcdbd8b41ea031a53afe|commit]], [[https://git.kernel.org/linus/26c8a435fce6ef8d1dea39cc52b15cf36c7e986b|commit]], [[https://git.kernel.org/linus/c721f189e89c0d4db119d7bb2b46768d0fb5f6b1|commit]] * sophgo: add reset support for SG2042 [[https://git.kernel.org/linus/08573ba006ab7bc29c183e0b3c362a0b34f1d87b|commit]], [[https://git.kernel.org/linus/1ce7587e507e1762df1dadc22affcd41376040d5|commit]], [[https://git.kernel.org/linus/a6166a4da5e46a01e6ad5b0bb079d77ac653f594|commit]], [[https://git.kernel.org/linus/41197eb5f993d5572ea533c9378c49ca81e24c8e|commit]] * Add UART w1 bus driver [[https://git.kernel.org/linus/a3c08804364e80328a9ffdac59bb26676b938195|commit]], [[https://git.kernel.org/linus/23b333375317f6c2866e1ede7e7c4a726fc22aa8|commit]], [[https://git.kernel.org/linus/12d2a81c57042337b68ef7d1b400a6f2b707dc94|commit]] * speakup: Add /dev/synthu device [[https://git.kernel.org/linus/807977260ae4de1cf39cfc55713fc0bc56566f7a|commit]] * Add DAX ABI for memmap_on_memory [[https://git.kernel.org/linus/73954d379efd176e9b011142c55aa8da93ac740a|commit]], [[https://git.kernel.org/linus/42d9358252e5d055223487d9f653c2a2ac859a2a|commit]], [[https://git.kernel.org/linus/51e7849cd6e4050599ef4e255e85195788841bb4|commit]], [[https://git.kernel.org/linus/6ebed0007f082cd80a63a8849c54e7cad0069469|commit]], [[https://git.kernel.org/linus/c05ae9d85b47211edb187b854b62ec68fb2a1e93|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/d451b075f776180c6974fd7bc06296829edc2631|kselftest update]] * [[https://git.kernel.org/torvalds/c/97ec9715a84e6f0979242e1ea98b9af1a39acf3b|KUnit updates]] * [[https://git.kernel.org/torvalds/c/7ea65c89d864f1e9aa892eec85625a96fa9acee6|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/77417942e49017ff6d0b3d57b8974ab1d63d592c|ntfs update]] * [[https://git.kernel.org/torvalds/c/54126fafea5249480f9962863cfd5ca2e7ba3150|iomap updates]] * [[https://git.kernel.org/torvalds/c/b5683a37c881e2e08065f1670086e281430ee19f|pdfd updates]] * [[https://git.kernel.org/torvalds/c/0c750012e8f30d26930ae13e815635258aee92b3|file locking updates]] * [[https://git.kernel.org/torvalds/c/910202f00a435c56cf000bc6d45ecaabac4dd598|block handle updates]] * [[https://git.kernel.org/torvalds/c/0f1a876682f0979d6a1e5f86861dd562d1758936|vfs uuid updates]] * [[https://git.kernel.org/torvalds/c/d2c84bdce25a678c1e1f116d65b58790bd241af0|io_uring updates]] * [[https://git.kernel.org/torvalds/c/1ddeeb2a058d7b2a58ed9e820396b4ceb715d529|block updates]] * [[https://git.kernel.org/torvalds/c/e5a3878c947ceef7b6ab68fdc093f3848059842c|RCU updates]] * [[https://git.kernel.org/torvalds/c/5a2a15cd7f91c4c065a8acaa36afc9fcdcdd4dcd|compiler attributes update]] * [[https://git.kernel.org/torvalds/c/8ede842f669b6f78812349bbef4d1efd0fbdafce|Rust updates]] * [[https://git.kernel.org/torvalds/c/ff887eb07cf69a5c0a507a1311fb34bcd38450aa|workqueue updates]] * [[https://git.kernel.org/torvalds/c/1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f|workqueue BH conversions]] * [[https://git.kernel.org/torvalds/c/045395d86acd02062b067bd325d4880391f2ce02|cgroup updates]] * [[https://git.kernel.org/torvalds/c/02d4df78c5ae70d283ebb4f78b9dcfdd4dfb71c2|irq updates]] * [[https://git.kernel.org/torvalds/c/4527e837801e76bbb196bb3b19375d8e43d636be|MSI updates]] * [[https://git.kernel.org/torvalds/c/397935e3dd133da7eb579dc6de51b93b363588e8|cpu core updates]] * [[https://git.kernel.org/torvalds/c/80a76c60e5f6361c497d464bb6da6ea07e908a0e|clocksource updates]] * [[https://git.kernel.org/torvalds/c/d08c407f715f651e7ea40b3a037be46dd2b11e4c|timer updates]] * [[https://git.kernel.org/torvalds/c/ca7e917769121195bae45d4886f6e24efd6f99ae|x86 APIC updates]] * [[https://git.kernel.org/torvalds/c/720c857907530e6cdc86c9bc1102ea6b372fbfb6|x86 FRED support]] * [[https://git.kernel.org/torvalds/c/86833aec447939a886a13bbdbdf21c9628c5c8c5|x86 entry update]] * [[https://git.kernel.org/torvalds/c/d8941ce52b708cfd520994e65760a2fa6a646dfb|RAS fixlet]] * [[https://git.kernel.org/torvalds/c/742582acec1e894b80815ab379e1c9d347a0406b|x86 cpu update]] * [[https://git.kernel.org/torvalds/c/bfdb395a7cde12d83a623949ed029b0ab38d765b|x86 MTRR update]] * [[https://git.kernel.org/torvalds/c/2edfd1046f555db6456514bc8ffe0847537e54f4|resource control updates]] * [[https://git.kernel.org/torvalds/c/38b334fc767e44816be087b3ec5d84b1438b735f|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/b0402403e54ae9eb94ce1cbb53c7def776e97426|EDAC updates]] * [[https://git.kernel.org/torvalds/c/a5b1a017cb76e4898dd62fcb97e8aee6a63b33b5|locking updates]] * [[https://git.kernel.org/torvalds/c/89c572e2f30c4555da59c4d66dff62f30fb057fd|scheduler updates]] * [[https://git.kernel.org/torvalds/c/73f0d1d7b4abb4a46bae1a0d8caf66e23d1138d0|x86 asm updates]] * [[https://git.kernel.org/torvalds/c/d69ad12c786f0a4593c48c0658043aa4a5116b09|x86 build updates]] * [[https://git.kernel.org/torvalds/c/fcc196579aa1fc167d6778948bff69fae6116737|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/685d98211273f60e38a6d361b62d7016c545297e|core x86 updates]] * [[https://git.kernel.org/torvalds/c/555b68419000b4d406c2f3b62972e149ad780535|x86 mm updates]] * [[https://git.kernel.org/torvalds/c/855684c7d938c2442f07eabc154e7532b4c1fbf9|x86 tdx update]] * [[https://git.kernel.org/torvalds/c/0e33cf955f07e3991e45109cb3e29fbc9ca51d06|x86 RFDS mitigation]] * [[https://git.kernel.org/torvalds/c/b29f377119f68b942369a9366bdcb1fec82b2cda|x86 boot updates]] * [[https://git.kernel.org/torvalds/c/691632f0e86973604678d193ccfa47b9614581aa|s390 updates]] * [[https://git.kernel.org/torvalds/c/508f34f2381eb84b2335abb970b940aefef50a19|m68k updates]] * [[https://git.kernel.org/torvalds/c/306bee64b73c92f43df46db7e92621f3309fd28b|SoC device tree updates]] * [[https://git.kernel.org/torvalds/c/2184dbcde47aefd5358b14463a0d993013f5609e|ARM SoC driver updates]] * [[https://git.kernel.org/torvalds/c/a60816720d754883978c8548308c92f24ced86dd|ARM SoC code updates]] * [[https://git.kernel.org/torvalds/c/3efa10eb97e98cca0c80b5b293a149eba8fb1d7e|ARM defconfig updates]] * [[https://git.kernel.org/torvalds/c/65d287c7eb1d14e0f4d56f19cec30d97fc7e8f66|asm-generic updates]] * [[https://git.kernel.org/torvalds/c/35d4aeea10558d12022d752b20be371aced557da|zonefs update]] * [[https://git.kernel.org/torvalds/c/43a7548e28a6df12a6170421d9d016c576010baa|btrfs updates]] * [[https://git.kernel.org/torvalds/c/cbcb9b5bc9804c2e803f00a460c212f9a0bbdb0d|affs update]] * [[https://git.kernel.org/torvalds/c/3bf95d567d67f8d78d7d2c8553025eaa02e1d9c5|fscrypt updates]] * [[https://git.kernel.org/torvalds/c/d453cc5a278ddf8fd4f0a89815c5da2c6650bbea|fsverity update]] * [[https://git.kernel.org/torvalds/c/f153fbe1ea11939e2514ba4b3b62bbd946e2892c|erofs updates]] * [[https://git.kernel.org/torvalds/c/a01c9fe32378636ae65bec8047b5de3fdb2ba5c8|nfsd updates]] * [[https://git.kernel.org/torvalds/c/41cb8c332bb904cd2108250075d195e060e1fdc7|pstore updates]] * [[https://git.kernel.org/torvalds/c/b32273ee89a866b01b316b9a8de407efde01090c|execve updates]] * [[https://git.kernel.org/torvalds/c/216532e147b2fee6ee830f4a844bbc3cbb9137af|hardening updates]] * [[https://git.kernel.org/torvalds/c/7f1a2774098bfdc54f9c94901665ddd81ecbb3cc|seccomp updates]] * [[https://git.kernel.org/torvalds/c/681ba318a635787031537b3a7df5c12980835cb1|smack updates]] * [[https://git.kernel.org/torvalds/c/3749bda230478a8716a812f4d069c2f29dd246c4|audit updates]] * [[https://git.kernel.org/torvalds/c/1f440397665f4241346e4cc6d93f8b73880815d1|documentation updates]] * [[https://git.kernel.org/torvalds/c/9187210eee7d87eea37b45ea93454a88681894a4|networking updates]] * [[https://git.kernel.org/torvalds/c/ca661c5e1d89a65642d7de5ad3edc00b5666002a|selinux updates]] * [[https://git.kernel.org/torvalds/c/cc4a875cf3b3bc07d523ea85b8ca45da1ca4f4e6|lsm updates]] * [[https://git.kernel.org/torvalds/c/0ea680eda6c9f59a9512f8b0dd4abf229bb9f6cf|slab updates]] * [[https://git.kernel.org/torvalds/c/b0546776ad3f332e215cebc0b063ba4351971cca|printk updates]] * [[https://git.kernel.org/torvalds/c/8c9c2f851b5a58195ed7ebd67d7c59683d1a02bc|iommu updates]] * [[https://git.kernel.org/torvalds/c/7d62cb2a59f4267191cf89f55f1bdf5ab617c123|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/57aaf9134c033dc5caaaf70facac529bb9d3d20b|ata updates]] * [[https://git.kernel.org/torvalds/c/d2bac0823d046117de295120edff3d860dc6554b|device mapper updates]] * [[https://git.kernel.org/torvalds/c/c0499a081285dcacacd10b0cb20ccba777411b88|device mapper BH workqueue conversion]] * [[https://git.kernel.org/torvalds/c/61387b8dcf1dc0f30cf690956a48768a3fce1810|device mapper VDO target]] * [[https://git.kernel.org/torvalds/c/aa7d6513d68bad539142f9d6c3e2faa629bc27d8|chrome platform firmware updates]] * [[https://git.kernel.org/torvalds/c/aeb152910a7aecabde5c5f0477a08b397e94059c|pwm updates]] * [[https://git.kernel.org/torvalds/c/245b6f3239d9a4fe72f6fc78fc9a005fff2726c5|MMC updates]] * [[https://git.kernel.org/torvalds/c/b30f2db0b79055149ee115fb7b3c86add4d9596a|regmap updates]] * [[https://git.kernel.org/torvalds/c/21ac5a96513c6588c9a71bffa16d665675930a60|regulator updates]] * [[https://git.kernel.org/torvalds/c/6cdebf62a159f31351946685b02941c968b96e49|spi updates]] * [[https://git.kernel.org/torvalds/c/69afef4af453c913e31640f3b31103847b97fe2f|gpio updates]] * [[https://git.kernel.org/torvalds/c/15223fdbdf4f75102c5507f764bda0fdcdf726ae|hwmon updates]] * [[https://git.kernel.org/torvalds/c/a070a08d006d142e2ae0bf73843dc90c2b42b02f|pmdomain updates]] * [[https://git.kernel.org/torvalds/c/07abb19a9b201c11e4367e8a428be7235b6dbd0d|power management updates]] * [[https://git.kernel.org/torvalds/c/943446795909929f261565cebafb3b56d66cc513|ACPI updates]] * [[https://git.kernel.org/torvalds/c/259f7d5e2baf87fcbb4fabc46526c9c47fed1914|thermal control updates]] * [[https://git.kernel.org/torvalds/c/9687d4ac582fad1af9979e296881f28c3f35b05c|mailbox updates]] * [[https://git.kernel.org/torvalds/c/27b984af7a93581e59061e6c4c0c4a62d130d41d|tpm updates]] * [[https://git.kernel.org/torvalds/c/70ef654469b371d0a71bcf967fa3dcbca05d4b25|EFI updates]] * [[https://git.kernel.org/torvalds/c/ce0c1c92656e3ea3840c4a5c748aa352285cae9c|modules updates]] * [[https://git.kernel.org/torvalds/c/279d44ceb8a495d287ec563964f2ed04b0d53b0e|smb client updates]] * [[https://git.kernel.org/torvalds/c/babbcc02327a14a352a7899dc603eaa064559c75|xfs updates]] * [[https://git.kernel.org/torvalds/c/1715f710e787493f3631d5890c86c9bdb30a36d8|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/e5e038b7ae9da96b93974bf072ca1876899a01a3|ext2, isofs, udf, and quota updates]] * [[https://git.kernel.org/torvalds/c/480e035fc4c714fb5536e64ab9db04fedc89e910|drm updates]] * [[https://git.kernel.org/torvalds/c/b345ff698ec7ed52d90bd5603ec8fc1802f40110|auxdisplay updates]] * [[https://git.kernel.org/torvalds/c/3e78a6c0d3e02e4cf881dc84c5127e9990f939d6|HID updates]] * [[https://git.kernel.org/torvalds/c/80d80de4b75edb7c83c68107098aa338364dfa62|HSI updates]] * [[https://git.kernel.org/torvalds/c/44f89c6d3c54761114b2bc0509144e3e5ced40b0|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/a3df5d5422b4edfcfe658d5057e7e059571e32ce|pin control updates]] * [[https://git.kernel.org/torvalds/c/8403ce70be339d462892a2b935ae30ee52416f92|MFD updates]] * [[https://git.kernel.org/torvalds/c/f3d8f29d1f59230b8c2a09e6dee7db7bd295e42c|backlight updates]] * [[https://git.kernel.org/torvalds/c/f5c31bcf604db54470868f3118a60dc4a9ba8813|LED updates]] * [[https://git.kernel.org/torvalds/c/66fd6d0bd7572fcb7859ebd4dbfb133881e1cd66|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/705c1da8fa4816fb0159b5602fef1df5946a3ee2|PCI updates]] * [[https://git.kernel.org/torvalds/c/fe46a7dd189e25604716c03576d05ac8a5209743|sound updates]] * [[https://git.kernel.org/torvalds/c/6d75c6f40a03c97e1ecd683ae54e249abb9d922b|arm64 updates]] * [[https://git.kernel.org/torvalds/c/29da654bd20842d4c1e17c6d4dc1b12642ca16ac|OpenRISC updates]] * [[https://git.kernel.org/torvalds/c/35e886e88c803920644c9d3abb45a9ecb7f1e761|landlock updates]] * [[https://git.kernel.org/torvalds/c/01732755ee30f0862c80b276de6af3611a3ded83|probes updates]] * [[https://git.kernel.org/torvalds/c/63bd30f249dcf0a7ce16967935cecee8feec24bb|tracing updates]] * [[https://git.kernel.org/torvalds/c/1bbeaf83dd7b5e3628b98bec66ff8fe2646e14aa|perf tools updates]] * [[https://git.kernel.org/torvalds/c/902861e34c401696ed9ad17a54c8790e7e8e3069|MM updates]] * [[https://git.kernel.org/torvalds/c/e5eb28f6d1afebed4bb7d740a797d0390bd3a357|non-MM updates]] * [[https://git.kernel.org/torvalds/c/32a50540c3d26341698505998dfca5b0e8fb4fd4|bcachefs updates]] * [[https://git.kernel.org/torvalds/c/68bf6bfdcf56b5e6567a668ffc15d5e449356c02|ext4 updates]] * [[https://git.kernel.org/torvalds/c/6ce8b2ce0d7e3a621cdc9eb66d74436ca7d0e66e|fuse updates]] * [[https://git.kernel.org/torvalds/c/c442a42363b2ce5c3eb2b0ff1e052ee956f0a29f|9p updates]] * [[https://git.kernel.org/torvalds/c/eb7cca1faf9883d7b4da792281147dbedc449238|media updates]] * [[https://git.kernel.org/torvalds/c/6dff52b828655ccf416f46c08a48679740b724f0|clk updates]] * [[https://git.kernel.org/torvalds/c/4757c3c64a71820a37da7a14c5b63a1f26fed0f5|libnvdimm updates]] * [[https://git.kernel.org/torvalds/c/c77756d3da0782cb90c1fbf6635db7aa480ad638|i2c updates]] * [[https://git.kernel.org/torvalds/c/b898db92f10724420cb823c989adb1737fc046bb|soundwire updates]] * [[https://git.kernel.org/torvalds/c/2b3a4192dd01154bbb9f7c887c4b0fe35c9dc712|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/3c5d127fb5aa96e89875fcc92182bc1eacfef3af|MTD updates]] * [[https://git.kernel.org/torvalds/c/ab522e1478e3191114535f454a1c41ba3b2d1cb9|devicetree updates]] * [[https://git.kernel.org/torvalds/c/54f42d2ca84ea9d490e6934392954c9c320e3048|MIPS updates]] * [[https://git.kernel.org/torvalds/c/8a2fbffcbfcb60378626e5d4144a6ff43f3b6776|sparc updates]] * [[https://git.kernel.org/torvalds/c/4f712ee0cbbd5c777d270427092bb301fc31044f|kvm updates]] * [[https://git.kernel.org/torvalds/c/4138f02288333cb596885e9af03dd3ea2de845cb|VFIO updates]] * [[https://git.kernel.org/torvalds/c/c8e769961668ef56acabc67f040c58ed769c57e4|crypto updates]] * [[https://git.kernel.org/torvalds/c/66a27abac311a30edbbb65fe8c41ff1b13876faa|powerpc updates]] * [[https://git.kernel.org/torvalds/c/02c163e959b72059ce409a8516170dc40193001f|CXL updates]] * [[https://git.kernel.org/torvalds/c/4438a810f3962a65d1d7259ee4195853a4d21a00|firewire updates]] * [[https://git.kernel.org/torvalds/c/90a498f294c2766f05ba72dbc0ecafb2af521a4c|phy updates]] * [[https://git.kernel.org/torvalds/c/c1f10ac840caced7a9f717d4170dcc14b3fac076|NFS client updates]] * [[https://git.kernel.org/torvalds/c/342d965376c5dafa124eb1c642d2fce043407cea|parisc architecture updates and fixes]] * [[https://git.kernel.org/torvalds/c/741e9d668aa50c91e4f681511ce0e408d55dd7ce|SCSI updates]] * [[https://git.kernel.org/torvalds/c/6885d7263ecd8ce5ab06029078861fbeb06c4a0a|input updates]] * [[https://git.kernel.org/torvalds/c/75e41d42cc7d3193b9018dca6ba8c5e5c0a5e729|PCMCIA updates]] * [[https://git.kernel.org/torvalds/c/032e22febfce848f913a1162b12028fc847f3f8e|watchdog updates]] * [[https://git.kernel.org/torvalds/c/f6cef5f8c37f58a3bc95b3754c3ae98e086631ca|i3c updates]] * [[https://git.kernel.org/torvalds/c/c5d9ab85ebf3a42d5127ffdedf9094325465e852|f2fs update]] * [[https://git.kernel.org/torvalds/c/bf3a69c6861ff4dc7892d895c87074af7bc1c400|orangefs updates]] * [[https://git.kernel.org/torvalds/c/2cb5c8683981ebd5033e3cc91f7dd75794f16e61|sysctl updates]] * [[https://git.kernel.org/torvalds/c/ad584d73a22b2f6e6b4c928956fdece5c44cdb3e|tracing updates]] * [[https://git.kernel.org/torvalds/c/65b64246f28bee13f9c15e4f0847fd6cca39ada3|ktest updates]] * [[https://git.kernel.org/torvalds/c/6207b37eb5c5e48f45f3ffe0a299d2df6b42ed69|rdma updates]] * [[https://git.kernel.org/torvalds/c/b3603fcb79b1036acae10602bffc4855a4b9af80|dlm updates]] * [[https://git.kernel.org/torvalds/c/0815d5cc7dfb4a2c6d02a6eb86974ab3992b803d|xen updates]] * [[https://git.kernel.org/torvalds/c/d95fcdf4961d27a3d17e5c7728367197adc89b8d|virtio updates]] * [[https://git.kernel.org/torvalds/c/ed302ad52ba30925a2aa8d989bf9625e1c51ce9c|more thermal control updates]] * [[https://git.kernel.org/torvalds/c/6d37f7e7d195fb1c2f9cac2cd431771936fd4692|more ACPI updates]] * [[https://git.kernel.org/torvalds/c/fbd88dd05780ef9b0026b09edcbc57a77742cfd6|more power management updates]] * [[https://git.kernel.org/torvalds/c/f9c035492f2010e1e7aede1f1bd32181d7cef2dc|more s390 updates]] * [[https://git.kernel.org/torvalds/c/78c3925c048c752334873f56c3a3d1c9d53e0416|more ARM SoC updates]] * [[https://git.kernel.org/torvalds/c/dba89d1b81df749711645bdc201ed67223f35830|more documentation updates]] * [[https://git.kernel.org/torvalds/c/42c2a75694053cee46dd5d14b140c2094d2a0f2e|trace tool updates]] * [[https://git.kernel.org/torvalds/c/23956900041d968f9ad0f30db6dede4daccd7aa9|smb server updates]] * [[https://git.kernel.org/torvalds/c/879e288692c899d52fcc01ae73121a771ea10d18|bitmap updates]] * [[https://git.kernel.org/torvalds/c/1b3e2513730942f87dca2d436b797d17de1befef|exfat updates]] * [[https://git.kernel.org/torvalds/c/cfce216e1439d67a52a4b4c709299f6555946c33|hyperv updates]] * [[https://git.kernel.org/torvalds/c/26bbcd630f2f521e60d7ef0a58da188e766553ad|sh updates]] * [[https://git.kernel.org/torvalds/c/ebc9bee8814d12ec247de117aa2f7fd39ff11127|coccinelle update]] * [[https://git.kernel.org/torvalds/c/0e875ee5e897db13104faab93bb1ab2b95da9ab9|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/91f263dda66a2dd4bf0c5d8ad6f48ab9fd5d9eca|rpmsg updates]] * [[https://git.kernel.org/torvalds/c/2ac2b1665d3fbec6ca709dd6ef3ea05f4a51ee4c|hwspinlock updates]] * [[https://git.kernel.org/torvalds/c/e09bf86f3d53ecf4da61163d88036c4c16419d70|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/3bcb0bf65c2b8d67dbe7509da8d1461ee4445db7|tty / serial driver updates]] * [[https://git.kernel.org/torvalds/c/0a59b3f42e5703a89dd6ddf5bc818a4cff975302|staging driver updates]] * [[https://git.kernel.org/torvalds/c/bb41fe35dce709ea8f91d313c558ee6c68f705ef|char/misc and other driver subsystem updates]] * [[https://git.kernel.org/torvalds/c/241590e5a1d1b6219c8d3045c167f2fbcc076cbb|driver core updates]] * [[https://git.kernel.org/torvalds/c/1d35aae78ffe739bf46c2bf9dea7b51a4eebfbe0|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/85a79128c4f5723f812ab8d5ee465ec660e223f1|UBI and UBIFS updates]] * [[https://git.kernel.org/torvalds/c/00453419575d6b4f5ce0f370da9421cf5253f103|siox updates]] * [[https://git.kernel.org/torvalds/c/3faae16b5aaed284c7de6f4c12240da67497d3a3|RTC updates]] * [[https://git.kernel.org/torvalds/c/5ee2433f321b4983809ce1cd8a721c4a58fe6d51|more i2c updates]] * [[https://git.kernel.org/torvalds/c/4f55aa85a8746e5e255c46c98c031e143605e2a0|fbdev updates]] * [[https://git.kernel.org/torvalds/c/1e3cd03c54b76b4cbc8b31256dc3f18c417a6876|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/c150b809f7de2afdd3fb5a9adff2a9a68d7331ce|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/ff9c18e435b042596c9d48badac7488e3fa76a55|ceph updates]] * [[https://git.kernel.org/torvalds/c/19dba097071ec4fd6486b9f0d52d12a3c5743d44|more io_uring updates]] * [[https://git.kernel.org/torvalds/c/e3111d9c3f7250309f451cfbf55845a74e692d41|more block updates]] * [[https://git.kernel.org/torvalds/c/bfa8f18691ed2e978e4dd51190569c434f93e268|more SCSI updates]] * [[https://git.kernel.org/torvalds/c/b71871395cf3a0ca7c0a7d79b4faa584ac872809|more hardening updates]] * [[https://git.kernel.org/torvalds/c/02fb638bed9e5d62ab4f8d78f968b3e36e935c48|ARM updates]] * [[https://git.kernel.org/torvalds/c/484193fecd2b6349a6fd1554d306aec646ae1a6a|more powerpc updates]] * [[https://git.kernel.org/torvalds/c/00164f477f065a0faaed7f2ca8f1c724c99b6fe1|more clocksource updates]] = Other news sites = * LWN's merge window [[https://lwn.net/Articles/965141/|part 1]], [[https://lwn.net/Articles/965541/|part 2]], [[https://lwn.net/Articles/972605/|development statistics]] * Phoronix [[https://www.phoronix.com/review/linux-69-features|Linux 6.9 Features: DM VDO, AMD Preferred Core, Intel FRED & Larger Console Fonts]]