#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.8 development cycle Linux 6.8 [[https://lore.kernel.org/lkml/CAHk-=wiehc0DfPtL6fC2=bFuyzkTnuiuYSQrr6JTQxQao6pq1Q@mail.gmail.com/|was released]] on Sunday, 10 March 2024. Summary: This release includes two new system calls for easier mount management; support for multi-size transparent huge pages in anonymous page faults; data type profiling support in perf which allows to correlate perf events with DWARF information; task scheduler support for better realtime scheduling; an option to forbid users from writing to partitions that are being used by file systems; new system calls to deal with multiple stacked LSMs; and a new driver for Intel Xe graphics. As always, there are many other features, new drivers, improvements and fixes. <> = Prominent features = == Deadline servers for better realtime scheduling == Processes placed in the realtime scheduling class can starve other processes in classes with lower priority, which can cause problems. The Linux kernel uses a technique called "RT throttling" to avoid problems, but it not as performant as it could, so in this release the Linux kernel will use the so called "deadline servers", which replaces and improve that. Recommended LWN article: [[https://lwn.net/Articles/934415/|Deadline servers as a realtime throttling replacement]] == Multi-size transparent huge pages for anonymous memory == Anonymous page faults (eg. faults for memory allocated by malloc) are usually done with a 4KB size. Work on [[https://kernelnewbies.org/Linux_5.16#Memory_folios_infrastructure_for_a_faster_memory_management|"folios" ]] now allows to allocate more than 4KB during a single page fault. This release adds support for it, and it also adds support for TBL compresion techniques allowed in modern hardware that allow to map physically contiguous chunks of memory. By default, the existing behaviour (and performance) is maintained. The user must explicitly enable multi-size THP to see the performance benefit. Recommended LWN article: [[https://lwn.net/Articles/937239/|Large folios for anonymous memory]] == Two new syscalls for better mount management: listmount() and statmount() == Modern Linux systems can contain many mounts. Listing them and gathering information about their properties is not as easy as it should. Two new syscalls, {{{listmount(2)}}} and {{{statmount(2)}}} have been added to faciliate this effort. Recommended LWN article: [[https://lwn.net/Articles/950569/|listmount() and statmount()]] == Data type profiling with perf == The `perf` tool in this release adds a feature called data type profiling , which allows to associate PMU samples to data types they refer using DWARF debug information. It depends on quality of PMU events and compiler for producing DWARF info, but it doesn't require any changes in the target program. This allows the creation of tools that can do things such as pahole-style structure reordering or packing, but doing so with information about access patterns gathered from perf. Recommended LWN article: [[https://lwn.net/Articles/955709/|Data-type profiling for perf]] == Forbid users from writing to partitions used by filesystems == This release adds a configuration option that forbids wriing to block devices that are being used by a mounted filesystem Recommended LWN article: [[https://lwn.net/Articles/941764/|Defending mounted filesystems from the root user]] == New system calls to deal with multiple stacked LSMs == The Linux kernel added support for stacking security modules in [[https://kernelnewbies.org/Linux_5.1#Security|Linux 5.1]]. LSM-aware applications, however, need some interfaces to get more information about the current LSM configuration. This release adds three new syscalls {{{lsm_list_modules()}}}, {{{lsm_get_self_attr()}}}, and {{{lsm_set_self_attr()}}}. These syscalls were designed to support multiple, simultaneaous (stacked) LSMs from the start as opposed to the current /proc based solutions which were created at a time when only one LSM was allowed to be active at a given time. Recommended LWN article: [[https://lwn.net/Articles/919059/|Adding system calls for Linux security modules]] == Driver for new Intel Xe graphics == This release adds a new driver, Xe, for Intel GPUs that supports both integrated and discrete platforms starting with Tiger Lake (first Intel Xe Architecture) = Core (various) = * (FEAURED) Add two mount querying syscalls: {{{listmount(2)}}} (which adds a way to query the children of a particular mount) and {{{statmount(2)}}} (which adds a way to query attributes of a single mount). They are more flexible than having to parse the complete /proc/self/mountinfo [[https://git.kernel.org/linus/98d2b43081972abeb5bb5a087bc3e3197531c46e|commit]], [[https://git.kernel.org/linus/2eea9ce4310d8c0f8ef1dbe7b0e7d9219ff02b97|commit]], [[https://git.kernel.org/linus/56c94c626785001dbb683312725b7d87c6ec6a91|commit]], [[https://git.kernel.org/linus/46eae99ef73302f9fb3dddcd67c374b3dffe8fd6|commit]], [[https://git.kernel.org/linus/6971beb4ec52ad7b26f5b5eedf19d4963be7df1b|commit]], [[https://git.kernel.org/linus/68385d77c05b401f748acecc0e0a8eff10489334|commit]], [[https://git.kernel.org/linus/b4c2bea8ceaa50cd42a8f73667389d801a3ecf2d|commit]], [[https://git.kernel.org/linus/d8b0f5465012538cc4bb10ddc4affadbab73465b|commit]] * dmesg: CAP_SYSLOG was separated from CAP_SYS_ADMIN and introduced in Linux 2.6.37. For a long time, certain syslog actions required CAP_SYS_ADMIN or CAP_SYSLOG. Remove CAP_SYS_ADMIN for more fine-grained control [[https://git.kernel.org/linus/09ce61e27db83180993e8b1a7f511af62374383c|commit]] * cgroup/cpuset: Expose {{{cpuset.cpus.isolated}}} [[https://git.kernel.org/linus/877c737db9355acaa1ec2fd2b8dbdaff82605df7|commit]] * cgroup/cpuset: Improve CPU isolation in isolated partitions [[https://git.kernel.org/linus/fe28f631fa941fba583d1c4f25895284b90af671|commit]], [[https://git.kernel.org/linus/14060dfc481a309e3f236127b0a77abbf249648f|commit]], [[https://git.kernel.org/linus/11e5f407b64a8fa09d1a4b336d15bd285a434c1f|commit]], [[https://git.kernel.org/linus/72c6303acfa1008c542e093bc9f9916fb99e0323|commit]] * Support fanotify FAN_REPORT_FID on all filesystems [[https://git.kernel.org/linus/7232522e6cafdf466ed7649c14546fd07ccc1978|commit]], [[https://git.kernel.org/linus/30ad1938326bf9303ca38090339d948975a626f5|commit]] * ubsan * Lay the ground work for gaining instrumentation for signed, unsigned, and pointer wrap-around by making all 3 sanitizers available for testing. Additionally gets x86_64 bootable under the unsigned sanitizer for the first time [[https://git.kernel.org/linus/167ebeda36fae4bb47ace32bcacecde7d24d2850|commit]], [[https://git.kernel.org/linus/30edbdf9b98ddc9087f5f8b9a9644fa5c05fa5b1|commit]], [[https://git.kernel.org/linus/918327e9b7ffb45321cbb4b9b86b58ec555fe6b3|commit]] * Reintroduce signed overflow sanitizer [[https://git.kernel.org/linus/557f8c582a9ba8abe6aa0fd734b6f342af106b26|commit]] * {{{/proc/self/pagemap}}}: report SOFT_DIRTY bits through the [[https://docs.kernel.org/admin-guide/mm/pagemap.html#pagemap-scan-ioctl|PAGEMAP_SCAN]] ioctl [[https://git.kernel.org/linus/e6a9a2cbc13bf43e4c03f57666e93d511249d5d7|commit]] * hardening * Enable KFENCE in the hardening config [[https://git.kernel.org/linus/de2683e7fdac0c33c4c2c115e69dbbbe904a2224|commit]] * Drop obsolete DRM_LEGACY from config fragment [[https://git.kernel.org/linus/7b3133aa4b9eba9cdf3905e3f7c8b6687ff4615b|commit]] * Drop obsolete UBSAN_SANITIZE_ALL from config fragment [[https://git.kernel.org/linus/006eac3fe20f03ea70765cb02a823dbb8737ec00|commit]] * initramfs: Expose retained initrd as sysfs file [[https://git.kernel.org/linus/2678fd2fe9ee2c569e9cb6b17e786bc8f0753538|commit]] * io_uring * Add method for returning provided buffer ring head [[https://git.kernel.org/linus/d293b1a89694fc4918d9a4330a71ba2458f9d581|commit]] * Add support for {{{IORING_OP_FIXED_FD_INSTALL}}} which allows installing a direct descriptor into the normal file table, just like receiving a file descriptor or opening a new file would do [[https://git.kernel.org/linus/dc18b89ab113e9c6c7a529316ddf7029fb55132d|commit]], [[https://git.kernel.org/linus/16bae3e1377846734ec6b87eee459c0f3551692c|commit]] * maple_tree: Introduce interfaces to improve the performance of fork() [[https://git.kernel.org/linus/4f2267b58a22d972be98edef8e6b3c7a67c9fb91|commit]], [[https://git.kernel.org/linus/b2472efe4316b2687c153919c1513a098bd82c17|commit]], [[https://git.kernel.org/linus/fd32e4e9b7646510ee9010e0d5f8b8857d48a6f7|commit]], [[https://git.kernel.org/linus/46c99e26f2f86260fed226cab217d0b3ca8dca56|commit]], [[https://git.kernel.org/linus/a2587a7e8d37885dc063255f5400a66299b42e48|commit]], [[https://git.kernel.org/linus/9bc1d3cdb904170214456bca96c4924f28522ab8|commit]], [[https://git.kernel.org/linus/f670fa1caadb4ea532a89012c5451e4c6789bfcc|commit]], [[https://git.kernel.org/linus/446e1867e6df3cbdd19af6be8f8f4ed56176adb4|commit]], [[https://git.kernel.org/linus/8e50d32c7a89bde896945e4e572ef28ccd87bbf8|commit]], [[https://git.kernel.org/linus/d2406291483775ecddaee929231a39c70c08fda2|commit]] * Task scheduler * (FEATURED) Introduce SCHED_DEADLINE server infrastructure (nested/2-level scheduling), which works more towards reducing SCHED_DEADLINE starvation of low priority tasks (e.g., SCHED_OTHER) tasks when higher priority tasks monopolize CPU cycles [[https://git.kernel.org/linus/5d69eca542ee17c618f9a55da52191d5e28b435f|commit]], [[https://git.kernel.org/linus/5fe6ec8f6ab549b6422e41551abb51802bd48bc7|commit]], [[https://git.kernel.org/linus/c708a4dc5ab547edc3d6537233ca9e79ea30ce47|commit]], [[https://git.kernel.org/linus/9e07d45c5210f5dd6701c00d55791983db7320fa|commit]], [[https://git.kernel.org/linus/2f7a0f58948d8231236e2facecc500f1930fb996|commit]], [[https://git.kernel.org/linus/63ba8422f876e32ee564ea95da9a7313b13ff0a1|commit]] * eevdf: Introduce O(1) fastpath for EEVDF task selection [[https://git.kernel.org/linus/2227a957e1d5b1941be4e4207879ec74f4bb37f8|commit]], [[https://git.kernel.org/linus/ee4373dc902c0a403dd084b254ce70a78f95466f|commit]] * fair: Remove SCHED_FEAT(UTIL_EST_FASTUP) [[https://git.kernel.org/linus/7736ae5572eb344c090fbef9621a228e7e3d6276|commit]] * fair: Use all little CPUs for CPU-bound workloads [[https://git.kernel.org/linus/3af7524b14198f5159a86692d57a9f28ec9375ce|commit]] * Consolidate how the max compute capacity is used in the scheduler and how we calculate the frequency for a level of utilization [[https://git.kernel.org/linus/9c0b4bb7f6303c9c4e2e34984c46f5a86478f84d|commit]] * Tune the NUMA-balancing vma scanning logic some more, to better distribute the probability of a particular vma getting scanned [[https://git.kernel.org/linus/84db47ca7146d7bd00eb5cf2b93989a971c84650|commit]] * stackdepot * Add stats counters exported via debugfs [[https://git.kernel.org/linus/c2a292545cd43dcab86d5290ed95b006f1cefe90|commit]] * Make fast paths lock-less again [[https://git.kernel.org/linus/4434a56ec20925333d6cf4d4093641d063abd35b|commit]] * nolibc: add rstat support [[https://git.kernel.org/linus/7b20478b777c3be39a2b69b08a6c0b50c10105f1|commit]], [[https://git.kernel.org/linus/a0bb5f88fc3d72bc92c24a631f2c7794362efac1|commit]], [[https://git.kernel.org/linus/d543d9ddf593b1f4cb1d57d9ac0ad279fe18adaf|commit]] * {{{/proc/sysrq-trigger}}}: accept multiple keys at once [[https://git.kernel.org/linus/39ff20f5fd4481c9acf3b75c7b705b1ec6604588|commit]] * driver core: Enable fw_devlink=rpm by default [[https://git.kernel.org/linus/055467378bf14d6cc6d17e52dcfc76313b531bd7|commit]] = File systems = * BTRFS * Convert to the new mount API [[https://git.kernel.org/linus/f67d922edb4e95a4a56d07d5d40a76dd4f23a85b|commit]], [[https://git.kernel.org/linus/2b41b19dd6d063a3dca8c1f855a056515f0f678d|commit]], [[https://git.kernel.org/linus/6207c9e3c2059530e4f9b885c61ef2fb4e200036|commit]], [[https://git.kernel.org/linus/a6a8f22a4af6c572d9e01ca9f7b515bf0cbb63b1|commit]], [[https://git.kernel.org/linus/272efa308fb6bfc7b04a4b6f6dde7b0431b51fee|commit]], [[https://git.kernel.org/linus/9ef40c2e9b26bbf9b2110003107e46dabfd4e7dd|commit]], [[https://git.kernel.org/linus/2496bff6e53d3ad0541a5a3f720c3f7924bb2550|commit]], [[https://git.kernel.org/linus/15ddcdd34ebfe7ab58ff4ef4199fd5796da6a6e3|commit]], [[https://git.kernel.org/linus/17b3612022fe533e70c0a83ea7634069e5ce33f1|commit]], [[https://git.kernel.org/linus/0f85e244dfc5c22cb5e115ccad651df65e6fd68a|commit]], [[https://git.kernel.org/linus/eddb1a433f2631ef211b3253ba7e7aba20310ebc|commit]], [[https://git.kernel.org/linus/3bb17a25bcb09abbd667c6ac86c7c9109ae82bcd|commit]], [[https://git.kernel.org/linus/f044b318675f0347ecfb88377542651ba4eb9e1f|commit]], [[https://git.kernel.org/linus/ad21f15b0f795daf8723dddbcb61797d4f1c2aed|commit]], [[https://git.kernel.org/linus/41d46b290ef9b5563ae5b3c46cf86e0ae1e4bf95|commit]], [[https://git.kernel.org/linus/6941823cc87812dba4d02c67f46768cba372970b|commit]], [[https://git.kernel.org/linus/83e3a40a69f8dd57048089af31a1430c1808d924|commit]], [[https://git.kernel.org/linus/9fb3b1a7fed796510a5c34f5d492840dfd0eb96c|commit]], [[https://git.kernel.org/linus/a1912f712188291f9d7d434fba155461f1ebef66|commit]] * Clean up RAID I/O geometry calculation [[https://git.kernel.org/linus/02d05b6416b1f09a877c71c2761b45d1548d8856|commit]], [[https://git.kernel.org/linus/fd747f2d5f9bdf16b65326be9742338c770ba35f|commit]], [[https://git.kernel.org/linus/30e8534b538e8e7372e49516a8cddacdfd80f863|commit]], [[https://git.kernel.org/linus/5e36aba8377b78b4ec8e15d29a1dee0d626d735d|commit]], [[https://git.kernel.org/linus/5aeb15c8ca0d0cbd30e21391d2c7e25554f1e65e|commit]], [[https://git.kernel.org/linus/8938f112b9c41aaf66f652fc18aa424d2990e15c|commit]], [[https://git.kernel.org/linus/d9d4ce9f297febc1463872475e4d1f6a97deb357|commit]], [[https://git.kernel.org/linus/089221d3457b8756d6823be9857884d938af817c|commit]], [[https://git.kernel.org/linus/a16fb8c6f61863f18fab61eeba10a457ff6d71d2|commit]], [[https://git.kernel.org/linus/b55b307785ad88298914bc5c18c7d37bc5b88cb7|commit]], [[https://git.kernel.org/linus/89f547c6cc61baa77bb226c0a5284f56871d6080|commit]], [[https://git.kernel.org/linus/6edf68223679be380e567e664f97043871133537|commit]], [[https://git.kernel.org/linus/e94dfb7a2935cb91faca88bf7136177d1ce0dda8|commit]] * Minor performance change to setting/clearing delalloc [[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]] * zoned: optimize hint byte for zoned allocator [[https://git.kernel.org/linus/02444f2ac26eae6385a65fcd66915084d15dffba|commit]] * BCACHEFS * BCH_IOCTL_DEV_USAGE_V2 [[https://git.kernel.org/linus/e6674decb2195999ae9fe074bf048ba91e336144|commit]] * Improve sysfs compression_stats [[https://git.kernel.org/linus/7541787f58d19b4fab4368681d4ef4ed8f0dbd61|commit]] * BCH_IOCTL_FSCK_OFFLINE [[https://git.kernel.org/linus/8408fa570ef9b8c35720369bad6b13828ae6b001|commit]] * BCH_IOCTL_FSCK_ONLINE [[https://git.kernel.org/linus/267b801fda10b70eca4001a819fcac07f023df6b|commit]] * Online fsck can now fix errors [[https://git.kernel.org/linus/d55ddf6e7a81e1e72b2f73c3cca836a6961c68af|commit]] * CACHEFILES * Introduce daemon failover mechanism to recover from crashing. A restarted daemon will be able to process requests as usual [[https://git.kernel.org/linus/357a18d033143617e9c7d420c8f0dd4cbab5f34d|commit]], [[https://git.kernel.org/linus/3c5ecfe16e7699011c12c2d44e55437415331fa3|commit]], [[https://git.kernel.org/linus/0a7e54c1959c0feb2de23397ec09c7692364313e|commit]], [[https://git.kernel.org/linus/b817e22b2e91257ace32a6768c3c003faeaa1c5c|commit]], [[https://git.kernel.org/linus/e73fa11a356ca0905c3cc648eaacc6f0f2d2c8b3|commit]] * EROFS * Basic sub-page compressed data support [[https://git.kernel.org/linus/192351616a9dde686492bcb9d1e4895a1411a527|commit]], [[https://git.kernel.org/linus/54ed3fdd66055d073cb1cd2c6c65bbc0683c40cf|commit]], [[https://git.kernel.org/linus/8d2517aaeea3ab8651bb517bca8f3c8664d318ea|commit]], [[https://git.kernel.org/linus/e5aba911dee5e20fa82efbe13e0af8f38ea459e7|commit]], [[https://git.kernel.org/linus/1ca01520148af399899ed66af5c78330bb9ecaf2|commit]], [[https://git.kernel.org/linus/0ee3a0d59e007320167a2e9f4b8bf1304ada7771|commit]] * Support compressed inodes over fscache [[https://git.kernel.org/linus/a1bafc3109d713ed83f73d61ba5cb1e6fd80fdbc|commit]] * F2FS * sysfs: support discard_io_aware [[https://git.kernel.org/linus/d346fa09abff46988de9267b67b6900d9913d5a2|commit]] * Show more discard status by sysfs [[https://git.kernel.org/linus/c3c2d45b9050180974e35ec8672c6e788adc236a|commit]] * NFS * Make nfsd stats visible in network ns [[https://git.kernel.org/linus/ab42f4d9a26f1723dcfd6c93fcf768032b2bb5e7|commit]], [[https://git.kernel.org/linus/a2214ed588fb3c5b9824a21cff870482510372bb|commit]], [[https://git.kernel.org/linus/f094323867668d50124886ad884b665de7319537|commit]], [[https://git.kernel.org/linus/3f6ef182f144dcc9a4d942f97b6a8ed969f13c95|commit]], [[https://git.kernel.org/linus/418b9687dece5bd763c09b5c27a801a7e3387be9|commit]], [[https://git.kernel.org/linus/d98416cc2154053950610bb6880911e3dcbdf8c5|commit]], [[https://git.kernel.org/linus/93483ac5fec62cc1de166051b219d953bb5e4ef4|commit]], [[https://git.kernel.org/linus/4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d|commit]], [[https://git.kernel.org/linus/e41ee44cc6a473b1f414031782c3b4283d7f3e5f|commit]], [[https://git.kernel.org/linus/16fb9808ab2c99979f081987752abcbc5b092eac|commit]] * 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]] * NTFS3 * Add ioctl operation for directories (FITRIM) [[https://git.kernel.org/linus/1f5fa4b3b85ceb43f1053290f0ade037b50e6297|commit]] * CIFS * reparse points work [[https://git.kernel.org/linus/3322960ce222997b1663ffa69e691b2edfec4ac9|commit]], [[https://git.kernel.org/linus/102466f303ffcd5cff207b3c122557f73f1041e6|commit]], [[https://git.kernel.org/linus/67ec9949b0dfe78c99e110dd975eb7dc5645630c|commit]], [[https://git.kernel.org/linus/7435d51b7ea2ab7801279c43ecd72063e9d5c92f|commit]], [[https://git.kernel.org/linus/5408990aa662bcfd6ba894734023a023a16e8729|commit]], [[https://git.kernel.org/linus/514d793e27a310eb26b112c1f8f1a160472907e5|commit]], [[https://git.kernel.org/linus/3ded18a9e9d22a9cba8acad24b77a87851f9c9fa|commit]] * show beginning time for per share stats [[https://git.kernel.org/linus/d8392c203e84ec7daa2afecdb8f4db69bc32416a|commit]] * new nt status codes from MS-SMB2 [[https://git.kernel.org/linus/7f738527a7a03021c7e1b02e188f446845f05eb6|commit]] * New mount option called {{{retrans}}}, so that all these handlers of -EAGAIN can retry a fixed number of times [[https://git.kernel.org/linus/ce09f8d8a7130e6edfdd6fcad8eb277824d5de95|commit]] * Reschedule periodic query for server interfaces [[https://git.kernel.org/linus/49fe25ce838183afac20f40457157ec009a86930|commit]] * XFS * Online repair of AG btrees [[https://git.kernel.org/linus/6ece924b95226235059ed2ffc2c0f44a124c5910|commit]], [[https://git.kernel.org/linus/0f08af0f9f3eb4a67fa3849c63e918bac9773da8|commit]], [[https://git.kernel.org/linus/efb43b355457dab474c7eb40d6b2f3cb04c24ecf|commit]], [[https://git.kernel.org/linus/8bd0bf570bd7b5cbcce3f70b760d8dcccd8df6c8|commit]], [[https://git.kernel.org/linus/4bdfd7d15747b170ce93a06fafccaf20544b6684|commit]], [[https://git.kernel.org/linus/dbfbf3bdf639a20da7d5fb390cd2e197d25aa418|commit]], [[https://git.kernel.org/linus/9099cd38002f8029c9a1da08e6832d1cd18e8451|commit]] * Prepare repair for bulk loading [[https://git.kernel.org/linus/13ae04d8d45227c2ba51e188daf9fc13d08a1b12|commit]], [[https://git.kernel.org/linus/c1e0f8e6fb060b23b6f1b82eb4265983f7d271f8|commit]], [[https://git.kernel.org/linus/26de64629d8b439a03bce243f14a46f7440729f3|commit]], [[https://git.kernel.org/linus/a20ffa7d9f863056364b11a680145a76ef15acb2|commit]], [[https://git.kernel.org/linus/6dfeb0c2ecde71d61af77f65eabbdd6ca9315161|commit]], [[https://git.kernel.org/linus/e069d549705e49841247acf9b3176744e27d5425|commit]] * Reserve disk space for online repairs [[https://git.kernel.org/linus/6b126139401a2284402d7c38fe3168d5a26da41d|commit]], [[https://git.kernel.org/linus/4dffb2cbb4839fd6f9bbac0b3fd06cc9015cbb9b|commit]], [[https://git.kernel.org/linus/4c88fef3af4a51c2cdba6a28237e98da4873e8dc|commit]], [[https://git.kernel.org/linus/e3042be36c343207b7af249a09f50b4e37e9fda4|commit]], [[https://git.kernel.org/linus/4c8ecd1cfdd01fb727121035014d9f654a30bdf2|commit]], [[https://git.kernel.org/linus/be408417630427984a1fddd069f30b245793234c|commit]], [[https://git.kernel.org/linus/6bb9ea8ecd2c58a66324cb799838e7d49d78a877|commit]], [[https://git.kernel.org/linus/3f3cec031099c37513727efc978a12b6346e326d|commit]] * Online repair of rt bitmap file [[https://git.kernel.org/linus/41991cf298919de211c63251d72266aff70ecad0|commit]], [[https://git.kernel.org/linus/04f0c3269b41f28c041980a30514850453ded251|commit]], [[https://git.kernel.org/linus/20cc0d398e89d1f735c8e2815defc8ba9fdcce3f|commit]], [[https://git.kernel.org/linus/5a8e07e799721ba68dd6d713d4a68598eab3bea1|commit]], [[https://git.kernel.org/linus/a59eb5fc21b2a6dc160ee6cdf77f20bc186a88fd|commit]], [[https://git.kernel.org/linus/ffd37b22bd2b7cca7749c85a0a08268158903e55|commit]] * Online repair of file fork mappings [[https://git.kernel.org/linus/66da11280f7ecd77abd999c469efc0dd643f26f5|commit]], [[https://git.kernel.org/linus/8f71bede8efd820627ac05c19eac2758214bc896|commit]], [[https://git.kernel.org/linus/48a72f60861f790dd7c2db04d69c3a1ce606984e|commit]], [[https://git.kernel.org/linus/d12bf8bac87a0d93e6e5fab67f399d1e3d3d5767|commit]], [[https://git.kernel.org/linus/dbbdbd0086320a026903ca34efedb6abf55230ed|commit]] * Online repair of inodes and forks [[https://git.kernel.org/linus/d5aa62de1efe0fb8c52acf7103808048ddd38767|commit]], [[https://git.kernel.org/linus/259ba1d36f559653390c0e9dbdee5c4ffc28bb29|commit]], [[https://git.kernel.org/linus/576d30ecb620ae3bc156dfb2a4e91143e7f3256d|commit]], [[https://git.kernel.org/linus/6b5d917780219d0d8f8e2cefefcb6f50987d0fa3|commit]], [[https://git.kernel.org/linus/d9041681dd2f5334529a68868c9266631c384de4|commit]], [[https://git.kernel.org/linus/2d295fe65776d15c06d53dbe3064f62e036e7c46|commit]], [[https://git.kernel.org/linus/e744cef206055954517648070d2b3aaa3d2515ba|commit]], [[https://git.kernel.org/linus/6c7289528d3c91855d78c56bb35fa360ed9a40bd|commit]], [[https://git.kernel.org/linus/c3a22c2e4b45fcf3184e7dd1c755e6b45dc9f499|commit]] * Online repair of quota and rt metadata files [[https://git.kernel.org/linus/7d1f0e167a067ed741dec08b7614d76893422b04|commit]], [[https://git.kernel.org/linus/774b5c0a5152892bf5f43ce560f3a814b1fdf3b7|commit]], [[https://git.kernel.org/linus/21d7500929c8a0b10e22a6755850c6f9a9280284|commit]], [[https://git.kernel.org/linus/a5b91555403e3a09ae00bed85fc78b60801dda24|commit]] * AFS * Fix probe handling, server rotation and RO volume callback handling [[https://git.kernel.org/linus/4121b4337146b64560d1e46ebec77196d9287802|commit]], [[https://git.kernel.org/linus/1702e0654ca9a7bcd7c7619c8a5004db58945b71|commit]], [[https://git.kernel.org/linus/df91b9dfdee23072641570b1efc049f19d839ae8|commit]], [[https://git.kernel.org/linus/bad1a11c0f061aa073bab785389fe04f19ba02e1|commit]], [[https://git.kernel.org/linus/fe245c8fcdac339e6b42076c828a6bede3a5e948|commit]], [[https://git.kernel.org/linus/07f3502b33a260f873e35708d2fa693eb52225cb|commit]], [[https://git.kernel.org/linus/72904d7b9bfbf2dd146254edea93958bc35bbbfe|commit]], [[https://git.kernel.org/linus/a2aff7b5eb2584b8cb45820de025f786331eddc1|commit]], [[https://git.kernel.org/linus/aa4917d6e59dc66ccffc8f449ea04f8236dd6ea4|commit]], [[https://git.kernel.org/linus/eb8eae65f0c713bcef84b082aa919f72c3d83268|commit]], [[https://git.kernel.org/linus/075171fd22be33acf4ab354814bfa6de1c3412ce|commit]], [[https://git.kernel.org/linus/2de5599f63babb416e09b1a6be429a47910dd47c|commit]], [[https://git.kernel.org/linus/6f2ff7e89bd05677f4c08fccafcf625ca3e09c1c|commit]], [[https://git.kernel.org/linus/aa453becce5d1ae1b94b7fc22f47d7b05d22b14e|commit]], [[https://git.kernel.org/linus/1e5d8493254db9b28d4dce4fed87e56d9a2fefa5|commit]], [[https://git.kernel.org/linus/905b86156423de48480d915c5cd3c23bef1bc043|commit]], [[https://git.kernel.org/linus/e38f299ececc6b63a47074cc922ce8bbd3350c58|commit]], [[https://git.kernel.org/linus/98f9fda2057ba34b720c4d353351024d6dcee90f|commit]], [[https://git.kernel.org/linus/d2ce4a84c21f803cd65097d1112b60226b2a3467|commit]], [[https://git.kernel.org/linus/af9a5b4930dfafbf0274e9403cb64fcc698bb096|commit]], [[https://git.kernel.org/linus/b605ee421fa0425950fda2dce64fd359e1361dec|commit]], [[https://git.kernel.org/linus/f94f70d39cc2d54079ebae934862198516315db2|commit]], [[https://git.kernel.org/linus/d14cf8edd30678b5d1e3671466d458bf72a53e86|commit]], [[https://git.kernel.org/linus/92f091cdddace38e57ad570663b058a38b4d8bed|commit]], [[https://git.kernel.org/linus/e6a7d7f71b17e0a44e2155bdad47eae7b5368503|commit]], [[https://git.kernel.org/linus/f49b594df3ebca53c91f4d6448680463f10aa479|commit]], [[https://git.kernel.org/linus/21c1f410d20295dbeee4178f7fdde5e167e20b43|commit]], [[https://git.kernel.org/linus/ca0e79a46097d54e4af46c67c852479d97af35bb|commit]], [[https://git.kernel.org/linus/445f9b6952869586990ec3140dcd87c86d795d2e|commit]], [[https://git.kernel.org/linus/dfa0a44946e29bd38c054df04ca7a3f8143dafe7|commit]], [[https://git.kernel.org/linus/32222f09782f1894fcfc37f6505ca676a6f4d1d6|commit]], [[https://git.kernel.org/linus/dd94888938f8fefc6ee29ef57560c1e87cc3e05e|commit]], [[https://git.kernel.org/linus/d3acd81ef916537f4f7321f3d7861f1950d5c304|commit]], [[https://git.kernel.org/linus/16069e1349a0c5535e189f9dc5d937bfd7631a06|commit]], [[https://git.kernel.org/linus/453924de6212ac159f946b75c6b59918e2e30944|commit]], [[https://git.kernel.org/linus/495f2ae9e3552c30f7b83be3d142a932885d506e|commit]], [[https://git.kernel.org/linus/28f4c58045ede40c44d331b9a6c9a6a41eb8e9a9|commit]], [[https://git.kernel.org/linus/abcbd3bfbbfe97a8912d0c929d4aa18f50d9bc52|commit]] * ZONEFS * zonefs: Improve error handling [[https://git.kernel.org/linus/14db5f64a971fce3d8ea35de4dfc7f443a3efb92|commit]] = Memory management = * (FEATURED) Multi-size THP for anonymous memory: runtime opt-in feature to transparent hugepages which improves performance by allocating larger chunks of memory during anonymous page faults [[https://git.kernel.org/linus/7dc7c5ef6463111991002f24c0aea08afe86f2cc|commit]], [[https://git.kernel.org/linus/372cbd4d5a0665bf7e181c72f5e40e1bf59b0b08|commit]], [[https://git.kernel.org/linus/3485b88390b0af9e05dc2c3f57e9936f41e159a0|commit]], [[https://git.kernel.org/linus/19eaf44954df64f9bc8dec398219e15ad0811497|commit]], [[https://git.kernel.org/linus/b6aab3384cafba151c53d3b5f7e1f8d073aadf03|commit]], [[https://git.kernel.org/linus/00679a183ac6d2584723cfc2a2c07c8285f802dc|commit]], [[https://git.kernel.org/linus/4f5070a5e40db2e9dbf5fff4ec678d6fbb338d5c|commit]], [[https://git.kernel.org/linus/9f0704eae8a4edc8dca9c8a297f798d505a4103a|commit]], [[https://git.kernel.org/linus/12dc16b38463a671bc91dc2df10f3a014a27ff3b|commit]], [[https://git.kernel.org/linus/c0f79103322c322ea9342d52c2d81528b7b56232|commit]] * dma-fence: Deadline awareness (uabi edition) [[https://git.kernel.org/linus/63ee44540205d993854f143a5ab1d7d9e63ffcf1|commit]], [[https://git.kernel.org/linus/70e67aaec2f4706df0006423eebca813b00f5840|commit]] * kasan * record and report more information [[https://git.kernel.org/linus/5d4c6ac94694096cdfb528f05a3019a1a423b3a4|commit]] * save mempool stack traces [[https://git.kernel.org/linus/280ec6ccb6422aa4a04f9ac4216ddcf055acc95d|commit]], [[https://git.kernel.org/linus/9b94fe91099cbf05606151ef05bea9632666f5d5|commit]], [[https://git.kernel.org/linus/1bb843048d00050678c392dab87a15c8b756df6f|commit]], [[https://git.kernel.org/linus/2e7c954c11af96aa1e0566a706f22152ef91d759|commit]], [[https://git.kernel.org/linus/1956832753735b1c399b86b2c66cb7c317dc9f31|commit]], [[https://git.kernel.org/linus/f129c31039283df884913142b0f3797d64d3a9d6|commit]], [[https://git.kernel.org/linus/9f41c59ae3163690868a32bd77e9e33c3bab555e|commit]], [[https://git.kernel.org/linus/cf0da2afe3dc2462b07fc951fa335a318eb38775|commit]], [[https://git.kernel.org/linus/b556a462eb8df6b6836c318d23f43409c40a7c7e|commit]], [[https://git.kernel.org/linus/ce37eec0ab62fb1f04509b83161845859815ee13|commit]], [[https://git.kernel.org/linus/0cc9fdbf4a5273310779bd4779fcdfb4705438a6|commit]], [[https://git.kernel.org/linus/29d7355a9d05de9a6e38cc4d1146fb96c43853fb|commit]], [[https://git.kernel.org/linus/7d4847ded24775a01cbe1e1a5292f132d27f158b|commit]], [[https://git.kernel.org/linus/413643f3a3e2fe378dbd9f078ec119abc4539a38|commit]], [[https://git.kernel.org/linus/37dcc69ad17a008d2b720bdc39f070ef2a959430|commit]], [[https://git.kernel.org/linus/0f199eb4351ffb453c3df2da733213bef89a03b4|commit]], [[https://git.kernel.org/linus/0f18ea6ea44cde3d7660e52fa8729d420f97409a|commit]], [[https://git.kernel.org/linus/86b15969831bde23c96de00db46687762a6e9e7d|commit]], [[https://git.kernel.org/linus/1ce9a0523938f87dd8505233cc3445f8e2d8dcee|commit]], [[https://git.kernel.org/linus/74e831af165acc968418a4d9fde8c2e099f3e8bf|commit]], [[https://git.kernel.org/linus/8ab3b09755d926afc3bdd2fadff7f159310440c2|commit]] * damon: let users feed and tame/auto-tune DAMOS [[https://git.kernel.org/linus/9294a037c01564786abb15436529fae3863268a2|commit]], [[https://git.kernel.org/linus/7f262da0a30df32a960f90ab6c11b08a7233ea34|commit]], [[https://git.kernel.org/linus/8b549a4fd3c5fd721e268564596095398b0469bc|commit]], [[https://git.kernel.org/linus/d91beaa505a0789c78adcf3ab021f5ed79794697|commit]], [[https://git.kernel.org/linus/f1762cb3eaea34add3655ecd0be9a77aca4e884c|commit]], [[https://git.kernel.org/linus/3649caed1c9b7aa57049620c498596c17fc7af9e|commit]], [[https://git.kernel.org/linus/3143a7bfd2a9852d63a2d88109cf5af49fcf4950|commit]], [[https://git.kernel.org/linus/0972913f9673b13f18c9d72199e25ae07cc1876b|commit]], [[https://git.kernel.org/linus/6140edeea8bf30bf94c23b18c39448b43f528f46|commit]] * ksm: Add ksm advisor [[https://git.kernel.org/linus/4e5fa4f5eff66ac654c5f3aa1b6f94d242ccae03|commit]], [[https://git.kernel.org/linus/66790e9a735b5c42349c48881e496b6946a55c05|commit]], [[https://git.kernel.org/linus/5088b49730afaaf3134d42705cfcff7ce8be082e|commit]], [[https://git.kernel.org/linus/0710f38ad26a6ac08a9154382fd3abf4e84c9092|commit]] * rmap: interface overhaul [[https://git.kernel.org/linus/9d5fafd5d882446999366f673ab06edba453f862|commit]], [[https://git.kernel.org/linus/e135826b2da0cf25305086dc9ac1e91718a148e1|commit]], [[https://git.kernel.org/linus/44887f39945519fa8405133b1acd098fda9c9746|commit]], [[https://git.kernel.org/linus/ebe2e35ec0f256372c158a18de459fb60070b313|commit]], [[https://git.kernel.org/linus/0c2ec32bf0b2f0d7ccb98c53ee5d255d68e73595|commit]], [[https://git.kernel.org/linus/a4ea18641d8330a97d7d66f0ab017b690099ffce|commit]], [[https://git.kernel.org/linus/68f0320824fa59c5429cbc811e6c46e7a30ea32c|commit]], [[https://git.kernel.org/linus/ef37b2ea08ace7b5fbcd569d703be1903afd12f9|commit]], [[https://git.kernel.org/linus/14d85a6e88a658e29d9c8d6c521e7f824f2f2c6c|commit]], [[https://git.kernel.org/linus/c4dffb0bc237d5e3b51adf947062e65ed34ac3c3|commit]], [[https://git.kernel.org/linus/7123e19c3c9d1539c899ac8d919498e3393bb288|commit]], [[https://git.kernel.org/linus/be6e57cfabe99a5d3b3869103c4ea0ed4a9692d4|commit]], [[https://git.kernel.org/linus/96fd74958c558d6976bbc303dda0efa389182fab|commit]], [[https://git.kernel.org/linus/8bd5130070fbf2247a97c5361427a810522ac98a|commit]], [[https://git.kernel.org/linus/91b2978a348073db0e47b380fa66c865eb25f3d8|commit]], [[https://git.kernel.org/linus/395db7b190892f1ca8d31e1fc83198e2531335f6|commit]], [[https://git.kernel.org/linus/a15dc4785c98f360bdca78483455e0aff30242cb|commit]], [[https://git.kernel.org/linus/977295349eb7826c50e2841915de96eab3a502c2|commit]], [[https://git.kernel.org/linus/da7dc0afe243874b6ad25f5070aa728349e4e0fd|commit]], [[https://git.kernel.org/linus/b832a354d787bfbdea5c226f0d77cc1a222d09f8|commit]], [[https://git.kernel.org/linus/84f0169e6c8a613012722e0d63302f9da4a72099|commit]], [[https://git.kernel.org/linus/0cae959e3abf19ba62805f6e6a8b42b6cd9ed3e3|commit]], [[https://git.kernel.org/linus/b06dc281aa9901076898d4d0a7bde588f11bc204|commit]], [[https://git.kernel.org/linus/5cc9695f06b065168f5c893c8e006b6a8a2c9c91|commit]], [[https://git.kernel.org/linus/a8e61d584eda0d5532b0bbfe3c2427d2688d3c83|commit]], [[https://git.kernel.org/linus/35668a4321461505dcc39b56a0d97b0ba2c99668|commit]], [[https://git.kernel.org/linus/18e8612e56244c6db3254d435a22344856a9c55b|commit]], [[https://git.kernel.org/linus/c46265030b0f400ef89833bb51da62676d2f855a|commit]], [[https://git.kernel.org/linus/5b205c7f2684764c8a9cc3442986623d4d6e87f1|commit]], [[https://git.kernel.org/linus/ca1a0746182c3c059573d7e4554d335cae5306dc|commit]], [[https://git.kernel.org/linus/5a0033f0285e0bb29f6e4d1593d4519c91ed882a|commit]], [[https://git.kernel.org/linus/4d8f7418e8ba36036c8486d92d9591c368ab9b85|commit]], [[https://git.kernel.org/linus/d8ef5e311d7bfde54b60ab45026f206eff31b2d2|commit]], [[https://git.kernel.org/linus/61d90309b7156d54c5d358cb5d8bf55b33d233d2|commit]], [[https://git.kernel.org/linus/96c772c25c89f35091ce924117602d04de82a0fe|commit]], [[https://git.kernel.org/linus/08e7795e2444c3df9292f4ac7092be6168166a46|commit]], [[https://git.kernel.org/linus/a13d096471ec0ac5c6fc90fbcd57e8430024046a|commit]], [[https://git.kernel.org/linus/e3b4b1374f87c71e9309efc6149f113cdd17af72|commit]], [[https://git.kernel.org/linus/e78a13fd16bb9d9712f61be2bd6612a092ce66ea|commit]] * Remove the SLAB allocator [[https://git.kernel.org/linus/0445ee000498ec1a5b1ed31bf35816cbeaef5e1e|commit]], [[https://git.kernel.org/linus/2a19be61a65157b9c6c25e831392cdefbd0a8940|commit]], [[https://git.kernel.org/linus/72786c0a3dc5d4151469f512909049a0b17ada3d|commit]], [[https://git.kernel.org/linus/a745b067db0f0711974063deb78c6639c24ec5bf|commit]], [[https://git.kernel.org/linus/bc3dcb850f1818528fcafb10dd38a4590d9119e3|commit]], [[https://git.kernel.org/linus/70da1d01edf6da3fde1df98b2125a77083a0fb82|commit]], [[https://git.kernel.org/linus/a9e0b9f27266d46ed6e73aac8d0844602cd0cb93|commit]], [[https://git.kernel.org/linus/8c20b29db5087684c2d46ca5a33b504b0743c85e|commit]], [[https://git.kernel.org/linus/16a1d968358aa9e897ce995fa45cb15d55a0e83d|commit]], [[https://git.kernel.org/linus/7ef08ae8277c66657127844179912214c67fb4bc|commit]], [[https://git.kernel.org/linus/19975f83412fbb9b1458f3dfbf16ca043a57788a|commit]], [[https://git.kernel.org/linus/89c2d061bfa7fe2b5bcb1393a7a79bb5db8d4140|commit]], [[https://git.kernel.org/linus/6011be59910fb12b757f9d37793d21763268b4a1|commit]], [[https://git.kernel.org/linus/0bedcc66d2a43a50ab660273842f4737a293dd8a|commit]], [[https://git.kernel.org/linus/b52ef56e9b324b172053b03d8c775ef4708fbc23|commit]], [[https://git.kernel.org/linus/b774d3e326d30fc8ef841101c399e44bdac2aa48|commit]], [[https://git.kernel.org/linus/5a9d31d980cbc9cefcee18e186bd4c5d51f3cba2|commit]], [[https://git.kernel.org/linus/4862caa5cba027bf7de925e05e4d1a64c89d81d6|commit]], [[https://git.kernel.org/linus/49378a05ce7f01a203550eb7c2ef772f6d24565c|commit]], [[https://git.kernel.org/linus/3450a0e5a6fc4cdbd70853f12c0c332dd24c1349|commit]], [[https://git.kernel.org/linus/ecf9a253ce120082ce0a8aff806c4de4865cfcc5|commit]] * thp: add {{{CONFIG_TRANSPARENT_HUGEPAGE_NEVER}}} option [[https://git.kernel.org/linus/683ec99f12f4c386c23bed7f6a8ef44db5a4999a|commit]] * Add folio_zero_tail() and folio_fill_tail() [[https://git.kernel.org/linus/a4fc4a0c45f2617c3aa8b693739de264e0c09909|commit]], [[https://git.kernel.org/linus/6eaa266b54660f6b3654ad8902b4f7027054f55a|commit]], [[https://git.kernel.org/linus/78c3c11268c38c5fb5b58f6be1bb018f3f1c195e|commit]] * huge_memory: batch tlb flush when splitting a pte-mapped THP [[https://git.kernel.org/linus/3027c6f8eb9d3857aef08f401aeb7de715410525|commit]] * Cleanup and use more folio in page fault [[https://git.kernel.org/linus/1486fb50136f4799946f5ecfe050094574647153|commit]], [[https://git.kernel.org/linus/f8b6187d8dd98fd32fe393071f362a7b6beaad0a|commit]], [[https://git.kernel.org/linus/294de6d8f14a69f1251b94223ba9d90d64b28cec|commit]], [[https://git.kernel.org/linus/e4621e70469c3ac6e1b6914f1c42941a8a6e44d2|commit]], [[https://git.kernel.org/linus/cf503cc665c442ce9893cb12561c57a328465e29|commit]] * memcg: optimize parent iteration in memcg_rstat_updated() [[https://git.kernel.org/linus/9cee7e8ef3e31ca25b40ca52b8585dc6935deff2|commit]] * memcg: subtree stats flushing and thresholds [[https://git.kernel.org/linus/508bed884767a8eb394640bae9edcdf082816c43|commit]], [[https://git.kernel.org/linus/e0bf1dc859fdd08ef738824710770a30a8069433|commit]], [[https://git.kernel.org/linus/8d59d2214c2362e7a9d185d80b613e632581af7b|commit]], [[https://git.kernel.org/linus/b006847222623ac3cda8589d15379eac86a2bcb7|commit]], [[https://git.kernel.org/linus/7d7ef0a4686abe43cd76a141b340a348f45ecdf2|commit]] * memcontrol: don't throttle dying tasks on memory.high [[https://git.kernel.org/linus/63fd327016fdfca6f2fa27eba3496bd079eb8ed3|commit]] * ratelimit stat flush from workingset shrinker [[https://git.kernel.org/linus/d4a5b369ad6d8aae552752ff438dddde653a72ec|commit]] * More swap folio conversions [[https://git.kernel.org/linus/96c7b0b42239e7b8987b2664b458dc74e825f760|commit]], [[https://git.kernel.org/linus/b99b4e0d9d7f29b428bacd7a61188b2abf340c1e|commit]], [[https://git.kernel.org/linus/bfcd44d5f816b442feb27f59e9312ce38ac4b3cf|commit]], [[https://git.kernel.org/linus/6de62c7bc4bc3444ce63490640efae965b637fe6|commit]], [[https://git.kernel.org/linus/ee1b1d9b46f206ffdef5ebe4086d925a5c43805b|commit]], [[https://git.kernel.org/linus/64a24e55e3f462836ee618be480bd1b0b018e557|commit]], [[https://git.kernel.org/linus/2c184d821eec55f9ea3c98c67dc2b0c5ec827c87|commit]], [[https://git.kernel.org/linus/3c3ebd82e0d1e77df7a3906e79b42d8f0793bdd7|commit]], [[https://git.kernel.org/linus/3a61e6f668120ee2c7840b91891c858d575d07e2|commit]], [[https://git.kernel.org/linus/c9bdf768dd9319d2d80a334646e2c8116af9e430|commit]], [[https://git.kernel.org/linus/69fe7d67cb0c6eeab3d4c9a3bf950f9d12af4719|commit]], [[https://git.kernel.org/linus/6e03492e9d288d9ce886064289e2768da5d7d967|commit]], [[https://git.kernel.org/linus/a4575c4138db887bd27dc7f87cf7cfb0224c6f5e|commit]] * slub: Delay freezing of CPU partial slabs [[https://git.kernel.org/linus/24c6a097b5a270e05c6e99a99da66b91be81fd7d|commit]], [[https://git.kernel.org/linus/43c4c349149c77f27c8e5801755a7b8883a70ebe|commit]], [[https://git.kernel.org/linus/8a399e2f60037ed07a55278e39b20e43dea4f0c2|commit]], [[https://git.kernel.org/linus/422e7d54375889484b66962d1dcbc392a6bd9e7a|commit]], [[https://git.kernel.org/linus/213094b5d1af7e6ab294a6d8f3b50cafb72642ae|commit]], [[https://git.kernel.org/linus/8cd3fa428b56352beaa38df756c1d3f1556f5514|commit]], [[https://git.kernel.org/linus/00eb60c28815e22690834b2e3951ded0cd300b8d|commit]], [[https://git.kernel.org/linus/21316fdc799932ff43fa00a6d6a45b16dbd77844|commit]], [[https://git.kernel.org/linus/31bda717d7777b8b6cf542af2730651ad6bb4839|commit]] * userfaultfd move option [[https://git.kernel.org/linus/880a99b60d467eefd96322e27b0a8c0b805dfa43|commit]], [[https://git.kernel.org/linus/adef440691bab824e39c1b17382322d195e1fab0|commit]], [[https://git.kernel.org/linus/1c8d39fa7b63dcbb77af7b0325fdc519c35fe618|commit]], [[https://git.kernel.org/linus/e8a422408ba9760e2640ca57e4b79c3dd7f48bd2|commit]], [[https://git.kernel.org/linus/a2bf6a9ca80532b75f8f8b6a1cd75ef7e5150576|commit]] * zswap: make shrinking memcg-aware [[https://git.kernel.org/linus/a65b0e7607ccb5e5184591f73e48512f25c76061|commit]] = Block layer = * block integrity: directly map user space addresses [[https://git.kernel.org/linus/492c5d455969fc2e829f26ed4c83487b068f0dd7|commit]], [[https://git.kernel.org/linus/d6aacee9255e7fc10654d867f077d7b0e381eeec|commit]], [[https://git.kernel.org/linus/e5da71f1e373f36c7506ffa9a60ef7ec6e84674d|commit]], [[https://git.kernel.org/linus/8fadb86d4ced8b8349a3b227d6d66736ff150819|commit]] * Default the discard granularity to sector size [[https://git.kernel.org/linus/3c407dc723bbf914f3744b0c2bb82265b411a50c|commit]] * (FEATURED) Add config option to not allow writing to mounted devices [[https://git.kernel.org/linus/1bfdc94b28cf1c89b5b3fb062b1defe51fdba163|commit]], [[https://git.kernel.org/linus/cd34758c5238ae6976b10fe15bba7031b409c969|commit]], [[https://git.kernel.org/linus/ed5cc702d311c14b653323d76062b0294effa66e|commit]], [[https://git.kernel.org/linus/ead622674df5a3ae575b964090bee65f6b7f805f|commit]], [[https://git.kernel.org/linus/6f861765464f43a71462d52026fbddfc858239a5|commit]], [[https://git.kernel.org/linus/3584c8f48a70c1f74c7b7bab59cf22bb66224649|commit]], [[https://git.kernel.org/linus/afde134b5bd02a5c719336ca1d0d3cb7e4def70e|commit]] * zram: split memory-tracking and ac-time tracking [[https://git.kernel.org/linus/a7a0350583ba51d8cde6180bb51d704b89a3b29e|commit]] * md/raid1: support read error check [[https://git.kernel.org/linus/ca294b34aaf3a417fe9069b174e52508ac918ec8|commit]] * md: Remove deprecated CONFIG_MD_LINEAR [[https://git.kernel.org/linus/849d18e27be9a1253f2318cb4549cc857219d991|commit]] * md: Remove deprecated CONFIG_MD_FAULTY [[https://git.kernel.org/linus/415c7451872b0d037760795edd3961eaa63276ea|commit]] * md: Remove deprecated CONFIG_MD_MULTIPATH [[https://git.kernel.org/linus/d8730f0cf4effa015bc5e8840d8f8fb3cdb01aab|commit]] * Implement freeze and thaw as holder operations. This allows us to extend block device freezing to all devices associated with a superblock and not just the main device [[https://git.kernel.org/linus/f0cd988016f679f489f0ca8498c300eaff370b28|commit]], [[https://git.kernel.org/linus/982c3b3058433f20aba9fb032599cee5dfc17328|commit]], [[https://git.kernel.org/linus/fbcb8f39e96d59f4ed48cbdfaa65211fa867985c|commit]], [[https://git.kernel.org/linus/a30561a9be69d446d8d542a4f9735fe5ca9573df|commit]], [[https://git.kernel.org/linus/49ef8832fb1a9e0da0020eb17480fd286433bc13|commit]], [[https://git.kernel.org/linus/434f8d8299f2a0c97578f77ab23a70cd0ae56544|commit]], [[https://git.kernel.org/linus/90f95dc415de23267b888f8238c4a19fa0f66b89|commit]], [[https://git.kernel.org/linus/97cbed04e71da698d324c585f79f981b032a1bd5|commit]], [[https://git.kernel.org/linus/01bc8e9ae23a4257e12c87f5caa0f21034e7b40b|commit]], [[https://git.kernel.org/linus/e419cf3ebaee694a826ddcfb350f1b1ebaf1e599|commit]] * Show correct device and inode numbers in /proc/pid/maps [[https://git.kernel.org/linus/3efdc78fdc21ab82694707eb234ab93f28d13ba8|commit]] = Tracing, perf and BPF = * bpf: Add a new kfunc for cgroup1 hierarchy [[https://git.kernel.org/linus/fe977716b40cb98cf9c91a66454adf3dc2f8c59a|commit]] * bpf: Add bpf_cpumask_weight() kfunc [[https://git.kernel.org/linus/a6de18f310a511278c1ff16b96eb2d500eada725|commit]] * bpf: File verification with LSM and fsverity [[https://git.kernel.org/linus/ac9c05e0e453cfcab2866f6d28f257590e4f66e5|commit]], [[https://git.kernel.org/linus/67814c00de3161181cddd06c77aeaf86ac4cc584|commit]], [[https://git.kernel.org/linus/0de267d9ec6574536ec5ea2f2242df5c92bcdd4b|commit]], [[https://git.kernel.org/linus/6b0ae4566aba566a2ab4a2de9c59ab3d7f4b43c2|commit]], [[https://git.kernel.org/linus/341f06fdddf72cd60a10945152f69f0f1d614519|commit]], [[https://git.kernel.org/linus/1030e9154258b54e3c7dc07c39e7b6dcf24bc3d2|commit]] * bpf: Add link_info support for uprobe multi link [[https://git.kernel.org/linus/48f0dfd8d3e212ab27b6db147ed10407ff6aaa88|commit]], [[https://git.kernel.org/linus/4930b7f53a298533bc31d7540b6ea8b79a000331|commit]], [[https://git.kernel.org/linus/e56fdbfb06e26a7066b070967badef4148528df2|commit]], [[https://git.kernel.org/linus/1703612885723869064f18e8816c6f3f87987748|commit]], [[https://git.kernel.org/linus/147c69307bcf67f1f01246f9acb794da9837f299|commit]], [[https://git.kernel.org/linus/a7795698f8b6c48283fa4334eb313bc1350b2864|commit]] * bpf: Reduce memory usage for bpf_global_percpu_ma [[https://git.kernel.org/linus/9beda16c257d55213f70adee2f16d7f13a8502e1|commit]], [[https://git.kernel.org/linus/9fc8e802048ad150e8032c4f3dbf40112160cfe9|commit]], [[https://git.kernel.org/linus/c39aa3b289e9c10d0d246cd919b06809f13b72b8|commit]], [[https://git.kernel.org/linus/5b95e638f134e552b5ba2976326c02babe248615|commit]], [[https://git.kernel.org/linus/0e2ba9f96f9b82893ba19170ae48d46003f8ef44|commit]], [[https://git.kernel.org/linus/5c1a37653260ed5d9c8b26fb7fe7b99629612982|commit]], [[https://git.kernel.org/linus/21f5a801c171dff4e728e38f62cf626c4197d07c|commit]], [[https://git.kernel.org/linus/adc8c4549d9e74d2359c217d2478b18ecdd15c91|commit]] * bpf: Re-support uid and gid when mounting bpffs [[https://git.kernel.org/linus/b08c8fc0411dce0fc44b78ce4d67f1b67c35c196|commit]] * BPF register bounds logic and testing improvements [[https://git.kernel.org/linus/2b62aa59d02ed281fa4fc218df3ca91b773e1e62|commit]], [[https://git.kernel.org/linus/f4c7e887324f5776eef6e6e47a90e0ac8058a7a8|commit]], [[https://git.kernel.org/linus/93f7378734b595fb61e89b802002fb7e3a1267d2|commit]], [[https://git.kernel.org/linus/d540517990a9d105bf0312760665964916ac044f|commit]], [[https://git.kernel.org/linus/c1efab6468fd5ef541d47d81dbb62cca27f8db3b|commit]], [[https://git.kernel.org/linus/6593f2e6741f03b49bffc9d55ddd4c1c47853c39|commit]], [[https://git.kernel.org/linus/c51d5ad6543cc36334ef1fcd762d0df767a0bf7e|commit]], [[https://git.kernel.org/linus/d7f00873817129e62f8c70891cb13c8eafe9feef|commit]], [[https://git.kernel.org/linus/9e314f5d8682e1fe6ac214fb34580a238b6fd3c4|commit]], [[https://git.kernel.org/linus/c2a3ab094683ddc154879a1364fc7cb0228f96a6|commit]], [[https://git.kernel.org/linus/c31534267c180f7ed00288d239a501b554885300|commit]], [[https://git.kernel.org/linus/c697289efe4ef38bc5c62f119cb74433f784b826|commit]], [[https://git.kernel.org/linus/b74c2a842bba941945279027083fcee1e9aaa73f|commit]], [[https://git.kernel.org/linus/4d345887d2e5a1915600cb5d37b16c4088c6ee1c|commit]], [[https://git.kernel.org/linus/811476e9cc578cb6c776627ac069dc45a8431791|commit]], [[https://git.kernel.org/linus/4621202adc5bc0d1006af37fe8b9aca131387d3c|commit]] * bpf: Complete BPF verifier precision tracking support for register spills [[https://git.kernel.org/linus/41f6f64e6999a837048b1bd13a2f8742964eca6b|commit]], [[https://git.kernel.org/linus/876301881c436bf38e83a2c0d276a24b642e4aab|commit]], [[https://git.kernel.org/linus/ab125ed3ec1c10ccc36bc98c7a4256ad114a3dae|commit]], [[https://git.kernel.org/linus/eaf18febd6ebc381aeb61543705148b3e28c7c47|commit]], [[https://git.kernel.org/linus/b33ceb6a3d2ee07fdd836373383a6d4783581324|commit]], [[https://git.kernel.org/linus/e322f0bcb8d371f4606eaf141c7f967e1a79bcb7|commit]], [[https://git.kernel.org/linus/add1cd7f22e61756987865ada9fe95cd86569025|commit]], [[https://git.kernel.org/linus/18a433b62061e3d787bfc3e670fa711fecbd7cb4|commit]] * bpfilter: remove bpfilter [[https://git.kernel.org/linus/98e20e5e13d2811898921f999288be7151a11954|commit]] * Add bpf_xdp_get_xfrm_state() kfunc [[https://git.kernel.org/linus/8f0ec8c681755f523cf842bfe350ea40609b83a9|commit]], [[https://git.kernel.org/linus/77a7a8220f0d87c44425c0a12e0a72b14962535b|commit]], [[https://git.kernel.org/linus/02b4e126e6a5f5552da2ccec47a028984d2d9654|commit]], [[https://git.kernel.org/linus/e7adc8291a9e9c232d600d82465cbbb682164ca3|commit]], [[https://git.kernel.org/linus/2cd07b0eb08c0ed63b1bd0bf0114146b19a4ab1f|commit]] * Enhance BPF global subprogs with argument tags [[https://git.kernel.org/linus/4ba1d0f23414135e4f426dae4cb5cdc2ce246f89|commit]], [[https://git.kernel.org/linus/5eccd2db42d77e3570619c32d39e39bf486607cf|commit]], [[https://git.kernel.org/linus/e26080d0da87f20222ca6712b65f95a856fadee0|commit]], [[https://git.kernel.org/linus/c5a7244759b1eeacc59d0426fb73859afa942d0d|commit]], [[https://git.kernel.org/linus/f18c3d88deedf0defc3e4800341cc7bcaaabcdf9|commit]], [[https://git.kernel.org/linus/94e1c70a34523b5e1529e4ec508316acc6a26a2b|commit]], [[https://git.kernel.org/linus/a64bfe618665ea9c722f922cba8c6e3234eac5ac|commit]], [[https://git.kernel.org/linus/aae9c25dda159045b223ecb471cd0729ccec8285|commit]], [[https://git.kernel.org/linus/0a0ffcac92d5b41133c97d260ad1f320572783a5|commit]], [[https://git.kernel.org/linus/f0a5056222f2cfa6d40b4c888cb6b01e8569e282|commit]] * Revert BPF token-related functionality [[https://git.kernel.org/linus/d17aff807f845cf93926c28705216639c7279110|commit]] * Libbpf-side `__arg_ctx` fallback support [[https://git.kernel.org/linus/df7c3f7d3a3ddab31ca8cfa9b86a8729ec43fd2e|commit]], [[https://git.kernel.org/linus/fa98b54bff39f51c46fc96d3385c6292391c277b|commit]], [[https://git.kernel.org/linus/f08c18e083adfef92946ae1d44b07bb81e727e08|commit]], [[https://git.kernel.org/linus/dac645b950ea4fc0896fe46a645365cb8d9ab92b|commit]], [[https://git.kernel.org/linus/fb03be7c4a27c25696287df4ee06c5aafa31267c|commit]], [[https://git.kernel.org/linus/1004742d7ff03a088e74133af2401556ac80092b|commit]], [[https://git.kernel.org/linus/2f38fe689470055440bf80fc644920023a643a82|commit]], [[https://git.kernel.org/linus/67fe459144dd629855bd9fb4b12bd9c4f792a8cf|commit]] * perf archive: Add new option '--all' to pack perf.data with DSOs [[https://git.kernel.org/linus/624dda101e03c3a3a155d51e37a7bb7607cb760b|commit]] * perf archive: Add new option '--unpack' to expand tarballs [[https://git.kernel.org/linus/e43c64c971e48d11ee100c5a8b2eadbed056f924|commit]] * perf debug: Expose debug file [[https://git.kernel.org/linus/ec49230cf6dda70437bf878281566dd82af9affa|commit]] * perf tools: Introduce data type profiling [[https://git.kernel.org/linus/60cb19b485a534a896431393a877d853bbe51b67|commit]], [[https://git.kernel.org/linus/3eee606757ad82f32332a2da174aa032bfd9cc32|commit]], [[https://git.kernel.org/linus/b9c87f536c6f28c75ace8a014646faad00f0e1ec|commit]], [[https://git.kernel.org/linus/fc044c53b99fad039ac30b95b289992ebf7dd6b4|commit]], [[https://git.kernel.org/linus/0669729eb0afb0cf55fe1b97d7a8b1315354910f|commit]], [[https://git.kernel.org/linus/3a0c26edc3d2f39da3a91eb6eae404253e7ccbaa|commit]], [[https://git.kernel.org/linus/67bc54bbc5a25c0488cc488558a11c14c10f5f14|commit]], [[https://git.kernel.org/linus/2f2c41bdd87f450a6a71c5d090d42c248ca4bf1e|commit]], [[https://git.kernel.org/linus/81e57deec32594b124d777b1d3ca8a1415410230|commit]], [[https://git.kernel.org/linus/4a111cadac85362ed9476737d7a36e8dd3a8e476|commit]], [[https://git.kernel.org/linus/9bd7ddd1576164fbb8d369c6a7b018af9544e202|commit]], [[https://git.kernel.org/linus/871304a79f755b2ab594bbd21857ecb4c4aa57c9|commit]], [[https://git.kernel.org/linus/e2c1c8ff2d2ffec340b8fc73ee13b8fb516d1c6d|commit]], [[https://git.kernel.org/linus/263925bf843f5ca8257317d74992f8e6b7d222e3|commit]], [[https://git.kernel.org/linus/227ad323854ab48d45966461d7a0a94e03f19368|commit]], [[https://git.kernel.org/linus/61a9741e9f78c64c5178e4ae9d405eeceff04c8f|commit]], [[https://git.kernel.org/linus/58824fa0087e1cb732edbf1f112a5ea0b2205c8b|commit]] * perf stat: Combine the -A/--no-aggr and --no-merge options [[https://git.kernel.org/linus/6f33e6fa29d0366d6e5b3ea2930dbc0b648151fe|commit]] * perf test: Add option to change objdump binary [[https://git.kernel.org/linus/33ce9fc4f8ddba30b7040bd01cea11080f40b344|commit]], [[https://git.kernel.org/linus/6aad765d10c5cd8a62b258c359bae643ab2d45da|commit]] * perf test: Basic branch counter support [[https://git.kernel.org/linus/697579629f850d8f863147351e12e74c50114a8a|commit]] * perf tools: Add --debug-file option to redirect debug output [[https://git.kernel.org/linus/72108c0b9c0e004d7dfc2fc88b02c30b12711325|commit]] * perf: Add branch stack counters [[https://git.kernel.org/linus/571d91dcadfa3cef499010b4eddb9b58b0da4d24|commit]], [[https://git.kernel.org/linus/85846b27072defc7ab3dcee7ff36563a040079dc|commit]], [[https://git.kernel.org/linus/1f2376cd03dd3b965d130ed46a7c92769d614ba1|commit]], [[https://git.kernel.org/linus/318c4985911245508f7e0bab5265e208a38b5f18|commit]], [[https://git.kernel.org/linus/33744916196b4ed7a50f6f47af7c3ad46b730ce6|commit]], [[https://git.kernel.org/linus/ac9cd7245fffa0fc053afce3b345469e5afa533a|commit]], [[https://git.kernel.org/linus/9fbb4b02302b0ae618303565025412070d32f85e|commit]] * tracing: Allow creating instances with specified system events [[https://git.kernel.org/linus/d23569979ca1cd139a42c410e0c7b9e6014c3b3a|commit]] * ring-buffer/tracing: Allow ring buffer to have bigger sub buffers [[https://git.kernel.org/linus/139f84002145d8624f0195fb090b3a7670744a13|commit]], [[https://git.kernel.org/linus/2808e31ec12e5fbe2ae25acc027fcdc67b1fb7f0|commit]], [[https://git.kernel.org/linus/f9b94daa542a8d2532f0930f01cd9aec2d19621b|commit]], [[https://git.kernel.org/linus/bce761d757452ba5eb77e11fecc37a04b67494e7|commit]], [[https://git.kernel.org/linus/22887dfba0633c09444562722f0cf68f61ec9a50|commit]], [[https://git.kernel.org/linus/b81e03a24966dca0b119eff0549a4e44befff419|commit]], [[https://git.kernel.org/linus/4e958db34fd5324421ef9562c31c15e2d152dc63|commit]], [[https://git.kernel.org/linus/aa067682adf19ca78f81cd57539282dbfd7cce21|commit]], [[https://git.kernel.org/linus/fa4b54af5ba17a59ce082e9d710eb638bdce7637|commit]], [[https://git.kernel.org/linus/353cc219372935805218e05a7754a059ab104641|commit]], [[https://git.kernel.org/linus/8e7b58c27b3c567316a51079b375b846f9223bba|commit]], [[https://git.kernel.org/linus/7c3f48026589b532ebc0d12f939f6be78bd74a58|commit]], [[https://git.kernel.org/linus/1acce70374caabc2945aa07a862f834fb7c2914f|commit]], [[https://git.kernel.org/linus/2f84b39f48476615186af5b3220ad5a2c756679b|commit]], [[https://git.kernel.org/linus/3cb3091138ca0921c4569bcf7ffa062519639b6a|commit]] = Virtualization = * KVM * guest_memfd() and per-page attributes [[https://git.kernel.org/linus/e97b39c5c4362dc1cbc37a563ddac313b96c84f3|commit]], [[https://git.kernel.org/linus/c0db19232c1ed6bd7fcb825c28b014c52732c19e|commit]], [[https://git.kernel.org/linus/8569992d64b8f750e34b7858eac5d7daaf0f80fd|commit]], [[https://git.kernel.org/linus/d497a0fab8b8457214fcc9b1a39530920ea7e95e|commit]], [[https://git.kernel.org/linus/1853d7502a19b34b2cfe4ea0698bee73323fec3a|commit]], [[https://git.kernel.org/linus/4a2e993faad3880962540ab8e3b68f22e48b18e8|commit]], [[https://git.kernel.org/linus/f128cf8cfbecccf95e891ae90d9c917df5117c7a|commit]], [[https://git.kernel.org/linus/bb58b90b1a8f753b582055adaf448214a8e22c31|commit]], [[https://git.kernel.org/linus/16f95f3b95caded251a0440051e44a2fbe9e5f55|commit]], [[https://git.kernel.org/linus/cec29eef0a815386d520d61c2cbe16d537931639|commit]], [[https://git.kernel.org/linus/193bbfaacc84f9ee9c281ec0a8dd2ec8e4821e57|commit]], [[https://git.kernel.org/linus/5a475554db1e476a14216e742ea2bdb77362d5d5|commit]], [[https://git.kernel.org/linus/0003e2a414687fff6a75250d381e4abf345d663f|commit]], [[https://git.kernel.org/linus/4f0b9194bc119a9850a99e5e824808e2f468c348|commit]], [[https://git.kernel.org/linus/a7800aa80ea4d5356b8474c2302812e9d4926fa6|commit]], [[https://git.kernel.org/linus/ee605e31563348f44d2ff0b6b74d33df69dd535c|commit]], [[https://git.kernel.org/linus/90b4fe17981e155432c4dbc490606d0c2e9c2199|commit]], [[https://git.kernel.org/linus/8dd2eee9d526c30fccfe75da7ec5365c6476e510|commit]], [[https://git.kernel.org/linus/2333afa17af0f4b6651214ee17cfd5ae5f47787a|commit]], [[https://git.kernel.org/linus/eed52e434bc33603ddb0af62b6c4ef818948489d|commit]], [[https://git.kernel.org/linus/89ea60c2c7b5838bf192c50062d5720cd6ab8662|commit]], [[https://git.kernel.org/linus/335869c3f2b881bda6eeeb2df342841a1db3310b|commit]], [[https://git.kernel.org/linus/8d99e347c097ab3f9fb93d0f88dddf20051d7c88|commit]], [[https://git.kernel.org/linus/bb2968ad6c33c0902dce48ea57d58c5bb4f3c617|commit]], [[https://git.kernel.org/linus/f7fa67495d118f734f98b406fd46888616b4a3c3|commit]], [[https://git.kernel.org/linus/01244fce2fa22176e46609c051f6fe15cf81e188|commit]], [[https://git.kernel.org/linus/672eaa351015d8165c41fff644ee7d2b369cea12|commit]], [[https://git.kernel.org/linus/242331dfc4959f44e706c9b09b768f312aa5e117|commit]], [[https://git.kernel.org/linus/43f623f350ce1c46c53b6b77f4dbe741af8c44f3|commit]], [[https://git.kernel.org/linus/e6f4f345b259cad178bad7e40a9d4b65cf195067|commit]], [[https://git.kernel.org/linus/2feabb855df8f0889146c2e951307ba477d1f37b|commit]], [[https://git.kernel.org/linus/8a89efd43423cb3005c5e641e846184e292c1465|commit]], [[https://git.kernel.org/linus/e3577788de64139202d89224fe31613c0f02b790|commit]] * Remove CONFIG_HAVE_KVM_EVENTFD [[https://git.kernel.org/linus/8132d887a7023b212f242a51ae89281c69fde996|commit]] * Remove CONFIG_HAVE_KVM_IRQFD [[https://git.kernel.org/linus/c5b31cc2371728ddefe9baf1d036aeb630a25d96|commit]] * Remove deprecated UAPIs [[https://git.kernel.org/linus/a5d3df8ae13fada772fbce952e9ee7b3433dba16|commit]] * hv_utils: Allow implicit ICTIMESYNCFLAG_SYNC [[https://git.kernel.org/linus/adf47524b56a791734ae24da8412c6579e2fab4f|commit]] * vfio/migration: Add debugfs to live migration driver [[https://git.kernel.org/linus/2202844e4468c7539dba0c0b06577c93735af952|commit]] * vfio/pds: Add multi-region support [[https://git.kernel.org/linus/2e7c6feb4ef5257189819359e754625ccf5a1d6c|commit]] * Introduce a vfio driver over virtio devices [[https://git.kernel.org/linus/838bebb4c926a573839ff1bfe1b654a6ed0f9779|commit]], [[https://git.kernel.org/linus/fd27ef6b44bec26915c5b2b22c13856d9f0ba17a|commit]], [[https://git.kernel.org/linus/92792ac752aa80d5ee71bc291d90edd06cd76bd1|commit]], [[https://git.kernel.org/linus/388431b9f59bbfde2b5f2fe032b0836158b09ad0|commit]], [[https://git.kernel.org/linus/f51e146f1e5c9de02433e51f5a344556502d9c6a|commit]], [[https://git.kernel.org/linus/c3fc3e098bd64c560dde49a6e72b21b055150abe|commit]], [[https://git.kernel.org/linus/8bccc5b80678c69f7729ce4cd232c0aa98fa6277|commit]], [[https://git.kernel.org/linus/8486ae162b3b6cc1055366f044495cf1966231f1|commit]], [[https://git.kernel.org/linus/eb61eca0e8c3efbdd6d3c9d2b7f70bf67e165f7d|commit]] * virtio: Add support for no-reset virtio PCI PM [[https://git.kernel.org/linus/dff4fa0e57856045359440d05af9e9b7f7048f52|commit]] * virtio_pmem: support feature SHMEM_REGION [[https://git.kernel.org/linus/35967bdcff325f4572b21b0d0005318da7e03f53|commit]] = Cryptography = * Add lskcipher API type [[https://git.kernel.org/linus/0ae4dcc1ebf63118364d540b84c70352e8b2b2a4|commit]], [[https://git.kernel.org/linus/662ea18d089ba6fa02859fbd64f2aa78d88c6648|commit]], [[https://git.kernel.org/linus/47309ea1359115125d9cab17a279c8df72b47235|commit]], [[https://git.kernel.org/linus/99bd99d3e3a7f73c1c01ef510d48730b3bdd2c4a|commit]] * Add Intel Analytics Accelerator (IAA) crypto compression driver [[https://git.kernel.org/linus/15a611015224c6698801ab9a2c2321742c39174e|commit]], [[https://git.kernel.org/linus/d7ad915d817c8ce07a6101292497dddbab0429a3|commit]], [[https://git.kernel.org/linus/8621f99bde2c3232ec254bae67f91bc6ca7b02b9|commit]], [[https://git.kernel.org/linus/86d3a34144fd634861d4401903ac9a21bb87f025|commit]], [[https://git.kernel.org/linus/786d0e7f183ac1c1aef1801c2110f7582f0a6a83|commit]], [[https://git.kernel.org/linus/aa8d18becc0c14aa3eb46d6d1b81450446e11b87|commit]], [[https://git.kernel.org/linus/8ccc257b29a183c42830aa854ed7b50fa22f8731|commit]], [[https://git.kernel.org/linus/ea7a5cbb43696cfacf73e61916d1860ac30b5b2f|commit]], [[https://git.kernel.org/linus/f57bf3f78377d66af89a6d0c6d926ffb1f590b5d|commit]], [[https://git.kernel.org/linus/b190447e0fa3ef7355480d641d078962e03768b4|commit]], [[https://git.kernel.org/linus/2ec6761df889fdf896fde761abd447596dd8f8c2|commit]], [[https://git.kernel.org/linus/09646c98d0bfed47930d9eb0d66c323fae70a5e0|commit]], [[https://git.kernel.org/linus/93382a91632a5d88bb9bb0ff1fea872fe87f5dc2|commit]], [[https://git.kernel.org/linus/979f6ded93ac5ca0fec2b4c5b7b668c8a2a65e1b|commit]] * Remove cfb and ofb [[https://git.kernel.org/linus/29fa12e918e5f7fe9947aab2f325a4b54f4c5d99|commit]], [[https://git.kernel.org/linus/05bd1e2a78a453910104b0fe4aa771d08cbeccf1|commit]], [[https://git.kernel.org/linus/a9cdf13e9ba940ad5498967d60d09c6c1f020b64|commit]], [[https://git.kernel.org/linus/00b05e51222337d1c3b08130f320e1a43af8f73b|commit]], [[https://git.kernel.org/linus/a16144bda9c332079b6a1db52725e9c22007114d|commit]], [[https://git.kernel.org/linus/769a043bf176c6cc66f8762a08cc81c93fa1b789|commit]], [[https://git.kernel.org/linus/f5a019f5b094fc4cedda413571ece59931932a02|commit]], [[https://git.kernel.org/linus/e54f2a5ee8fca19c107f6688c2e1738aeb1d86d9|commit]], [[https://git.kernel.org/linus/572ef735049c10d8d27185438ecff33a265a1481|commit]], [[https://git.kernel.org/linus/1c90a1b43bc34eaf9c8913238f408a1317eab43f|commit]], [[https://git.kernel.org/linus/dfe6c5d16b31bef466e49ed06092ecfe6681c036|commit]], [[https://git.kernel.org/linus/63340c481b859154ad4486f68c9d1b01ace5650e|commit]], [[https://git.kernel.org/linus/66c465c6e7b1867b8bae1194ecfb05556ac7aa07|commit]], [[https://git.kernel.org/linus/015b8e121082671f14cf2912df9afbfd139575b4|commit]], [[https://git.kernel.org/linus/fef39f99d571554ddd2f349231cc56c23f5fe0c6|commit]], [[https://git.kernel.org/linus/92650f930073a0d98c8479b0b4341a613223ec10|commit]], [[https://git.kernel.org/linus/1c95b5469ee313dba6fe1e0d7197b0a6544b8ed0|commit]], [[https://git.kernel.org/linus/d4bd2102472c4071d0df4a948316f73390228faf|commit]], [[https://git.kernel.org/linus/412ac51ce0b8c5581b6ff57fff6501e905a5471f|commit]] * drbg - Remove SHA1 from drbg [[https://git.kernel.org/linus/bc197f5760025b61a33565301f4390886e0483db|commit]] = Security = * (FEATURED) LSM: Three new syscalls: {{{lsm_list_modules()}}}, {{{lsm_get_self_attr()}}}, and {{{lsm_set_self_attr()}}}. The first syscall simply lists the LSMs enabled, while the second and third get and set the current process' LSM attributes. Yes, these syscalls may provide similar functionality to what can be found under /proc or /sys, and considerable time has been spent trying to extend them, but these new syscalls were designed to support multiple, simultaneaous (stacked) LSMs from the start as opposed to the current /proc based solutions which were created at a time when only one LSM was allowed to be active at a given time [[https://git.kernel.org/linus/f3b8788cde61b02f1e6c202f8fac4360e6adbafc|commit]], [[https://git.kernel.org/linus/9285c5ad9d00abfe0f4e2ce4039c8127e7a09738|commit]], [[https://git.kernel.org/linus/267c068e5f8b81b68cc4247c94dbba90a21a634e|commit]], [[https://git.kernel.org/linus/a04a1198088a1378d0389c250cc684f649bcc91e|commit]], [[https://git.kernel.org/linus/ad4aff9ec25f400608283c10d634cc4eeda83a02|commit]], [[https://git.kernel.org/linus/5f42375904b08890f2e8e7cd955c5bf0c2c0d05a|commit]], [[https://git.kernel.org/linus/e1ca7129db2c3b3c4d261702905a752e6b2710b4|commit]], [[https://git.kernel.org/linus/38b323e5881608b5a229526d9a567df6182255ef|commit]], [[https://git.kernel.org/linus/223981db9bafb80f558162c148f261e2ff043dbe|commit]], [[https://git.kernel.org/linus/762c934317e6f4b576eb4aa75e5facf4968a4a8f|commit]], [[https://git.kernel.org/linus/d3d929a8b0cd6deb7d70d1d8d805bccee3fbf11f|commit]] * apparmor: switch SECURITY_APPARMOR_HASH from sha1 to sha256 [[https://git.kernel.org/linus/e44a4dc4b36cc087878596b937d52caca35e9b19|commit]] * audit: Send netlink ACK before setting connection in auditd_set [[https://git.kernel.org/linus/022732e3d846e197539712e51ecada90ded0572a|commit]] * evm: disable EVM on overlayfs [[https://git.kernel.org/linus/40ca4ee3136d2d09977d1cab8c0c0e1582c3359d|commit]], [[https://git.kernel.org/linus/cd708c938f055c9eb5a366ec1c8edcefa28afc28|commit]], [[https://git.kernel.org/linus/c00f94b3a5be428837868c0f2cdaa3fa5b4b1995|commit]] * selinux: introduce an initial SID for early boot processes [[https://git.kernel.org/linus/ae254858ce0745aba25d107159b580ab5fdada5b|commit]] * lsm: new {{{security_file_ioctl_compat()}}} hook to handle the 32-bit ioctls on 64-bit systems problem [[https://git.kernel.org/linus/f1bb47a31dff6d4b34fb14e99850860ee74bb003|commit]] = Networking = * Analyze and reorganize core networking structs (socks, netdev, netns, mibs) to optimize cacheline consumption and set up build time warnings to safeguard against future header changes. This improves TCP performances with many concurrent connections up to 40% [[https://git.kernel.org/linus/14006f1d8fa24a2320781ad503ca1cba92e940d2|commit]], [[https://git.kernel.org/linus/aeb9ce058d7c6193dc41e06b3a5b29d22c446b14|commit]], [[https://git.kernel.org/linus/18fd64d2542292713b0322e6815be059bdee440c|commit]], [[https://git.kernel.org/linus/43a71cd66b9c0a4af3d15d8644359fde35bdbed0|commit]], [[https://git.kernel.org/linus/d5fed5addb2b6bc13035de4338b7ea2052a2e006|commit]] * tcp: Dump bound-only sockets in inet_diag [[https://git.kernel.org/linus/91051f003948432f83b5d2766eeb83b2b4993649|commit]] * tun: add missing rx stats accounting in tun_xdp_act [[https://git.kernel.org/linus/f1084c427f55d573fcd5688d9ba7b31b78019716|commit]] * Introduce queue and NAPI support in netdev-genl (Was: Introduce NAPI queues support) [[https://git.kernel.org/linus/bc877956272f0521fef107838555817112a450dc|commit]], [[https://git.kernel.org/linus/2a502ff0c4e42a739b5aa550c901bf3852795532|commit]], [[https://git.kernel.org/linus/91fdbce7e8d69be255b45bfeb52092629a50e267|commit]], [[https://git.kernel.org/linus/6b6171db7fc8f7a6d0f0f0acb7aff16cecf14f42|commit]], [[https://git.kernel.org/linus/ff9991499fb53575c45eb92cd064bcd7141bb572|commit]], [[https://git.kernel.org/linus/27f91aaf49b3a50e5a02ad5fa27b7c453d029a72|commit]], [[https://git.kernel.org/linus/5a5131d66fe02337de0b1b2e021b58f0f55c6df5|commit]], [[https://git.kernel.org/linus/26793bfb5d6072326d1465343e7cbf6156abca4f|commit]], [[https://git.kernel.org/linus/8481a249a0eaf0000dbb18f7689ccd50ea9835cd|commit]], [[https://git.kernel.org/linus/db4704f4e4dfce835e934609fca735a648ce26e8|commit]] * batman-adv: Implementation of a Stateless Multicast Packet Type [[https://git.kernel.org/linus/07afe1ba288c04280622fa002ed385f1ac0b6fe6|commit]], [[https://git.kernel.org/linus/90039133221e33964ccb4a536dad7eb0a372fff7|commit]], [[https://git.kernel.org/linus/2dfe644a1ce017cacd449adabd68c3bc49199e11|commit]] * Support symmetric-xor RSS hash [[https://git.kernel.org/linus/fb6e30a72539ce28c1323aef4190d35aac106f6f|commit]], [[https://git.kernel.org/linus/dcd8dbf9e734eb334113ea43186c1c26e9f497bb|commit]], [[https://git.kernel.org/linus/13e59344fb9d3c9d3acd138ae320b5b67b658694|commit]], [[https://git.kernel.org/linus/20f73b60bb5c276cee9b1a530f100c677bc74af8|commit]], [[https://git.kernel.org/linus/dc6e44c9d6d68e8aa5de78d15f43f93145719b72|commit]], [[https://git.kernel.org/linus/b1f5921a99ac8dedadf1f2599486b2ca9e01cc0f|commit]], [[https://git.kernel.org/linus/352e9bf238133882dfaebc0dc59a590732a92006|commit]], [[https://git.kernel.org/linus/4a3de3fb0eb6897488dd510006abd9673f1fb34c|commit]] * devlink: introduce notifications filtering [[https://git.kernel.org/linus/337ad364c48a0db7cedb5abb8d5e9163792fd596|commit]], [[https://git.kernel.org/linus/11280ddeae238e3ea27d153794472cfca5e8d121|commit]], [[https://git.kernel.org/linus/cddbff470e3318834af518168d3a917b6e975062|commit]], [[https://git.kernel.org/linus/5648de0b1f2b68bffce9bdd49a276607b9a3e3d4|commit]], [[https://git.kernel.org/linus/a731132424adeda4d5383ef61afae2e804063fb7|commit]], [[https://git.kernel.org/linus/403863e985e8eba608d53b2907caaf37b6176290|commit]], [[https://git.kernel.org/linus/971b4ad88293bef00160e1d38659077fe3a93af6|commit]], [[https://git.kernel.org/linus/13b127d2578432e1e521310b69944c5a1b30679c|commit]], [[https://git.kernel.org/linus/ded6f77c05b113001d449cf2cc810e090f20ec4a|commit]] * gro: reduce extension header parsing overhead [[https://git.kernel.org/linus/f2e3fc2158e66d84af77f4818df47b607ded3a75|commit]], [[https://git.kernel.org/linus/dff0b0161ad571f888d37f5e7163a07dcafdef60|commit]], [[https://git.kernel.org/linus/4e321d590cec6053cb3c566413794706035ee638|commit]] * hsr: Add support for MC filtering at the slave device [[https://git.kernel.org/linus/36b20fcdd9663ced36d3aef96f0eff8eb79de4b8|commit]] * ieee802154: Associations between devices [[https://git.kernel.org/linus/5260adf86b6732c75136fc1b159bb370062ddfa8|commit]], [[https://git.kernel.org/linus/2e7ed75e92fc493ff5484f61aed6489262c78f3e|commit]], [[https://git.kernel.org/linus/05db59a0619969a47ab87050985344177c662cab|commit]], [[https://git.kernel.org/linus/fefd19807fe9c65002366c749e809996a1ca4e68|commit]], [[https://git.kernel.org/linus/7b18313e84eb62c3e4071f9679480159d8da5107|commit]], [[https://git.kernel.org/linus/9860d9be89f420f3793fb798faadea11c723e08a|commit]], [[https://git.kernel.org/linus/601f160b61b2152ef84a663f856350d5dd9e752a|commit]], [[https://git.kernel.org/linus/ce93b9378c306e6bcc4e0bd817acf4195b4a0288|commit]], [[https://git.kernel.org/linus/80f8bf9a2a7f603662e08f7663643a58087a2cd4|commit]], [[https://git.kernel.org/linus/1e2a45f1f854ce63c114b42298ea686dce9ae4fd|commit]], [[https://git.kernel.org/linus/83fcf26b00d77e4a0ec920524fe85350a27e9c05|commit]] * Implement lockless setsockopt(SO_PEEK_OFF) [[https://git.kernel.org/linus/56667da7399eb19af857e30f41bea89aa6fa812c|commit]] * Raise optmem_max default value from 20KB to 128 KB, and make optmem_max sysctl per netns [[https://git.kernel.org/linus/4944566706b27918ca15eda913889db296792415|commit]], [[https://git.kernel.org/linus/f5769faeec36b9d5b9df2c3e4f05a76d04ffd9c9|commit]], [[https://git.kernel.org/linus/18872ba8cd2406ffa835f9f6276e47ed86fbb5d6|commit]] * ipmr: support IP_PKTINFO on cache report IGMP msg [[https://git.kernel.org/linus/bb7403655b3c3eb245d0ee330047cd3e20b3c4af|commit]] * mptcp: add CurrEstab MIB counter [[https://git.kernel.org/linus/d9cd27b8cd191133e287e5de107f971136abe8a2|commit]], [[https://git.kernel.org/linus/c693a8516429908da3ea111b0caa3c042ab1e6e9|commit]], [[https://git.kernel.org/linus/0bd962dd86b2e5d097fc42c7411818851eca2995|commit]], [[https://git.kernel.org/linus/81ab772819da408977ac79c0a17d8be57283379f|commit]] * mptcp: support more ephemeral ports sockopts [[https://git.kernel.org/linus/8e2b8a9fa512709e6fee744dcd4e2a20ee7f5c56|commit]], [[https://git.kernel.org/linus/57d3117ca80f46d5c5af285ca75360eaf28df172|commit]], [[https://git.kernel.org/linus/c85636a2926424c70e13925db734eaca14f6367c|commit]], [[https://git.kernel.org/linus/122db5e3634b85f6caeca19345e0adbdf79cb257|commit]] * ncsi: Add NC-SI 1.2 Get MC MAC Address command [[https://git.kernel.org/linus/c797ce168930ce3d62a9b7fc4d7040963ee6a01e|commit]], [[https://git.kernel.org/linus/3084b58bfd0b9e4b5e034f31f31b42977db35f12|commit]], [[https://git.kernel.org/linus/b8291cf3d1180b5b61299922f17c9441616a805a|commit]] * netfilter: ctnetlink: support filtering by zone [[https://git.kernel.org/linus/eff3c558bb7e61c41b53e4c8130e514a5a4df9ba|commit]] * packet: add a generic drop reason for receive [[https://git.kernel.org/linus/2f57dd94bdef083855366138646b26b05f410d99|commit]] * page_pool: add netlink-based introspection [[https://git.kernel.org/linus/23cfaf67ba5d2f013d2576b8a9173c45a4a7f895|commit]], [[https://git.kernel.org/linus/f17c69649c698e4df3cfe0010b7bbf142dec3e40|commit]], [[https://git.kernel.org/linus/083772c9f972dcc248913b52a0dec1025baa1e16|commit]], [[https://git.kernel.org/linus/02b3de80c5f879f92e5f4bb3f535d172e0fc0ea0|commit]], [[https://git.kernel.org/linus/7cc9e6d77f85fb5faa9ffa26c645c821430c7095|commit]], [[https://git.kernel.org/linus/839ff60df3ab92b81034ea3b859ab984eaa0c84c|commit]], [[https://git.kernel.org/linus/950ab53b77ab829defeb22bc98d40a5e926ae018|commit]], [[https://git.kernel.org/linus/d2ef6aa077bdd0b3495dba5dcae6d3f19579b20b|commit]], [[https://git.kernel.org/linus/7aee8429eedd0970d8add2fb5b856bfc5f5f1fc1|commit]], [[https://git.kernel.org/linus/69cb4952b6f6a226c1c0a7ca400398aaa8f75cf2|commit]], [[https://git.kernel.org/linus/d49010adae737638447369a4eff8f1aab736b076|commit]], [[https://git.kernel.org/linus/be0096676e230b43730b8936ac393d155b4e3262|commit]], [[https://git.kernel.org/linus/637567e4a3ef6f6a5ffa48781207d270265f7e68|commit]] * phy: Introduce PHY listing and link_topology tracking [[https://git.kernel.org/linus/02018c544ef113e980a2349eba89003d6f399d22|commit]], [[https://git.kernel.org/linus/9c5625f559ad6fe9f6f733c11475bf470e637d34|commit]], [[https://git.kernel.org/linus/034fcc210349b873ece7356905be5c6ca11eef2a|commit]], [[https://git.kernel.org/linus/dedd702a35793ab462fce4c737eeba0badf9718e|commit]], [[https://git.kernel.org/linus/2ab0edb505faa9ac90dee1732571390f074e8113|commit]], [[https://git.kernel.org/linus/c29451aefcb42359905d18678de38e52eccb3bb5|commit]], [[https://git.kernel.org/linus/63d5eaf35ac36cad00cfb3809d794ef0078c822b|commit]], [[https://git.kernel.org/linus/95132a018f00f5dad38bdcfd4180d1af955d46f6|commit]], [[https://git.kernel.org/linus/7db69ec9cfb8b4ab50420262631fb2d1908b25bf|commit]], [[https://git.kernel.org/linus/345237dbc1bdbb274c9fb9ec38976261ff4a40b8|commit]], [[https://git.kernel.org/linus/fcc4b105caa4b844bf043375bf799c20a9c99db1|commit]], [[https://git.kernel.org/linus/d078d480639a4f3b5fc2d56247afa38e0956483a|commit]], [[https://git.kernel.org/linus/32bb4515e34469975abc936deb0a116c4a445817|commit]] * phylink: improve PHY validation [[https://git.kernel.org/linus/243ad8df7a1bd24c2e01bd99d9f0bb88844dae91|commit]], [[https://git.kernel.org/linus/2cb6d63b30c6fbc7cf5f671279be4a94049e141f|commit]], [[https://git.kernel.org/linus/82f2e76b660a490ae226db80d495b7c785e00d7a|commit]], [[https://git.kernel.org/linus/a22583338e535ba2512283da4aee893163a4b78d|commit]], [[https://git.kernel.org/linus/01972fa9ab7dc1af073dd994380f3e603eb0654e|commit]], [[https://git.kernel.org/linus/5f492a04506e5d93d5462238f7f899836ba3d421|commit]], [[https://git.kernel.org/linus/385e72b4003482bfe17c17a9f4005d2850b5e8e0|commit]], [[https://git.kernel.org/linus/b7014f9ece5075755105bafbeeb2c17ed0dace11|commit]], [[https://git.kernel.org/linus/2c62ff83ee14da698bf52e723b704304b59455bb|commit]], [[https://git.kernel.org/linus/7a1f9a17ee99a3c27577465ce0f6c5f56cf1aacf|commit]] * Add MDB bulk deletion support [[https://git.kernel.org/linus/e37a11fca41864c9f652ff81296b82e6f65a4242|commit]], [[https://git.kernel.org/linus/e0cd06f7fcb51b8acd6e68e64cc805be1283de9d|commit]], [[https://git.kernel.org/linus/1a36e0f50f963465e9b2b980d250ab38b8fcd7a3|commit]], [[https://git.kernel.org/linus/d8e81f131178dad603c6817421056030ed2f4ac2|commit]], [[https://git.kernel.org/linus/a6acb535afb2a3b688a7858f05b61f0433e480d5|commit]], [[https://git.kernel.org/linus/4cde72fead4cebb5b6b2fe9425904c2064739184|commit]], [[https://git.kernel.org/linus/2601e9c4b1176253e33025ca24e56ed67c8d434f|commit]], [[https://git.kernel.org/linus/bd2dcb94c81e3408731d129e884954c36ef2f1fa|commit]], [[https://git.kernel.org/linus/c3e87a7fcd0bb5820ca6db9b385bbfacb556d083|commit]] * packet scheduler * Introduce tc block ports tracking and use [[https://git.kernel.org/linus/913b47d3424e7d99eaf34b798c47dfa840c64a08|commit]], [[https://git.kernel.org/linus/a7042cf8f23191c3a460c627c0c39463afb5d335|commit]], [[https://git.kernel.org/linus/16085e48cb48aeb50a1178dc276747749910b0f2|commit]], [[https://git.kernel.org/linus/415e38bf1d8d789ee1fcb26bd815d8b95fe4faad|commit]], [[https://git.kernel.org/linus/42f39036cda808d3de243192a2cf5125f12f3047|commit]] * Make tc-related drop reason more flexible for remaining qdiscs [[https://git.kernel.org/linus/fb2780721ca5e9f78bbe4544b819b929a982df9c|commit]], [[https://git.kernel.org/linus/b6a3c6066afc2cb7b92f45c67ab0b12ded81cb11|commit]], [[https://git.kernel.org/linus/4cf24dc8934074725042c0bd10b91f4d4b5269bb|commit]] * Retire ipt action [[https://git.kernel.org/linus/ba24ea129126362e7139fed4e13701ca5b71ac0b|commit]] * Remove UAPI support for retired TC qdiscs and classifiers [[https://git.kernel.org/linus/41bc3e8fc1f728085da0ca6dbc1bef4a2ddb543c|commit]], [[https://git.kernel.org/linus/82b2545ed9a465e4c470d2dbbb461522f767c56f|commit]], [[https://git.kernel.org/linus/fe3b739a5472968d8d349522b6816bc4db82bc0f|commit]], [[https://git.kernel.org/linus/26cc8714fc7f79a806c3d7ffa215b984c384ab4d|commit]], [[https://git.kernel.org/linus/33241dca486264193ed68167c8eeae1fb197f3df|commit]] * sctp: support MSG_ERRQUEUE flag in recvmsg() [[https://git.kernel.org/linus/4746b36b1abe11ca32987b2d21e1e770deab17cc|commit]] * Allow coalescing for cloned skbs coming from page pools, improving RX performances with some common configurations [[https://git.kernel.org/linus/aaf153aecef1d1831d0d6d371d5c11cf02f0337e|commit]], [[https://git.kernel.org/linus/8cfa2dee325f72f286f8f3210f867cbb981f2302|commit]], [[https://git.kernel.org/linus/f7dc3248dcfbdd81b5be64272f38b87a8e8085e7|commit]] * smc: Implement SMCv2.1 virtual ISM device support [[https://git.kernel.org/linus/ac053a169c71ceb0f25f784fce9ea720455097b4|commit]], [[https://git.kernel.org/linus/5205ac4483b630e47c65f192a3ac19be7a8ea648|commit]], [[https://git.kernel.org/linus/9505450d55b0f7809fe63c36ad9339a909461c87|commit]], [[https://git.kernel.org/linus/ece60db3a4ce24a2a913a8960eb6fec561cdbcf6|commit]], [[https://git.kernel.org/linus/00e006a2571824b2ec26b45b089ed8523ec89b73|commit]], [[https://git.kernel.org/linus/8dd512df3c98ce8081e3541990bf849157675723|commit]], [[https://git.kernel.org/linus/b40584d145700addc70cc29e4f0850a4ed955b1c|commit]], [[https://git.kernel.org/linus/01fd1617dbc6f558efd1811f2bc433659d1e8304|commit]], [[https://git.kernel.org/linus/c6b8b8eb49904018e22e4e4b1fa502e57dc747d9|commit]], [[https://git.kernel.org/linus/b3bf76024f645369e1fc45e0b08a2bd24f200d9b|commit]], [[https://git.kernel.org/linus/f8e80fc4acebab0447567e77d6abc30fb44250cc|commit]], [[https://git.kernel.org/linus/1f2c9dd73f0a279214f9b3c382b3f1df272b3253|commit]] * virtio-net: support rx netdim [[https://git.kernel.org/linus/6208799553a85875c9f812ba8e4c99d1fc69e8b9|commit]] * vxlan * Add support for flowlabel inherit [[https://git.kernel.org/linus/c6e9dba3be5ef3b701b29b143609561915e5d0e9|commit]] * Add MDB bulk deletion support [[https://git.kernel.org/linus/e37a11fca41864c9f652ff81296b82e6f65a4242|commit]], [[https://git.kernel.org/linus/e0cd06f7fcb51b8acd6e68e64cc805be1283de9d|commit]], [[https://git.kernel.org/linus/1a36e0f50f963465e9b2b980d250ab38b8fcd7a3|commit]], [[https://git.kernel.org/linus/d8e81f131178dad603c6817421056030ed2f4ac2|commit]], [[https://git.kernel.org/linus/a6acb535afb2a3b688a7858f05b61f0433e480d5|commit]], [[https://git.kernel.org/linus/4cde72fead4cebb5b6b2fe9425904c2064739184|commit]], [[https://git.kernel.org/linus/2601e9c4b1176253e33025ca24e56ed67c8d434f|commit]], [[https://git.kernel.org/linus/bd2dcb94c81e3408731d129e884954c36ef2f1fa|commit]], [[https://git.kernel.org/linus/c3e87a7fcd0bb5820ca6db9b385bbfacb556d083|commit]] * wifi * cfg80211/mac80211 patches from our internal tree 2023-12-19 [[https://git.kernel.org/linus/41a313d875e0c5822efb50e8221b8d58811609bb|commit]], [[https://git.kernel.org/linus/9be61558dec0af359ce3139c8450228de7f0796d|commit]], [[https://git.kernel.org/linus/513b1a168c8767d5090493bd03ca7fa0a837e465|commit]], [[https://git.kernel.org/linus/99b6877dce4e2517b9ba7d674759487ac34ecbfa|commit]], [[https://git.kernel.org/linus/645f3d85129d8aac3b896ba685fbc20a31c2c036|commit]], [[https://git.kernel.org/linus/d5b6f6d595b446c1693fdaa6aeb4a65b94d5fc90|commit]], [[https://git.kernel.org/linus/e62c0fcc0e06a36b40615885eb86eb407ac8d0dd|commit]], [[https://git.kernel.org/linus/32af9a9e1069e55bc02741fb00ac9d0ca1a2eaef|commit]], [[https://git.kernel.org/linus/31c5e92be5936adde55e783c0380264afc7218b0|commit]], [[https://git.kernel.org/linus/acc44cbd7727115f9381c35c2898b1b5af665ec8|commit]], [[https://git.kernel.org/linus/b1a23f8ae0d76ad32fe36682730c050251275b0b|commit]] * nl80211: Extend del pmksa support for SAE and OWE security [[https://git.kernel.org/linus/aa0887c4f18e280f8c2aa6964af602bd16c37f54|commit]] * xsk: TX metadata [[https://git.kernel.org/linus/341ac980eab90ac1f6c22ee9f9da83ed9604d899|commit]], [[https://git.kernel.org/linus/48eb03dd26304c24f03bdbb9382e89c8564e71df|commit]], [[https://git.kernel.org/linus/9276009d35d3f65e083b95d30a4f967baaae0fc6|commit]], [[https://git.kernel.org/linus/ec706a860eba99bf934d59f74b5db90af44e882e|commit]], [[https://git.kernel.org/linus/1347b419318d6afa1c86d7865d82ca0a6cdf30ce|commit]], [[https://git.kernel.org/linus/9620e956d5b592d305728144931e89d780a598aa|commit]] = Architectures = * ARM * Device Tree Sources * New !SoCs * Rockchips rv1109 [[https://git.kernel.org/linus/2d93f9dc42623f0812f66f7cdc1d66cc9f263e34|commit]], [[https://git.kernel.org/linus/9f35b08ab08b913abf65cc4ff8d2655ad7912d77|commit]], [[https://git.kernel.org/linus/b1ed25667f5f88531bcb51f3683029693e7a9b8c|commit]], [[https://git.kernel.org/linus/32de939ae49d541a7892f77da8fe78bc6fe73f13|commit]], [[https://git.kernel.org/linus/36ad2e479f69d93a27bc0721308e90a4c1101e70|commit]], [[https://git.kernel.org/linus/56bde00f7d151d90c66dada007f13f92b95b0d05|commit]] * Samsung !ExynosAutov920, an automotive chip, and the first one supported based on the Cortex-A78AE core with lockstep mode [[https://git.kernel.org/linus/c96dab1993d247b7b05ba2fdef8f185cbbd5454e|commit]], [[https://git.kernel.org/linus/57de428eaca2b9af1a35df96c7adcad4b5ea79f9|commit]], [[https://git.kernel.org/linus/4f2ffb1c3ffec70fc2c84accb1bf18831cbfce39|commit]], [[https://git.kernel.org/linus/884fdaa53b38921165cd9afdb230502b4e1690b0|commit]], [[https://git.kernel.org/linus/6cf96df77338c6a7e753229fe6d330ab60e28cda|commit]] * Google gs101 (Tensor G1), the chip used in a number of Pixel phones, and Oriole/Pixel6 board [[https://git.kernel.org/linus/6a5713fc7853c3998c706cb809c5d9fd1c6acaa5|commit]], [[https://git.kernel.org/linus/796bb2d3a16c1e786ed51183162783405b5c8f85|commit]] * Add basic node support for !MediaTek MT8188 SoC [[https://git.kernel.org/linus/6741cbb7875d12c7bb33099aeb4eafa497008ce0|commit]], [[https://git.kernel.org/linus/7711c3c46249344fcbbfdb3ba626801e4392fa5c|commit]], [[https://git.kernel.org/linus/040c3303f1106f95a1f2ee0231f959f2b6fa730e|commit]], [[https://git.kernel.org/linus/9461e0caac9e4c621c3956bafaa262ee435956b5|commit]] * Qualcomm SM8650 (Snapdragon 8 Gen 3) based on Cortex-X4, Cortex-A720 and Cortex-A520 [[https://git.kernel.org/linus/78804eecbe5c4d533ae8b7c3a85b278e3594ec94|commit]], [[https://git.kernel.org/linus/d2350377997f3606d5b76ee7dc6101c148048951|commit]], [[https://git.kernel.org/linus/707060bf2a3cf3329b848e12a038de4d81356579|commit]], [[https://git.kernel.org/linus/6fbdb3c1fac7d48f996098254758736e0b47f6b2|commit]], [[https://git.kernel.org/linus/a834911d50c1dda9c3022141e9f9c948e707a0ff|commit]], [[https://git.kernel.org/linus/10e024671295184fe7556fcb427444b57d2e0ed5|commit]], [[https://git.kernel.org/linus/deb63527ab248301adc302e21d79c0aae5a827db|commit]], [[https://git.kernel.org/linus/0c5b1016b5f30eb2313f942abef5bd7a7be12ae8|commit]] * Qualcomm !X1E80100 (Snapdragon X Elite) in turn is the latest Laptop chip using the custom Oryon cores [[https://git.kernel.org/linus/3515c3172f66ad4b3f485862f858f76a3e49c659|commit]], [[https://git.kernel.org/linus/17fc6f391932dfc8c11634667ca2d1d24c961cf5|commit]], [[https://git.kernel.org/linus/cdd97e07e5fa6babc8f620951efa517a1e29d6e2|commit]], [[https://git.kernel.org/linus/223e8af324985de9e0b5b4cda2ec29783410f13f|commit]], [[https://git.kernel.org/linus/48490899007ae98faf8a0071a602174502b8eefc|commit]], [[https://git.kernel.org/linus/48a9ba5eb4d720c6e21c6e4d2a6fb6e1a97f5f2a|commit]], [[https://git.kernel.org/linus/2e86e6300c4a98b1d0c93e03c491b0fd5d552eb5|commit]] * Unisoc UMS9620 (Tanggula 7 series) is a 5G phone SoC based on Cortex-A76 and Cortex-A55 [[https://git.kernel.org/linus/b85ea95d086471afb4ad062012a4d73cd328fa86|commit]], [[https://git.kernel.org/linus/2da4f4a7b003441b80f0f12d8a216590f652a40f|commit]], [[https://git.kernel.org/linus/07bc2433a944f767e49b373f6cdfe6b0eac801f6|commit]], [[https://git.kernel.org/linus/bb8551c19da095931218800ed790d12d12d73cb8|commit]] * Boards * Five old Microsoft Lumia phones [[https://git.kernel.org/linus/244281556a11549501eb5093e9ab0ad8a87b7d4f|commit]], [[https://git.kernel.org/linus/45dbc34693e8ad30c33edfdc94acaf4672de0e24|commit]], [[https://git.kernel.org/linus/a16f3bcf867efdab422b711b18c023089fbeb96e|commit]], [[https://git.kernel.org/linus/00400a98b2c3fd5d497635747fec4b882299bc05|commit]], [[https://git.kernel.org/linus/8677233e59137f78d4d578f3d5a21557c1bab342|commit]], the HTC One Mini 2 [[https://git.kernel.org/linus/97817a8275a1ec06773016c13c6f009535b53a6f|commit]], Motorola Moto G 4G [[https://git.kernel.org/linus/690e367e0e75a46a0b3d76ae42a14f7f31f451dd|commit]], and Huawei Honor 5X/GR5 [[https://git.kernel.org/linus/cff9a76f306bfb6262153c0da2029071036b9a04|commit]], all based on Snapdragon !SoCs * Multiple Rockchips mobile gaming systems (Anbernic RG351V [[https://git.kernel.org/linus/8a64f5f0c692261a3e6686aee89f5c7136f54b89|commit]], [[https://git.kernel.org/linus/9e63209d2099b89d5148379f879c9cd5841599dd|commit]], [[https://git.kernel.org/linus/8174dff9e583f7791dacf6d8ce034eb18ec2b292|commit]], Powkiddy RK2023 [[https://git.kernel.org/linus/e926380ea2a2b10d01069917e6d678ca818f6ad8|commit]], Powkiddy X55 [[https://git.kernel.org/linus/e99adc97e21afbe33cd2b20b9869dbdc682e2b06|commit]]) along with the Sonoff iHost Smart Home Hub [[https://git.kernel.org/linus/5d7d06e7c0700388dfd1f59ac9f5d6ac0870bd2e|commit]] and a few Rockchips SBCs * Some !ComXpress boards based on Marvell CN913x, which is the follow-up to Armada 7xxx/8xxx [[https://git.kernel.org/linus/c11e7732a90c21155de8db40dbba84f043520821|commit]] * Mediatek MT8183 based Chromebooks from Lenovo, Asus and Acer [[https://git.kernel.org/linus/91e7286b5d82fba1803c1d9d7a7bf91a193a347e|commit]], [[https://git.kernel.org/linus/d056270bdb70beae8aa70e71a06ffddbf5cf0d47|commit]], [[https://git.kernel.org/linus/4f5d946ce43de73baed71589c057b9550e56bada|commit]], [[https://git.kernel.org/linus/c0860b688af7d5660d6ea0f7480cb1fc0f032ecb|commit]], [[https://git.kernel.org/linus/055ef10ccdd430973e1f05530cedcdd44cf744da|commit]] * Toradex Verdin AM62 Mallow carrier for TI AM62 [[https://git.kernel.org/linus/eb9348865fabe4e0bc0b0453813dba8ecbfd9deb|commit]] * Two boards based on Allwinner H616/H618 [[https://git.kernel.org/linus/7a9dc944f129bb56ef855d9c0b0647bc3e98a56f|commit]], [[https://git.kernel.org/linus/557e5347ba8bb050fec39c488486c4a948f2e4aa|commit]] * motorola-mapphone: Add basic support for mz609 and mz617 [[https://git.kernel.org/linus/94bd4a6e6e6bd79c7214bab4a739db8c493b792f|commit]] * rockchip: add Theobroma Jaguar SBC [[https://git.kernel.org/linus/d1b8b36a2cc5f4ef14774e37e09ebbe3bd702dbd|commit]] * Subscribe Microsoft Azure Cobalt 100 to ARM Neoverse N2 errata [[https://git.kernel.org/linus/fb091ff394792c018527b3211bbdfae93ea4ac02|commit]] * allwinner: h616: add Orange Pi Zero 2W support [[https://git.kernel.org/linus/c505ee1eae18fb7b32d792e4470d5ef1934376bd|commit]] * freescale: Add SKOV IMX8MP CPU revB board [[https://git.kernel.org/linus/6d382d51d9799d3610fccc451dd69c842710c364|commit]] * freescale: add fsl-lx2160a-mblx2160a board [[https://git.kernel.org/linus/04b77e0124eff723de580e97ba9000fae563b2e4|commit]] * freescale: add initial device tree for MBa93xxCA starter kit [[https://git.kernel.org/linus/6a04248799fd87abadbf73ba24139a25d33f4406|commit]] * freescale: introduce dimonoff-gateway-evk board [[https://git.kernel.org/linus/b11c01579b48390569c1565f0e7897c77e38dd9c|commit]] * freescale: introduce rve-gateway board [[https://git.kernel.org/linus/67275c2f3d9ba6106e7195fb8f0f4b355138b8a5|commit]] * freescale: verdin-imx8mp: add support to mallow board [[https://git.kernel.org/linus/12f2486ebe70098944444057f7b5b592fe325870|commit]] * qcom: Add base !X1E80100 dtsi and the QCP dts [[https://git.kernel.org/linus/af16b00578a7a1d9fb99e81282b1b22cd8d32607|commit]] * qcom: Add base qcm6490 idp board dts [[https://git.kernel.org/linus/9af6a9f32ad0023b1d682af213a0c8c2aa1dce29|commit]] * qcom: Add base qcs6490-rb3gen2 board dts [[https://git.kernel.org/linus/04cf333afc757d8fd3c674c6c3f5f86c7755b4d4|commit]] * qcom: msm8916: Add common msm8916-modem-qdsp6.dtsi [[https://git.kernel.org/linus/8abbd235b2ecbfba0a445ccd400a54af8fd83bc2|commit]] * qcom: sm8250-xiaomi-pipa: Add initial device tree [[https://git.kernel.org/linus/264beb3cbd0dc6d78357aa382297d5c94ffb4a3e|commit]] * qcom: x1e80100: Add Compute Reference Device [[https://git.kernel.org/linus/bd50b1f5b6f38b2970841e78513c33fbd736cf40|commit]] * rockchip: Add support for rk3588 based board Cool Pi CM5 EVB [[https://git.kernel.org/linus/791c154c3982bd5b8a2a5c15ef11ae41028d8d23|commit]] * rockchip: Add support for rk3588s based board Cool Pi 4B [[https://git.kernel.org/linus/3f5d336d64d634426b8733848d840ceb8fe96610|commit]] * rockchip: Update powkiddy,rgb30 include to rk2023 DTSI [[https://git.kernel.org/linus/46d84ceb7eec85b60e8a5eb0dfb2fae6a1bf4166|commit]] * ti: Add verdin am62 mallow board [[https://git.kernel.org/linus/7698622fbcf4fef2ec7e2fcbae35eb5e503dfddf|commit]] * ti: k3-am65: Add AM652 dtsi file [[https://git.kernel.org/linus/fcb97d190c3ca411b37d8dd0b2650fa1378f08d4|commit]] * rockchip: Add Geniatech XPI-3128 RK3128 board [[https://git.kernel.org/linus/6135ac43309f5ef91ad60c688931027226779fed|commit]] * Delete ARM11MPCore (ARM11 ARMv6K SMP) support [[https://git.kernel.org/linus/2560cffd2134c2e070dee369b37f6e55438087f9|commit]] * KVM: Support FEAT_LPA2 at hyp s1 and vm s2 [[https://git.kernel.org/linus/936a4ec28141fa9369b6af4d6401f0be9f7e304c|commit]], [[https://git.kernel.org/linus/c910f2b65518538b5072cb51760c8ef749e455d0|commit]], [[https://git.kernel.org/linus/e477c8c483913de92c9cc00b34459dc4d695529b|commit]], [[https://git.kernel.org/linus/b1366d21daaebb8e474e4169c5e557fbb37bfdc0|commit]], [[https://git.kernel.org/linus/d4fbbb26da520e00d87c8187dc3de9eacee66c1c|commit]], [[https://git.kernel.org/linus/bd412e2a310cbc43b424198b0065086b0f462625|commit]], [[https://git.kernel.org/linus/419edf48d79f6fb2cc3fa090131864e95b321d41|commit]], [[https://git.kernel.org/linus/0abc1b11a032199bb134fd25cd7ee0cdb26b7b03|commit]], [[https://git.kernel.org/linus/d782ac5b2ceebee5d374e13e990655d1a140d3a6|commit]], [[https://git.kernel.org/linus/72324ac52ddddb168d8008e36d6a617b9b74f6c1|commit]], [[https://git.kernel.org/linus/10a0cc3b688fcf753ff3f6518bb15e7a6809e908|commit]] * Run kernel mode NEON with preemption enabled [[https://git.kernel.org/linus/9b19700e623f96222c69ecb2adecb1a3e3664cc0|commit]], [[https://git.kernel.org/linus/aefbab8e77eb16b56e18f24b85a09ebf4dc60e93|commit]], [[https://git.kernel.org/linus/2632e25217696712681dd1f3ecc0d71624ea3b23|commit]] * mm: try VMA lock-based page fault handling first [[https://git.kernel.org/linus/c16af1212479570454752671a170a1756e11fdfb|commit]] * perf: Add support for event counting threshold [[https://git.kernel.org/linus/3115ee021bfb04efde2e96507bfcc1330261a6a1|commit]], [[https://git.kernel.org/linus/816c26754447e8b28d6c604e1f5b1d205b2586ee|commit]], [[https://git.kernel.org/linus/bd690638e2c27dcea1d56376aa4bf3995d82ccfc|commit]] * coresight * Add support to configure TPDM DSB subunit [[https://git.kernel.org/linus/f4443ee5a38cb84bdd0515f8832117b2be0684d6|commit]], [[https://git.kernel.org/linus/2a8d9b371566e798421ef877c5757e2c4a11ad6f|commit]], [[https://git.kernel.org/linus/f7f965c982f7954b46db910146a7ffe0fe1eb5e1|commit]], [[https://git.kernel.org/linus/57e7235aa1d11d4ea8a25dfdc009b3ee463763af|commit]], [[https://git.kernel.org/linus/f01e4948b516f073c353041328ae7cf709233303|commit]], [[https://git.kernel.org/linus/8fbbce11a90f345a1ff39e2a08e312ee763a1139|commit]], [[https://git.kernel.org/linus/851b3f9c9c0838060158e288c1387d44652c54b5|commit]], [[https://git.kernel.org/linus/018e43ad1eeefbb8797e4c933953c50c09e3f4f6|commit]], [[https://git.kernel.org/linus/f376caf25f79965ab140b7a297cb4a5bb0c89523|commit]], [[https://git.kernel.org/linus/a8138a9445e6d159138b7e574dc5ee7cbcc2f06a|commit]], [[https://git.kernel.org/linus/4c983382a29eaddd8746af23702f657258bb91cc|commit]], [[https://git.kernel.org/linus/8e05f86f07a0359584ceb2715fedcc4daf29d898|commit]], [[https://git.kernel.org/linus/350ba15ae187c118979566f1288adb5f69f24230|commit]] * etm: Make cycle count threshold user configurable [[https://git.kernel.org/linus/4aff040bcc8de28bead01194cbca1dc9471a5a85|commit]], [[https://git.kernel.org/linus/94566c5b07744c7cf5c7cc0ad42b15996ba0b054|commit]], [[https://git.kernel.org/linus/e5d207b24c54af25fb763af44e2db35347a0f7ee|commit]] * coresight: trbe: Enable ACPI based devices [[https://git.kernel.org/linus/4277f035d227e829133df284be7e35b7236a5b0f|commit]], [[https://git.kernel.org/linus/17f8b216e02654a0b37127736ce78b32ccaa867b|commit]] * tmc: Make etr buffer mode user configurable from sysfs [[https://git.kernel.org/linus/2373699a3505061cd21625c3f3b70dc3d03a3d8c|commit]] * perf * perf cs-etm: Add support for itrace option 'T' [[https://git.kernel.org/linus/a4271827e609d30b7255aa7e4c453a8f3fe36a7b|commit]], [[https://git.kernel.org/linus/26218331f49c858d52e60418cf3cef4c3fa6cf2e|commit]] * vendor events arm64 AmpereOneX: Add core PMU events and metrics [[https://git.kernel.org/linus/16438b652b464ef7d0a877d31e93ab54338f6b0a|commit]] * Add !DesignWare PCIe PMU driver [[https://git.kernel.org/linus/af9597adc2f1e3609c67c9792a2469bb64e43ae9|commit]] * fsl_imx8_ddr: Add driver support for i.MX8DXL DDR Perf [[https://git.kernel.org/linus/46fe448ec3b7a10253fcca7fe7e0d8f01a2b38e4|commit]] * fsl_imx8_ddr: Add AXI ID PORT CHANNEL filter support [[https://git.kernel.org/linus/afd83967e7bb9b41ee71153b868dcf94e43c2d7a|commit]] * soc * apple: mailbox: Add ASC/M3 mailbox driver [[https://git.kernel.org/linus/6e1457fcad3ff6b1885e64f5e393db5ff5ec2a42|commit]] * Add support for QMC HDLC, framer infrastructure and PEF2256 framer [[https://git.kernel.org/linus/fc0c64154e5ddeb6f63c954735bd646ce5b8d9a4|commit]], [[https://git.kernel.org/linus/a5ec3a21220da06bdda2e686012ca64fdb6c513d|commit]], [[https://git.kernel.org/linus/dfe66d012af2ddfa566cf9c860b8472b412fb7e4|commit]], [[https://git.kernel.org/linus/0e034aec5be2e8b1199b87b04d32e4a8b805a9db|commit]], [[https://git.kernel.org/linus/48490dc36742b616f846368f300ebedfe9323da1|commit]], [[https://git.kernel.org/linus/ba3b7e4753c5ad80b3670277a2104aeb421e0d7d|commit]], [[https://git.kernel.org/linus/9b7a69d0bd2bb7bcf1b811f273a27be929520b61|commit]], [[https://git.kernel.org/linus/2d965e25fa4180988a1ef4f07803fa7a182a4ae5|commit]], [[https://git.kernel.org/linus/6f9b814d3765b2425da235570b1318c952142f1a|commit]], [[https://git.kernel.org/linus/b1891c13645b67c9cd2c661a693b9b6b56b87e80|commit]], [[https://git.kernel.org/linus/f2deea16bf187ad6e1f2a7b0d2fd0b1a4db0b1b7|commit]], [[https://git.kernel.org/linus/9217161115bfb76ae7b3b9e5a803f554a1c5e76a|commit]], [[https://git.kernel.org/linus/32881b253c945ea1493abc18e25928808331f5df|commit]], [[https://git.kernel.org/linus/0e85feacc8156b230285040d82537c922cc15fe6|commit]], [[https://git.kernel.org/linus/7cc9bda9c163877255a61a052987ce6b85da1263|commit]], [[https://git.kernel.org/linus/0d75119d08448cb94583467c01adb212b0728502|commit]], [[https://git.kernel.org/linus/7a2ee1576dcc6bbe017a8283fba237b05b13fd15|commit]] * hisilicon: kunpeng_hccs: Support the platform with PCC type3 and interrupt ack [[https://git.kernel.org/linus/734add1a278f05db2d5a0b9d280a8bce94ce5eeb|commit]], [[https://git.kernel.org/linus/e1e720f3f2c50a6f3440b3684decd7b7c046e111|commit]], [[https://git.kernel.org/linus/a079f3244563a4c4dc32b0a9bfa0e3e519f3c9ed|commit]], [[https://git.kernel.org/linus/a07d8fc358af5f297b41b2182a5fce710e3c9bd7|commit]], [[https://git.kernel.org/linus/be2f78a8a638e71bbbc2109bc052524143e8f42a|commit]] * mediatek: mmsys: Add support for MT8188 VPPSYS [[https://git.kernel.org/linus/dfd78c1e1c1628b5c5b4d7b4cd4d51f3ef6593ff|commit]] * mediatek: svs: Add support for MT8186 SoC [[https://git.kernel.org/linus/58dbf59308c903567c536f974c4dbc09fec90874|commit]] * mediatek: svs: Add support for MT8195 SoC [[https://git.kernel.org/linus/8ccda5cecaed26260bff798550c0403ac845d361|commit]] * qcom: add ADSP PDCharger ULOG driver [[https://git.kernel.org/linus/086fdb48bc65d6fde0f0e7d42dbfb3c00ea52628|commit]] * qcom: socinfo: Add SM8650 SoC ID table entry [[https://git.kernel.org/linus/f61319e57d89e6e3d1ad16cb916074fdb7289806|commit]] * qcom: socinfo: Add PM8937 Power IC [[https://git.kernel.org/linus/d50b5cb1a8f7db8ad2dc6a13f0cabedf7a7e1540|commit]] * RISCV * Report more ISA extensions through hwprobe [[https://git.kernel.org/linus/e45f463a9b01aabd03c49390fc5249eeba0abc5e|commit]], [[https://git.kernel.org/linus/be6bef2acb75ca980671de19d406c0310d646d2b|commit]], [[https://git.kernel.org/linus/0d8295ed975b6df487f0b4018770a60b070fc76d|commit]], [[https://git.kernel.org/linus/794983f292cd71b27106f1226360b2cf0f4a881b|commit]], [[https://git.kernel.org/linus/9376396251c8a927018d465b4cc396af4b25b8d0|commit]], [[https://git.kernel.org/linus/aec3353963b8de889c3f1ab7cc8ba11e99626606|commit]], [[https://git.kernel.org/linus/ca35b5b115856973620f425955fd0ce2505a51c4|commit]], [[https://git.kernel.org/linus/10815531c513f449ce477fb97e3f6e6962c14eaf|commit]], [[https://git.kernel.org/linus/11e8e1ee2c223585f1776e5c5d21bdae7184ca34|commit]], [[https://git.kernel.org/linus/bf4cd84111c6139313504310ff934df901a5ed3e|commit]], [[https://git.kernel.org/linus/c44714c35ff861d69db9c8bb4ae1347373f817f0|commit]], [[https://git.kernel.org/linus/eddbfa0d849fa5a315840e8c501962252b48484d|commit]], [[https://git.kernel.org/linus/74ba42b250a7339c72e5803490b1ea42c3556f26|commit]], [[https://git.kernel.org/linus/892f10c8d6ca4b3c12d149085243ad8cd75f09b3|commit]], [[https://git.kernel.org/linus/f4961b78c37b64f48cc5c376f8aef5e1823201c1|commit]], [[https://git.kernel.org/linus/5dadda5e6a59a5b4f547a1b14d9518e4074c6966|commit]], [[https://git.kernel.org/linus/e11880b4be3a8db558147409b9ed0d1855526910|commit]], [[https://git.kernel.org/linus/fe987e84b0120e2b41db69ed4ede166797aa8d2e|commit]], [[https://git.kernel.org/linus/dc6ccb21f42ce5b3e4df6f52e14edab721e1b26e|commit]], [[https://git.kernel.org/linus/9726acfdfa3bbf324b305e0b32fc028c278f6d43|commit]] * SBI debug console extension support [[https://git.kernel.org/linus/f503b167b66007fc6b4434cd07a044ce4a56b6a0|commit]], [[https://git.kernel.org/linus/f43fabf444ca3c4c74bf5fa5211bb2d0548715c4|commit]], [[https://git.kernel.org/linus/c77bf3607a0f0180aa674b58cfa76633215bb42f|commit]], [[https://git.kernel.org/linus/88ead68e764cd164abb965e258c4e18841433ecf|commit]], [[https://git.kernel.org/linus/50942ad6ddb57d3cfe2e4fc1f08714d54b2565ef|commit]] * hwprobe: add Zicond, Zacas and Ztso support [[https://git.kernel.org/linus/1ec9f381e84877085ed4ce891e89172f8494ddb8|commit]], [[https://git.kernel.org/linus/5b4d64a819c05e7e96e7ab3f00f4f0967246905f|commit]], [[https://git.kernel.org/linus/cd7be4d02f418d5d62bcaf26e5c44ceb4ce00029|commit]], [[https://git.kernel.org/linus/188a2122c8274b64a739544b1bcfd30e30aed5dd|commit]], [[https://git.kernel.org/linus/154a3706122978eeb34d8223d49285ed4f3c61fa|commit]], [[https://git.kernel.org/linus/3359866b40a97038405c72e68097a92a4a9caa71|commit]] * Optimize ELF relocation function in riscv [[https://git.kernel.org/linus/080c4324fa5e81ff3780206a138223abfb57a68e|commit]] * Implement archrandom when Zkr is available [[https://git.kernel.org/linus/10243401059287868a5651f869a2494368872add|commit]] * Add steal-time support [[https://git.kernel.org/linus/323925ed6dbb0ed877047b28fae4152527cc63db|commit]], [[https://git.kernel.org/linus/6cfc624576a64145b1d6d3d48de7161a7505f403|commit]], [[https://git.kernel.org/linus/fdf68acccfc6af9497c34ee411d89af13b6516ed|commit]], [[https://git.kernel.org/linus/5fed84a800e6048656c17be6e921787db2b5c6c0|commit]], [[https://git.kernel.org/linus/2a1f6bf079700f0f9d8045ab77b302aeb4d12c06|commit]], [[https://git.kernel.org/linus/38b3390ee4880140b6245fe3273fe9ce53f65bde|commit]], [[https://git.kernel.org/linus/5b9e41321ba919dd051c68d2a1d2c753aa61634c|commit]], [[https://git.kernel.org/linus/f61ce890b1f0742f17b3a5d1f8c72574a33ffeb2|commit]], [[https://git.kernel.org/linus/e9f12b5fff8ad0eefd0340273767d329ef65fd69|commit]], [[https://git.kernel.org/linus/0dcab5c4762ac166aa7e635ae4b6d649e15717e2|commit]], [[https://git.kernel.org/linus/945d880d6be0fd19bbc77d80d113bd2ca74c74f8|commit]], [[https://git.kernel.org/linus/60b6e31c499643b25d4b3ccb4cc8e365dfdb8863|commit]], [[https://git.kernel.org/linus/aad86da229bc9d0390dc2c02eb0db9ab1f50d059|commit]] * KVM: report more ISA extensions through ONE_REG [[https://git.kernel.org/linus/367188297254e7f81e3c3c94e6d6a623f757c4cb|commit]], [[https://git.kernel.org/linus/ac396141308d07a9534c5a7f1f7c80cb95e35b20|commit]], [[https://git.kernel.org/linus/f370b4e668f017f523968f7490163fa922dcd92e|commit]], [[https://git.kernel.org/linus/14d70de562dfd78be638fc59b0a323235acc67be|commit]], [[https://git.kernel.org/linus/afd1ef3adfbc36e35fcf4f742fd90aea6480a276|commit]], [[https://git.kernel.org/linus/2ddf79070f7edada19fecec57d8591d6b718fa53|commit]], [[https://git.kernel.org/linus/f3901ece5b3894177d1816208d0fb06b295617e0|commit]], [[https://git.kernel.org/linus/496ee21a17ce45e92483fdf1827ba91f4867f160|commit]], [[https://git.kernel.org/linus/ab6da9cdc3f3d1d091d657219fb6e98f710ee098|commit]], [[https://git.kernel.org/linus/1a3bc507821d24a80a6af8beb08af8032c33ebd7|commit]], [[https://git.kernel.org/linus/f46300285926c2b0d0c79bf40c87d45e169cecb6|commit]], [[https://git.kernel.org/linus/1216fdd99be113fa75ccdd0497802bd0fe4369aa|commit]], [[https://git.kernel.org/linus/41182cc6f507011a2e6c82657779e451ed9942bb|commit]], [[https://git.kernel.org/linus/4d0e8f9a361b3a1f7b67418c536b258323de734f|commit]] * KVM: Make SBI uapi consistent with ISA uapi [[https://git.kernel.org/linus/23e1dc45022eb65529aa30b1851a8d21a639c8f5|commit]] * KVM: add 'vlenb' and vector CSRs to get-reg-list [[https://git.kernel.org/linus/197bd237b67268651ac544e8fedbe1fd275d41e0|commit]], [[https://git.kernel.org/linus/2fa290372dfe7dd248b1c16f943f273a3e674f22|commit]] * hwprobe: Introduce which-cpus [[https://git.kernel.org/linus/36d842d654beba970e74ff0f6016c93623b82d37|commit]], [[https://git.kernel.org/linus/53b2b22850e1ff9e2729ce8efe2d846ed7d3bff4|commit]], [[https://git.kernel.org/linus/e178bf146e4b8c774a7b00aa2419e400f4f7894f|commit]], [[https://git.kernel.org/linus/ef7d6abb2cf57a18d34b332f0865c4d03bd810a3|commit]] * Add fine-tuned checksum functions [[https://git.kernel.org/linus/1e7196fa5b0312a6a3e49e7c1300e145afcba96b|commit]], [[https://git.kernel.org/linus/2ce5729fce8f62b5118f56110d16006c0e22c522|commit]], [[https://git.kernel.org/linus/e11e367e9fe57164ea609807ed27184c85263355|commit]], [[https://git.kernel.org/linus/a04c192eabfb76824d00f1b4cd0f25844a59d0f0|commit]], [[https://git.kernel.org/linus/6f4c45cbcb00d649475a3099235e5b4fce569b4b|commit]] * Add support for BATCHED_UNMAP_TLB_FLUSH [[https://git.kernel.org/linus/54d7431af73e2fa53b73cfeb2bec559c6664a4e4|commit]] * Support kernel-mode Vector [[https://git.kernel.org/linus/ecd2ada8a5e0b464dab54f71d4ba7bbf5708711f|commit]], [[https://git.kernel.org/linus/956895b9d8f74df015636288a81872c07c4fded3|commit]], [[https://git.kernel.org/linus/c5674d00cacdb1c47c72e19a552fbae401bc3532|commit]], [[https://git.kernel.org/linus/7df56cbc27e4239807b5d8860f79a7350d63a741|commit]], [[https://git.kernel.org/linus/c2a658d419246108c9bf065ec347355de5ba8a05|commit]], [[https://git.kernel.org/linus/a93fdaf183125fea81f66b9bd756ef5a0c30859e|commit]], [[https://git.kernel.org/linus/d6c78f1ca3e8ec3fd1afa1bc567cdf083e7af9fe|commit]], [[https://git.kernel.org/linus/5b6048f2ff710196c85ce14373febe8be5115bbe|commit]], [[https://git.kernel.org/linus/bd446f5df5afab212917f6732ba6442a5e8de85e|commit]], [[https://git.kernel.org/linus/2080ff9493072a94e42b1856d59f5f1bffb761b7|commit]] * Enable percpu page first chunk allocator [[https://git.kernel.org/linus/7a92fc8b4d20680e4c20289a670d8fca2d1f2c1b|commit]], [[https://git.kernel.org/linus/6b9f29b81b155af023da95f560f738f29722b306|commit]] * Add Huashan Pi board support [[https://git.kernel.org/linus/21a34e63afcc4328bd3f62289dafd796ae95550b|commit]], [[https://git.kernel.org/linus/06ea2a1968a92a2a8a03c91b4989bda2b0a8a578|commit]], [[https://git.kernel.org/linus/d7b92027834e92a47f254d846483968d29ce2360|commit]], [[https://git.kernel.org/linus/5b5dce3951b23e265e053970828ce7a8471d268d|commit]], [[https://git.kernel.org/linus/dd791b45c866b735601605b8dbceed4ab147db38|commit]], [[https://git.kernel.org/linus/681ec684a741ed3ac2c6b283b56245effa7a2c9d|commit]], [[https://git.kernel.org/linus/2c36b0cfb408e47402792439e3ebfb862ea5b6dc|commit]] * Introduce RISCV_EFFICIENT_UNALIGNED_ACCESS [[https://git.kernel.org/linus/b6da6cbe13ebf24716438de71d50573b9f36f35d|commit]], [[https://git.kernel.org/linus/d0fdc20b0429150c9dd09111f9b1d9d48117b56f|commit]] * ftrace: Miscellaneous ftrace improvements [[https://git.kernel.org/linus/b546d6363af4791567dcd145109837fe97cc8ba5|commit]], [[https://git.kernel.org/linus/35e61e8827ee8ea09e6093ab4d8ba45efd537e36|commit]], [[https://git.kernel.org/linus/196c79f19a92764d45005599f35338cf0a9eafbb|commit]], [[https://git.kernel.org/linus/629291dd8499e4dc7dff6e9ab8c13b1a841059e8|commit]] * perf vendor events riscv: Add !StarFive Dubhe-80 JSON file [[https://git.kernel.org/linus/acbf6de674ef7b1b5870b25e7b3c695bf84273d0|commit]] * X86 * perf vendor events riscv: Add !StarFive Dubhe-90 JSON file [[https://git.kernel.org/linus/5ebe2f4bf0a8fe8cceb5664a7dea4c17e2cf8477|commit]] * perf vendor events riscv: add T-HEAD C9xx JSON file [[https://git.kernel.org/linus/7340c6df49df1b261892d287444c255d0a378063|commit]] * X86 * intel_idle * Add Meteorlake support [[https://git.kernel.org/linus/eeae55ed9c0a74604a49789e36b7cdf0ee8bd69c|commit]] * Add Grand Ridge SoC support [[https://git.kernel.org/linus/ac89d11b93cc37c52dc38206c3eaffd4fa603f91|commit]] * Add Sierra Forest SoC support [[https://git.kernel.org/linus/92813fd5b1562e547120c8489137b040892fe1bc|commit]] * platform * Introduce PMF Smart PC Solution Builder Feature [[https://git.kernel.org/linus/ac052d8c08f9da225bea09c7e71527831368462b|commit]], [[https://git.kernel.org/linus/ae82cef7d9c53cad0852d2d79d430b210432a025|commit]], [[https://git.kernel.org/linus/2b3a7f06caaf1aa7379cc0233462799852fcd8b4|commit]], [[https://git.kernel.org/linus/7c45534afa4435c9fceeeb8ca33c0fdc269c2240|commit]], [[https://git.kernel.org/linus/c7af165372a8612eae08dbbab787d1d84d7f0384|commit]], [[https://git.kernel.org/linus/f4627dfd0e1924ad31c6476c0fc2308cfe12b561|commit]], [[https://git.kernel.org/linus/c3b40930a214545919d1385b8aa71cb665904571|commit]], [[https://git.kernel.org/linus/d0ba7ad438dfed944232cf8c96141ae5057605ee|commit]], [[https://git.kernel.org/linus/4984dbb60789ccb8674708446431f3bc0dc73100|commit]], [[https://git.kernel.org/linus/69e76c5af973854556625a8e156a39d1edbe8d6f|commit]], [[https://git.kernel.org/linus/10817f28e5337e5ddb873c8431d4db8d93712587|commit]], [[https://git.kernel.org/linus/f533fa142258024dfe9a8fcba1a28d25a3cbe51b|commit]] * pmc: Add Arrow Lake S support to intel_pmc_core driver [[https://git.kernel.org/linus/83f168a1a4375c653d6d2383fd6ce5b404d031da|commit]] * pmc: Add Lunar Lake M support to intel_pmc_core driver [[https://git.kernel.org/linus/3748dfdae2a6bedc64ec7d2b17c9a58dc01c2700|commit]] * intel_pmc: Add telemetry API to read counters [[https://git.kernel.org/linus/8cbcc1dbf8a62c730fadd60de761e0658547a589|commit]], [[https://git.kernel.org/linus/ace7b6f00870cea56460df335606e35ace3c07ac|commit]], [[https://git.kernel.org/linus/dbc01b0c86a7b23ffd06e14a84591500b04591ed|commit]], [[https://git.kernel.org/linus/0a0a52abaa65b844afde3d7229c209a8cddc5a07|commit]], [[https://git.kernel.org/linus/1d1b4770d4b661ecdf899c314ce406b9840c0c22|commit]], [[https://git.kernel.org/linus/6dfc2514acee37e30ce59f1f25b1f8f6aa7c1b08|commit]], [[https://git.kernel.org/linus/4edbd117ba3f7beacfb439aad60e8a5de77114b4|commit]], [[https://git.kernel.org/linus/e97ec7f621fbfdce07bf1b98a26883ee19281747|commit]], [[https://git.kernel.org/linus/4d1b7efee3fc703c64bacc37c4824888c5f26e8b|commit]], [[https://git.kernel.org/linus/416eeb2e1fc7b60ab0c7ced26ab966dd7733357d|commit]], [[https://git.kernel.org/linus/2e35e3aa9f10ea430468207c3dd9dc33ba1afc33|commit]], [[https://git.kernel.org/linus/9512920a6be57af191ab2849b3ec393b8e92530a|commit]], [[https://git.kernel.org/linus/a01486dc4bb17de976c6d0a4b1ad5f8106525dfb|commit]], [[https://git.kernel.org/linus/642dd26f58d91f4bb2e2fcaaf178bbc35369b73a|commit]], [[https://git.kernel.org/linus/104f74943f4830f3a65fb96565b89014c882db85|commit]], [[https://git.kernel.org/linus/0f601dec1856d675a1251e25e858d8f1cb0b8026|commit]], [[https://git.kernel.org/linus/4d621c3f02ba71cb8ed48b7c32ecb0910000cc28|commit]], [[https://git.kernel.org/linus/935b8211a31a52c82150b2b83c8428859393860d|commit]], [[https://git.kernel.org/linus/3621df43b07d9a32e18309de569f43a8b6453966|commit]], [[https://git.kernel.org/linus/6e79648553818bb21021ccf72ae27f4508844818|commit]] * vsec: Add support for Lunar Lake M [[https://git.kernel.org/linus/784a00474633aa7ff4940b3adf74d900e54f6a36|commit]] * Add Silicom Platform Driver [[https://git.kernel.org/linus/d9cd21d441c8c7c22ef448d23f1d6f5fa698b7f0|commit]] * Add support for Acer Predator PHN16-71 [[https://git.kernel.org/linus/6bb5153dfbaf88fa4b40ef50b706d2fb186ed92e|commit]], [[https://git.kernel.org/linus/c0ff2c397e84795816816ae8a32fd1104156d0f6|commit]], [[https://git.kernel.org/linus/446dd8efa94ca80a8b91fbe907364001ed1b3d85|commit]] * touchscreen_dmi: Add info for the TECLAST X16 Plus tablet [[https://git.kernel.org/linus/1abdf288b0ef5606f76b6e191fa6df05330e3d7e|commit]] * wmi: Remove chardev interface [[https://git.kernel.org/linus/704af3a40747e395b67892127943e6ffd5e2b642|commit]] * x86-android-tablets: Add audio codec info for Lenovo Yoga Tab 3 Pro YT3-X90F [[https://git.kernel.org/linus/115779bf6abef3161c72311614a16d06d7216213|commit]] * perf vendor events amd: Add Zen 4 memory controller events [[https://git.kernel.org/linus/346878dacc81f53667381c8f4bb5018195ca10be|commit]] * AMD Family 19h Models 90h-9fh EDAC Support [[https://git.kernel.org/linus/9a5f580c1c71b6aedba696c4898a7a7184cef8ad|commit]], [[https://git.kernel.org/linus/12f230c07a95d925d6af754485952515e7975127|commit]] * Replace the paravirt patching functionality using the alternatives infrastructure and remove the former [[https://git.kernel.org/linus/772ca413537eca9010e93922699537f56db9c8c4|commit]], [[https://git.kernel.org/linus/9824b00c2b58f9e1072ef3ece571a2cfc71089d4|commit]], [[https://git.kernel.org/linus/da0fe6e68e104f79c1fef5c62a17bdd1634ea61c|commit]], [[https://git.kernel.org/linus/60bc276b129eef8113f9d9b0a5cd5ae7f4c90acb|commit]], [[https://git.kernel.org/linus/f7af6977621a41661696d94c0c0a20c761404476|commit]] * Handle corrected machine check interrupt storms [[https://git.kernel.org/linus/3ed57b41a4125609e9fd03e32228aec61d95fe1f|commit]], [[https://git.kernel.org/linus/7eae17c4add5de46efcca45356388f480103e6d9|commit]], [[https://git.kernel.org/linus/1f68ce2a027250aeeb1756391110cdc4dc97c797|commit]] * cstate * Add Sierra Forest support [[https://git.kernel.org/linus/3877d55a0db2688c2e4ab8a319614a0c81f8e2d2|commit]] * Add Grand Ridge support [[https://git.kernel.org/linus/bbb968696d0f3442ab823598def3b756cf4735c6|commit]] * uncore * Support Granite Rapids [[https://git.kernel.org/linus/632c4bf6d007862307440b177d9fee829857e8bb|commit]] * Support Sierra Forest and Grand Ridge [[https://git.kernel.org/linus/cb4a6ccf35839895da63fcf6134d6fbd13224805|commit]] * Support IIO free-running counters on GNR [[https://git.kernel.org/linus/388d76175bd9bbad52bbff25c88361d9e5c6615e|commit]] * Add model number for Intel Clearwater Forest processor [[https://git.kernel.org/linus/090e3bec01763e415bccae445f5bfe3d0c61b629|commit]] * TDX host kernel support [[https://git.kernel.org/linus/765a0542fdc7aad7cbc1da3bd19bed6297b54e2c|commit]], [[https://git.kernel.org/linus/d623704bb23901a25bf6d6a40aa16b43a17622eb|commit]], [[https://git.kernel.org/linus/3115cabd935ade76fbe61154d1e405158e548272|commit]], [[https://git.kernel.org/linus/1e66a7e275393055d98d2306771fe1feadeb1cd6|commit]], [[https://git.kernel.org/linus/df01f5ae07dd9ca0c755943a5cfcc4e78e480f99|commit]], [[https://git.kernel.org/linus/6162b310bc219d18bac970dbd441d7743097d1b9|commit]], [[https://git.kernel.org/linus/abe8dbab8f9f8370c26e7b79b49ed795c1b6b70f|commit]], [[https://git.kernel.org/linus/cf72bc481634b7c4cd780b6338f222e2892b0232|commit]], [[https://git.kernel.org/linus/5173d3c5d018161aca17d4ac95367cf832c7fff1|commit]], [[https://git.kernel.org/linus/f3338ac15931075ef8b81145f5de128158a8dc8e|commit]], [[https://git.kernel.org/linus/ac3a22088434e31dddda82aa473bee008df99b97|commit]], [[https://git.kernel.org/linus/dde3b60d572c941e2c72d22c18a08586fb67bb50|commit]], [[https://git.kernel.org/linus/554ce1c36d1bbeaec42ba870bad75e200af204be|commit]], [[https://git.kernel.org/linus/e56d28df2f666af9ce0c27d8d204ad813d3766f4|commit]], [[https://git.kernel.org/linus/0b2bc38131f02d6fd38695f191bbd8c6109ecffc|commit]], [[https://git.kernel.org/linus/f3f6aa68640298fb966811b991c7b8efee67e181|commit]], [[https://git.kernel.org/linus/1e536e10689700e006989dea33918cce348e04b6|commit]], [[https://git.kernel.org/linus/70060463cb2ba72bbb77c7ced503f53e09380f17|commit]], [[https://git.kernel.org/linus/4e1c7dddc71708c21d7fe69cc5f8297ffb7c6965|commit]] * KVM * SEV: disable SEV-ES !DebugSwap by default [[https://git.kernel.org/linus/5abf6dceb066f2b02b225fd561440c98a8062681|commit]] * Advertise CPUID.(EAX=7,ECX=2):EDX[5:0] to userspace [[https://git.kernel.org/linus/eefe5e6682099445f77f2d97d4c525f9ac9d9b07|commit]] * Make Hyper-V emulation optional [[https://git.kernel.org/linus/87562052c965ba7de6dc490434e53691fe46c898|commit]], [[https://git.kernel.org/linus/cfef5af3cb0e57501dcac2816ab11a20c074866d|commit]], [[https://git.kernel.org/linus/50a82b0eb88c108d1ebc73a97f5b81df0d5918e0|commit]], [[https://git.kernel.org/linus/16e880bfa6377871da233c846ecdf23db2bf1d97|commit]], [[https://git.kernel.org/linus/0659262a2625ca3e4061796cd4f4935091220056|commit]], [[https://git.kernel.org/linus/e7ad84db4d718e18c7a133e941ba4c7d4c6d4cbf|commit]], [[https://git.kernel.org/linus/af9d544a452114eb54638015544b884e1befd0fb|commit]], [[https://git.kernel.org/linus/b2e02f82b7f76234305c5a7fba4dbebc47ce4cb5|commit]], [[https://git.kernel.org/linus/6dac1195181cb561a1ac32b92f58c92e87a91c70|commit]], [[https://git.kernel.org/linus/225b7c1117b2f6dadbdb1d40538d37b9685e8b18|commit]], [[https://git.kernel.org/linus/f97314626734deaef49564a429c6f8eee3846bd3|commit]], [[https://git.kernel.org/linus/b4f69df0f65e97fec439130a0d0a8b9c7cc02df2|commit]], [[https://git.kernel.org/linus/453e42b0557148cc7092c72eff6677a5436e3c7c|commit]], [[https://git.kernel.org/linus/c98842b26c233318bb18c77cc6e25859fe76c80e|commit]], [[https://git.kernel.org/linus/5a30f97683af802c0fa24d1cfc339f87cdb6791b|commit]], [[https://git.kernel.org/linus/017a99a966f1183e611f0b0fa6bec40160c81813|commit]] * nSVM: Advertise support for flush-by-ASID [[https://git.kernel.org/linus/176bfc5b17fee327585583a427e2857d9dfd8f68|commit]] * Enabling of Linear-address masking (LAM) and Linear Address Space Separation (LASS) [[https://git.kernel.org/linus/7b0dd9430cf0c1ae19645d2a6608a5fb57faffe4|commit]], [[https://git.kernel.org/linus/3963c52df42231f72277cd138994ac94f1183d2b|commit]], [[https://git.kernel.org/linus/538ac9a92d669c4ccfc64739a32efab2793cea1d|commit]], [[https://git.kernel.org/linus/a130066f74008858ac425b7497d231742474a0ea|commit]], [[https://git.kernel.org/linus/2c49db455ee27c72a680c9e4fad1c12433902ee3|commit]], [[https://git.kernel.org/linus/9c8021d4ae85f1531230fc33653e06e9f1fdb7f1|commit]], [[https://git.kernel.org/linus/37a41847b770c722e98ace72f3851fb49b360c08|commit]], [[https://git.kernel.org/linus/b39bd520a60c667a339e315ce7a3de2f7178f6e3|commit]], [[https://git.kernel.org/linus/93d1c9f498a7505e0e0a0198f3b3d7f97fcc5fa6|commit]], [[https://git.kernel.org/linus/3098e6eca88e543ea0d190d1fa72b1c047bb3e7d|commit]], [[https://git.kernel.org/linus/703d794cb8cb28c07b22c1c845f5c4d4c419aff7|commit]], [[https://git.kernel.org/linus/183bdd161c2b773a62f01d1c030f5a3a5b7c33b5|commit]] * LOONGARCH * Enable initial Rust support [[https://git.kernel.org/linus/90868ff9cadecd46fa2a4f5501c66bfea8ade9b7|commit]] * Allow device trees be built into the kernel [[https://git.kernel.org/linus/8e07e0e3964ca4e23ce7b68e2096fe660a888942|commit]], [[https://git.kernel.org/linus/ec6b36edf0cea06d651ef14092921a339b4eea2f|commit]], [[https://git.kernel.org/linus/aaeebb3ea4f2d6674b0fbc8bd48bf8862309f191|commit]], [[https://git.kernel.org/linus/db8ce2407090f695339e3406a034377dcdc2c942|commit]], [[https://git.kernel.org/linus/5f346a6e5970229c19c059e8fa62c3dbdde56e7b|commit]], [[https://git.kernel.org/linus/0f66569c85948c8b3c3edbe3e4ada6f98a4937ea|commit]], [[https://git.kernel.org/linus/30a5532a32066233a2e9a4751989276e91c82210|commit]], [[https://git.kernel.org/linus/2905844f682808275ea5daf6f5b668fbfe547363|commit]], [[https://git.kernel.org/linus/44a01f1f726ab1d2050fb741eca4fabfa3cab799|commit]] * BPF: Support 64-bit pointers to kfuncs [[https://git.kernel.org/linus/21c5ae5cc1eee70f7f3b09f1d6b237d9812d4b9c|commit]] * KVM: Add LASX (256bit SIMD) support [[https://git.kernel.org/linus/118e10cd893d57df55b3302dfd188a981b6e6d1c|commit]] * KVM: Add LSX (128bit SIMD) support [[https://git.kernel.org/linus/db1ecca22edf27c5a3dd66af406c88b5b5ac7cc1|commit]] * KVM: Optimization for memslot hugepage checking [[https://git.kernel.org/linus/7ab6fb505b2a7447c4a7237a12c59e3ad0c7298c|commit]] * MICROBLAZE * Enable options to mount a rootfs via NFS [[https://git.kernel.org/linus/873b074050a8028634fb3d4fc95cc9a3a70d10bb|commit]] * POWERPC * Topology and shared processor optimizations [[https://git.kernel.org/linus/aa80c6343fcf53cbc29f84ba9f89ca87d4e41350|commit]], [[https://git.kernel.org/linus/0e1c1986e0e65746daa05405d7747ce882f83cf1|commit]], [[https://git.kernel.org/linus/fd535a858ebeb1f478b1d065b6c057f52aad483a|commit]], [[https://git.kernel.org/linus/0e93f1c780e8fd315f1262467b7d35eb6f766d2f|commit]], [[https://git.kernel.org/linus/c46975715f5a7b941aa09bc0539a8dbe297f308f|commit]] * Add PVN support for !HeXin C2000 processor [[https://git.kernel.org/linus/e12d8e2602d2bcd26022eff3e2519d25925e760c|commit]] * Add papr-vpd and papr-sysparm character device drivers for VPD & sysparm retrieval, so userspace tools can be adapted to avoid doing raw firmware calls from userspace [[https://git.kernel.org/linus/01e346ffefda3a7088afebf02b940614179688e7|commit]], [[https://git.kernel.org/linus/c500c6e736df030f8956080738f59701c0b43dd8|commit]], [[https://git.kernel.org/linus/669acc7eec223a81ea5e2420de85b61979ab7dad|commit]], [[https://git.kernel.org/linus/9592aa5ad59e736727fe7894e6e820e2d851abcf|commit]], [[https://git.kernel.org/linus/e7582edb78619abb4ebf0a6e1fed125dcd7243b6|commit]], [[https://git.kernel.org/linus/adf7a019e5f82607fc0f0079926d0178afe8f4ef|commit]], [[https://git.kernel.org/linus/dc7637c402b90a197d3f21a3d78f2b00b67ea22a|commit]], [[https://git.kernel.org/linus/e3681107bc9f97c5948a1c8a3a97ac64907210ce|commit]], [[https://git.kernel.org/linus/514f6ff4369a30bf0da71a1a09fd47b2fca5d76f|commit]], [[https://git.kernel.org/linus/35aae182bd7b422be3cefc08c12207bf2b973364|commit]], [[https://git.kernel.org/linus/905b9e48786ec55b2c469db77fb46e20bf3e4901|commit]], [[https://git.kernel.org/linus/9118c5d32bddb5f75bc4f9f31218e70317702502|commit]], [[https://git.kernel.org/linus/76b2ec3faeaa0c8d84705acd64ac0e5a307ce9c2|commit]] * S390 * perf report: Add s390 raw data interpretation for PAI counters [[https://git.kernel.org/linus/b539deafbadb2fc6ba79307a797196454b14f501|commit]] * Remove "novx" option [[https://git.kernel.org/linus/af6ed37eb0bebc5661f653ed3704d606c2e8ec94|commit]] = Drivers = == Graphics == * scheduler: implement dynamic job-flow control [[https://git.kernel.org/linus/a78422e9dff366b3a46ae44caf6ec8ded9c9fc2f|commit]] * dma-fence: Deadline awareness (uabi edition) [[https://git.kernel.org/linus/8570c27932e132d2663e8120311891deb2a853de|commit]], [[https://git.kernel.org/linus/63ee44540205d993854f143a5ab1d7d9e63ffcf1|commit]], [[https://git.kernel.org/linus/70e67aaec2f4706df0006423eebca813b00f5840|commit]] * amdgpu * Extend the current KMS color management API with AMD driver-specific properties to enhance the color management support on AMD Steam Deck [[https://git.kernel.org/linus/486c95af5d76047d5cb50727270b1961dacb9380|commit]], [[https://git.kernel.org/linus/8d26795ae61a5f64ba7db4f3240dc9ab2138d361|commit]], [[https://git.kernel.org/linus/783ed4460fe55b01ff32a7c6ad8239974874a16a|commit]], [[https://git.kernel.org/linus/f81996637000a050477d597ef99e832079f99bd2|commit]], [[https://git.kernel.org/linus/94aeb4117343d072e3a35b9595bcbfc0058ee724|commit]], [[https://git.kernel.org/linus/a2f2f43f74cd050146cd2660bbc3c7e1e7c0da0b|commit]], [[https://git.kernel.org/linus/cb19dc4a64598ffbfd4354083f809fae082fa4c3|commit]], [[https://git.kernel.org/linus/b8b92c1bd7788b1f13d547ee2ce8a93baf55b814|commit]], [[https://git.kernel.org/linus/5f82a0c90ccaf0d1390b5c1b83a83d38bca526da|commit]], [[https://git.kernel.org/linus/34dc227bf2f34085313be39d76b12f08bfe8efc0|commit]], [[https://git.kernel.org/linus/3dad69090743c5f4642aeb628b8542a1e335dded|commit]], [[https://git.kernel.org/linus/6872a189be508b9383bc081d462a5d99cbb8319d|commit]], [[https://git.kernel.org/linus/d5a348d96e4e2b924fa83e729f8791c03a4f8e24|commit]], [[https://git.kernel.org/linus/5a3b965b5810bd602d2c7d8ea79ffe8c6e81268d|commit]], [[https://git.kernel.org/linus/e4cddd51bfab2a40529a4af35bd2c912b5a0c239|commit]], [[https://git.kernel.org/linus/ec7b2a55463ea50401a8146793b61ee590255a45|commit]], [[https://git.kernel.org/linus/f545d82479b46368bf00d0bfecf33fa914bd5f8f|commit]], [[https://git.kernel.org/linus/0ef47454dc82358b62a424b37c7520a84f307edb|commit]], [[https://git.kernel.org/linus/0f5afa190b890052cae187496f660699f00067ef|commit]], [[https://git.kernel.org/linus/98fbb52772063ad2547d6d1b80ff99bc26761e79|commit]], [[https://git.kernel.org/linus/8b6b3f668f31a24b5406661388b9a69202e83e9d|commit]], [[https://git.kernel.org/linus/6bd20f0f165f444c1d8184ebd238dd92966c9dca|commit]], [[https://git.kernel.org/linus/d9501844d53897ca7ac04697b8504940c6dfdbb3|commit]], [[https://git.kernel.org/linus/88d26ea639a8e9d314e6bffef5f382167e7203e2|commit]], [[https://git.kernel.org/linus/6bed9d550e51534415a56f8de33f5b9d4e728e53|commit]], [[https://git.kernel.org/linus/73e5ea616a9f8c261d07e63b421947949ad6cbce|commit]], [[https://git.kernel.org/linus/683b8c7e7a94fb7445b8d300c7404322ad040bab|commit]], [[https://git.kernel.org/linus/980f8710075acaeb226a94cde6dda8ffad30123c|commit]], [[https://git.kernel.org/linus/ef113a3b1964b40dd87287806865b947d70f7df5|commit]], [[https://git.kernel.org/linus/889044f9e04f0829dd92640c551941bbe77bc0ea|commit]], [[https://git.kernel.org/linus/4bc59ddf57c1f68ea035c4f242108f29d91797fd|commit]], [[https://git.kernel.org/linus/aba8b76baabde681ab4ff686452005d80d949345|commit]], [[https://git.kernel.org/linus/99de686115b00e765a5e9345e10c9d7312e4c7ea|commit]] * Add disable timeout option [[https://git.kernel.org/linus/cc6201b773f12388c234aa10145322ccc429959e|commit]] * DC Patches December 20, 2023 [[https://git.kernel.org/linus/8a0f02b7beed7b2b768dbdf3b79960de68f460c5|commit]], [[https://git.kernel.org/linus/ade13d3fc03a17812e4c677ec898f62b2a8e9485|commit]], [[https://git.kernel.org/linus/a71e1310a43ffe47b824aae25ae54f9fcc4daa12|commit]], [[https://git.kernel.org/linus/394e850f1ad73c594bf0296c2f601c71517acfdd|commit]], [[https://git.kernel.org/linus/ca1ecae145b20b11ff49062afe6f0bf6707bc244|commit]], [[https://git.kernel.org/linus/aa5dc05340eb97486a631ce6bccb8d020bf6b56b|commit]], [[https://git.kernel.org/linus/ee8ed2506603629f2706712a5282921a115a8da6|commit]], [[https://git.kernel.org/linus/efae5a9eb47b76d5f84c0a0ca2ec95c9ce8a393c|commit]], [[https://git.kernel.org/linus/ec9ba4821fa52b5efdbc4cdf0a77497990655231|commit]], [[https://git.kernel.org/linus/09b5bc456c63e3caeb854d492177bbfbe7b1cb22|commit]], [[https://git.kernel.org/linus/4069d43bfecb45811a2ad5dc63326e4227fa5931|commit]], [[https://git.kernel.org/linus/54249f03ab9a7311dad653b449e15c6a939d7732|commit]], [[https://git.kernel.org/linus/60d5d1e76270bac910f9596799cbd831fe09c489|commit]], [[https://git.kernel.org/linus/4b5c5f5ad38b9435518730cc7f8f1e8de9c5cb2f|commit]], [[https://git.kernel.org/linus/4e7738bcfb6765ca669fdbd2be2f7f6f239ed3e5|commit]], [[https://git.kernel.org/linus/59f1622a5f05d948a7c665a458a3dd76ba73015e|commit]], [[https://git.kernel.org/linus/6b2b782ad6a25734ae847d1659bea3f613dbb563|commit]], [[https://git.kernel.org/linus/f6154d8babbb8a98f0d3ea325aafae2e33bfd8be|commit]], [[https://git.kernel.org/linus/9ade4870b87b09e1f132ba92c1ab13a6769d1b0f|commit]], [[https://git.kernel.org/linus/b8a204fb1a97b39a7fcaefbf2c6c4d01aa4f3c57|commit]], [[https://git.kernel.org/linus/292c2116b2ae84c7e799ae340981e60551b18f5e|commit]], [[https://git.kernel.org/linus/d6398866a6b47e92319ef6efdb0126a4fbb7796a|commit]], [[https://git.kernel.org/linus/e379787cbc2aa73c63a795ec55140f9b21c27d8c|commit]] * DC Patches December 1, 2023 [[https://git.kernel.org/linus/e57cd73f971194e94bc42d57b9fcb184c93a8754|commit]], [[https://git.kernel.org/linus/885c71ad791c1709f668a37f701d33e6872a902f|commit]], [[https://git.kernel.org/linus/dd2c5fac91d46df9dc1bf025ef23eff4704bd85f|commit]], [[https://git.kernel.org/linus/fa745b554733ff0ed9ff918a0a53267300444c88|commit]], [[https://git.kernel.org/linus/a546a27684407942604bccdf3b62f0765c0f6399|commit]], [[https://git.kernel.org/linus/62fbfdbbe3a1f188a6310d9418956b918840cd33|commit]], [[https://git.kernel.org/linus/b17ef04bf3a4346d66404454d6a646343ddc9749|commit]], [[https://git.kernel.org/linus/d5df648ec830cfd775bdacb3a3640c1e16de90f2|commit]], [[https://git.kernel.org/linus/ab779466166348eecf17d20f620aa9a47965c934|commit]], [[https://git.kernel.org/linus/23cf5a5cd33a518b6bdbe9966dc49f1cf6bfe532|commit]], [[https://git.kernel.org/linus/94bbf802efd0a8f13147d6664af6e653637340a8|commit]], [[https://git.kernel.org/linus/823423b8ec7b56e22dad83e171c9ca6418679169|commit]], [[https://git.kernel.org/linus/2cbed167d2698f10a67f47f14aaac7d498f6dfb7|commit]], [[https://git.kernel.org/linus/d24e50e1005fd584e0fea138aa153349e13b4d94|commit]], [[https://git.kernel.org/linus/d218291579de53fad8242ad1ae732604de25b635|commit]], [[https://git.kernel.org/linus/c59397eff9439bbc8b9a9835142e99ea0abf9cde|commit]], [[https://git.kernel.org/linus/e6ae4c47e8f8941fde115434fd8884e4e972cf6b|commit]], [[https://git.kernel.org/linus/43484c4bdb6eb2f74cec61e4e7cfcb6ce8e69e2f|commit]], [[https://git.kernel.org/linus/d3586c707b8f64cbe5b778cfe59ac4b8a4be0d3b|commit]], [[https://git.kernel.org/linus/2ce156482a6fef349d2eba98e5070c412d3af662|commit]], [[https://git.kernel.org/linus/21afc872fbc29cd68cfde816d1df4d55848c3f61|commit]], [[https://git.kernel.org/linus/cfa96a14e89d8341a7308acc4c6168991d4fdac0|commit]], [[https://git.kernel.org/linus/abd26a3252cbd1a3ae4e46d37596d176fe50b41a|commit]], [[https://git.kernel.org/linus/dd5c6362ddcd8bdb07704faff8648593885ecfa1|commit]], [[https://git.kernel.org/linus/08a32addf17317b9fac55be9b31275cbf6e41fb7|commit]], [[https://git.kernel.org/linus/b6411638c026fde33046f5515a5a7d37af1da146|commit]], [[https://git.kernel.org/linus/80af8859b46d1fa386871f71bad95db9ff50ad62|commit]], [[https://git.kernel.org/linus/198891fd2902fba155fe23f8ad27c9cf8cd8286d|commit]], [[https://git.kernel.org/linus/dfc03588cf8ce2af8ef810cd226dc98ee4fbac38|commit]], [[https://git.kernel.org/linus/7db7ade270ae8e177cc8bd09753745e7c2dc92e7|commit]], [[https://git.kernel.org/linus/748b091d641638e68330b1b24195eaba9aadf997|commit]], [[https://git.kernel.org/linus/3e094a2875260543ca74838decc0c995d3765096|commit]], [[https://git.kernel.org/linus/dbf5d3d02987faa0eec3710dd687cd912362d7b5|commit]], [[https://git.kernel.org/linus/ff73d4cdde18bc4607ff10c53351715ee1164be0|commit]], [[https://git.kernel.org/linus/1fb9d7b975baba081724be8ff6370b1a71a8aea4|commit]], [[https://git.kernel.org/linus/c81e13b929df2fd16dce87ac36672978f10eae1c|commit]], [[https://git.kernel.org/linus/f772f902b28662188636faba88e2a10bdb08e128|commit]], [[https://git.kernel.org/linus/c09919e6ea5fefd49d8b7b54aa5b222937163108|commit]], [[https://git.kernel.org/linus/86ecd796a88e26e025f184ff6a2e8872a6dc9ac7|commit]], [[https://git.kernel.org/linus/ab37b88ed9de9de8d582683f7ea17059f1251a7f|commit]], [[https://git.kernel.org/linus/f872e2f5f0beabd34c03799a5c597f6ba47b51cc|commit]], [[https://git.kernel.org/linus/fdf43d25e38f9e6e6a3cdb15335c198fb6d5dcb9|commit]], [[https://git.kernel.org/linus/50ad10cba6cd1c7f0ac9049f2c2c6b7589b510d0|commit]], [[https://git.kernel.org/linus/87ce0e62694115cfe4210a17c269d6855d2a139b|commit]], [[https://git.kernel.org/linus/514a1cc940c264007805c02173dd5490c0a59f48|commit]], [[https://git.kernel.org/linus/d3e78612e949e16088b6ee83647b28499c24954d|commit]], [[https://git.kernel.org/linus/107d678f6aecb4421975a25127b6bf521504b39e|commit]], [[https://git.kernel.org/linus/c0c22ed7c9fd6e6d50f61ed7347e60342e958e6f|commit]] * Disable IPS by default [[https://git.kernel.org/linus/16927047b396d100a510138bdf9fba65f35b81c2|commit]] * DC Patches Nov 08, 2023 [[https://git.kernel.org/linus/efb91fea652a42fcc037d2a9ef4ecd1ffc5ff4b7|commit]], [[https://git.kernel.org/linus/ef71bb4119c786f6f1d132b8863698874321798b|commit]], [[https://git.kernel.org/linus/fcfc6ceec3ebb725a0d6381a1120e7cd546e1df4|commit]], [[https://git.kernel.org/linus/c41028a2a16303e5a59e11338d6ef5475945c79d|commit]], [[https://git.kernel.org/linus/8b8eed05a1c650c27e78bc47d07f7d6c9ba779e8|commit]], [[https://git.kernel.org/linus/68cfc5d8e459f50e5f46dca3b0f3c97a75f39975|commit]], [[https://git.kernel.org/linus/673d6d73eba79a1205ac403b68ef63da1c823da2|commit]], [[https://git.kernel.org/linus/5f70d4ff8095a2ad362d2a00eb8d9f7e20f3daa1|commit]], [[https://git.kernel.org/linus/cc6201b773f12388c234aa10145322ccc429959e|commit]], [[https://git.kernel.org/linus/c21a764a98cb59d673cad3da64f35f4dec951951|commit]], [[https://git.kernel.org/linus/c29085d29562990559163302d9e28d1e88223d90|commit]], [[https://git.kernel.org/linus/ed4ae8f77f2c4ff05244db99330d1eff828d9f7d|commit]], [[https://git.kernel.org/linus/8a2553d5c7ade00d1b508bbd418d5c4803c12fdd|commit]], [[https://git.kernel.org/linus/466a7d115326ece682c2b60d1c77d1d0b9010b4f|commit]], [[https://git.kernel.org/linus/d9b3a066dfcd3fe50b4dc561d8510c43c0ad8863|commit]], [[https://git.kernel.org/linus/59e4db5375f587954eb779ac9c7888a6c81c306b|commit]] * DC Patches for Dec 18, 2023 [[https://git.kernel.org/linus/0f657938e4345a77be871d906f3e0de3c58a7a49|commit]], [[https://git.kernel.org/linus/c57a0f50c060b7c58f974306fe103eabb881ccbc|commit]], [[https://git.kernel.org/linus/669080888691c312cc926322a7b24600121c90fb|commit]], [[https://git.kernel.org/linus/6e4337f695c25162f0296934152506ad596fcebf|commit]], [[https://git.kernel.org/linus/a0d25fcd75d40441712ff210cba2e49fc771a8b3|commit]], [[https://git.kernel.org/linus/4e08378b2dc1fbe64c9e1730f3260672b22fac03|commit]], [[https://git.kernel.org/linus/65550a9cc5c371b4027c8e8199293899cb2f5af7|commit]], [[https://git.kernel.org/linus/5dd0bd06cb6c02b445d28144a83c561225c2fa5f|commit]], [[https://git.kernel.org/linus/6fb12518ca58412dc51054e2a7400afb41328d85|commit]], [[https://git.kernel.org/linus/b55349a03837213f2b32af9e7d3d7c9083f297d1|commit]], [[https://git.kernel.org/linus/ab44f9daa89c0f081cfd2d79bfe40b27b556a946|commit]], [[https://git.kernel.org/linus/e48c8cbeebbd7e2e4d3fe8508b4beb7c00800de4|commit]], [[https://git.kernel.org/linus/006ad514a50cc49d904fd004b69c842ddfaabf1f|commit]], [[https://git.kernel.org/linus/8b09656b22c052d02e4761eb4cbe611289866245|commit]], [[https://git.kernel.org/linus/72eaa723187b87f1793529eaadbcfaa836c17812|commit]], [[https://git.kernel.org/linus/3582e0ba8a675d72c3cc6dd1b847e6aa757845da|commit]], [[https://git.kernel.org/linus/b5882675074086245589daa21c9d2b205810b83f|commit]], [[https://git.kernel.org/linus/ec39a6d00382dfd23bf74ec28c7cf4b87884ae1b|commit]], [[https://git.kernel.org/linus/0d26644bc57d8737c8e2fb3145366f7d0b941935|commit]], [[https://git.kernel.org/linus/8e57c06bf4b0f51a4d6958e15e1a99c9520d00fa|commit]], [[https://git.kernel.org/linus/8892780834ae294bc3697c7d0e056d7743900b39|commit]], [[https://git.kernel.org/linus/e5ffd1263dd5b44929c676171802e7b6af483f21|commit]], [[https://git.kernel.org/linus/09a4ec5da92c84952db117f0d576fdd8368c873a|commit]], [[https://git.kernel.org/linus/012a04b1d6af629077bf98e172d946bf893a4726|commit]], [[https://git.kernel.org/linus/b03281e925f996ffc850ad25de10f4586a8c7435|commit]], [[https://git.kernel.org/linus/760ed918fb1f857490868e4bc91265a4d5d37f37|commit]], [[https://git.kernel.org/linus/08daec77fddf23cd246a0662c6dc0d60229caaee|commit]], [[https://git.kernel.org/linus/5a82b8d6c05f9b30828ede1b103b9ee5cb5c912e|commit]], [[https://git.kernel.org/linus/dff45f03f508c92cd8eb2050e27b726726b8ae0b|commit]], [[https://git.kernel.org/linus/e7b2b108cdeab76a7e7324459e50b0c1214c0386|commit]], [[https://git.kernel.org/linus/85fce153995e177ca307786b4ecf190b4daa540c|commit]], [[https://git.kernel.org/linus/0061080e5d1982e4dd424c4ba1d6ae20f11eb03d|commit]], [[https://git.kernel.org/linus/731b2f6e6be4a4946724e47c15cba1e40568ad13|commit]] * Add sysfs attribute to get pm metrics [[https://git.kernel.org/linus/223aad1be34e1169ee7210bce05726cc5ef1fd66|commit]] * Enable GFXOFF for Compute on GFX11 [[https://git.kernel.org/linus/aa0901a9008eeb2710292aff94e615adf7884d5f|commit]] * Support poison error injection via ras_ctrl debugfs [[https://git.kernel.org/linus/fb1e91719983c529f85602fdd08c0b7dbf384b1c|commit]] * Expose the connected port num info through sysfs [[https://git.kernel.org/linus/75fb313c55fa102f973c440f55dc63ffc61f3b54|commit]] * Remove infrastructure for old user-space mode setting [[https://git.kernel.org/linus/9cf5ca1f485cae406968947a92bf304603999fa1|commit]], [[https://git.kernel.org/linus/972c45e892448f698047f312763eb984c0b8d7c3|commit]], [[https://git.kernel.org/linus/786b96d01919f8876187d75a6a995ac5783ed0f5|commit]], [[https://git.kernel.org/linus/64c39a93ef6c45447bc093e34e02afeb4c063579|commit]], [[https://git.kernel.org/linus/9f4db4495b6fa551f18a892f32c71899a20f4923|commit]], [[https://git.kernel.org/linus/c45a1e0a2e9d3f6b37d27e636ba905678c84a41a|commit]], [[https://git.kernel.org/linus/184dcdc251420929bf195f99f0b9fb6960788b6d|commit]], [[https://git.kernel.org/linus/6bb0814be42e109555dd63e59e6eabf968b9b016|commit]], [[https://git.kernel.org/linus/2722ac1ce1c1f3e6a3a0c59f0072b2f9ba136551|commit]], [[https://git.kernel.org/linus/2798ffcc1d6a788b5769b1fbcf0750dfc06ae98a|commit]], [[https://git.kernel.org/linus/2504c7ec728b7a2b6ca067e2a908fd1af2aad57c|commit]], [[https://git.kernel.org/linus/87be41f09ac92cee6d0124636f49fac21dfd445e|commit]], [[https://git.kernel.org/linus/94f8f319cbcbddce8f82bfaf8ed39eb57efdd457|commit]] * backlight: mp3309c: Add support for MPS MP3309C [[https://git.kernel.org/linus/2e914516a58cf86bd0e42c7d3e25c81d44ec2ab8|commit]] * Intel * (FEATURED) Introduce Xe, a new DRM driver for Intel GPUs [[https://git.kernel.org/linus/dd08ebf6c3525a7ea2186e636df064ea47281987|commit]] * debugfs entry to list display capabilities [[https://git.kernel.org/linus/bc725dc1a8317abb2403b3a906106dbe0d4d4422|commit]] * Improve BW management on MST links [[https://git.kernel.org/linus/560ea72c76eb6d0c59f77580414e64cc09f1093d|commit]], [[https://git.kernel.org/linus/7707dd6022593f3edd8e182e7935870cf326f874|commit]], [[https://git.kernel.org/linus/9dcf67deeab6fbc4984175278b1b2c59881dca52|commit]], [[https://git.kernel.org/linus/1cd0a5ea427931016c3e95b20dc20f17604937cc|commit]], [[https://git.kernel.org/linus/d075bca47c18779301fee5a9d140f146cde4b532|commit]], [[https://git.kernel.org/linus/6f1aa39d6497d4d27f8ee132e9cb8bdbfe7c0674|commit]], [[https://git.kernel.org/linus/b348150406564595cf6c1be388e9797fa97c2a5d|commit]], [[https://git.kernel.org/linus/a6315ec25eed0e9a70cb1cfc43cf694911546a5c|commit]], [[https://git.kernel.org/linus/c1d6a22b7219bd52c66e9e038a282ba79f04be1f|commit]], [[https://git.kernel.org/linus/d91680efcaaba6cc2e7cd83e4aa5e1d0f1c6f684|commit]], [[https://git.kernel.org/linus/3e306daab76ac32b3496583e1db43baabe8a062e|commit]], [[https://git.kernel.org/linus/7ff2090c7c98644ea04be7ff8e304b74f47cf9dc|commit]], [[https://git.kernel.org/linus/4e0837a8d00aa349910a73a6e14102f4c5d81ed5|commit]], [[https://git.kernel.org/linus/5d78cd80efdd4ac221a0ccd884082280ddef6128|commit]], [[https://git.kernel.org/linus/53f468aa90091d3a75ff17b1c2f4874a9b862b38|commit]], [[https://git.kernel.org/linus/aaa80e756e1cd8eb0561d7e244a9937fc23944d2|commit]], [[https://git.kernel.org/linus/b40887f8c8a874acad4158adfa2182b73db1fb31|commit]], [[https://git.kernel.org/linus/0cfdf662d4ef71569c8b9a628defd51586e102c3|commit]], [[https://git.kernel.org/linus/6e916b35afa8a3729b254cdd839fa12618e8591f|commit]], [[https://git.kernel.org/linus/8ab5a03643fc529f0e8663bc4d5b43f8f6885922|commit]], [[https://git.kernel.org/linus/55eaef164174480df6827edeac15620f3cbcd52b|commit]], [[https://git.kernel.org/linus/503611c8a08ab660c718c295d26180e585058d95|commit]], [[https://git.kernel.org/linus/7c4631ff6233043b71b68c80f3b9f35510cdda33|commit]], [[https://git.kernel.org/linus/751dbac1a0235ea7303e5e76fade2762e8298907|commit]], [[https://git.kernel.org/linus/b2608c6b3212e4258379c161d8657c526bda902c|commit]], [[https://git.kernel.org/linus/1e4bd5c14e4c72fc74a985e05fdbc735d2cf7566|commit]], [[https://git.kernel.org/linus/e37137380931ae971e0380ba4cea6b16843da953|commit]], [[https://git.kernel.org/linus/36f579ffc6921408fd2e466a6930463bac56b926|commit]], [[https://git.kernel.org/linus/3a5f80e4ce973c6702ec31e5823502860208e030|commit]], [[https://git.kernel.org/linus/99831ab9ce46b1163ac66e92a04614da2da41b1b|commit]] * Add DSC fractional bpp support [[https://git.kernel.org/linus/0c2287c9652150cf659408b66c1789830822132f|commit]], [[https://git.kernel.org/linus/59a266f068b4f9f54c58e4066ac9ee9023ad9232|commit]], [[https://git.kernel.org/linus/87c8812f4b009b5a5d38b1560b45d4a1cc4b24c5|commit]], [[https://git.kernel.org/linus/08fcb5ab7b32848b1852145baf89007a3e3c28b9|commit]], [[https://git.kernel.org/linus/2df50cb46a4c64107e7a70e8b00e7ffc0806b5a3|commit]], [[https://git.kernel.org/linus/dc59990efda0bc785a3c26c41880cc513f9ed09f|commit]], [[https://git.kernel.org/linus/680c1e31a59b223d677a22b508017d26b71a636a|commit]], [[https://git.kernel.org/linus/5bbdcc86a481d82433e0905a548335bd3683eadf|commit]] * Additional conditions to enable hdcp [[https://git.kernel.org/linus/da36ce00997e10ed06c9fa66fbce546cad23815f|commit]], [[https://git.kernel.org/linus/4f60f06a41f441cd5a8570c61701ba40796fa52c|commit]], [[https://git.kernel.org/linus/3b9bbd79627043a9fa9dd5b01bb29882663976e0|commit]] * Panel replay phase1 implementation [[https://git.kernel.org/linus/48d054c2d34cdc67acb8cc9cfac326d91f1470ed|commit]], [[https://git.kernel.org/linus/dd8f2298e34bf64f07ad5ff27c5964994783e7a7|commit]], [[https://git.kernel.org/linus/b8cf5b5d266ec20e1ab90f38c8d779c669c2d219|commit]], [[https://git.kernel.org/linus/cceeaa312d390e4f8407c056ae27ba7edd50307e|commit]], [[https://git.kernel.org/linus/3257e55d3ea7e35ea76ff6ae07347b803f068068|commit]], [[https://git.kernel.org/linus/88a6e46cd3e33756b168c7f2366bf7029a16da56|commit]], [[https://git.kernel.org/linus/9b1c97fc0ce6090c328b5723250f4deeefc95fcd|commit]], [[https://git.kernel.org/linus/ff5a55a3e80eba616f4d06fa255bfe4f8b032bec|commit]], [[https://git.kernel.org/linus/f8e9325f09c778fb61d3cebd27a9f3738e6fea48|commit]], [[https://git.kernel.org/linus/59be90248b422f2924872de0be2867652214096a|commit]], [[https://git.kernel.org/linus/0c2287c9652150cf659408b66c1789830822132f|commit]], [[https://git.kernel.org/linus/59a266f068b4f9f54c58e4066ac9ee9023ad9232|commit]], [[https://git.kernel.org/linus/87c8812f4b009b5a5d38b1560b45d4a1cc4b24c5|commit]], [[https://git.kernel.org/linus/08fcb5ab7b32848b1852145baf89007a3e3c28b9|commit]], [[https://git.kernel.org/linus/2df50cb46a4c64107e7a70e8b00e7ffc0806b5a3|commit]], [[https://git.kernel.org/linus/dc59990efda0bc785a3c26c41880cc513f9ed09f|commit]], [[https://git.kernel.org/linus/680c1e31a59b223d677a22b508017d26b71a636a|commit]], [[https://git.kernel.org/linus/5bbdcc86a481d82433e0905a548335bd3683eadf|commit]], [[https://git.kernel.org/linus/a6865fe6fd784a8edec6bd6d396f8c054ade0de8|commit]], [[https://git.kernel.org/linus/dd99d5b1ab93e7b731dda3d39cc7caf4639f8652|commit]], [[https://git.kernel.org/linus/8a4353d077788b4efb11beb8c4e3869ea7aeaff7|commit]], [[https://git.kernel.org/linus/ef75c25e8fedbfcf07ae4223fb7cc9ea5fb342a7|commit]] * Implement audio fastset [[https://git.kernel.org/linus/bc53c4d56eb24dbe56cd2c66ef4e9fc9393b1533|commit]], [[https://git.kernel.org/linus/e0d5ce11ed0a21bb2bf328ad82fd261783c7ad88|commit]], [[https://git.kernel.org/linus/e4fb7f894ed48f6fb5b1ca61ade44a92c425444b|commit]], [[https://git.kernel.org/linus/7966a93a27cfea1d9ceae3be1298be06184f5afe|commit]], [[https://git.kernel.org/linus/ceb53adad7e3cb4806d5fadcd583eade32a6b915|commit]], [[https://git.kernel.org/linus/0195e381b14fc8b16f359cbf45193bcdaaf5cd27|commit]], [[https://git.kernel.org/linus/4645e8980479a0cbfa99bdd07c562cec1597e9cd|commit]], [[https://git.kernel.org/linus/3654a48ab16c243519c40849a61b617828a4a61e|commit]], [[https://git.kernel.org/linus/cff742cc6851f469ae1192877a308884a6439005|commit]], [[https://git.kernel.org/linus/109e1e898abd2c68ceb02058c56db7cf6b9c18d7|commit]], [[https://git.kernel.org/linus/07e823c0fd991565106eff6f03892c5d645cd690|commit]] * Implement fdinfo memory stats [[https://git.kernel.org/linus/e4ae85e364fc652ea15d85b0f3a6da304c9b5ce7|commit]], [[https://git.kernel.org/linus/ca02a0119f814b792484cba0c148fba292327ed6|commit]], [[https://git.kernel.org/linus/978e1a52ca1f0228eccc51ad5ed3a118bac1ad1c|commit]], [[https://git.kernel.org/linus/dc1a2775070f0618b661500310b2ea8643592ed1|commit]], [[https://git.kernel.org/linus/3b38d35157530c12c84fc02cccd469b9a0a00ae7|commit]], [[https://git.kernel.org/linus/968853033d8aa4dbb80fbafa6f5d9b6a0ea21272|commit]] * Imagination Technologies PowerVR DRM driver [[https://git.kernel.org/linus/66b73e9a402d822723b3af5263eb12d735628eac|commit]], [[https://git.kernel.org/linus/a191f73d85484f804284674c14f2d9f572c18adb|commit]], [[https://git.kernel.org/linus/6a85c3b14728f0d5cb59ca0d38894db2a9839fce|commit]], [[https://git.kernel.org/linus/1088d89e551530a9f5128770d74a1516090f1e41|commit]], [[https://git.kernel.org/linus/4babef0708656c54e67ee0ee3994ee98898f51d1|commit]], [[https://git.kernel.org/linus/1f88f017e6499261f46d3468befac7b1cdc96e52|commit]], [[https://git.kernel.org/linus/b41ae495207eaab1363ac3d424e67f3f354ca2ce|commit]], [[https://git.kernel.org/linus/7900e00434eda5ebe7e0c6c995f8528929a8182c|commit]], [[https://git.kernel.org/linus/a26f067feac1f6142c3ccbaeaee8f84078bca9d4|commit]], [[https://git.kernel.org/linus/f99f5f3ea7efd54ba0529c4f2d7c72712918a522|commit]], [[https://git.kernel.org/linus/ff5f643de0bf27874c4033cd57a0bd034b5c7d11|commit]], [[https://git.kernel.org/linus/727538a4bbff07736ecfd704efd7e21718fca3e4|commit]], [[https://git.kernel.org/linus/cc1aeedb98ad347c06ff59e991b2f94dfb4c565d|commit]], [[https://git.kernel.org/linus/927f3e0253c11276f0237ca1a14e77c48957c069|commit]], [[https://git.kernel.org/linus/6eedddab733b350886571f98b810108b13bf74ae|commit]], [[https://git.kernel.org/linus/d2d79d29bb98a32c511f7339a8e93b47544fdeac|commit]], [[https://git.kernel.org/linus/eaf01ee5ba28b97f96a3d3eec4c5fbfb37ee4cde|commit]], [[https://git.kernel.org/linus/6b17baabf6d306f85021b9a081dcd0a1a5c6f846|commit]], [[https://git.kernel.org/linus/cb56cd61086645e46cc54d1837de803b1c471df6|commit]], [[https://git.kernel.org/linus/815d8b0425ad1164e45953ac3d56a9f6f63792cc|commit]] * Add display driver for MT8188 VDOSYS1 [[https://git.kernel.org/linus/b85ea95d086471afb4ad062012a4d73cd328fa86|commit]], [[https://git.kernel.org/linus/3e743b0fcb90551106c13837548079b91d661384|commit]], [[https://git.kernel.org/linus/c5a761e2fe58631e1cd0249a729ce1934a11bcbe|commit]], [[https://git.kernel.org/linus/9030a77742f309d6b6a30c60093f5d617f33889f|commit]], [[https://git.kernel.org/linus/e7013a3d77e28f32def43f2e20e32ffb822d86e5|commit]], [[https://git.kernel.org/linus/ffd00b7994dd8e050ba43a49c7a8a4029a0174fd|commit]], [[https://git.kernel.org/linus/d2423d8a38e724b28007abd76db08ccb59f56015|commit]], [[https://git.kernel.org/linus/a7430e2bf950394cc44b523184338b092dc6aef6|commit]], [[https://git.kernel.org/linus/8daf02f03ca4cf70b1f985293b8515252f9767aa|commit]], [[https://git.kernel.org/linus/7bacaee4f5d0fdf00b1734c1be67cc415b3822c0|commit]], [[https://git.kernel.org/linus/b97fa2f3e19b9bbac934a2cfa9218aa67f12240e|commit]], [[https://git.kernel.org/linus/c90ca391c1e4b7fca1648e5015a57e39080e7ab3|commit]], [[https://git.kernel.org/linus/9c5a05fc8fca2d3be919f92816fc8d11ebdfd7be|commit]], [[https://git.kernel.org/linus/1168bb692bb9c45a31deda73cc3c87d368c7f490|commit]], [[https://git.kernel.org/linus/ba527e9a11b33cc7315171807add5b2f594b23ac|commit]], [[https://git.kernel.org/linus/21b287146adf39304193e4c49198021e06a28ded|commit]], [[https://git.kernel.org/linus/8ac6935e5689a491f0bec78fec732722b3dad094|commit]], [[https://git.kernel.org/linus/73b5ab27ab2ee616f2709dc212c2b0007894a12e|commit]] * msm * Add !DisplayPort controller for SM8650 [[https://git.kernel.org/linus/1b2d98bdd7b7c64265732f5f0dace4c52c9ba8a8|commit]] * Add hw revision 4.1 (SDM670) [[https://git.kernel.org/linus/e140b7e496b73c116454b0a0265bec4cacc9ca40|commit]] * Add CDM support for MSM writeback [[https://git.kernel.org/linus/043e5b302625634f5590f3da09652cdfa1037851|commit]], [[https://git.kernel.org/linus/ecf594453a6fbc6c06278cf815e3ece4a1b8261b|commit]], [[https://git.kernel.org/linus/79caf2f2202b9eaad3a5a726e4b33807f67d0f1b|commit]], [[https://git.kernel.org/linus/9c4998efec47a6f92d53bdcfea2b48783e4fedb5|commit]], [[https://git.kernel.org/linus/a5ec9a44d8a3ae09fdf6dfc12e89c8663bb631ea|commit]], [[https://git.kernel.org/linus/e1239661c9e9a628e0871f461bafebba324658d9|commit]], [[https://git.kernel.org/linus/0afac0ba60242ff827f4ffe56375c421a4e69a0f|commit]], [[https://git.kernel.org/linus/f58a6bf404b3cd6127d022350e67560ed323ee52|commit]], [[https://git.kernel.org/linus/5ef42da742e1ddf35f4a417f8117d10936f45d92|commit]], [[https://git.kernel.org/linus/53d5abe67e5870142f970064b1371a10d2fe7a15|commit]], [[https://git.kernel.org/linus/a780a82a58eccb73fda4b0712c5cc189be7c92b3|commit]], [[https://git.kernel.org/linus/f88c0c8fdb6bb49fc969e5adfcf8ee69bdb753df|commit]], [[https://git.kernel.org/linus/8b45a26f2ba9a052a8b46163fbc9d0d8739ca15d|commit]], [[https://git.kernel.org/linus/8c16b988ba2d3dfc38fc8def0a9ccaefa50debd4|commit]], [[https://git.kernel.org/linus/341fb24a67663ec0e6b8cd012a3892d92d133349|commit]] * Introduce display support for SM8650 [[https://git.kernel.org/linus/b94747f7d8c77e1b261afba8b8cdc9a56e35c9a3|commit]], [[https://git.kernel.org/linus/e6488c2a354103b6a3212f2fffa854e235d8a80e|commit]], [[https://git.kernel.org/linus/3a73e376cff31c6cbc99f0e44068db3a769684d8|commit]], [[https://git.kernel.org/linus/fec254cc752d0449714c026f021d3043abda15e5|commit]] * Enable SmartDMA on SM8450 [[https://git.kernel.org/linus/a9bd555de5e9042fdf8ab8d6080b86f45c68ddf6|commit]] * Enable writeback on SM8350 [[https://git.kernel.org/linus/c2949a49dfe960e952400029e14751dceff79d38|commit]] * gem: Add metadata [[https://git.kernel.org/linus/9902cb999e4e913d98e8afe4b36c08e4a793e1ce|commit]] * nouveau * Implement 1:1 scheduler - entity relationship [[https://git.kernel.org/linus/5f03a507b29e44a848f315c7240c19894dd8be4f|commit]] * Enable dynamic job-flow control [[https://git.kernel.org/linus/46990918f35c1bf6e367cf8e0423e7344fec9fcb|commit]] * Add an ioctl to report vram usage [[https://git.kernel.org/linus/72fa02fdf83306c52bc1eede28359e3fa32a151a|commit]] * Add an ioctl to return vram bar size [[https://git.kernel.org/linus/3f4d8aac6e768c2215ce68275256971c2f54f0c8|commit]] * panel * panel-edp: Add SDC ATNA45AF01 [[https://git.kernel.org/linus/8ebb1fc2e69ab8b89a425e402c7bd85e053b7b01|commit]] * panel-simple: add Evervision VGG644804 panel entry [[https://git.kernel.org/linus/1319f2178bdf1898a76ea8c4f00d57b240bbc5fd|commit]] * Add Ilitek ILI9805 panel driver [[https://git.kernel.org/linus/edbf1d506ebe8c0857c406bd5d5b81d46ffd8437|commit]] * Add Synaptics R63353 panel driver [[https://git.kernel.org/linus/2e87bad7cd339882cf26b7101a1c87dab71962c9|commit]] * himax-hx8394: Add Panel Rotation Support [[https://git.kernel.org/linus/a695a5009c8fd239a98d98209489997ff5397d2b|commit]] * himax-hx8394: Add Support for Powkiddy X55 panel [[https://git.kernel.org/linus/38db985966d2f0f89f7e1891253489a16936fc5e|commit]] * ilitek-ili9805: add support for Tianma TM041XDHG01 panel [[https://git.kernel.org/linus/b1fcb7ee3707290466b2cc4956325fb91f09f13b|commit]] * ilitek-ili9881c: Add Ampire AM8001280G LCD panel [[https://git.kernel.org/linus/2748848ceaf32671927c3b19672ba3104a1dba7e|commit]] * nv3051d: Add Powkiddy RK2023 Panel Support [[https://git.kernel.org/linus/0aa1cfa3d287930cbecc52cd2b38683a4bf98463|commit]] * nv3052c: Add Fascontek FS035VG158 LCD display [[https://git.kernel.org/linus/bf92f9163097dc717518d598116c1e385004b5ce|commit]] * nv3052c: Add SPI device IDs [[https://git.kernel.org/linus/095e3a99e793767ca6c0483d31fb5d4087966d51|commit]] * simple: Add AUO G156HAN04.0 LVDS display support [[https://git.kernel.org/linus/9e52d5c808215b0033cdbeca72700b1e401ea987|commit]] * simple: Add BOE BP101WX1-100 panel [[https://git.kernel.org/linus/eeaddab4c14beb02157db5ca8f9e074066759bfd|commit]] * st7701: Add Anbernic RG-ARC Panel Support [[https://git.kernel.org/linus/a7890252c1a314654862944cf4733e4333b76e25|commit]] * panfrost * Turn off clocks and regulators in PM [[https://git.kernel.org/linus/57d4e26717b030fd794df3534e6b2e806eb761e4|commit]], [[https://git.kernel.org/linus/4d74420ffcf4c99165908f058066dd242813dc75|commit]], [[https://git.kernel.org/linus/56e76c0179185568049913257c18069293f8bde9|commit]], [[https://git.kernel.org/linus/32f175d4261a2c940fe7913f509f9f41c105b2b6|commit]], [[https://git.kernel.org/linus/889a2b06f823575f4e8def0fe60d294365b0e1f9|commit]], [[https://git.kernel.org/linus/540527b1385fb203cc4513ca838b4de60bbbc49a|commit]] * rockchip * vop2: Add NV20 and NV30 support [[https://git.kernel.org/linus/5fc6aa7db080fd90ef00846aac04e8a211088132|commit]] * Add VOP2 support on rk3588 [[https://git.kernel.org/linus/8c8546546f256f834e9c7cab48e5946df340d1a8|commit]], [[https://git.kernel.org/linus/81a06f1d02e588cfa14c5e5953d9dc50b1d404be|commit]], [[https://git.kernel.org/linus/bebad6bd4fbdc448ad3b337ad281b813e68f6f53|commit]], [[https://git.kernel.org/linus/20529a68307feed00dd3d431d3fff0572616b0f2|commit]], [[https://git.kernel.org/linus/d1f8face0fc1298c88ef4a0479c3027b46ca2c77|commit]], [[https://git.kernel.org/linus/dd49ee4614cfb0b1f627c4353b60cecfe998a374|commit]], [[https://git.kernel.org/linus/075a5b3969becb1ebc2f1d4fa1a1fe9163679273|commit]], [[https://git.kernel.org/linus/c408af1afc4b74ea6df69e0313be97f1f83e981a|commit]], [[https://git.kernel.org/linus/4ccdc92c1fea732fac8f3438d6288719055fa141|commit]], [[https://git.kernel.org/linus/dc7226acacc6502291446f9e33cf96246ec49a30|commit]], [[https://git.kernel.org/linus/5a028e8f062fc862f051f8e62a0d5a1abac91955|commit]], [[https://git.kernel.org/linus/9d7fe7704d534c2d043aff2987f10671a8b4373d|commit]], [[https://git.kernel.org/linus/6c3ab21f37a97a868193ccbeb8a492e51210ff31|commit]] * tidss * Add support for AM62A7 DSS [[https://git.kernel.org/linus/5cc5ea7b6d7b0649b74df1e0f2d1875e683704d9|commit]] * v3d * Introduce CPU jobs [[https://git.kernel.org/linus/780b9463ce66a9efb18e3b5d35cd011fb918d741|commit]], [[https://git.kernel.org/linus/a8ad9d63a160f6b93f6958a5a0ded1a6abb15815|commit]], [[https://git.kernel.org/linus/9032d5f633ed7b5c726971dc7e2372045bf27f40|commit]], [[https://git.kernel.org/linus/8288faaa8b3817c2fcdbacc720527bb8df2b57b1|commit]], [[https://git.kernel.org/linus/6893deb881ab7da1691bd05045ffcc0c806319b9|commit]], [[https://git.kernel.org/linus/464c61e76de851a216e667c91332172c68ffed54|commit]], [[https://git.kernel.org/linus/aafc1a2bea67460c41a289e8bb1e4dc6d016fe11|commit]], [[https://git.kernel.org/linus/c5195d001f4c122032a9ce90c6b88d772673fa35|commit]], [[https://git.kernel.org/linus/1fe0879efc8f623816c7a825d853d2140c88cb2d|commit]], [[https://git.kernel.org/linus/369b05961731925e4a43608ea1e7884df200f0bd|commit]], [[https://git.kernel.org/linus/7c13132c4073628b5fe23b5188ac583a2882a6b0|commit]], [[https://git.kernel.org/linus/18b8413b25b7070fa2e55858a2c808e6909581d0|commit]], [[https://git.kernel.org/linus/9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f|commit]], [[https://git.kernel.org/linus/34a101e64296c736b14ce27e647fcebd70cb7bf8|commit]], [[https://git.kernel.org/linus/6745f3e44a20ac18e7e5a40a3c7f62225983d544|commit]], [[https://git.kernel.org/linus/bae7cb5d68001a8d4ceec5964dda74bb9aab7220|commit]], [[https://git.kernel.org/linus/209e8d2695ee7a67a5b0487bbd1aa75e290d0f41|commit]] * Expose GPU usage stats [[https://git.kernel.org/linus/09a93cc4f7d1893777f6b788bffe60d64e4d5df7|commit]], [[https://git.kernel.org/linus/509433d8146c64ca9e0bcc370ec910821fffe80c|commit]] * module changes for Pi5 [[https://git.kernel.org/linus/1118d10f5e5ab544c489fad4da373f9988416ece|commit]], [[https://git.kernel.org/linus/0ad5bc1ce4634ce9b5eaf017b01399ec5e49a03d|commit]], [[https://git.kernel.org/linus/ebb2f6eea688b9ffa46527c3e7570b2c347497b8|commit]], [[https://git.kernel.org/linus/6fd9487147c4f18ad77eea00bd8c9189eec74a3e|commit]] * Fix cursor planes with virtualized drivers [[https://git.kernel.org/linus/4e3b70da64a53784683cfcbac2deda5d6e540407|commit]], [[https://git.kernel.org/linus/8f7179a1027d89bf949b0b80c388a544a5e096f2|commit]], [[https://git.kernel.org/linus/cd5499429237b7ba3f5bfd3efb488688886c82fe|commit]], [[https://git.kernel.org/linus/305b391d8f84a46119b5554a7a7af775266ce382|commit]], [[https://git.kernel.org/linus/44d877a1de912fa24d1af8f76433a914e6816057|commit]], [[https://git.kernel.org/linus/cc6c535967ed07fd75f54a26a70091826daf691e|commit]], [[https://git.kernel.org/linus/bce3dab7eb6ee596388699e8a052a7d58954c472|commit]], [[https://git.kernel.org/linus/9724ed6c1b1212d138e63f5e80647dc8b6b86696|commit]], [[https://git.kernel.org/linus/4653f9d014117f78813cae7b022c15b899c77d7b|commit]] * Add support for atomic async page-flip [[https://git.kernel.org/linus/0e26cc72c71cb98e951716a6596060cd04b0ba6b|commit]], [[https://git.kernel.org/linus/4b4af74ab9719d17538a97f43137e93296ec7437|commit]], [[https://git.kernel.org/linus/e4d983acffff270ccee417445a69b9ed198658b1|commit]] * simplefb * Add support for generic power-domains [[https://git.kernel.org/linus/92a511a568e44cf11681a2223cae4d576a1a515d|commit]] * Support memory-region property [[https://git.kernel.org/linus/8ddfc01ace51c85a2333fb9a9cbea34d9f87885d|commit]] * fbdev: Remove support for Carillo Ranch driver [[https://git.kernel.org/linus/d9f25b59ed85ae45801cf45fe17eb269b0ef3038|commit]] * intelfb: Remove driver [[https://git.kernel.org/linus/689237ab37c59b9909bc9371d7fece3081683fba|commit]] * fbdev: amba-clcd: Delete the old CLCD driver [[https://git.kernel.org/linus/dee56ccb468a832074397fdbf22bbd9bf6d710aa|commit]] == Storage == * NVMEM cells in sysfs [[https://git.kernel.org/linus/7f38b70042fcaa49219045bd1a9a2836e27a58ac|commit]], [[https://git.kernel.org/linus/4a1a40233b4a9fc159a5c7a27dc34c5c7bc5be55|commit]], [[https://git.kernel.org/linus/ec9c08a1cb8dc5e8e003f95f5f62de41dde235bb|commit]], [[https://git.kernel.org/linus/1b7c298a4ecbc28cc6ee94005734bff55eb83d22|commit]], [[https://git.kernel.org/linus/1172460e716784ac7e1049a537bdca8edbf97360|commit]], [[https://git.kernel.org/linus/fc29fd821d9ac2ae3d32a722fac39ce874efb883|commit]], [[https://git.kernel.org/linus/192048e5a5b6660079ba4fce679e82adc05cfece|commit]], [[https://git.kernel.org/linus/0331c611949fffdf486652450901a4dc52bc5cca|commit]] * nvmem: stm32: add support for STM32MP25 BSEC to control OTP data [[https://git.kernel.org/linus/f0ac5b23039610619ca4a4805528553ecb6bc815|commit]] * Add UFS RTC support [[https://git.kernel.org/linus/9fa268875ca4ff5cad0c1b957388a0aef39920c3|commit]], [[https://git.kernel.org/linus/6bf999e0eb41850d5c857102535d5c53b2ede224|commit]], [[https://git.kernel.org/linus/838f595a567257e3ac0ac33cdb6bb644ca326cc1|commit]] * scsi: ufs: core: Make fault injection dynamically configurable per HBA [[https://git.kernel.org/linus/045da3077bc57e587d0ab4cfc8945b76af03d72d|commit]] * scsi: ufs: qcom: Remove support for host controllers older than v2.0 [[https://git.kernel.org/linus/104cd58d9af80f03993607ac86bcd88c10cfba3d|commit]] * scsi: ufs: ufs-sysfs: Expose UFS power info [[https://git.kernel.org/linus/4f6dd2a4bf378bc4d169296739ea7d6972c0d858|commit]] * scsi: virtio_scsi: Add mq_poll support [[https://git.kernel.org/linus/95e7249691f082a5178d4d6f60fcdee91da458ab|commit]] * scsi: smartpqi: Add new controller PCI IDs [[https://git.kernel.org/linus/c6d5aa44eaf6d119f9ceb3bfc7d22405ac04232a|commit]] * scsi: mpi3mr: Add support for SAS5116 PCI IDs [[https://git.kernel.org/linus/6fa21eab82be57a3ad2470fac27b982793805336|commit]] * scsi: arcmsr: Support new RAID controller ARC-1688 [[https://git.kernel.org/linus/14ef4b001ae77bd6bf8c22b3de255701c23591eb|commit]] * scsi: arcmsr: Support new PCI device IDs 1883 and 1886 [[https://git.kernel.org/linus/41c8a1a1e90fa4721f856bf3cf71211fd16d6434|commit]] * scsi: mpi3mr: Add support for status reply descriptor [[https://git.kernel.org/linus/1193a89d2b6d2673fc2d1f27f8873f02e91e2aab|commit]] * Introduce support for multiqueue (MQ) in fnic [[https://git.kernel.org/linus/2cda90e6f6493622bb68e0dd073c5b5746a480cb|commit]], [[https://git.kernel.org/linus/ca008aeeb02cb15eba4acc6c82e3432a1757b642|commit]], [[https://git.kernel.org/linus/3df9dd0d51c2e4b0c4a400f8ce94308a2d93ef61|commit]], [[https://git.kernel.org/linus/86b86a7d2fdaf989af1aca2a8e7e2380fb4388ad|commit]], [[https://git.kernel.org/linus/8c2a6f815a18f261a03b387cd4236886aad68d7f|commit]], [[https://git.kernel.org/linus/554a1482602099efc9a3d0921a0e8f6123dc09cd|commit]], [[https://git.kernel.org/linus/8a8449ca5e33b96515ea5c46de217e697d249cf9|commit]], [[https://git.kernel.org/linus/b559b827716cadba8b87620ab15e39fe22160cf2|commit]], [[https://git.kernel.org/linus/848d010ab934f1b4326a516396873ddae41db056|commit]], [[https://git.kernel.org/linus/52f6e196e52ef834f928aac297d895f4c32276ea|commit]], [[https://git.kernel.org/linus/c81df08cd2944f89921033e5f1744ae2960f4e69|commit]], [[https://git.kernel.org/linus/55cf715244a7dfda42191445d97628e837158091|commit]], [[https://git.kernel.org/linus/53021c192cc55074eee744cb41dcdfb9318d1f80|commit]] * Remove support for the host aware zoned model [[https://git.kernel.org/linus/77360cadaae562f437b3e98dc3af748d8d75bdc2|commit]], [[https://git.kernel.org/linus/a971ed8002110f211899279cd7295756d263b771|commit]], [[https://git.kernel.org/linus/7437bb73f087e5f216f9c6603f5149d354e315af|commit]], [[https://git.kernel.org/linus/d73e93b4dfab10c80688b061c30048df05585c7e|commit]], [[https://git.kernel.org/linus/5cc99b89785c55430a5674b32ad0d9e57a8ec251|commit]] * nvme: enable retries for authentication commands [[https://git.kernel.org/linus/f9ddefb6c0de771038b041eaad5cc15e61fe283f|commit]], [[https://git.kernel.org/linus/bd2687f2e5940f6ee14bfae787b3c1f5f0574907|commit]], [[https://git.kernel.org/linus/48dae46676d1acb632a3e1e14d02879d57618b5d|commit]] * nvme: allow passthru cmd error logging [[https://git.kernel.org/linus/9f079dda14339ee87d864306a9dc8c6b4e4da40b|commit]] * nvme: implement support for relaxed effects [[https://git.kernel.org/linus/29f6975332479f92233594901c649ff4d71f8cb6|commit]] * nvme: add csi, ms and nuse to sysfs [[https://git.kernel.org/linus/9419e71b8d67312dbe267968b2bec0ebc449dc73|commit]], [[https://git.kernel.org/linus/0372dd4e36171708f90192d5d4a3dcab7159df09|commit]], [[https://git.kernel.org/linus/d386aedc94efe249b0071b0ad969a6bce2e505bd|commit]], [[https://git.kernel.org/linus/83ac678e599f0cee4056594111612946a381fa0b|commit]], [[https://git.kernel.org/linus/a1a825ab6a60380240ca136596732fdb80bad87a|commit]], [[https://git.kernel.org/linus/963929615194d163a25e3b536cd990a05d7e9439|commit]] == Drivers in the Staging area == * Add !StarFive Camera Subsystem driver [[https://git.kernel.org/linus/f5502cd25ac0405740e98e2dcdb9dcd355866e03|commit]], [[https://git.kernel.org/linus/f72f80550d01060a9dda8d0a1c3a7abbf333bc77|commit]], [[https://git.kernel.org/linus/bba185d141b1278728f53d2ebf97214ab023ed07|commit]], [[https://git.kernel.org/linus/b7eedc7d2b9465f8c302cfd7749176bae3f1eddd|commit]], [[https://git.kernel.org/linus/e57854628f585c2b7719433dd008f74285a57ed9|commit]], [[https://git.kernel.org/linus/e080f339c80aedb13ecb5de1e9bdcafdb4bb6652|commit]], [[https://git.kernel.org/linus/1ee1b01b97cd7da9eefba156d33db6ccf10110bb|commit]], [[https://git.kernel.org/linus/ac7da4a73b104589f9fbce0514ff5f84cda99d67|commit]], [[https://git.kernel.org/linus/7ad7d7fb3e69d8d58ffa173bfa6dc74d0a392175|commit]] == Networking == * Bluetooth * Add device 13d3:3572 IMC Networks Bluetooth Radio [[https://git.kernel.org/linus/3600860a719383a228f7c3e2648363d28ae478e2|commit]] * qca: Support HFP offload for QCA2066 [[https://git.kernel.org/linus/ca6d2adf8ded3eb3e64a01f339735c99e6c7260e|commit]] * RDMA/bnxt_re * Share the CQ pages for !GenP7 adapters [[https://git.kernel.org/linus/9b0a7a2cb87d9c430a3588d7d2b6e471200b86ad|commit]], [[https://git.kernel.org/linus/e275919d96693c5ca964b20d73a33d52a7e57f04|commit]] * Initial support for !GenP7 adapters [[https://git.kernel.org/linus/1801d87b3598b173bce3fbf15c5517796f38db96|commit]], [[https://git.kernel.org/linus/a62d685814416647fbb28b3eb2617744adef2d4f|commit]], [[https://git.kernel.org/linus/880a5dd1880a296575e92dec9816a7f35a7011d1|commit]], [[https://git.kernel.org/linus/6027c20dad1ad1da45877151d8b75dc51a928ccd|commit]], [[https://git.kernel.org/linus/cdae3936b2fe7f943e8b5b46f3b3d8446aeb2e0c|commit]], [[https://git.kernel.org/linus/07f830ae4913d0b986c8c0ff88a7d597948b9bd8|commit]] * RDMA/efa: Add EFA query MR support [[https://git.kernel.org/linus/2307157c85096026043ba11f9ad8393c31515c45|commit]] * RDMA/erdma: Add hardware statistics support [[https://git.kernel.org/linus/63a43a675cb90e8a56e9119fff68292561204b27|commit]] * RDMA/hns * Add debugfs to hns RoCE [[https://git.kernel.org/linus/ca7ad04cd5d2f8070cd34c2c428cea36de516afc|commit]] * Support SW stats with debugfs [[https://git.kernel.org/linus/eb7854d63db543caeb8cadb5c3ae5296d0cb7b8f|commit]] * RDMA/mlx5 * Expose c0 and SW encap ICM for RDMA [[https://git.kernel.org/linus/abf8e8f29a3cb6d9c0f599d335f9ad3dcf2dcf11|commit]], [[https://git.kernel.org/linus/eb524d0fd46249b0b9e5d52372dc65d8b32430c3|commit]], [[https://git.kernel.org/linus/d727d27db536faea7178290c677cc0567f647231|commit]] : Support handling of SW encap ICM area [[https://git.kernel.org/linus/a429ec96c07f3020af12029acefc46f42ff5c91c|commit]] * ath10k: add support to allow broadcast action frame RX [[https://git.kernel.org/linus/63b896629353157e8ca77cabdfab340b5c69ca59|commit]] * ath12k: support one MSI [[https://git.kernel.org/linus/1b66601d14161f8128760742236eb26324f04fb9|commit]], [[https://git.kernel.org/linus/604308a34487eaa382c50fcdb4396c435030b4fa|commit]], [[https://git.kernel.org/linus/1f1f7d548a00ebe50808cb1f580df9693e194a7c|commit]], [[https://git.kernel.org/linus/6711b2a80b9a9bf7d10042a526b1f92a5ba69362|commit]], [[https://git.kernel.org/linus/8398654398c2a97d28a3f0cc97e9a1f2e99113b9|commit]], [[https://git.kernel.org/linus/08d52ba2967898723bf6fc57a9fb5dc0018cc5bc|commit]], [[https://git.kernel.org/linus/a3012f206d07fa62b5c2e384cbc3a81a4dbba3c9|commit]] * atmel: remove wext style at76c50x drivers [[https://git.kernel.org/linus/77e49bec64144cf68c494209347ebd762c675194|commit]] * axienet: Introduce dmaengine support [[https://git.kernel.org/linus/6b1b40f704fc39db70098a1908ab2309b29831b6|commit]], [[https://git.kernel.org/linus/6a91b846af85a24241decd686269e8e038eb13d1|commit]] * bnxt_en * Prepare to support new P7 chips [[https://git.kernel.org/linus/aa8460bacf49e06d5024bb26c591b5fda91ca6c1|commit]], [[https://git.kernel.org/linus/e50dc4c2206e3eeed10c799db37bb51bc545f28a|commit]], [[https://git.kernel.org/linus/76087d997a849618935c46a23fa16363be89da68|commit]], [[https://git.kernel.org/linus/035c57615982897da32bdbf311cd025001468f90|commit]], [[https://git.kernel.org/linus/2ad67aea11f256c7ad7bdc66c0521d7ff71dd8da|commit]], [[https://git.kernel.org/linus/b098dc5a3357e5791dd397716737cd8bdfd9a8f5|commit]], [[https://git.kernel.org/linus/6a4d0774f02d61f8c75ffe2e38a8553410fe52e9|commit]], [[https://git.kernel.org/linus/236e237f8ffe77c704cee1e63beb9578922bcc5c|commit]], [[https://git.kernel.org/linus/b9e0c47ee2ec588fa0d0527e62c0405b15ecdb25|commit]], [[https://git.kernel.org/linus/6d1add95536bafe585c500ad8114af7ed4225a0f|commit]], [[https://git.kernel.org/linus/c09d22674b9420abaaaf946bab471c63369c6509|commit]], [[https://git.kernel.org/linus/f94471f3ce74a5fbe2dc5d9687748d9127174eca|commit]], [[https://git.kernel.org/linus/1c7fd6ee2fe4ec6b808d10c8757fb1c76efa4a52|commit]] * Support new 5760X P7 devices [[https://git.kernel.org/linus/08b386b132c61e06e573d6523a8c0c17b90fb8da|commit]], [[https://git.kernel.org/linus/397d44bf17216f7da6ea7c703e9124c065a61697|commit]], [[https://git.kernel.org/linus/a432a45bdba4387b7c511dbbda11ab84b8e767b7|commit]], [[https://git.kernel.org/linus/d3c16475dc06641a52251bc9948c1d3002ea4388|commit]], [[https://git.kernel.org/linus/d846992e6387fa1f2142952fe94a4bff5ee61d30|commit]], [[https://git.kernel.org/linus/8243345bfaec1cdcfd34f83700a19aa241685398|commit]], [[https://git.kernel.org/linus/13d2d3d381ee9844f89bd436ab0f44204660027e|commit]], [[https://git.kernel.org/linus/c2f8063309da9be81679e27cabd4a9dbf9be43cc|commit]], [[https://git.kernel.org/linus/39b2e62be3704d358c2c82eb326ae4b82a23ce1a|commit]], [[https://git.kernel.org/linus/a7445d69809fe33619c451a8bf68d6b9cf335909|commit]], [[https://git.kernel.org/linus/cf47fa5ca5bb095c3d7b8222b959f54d952cf9e5|commit]], [[https://git.kernel.org/linus/30c0bb63c2ea0d7b8a9057afff2317d7b40846b1|commit]], [[https://git.kernel.org/linus/7b60cf2b641a0de8117714dd6653e19a05ab4fda|commit]], [[https://git.kernel.org/linus/047a2d38e40cf37d75548554d6811cb2a305faae|commit]], [[https://git.kernel.org/linus/2012a6abc87657c6c8171bb5ff13dd9bafb241bf|commit]] * Update for net-next [[https://git.kernel.org/linus/f1e50b276d37f21b10c4d122e02a81cd202cde3b|commit]], [[https://git.kernel.org/linus/7fb17a0c18b68b64d0d91480b558089dec017e63|commit]], [[https://git.kernel.org/linus/18fe0a383cca78cfb183f83f947e75bebc7b3a20|commit]], [[https://git.kernel.org/linus/f12f551b5b966ec58bfba9daa15f3cb99a92c1f9|commit]], [[https://git.kernel.org/linus/6dea3ebe0d226e021970f3552ed37fdcedca8773|commit]], [[https://git.kernel.org/linus/297e625bf89e78c5c1c74c571c5f4315bebc67e6|commit]], [[https://git.kernel.org/linus/e6f8a5a8ecc93aeead0fbd372018a4780585a525|commit]], [[https://git.kernel.org/linus/77b0fff55dcd34b41d879ab20d3c13cfc9672179|commit]], [[https://git.kernel.org/linus/960096334417d841593f848323a35ff6c7dacffe|commit]], [[https://git.kernel.org/linus/6ce30622547d54eb47cdf55609ad68590c314b50|commit]], [[https://git.kernel.org/linus/feeef68f6f3d21a1ebda7eb00d4f7aa5423d17be|commit]], [[https://git.kernel.org/linus/84793a499578a5447b90b298aa8ac4fd314f6f9f|commit]], [[https://git.kernel.org/linus/056bce63c469ca397e30d16bdbd4408489f089a9|commit]] * Add basic ntuple filter support [[https://git.kernel.org/linus/992d38d2b988a7d71c2416dad9af2b769f51ac25|commit]], [[https://git.kernel.org/linus/1f6e77cb9b328f2ec145e73be97cab6fec838678|commit]], [[https://git.kernel.org/linus/bfeabf7e4615bf3076937be36456906b4597c64c|commit]], [[https://git.kernel.org/linus/96c9bedc755ed1fa6e35d37328ddbcb439c93c4c|commit]], [[https://git.kernel.org/linus/d3c982851c15ff1c5187a6188710daa7d0db7fe4|commit]], [[https://git.kernel.org/linus/cb5bdd292dc01f42dd4ecebda203e2161a901c6f|commit]], [[https://git.kernel.org/linus/ee908d05dd2acd89f5c0625535ef415fd89eb6aa|commit]], [[https://git.kernel.org/linus/59cde76f33fa4ae5cdc7f51ce87bab9e531ca183|commit]], [[https://git.kernel.org/linus/80cfde29ce1fab7f2cedd259e335f3bc725118d2|commit]], [[https://git.kernel.org/linus/4faeadfd7ed67dc004d292bc3a9557f3c64fae9f|commit]], [[https://git.kernel.org/linus/300c191800987a3de3422dad424601d5493041c7|commit]], [[https://git.kernel.org/linus/c029bc30b9f6661932ee38e4bba3e8da137a579d|commit]], [[https://git.kernel.org/linus/8d7ba028aa9ab6570fe233ae026b3609b46f1eb7|commit]] * TX path improvements [[https://git.kernel.org/linus/34eec1f29a5998305578fcc3e55d491a1795b56d|commit]], [[https://git.kernel.org/linus/7f0a168b0441ef7fd6b46563efb2706c58ac2a4c|commit]], [[https://git.kernel.org/linus/d1eec614100c25b96b672b50d3125ba3d120b682|commit]], [[https://git.kernel.org/linus/7845b8dfc7136752cdffe2acde43fa892ab4f0e0|commit]], [[https://git.kernel.org/linus/9c0b06de6fb6f3b5871011aae19305b40084e037|commit]], [[https://git.kernel.org/linus/ebf72319cef6e1c038e13bd4c9e3f0ad857e57ff|commit]], [[https://git.kernel.org/linus/5a3c585fa83f9172848c19b1000c6ad3c8b36129|commit]], [[https://git.kernel.org/linus/877edb347323b669c5c9511cc9e097e1192dd31b|commit]], [[https://git.kernel.org/linus/0589a1ed4d334c156110f7f42ad7c39a02761438|commit]], [[https://git.kernel.org/linus/f5b29c6afe369f5f2ee3966a332b9e8f70609933|commit]], [[https://git.kernel.org/linus/f07b58801befb2a9449f9cdc6a379c707ba7a35c|commit]], [[https://git.kernel.org/linus/ba098017791eb8a0782b373d4cee0d82eb2f660e|commit]], [[https://git.kernel.org/linus/c1056a59aee1d352c7113c2cba4d214bf5f195af|commit]] * bnxt: link NAPI instances to queues and IRQs [[https://git.kernel.org/linus/e3b57ffdb3256e4ff2cf83be0dc076c4b07f92b9|commit]] * dsa: mv88e6xxx: Add "eth-mac" and "rmon" counter group support [[https://git.kernel.org/linus/d624afaf4c792457d5ffa0037156f66cdfc1df18|commit]], [[https://git.kernel.org/linus/3def80e52db3ab5e1097b13a87a7a65b909630d3|commit]], [[https://git.kernel.org/linus/fc82a08ae795ee6b73fb6b50785f7be248bec7b5|commit]], [[https://git.kernel.org/linus/5780acbd249911fa101c53f3616d0aec5906211e|commit]], [[https://git.kernel.org/linus/0e047cec779697764af371df3db2a3e6d865c185|commit]], [[https://git.kernel.org/linus/ceea48efa35839ed3ddebb7fe9c00308fbf6d9cd|commit]], [[https://git.kernel.org/linus/394518e3c119dac737a363cd9d3ad9c70246521e|commit]], [[https://git.kernel.org/linus/00e7f29d9b895cbee58b7071900dd52ed6dcec1e|commit]] * etheram65-cpsw: Add standard Ethernet MAC stats to ethtool [[https://git.kernel.org/linus/67372d7a85fcdb9761194f70c88aa3fab0ce1449|commit]] * ethercortina: Drop TSO support [[https://git.kernel.org/linus/ac631873c9e7a50d2a8de457cfc4b9f86666403e|commit]] * ethermtk_wed: add support for devices with more than 4GB of dram [[https://git.kernel.org/linus/31c54867fdea452023cc5faba939a6afec1b9d7e|commit]] * am65-cpsw: Add mqprio, frame preemption & coalescing [[https://git.kernel.org/linus/2491d66ae66cdd761c38563e17940a707d1b5e91|commit]], [[https://git.kernel.org/linus/c8659bd9d1c09300c6a30734d781096c1530c234|commit]], [[https://git.kernel.org/linus/c92b1321bbf3cd1285113838b45a9e3ea8a149b9|commit]], [[https://git.kernel.org/linus/d0f9535b3182d4a918f5db01ea61b43c736463a7|commit]], [[https://git.kernel.org/linus/5db81bdc486da96cfbc6d2181dcdc91bacafc57b|commit]], [[https://git.kernel.org/linus/1374841ad47724217f6e36510f7455602bd4bc90|commit]], [[https://git.kernel.org/linus/8f5a7561069853166cd735e46c449f203d61bf18|commit]], [[https://git.kernel.org/linus/bc8d62e16ec2f721f4edea12f2bbcf21405f43fa|commit]], [[https://git.kernel.org/linus/49a2eb90682469a7b171be79b2939e26091ce221|commit]], [[https://git.kernel.org/linus/e4918f9d48823ea184534848d32a61a4fc02753f|commit]] * iavf: enable symmetric-xor RSS for Toeplitz hash function [[https://git.kernel.org/linus/4a3de3fb0eb6897488dd510006abd9673f1fb34c|commit]] * ice * Intel Wired LAN Driver Updates 2024-01-02 [[https://git.kernel.org/linus/00d50001444ef5c75c8ab476a6674708f3ff613b|commit]], [[https://git.kernel.org/linus/82e71b226e0ef770d7bc143701c8b4960b4eb3d5|commit]], [[https://git.kernel.org/linus/aa4967d8529c8daea85303bcb546fc1b70c4d6ba|commit]], [[https://git.kernel.org/linus/2a2cb4c6c18130e9f14d2e39deb75590744d98ef|commit]], [[https://git.kernel.org/linus/f9f9de23dc88670564a8e2448750d88398ea3555|commit]], [[https://git.kernel.org/linus/b8ab8858190a1bba5f4b35ca37b1e4d7577b3a75|commit]], [[https://git.kernel.org/linus/3027e7b15b02d2d37e3f82d6b8404f6d37e3b8cf|commit]] * Intel Wired LAN Driver Updates 2023-12-01 [[https://git.kernel.org/linus/4da71a77fc3be1fcb680c8d78e1a1fb8017905ad|commit]], [[https://git.kernel.org/linus/b86455a1cbef6829e8da3f93d37a233be2616569|commit]], [[https://git.kernel.org/linus/e9fd08a9a7fb98000757ca1971271ec846ea3065|commit]], [[https://git.kernel.org/linus/1cc5b6eaad92d69fe4d84bbee5c12ee297d56296|commit]], [[https://git.kernel.org/linus/712e876371f8350c446a33577cf4a0aedcd4742a|commit]], [[https://git.kernel.org/linus/a39dd252d552ab3212fea55330081ee64a9e5573|commit]] * Add CGU info to devlink info callback [[https://git.kernel.org/linus/b86455a1cbef6829e8da3f93d37a233be2616569|commit]] * add-fwlog-v2-debugfs [[https://git.kernel.org/linus/1953fc720e603721764f31daae216a2851664167|commit]], [[https://git.kernel.org/linus/96a9a9341cdaea0c3bce4c134e04a2a42ae899ac|commit]], [[https://git.kernel.org/linus/73671c3162c83a689342fd57f00b5f261682e49b|commit]], [[https://git.kernel.org/linus/9d3535e71985beb738c4ad2b772c6f0efdce0202|commit]], [[https://git.kernel.org/linus/d96f04e05f2634b2dea3cdfc9651f5704d829292|commit]] * XDP metadata via kfuncs for ice + VLAN hint [[https://git.kernel.org/linus/9244384e811ecff6b05290ccf82a2540feaa7214|commit]], [[https://git.kernel.org/linus/3310aad20defb96eaf363ab2643e876a6275c72b|commit]], [[https://git.kernel.org/linus/6b62a42149032db305dfd687d7118aa870b4a2f9|commit]], [[https://git.kernel.org/linus/d951c14ad237b087f0d1377c44932fcc0b322c40|commit]], [[https://git.kernel.org/linus/9031d5f491b95710a1cf871818c7c9730ec50a1b|commit]], [[https://git.kernel.org/linus/0e6a7b09597011985d7aad3b747c43e9b2a43555|commit]], [[https://git.kernel.org/linus/b4e352ff1169ebce930c734630f9587b1677d163|commit]], [[https://git.kernel.org/linus/d68d707dcbbf6a9cfe378fc2eb3ffffd5b47727e|commit]], [[https://git.kernel.org/linus/e6795330f88b4f643c649a02662d47b779340535|commit]], [[https://git.kernel.org/linus/714ed949c6f3ebdff562bd9eb7247abf6a79a416|commit]], [[https://git.kernel.org/linus/b591137c4ec35ed3f8478f5bb69a22ef4834f04a|commit]], [[https://git.kernel.org/linus/fca783799f64ac0a4f20228ff6a6d7598db11e64|commit]], [[https://git.kernel.org/linus/537fec0733c4a72e2a2b69fee365459c5b75d92e|commit]], [[https://git.kernel.org/linus/7978bad4b6b9265a1e808a5f679ee428d1dd6523|commit]], [[https://git.kernel.org/linus/e71a9fa7fdb2effcaaed37c207ec4f634c8f4901|commit]], [[https://git.kernel.org/linus/8e68a4beba943bdffb342c601c649223f44b7329|commit]], [[https://git.kernel.org/linus/a3850af4ea25dadc8b35edf132340907d523657e|commit]], [[https://git.kernel.org/linus/4c6612f6100c2d85212865dbd1a5d8a7e391d3cb|commit]] * idpf: add get/set for Ethtool's header split ringparam [[https://git.kernel.org/linus/9b1aa3ef2328aeef35b388c4c22323eaa792c1aa|commit]] * igc: Add support for PTP .getcyclesx64() [[https://git.kernel.org/linus/069b142f58196bd9f47b35e493255741e2c663c7|commit]] * ipa: add IPA v5.5 support [[https://git.kernel.org/linus/dd043b393c8536574a95c567c49d237c4c604699|commit]], [[https://git.kernel.org/linus/b134b10cf5bbe82f10b9d6e14098e98c2782fcd0|commit]], [[https://git.kernel.org/linus/b00e190cc2000aea4622202d8f081d28ab4bbe41|commit]], [[https://git.kernel.org/linus/1bfeafabcd5e95424cf1ce910f04507f26b14702|commit]], [[https://git.kernel.org/linus/7c59294076204cc8f51f794b6c2e7675c8ad12cd|commit]] * iwlmvm: add a debugfs hook to clear the monitor data [[https://git.kernel.org/linus/268712dc3b344f3a835211e5846e6ebfd7a13cbd|commit]] * ixgbe: report link state for VF devices [[https://git.kernel.org/linus/738808ae82d908e5ef4bd025999d44510c0710a7|commit]] * mac80211_hwsim: support HE 40 MHz in 2.4 GHz band [[https://git.kernel.org/linus/ce10e8653f8b6569ea5d4f96917b5eaee7437072|commit]] * mana: Add remaining GDMA stats for MANA to ethtool [[https://git.kernel.org/linus/e1df5202e879bce09845ac62bae30206e1edfb80|commit]] * dpll: expose fractional frequency offset value to user [[https://git.kernel.org/linus/8a6286c1804e2c7144aef3154a0357c4b496e10b|commit]], [[https://git.kernel.org/linus/e6d86938a40a60adaffad170914380b886c029f8|commit]], [[https://git.kernel.org/linus/f035dca34ede00d667a3e2d16e1c731161eeacec|commit]] * mlx5 * Expose c0 and SW encap ICM for RDMA [[https://git.kernel.org/linus/1ca51628e7303718fdabe29c7d36f582500d5cf2|commit]], [[https://git.kernel.org/linus/a429ec96c07f3020af12029acefc46f42ff5c91c|commit]], [[https://git.kernel.org/linus/abf8e8f29a3cb6d9c0f599d335f9ad3dcf2dcf11|commit]], [[https://git.kernel.org/linus/eb524d0fd46249b0b9e5d52372dc65d8b32430c3|commit]], [[https://git.kernel.org/linus/d727d27db536faea7178290c677cc0567f647231|commit]] * updates 2023-12-13 [[https://git.kernel.org/linus/13049408a4bd29c92227ca2d6befab80dbb96663|commit]], [[https://git.kernel.org/linus/f5e956329960903d908668d7a20bbc08e0a8b92b|commit]], [[https://git.kernel.org/linus/dc6981ebc922e50798f3f080dfa53ac210109533|commit]], [[https://git.kernel.org/linus/3c9c34c32bc653a8992fef7d525889254d90b307|commit]], [[https://git.kernel.org/linus/249e521741de23c0103d5ffd19b1fb1181575041|commit]], [[https://git.kernel.org/linus/b25bd37c859f32e50a436ab9d2078b76e433008e|commit]], [[https://git.kernel.org/linus/c909eec537ce18e779f781f1763d1d1c991419e8|commit]], [[https://git.kernel.org/linus/b1a33e65134786b9ef97f978572531c6004c8526|commit]], [[https://git.kernel.org/linus/db52aa6df8559759f0c0dc2cd5e4da0cc54d8f65|commit]], [[https://git.kernel.org/linus/9bb1ac80738a699d911684a67333d9cc8a95739a|commit]], [[https://git.kernel.org/linus/952f9a5f4b0904255ef3dfa58f325fa3e5f045fb|commit]] * mlxsw * Preparations for support of CFF flood mode [[https://git.kernel.org/linus/8405d6626289160fcd21b0f0c827144556be52be|commit]], [[https://git.kernel.org/linus/50ee67789b823ffb052f3be20349c05c30bee2e6|commit]], [[https://git.kernel.org/linus/2d19da9277199ec69b555ca32042be2a7cd493c6|commit]], [[https://git.kernel.org/linus/e1e4ce6c6d54ff206e55bd8c89c00bfee891458c|commit]], [[https://git.kernel.org/linus/7eb902954b624ee338303ad735235429e036b31b|commit]], [[https://git.kernel.org/linus/642d6a2033d85797e0f8807d0e48bb007d5e73ca|commit]], [[https://git.kernel.org/linus/446bc1e9dec63b419751b8bdecba06fee631672e|commit]], [[https://git.kernel.org/linus/6b10371c386c381651e2ea42ae11be6c35004b55|commit]], [[https://git.kernel.org/linus/09591595686750b68c6d40c5349e737d78f6da47|commit]], [[https://git.kernel.org/linus/9aad19a363f68470ac5af677cda7120393e94a06|commit]], [[https://git.kernel.org/linus/b51c876c2297f8b32ca579712e3ab1490114d1ee|commit]], [[https://git.kernel.org/linus/2b7bccd1f167aa056206cc2551514b35c9fd30ab|commit]], [[https://git.kernel.org/linus/27851dfaa3d608ae13557a2684a0bd5e2aa5bff1|commit]], [[https://git.kernel.org/linus/f7ebb4023765e728a984c628fb6b929db2a3f76b|commit]] * Support CFF flood mode [[https://git.kernel.org/linus/01de00f439ab4989feec68c193c87479d7f1202a|commit]], [[https://git.kernel.org/linus/ab68bd743af8d4e9efd21c570acb7bee65bb47ce|commit]], [[https://git.kernel.org/linus/82ff7a196d76a04cf437ac0469ac9e9b84110b13|commit]], [[https://git.kernel.org/linus/17eda112b0d8e282e310f720aed2acda4fbd3317|commit]], [[https://git.kernel.org/linus/1d0791168ef7a31780c5f9dc65cbdb044b7e859c|commit]], [[https://git.kernel.org/linus/80638da22e11164e6833f8697ad94136e0a6cdd5|commit]], [[https://git.kernel.org/linus/1686b8d902fd4f1486b21304a62d469fd3713019|commit]], [[https://git.kernel.org/linus/e917a789594cab0621b19ab33cae298f2bce2ea3|commit]], [[https://git.kernel.org/linus/f6454316c8b9b247403b7dadc1c5b6e6f5163f0c|commit]], [[https://git.kernel.org/linus/a59316ffd92e62f0660a066aa4011378f0c857bd|commit]], [[https://git.kernel.org/linus/315702e09bed79f0c9f8d198f3268a2a1fc4d5ca|commit]], [[https://git.kernel.org/linus/5e6146e34b9c3b198f1681dc0da40df8bf05bfe4|commit]], [[https://git.kernel.org/linus/af1e696fdf1e588ac0153cc8dff70b5a10a2e220|commit]], [[https://git.kernel.org/linus/d79b70dbb76001e51a287d0f7430009068e1e55e|commit]], [[https://git.kernel.org/linus/db3e541b59e2a9d7e57b23451a6e59f395aa1258|commit]], [[https://git.kernel.org/linus/72a4cedb3760ff66446a1a4d006315aad79d573f|commit]], [[https://git.kernel.org/linus/69f289e9c72afc8439b5ad83dd8c46803a097657|commit]] * Add support for new reset flow [[https://git.kernel.org/linus/526dd6d7877b80b1f56d87156b65b8227c69d59f|commit]], [[https://git.kernel.org/linus/e21c52d7814f5768f05224e773644629fe124af2|commit]], [[https://git.kernel.org/linus/c8d0a7d6152bec970552786b77626f4b4c562f4d|commit]], [[https://git.kernel.org/linus/d32c38256db30a2d55b849e2c77342bc70d58c6e|commit]], [[https://git.kernel.org/linus/bf6b200bc80d18480f8d0fb61e185bb0587e633c|commit]], [[https://git.kernel.org/linus/527a07e176eab0f61b1beec9e29b99c9a5ec219f|commit]], [[https://git.kernel.org/linus/3ed48c80b28d8dcd584d6ddaf00c75b7673e1a05|commit]], [[https://git.kernel.org/linus/0a5ef95923e01aa93210d22e0d62d66b601238d7|commit]], [[https://git.kernel.org/linus/e6dbab40fa096ed5e882e25cab54c3bdad57762c|commit]], [[https://git.kernel.org/linus/bdf85f3a695ff8b9709658e576299fa5a3f6326d|commit]], [[https://git.kernel.org/linus/8d9da4672f94b4914d3b9318d911bfd1fcbfc9a1|commit]], [[https://git.kernel.org/linus/f257c73e53561f6c223c4bce883138e9f18b5f50|commit]] * mt76 * mt7921: support per-device regulatory settings * mt7996: add TX statistics for EHT mode in debugfs [[https://git.kernel.org/linus/0afb228d9bd439088d2d1d58bae7295340000e27|commit]] * mt7996: add wed support [[https://git.kernel.org/linus/b92158a8dc413d0facaf0d807c66f76a6865c93c|commit]], [[https://git.kernel.org/linus/5f60735c08ce3dd368d30bb3b1addf7149cb664c|commit]], [[https://git.kernel.org/linus/ac4659856c22440e2ad208928a3c5911ac364a54|commit]], [[https://git.kernel.org/linus/132d74d31e86130b4e8b8c5d7bfe05c227d989d6|commit]], [[https://git.kernel.org/linus/2e420b88ca86e3322b36793f12d8fd2bff5ed57d|commit]], [[https://git.kernel.org/linus/af8d2af57584762ef2727831ffca01036ca5bd40|commit]], [[https://git.kernel.org/linus/83eafc9251d6d30574b629ac637c56d168fcbdd9|commit]], [[https://git.kernel.org/linus/5bb7a655045ebc023f421c13c2156fcd478185bc|commit]], [[https://git.kernel.org/linus/b8b36f47070f47dbfd3dc8eb0b674d6103306935|commit]], [[https://git.kernel.org/linus/950d0abb5cd94f2b0710c5c42ac4398c91a7ff22|commit]], [[https://git.kernel.org/linus/d4b85aff3ab32fbfde026090c47829e83a0422cc|commit]], [[https://git.kernel.org/linus/00d2ced0deb3b75177f634b2e7c0c87dca7d747e|commit]] * Add MT7992 support [[https://git.kernel.org/linus/1e1e563fe3bd2ad9252a98c24d55bb3f3a06990e|commit]], [[https://git.kernel.org/linus/a63b75aac8468e7216930c698d5676259afb44fd|commit]], [[https://git.kernel.org/linus/9fe6690b8bef58848294bf5de9c6c31748e11941|commit]], [[https://git.kernel.org/linus/50fbebf6a151bc70c43ffab1f884aa510d548d7e|commit]], [[https://git.kernel.org/linus/2cbbefdc5c9ccf5911b41dca43d2d1533c160f4e|commit]], [[https://git.kernel.org/linus/8df63a4bbe3d89ad24e07f952ccaa8702af937f2|commit]], [[https://git.kernel.org/linus/408566db8cad2788356ccd75e946c236ba381bc2|commit]], [[https://git.kernel.org/linus/3d3f117a259a65353bf2714a18e25731b3ca5770|commit]] * mvmdio: Support setting the MDC frequency on XSMI controllers [[https://git.kernel.org/linus/eb6a6605ff5a2b2ad2ceada49bba2464f6ad26a4|commit]] * mvpp2: add support for mii [[https://git.kernel.org/linus/1b666016d0ad4a879dcd3d9188635ad68c4b16ce|commit]] * nfp * Add flow-steering support [[https://git.kernel.org/linus/9eb03bb1c035ff6e2c3a34046419446588253dda|commit]], [[https://git.kernel.org/linus/c38fb3dcd53dbfc68eb429e8ecb0ec795f0d6ba1|commit]] * ethtool: expose transmit SO_TIMESTAMPING capability [[https://git.kernel.org/linus/7453d7a633d020d2481cfedbcfcab6dab89ee194|commit]] * ethtool: support TX/RX pause frame on/off [[https://git.kernel.org/linus/4540c29ab9cc06d9c910e98ff9b13a06f7a3fd21|commit]] * nfp * Support UDP segmentation offload [[https://git.kernel.org/linus/18c5c0a845b3fd834e6a3f5d7f2cbf336e23e918|commit]] * octeon_ep * Support OCTEON CN98 devices [[https://git.kernel.org/linus/b77e23f1b03e4e9a5940bb52d0480a5098a44c1d|commit]], [[https://git.kernel.org/linus/068b2b649fc1fa340b53114350457d40b31aeedb|commit]] * Support Octeon CN10K devices [[https://git.kernel.org/linus/0807dc76f3bf500f9a22465eedd2290da7357efb|commit]] * Add PF-VF mailbox support [[https://git.kernel.org/linus/cde29af9e68e757824821d290842fbceeae11f88|commit]], [[https://git.kernel.org/linus/c130e589d50bbf43eb77d45b806b38cf95e2bad9|commit]], [[https://git.kernel.org/linus/e28db8cbeba3a55dfaf43554d2c2ce05da6f4a04|commit]], [[https://git.kernel.org/linus/4ebb86a97ceb948b32cbeafb598617a6c8748376|commit]] * octeontx2-af: Add new devlink param to configure maximum usable NIX block LFs [[https://git.kernel.org/linus/dd7842878633453e38d6a4927593dd28b9d8ab91|commit]] * octeontx2: Multicast/mirror offload changes [[https://git.kernel.org/linus/51b2804c19cd79e9e4ee384a37796a1d243b8f3d|commit]], [[https://git.kernel.org/linus/df094d8fe886b31e7c648cca8bf401062ef1c049|commit]], [[https://git.kernel.org/linus/a8d4879d5f1fac060719567d1a8e8f8e68a127fc|commit]] * phy * Add support for the DP83TG720S Ethernet PHY [[https://git.kernel.org/linus/cb80ee2f9bee1502e805acff64e2133e254ec240|commit]] * Add Rust Asix PHY driver [[https://git.kernel.org/linus/cbe0e415089636170aa6eb540ca4af5dc9842a60|commit]] * adin: allow control of Fast Link Down [[https://git.kernel.org/linus/cb2f01b856eaef26ba2263f8c3b87ab5e1ea587d|commit]] * aquantia: add firmware load support [[https://git.kernel.org/linus/e93984ebc1c82bd34f7a1b3391efaceee0a8ae96|commit]] * at803x: add support for cdt cross short test for qca808x [[https://git.kernel.org/linus/ea73e5ea442ee2aade67b1fb1233ccb3cbea2ceb|commit]] * Add MACsec support for TJA11XX C45 PHYs [[https://git.kernel.org/linus/b1c036e835b67320316e20e562cc3b4daf8fa08b|commit]], [[https://git.kernel.org/linus/eb97b9bd38f93ab7cab0be2a36a7f6180c004ac2|commit]], [[https://git.kernel.org/linus/25a00d0cd691562f43a0a4b008214405e76d067f|commit]], [[https://git.kernel.org/linus/a73d8779d61ad99b966c932a1715bd4d9006a9de|commit]], [[https://git.kernel.org/linus/a868b486cb886ef73c9b4f77b8103669c83a4515|commit]], [[https://git.kernel.org/linus/31a99fc06b0b454642997f9d2e87ff5d393816ca|commit]], [[https://git.kernel.org/linus/dc1a00380aa6cc24dc3709ee50a22d1e24cd3673|commit]] * r8169: add support for LED's on RTL8168/RTL8101 [[https://git.kernel.org/linus/18764b883e157e28126b54e7d4ba9dd487d5bf54|commit]] * rswitch: Add jumbo frames support [[https://git.kernel.org/linus/c7e0022390d43788f63c7021ad441c1f8d9acf5f|commit]], [[https://git.kernel.org/linus/8857034184538ca92b0e029f6f56e5e04f518ad2|commit]], [[https://git.kernel.org/linus/6a203cb5165d2257e8d54193b69afdb480a17f6f|commit]], [[https://git.kernel.org/linus/271e015b91535dd87fd0f5df0cc3b906c2eddef9|commit]], [[https://git.kernel.org/linus/fcff581ee43078cf23216aa7079012e935a6a078|commit]], [[https://git.kernel.org/linus/9c90316a1170dd6ee1e620d28f6101f85bbaaa10|commit]], [[https://git.kernel.org/linus/933416cc59b18ef82ea7895c4ca58be3d92d3b3c|commit]], [[https://git.kernel.org/linus/d2c96b9d5f83e4327cf044d00d7f713edd7fecfd|commit]], [[https://git.kernel.org/linus/c71517fe7353d2cbfbf2e305b282bf23c1750e29|commit]] * rtl8xxxu: Add additional USB IDs for RTL8192EU devices [[https://git.kernel.org/linus/4e87ca403e2008b9e182239e1abbf6876a55eb33|commit]] * rtw89 * Add PCI DMA and interrupt stuff for !WiFi 7 chips [[https://git.kernel.org/linus/d5d717a776405107c24a41116af18c7176197210|commit]], [[https://git.kernel.org/linus/d720cca762ed58a5d811b40a5525066329d3641a|commit]], [[https://git.kernel.org/linus/9e1aff437a560cd72cb6a60ee33fe162b0afdaf1|commit]], [[https://git.kernel.org/linus/aa70f76120ee4e67b1ba90a2e2ec1fea595cf108|commit]], [[https://git.kernel.org/linus/d8872fb60e720ed656e03883e9bed576a72e0006|commit]], [[https://git.kernel.org/linus/9f08c77b776976a6eabd9678d77ff9ab4ff4233e|commit]], [[https://git.kernel.org/linus/0a78bb64a49995c7377b1d716bbff7a9d92212cb|commit]] * adjust mac init code to support !WiFi 7 chips [[https://git.kernel.org/linus/efde4f6dd13acd22f9dfb2faaea0f8c08d4e94ad|commit]], [[https://git.kernel.org/linus/f20b2b7d3f1b1dd008955f42655d0620daf714a3|commit]], [[https://git.kernel.org/linus/cfb99433662c08f7e19f9c7a05d6e71607d81522|commit]], [[https://git.kernel.org/linus/fc663fa02532be3206e8f8c85725ab3d010305f9|commit]], [[https://git.kernel.org/linus/293f7bdca2692e183676493d11759b42c9c8a258|commit]], [[https://git.kernel.org/linus/48fa9b61ae1692befb7e3661e8e708c2ba16f536|commit]] * coex: improve BT-coexistence performance for 8852B and 8851B [[https://git.kernel.org/linus/acc55d7dd4de525ac07e43e90ea3cc630677ec8a|commit]], [[https://git.kernel.org/linus/e9ff8a96e3aa661d793139362b0ee852360fa36a|commit]], [[https://git.kernel.org/linus/21aa791b4367e9cd1473d5b81e70739ca48a2bd4|commit]], [[https://git.kernel.org/linus/07912ecb3eb2a5c30d8b7d5285ef2304006377b9|commit]], [[https://git.kernel.org/linus/3ac4b57ca12d5baaedd0d1a0cd532fa50911eaf0|commit]], [[https://git.kernel.org/linus/94fb737042c1c850c138eef7c661c3ea1d18ccab|commit]], [[https://git.kernel.org/linus/0c1829dc7a5d0a9f7df952c543a5c86820d557c7|commit]], [[https://git.kernel.org/linus/221a72f73888f8de603e70bdda394d0fc110be2a|commit]], [[https://git.kernel.org/linus/6e5cf39f3107f9f21e3b4b9ee243897cd946473e|commit]], [[https://git.kernel.org/linus/c744f523cecb4e7d036cd458946e7bb0e1ca5634|commit]], [[https://git.kernel.org/linus/28a197af3fcbb47195d94cd6e612d9338aac9345|commit]] * fw: extend program counter dump for Wi-Fi 7 chip [[https://git.kernel.org/linus/c5ece8d84303c1956b18d2aba03c4b4fc856f53e|commit]], [[https://git.kernel.org/linus/2a68a27cd27aeb09dc74d9d800758ba0b36cb230|commit]], [[https://git.kernel.org/linus/eeb8cbb58b82904442a6c05832b97d7d27b3c48b|commit]], [[https://git.kernel.org/linus/6f8d36552bab7dc83d8aba89311d6039c53eb6a1|commit]], [[https://git.kernel.org/linus/db7fac15eaf0f09d675730d7002edabe27fe9e1d|commit]] * phy: add dynamic EDCCA mechanism [[https://git.kernel.org/linus/77abbabaafe5d14ed033adb6969c54d42faf67f0|commit]], [[https://git.kernel.org/linus/0bb185257de6043857498d29fd5c7aae3acb1d45|commit]], [[https://git.kernel.org/linus/d371c3aa35fd2dc8d77d4be6db2e3d573f4a9704|commit]], [[https://git.kernel.org/linus/9f4dee32b783955f35b74609241db76f625f2ec3|commit]] * Add 8922AE PCI entry and used functions [[https://git.kernel.org/linus/73b479fe5f4ad5391f69502930c1f782b4c6182f|commit]], [[https://git.kernel.org/linus/0b79c540b13506b727fcd2b689fec99dc4fc51c6|commit]], [[https://git.kernel.org/linus/0dc9324206d3856a657cb076d78c8cc015fb57c8|commit]], [[https://git.kernel.org/linus/58534b3be0ca4e73a652a4e63f9f5ee80a6cf891|commit]] * 8922a: add 8922A basic info and efuse stuff [[https://git.kernel.org/linus/c0a04552e36e1bac2bdf862342ddfbbfd65aae52|commit]], [[https://git.kernel.org/linus/88e6a923bbfbdd4fd2e92ff50902251884927dac|commit]], [[https://git.kernel.org/linus/f28eab6ae4ff016d01226364c9099d4eacffbb1a|commit]], [[https://git.kernel.org/linus/e102ff4b3579016361f092027782f1a3a7fa2055|commit]], [[https://git.kernel.org/linus/c7ccb2402ebb567016b09bf50e225066c72a9c09|commit]], [[https://git.kernel.org/linus/52471877a2e7211603f57c74102e8ba2aa06fe48|commit]] * Add mac init functions for !WiFi 7 chips [[https://git.kernel.org/linus/694c626bcfe2525142635a3d24edb6509943f2d8|commit]], [[https://git.kernel.org/linus/bad7aaef31162ed71c469a38f7636ec8c8fb9306|commit]] * 8922a: configure hardware engines and quota for WiFi 7 chips [[https://git.kernel.org/linus/fdb3bb0af2599f780ea7dd04a13b610b70d65a3f|commit]], [[https://git.kernel.org/linus/cecf1643145a3a5980aff221e7b5ca8f90efa1cf|commit]], [[https://git.kernel.org/linus/aabe741e2d18a3a28b0f08c53b7a81374c0690b0|commit]], [[https://git.kernel.org/linus/2706cb25028dd27471e25047bcc3e5df73644a4a|commit]], [[https://git.kernel.org/linus/27ea6be913f42ebeecac43916be3ed43025b2dca|commit]], [[https://git.kernel.org/linus/0d16d8fbffb3fec128ec563b6f8cd512ebcec315|commit]], [[https://git.kernel.org/linus/39e9b5691921a886e19c80be47f492efef14d00f|commit]], [[https://git.kernel.org/linus/1dd1dc262afacb99e66ebdc174e7b11f51a816ab|commit]] * idpf: add get/set for Ethtool's header split ringparam [[https://git.kernel.org/linus/50d73710715de7d1a2c88194562f520816af9c2a|commit]], [[https://git.kernel.org/linus/9b1aa3ef2328aeef35b388c4c22323eaa792c1aa|commit]] * sfc: Implement ndo_hwtstamp_(get|set) [[https://git.kernel.org/linus/1ac23674a971d8596648695f72168815c3f52e11|commit]], [[https://git.kernel.org/linus/d82afc800c1e385205da9618f75369843e856e7a|commit]] * smsc95xx: add support for SYS TEC USB-SPEmodule1 [[https://git.kernel.org/linus/45532b21dc2a692444b6ad5f71c253cca53e8103|commit]] * stmmac: EST implementation [[https://git.kernel.org/linus/58f3240b3b93f880cae759ec2ff6ccfbf11903b7|commit]], [[https://git.kernel.org/linus/c3f3b97238f6fd87b9d90b9a995ee5e69f751a74|commit]], [[https://git.kernel.org/linus/9e95505fecb6b5a25b5230eb49c4d5b9e18077d0|commit]] * stmmac: Add support for HW-accelerated VLAN stripping [[https://git.kernel.org/linus/750011e239a50873251c16207b0fe78eabf8577e|commit]] * stmmac: mmc: Support more counters for XGMAC Core [[https://git.kernel.org/linus/e5bc1f4c6554b464005d52b940630bb4d276137a|commit]] * vdpa/mlx5: Introduce per vq and device resume [[https://git.kernel.org/linus/145096937b8a6a8d5889f5a1a6fb453c52cc48a1|commit]] * wan: framer: Add support for the Lantiq PEF2256 framer [[https://git.kernel.org/linus/82c944d05b1a24c76948ee9d6bb1d7de1ebb8b3a|commit]], [[https://git.kernel.org/linus/c96e976d9a05d559f4ac4f617ea0f798c75a1799|commit]] * wangxun: Implement more ethtool_ops [[https://git.kernel.org/linus/e8e138cf7383cf820419fcbec63992e75a01467b|commit]], [[https://git.kernel.org/linus/4491c602fe5f3a248cc8a2ed4180aacdc2162365|commit]], [[https://git.kernel.org/linus/bc2426d74aa35cd8ec9c97a253ef57c2c5cd730c|commit]], [[https://git.kernel.org/linus/2fe2ca09da953bac778eab5dfb309b4e7d274b1a|commit]], [[https://git.kernel.org/linus/883b5984a5d2900468af5ab979cae90547a78da4|commit]], [[https://git.kernel.org/linus/4ac2d9dff4b01fb210f951dcb67badcc2a1aa427|commit]], [[https://git.kernel.org/linus/937d46ecc5f941b26270bdf7ce37495f12b25955|commit]], [[https://git.kernel.org/linus/b746dc6bdde5a9a03309f208733a08665d4a0cb4|commit]] * remove obsolete hostap driver [[https://git.kernel.org/linus/d0172d5f7576ed6c3f73622ca4c16ba63c49da4e|commit]] * remove orphaned cisco/aironet driver [[https://git.kernel.org/linus/6853c70ba5edca34f65b337a04183a6145303071|commit]] * remove orphaned orinoco driver [[https://git.kernel.org/linus/1535d5962d79b8f4bddfd480399828b8db9d7a1c|commit]] * remove orphaned ray_cs driver [[https://git.kernel.org/linus/6b9dbaff83d626e5a9cc0c01a2b302f8fe423a1a|commit]] * remove orphaned rndis_wlan driver [[https://git.kernel.org/linus/bec95598b24a42adba294994ab7a5d8db417cca5|commit]] * remove orphaned wl3501 driver [[https://git.kernel.org/linus/238349207cd3e158df53d866abf1d42b2392aa9e|commit]] * remove orphaned zd1201 driver [[https://git.kernel.org/linus/757a46c2a7a99a4e12f6a267e945c98324c41702|commit]] == Audio == * hda/realtek - Add Headset Mic supported Acer NB platform [[https://git.kernel.org/linus/34ab5bbc6e82214d7f7393eba26d164b303ebb4e|commit]] * hda/realtek: Enable headset mic on Lenovo M70 Gen5 [[https://git.kernel.org/linus/fb3c007fde80d9d3b4207943e74c150c9116cead|commit]] * hda/realtek: Enable headset mic on Vaio VJFE-ADL [[https://git.kernel.org/linus/c7de2d9bb68a5fc71c25ff96705a80a76c8436eb|commit]] * hda/realtek: Enable mute/micmute LEDs and limit mic boost on HP ZBook [[https://git.kernel.org/linus/b018cee7369896c7a15bfdbe88f168f3dbd8ba27|commit]] * hda/realtek: add IDs for Dell dual spk platform [[https://git.kernel.org/linus/fddab35fd064414c677e9488c4fb3a1f67725d37|commit]] * hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx [[https://git.kernel.org/linus/bc7863d18677df66b2c7a0e172c91296ff380f11|commit]] * hda/tas2781: add TAS2563 support for 14ARB7 [[https://git.kernel.org/linus/c3ca4458cc2f719b1652abaa8d2fbf7f3d4311cb|commit]] * hda: Add Lenovo Legion 7i gen7 sound quirk [[https://git.kernel.org/linus/24b6332c2d4ff08fb7601ac8f751a5ba51e0ebd3|commit]] * hda: Add driver properties for cs35l41 for Lenovo Legion Slim 7 Gen 8 serie [[https://git.kernel.org/linus/ba7053b4b4a4ddcf530fa2b897e697004715d086|commit]] * hda: Intel: add HDA_ARL PCI ID support [[https://git.kernel.org/linus/a31014ebad617868c246d3985ff80d891f03711e|commit]] * hda: cs35l41: Support ASUS Zenbook UM3402YAR [[https://git.kernel.org/linus/be220d2e5544ff094142d263db5cf94d034b5e39|commit]] * hda: cs35l41: Support Lenovo Thinkbook 16P [[https://git.kernel.org/linus/37d9d5ff5216df1908a41e6ddd72460c5d938b8a|commit]] * hda: cs35l41: Support additional ASUS Zenbook UX3402VA [[https://git.kernel.org/linus/c16dfab33f99fc3ff43d48253bc2784ccb84c1de|commit]] * hda: cs35l41: Support additional Dell models without _DSD [[https://git.kernel.org/linus/ee694e7db47e1af00ffb29f569904a9ed576868f|commit]] * scarlett2: Add support for Scarlett 4th Gen [[https://git.kernel.org/linus/4dedf7ca929a3f29fbed973e85372056d69a1848|commit]], [[https://git.kernel.org/linus/dd57b1213ab60ec9ad603507bd25ed069f9a6b61|commit]], [[https://git.kernel.org/linus/4fa07ff7b625e5578dd974d5c43d701cb3624d84|commit]], [[https://git.kernel.org/linus/1b53c116232e082db06ab5310c1be1d4bf75dfe1|commit]], [[https://git.kernel.org/linus/038216f2bc85167449359cb4eec5fc5bfffbe4ef|commit]], [[https://git.kernel.org/linus/0a995e38dc440fdfe658a5ebf19bf6eb647a0f5f|commit]], [[https://git.kernel.org/linus/a1ed1d6caf680e22b933d1fa89f3d4a4c313d91e|commit]], [[https://git.kernel.org/linus/0d2e791db4c81d295334ca09ad30cc2083f94b04|commit]], [[https://git.kernel.org/linus/882a2a36c41df96d0449c3751dceb86415b44a56|commit]], [[https://git.kernel.org/linus/d7cfa2fdfc8a0ba9bf7d5ebd5cf25e6d24501632|commit]], [[https://git.kernel.org/linus/ac19be067aac38479b1c4d1477d4012a24d5730d|commit]], [[https://git.kernel.org/linus/e8e14270d8d0d5c9bd8e04e5940d511b56a981e9|commit]], [[https://git.kernel.org/linus/c6c9f0cf9dba7e86f1f6cca658bb6b86c5d02530|commit]], [[https://git.kernel.org/linus/166e1dfb752665226ab482b62a94c274ec2dea17|commit]], [[https://git.kernel.org/linus/66946398a4be9fd41eafcc844a306273f5150e69|commit]], [[https://git.kernel.org/linus/f6a817e6795a4f16c106ddf5f4009a7697515868|commit]], [[https://git.kernel.org/linus/2ecca0df90cbd082ab61530bb4e758a0fb970d21|commit]], [[https://git.kernel.org/linus/4e809a299677b8a9a239574a787620cb4f6c086a|commit]], [[https://git.kernel.org/linus/4a2c8cc1644738191d9d6c0bca24516cfe390d41|commit]] * scarlett2: Firmware Upgrade and Error Handling Improvements [[https://git.kernel.org/linus/5f6ff6931a1c0065a55448108940371e1ac8075f|commit]], [[https://git.kernel.org/linus/ca459dfa7d4ed9098fcf13e410963be6ae9b6bf3|commit]], [[https://git.kernel.org/linus/50603a67daef161c78c814580d57f7f0be57167e|commit]], [[https://git.kernel.org/linus/04f8f053252b86c7583895c962d66747ecdc61b7|commit]], [[https://git.kernel.org/linus/993f7b42fa066b055e3a19b7f76ad8157c0927a0|commit]], [[https://git.kernel.org/linus/103c23ccacaab14e5f8a63d60bdc4e5c81e166fc|commit]], [[https://git.kernel.org/linus/34101a0fb1d47d8def145e50b4221201f5348cd0|commit]], [[https://git.kernel.org/linus/337b2f0e778f78f61972497994b70a05e8f6447d|commit]], [[https://git.kernel.org/linus/6a7508e64ee3e8320c886020bcdcd70f7fcbff2c|commit]], [[https://git.kernel.org/linus/1abfbd3c952781881dc17d8e3624cac9df6a70b5|commit]] * Add IDs and definitions for ARL and ARL-S [[https://git.kernel.org/linus/5ec42bf04d72fd6d0a6855810cc779e0ee31dfd7|commit]], [[https://git.kernel.org/linus/a31014ebad617868c246d3985ff80d891f03711e|commit]], [[https://git.kernel.org/linus/7a9d6bbe8a663c817080be55d9fecf19a4a8fd8f|commit]], [[https://git.kernel.org/linus/a00be6dc9bb80796244196033aa5eb258b6af47a|commit]], [[https://git.kernel.org/linus/1ccffc2f760a960372093106558411e644b89c57|commit]] * ASoC * Intel: Soundwire related board and match updates [[https://git.kernel.org/linus/5c0e047ab629bcb5efa94de63fcdc75c9fe69516|commit]], [[https://git.kernel.org/linus/fd8ff49d35f917c65383642c8f8f20656734f3ad|commit]], [[https://git.kernel.org/linus/def127feaa8a9d8684ac41139638b079e6e637e2|commit]], [[https://git.kernel.org/linus/817178e7674bd8ca35344b2212a3105ed75559e5|commit]], [[https://git.kernel.org/linus/faca26b6ca90b220cba787ff7c6a05e99528731c|commit]], [[https://git.kernel.org/linus/ed99878462ccc143395987faebda33c50529b116|commit]] * Intel: soc-acpi-intel-tgl-match: add cs42l43 and cs35l56 support [[https://git.kernel.org/linus/e17999750649c4bd4ba945419b406d1d1a3e92e2|commit]] * Intel: sof_rt5682: add mtl_rt5650 support [[https://git.kernel.org/linus/a55ea47bb8743ee044550c5dfdd3cb3147602e05|commit]] * Intel: sof_sdw: Add rt722 support [[https://git.kernel.org/linus/def127feaa8a9d8684ac41139638b079e6e637e2|commit]] * SOF: Add support for MICFIL PDM interface [[https://git.kernel.org/linus/fc85d9d0b3ba8f8934963c760af98fc38029d9da|commit]], [[https://git.kernel.org/linus/89ef42088b3ba884a007ad10bd89ce8a81b9dedd|commit]] * IPC path handling and fallback support [[https://git.kernel.org/linus/014fdeb0d747304111cfecf93df4407c1a0c80db|commit]], [[https://git.kernel.org/linus/3bc3477915587440035f192c89a1bf9a4360abb3|commit]], [[https://git.kernel.org/linus/1162d267eabd6392d0d07bc88b75056e88042fc0|commit]], [[https://git.kernel.org/linus/a07625dcaf994ab3c5a6a456624719df05ed8ad6|commit]], [[https://git.kernel.org/linus/396016d56da4ad30fe9ff736e44d9e1457484805|commit]], [[https://git.kernel.org/linus/59ddeae037b81303063bcf62b70fb33841b3f89e|commit]], [[https://git.kernel.org/linus/b1a4ee9fd5a2dfb0f23abe58377f816915ec14ba|commit]], [[https://git.kernel.org/linus/b2b0bba36f0a81743e7143a8801ca75d2238bdac|commit]], [[https://git.kernel.org/linus/8616168928f278723fdc3f4d7cd3d611dcdae8f8|commit]], [[https://git.kernel.org/linus/8a83f180abb5b95f524fc9b5eb2291f0e39bed30|commit]], [[https://git.kernel.org/linus/a5a65437b02df8b842c4620b0b776bcd91ce200a|commit]], [[https://git.kernel.org/linus/9b6896538ea71b7c24da1ecb38738a311176f6a8|commit]], [[https://git.kernel.org/linus/6c393ebbd74ad341bcfb4e2d0091b2655fad45d0|commit]] * ipc4: Add support for control change notification [[https://git.kernel.org/linus/5980bda0a998a6ee6afd83b97a482a40c1c68076|commit]], [[https://git.kernel.org/linus/1a307538c9cc274b3191b9a1380bbceece262626|commit]], [[https://git.kernel.org/linus/f5eb9945cf9c17eb016aa64c7de13875f259ea07|commit]], [[https://git.kernel.org/linus/0ff23d460718641c80c8054425256391dca1ac7d|commit]] * amd: acp: Add i2s bt support for nau8821-max card [[https://git.kernel.org/linus/e6a382cf7a69cc80e57978bbf0c7a674dfb09621|commit]] * amd: acp: Enable dpcm_capture for MAX98388 codec [[https://git.kernel.org/linus/e249839bf33f3f9727d6220536ed5c7d4f5bc31d|commit]] * amd: yc: Add HP Pavilion Aero Laptop 13-be2xxx(8BD6) into DMI quirk table [[https://git.kernel.org/linus/b3a51137607cee7c814cd3a75d96f78b9ee1dc1f|commit]] * amd: yc: add new YC platform variant (0x63) support [[https://git.kernel.org/linus/316a784839b21b122e1761cdca54677bb19a47fa|commit]] * es83xx: add ACPI DSM helper module [[https://git.kernel.org/linus/9c8bec3b63255ca04e5dad87471a35790aec06dc|commit]] * fsl: mpc8610_hpcd: Remove unused driver [[https://git.kernel.org/linus/b1cea462a79316bd619173f1ded8b28202b5ce3a|commit]] * mediatek: mt8188-mt6359: add es8326 support [[https://git.kernel.org/linus/e794a894427b1d64f2ebff24f003c60373d68c2c|commit]] * qcom: Add !x1e80100 sound machine driver [[https://git.kernel.org/linus/6b9dc2da66578acff36401ba87fee93c2abf2a6e|commit]] * qcom: audioreach: Add 4 channel support [[https://git.kernel.org/linus/3c5fcb20e07e3681a645fc3a8d890478ca320825|commit]] * qcom: sc8280xp: Add support for SM8450 and SM8550 [[https://git.kernel.org/linus/fdcaecfc71e2f4ab70ce9469f14dd64c23bf401a|commit]] * qcom: sc8280xp: Add support for SM8650 [[https://git.kernel.org/linus/7211094dd065908747a143f9adeff41cfdcf37c0|commit]] * rt5645: Add Acer Switch V 10 quirk + report quirks in components string [[https://git.kernel.org/linus/51add1687f39292af626ac3c2046f49241713273|commit]], [[https://git.kernel.org/linus/8f28e1996a786a7538d65e5258d3eecb92943673|commit]], [[https://git.kernel.org/linus/f72a9c2b8f1487181302d69fb82d5c76226be3fb|commit]], [[https://git.kernel.org/linus/b4635b9cd9ae48050d72b645cc53175788bebf52|commit]], [[https://git.kernel.org/linus/4cd7654553b3cf1ce5a7560f0492f0431785dfae|commit]], [[https://git.kernel.org/linus/8184e1db699befc5101bcfe401283becfc228a0b|commit]], [[https://git.kernel.org/linus/f87b4402163be352601f7a012ab0d8dba7ecc64d|commit]] * sunxi: sun4i-spdif: Add support for Allwinner H616 [[https://git.kernel.org/linus/0adf963b8463faa44653e22e56ce55f747e68868|commit]] * tas2781: Add tas2563 into driver [[https://git.kernel.org/linus/9f1bcd16e2bd41d758438f1d74e5f2d35f1e8c8e|commit]] == Tablets, touch screens, keyboards, mouses == * xpad: add Lenovo Legion Go controllers [[https://git.kernel.org/linus/80441f76ee67002437db61f3b317ed80cce085d2|commit]] * zforce_ts: accept standard touchscreen properties [[https://git.kernel.org/linus/435e84ec2009bf40625ee7ca1f8453d3b22edf75|commit]] * iqs269a: add support for OTP variants [[https://git.kernel.org/linus/992bbc9e9ab9abe5bc1ea9a1a8d61331b28f848e|commit]] * iqs269a: add support for slider gestures [[https://git.kernel.org/linus/00521a9bf96eaab358886d7a0c531d52027d3241|commit]] * Driver for Adafruit Seesaw Gamepad [[https://git.kernel.org/linus/52c4e5985a730796a3fa555b83b404708b960f9d|commit]] * cap11xx: add advanced sensitivity settings [[https://git.kernel.org/linus/2e3ae00021901461455b6a9ff4ef850817e9ab6d|commit]] * HID * logitech-hidpp: add support for Logitech G Pro X Superlight 2 [[https://git.kernel.org/linus/afa6ac2690bb9904ff883c6e942281e1032a484d|commit]] * mcp2200: added driver for GPIOs of MCP2200 [[https://git.kernel.org/linus/740329d7120f8608ead64b0f3417c02ca1d6b32f|commit]] * nintendo: add support for nso controllers [[https://git.kernel.org/linus/94f18bb19945915fcdfd1903841020ef1b6af44a|commit]] * Add new SFH interfaces [[https://git.kernel.org/linus/4e71d262899d7bab1f0c65936a2e639afeb83e4d|commit]], [[https://git.kernel.org/linus/b5b0774d53bb81bddbf8c609b3f183d4af6e91da|commit]], [[https://git.kernel.org/linus/584f35a3647d42980af495fc0bc5c51eb174aa35|commit]] == TV tuners, webcams, video capturers == * i2c: Add driver for THine THP7312 ISP [[https://git.kernel.org/linus/cba1ec57b33127ed810d3ab14645086a07e050a6|commit]], [[https://git.kernel.org/linus/0d9e32a8075a6cccbab294f98ccf7d33821d9b1c|commit]], [[https://git.kernel.org/linus/7a52ab415b43f3b4680b69f6652ba2ec6716e55f|commit]] * Wave5 codec driver [[https://git.kernel.org/linus/4f61d8aa73e44614f1c59aff07274304ecdea9ad|commit]], [[https://git.kernel.org/linus/02a8b425639d66c2e46f6ef4d2ff5f1d9d060ad7|commit]], [[https://git.kernel.org/linus/45d1a2b93277a24a90265055f5b87c7562d6acb9|commit]], [[https://git.kernel.org/linus/9707a6254a8a6b978bde811a44fe07d86c229d1c|commit]], [[https://git.kernel.org/linus/de4b9f7e371a53842b646aafa0b72c7467108ab2|commit]], [[https://git.kernel.org/linus/26dde1beb359bd7ac7b37f741ba64d11611d106a|commit]] * i2c: Add driver for !OmniVision OV64A40 [[https://git.kernel.org/linus/03d93f8ed7e3db7351462c2d94fb010ad82ca0ea|commit]] * i2c: Add support for alvium camera [[https://git.kernel.org/linus/0a7af872915ee34668edf7e4018648a226d9e7f9|commit]] * i2c: Introduce a driver for the Techwell TW9900 decoder [[https://git.kernel.org/linus/918b14a26b12c3959f58997f9557d350fec33bf1|commit]] * i2c: ak7375: Add support for ak7345 [[https://git.kernel.org/linus/df15385e6793e62f1537c5069680ac12049b4a5f|commit]] * i2c: gc0308: new driver [[https://git.kernel.org/linus/3ae52083b5338f756c503034ad58feb869e217c0|commit]] * i2c: gc2145: Galaxy Core GC2145 sensor support [[https://git.kernel.org/linus/03cc7fefbb09dd70f3b21d127784879fac0bbf00|commit]] * Sony IMX335 improvements [[https://git.kernel.org/linus/bd4eadc4536fc3a52c9794e59f29e274ba1e5d82|commit]], [[https://git.kernel.org/linus/d5ca45b8b91ea40696aaceb3f93d207b25b26d50|commit]], [[https://git.kernel.org/linus/1af87779e9f7dcdd4f219b355ae090ca18028540|commit]], [[https://git.kernel.org/linus/fea91ee73b7cd19f08017221923d789f984abc54|commit]], [[https://git.kernel.org/linus/252b2caaf2cbbf2bfab483af200d58a7a5bfe87f|commit]], [[https://git.kernel.org/linus/d7b95ad7a8d56248dfc34f861e445fad7a4004f4|commit]], [[https://git.kernel.org/linus/cfa49ff0558a3269cd62bb91ec20364a77f8138a|commit]] * i2c: st-mipid02: add Y8 format support [[https://git.kernel.org/linus/2cc0f07718f244d128bd8f38ad4e41f5c67222c1|commit]] * ov2740: reset GPIO, clk and 180 MHz link-frequency support [[https://git.kernel.org/linus/1a140854bc8c9d258ddb31912b80f63faf760144|commit]], [[https://git.kernel.org/linus/846a37cf470f489ad1713e143083d17630c73056|commit]], [[https://git.kernel.org/linus/47913c1f554c31350af36130b208a0bf7754e8d0|commit]], [[https://git.kernel.org/linus/41543c7ccc682f7ec713dbe19be67fa694088f9c|commit]], [[https://git.kernel.org/linus/3735228bbe3511f844e03dfcc4003fadb59dde23|commit]], [[https://git.kernel.org/linus/4024107e104c06ac497b87bfd063c377b0b74527|commit]], [[https://git.kernel.org/linus/0677a2d9b735c1d57410dd188eb93ce61635987c|commit]], [[https://git.kernel.org/linus/efff0a80bc66dcba08e4810fc9eb91c78d5586cf|commit]], [[https://git.kernel.org/linus/fb16c04a538e1fa177bf2dcdf763292d51fe6e2b|commit]] * qcom: camss: Introduce support for named power-domains [[https://git.kernel.org/linus/ac6494e0ca444d82ff9dc0df87fcfca1d91c5cd2|commit]], [[https://git.kernel.org/linus/a409b3f08dbed4b866cffeee48cce703290c300b|commit]], [[https://git.kernel.org/linus/eb73facec2c261c92ad271e87ee37894e0bef9a8|commit]], [[https://git.kernel.org/linus/23aa4f0cd3273b269560a9236c48b43a3982ac13|commit]], [[https://git.kernel.org/linus/d89751c61279f692684fe82a416dffef7f243cbe|commit]], [[https://git.kernel.org/linus/6997278ae5f0ad09400750977ddc08aa5543ff86|commit]], [[https://git.kernel.org/linus/801ca0e7f9be141ae8a7b17e47d6af588768ae49|commit]], [[https://git.kernel.org/linus/8016943b5947cd485078e23899945c51e818aa63|commit]] * Add MFC v12 support [[https://git.kernel.org/linus/3253a8cdd7fe0c62607edad5e0369435a5160439|commit]], [[https://git.kernel.org/linus/199643db9ac2919140cc77a9e71057a4d1bf1959|commit]], [[https://git.kernel.org/linus/e57b6d326f94a4e4b13625b3b5533e1be4be81c6|commit]], [[https://git.kernel.org/linus/6f1466123d731265e607df3a0ea79bfc7531a564|commit]], [[https://git.kernel.org/linus/c639899bb66742f39cd6a0a4c27eb3240e309bff|commit]], [[https://git.kernel.org/linus/15fe06f7dcb9cd661ef62720f84cb3b3e0760026|commit]], [[https://git.kernel.org/linus/ff3f4490625bac7c42f5a09a72d9ff5cf4e64fa5|commit]], [[https://git.kernel.org/linus/a394c3ff5f98389aa19e036b4fe3cd46c2d3c60f|commit]], [[https://git.kernel.org/linus/f30d7cfac41783327fee87950f243165508f9cea|commit]], [[https://git.kernel.org/linus/e4af84f34c5a7e951464ab51021764c7c1204d70|commit]] * platform: cros-ec: Add Dexi to the match table [[https://git.kernel.org/linus/ebc733e54a1a79ea2dde2ba5121ae73a188e20d4|commit]] * rockchip: rga: add NV12M support [[https://git.kernel.org/linus/db71a7f5cbb8d41beed8352b2313f9079371cd98|commit]] * stm32-dcmipp: STM32 DCMIPP camera interface driver [[https://git.kernel.org/linus/28e0f37722965fa150af31d82101c95fd21aef60|commit]] * v4l2-common: Add 10bpp RGB formats info [[https://git.kernel.org/linus/57e3f1cfc23ffdbfd7c8fcee5406930cc7f85eed|commit]] * verisilicon: vp9: Allow to change resolution while streaming [[https://git.kernel.org/linus/bbd267daf4fc831f58bf4a2530a8b64881779e6a|commit]] * visl: Add AV1 support [[https://git.kernel.org/linus/98b3cd0bfc5c07809166421e8b8f82bf74ee8970|commit]] == Universal Serial Bus == * HID: amd_sfh: Add a new interface for exporting HPD data [[https://git.kernel.org/linus/b5b0774d53bb81bddbf8c609b3f183d4af6e91da|commit]] * dwc3: Support EBC feature of DWC_usb31 [[https://git.kernel.org/linus/398aa9a7e77cf23c2a6f882ddd3dcd96f21771dc|commit]] * dwc3: pci: add support for the Intel Arrow Lake-H [[https://git.kernel.org/linus/de4b5b28c87ccae4da268a53c5df135437f5cfde|commit]] * f_uac1: adds support for SS and SSP [[https://git.kernel.org/linus/b8fb6db6cb04e3c35d661d0f6cf6f8dc7444ce0c|commit]] * gadget: ncm: Add support to update wMaxSegmentSize via configfs [[https://git.kernel.org/linus/1900daeefd3ebde61199649143085a2dfdebf55c|commit]] * host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK [[https://git.kernel.org/linus/520b391e3e813c1dd142d1eebb3ccfa6d08c3995|commit]] * misc: onboard_usb_hub: Add support for Cypress CY7C6563x [[https://git.kernel.org/linus/24af68a0ed53629bdde7b53ef8c2be72580d293b|commit]] * serial: cp210x: add ID for IMST iM871A-USB [[https://git.kernel.org/linus/12b17b4eb82a41977eb848048137b5908d52845c|commit]] * serial: option: add Fibocom FM101-GL variant [[https://git.kernel.org/linus/b4a1f4eaf1d798066affc6ad040f76eb1a16e1c9|commit]] * serial: qcserial: add new usb-id for Dell Wireless DW5826e [[https://git.kernel.org/linus/129690fb229a20b6e563a77a2c85266acecf20bc|commit]] * typec: mux: add Qualcomm WCD939X USB !SubSystem Altmode Mux driver [[https://git.kernel.org/linus/36d586c0570e075c18bcc3b4ec4de11fcdbf5dd1|commit]] * typec: tcpm: Support multiple capabilities [[https://git.kernel.org/linus/cd099cde4ed264403b434d8344994f97ac2a4349|commit]] * xhci: xhci-plat: Add support for BCM2711 [[https://git.kernel.org/linus/95e71986fc1b9a2e1de30bca8e7a5fab12817cdd|commit]] == Serial Peripheral Interface (SPI) == * Add multi-cs memories support in SPI core [[https://git.kernel.org/linus/4d8ff6b0991d5e86b17b235fc46ec62e9195cb9b|commit]] * axi-spi-engine: add watchdog timer [[https://git.kernel.org/linus/07d33c2810bb5fe67747d11f76980ed68602e287|commit]] * dw: Remove Intel Thunder Bay SOC support [[https://git.kernel.org/linus/36f7050b29f3d736b5faf1059bd43baec04db9fb|commit]] * intel-pci: Add support for Arrow Lake SPI serial flash [[https://git.kernel.org/linus/8afe3c7fcaf72fca1e7d3dab16a5b7f4201ece17|commit]] * intel-pci: Add support for Lunar Lake-M SPI serial flash [[https://git.kernel.org/linus/8f44e3808200c1434c26ef459722f88f48b306df|commit]] * stm32: add STM32F7 support [[https://git.kernel.org/linus/a84dcb410b5f928899a53ba79ec71108700872d6|commit]] == Watchdog == * mediatek: mt7988: add wdt support [[https://git.kernel.org/linus/137c9e08e5e542d58aa606b0bb4f0990117309a0|commit]] * it87_wdt: Add IT8659 ID [[https://git.kernel.org/linus/ab6dea00fd6d148deecf2e8baaf0c110b35d7cea|commit]] * s3c2410_wdt: Add support for Google gs101 SoC [[https://git.kernel.org/linus/796bb2d3a16c1e786ed51183162783405b5c8f85|commit]] == Serial == * Move tty and serdev to be children of serial core port device [[https://git.kernel.org/linus/b286f4e87e325b76789f30337c98ba72e00532e2|commit]] * uartlite: Use dynamic allocation for major number when uart ports > 4 [[https://git.kernel.org/linus/01c33b813864ca15a9dec22045ce1a5bb09d5e74|commit]] * 8250: microchip: Burst Mode Support for PCI1XXXX [[https://git.kernel.org/linus/e0ae1431dfb6899836f5689225ac464394570b18|commit]], [[https://git.kernel.org/linus/b7fbca372bb6247990e2419c09fe6064d107542d|commit]], [[https://git.kernel.org/linus/aba8290f368d965d49c929a283b3bf41783d3ada|commit]] == CPU Frequency scaling == * intel_pstate: Update hybrid scaling factor for Meteor Lake [[https://git.kernel.org/linus/bde4f5ff8295601554601f78a523d4d97e42433e|commit]] * intel_pstate: Add Emerald Rapids support in no-HWP mode [[https://git.kernel.org/linus/e95013156ad88e6a1e1db6545881f49183e2ee0a|commit]] == Voltage, current regulators, power capping, power supply == * power: supply: bq24190_charger: Add support for BQ24296 [[https://git.kernel.org/linus/b150a703b56fb6eb282d059b421652ccd9155c23|commit]] * regulator * Add option to prevent disabling unused regulators [[https://git.kernel.org/linus/c986968fe92f20f2db26fa6bce27795b2e9ebe22|commit]] * Add regulator netlink event support [[https://git.kernel.org/linus/2506c1de4081249b1df9c9a7dbd3d038e691e4e5|commit]] * qcom_spmi: Add PM8937 SPMI regulator [[https://git.kernel.org/linus/c0d6b2acf78e3195a6b100a236210f2e6e42b0c0|commit]] * qcom_smd: Add PM8937 regulators [[https://git.kernel.org/linus/18cc1cd011131d878be2619b56eff7bc2a278bdf|commit]] * Introduce handling for system-critical under-voltage events [[https://git.kernel.org/linus/8156c7dd47b92fc4a70c9ea58e7a9e88c8bc32be|commit]] * qcom-rpmh: extend to support multiple linear voltage ranges [[https://git.kernel.org/linus/27591ea2f7751223e79fa41f11bf687777a38399|commit]] * qcom-rpmh: add support for pm8010 regulators [[https://git.kernel.org/linus/2544631faa7f3244c9bcb9b511ca4f1a4f5a3ba0|commit]] == Real Time Clock (RTC) == * Add driver for Nuvoton ma35d1 rtc controller [[https://git.kernel.org/linus/dc0684adf3b6be6b20fec9295027980021d30353|commit]] * Add support for configuring the UIP timeout for RTC reads [[https://git.kernel.org/linus/120931db07b49252aba2073096b595482d71857c|commit]] * max31335: add driver support [[https://git.kernel.org/linus/dedaf03b99d6561fae06457fd7fc2b0aa154d003|commit]] * rv8803: Add power management support [[https://git.kernel.org/linus/2f80de657f83a1f6495e557096847f4626d57164|commit]] * tps6594: Add driver for TPS6594 RTC [[https://git.kernel.org/linus/9f67c1e63976d3403f0b250b03ffe959c890f9db|commit]] == Pin Controllers (pinctrl) == * Add support for the Lantic PEF2256 pinmux [[https://git.kernel.org/linus/37c646dc515a28eb38cc2495c34fb219f153e916|commit]] * intel: Add Intel Meteor Point pin controller and GPIO support [[https://git.kernel.org/linus/ebe7f3393784857c487bf82f86813a8b1384e278|commit]] * intel: Add a generic Intel pin control platform driver [[https://git.kernel.org/linus/c5860e4a2737a8b29dc426c800d01c5be6aad811|commit]] * qcom: Add !X1E80100 pinctrl driver [[https://git.kernel.org/linus/05e4941d97ef05ddaa742a57301daab8a2f7db5b|commit]] * qcom: Introduce the SM8650 Top Level Mode Multiplexer driver [[https://git.kernel.org/linus/22a4a9ed37d675c210d530f2de92cc6afbcf1daa|commit]] * qcom: sm4450: dd SM4450 pinctrl driver [[https://git.kernel.org/linus/fa7b1fe24e10c62d3c14f3df16d5d7d5cffd1ddd|commit]] * qcom: sm8650-lpass-lpi: add SM8650 LPASS [[https://git.kernel.org/linus/c4e47673853f2b020e2390832e9df83b3a84d7b0|commit]] * renesas: rzg2l: Add output enable support [[https://git.kernel.org/linus/1bbc8ee40826164d16e32d377654c93ef48d1458|commit]] * renesas: rzg2l: Add support to select power source for Ethernet pins [[https://git.kernel.org/linus/51996952b8b50942ed3069141ebc1dee13756b95|commit]] * samsung: Add gs101 SoC pinctrl configuration [[https://git.kernel.org/linus/4a8be01a1a7a030ae7b6138602d2e060cf7a0946|commit]] * samsung: add exynosautov920 pinctrl [[https://git.kernel.org/linus/6cf96df77338c6a7e753229fe6d330ab60e28cda|commit]] * samsung: support !ExynosAuto GPIO structure [[https://git.kernel.org/linus/884fdaa53b38921165cd9afdb230502b4e1690b0|commit]] * tps6594: Add driver for TPS6594 pinctrl and GPIOs [[https://git.kernel.org/linus/901b277eafbd98ad327525de6c9bf3cc6abd6370|commit]] == Multi Media Card (MMC) == * Add HS400 tuning in HS400es initialization [[https://git.kernel.org/linus/77e01b49e35f24ebd1659096d5fc5c3b75975545|commit]] * Add wp_grp_size sysfs node [[https://git.kernel.org/linus/e4df56ad0bf3506c5189abb9be83f3bea05a4c4f|commit]] * rtsx: add rts5264 to support sd express card [[https://git.kernel.org/linus/117cc0efb02374fb84bd546e2e706637db167bd6|commit]] * sdhci-of-dwcmshc: Add support for T-Head TH1520 [[https://git.kernel.org/linus/43658a542ebf13f1bb80cfaa8ae58f061d0d71b0|commit]] * xenon: Add ac5 support via bounce buffer [[https://git.kernel.org/linus/5d40213347480e3ab903d5438dbd0d6b0110e6b8|commit]] == Memory Technology Devices (MTD) == * rawnand: Add destructive operation [[https://git.kernel.org/linus/578dc962ff2000ba4bf52d50717aea0819615634|commit]] * rawnand: NAND controller write protect [[https://git.kernel.org/linus/68cce21e3cc5fea8d955a62394454149270c98bc|commit]] * spi-nor: introduce die erase [[https://git.kernel.org/linus/9641423174d05da32543e96ced66bb30cebcce16|commit]], [[https://git.kernel.org/linus/461d0babb54462188c98818b472e6a3d5a91fd60|commit]], [[https://git.kernel.org/linus/53919a968b43648822f2d35b6cafacd3950238cc|commit]], [[https://git.kernel.org/linus/06de1257aae787fe3af14d03b9ceb0b9f6af9e1f|commit]], [[https://git.kernel.org/linus/c692ba6de1c5b4dc8cad0ba70281ba4cf9d2fdac|commit]] * ubi: Add six fault injection type for testing [[https://git.kernel.org/linus/7cd8d1f8475d83c8871917430a2daf362c68e742|commit]] == Industrial I/O (iio) == * Add modifiers for A and B ultraviolet light [[https://git.kernel.org/linus/b89710bd215e650f0aaf8ffe7104413d46d44392|commit]] * adc: Add driver support for MAX34408/9 [[https://git.kernel.org/linus/cf27775838c5b316732c7dcb539580a736f19bc6|commit]] * adc: Add support for AD7091R-8 [[https://git.kernel.org/linus/0b76ff46c46332f3415be4dc5f9771d5eb2f0f18|commit]] * adc: ad7091r: Allow users to configure device events [[https://git.kernel.org/linus/020e71c7ffc25dfe29ed9be6c2d39af7bd7f661f|commit]] * amplifiers: hmc425a: add support for ADRF5740 Attenuator [[https://git.kernel.org/linus/ed73c4f13d5b63acce2b6f8c5e73c465479c4940|commit]] * bu27008: Add illuminance channel [[https://git.kernel.org/linus/a6d160b21fe6f9e3ac868ab1d79194d3e7977cd5|commit]] * chemical: add support for Aosong AGS02MA [[https://git.kernel.org/linus/d58013f39b302512b02cbf4826dd9f194bdf1865|commit]] * dac: ad5791: Add support for controlling RBUF via devicetree [[https://git.kernel.org/linus/e737d495b207592106b38449cc9f402133456062|commit]] * dac: driver for MCP4821 [[https://git.kernel.org/linus/cdf3ecb0d8d0a83c940a8892b3e8aeaf35dc4353|commit]] * humidity: Add driver for ti HDC302x humidity sensors [[https://git.kernel.org/linus/c9180b8e39befcc703940873ac49e0603ef42bf7|commit]] * imu: Add driver for BMI323 IMU [[https://git.kernel.org/linus/8a636db3aa57ed468b88804ecf27798df6c9c553|commit]] * light: add VEML6075 UVA and UVB light sensor driver [[https://git.kernel.org/linus/3b82f43238aecd73464aeacc9c73407079511533|commit]] * light: driver for Lite-On ltr390 [[https://git.kernel.org/linus/8b0d4c40d704cb7d01ad4f647ff5a51881767acd|commit]] * light: isl76682: Add ISL76682 driver [[https://git.kernel.org/linus/4347f5114ab776c60727f94a7ab19538401c9ee1|commit]] * pressure: bmp280: Add support for BMP390 [[https://git.kernel.org/linus/b19ac45bfe503c399fe8e16a20dddeb1f4870997|commit]] * pressure: bmp280: Allow multiple chips id per family of devices [[https://git.kernel.org/linus/33564435c8084ff29837c9ed9bb9574ec957751d|commit]] * pressure: driver for Honeywell HSC/SSC series [[https://git.kernel.org/linus/6362d96585e35b433981b3833a9e2737cec33774|commit]] * resolver: ad2s1210: add support for adi,fixed-mode [[https://git.kernel.org/linus/f9b9ff95be8ce0e8becfd17b416b68d13915733d|commit]] * temperature: Add MCP9600 thermocouple EMF converter [[https://git.kernel.org/linus/3f6b9598b6df604a7c556873de18fcc97919b81c|commit]] * temperature: mlx90635 MLX90635 IR Temperature sensor [[https://git.kernel.org/linus/a1d1ba5e1c28b9887be1bdb3630caf0b532ec980|commit]] == Multi Function Devices (MFD) == * tps65086: Enable register view in debugfs [[https://git.kernel.org/linus/6d461d3c68fb994d56a41b7280aada742dc71cea|commit]] * qcom-spmi-pmic: Add support for PM8937 [[https://git.kernel.org/linus/4773d2f1a5c73c590c0c83bf42b156532bc69cb2|commit]] == Pulse-Width Modulation (PWM) == * Mention PWM chip ID in /sys/kernel/debug/pwm [[https://git.kernel.org/linus/0360a48733729f9329483409acd048d04b43ee17|commit]] == Inter-Integrated Circuit (I2C + I3C) == * Create debugfs entry per adapter [[https://git.kernel.org/linus/73febd775bdbdb98c81255ff85773ac410ded5c4|commit]] * i801: Add lis3lv02d for Dell Precision 3540 [[https://git.kernel.org/linus/6d9450464ce1825d7d0e7ef5d33a9d2701f41c76|commit]] * i801: Add lis3lv02d for Dell XPS 15 7590 [[https://git.kernel.org/linus/2f189493ae32be9768b27072c9388e62b38d2dda|commit]] * rcar: introduce Gen4 devices [[https://git.kernel.org/linus/2b523c46e81ebd621515ab47117f95de197dfcbf|commit]], [[https://git.kernel.org/linus/d0520eb3ed54df89eb5961ec3b88634f313123f2|commit]] * smbus: Support up to 8 SPD EEPROMs [[https://git.kernel.org/linus/13e3a512a29001cab68fe9a0c12be94e6d42a10c|commit]] * stm32f7: add support for stm32mp25 soc [[https://git.kernel.org/linus/90f9b1406236853bd524ddde86cc5a945690c6b7|commit]] == Hardware monitoring (hwmon) == * sht3x: add sts3x support [[https://git.kernel.org/linus/6ec09effb2af9911e6c98b0ce59f3abd6c823508|commit]] * Add driver for Gigabyte AORUS Waterforce AIO coolers [[https://git.kernel.org/linus/42ac68e3d4ba06ad17bc56b790dbccc37e76e0ba|commit]] * dell-smm: Add Optiplex 7000 to fan control whitelist [[https://git.kernel.org/linus/159e459c0161c61d9fdb978e78f93c54184ee929|commit]] * dell-smm: Add support for WMI SMM interface [[https://git.kernel.org/linus/b7a4706f66e5dfbb981c4f669e5b3fa92ad80fe1|commit]] * emc1403: Add support for EMC1442 [[https://git.kernel.org/linus/9350163aff24530f2aa3357ee1c7bd8771a443e4|commit]] * k10temp: Add support for AMD Family 19h Model 8h [[https://git.kernel.org/linus/06f34bcc9a050f350067006d665b7900ca33be98|commit]] * lm75: Add AMS AS6200 temperature sensor [[https://git.kernel.org/linus/4b6358e1fe4668e88cd654b345a2a62da9d373f7|commit]] * max31827: Add support for max31828 and max31829 [[https://git.kernel.org/linus/cbeb1d2acf5d28debbe710dff6357c859eee061a|commit]] * nct6775: Add support for 2 additional fan controls [[https://git.kernel.org/linus/ff629afe7ffdfdfee15c75e9a22c67d316338cc5|commit]] * npcm750-pwm-fan: Add NPCM8xx support [[https://git.kernel.org/linus/89fec128d5d10d3e09553975d19d8b1f29b429d4|commit]] * pmbus: Add ltc4286 driver [[https://git.kernel.org/linus/0c459759ca971ee49a313b19ba50fc499c6cf8ca|commit]] * pmbus: Add support for MPS Multi-phase mp2856/mp2857 controller [[https://git.kernel.org/linus/f9e5f289b686bbb8e7fbed7a533e570ad5d863da|commit]] * pmbus: Add support for MPS Multi-phase mp5990 [[https://git.kernel.org/linus/ce0742404ad7b616811294844dbddac0fb6dcd32|commit]] == General Purpose I/O (gpio) == * rtd: Add support for Realtek DHC(Digital Home Center) RTD SoCs [[https://git.kernel.org/linus/eee636bff0dcb52c39300dd88ff7e8ecaff4492a|commit]] * nuvoton: Add Nuvoton NPCM sgpio driver [[https://git.kernel.org/linus/c4f8457d17ce590c71aef53d75d49c313eb72cbc|commit]] == Leds == * aw200xx: Add support for aw20108 device [[https://git.kernel.org/linus/634fea792a31717669094f7866cf32b8eeb932c0|commit]] * aw200xx: Support HWEN hardware control [[https://git.kernel.org/linus/d882762f7950c3dfd56c786a35d1518397773947|commit]] * ledtrig-tty: Add additional line state evaluation [[https://git.kernel.org/linus/6dec659896b4e683beaea223d306e71e174e84cd|commit]] * ledtrig-tty: Make rx tx activitate configurable [[https://git.kernel.org/linus/5b755ca677dba117063c6fd8d7ce21b67376deba|commit]] * max5970: Add support for max5970 [[https://git.kernel.org/linus/736214b4b02adf8734206599e36e2081d47554a2|commit]] * sun50i-a100: New driver for the A100 LED controller [[https://git.kernel.org/linus/ec95a68dad00c81d53ab9aa9bcbdf0a86347e0d9|commit]] * trigger: netdev: Extend speeds up to 10G [[https://git.kernel.org/linus/59b3e31e73322ec195e45e0a1da712c752ee1b0c|commit]] == DMA engines == * ls2x-apb: New driver for the Loongson LS2X APB DMA controller [[https://git.kernel.org/linus/71e7d3cb6e55ae2eadcdb178f9243dc18499d369|commit]] * tegra210-adma: Support dma-channel-mask property [[https://git.kernel.org/linus/25b636225a0816eac20b02fcb37daf6c722d0bed|commit]] * xilinx: xdma: Implement interleaved DMA transfers [[https://git.kernel.org/linus/2f8f90cd2f8d237c51c2775a53ef0d8c8acaa707|commit]] * xilinx: xdma: Add transfer error reporting [[https://git.kernel.org/linus/fd0e1d83a813d48285d39eae0053b38828cf7e1a|commit]] * idxd: Add support for device/wq defaults [[https://git.kernel.org/linus/979f6ded93ac5ca0fec2b4c5b7b668c8a2a65e1b|commit]] == Cryptography hardware acceleration == * hisilicon/zip - add zip comp high perf mode configuration [[https://git.kernel.org/linus/a9864bae1806499ebf3757a9e71dddde5b9c48c6|commit]] * iaa: Add Intel Analytics Accelerator (IAA) crypto compression driver [[https://git.kernel.org/linus/15a611015224c6698801ab9a2c2321742c39174e|commit]], [[https://git.kernel.org/linus/d7ad915d817c8ce07a6101292497dddbab0429a3|commit]], [[https://git.kernel.org/linus/8621f99bde2c3232ec254bae67f91bc6ca7b02b9|commit]], [[https://git.kernel.org/linus/86d3a34144fd634861d4401903ac9a21bb87f025|commit]], [[https://git.kernel.org/linus/786d0e7f183ac1c1aef1801c2110f7582f0a6a83|commit]], [[https://git.kernel.org/linus/aa8d18becc0c14aa3eb46d6d1b81450446e11b87|commit]], [[https://git.kernel.org/linus/8ccc257b29a183c42830aa854ed7b50fa22f8731|commit]], [[https://git.kernel.org/linus/ea7a5cbb43696cfacf73e61916d1860ac30b5b2f|commit]], [[https://git.kernel.org/linus/f57bf3f78377d66af89a6d0c6d926ffb1f590b5d|commit]], [[https://git.kernel.org/linus/b190447e0fa3ef7355480d641d078962e03768b4|commit]], [[https://git.kernel.org/linus/2ec6761df889fdf896fde761abd447596dd8f8c2|commit]], [[https://git.kernel.org/linus/09646c98d0bfed47930d9eb0d66c323fae70a5e0|commit]], [[https://git.kernel.org/linus/93382a91632a5d88bb9bb0ff1fea872fe87f5dc2|commit]], [[https://git.kernel.org/linus/979f6ded93ac5ca0fec2b4c5b7b668c8a2a65e1b|commit]] * Add Marvell CN10KB/CN10KA B0 [[https://git.kernel.org/linus/92508e7fcffdd77d6e2a18d3dd9c8863f61b040f|commit]], [[https://git.kernel.org/linus/82f89f1aa6ca33a6c1e50ddb165e2d5b882025e1|commit]], [[https://git.kernel.org/linus/9d1d5702aac831ba844d6227373c49e0ba0ec8ae|commit]], [[https://git.kernel.org/linus/cac482f2418bf0d140ed89650dbb0413e9fe1f58|commit]], [[https://git.kernel.org/linus/8bb0be9f53d17c75a829b9d25420645caf6d8581|commit]], [[https://git.kernel.org/linus/e92971117c2c895295e5ec9cae4038ef5b17a7ff|commit]], [[https://git.kernel.org/linus/434c1cb9722beab9c9b91ca9f1edab9a86f5d41d|commit]], [[https://git.kernel.org/linus/3139ebf70a635f20a639b2c9944d7e4ae30bab3b|commit]] * qat: add support for 420xx devices [[https://git.kernel.org/linus/4db87a5f9e3026d72e03bbdf1dac1dc5303e37f7|commit]], [[https://git.kernel.org/linus/b34bd0fd563df763ccca998b3d5fc824c536c28a|commit]], [[https://git.kernel.org/linus/de51d22364921dcdb28ef34cd6276c38e126b899|commit]], [[https://git.kernel.org/linus/98a4f29fba0ffc1f1b026d9cb717fbe7edd66ffe|commit]], [[https://git.kernel.org/linus/fcf60f4bcf54952cc14d14178c358be222dbeb43|commit]] * qat: enable telemetry for QAT GEN 4 [[https://git.kernel.org/linus/b6e4b6eb1e6393580482581470a3a08c15ab977b|commit]], [[https://git.kernel.org/linus/7f06679dd54a331d750e5d6f6f04a9df2eba72ff|commit]], [[https://git.kernel.org/linus/69e7649f7cc2aaa7889174456d39319a623c1a18|commit]], [[https://git.kernel.org/linus/eb52707716e3f2cdf16f4e95e3a800cca190504f|commit]] * qat: add sysfs_added flag for ras [[https://git.kernel.org/linus/65089000ba8c2ae713ccac6603319143f3e1c08b|commit]] * qat: add sysfs_added flag for rate limiting [[https://git.kernel.org/linus/d71fdd0f3c278c7f132c3a522645ebf9157edd6d|commit]] * sahara: add support for crypto_engine [[https://git.kernel.org/linus/44ff4ea133b5c3fa28fa3ef79fed80cac999f07c|commit]] == PCI == * brcmstb: Configure HW CLKREQ# mode appropriate for downstream device [[https://git.kernel.org/linus/e2596dcf1e9dfd5904d50f796c19b03c94a3b8b4|commit]] * mhi: ep: Add async read/write support [[https://git.kernel.org/linus/b08ded2ef2e98768d5ee5f71da8fe768b1f7774b|commit]], [[https://git.kernel.org/linus/927105244f8bc48e6841826a5644c6a961e03b5d|commit]], [[https://git.kernel.org/linus/8b786ed8fb089e347af21d13ba5677325fcd4cd8|commit]], [[https://git.kernel.org/linus/5424be958b446601d6176396d9dbaad2178db610|commit]], [[https://git.kernel.org/linus/0d5d5738dc206e531d3a70c6a81fde4e9fa40b5d|commit]], [[https://git.kernel.org/linus/d1c6f4ba4746ed41fde8269cb5fea88bddb60504|commit]], [[https://git.kernel.org/linus/ee08acb58fe47fc3bc2c137965985cdb1df40b35|commit]], [[https://git.kernel.org/linus/2547beb00ddb40e55b773970622421d978f71473|commit]], [[https://git.kernel.org/linus/309ab14f70d137f708ca52e275dc9fd20d3e9147|commit]] * Add 4x lane support for pci-j721e controllers [[https://git.kernel.org/linus/b3ba0f6e82cb9a88d64519f1a0c455bca39d343e|commit]], [[https://git.kernel.org/linus/adc14d44d7cb676a5e2105a711e8a168eaebed6e|commit]], [[https://git.kernel.org/linus/3ac7f14084f54bff9c31573d1ed59d047a34fe03|commit]], [[https://git.kernel.org/linus/4490f559f75514d5a6f0e729e85235a7be6216bf|commit]], [[https://git.kernel.org/linus/e49ad667815d37dc621ffdfb7302df6a7265bab8|commit]] * rcar-host: Add support for optional regulators [[https://git.kernel.org/linus/6797e4da2dd1e2c8dc8cec73447c77abe2a7655b|commit]] == Thunderbolt == * Add support for Intel Lunar Lake [[https://git.kernel.org/linus/2cd3da4e37453019e21a486d9de3144f46b4fdf7|commit]] == Clock == * mediatek: add drivers for MT7988 SoC [[https://git.kernel.org/linus/4b4719437d85f0173d344f2c76fa1a5b7f7d184b|commit]] * meson: g12a: add MIPI ISP clocks [[https://git.kernel.org/linus/773e4e98730845dddab6b4accef03d03b6ff25ce|commit]] * qcom: Introduce clocks drivers for SM8650 [[https://git.kernel.org/linus/b85ea95d086471afb4ad062012a4d73cd328fa86|commit]], [[https://git.kernel.org/linus/1a3b3bd142ffea56cdfd458246b2e4da6df19da6|commit]], [[https://git.kernel.org/linus/4d45d56e17348c6b6bb2bce126a4a5ea97b19900|commit]], [[https://git.kernel.org/linus/50492f929486c044b43cb3e2c0e040aa9b61ea2b|commit]], [[https://git.kernel.org/linus/cec1f2ffcc065568fea9718921698576c6d1c62d|commit]], [[https://git.kernel.org/linus/4ab1721694a07651afef97dfb150f06c267cf2c4|commit]], [[https://git.kernel.org/linus/206cd759fbd2fce07cadb6c73a302ecfc95ebdff|commit]], [[https://git.kernel.org/linus/3be492cf6e13281ac60f4d686e1764d3a722488c|commit]], [[https://git.kernel.org/linus/ff93872a9c6168992ee41f2da9d9c3b8a6f8a8e5|commit]], [[https://git.kernel.org/linus/3f373de6da2c960f0630a63890dded7d53358e2a|commit]], [[https://git.kernel.org/linus/8f799d304c313f6628c4b21cd0227ac56b581944|commit]], [[https://git.kernel.org/linus/b69d932154dcfa84540aea55dd51a74fbc88d370|commit]], [[https://git.kernel.org/linus/c1120359d4c2a1050e6a5bddd47ee1887bb0c713|commit]], [[https://git.kernel.org/linus/a0aa7fa5c3f0e74e684c667e26824fe1e28f5c27|commit]], [[https://git.kernel.org/linus/873f22440338d84ad911c4b8373afc3d8d413587|commit]], [[https://git.kernel.org/linus/6514b6efdd1feaa3f8c327b07cb128b96b0adb4e|commit]], [[https://git.kernel.org/linus/c58225b7e3d702e62e0e0ac1ad2c59248c60c008|commit]], [[https://git.kernel.org/linus/aa381a2bdf1dfc36468f84c8d0ceba63be25b3b3|commit]], [[https://git.kernel.org/linus/e3388328e47c45cc91fe74b334694fa455c1c935|commit]], [[https://git.kernel.org/linus/9e939f00833844bec64f5b2db61eb77f4ebeb795|commit]], [[https://git.kernel.org/linus/8676fd4f3874d06cdf0c897f4f306c7b11618f6a|commit]], [[https://git.kernel.org/linus/1d50607335d728ed874da41b500173faf1bc2576|commit]] * qcom: Add ECPRICC driver support for QDU1000 and QRU1000 [[https://git.kernel.org/linus/e146252ac160587f9a12cd6508d0b3e3231cd9d8|commit]] * qcom: Add Global Clock controller (GCC) driver for X1E80100 [[https://git.kernel.org/linus/161b7c401f4bd3e9ebd351f482139d8736be990c|commit]] * qcom: rpmh: Add support for X1E80100 rpmh clocks [[https://git.kernel.org/linus/874bc7be1e08bca7d47cfa2dba57164f73a30219|commit]] * renesas: r9a08g045: Add IA55 pclk and its reset [[https://git.kernel.org/linus/755cb955e2e7a2ef65e7a782925585ef1cce53b6|commit]] * rs9: Add support for 9FGV0841 [[https://git.kernel.org/linus/f0e5e1800204b82af6d3e8ef03012ab4afc22358|commit]] * samsung: clk-pll: Add support for pll_{0516,0517,518} [[https://git.kernel.org/linus/13ff3bdafdd569e62e59330de18aae25ec15c97b|commit]] * stm32mp1: use stm32mp13 reset driver [[https://git.kernel.org/linus/30500c2ad9c440d1a81e7a5dac3bcef62e21d910|commit]] * clocking-wizard: Add support for versal clocking wizard [[https://git.kernel.org/linus/3a96393a46e780d14a8592d7265b5a639fa7e5c9|commit]] == PHY ("physical layer" framework) == * mediatek: tadd support force phy mode switch [[https://git.kernel.org/linus/9b27303003f5af0d378f29ccccea57c7d65cc642|commit]] * phy-rockchip-inno-usb2: Add RK3128 support [[https://git.kernel.org/linus/62ff41017e147472b07de6125c3be82ce02a8dd7|commit]] * qcom-qmp-combo: Add x1e80100 USB/DP combo phys [[https://git.kernel.org/linus/d7b3579f84f74e0f7d88d180d4e15c679786b648|commit]] * qcom-qmp-usb: Add Qualcomm SDX75 USB3 PHY support [[https://git.kernel.org/linus/7f6f9e0def00cfaeb1d034fd13dbd84470aeccbd|commit]] * qcom-qmp-usb: Add Qualcomm X1E80100 USB3 PHY support [[https://git.kernel.org/linus/2daa9555ba9858c29b9734b3a104c338b718feab|commit]] * qcom-qmp: qserdes-txrx: Add v7 register offsets [[https://git.kernel.org/linus/ee6fcc0f337d6790b46838bab76c36e8bdd5658e|commit]] * ti: gmii-sel: Enable SGMII mode for !J784S4 [[https://git.kernel.org/linus/d719915ad9706a16adde231789a1d46fc12fb9c7|commit]] * ti: j721e-wiz: Add SGMII support in WIZ driver for !J784S4 [[https://git.kernel.org/linus/2029e71482fcd94dcc7df2c66c7fa635479748bf|commit]] == EDAC (Error Detection And Correction) == * igen6: Add EDAC support for several Intel !SoCs with IBECC [[https://git.kernel.org/linus/a264f715ecb3e6dac7c4d7135db74eb2379cb086|commit]], [[https://git.kernel.org/linus/c4a5398991fd2ad3011c486571300574495bc834|commit]], [[https://git.kernel.org/linus/d23627a7688fabff0096a7beaff1a93de76afaad|commit]], [[https://git.kernel.org/linus/3c77090c1247d963f2559e77810a5d48efeeb7d6|commit]], [[https://git.kernel.org/linus/6807434ff0449ff9b3fc18fb40d1ab1c5ff3b708|commit]] * amd64: Add support for family 0x19, models 0x90-9f devices [[https://git.kernel.org/linus/12f230c07a95d925d6af754485952515e7975127|commit]] == Various == * EDAC/mc: Add support for HBM3 memory type [[https://git.kernel.org/linus/9a5f580c1c71b6aedba696c4898a7a7184cef8ad|commit]] * accel/habanalabs * gaudi2: add signed dev info uAPI [[https://git.kernel.org/linus/7259eb7b534735b9c1153654c0bb4c5f059c0dd3|commit]] * Add parent_device sysfs attribute [[https://git.kernel.org/linus/aa5cea38ce687021bf97f9f4cdb18b26db290964|commit]] * Add support for Gaudi2C device [[https://git.kernel.org/linus/42422993cf28d456778ee9168d73758ec037cd51|commit]] * Expose module id through sysfs [[https://git.kernel.org/linus/47a552863d6c9ea26abe9ad35d2c35e4d6896551|commit]] * Update debugfs-driver-habanalabs with the device-name directory [[https://git.kernel.org/linus/cf0719a8a3e72cb82d83f79aa57ae11d86324915|commit]] * accel/ivpu * 40xx: Allow to change profiling frequency [[https://git.kernel.org/linus/bfc87f90614523612ae7e94d06798e82bc78ade6|commit]] * Add dvfs_mode file to debugfs [[https://git.kernel.org/linus/f13108fc7bae7085616805ed176b2114cdf4bd55|commit]] * Improve recovery and reset support [[https://git.kernel.org/linus/27d19268cf394f2c78db732be0cb31852eeadb0a|commit]] * accel/qaic: Add support for periodic timesync [[https://git.kernel.org/linus/6216fb03f8bd0b1439e9e799a306bafd5b462622|commit]], [[https://git.kernel.org/linus/41cfbaa47fd7d94df5faf1c416801600f26270d8|commit]] * bus: mhi: ep: Add async read/write support [[https://git.kernel.org/linus/b08ded2ef2e98768d5ee5f71da8fe768b1f7774b|commit]], [[https://git.kernel.org/linus/927105244f8bc48e6841826a5644c6a961e03b5d|commit]], [[https://git.kernel.org/linus/8b786ed8fb089e347af21d13ba5677325fcd4cd8|commit]], [[https://git.kernel.org/linus/5424be958b446601d6176396d9dbaad2178db610|commit]], [[https://git.kernel.org/linus/0d5d5738dc206e531d3a70c6a81fde4e9fa40b5d|commit]], [[https://git.kernel.org/linus/d1c6f4ba4746ed41fde8269cb5fea88bddb60504|commit]], [[https://git.kernel.org/linus/ee08acb58fe47fc3bc2c137965985cdb1df40b35|commit]], [[https://git.kernel.org/linus/2547beb00ddb40e55b773970622421d978f71473|commit]], [[https://git.kernel.org/linus/309ab14f70d137f708ca52e275dc9fd20d3e9147|commit]] * cxl: Add support for QTG ID retrieval for CXL subsystem [[https://git.kernel.org/linus/60e43fe5285e2077ce9904d78cd42a230d03b788|commit]], [[https://git.kernel.org/linus/6a954e94d038f41d79c4e04348c95774d1c9337d|commit]], [[https://git.kernel.org/linus/69b789b64456093819f730b3f9c13a593a5485d9|commit]], [[https://git.kernel.org/linus/6373c48b8c9dfb5c1e09fdb538e700d9cc91c45e|commit]], [[https://git.kernel.org/linus/79205651120620c2683f90c25ef3d2ac8e454026|commit]], [[https://git.kernel.org/linus/a3a3e341f169511823f7b2d140a0bdfbd620dcbd|commit]], [[https://git.kernel.org/linus/ca53543d8e340070fb37fde93f36ed9012c76b90|commit]], [[https://git.kernel.org/linus/ad6f04c0269b0b7908f09621d3b3c90def39a297|commit]], [[https://git.kernel.org/linus/63cef81b9dca6ddf1c34d697016f830ddcfadf28|commit]], [[https://git.kernel.org/linus/80aa780dda20618be76162bf991d49cf962fda38|commit]], [[https://git.kernel.org/linus/790815902ec61ba1715fd67d3cb9036e13c942bc|commit]], [[https://git.kernel.org/linus/4d07a05397c8c15c37c8c3abb7afaea1dcd2f0e7|commit]], [[https://git.kernel.org/linus/f2202f990456acc52b50f6b14c95b232ac14429b|commit]], [[https://git.kernel.org/linus/1037b82fccfe9c001ffa7a883651bb4cde7b705c|commit]], [[https://git.kernel.org/linus/14a6960b3e928ccea22d687fb0626237885a20bd|commit]], [[https://git.kernel.org/linus/7a4f148dd8d518bc1e012aa738b0ed6244959293|commit]], [[https://git.kernel.org/linus/86557b7edf77d2a3835136c325c8baa6fe803234|commit]], [[https://git.kernel.org/linus/42834b17cf1f00fa79ff1f02134f9c576a125252|commit]], [[https://git.kernel.org/linus/185c1a489f873cb71520fc089401e02dbf302dcd|commit]] * efi/cxl-cper: Report CPER CXL component events through trace events [[https://git.kernel.org/linus/26a1a86dd093a10d0653429bf013dae6e95dccbf|commit]], [[https://git.kernel.org/linus/4c115c9c1f81a6efe2bd68fcefec6836f7f3dc71|commit]], [[https://git.kernel.org/linus/207a1f82301de0b4123f00a8d26ea55bb2484757|commit]], [[https://git.kernel.org/linus/6eade110754c085cee9e46f4d87d2c3ea4e59e8c|commit]], [[https://git.kernel.org/linus/f9c683386f5bc0364615138ce2b14be50848dbcf|commit]], [[https://git.kernel.org/linus/671a794c33c6e048ca5cedd5ad6af44d52d5d7e5|commit]], [[https://git.kernel.org/linus/ced085ef369af7a2b6da962ec2fbd01339f60693|commit]], [[https://git.kernel.org/linus/dc97f6344f205b0dfa144e1b3e16d6dc05383d57|commit]] * cxl: Add Support for Get Timestamp [[https://git.kernel.org/linus/cb46fca88d14939da2785567253d0a297f31be27|commit]] * bus: mhi: host: pci_generic: Add SDX75 based modem support [[https://git.kernel.org/linus/5571519009d09a52c42231b2425a8ff1cc6cd813|commit]] * cdx: Create resource debugfs file for cdx device [[https://git.kernel.org/linus/cf60af04edfe51fca488246c9959904adb2750fa|commit]] * dpll: expose fractional frequency offset value to user [[https://git.kernel.org/linus/8a6286c1804e2c7144aef3154a0357c4b496e10b|commit]] * eeprom: ee1004: Add support for multiple i2c busses [[https://git.kernel.org/linus/431c03095d6021bc3dae6502678c53093d2f6182|commit]] * eeprom: ee1004: add support for temperature sensor [[https://git.kernel.org/linus/393bd1000f8192fcf5fa4abc1e79c0919c123e9b|commit]] * firmware: update for versal net platform [[https://git.kernel.org/linus/f922b16aa5fad7284e2b7fd7c22bab13c0e418b6|commit]], [[https://git.kernel.org/linus/f689a0ca45fcdf4139727a3a02a49efbb1902306|commit]], [[https://git.kernel.org/linus/a9d061840010df64aad2a3e5b308e663d6a36e2f|commit]], [[https://git.kernel.org/linus/8c016c807a90535432543204dbbb032e4a709009|commit]], [[https://git.kernel.org/linus/5dac2a98f6542ae1ce78b702374ea4be3f5ee07d|commit]] * firmware: microchip: add !PolarFire SoC Auto Update support [[https://git.kernel.org/linus/ec5b0f1193ad461e53d083edad8fab0298fe68e3|commit]] * i3c: master: some improvment for i3c master [[https://git.kernel.org/linus/317bacf960a4879af22d12175f47d284930b3273|commit]], [[https://git.kernel.org/linus/05b26c31a4859af9e75b7de77458e99358364fe1|commit]], [[https://git.kernel.org/linus/e5e3df06ac98d15cfb10bb5c12356709365e91b2|commit]], [[https://git.kernel.org/linus/6fb61734a74eaa307a5b6a0bee770e736d8acf89|commit]], [[https://git.kernel.org/linus/6d1a19d34e2cc07ca9cdad8892da94e716e9d15f|commit]] * interconnect: qcom: Add SM6115 interconnect provider driver [[https://git.kernel.org/linus/2eab57b131bd9ef22377e09de43beb45a650a752|commit]] * interconnect: qcom: Add !X1E80100 interconnect provider driver [[https://git.kernel.org/linus/9f196772841e8a344303f42da9b4e596a3554771|commit]] * interconnect: qcom: introduce RPMh Network-On-Chip Interconnect on SM8650 SoC [[https://git.kernel.org/linus/c062bcab592475697d71806edf8cb936b27d4f66|commit]] * iommu/amd: Improve TLB invalidation logic [[https://git.kernel.org/linus/af3263758bf0b65a040e90190ab708b8a4027947|commit]], [[https://git.kernel.org/linus/3f2571fed2fa9e9ea61fd990a9a4fc20ca83b62e|commit]], [[https://git.kernel.org/linus/a976da66e8e547cd07a9792f5854c2f73c456a21|commit]], [[https://git.kernel.org/linus/cf62924daf9f0363c82e4332d9ac9630f1d76c42|commit]], [[https://git.kernel.org/linus/4f0a600799237ed95b403f24354305b0f81ccbb4|commit]], [[https://git.kernel.org/linus/bbf85fe10faadbd237a7b8df4423de4ab4bd67e7|commit]], [[https://git.kernel.org/linus/8d004ac1c67bc1584b4b6b90429487dac5b2d83f|commit]], [[https://git.kernel.org/linus/2c535dd37d677abd11b278fce89b8bdb0a55facb|commit]], [[https://git.kernel.org/linus/c7fc12354be0ba47566d55f4ebdc6a47bd69d5ed|commit]] * iommu/apple-dart: Add support for t8103 USB4 DART [[https://git.kernel.org/linus/863c092323ab17a5bc4b2f3185d4136f9e57bbe3|commit]] * iommu/arm-smmu-qcom: Add QCM2290 MDSS compatible [[https://git.kernel.org/linus/28af105cb65043f20a16c5e2519d66390b1f9bb9|commit]] * iommu: Support mm PASID 1:n with sva domains [[https://git.kernel.org/linus/092edaddb660376648acb97678570ed5d8299768|commit]] * Add iommufd nesting (part 2/2) [[https://git.kernel.org/linus/f35b88b66fbb5c90298ce3aa483b8a2cf1f39ad0|commit]], [[https://git.kernel.org/linus/8c6eabae3807e048b9f17733af5e20500fbf858c|commit]], [[https://git.kernel.org/linus/77785117f9c73fd71a440a5ac86dd80752967adc|commit]], [[https://git.kernel.org/linus/ac8691203c07bb1897681d5c66374174336392fe|commit]], [[https://git.kernel.org/linus/e1fa6640d58e3529bd5e392dd92371cde2b31283|commit]], [[https://git.kernel.org/linus/bf26eb83fd3b6f392cf68285c8858db5bfd5e570|commit]], [[https://git.kernel.org/linus/393a5778b72a7b551493d0fd3fbe0282154058fe|commit]], [[https://git.kernel.org/linus/f6f3721244a8224fa97952b34fbb21e4ee40e8a8|commit]] * misc: mei: Add support for IVSC device [[https://git.kernel.org/linus/566f5ca9768075e453b7b51a397733968df4287d|commit]], [[https://git.kernel.org/linus/386a766c4169006d0e9df44823849930b8995e32|commit]] * irqchip/qcom-mpm: Support passing a slice of SRAM as reg space [[https://git.kernel.org/linus/221b110d87c2d3ea113ad784b2c6505726a3e157|commit]] * irqchip/renesas-rzg2l: Add support for suspend to RAM [[https://git.kernel.org/linus/74d2ef5f6f4b2437e6292ab2502400e8048db4aa|commit]] * mailbox: apple: Delete driver [[https://git.kernel.org/linus/143897c4fa976d02bfafe5ae32b9ffc60dc6145a|commit]] * mailbox: mtk-cmdq: Add CMDQ driver support for mt8188 [[https://git.kernel.org/linus/cd795fb0c352c1f70e5fa437b01572c8693e1b77|commit]] * mei: Add Meteor Lake support for IVSC device [[https://git.kernel.org/linus/daaf5286b6d2528a73c651aa2d4059bc1bd67c2e|commit]] * mei: me: add arrow lake point H DID [[https://git.kernel.org/linus/8436f25802ec028ac7254990893f3e01926d9b79|commit]] * mei: me: add arrow lake point S DID [[https://git.kernel.org/linus/7a9b9012043e126f6d6f4683e67409312d1b707b|commit]] * misc: Add Nitro Secure Module driver [[https://git.kernel.org/linus/b9873755a6c8ccfce79094c4dce9efa3ecb1a749|commit]] * Support new card reader rts5264 [[https://git.kernel.org/linus/c27dfca4555bf74dd7dd7161d8ef2790ec1c7283|commit]], [[https://git.kernel.org/linus/6a511c9b3a0df7a10b06694c20f3ebdc08be98cd|commit]], [[https://git.kernel.org/linus/117cc0efb02374fb84bd546e2e706637db167bd6|commit]] * optee: ffa_abi: add asynchronous notifications [[https://git.kernel.org/linus/d0476a59de064205f4aaa8f7c6d6f32bc28a44d4|commit]] * parport: parport_serial: Add Brainboxes BAR details [[https://git.kernel.org/linus/65fde134b0a4ffe838729f9ee11b459a2f6f2815|commit]] * parport: parport_serial: Add Brainboxes device IDs and geometry [[https://git.kernel.org/linus/6aa1fc5a8085bbc01687aa708dcf2dbe637a5ee3|commit]] * regmap: ram: support noinc semantics [[https://git.kernel.org/linus/02e3564a344064aca49f147e8a4eecbe5d3459fc|commit]] * regulator: Implement uv_survival_time for handling under-voltage events [[https://git.kernel.org/linus/1e22152aa59d793743fc53051dd7a042f362aecb|commit]] * remoteproc: qcom_q6v5_pas: Add SC7280 ADSP, CDSP & WPSS [[https://git.kernel.org/linus/300ed425dfa99f6926299ec196a1eedf05f47b21|commit]] * spmi: Introduce device-managed functions [[https://git.kernel.org/linus/b6e53731e07db7e8d35b789fd83565fe75540180|commit]] * tee: introduce TEE system session [[https://git.kernel.org/linus/077798da028e81ada39a256969207c91db66ebaf|commit]], [[https://git.kernel.org/linus/a9214a8883ceb82df55aa90d1c49ddb85fc1e3d5|commit]], [[https://git.kernel.org/linus/45bc2c9b5b230b95cad10f44204d7b28f52b74c0|commit]], [[https://git.kernel.org/linus/4b391c9c37646f25118355f414b9e6d9fefe782f|commit]] * tty: Add SBI debug console support to HVC SBI driver [[https://git.kernel.org/linus/88ead68e764cd164abb965e258c4e18841433ecf|commit]] * w1: Add AXI 1-wire host driver for AMD programmable logic IP core [[https://git.kernel.org/linus/271c81935801d6449bb7bab5ccfc6cd38238c62b|commit]] * w1: ds2433: add support for ds28ec20 eeprom [[https://git.kernel.org/linus/93c4bb3666a3d463c73a66ab3cc78a4c4b83631a|commit]] = List of Pull Requests = * [[https://git.kernel.org/torvalds/c/c604110e662a54568073a03176402b624e740310|misc vfs updates]] * [[https://git.kernel.org/torvalds/c/3f6984e7301f4a37285cc5962f97c83c7c3b8239|vfs super updates]] * [[https://git.kernel.org/torvalds/c/8c9440fea77440772542d6dbcb5c36182495c164|vfs mount updates]] * [[https://git.kernel.org/torvalds/c/bb93c5ed457fe76597c14717eb994fc5aef22716|vfs rw updates]] * [[https://git.kernel.org/torvalds/c/26458409a9b180ea6cc2cd7b67d6138984184669|vfs cachefiles updates]] * [[https://git.kernel.org/torvalds/c/5db8752c3b81bd33a549f6f812bab81e3bb61b20|vfs iov_iter cleanups]] * [[https://git.kernel.org/torvalds/c/1dee7f509db20402a25be94003f8f1ac3e17bdc1|EDAC updates]] * [[https://git.kernel.org/torvalds/c/6e0b939180fcd2658d2eb8e5bfa4192d1bc32fad|x86 microcode updates]] * [[https://git.kernel.org/torvalds/c/41a80ca4ae2de711e04b399f614f676daf72d938|misc x86 updates]] * [[https://git.kernel.org/torvalds/c/fc5e5c5923407b4b312d999af27aaddbdd33c790|x86 paravirt updates]] * [[https://git.kernel.org/torvalds/c/e900042f04848b5be9238d866df0952cfc548cf9|x86 SEV updates]] * [[https://git.kernel.org/torvalds/c/bef91c28f28fe8a36b91e9a39f60054ae1874280|x86 cpu feature updates]] * [[https://git.kernel.org/torvalds/c/3edbe8afb617a736ae0dcc877311bdb112a00123|x86 RAS updates]] * [[https://git.kernel.org/torvalds/c/968b80332432172dbbb773e749a43bdc846d1a13|powerpc updates]] * [[https://git.kernel.org/torvalds/c/3cf1d6a5fbf3f724d12b01635319924239d42c00|m68k updates]] * [[https://git.kernel.org/torvalds/c/ab5f3fcb7c72094684760e0cd8954d8d570b5e83|arm64 updates]] * [[https://git.kernel.org/torvalds/c/33034c4f9497b7fe33b0d97740a4bf1c0552316b|x86 apic updates]] * [[https://git.kernel.org/torvalds/c/106b88d7a91e2b4d40369a20b8ef07bb827dafd5|x86 asm updates]] * [[https://git.kernel.org/torvalds/c/f73857ece4d85d2ee36571df9c13a733f3ba2732|x86 boot updates]] * [[https://git.kernel.org/torvalds/c/42c371f8ec4296cee49b10d8e6be50aae90f2d70|x86 build updates]] * [[https://git.kernel.org/torvalds/c/b51cc5d02834a9c38cfd95b00b7d981b701b13f9|x86 cleanups]] * [[https://git.kernel.org/torvalds/c/33677aef32cf07ebbed07647e88136258c4b95ba|x86 core updates]] * [[https://git.kernel.org/torvalds/c/2fdbcf715a1b9dd1468317f7cd4b4cd327a09781|x86 entry updates]] * [[https://git.kernel.org/torvalds/c/6cbf5b3105f31217053570e7ca722b739a9242a4|locking updates]] * [[https://git.kernel.org/torvalds/c/669d089a7fe1eacf4e86160297f32c678ee71ec5|objtool fixlet]] * [[https://git.kernel.org/torvalds/c/ab9517fa9aab71e312c7acc6fefefe080db3c972|debugobject update]] * [[https://git.kernel.org/torvalds/c/cdc202281a5d5e2c4bbbbf78bbd68f035a49421a|generic syscall updates]] * [[https://git.kernel.org/torvalds/c/46a08b4d4836c721e012ff4c542a8baa8baa3594|CPU hotplug updates]] * [[https://git.kernel.org/torvalds/c/f24dc33f8e0a765bf9bdf1c190ae5b9a23343d65|timer subsystem updates]] * [[https://git.kernel.org/torvalds/c/0bdf0621f89f87858ca26344378188eff194eddd|irq subsystem updates]] * [[https://git.kernel.org/torvalds/c/aac4de465af08ccec90ef47bdcc13435e48a7223|performance events updates]] * [[https://git.kernel.org/torvalds/c/bfe8eb3b85c571f7e94e1039f59b462505b8e0fc|scheduler updates]] * [[https://git.kernel.org/torvalds/c/9f8413c4a66f2fb776d3dc3c9ed20bf435eb305e|cgroup updates]] * [[https://git.kernel.org/torvalds/c/d30e51aa7b1f6fa7dd78d4598d1e4c047fcc3fb9|slab updates]] * [[https://git.kernel.org/torvalds/c/fb46e22a9e3863e08aef8815df9f17d0f4b9aede|MM updates]] * [[https://git.kernel.org/torvalds/c/9f2a635235823cf016eb8af0aeb3c0b2b25cea64|non-MM updates]] * [[https://git.kernel.org/torvalds/c/eab23bc8a807dbd32ac4f20af4a146d1679f57a3|audit updates]] * [[https://git.kernel.org/torvalds/c/9f9310bf87348e36a98ffa09c4e285908c14f592|selinux updates]] * [[https://git.kernel.org/torvalds/c/063a7ce32ddc2c4f2404b0dfd29e60e3dbcdffac|security module updates]] * [[https://git.kernel.org/torvalds/c/e9b4c5890858015bfe2089b7573319bcf4a92907|Landlock updates]] * [[https://git.kernel.org/torvalds/c/6c1dd1fe5d8a1d43ed96e2e0ed44a88c73c5c039|integrity updates]] * [[https://git.kernel.org/torvalds/c/83130ff423d61b018e1018cfa9ca5c1511b5f33b|regmap updates]] * [[https://git.kernel.org/torvalds/c/da96801729b43eb6229425a23b7bdf6045685251|regulator updates]] * [[https://git.kernel.org/torvalds/c/301940020a92ebdef9352a0573075a1db42d17aa|spi updates]] * [[https://git.kernel.org/torvalds/c/35f11a3710cdcbbc5090d14017a6295454e0cc73|mtd updates]] * [[https://git.kernel.org/torvalds/c/bd012f3a5b02849d9acc85e2b8b71293ce072263|ACPI updates]] * [[https://git.kernel.org/torvalds/c/7f73ba68cf67ef533783013f863d750c5736f957|thermal control updates]] * [[https://git.kernel.org/torvalds/c/7da71072e1d6967c0482abcbb5991ffb5953fdf2|power management updates]] * [[https://git.kernel.org/torvalds/c/3efcce4a9ec0d2f47ad7c501d0b072c12a1706af|chrome platform updates]] * [[https://git.kernel.org/torvalds/c/b9b56eb280451ccfd42e9e554e83c6202a2d286b|chrome platform firmware updates]] * [[https://git.kernel.org/torvalds/c/5fda5698c289b2ff21d53d935c43351c424f8388|x86 platform driver updates]] * [[https://git.kernel.org/torvalds/c/7c6a3fc925b63d5201f1c11b93193d8a466a7d89|IPMI updates]] * [[https://git.kernel.org/torvalds/c/a7e4c6cf5bbbd8fea2be1cef0540e5cf107c43c2|EFI updates]] * [[https://git.kernel.org/torvalds/c/5d09f61e505a614250df24a0f7e646802e40fc87|nolibc updates]] * [[https://git.kernel.org/torvalds/c/41daf06ea14fdccb34224fbcc5c4f2a6d17814e2|KUnit updates]] * [[https://git.kernel.org/torvalds/c/ab27740f76654ed58dd32ac0ba0031c18a6dea3b|kselftest update]] * [[https://git.kernel.org/torvalds/c/32720aca900b226653c843bb4e06b8125312f214|fsnotify updates]] * [[https://git.kernel.org/torvalds/c/12958e9c4c8e93ef694c10960c78453edf21526e|xfs updates]] * [[https://git.kernel.org/torvalds/c/affc5af36bbb62073b6aaa4f4459b38937ff5331|btrfs updates]] * [[https://git.kernel.org/torvalds/c/bfed9a92940bae1fbdaad80b82562ce4e122434a|gfs2 updates]] * [[https://git.kernel.org/torvalds/c/032500abc5dc7add035ad5bc8eddf67e97f686b6|jfs updates]] * [[https://git.kernel.org/torvalds/c/0c59ae1290741854b6cf597ef05bfa9bc811389f|afs updates]] * [[https://git.kernel.org/torvalds/c/d8c8e595dc31fb639bc4f8a202901afaa15bb13f|dlm updates]] * [[https://git.kernel.org/torvalds/c/49f4810356f7d4294ad63dc70fe3c65ca3b8ada9|nfsd updates]] * [[https://git.kernel.org/torvalds/c/17b9e388c619ea4f1eae97833cdcadfbfe041650|fscrypt updates]] * [[https://git.kernel.org/torvalds/c/0507d2526f843c1d5d833d318f90b64dd07fc93f|erofs updates]] * [[https://git.kernel.org/torvalds/c/4d925f60578ab3b13e2cfeb5e6e38cb83d51e032|overlayfs updates]] * [[https://git.kernel.org/torvalds/c/72116efd6307077546c93e0432a197876cedff70|pstore updates]] * [[https://git.kernel.org/torvalds/c/120a201bd2ad0bffebdd2cf62c389dbba79bbfae|hardening updates]] * [[https://git.kernel.org/torvalds/c/6434eade5dd51f12b464c8dc16633f0f2d26e284|tpm updates]] * [[https://git.kernel.org/torvalds/c/0cb552aa97843f24549ce808883494138471c16b|crypto updates]] * [[https://git.kernel.org/torvalds/c/6bd593bc743d3b959af157698064ece5fb56aee0|unicode updates]] * [[https://git.kernel.org/torvalds/c/0d19d9e14687ff6f43d6c4806ace9ff682d7703f|ext4 updates]] * [[https://git.kernel.org/torvalds/c/587217f9706a4ff033196d819db52e32afa29654|nfs client updates]] * [[https://git.kernel.org/torvalds/c/84e9a2d5517bf62edda74f382757aa173b8e45fd|smb client fixes]] * [[https://git.kernel.org/torvalds/c/999a36b52b1b11b2ca0590756e4f8cf21f2d9182|bcachefs updates]] * [[https://git.kernel.org/torvalds/c/78273df7f646f8daf2604ec714bea0897cd03aae|header cleanups]] * [[https://git.kernel.org/torvalds/c/a05aea98d4052dcd63d9d379613058e9e86c76d7|sysctl updates]] * [[https://git.kernel.org/torvalds/c/4cd083d53108b32f4c8ed92a3f85d7b36133c0c9|module updates]] * [[https://git.kernel.org/torvalds/c/c29901006179c4c87f9335771e50814ec5707239|asm-generic cleanups]] * [[https://git.kernel.org/torvalds/c/de927f6c0b07d9e698416c5b287c521b07694cac|s390 updates]] * [[https://git.kernel.org/torvalds/c/3e7aeb78ab01c2c2f0e1f784e5ddec88fcd3d106|networking updates]] * [[https://git.kernel.org/torvalds/c/c4101e55974cc7d835fbd2d8e01553a3f61e9e75|SoC DT updates]] * [[https://git.kernel.org/torvalds/c/f6597d17069a67819f57569e44ac9069f0b829e8|SoC driver updates]] * [[https://git.kernel.org/torvalds/c/fb249b275c591f064853157bf2b378fcedd6381b|ARM SoC code updates]] * [[https://git.kernel.org/torvalds/c/5bad490858c3ebdbb47e622e8f9049f828d2abba|ARM SoC defconfig updates]] * [[https://git.kernel.org/torvalds/c/b6964fe2398cb8939c3d4fc6960a6be93687305d|Rust updates]] * [[https://git.kernel.org/torvalds/c/2518f39af6ba671964193c249ad1e307b51fd31a|clang-format updates]] * [[https://git.kernel.org/torvalds/c/457e4f99765cc41d0b90e1385f51b848d6a921d0|auxdisplay update]] * [[https://git.kernel.org/torvalds/c/893e2f9eac9ec8d65a5ae2d99656d5e9f7bd76e2|dma-mapping updates]] * [[https://git.kernel.org/torvalds/c/d05e626603d57936314816433db8bf1d34b5a504|ata updates]] * [[https://git.kernel.org/torvalds/c/01d550f0fcc06c7292f79a6f1453aac122d1d2c8|block updates]] * [[https://git.kernel.org/torvalds/c/4c72e2b8c42e57f65d8fbfb01329e79d2b450653|io_uring updates]] * [[https://git.kernel.org/torvalds/c/22d29f1112c85c1ad519a8c0403f7f7289cf060c|SCSI updates]] * [[https://git.kernel.org/torvalds/c/5b9b41617bf3e1282cc60f07d3d52e62399aa4ba|documentation update]] * [[https://git.kernel.org/torvalds/c/2f444347a8d6b03b4e6a9aeff13d67b8cbbe08ce|minixfs updates]] * [[https://git.kernel.org/torvalds/c/bf4e7080aeed29354cb156a8eb5d221ab2b6a8cc|rename updates]] * [[https://git.kernel.org/torvalds/c/499aa1ca4eb6602df38afaecb88fc14edf50cdbb|dcache updates]] * [[https://git.kernel.org/torvalds/c/488926926a1653adfda3f662355907c896524487|misc filesystem updates]] * [[https://git.kernel.org/torvalds/c/6a31658aa1c0b757df652f6fcf3a001f90fda302|smb server updates]] * [[https://git.kernel.org/torvalds/c/70d201a40823acba23899342d62bc2644051ad2e|f2fs update]] * [[https://git.kernel.org/torvalds/c/cf65598d5909acf5e7b7dc9e21786e386356bc81|drm updates]] * [[https://git.kernel.org/torvalds/c/7912a6391f3ee7eb9f9a69227a209d502679bc0c|sound updates]] * [[https://git.kernel.org/torvalds/c/5dfec3cf3efbd897d774e3b5c08c2f0deaf9b5ad|hwmon updates]] * [[https://git.kernel.org/torvalds/c/61f4c3e6711477b8a347ca5fe89e5e6613e0a147|watchdog updates]] * [[https://git.kernel.org/torvalds/c/576db73424305036a6aa9e40daf7109742fbb1df|gpio updates]] * [[https://git.kernel.org/torvalds/c/c736c9a9553f9cfcb1b03e65f91bc29fc6446fd3|clk updates]] * [[https://git.kernel.org/torvalds/c/645f910ff61d9b2968865c77a2f92a7c80e255ba|GNSS updates]] * [[https://git.kernel.org/torvalds/c/141d9c6e003b806d8faeddeec7053ee2691ea61a|firewire updates]] * [[https://git.kernel.org/torvalds/c/bf9ca811bbadd7d853469d58284ed87906cc9321|rdma updates]] * [[https://git.kernel.org/torvalds/c/0c4b09cb542fd0c4134e3f87442c89abffbfeedd|pmdomain updates]] * [[https://git.kernel.org/torvalds/c/20077583ccdd4db8aa626eae442e030d217901db|MMC updates]] * [[https://git.kernel.org/torvalds/c/a3cc31e75185f9b1ad8dc45eac77f8de788dc410|libnvdimm updates]] * [[https://git.kernel.org/torvalds/c/61da593f4458f25c59f65cfd9ba1bda570db5db7|media updates]] * [[https://git.kernel.org/torvalds/c/d97a78423c33f68ca6543de510a409167baed6f5|fbdev updates]] * [[https://git.kernel.org/torvalds/c/fef018d8199661962b5fc0f0d1501caa54b2b533|HID updates]] * [[https://git.kernel.org/torvalds/c/42bff4d0f9b9c8b669c5cef25c5116f41eb45c6b|pwm updates]] * [[https://git.kernel.org/torvalds/c/38814330fedd778edffcabe0c8cb462ee365782e|devicetree updates]] * [[https://git.kernel.org/torvalds/c/23a80d462c67406303df852d58b745b8618acc4a|RCU updates]] * [[https://git.kernel.org/torvalds/c/1acc24b300bfa8b2f03daabbba67db600fd38e08|nfsctl update]] * [[https://git.kernel.org/torvalds/c/052d534373b7ed33712a63d5e17b2b6cdbce84fd|exfat updates]] * [[https://git.kernel.org/torvalds/c/7f5e47f785140c2d7948bee6fc387f939f68dbb8|misc hotfixes]] * [[https://git.kernel.org/torvalds/c/0c6bc37255927cf2e2cfdd9dc9bd1eced9c166de|UBI and UBIFS updates]] * [[https://git.kernel.org/torvalds/c/6cff79f4b90a42d73f039564f09fa5d59ec3d8ab|UML updates]] * [[https://git.kernel.org/torvalds/c/4331f070267ae8f76db1abbc7f4eeed4f06ae817|RISC-V updates]] * [[https://git.kernel.org/torvalds/c/096f286ee3fadf3f6777dedba35fa66654ec9f34|MIPS updates]] * [[https://git.kernel.org/torvalds/c/284a4ddeed35091a356fb8274d91d2dded62136c|microblaze updates]] * [[https://git.kernel.org/torvalds/c/c4c6044d35f06a93115e691e79436839962c203e|ARM updates]] * [[https://git.kernel.org/torvalds/c/47ce834fbb6ce6cb9e802f651b647b8030c5fc7f|Xtensa updates]] * [[https://git.kernel.org/torvalds/c/bce3b5d6764b1e8cd8e24f4ced54ec0c42a64c32|parisc updates]] * [[https://git.kernel.org/torvalds/c/09d1c6a80f2cf94c6e70be919203473d4ab8e26c|kvm updates]] * [[https://git.kernel.org/torvalds/c/82fd5ee9d8a516d47a17e8c99c2712a3fd937014|xen updates]] * [[https://git.kernel.org/torvalds/c/7b5bcf9b842087ba38cb6292637910f384368cff|more power management updates]] * [[https://git.kernel.org/torvalds/c/7f369a8f5ba973c1c1b680dcc99959773193350a|more ACPI updates]] * [[https://git.kernel.org/torvalds/c/d8e6ba025f5e45cb0821298919b0e07130cef877|more thermal control updates]] * [[https://git.kernel.org/torvalds/c/2a43434675b2114e8f909a5039cc421d35d35ce9|rpmsg updates]] * [[https://git.kernel.org/torvalds/c/e88481f74fee690316c1e0fd3777f919067d2d58|remoteproc updates]] * [[https://git.kernel.org/torvalds/c/a2ec2071cad819fe952a3f1ef66f2d2112c27b6e|hwspinlock updates]] * [[https://git.kernel.org/torvalds/c/2385018a4e5eb4f06cf110cca80d0a4ac8e27297|mfd updates]] * [[https://git.kernel.org/torvalds/c/08df80a3c51674ab73ae770885a383ca553fbbbf|LED updates]] * [[https://git.kernel.org/torvalds/c/75afd029e607623df50495ec6acefe82138d6935|mailbox updates]] * [[https://git.kernel.org/torvalds/c/5d197e97fb106c09d3d013be341e5961fd70ec8a|HSI update]] * [[https://git.kernel.org/torvalds/c/ed6c23b175471d7bdecd06b5f37a0b1057c90cce|pin control updates]] * [[https://git.kernel.org/torvalds/c/a3f4a07b5027e88209a7f47f572d8eed126ca870|i3c updates]] * [[https://git.kernel.org/torvalds/c/e1aa9df440186af73a9e690244eb49cbc99f36ac|pci updates]] * [[https://git.kernel.org/torvalds/c/296455ade1fdcf5f8f8c033201633b60946c589a|char/misc and other driver updates]] * [[https://git.kernel.org/torvalds/c/80955ae955d15ea5c11d55cd50032a5243a6dfd6|driver core updates]] * [[https://git.kernel.org/torvalds/c/e38f734add21d75d76dbcf7b214f4823131c1bae|staging driver updates]] * [[https://git.kernel.org/torvalds/c/bd736f38c014ba70ba7ec3bdc6af6fe5368d6612|tty / serial updates]] * [[https://git.kernel.org/torvalds/c/8c94ccc7cd691472461448f98e2372c75849406c|USB / Thunderbolt updates]] * [[https://git.kernel.org/torvalds/c/ba7dd8570dc8ad4daa3d1c49a137a7b8479eae07|x86 SGX updates]] * [[https://git.kernel.org/torvalds/c/b4442cadca2f97239c8b80f64af7937897b867b1|x86 TDX updates]] * [[https://git.kernel.org/torvalds/c/302d1858654494dbbb8541e3ea5f0f884c0e683c|more s390 updates]] * [[https://git.kernel.org/torvalds/c/5b890ad456b16a5b45e7f86d9708d7248e73d0f8|probes update]] * [[https://git.kernel.org/torvalds/c/a2ded784cd7fd83e567829637068cd86aeffbeaf|tracing updates]] * [[https://git.kernel.org/torvalds/c/24f3a63e1fc36d5d240c1b3973c75618c20cf458|eventfs updates]] * [[https://git.kernel.org/torvalds/c/e7ded27593bf0aff08d18258251e3de0a2697f47|percpu updates]] * [[https://git.kernel.org/torvalds/c/0dde2bf67bcf37f54c829c6c42fa8c4fca78a224|iommu updates]] * [[https://git.kernel.org/torvalds/c/86c4d58a99ab1ccfa03860d4dead157be51eb2b6|iommufd updates]] * [[https://git.kernel.org/torvalds/c/244aefb1c64ad562b48929e6d85e07bc79e331d6|VFIO updates]] * [[https://git.kernel.org/torvalds/c/db5ccb9eb23189e99e244a4915dd31eedd8d428b|CXL (Compute Express Link) updates]] * [[https://git.kernel.org/torvalds/c/0b7359ccddaaa844044c62000734f0cb92ab6310|virtio updates]] * [[https://git.kernel.org/torvalds/c/77c9622d87d21d989eb1a866e4df8eb5e3ce00e0|memblock update]] * [[https://git.kernel.org/torvalds/c/21c91bb9367716f61f46a352aafdeda61cb91c73|backlight updates]] * [[https://git.kernel.org/torvalds/c/4d5d604cc48a7babeb30e97aeb443679415573af|soundwire updates]] * [[https://git.kernel.org/torvalds/c/33a9caa49938eff19a3cc5ffab195649d702540b|phy updates]] * [[https://git.kernel.org/torvalds/c/0f289bdd4102fc870c8b97652c57d41952040d70|input updates]] * [[https://git.kernel.org/torvalds/c/378de6df19800dc2c18c355c8c2c5528f98e879a|RTC updates]] * [[https://git.kernel.org/torvalds/c/ed8d84530ab0a3b7b370e8b28f12179314dcfcc3|i2c updates]] * [[https://git.kernel.org/torvalds/c/2a668d217676c642bec02ee3b5b73a623f194f7a|kgdb update]] * [[https://git.kernel.org/torvalds/c/b5f66ba2d07180706ffa10df07f202335df190f1|Kbuild updates]] * [[https://git.kernel.org/torvalds/c/16df6e07d6a88dc3049a5674654ed44dfbc74d81|netfs updates]] * [[https://git.kernel.org/torvalds/c/8cb1bb178cdbdf005b7ac07bb67a1e1f3e365e5a|more smb server updates]] * [[https://git.kernel.org/torvalds/c/556e2d17cae620d549c5474b1ece053430cd50bc|ceph updates]] * [[https://git.kernel.org/torvalds/c/237c31cb5d83b3f77715f6d6a185f46a5ee4ec88|AppArmor updates]] * [[https://git.kernel.org/torvalds/c/ab1e2d0fccc570c950fd939840ebc8efa3bd39b8|power supply and reset updates]] * [[https://git.kernel.org/torvalds/c/9bc44c51a0461e099d4eb5dff86c2d72f0fb4a6c|devicetree header detangling]] * [[https://git.kernel.org/torvalds/c/24fdd5189914b36102cb51626a890a2d84501993|LoongArch updates]] * [[https://git.kernel.org/torvalds/c/57f22c8dab6b266ae36b89b073a4a33dea71e762|strlcpy removal]] * [[https://git.kernel.org/torvalds/c/9d64bf433c53cab2f48a3fff7a1f2a696bc5229a|perf tools updates]] * [[https://git.kernel.org/torvalds/c/125514880ddd381fdaaa4d11f32afdb55f1c0307|sh updates]] * [[https://git.kernel.org/torvalds/c/c25b24fa72c734f8cd6c31a13548013263b26286|SCSI updates]] * [[https://git.kernel.org/torvalds/c/e5075d8ec5647322fb9e699bfb76331cc8ee098d|more RISC-V updates]] * [[https://git.kernel.org/torvalds/c/80fc600fafee8ba981da6ed41a572800c8e11de6|coccinelle updates]] * [[https://git.kernel.org/torvalds/c/65163d16fcaef37733b5f273ffe4d00d731b34de|dmaengine updates]] * [[https://git.kernel.org/torvalds/c/7a396820222d6d4c02057f41658b162bdcdadd0e|smb client updates]] * [[https://git.kernel.org/torvalds/c/4fbbed7872677b0a28ba8237169968171a61efbd|timer updates]] * [[https://git.kernel.org/torvalds/c/35a4474b5c3dd4315f72bd53e87b97f128d9bb3d|more bcachefs updates]] = Other news sites = * LWN's merge window [[https://lwn.net/Articles/957188/|part 1]], [[https://lwn.net/Articles/958178/|part 2]] * Phoronix's [[https://www.phoronix.com/review/linux-68-features|Linux 6.8 Features]] * Security changes: [[https://paul-moore.com/blog/d/2024/01/linux_v68_merge_window.html|Linux 6.8 Merge Window]]