28552
Comment: move older 2.6 releases to a separate page to keep the page small
|
1055
Linux 5.18 released
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Comprehensible changelog of the linux kernel, inspired by [http://wiki.dragonflybsd.org/index.php/DragonFly_Status Dragonfly's status]. Other places to get news about the linux kernel are [http://www.kernel-traffic.org Kernel traffic], [http://lwn.net/Kernel/ LWN kernel status], [http://lwn.net/Articles/driver-porting/ LWN driver porting guide] and [http://lwn.net/Articles/2.6-kernel-api/ LWN list of API changes in 2.6] - many articles here link to LWN and much of the 2.6.x changelog was restored from them (you may be be interested in subscribing so Jonathan can keep up the good work ;) ). Before adding things here look at the RULES section at the end of the page!! | #pragma keywords Linux, Kernel, Operating System, Linus Torvalds, Open Source, drivers, filesystems, network, memory management, scheduler, preemption, locking #pragma description Summary of the changes and new features merged in the Linux Kernel during the 2.6.x and 3.x development Changes done in each Linux kernel release. Other places to get news about the Linux kernel are [[http://lwn.net/Kernel/|LWN kernel status]] or the Linux Kernel mailing list (there is a web interface in [[http://www.lkml.org|www.lkml.org]] or [[https://lore.kernel.org/lkml/|lore.kernel.org/lkml]]). The lore.kernel.org/lkml/ archive is also available via NTTP if you prefer to use a newsreader: use `nntp://nntp.lore.kernel.org/org.kernel.vger.linux-kernel` for that. List of changes of older releases can be found at LinuxVersions. If you're going to add something here look first at LinuxChangesRules! |
Line 3: | Line 5: |
This page tracks the current stable and development releases. Changes made to older 2.6.x releases can be found in the Linux26Changes page | You can discuss the latest Linux kernel changes on the [[http://forum.kernelnewbies.org/list.php?4|New Linux Kernel Features Forum]]. |
Line 5: | Line 7: |
===== 2.6.15 ===== * '''STILL NOT RELEASED!''' * VFS changes: The "shared subtree" patches have been merged. Consider the following situation: a process wants to clone its own namespace, but still wants to access the CD that got mounted recently. Shared subtree semantics provide the necessary mechanism to accomplish the above. It provides the necessary building blocks for features like per-user-namespace and versioned filesystem. [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/sharedsubtree.txt Documentation], original [http://marc.theaimsgroup.com/?l=linux-fsdevel&m=110565591630267&w=2 Alexander Viro's RFC]. Patches: * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=07b20889e3052c7e77d6a6a54e7e83446eb1ba8 beginning of the shared-subtree proper]: A private mount does not forward or receive propagation. This patch provides user the ability to convert any mount to private * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=03e06e68ff76294e53ffa898cb844d2a997b043e introduce shared mounts]: This creates shared mounts. A shared mount when bind-mounted to some mountpoint, propagates mount/umount events to each other. All the shared mounts that propagate events to each other belong to the same peer-group. * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a58b0eb8e64b78d9315a5491955e78b1391d42e5 introduce slave mounts]: A slave mount always has a master mount from which it receives mount/umount events. Unlike shared mount the event propagation does not flow from the slave mount to the master. * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5afe00221389998a25d611dc7941c06580c29eb6 handling of shared mounts]: This makes bind, rbind, move, clone namespace and umount operations aware of the semantics of slave mount * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b90fa9ae8f51f098ee480bbaabd6867992e9fc58 shared mount handling: bind and rbind]: Implement handling of MS_BIND in presense of shared mounts * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9676f0c6389b62bd6b24d77d4b3abdbcfa32d0f2 unbindable mounts]: An unbindable mount does not forward or receive propagation. Bind semantics: It is invalid to bind mount an unbindable mount. Move semantics: It is invalid to move an unbindable mount under shared mount. Clone-namespace semantics: If a mount is unbindable in the parent namespace, the corresponding cloned mount in the child namespace becomes unbindable too. Note: there is subtle difference, unbindable mounts cannot be bind mounted but can be cloned during clone-namespace. * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2144440327fa01b2f3f65e355120a78211685702 shared mount handling: move]: Implement handling of mount --move in presense of shared mounts * [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a05964f3917c7c55368c229d7985f8e7c9977e97 shared mount handling: umount]: An unmount of a mount creates a umount event on the parent. If the parent is a shared mount, it gets propagated to all mounts in the peer group * Page table scalability improvements: Currently, a single page table lock is used to protect all operations on an address space's page tables. This has been detected to cause scalability problems in largue multiprocessor systems ej: 512-cpu SGI altix, specially in heavily multithreaded workloads (threads of a same process share the same address space and hence the same page table lock). With this patch, a separate spinlock per page-table page is used, to guard the page table entries in that page. Splitting the lock is not quite for free: another cacheline access. So for now enable it by config for machines with 4 or more CPUs. While this (and many other scalability changes) may look high-end oriented now, remember that cheap multi-core desktops CPUs are there. [http://lwn.net/Articles/157151/ (LWN article)] [http://marc.theaimsgroup.com/?l=linux-kernel&m=112603203327134&w=2 (benchmark vs SGI's "reduced locking by using atomic page table operations" non-merged approach)] [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c21e2f2441dc5fbb957b030333f5a3f2d02dea7 (commit)] * .text page fault SMP scalability optimization: This fixes a case where large systems wouldn't scale well while faulting in the .text. The reason was a useless overwrite of the same pte from all cpu [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1a44e149084d772a1bcf4cdbdde8a013a8a1cfde (commit)] * Swaptoken tuning: It turns out that the original swap token implementation, by Song Jiang, only enforced the swap token while the task holding the token is handling a page fault, this patch approximates that, like the page fault code does. It has the effect of automatically, and gradually, disabling the enforcement of the swap token when there is little or no paging going on, and "turning up" the intensity of the swap token code the more the task holding the token is thrashing [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fcdae29aa7a5c79f245110f6680afdc1858d3626 (commit)] * Demand faulting for huge pages [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c887265977213985091476be40ab11dfdcb4caf (commit)] * Add generic memory add/remove and supporting functions for memory hotplug [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3947be1969a9ce455ec30f60ef51efb10e4323d1 (commit)] * "Cooperating processes" for the anticipatory I/O scheduler: Introduce the notion of cooperating processes (those that submit requests close to one another), and use these statistics to make better choices about whether or not to do anticipatory waiting [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f5b3db0017f8415301f3427b30263186e8478c3f (commit)] * IPv4/IPv6: UFO (UDP Fragmentation Offload) Scatter-gather approach: UFO is a feature wherein the Linux kernel network stack will offload the IP fragmentation functionality of large UDP datagram to hardware. This will reduce the overhead of stack in fragmenting the large UDP datagram to MTU sized packets [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e89e9cf539a28df7d0eb1d0a545368e9920b34ac (commit)] * make /proc/mounts pollable [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5addc5dd8836aa061f6efc4a0d9ba6323726297a (commit)] * ppc64: support 64k pages. Adds a new CONFIG_PPC_64K_PAGES which, when enabled, changes the kernel base page size to 64K. The resulting kernel still boots on any hardware. On current machines with 4K pages support only, the kernel will maintain 16 "subpages" for each 64K page transparently [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3c726f8dee6f55e96475574e9f645327e461884c (commit)] * Add the infrastructure to support hotplug CPU on ARM [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a054a811597a17ffbe92bc4db04a4dc2f1b1ea55 (commit)] * x86 hot plug CPU support of physical add of new processors (hotplug add/remove of already existing CPUs was already supported) [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f40a72a7e819789f66910c8cd60aab005cdb413 (commit)] * ppc64: CPU freq support using 970FX powertune facility for iMac G5 and SMU based single CPU desktop [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4350147a816b9c5b40fa59e4fa23f17490630b79 (commit)] * ppc64: Adds the ability to the SMU driver to recover missing calibration partitions from the SMU chip itself. It also adds some dynamic mecanism to /proc/device-tree so that new properties are visible to userland [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=183d020258dfd08178a05c6793dae10409db8abb (commit)] * ppc64: This adds a new thermal control framework for PowerMac, along with the implementation for PowerMac8,1, PowerMac8,2 (iMac G5 rev 1 and 2), and PowerMac9,1 (latest single CPU desktop) [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=75722d3992f57375c0cc029dcceb2334a45ceff1 (commit)] * Add LSM hooks for key management facilities (see link) [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=29db9190634067c5a328ee5fcc2890251b836b4b (commit)] * RCU torture-testing kernel module: This adds a tristate CONFIG_RCU_TORTURE_TEST, which enables an intense torture test of the RCU infratructure. This is needed for testing due to the continued changes to the RCU infrastructure [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a241ec65aeac3d69a08a7b153cccbdb7ea35063f (commit)] * Support for shared HPET interrupts: The driver previously acknowledged interrupts for both edge and level interrupts, but didn't actually allow a shared interrupt in the latter case [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d29086177aaa1e7d14e6ebb7fc067b3ca6d5c11 (commit)] * Driver Core: add the ability for class_device structures to be nested: Allows struct class_device to be nested, so that another struct class_device can be the parent of a new one, instead of only having the struct class be the parent [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=51d172d5f3a193e4b8f76179b2e55d7a36b94117 (commit)] * Add vmalloc_node(size, node) (allocate necessary memory on the specified node) and get_vm_area_node(size, flags, node) [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=930fc45a49ddebe7555cc5c837d82b9c27e65ff4 (commit)] * Generic dispatch queue: Implements generic dispatch queue which can replace all dispatch queues implemented by each iosched [http://marc.theaimsgroup.com/?l=linux-kernel&m=112238633622498&w=2 (mailing list)] [http://lwn.net/Articles/157208/ (LWN article)] [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8922e16cf6269e668123acb1ae1fdc62b7a3a4fc (commit)] * Reimplement elevator online switching code [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cb98fc8bb9c141009e2bda99c0db39d387e142cf (commit)] * Process Events Connector: It reports fork, exec, id change, and exit events for all processes to userspace. Applications that may find these events useful include accounting/auditing (e.g. ELSA), system activity monitoring (e.g. top), security, and resource management (e.g. CKRM) [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f46080c41d5f3f7c00b4e169ba4b0b2865258bf (commit)] * Optimized SHA1 implementation for ARM [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c09f98271f685af349d3f0199360f1c0e85550e0 (commit)] * Add sysfs support for ide tape [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d5dee80ad69439ad8dccf8fa4d7fed0068aec9cf (commit)] * Add "revision" support for having multiple revisions for each match/target in arp_tables and ip6_tables [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b7d31fcdda5938e5d3f1f8b0922cc25aa200dfc (commit)] * Support for the Artemis and ATIK astronomical based USB CCD cameras [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c9c7746dd333c12f482af2f1e63ea7eafc7cd529 (commit)] * USB: delete the bluetty driver [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a6c82600d4058346ea6fd801bc21d7abcc1350d8 (commit)] * Nokia 7600/6230(i)/6170/66x0 DKU2 USB driver [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=50260b69bbec383058875de26dbde28b1a6f8d00 (commit)] * Nvidia Geforce 7800 series (7800, 7800 GTX, 7800 GO and 7800 GTX GO cards) framebuffer support [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7015faa7df829876a0f931cd18aa6d7c24a1b581 (commit)], Mystique AGP support [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63921fbfbd87ec745e65d2e9aecdfdc9a4ce73f2 (commit)], add partial support for GMA900 within the i915GM chipset [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3a59026ba111d85b1a86af0f1c4e5a8ef1242d82 (commit)] * MPC8xx PCMCIA support (PowerPC 8xx series PCMCIA controller) [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=de957c89b7dadb3147e885d7b6eb9db73d0eea57 (commit)] * Adds a RapidIO subsystem to the kernel. RIO is a switched fabric interconnect used in higher-end embedded applications [http://www.rapidio.org http://www.rapidio.org] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=394b701ce4fbfde919a9bcbf84cb4820a7c6d47c (commit)] * Support for SA1100 Jornada flash device support [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=183e1a349466a1b90430a58f3efad25a3e555cb2 (commit)] * Resurrect Cobalt (MIPS-based) support for 2.6 [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c4ed38a0c6e2e5c4906296758f816ee71373792f (commit)] * Base Au1200 (MIPS-based) 2.6 support [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e3ad1c23ba72214669b364c6fa304531dc768c3e (commit)] * Add support for BCM1480 family of chips (MIPS-based) [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f137e463b50aadba91bd116f99c59ccb9c15a12f (commit)] * Support for sharp zaurus sl-5500 touchscreen [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1753298947afe5eb56da755bc057f1868f345ec1 (commit)] and its PCMCIA slot [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77bb86a1b9f8b872d8efc33c4f4359f809220252 (commit)] * Add support for the Sharp SL-6000x (Tosa) series of PDAs [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8459c159f7de832eaf888398d2abf466c388dfa6 (commit)] * SuperHyway support for SH4-202 [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d5cb9783536a41df9f9cba5b0a1d78047ed787f7 (commit)] * Add support for the AMCC PowerPC 440SPe SoC, including PCI Express in root port mode [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b0f7b8bc57ee90138a7c429951457027a90c326f (commit)] * SHM_NORESERVE flags for shmget(): Similar to MAP_NORESERVE for shared memory segments. This is mainly to avoid abuse of OVERCOMMIT_ALWAYS and this flag is ignored for OVERCOMMIT_NEVER [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf8f972d3a1daf969cf44f64cc36d53bfd76441f (commit)] ===== 2.6.14 ===== * Released October 27, 2005 [http://kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.14 changelog] * Numa-aware slab allocator: It creates slabs on multiple nodes and manages slabs in such a way that locality of allocations is optimized. Each node has its own list of partial, free and full slabs. All object allocations for a node occur from node specific slab lists [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e498be7dafd72fd68848c1eef1575aa7c5d658df (commit - benchmarks)] * Lazy page table copies in fork() for VMAs without anonymous pages (the ones with anonymous pages are still copied): Defer copying of ptes until fault time when it is possible to reconstruct the pte from backing store, speeding up fork() greatly specially for processes using lots of shared memory [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d992895ba2b27cf5adf1ba0ad6d27662adc54c5e (commit)] * Add /proc/$PID/smaps: This file will shows how much memory is resident in each mapping. Useful for people who want to perform memory consumption analysis [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e070ad49f31155d872d8e96cab2142840993e3c0 (commit)] * Add /proc/$PID/numa_maps: This file will show on which nodes pages reside [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6e21c8f145f5052c1c2fb4a4b41bee01c848159b (commit)] * Lock-free file descriptor look-up [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ab2af1f5005069321c5d130f09cce577b03f43ef (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b835996f628eadb55c5fb222ba46fe9395bf73c7 (commit)] * Four-level page table support for the ppc64 architecture: extends the usable user address range to 44 bits (16T). [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e28f7faf05159f1cfd564596f5e6178edba6bd49 (commit)] * Support hotplug cpu on 32-bit SMP powermacs: When a cpu is off-lined, it is put into sleep mode with interrupts disabled. It can be on-lined again by asserting its soft-reset pin, which is connected to a GPIO pin [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31139971b3dc9fbb2e8a8572fb81e6e8470f363a (commit)] * Add TASK_NONINTERACTIVE task state bit to the cpu scheduler: It can be used by blocking points to mark the task's wait as "non-interactive". This does not mean the task will be considered a CPU-hog - the wait will simply not have an effect on the waiting task's priority - positive or negative alike [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d79fc0fc6645b0cf5cd980da76942ca6d6300fa4 (commit)] * [http://www.ietf.org/rfc/rfc2637.txt PPTP] (Point-to-Point Tunneling Protocol) conntrack support and NAT helper added to allow proper management of multiple NAT'd PPTP connections. PPTP, a Microsoft-designed protocol, is used in many places to provide VPN access due to the native support in Microsoft Windows. [http://en.wikipedia.org/wiki/PPTP Wikipedia article] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=926b50f92a30090da2c1a8675de954c2d9b09732 (commit)] * DCCP: "Datagram Congestion Control Protocol". Datagram protocol (like UDP), but with a congestion control mechanism. [http://lwn.net/Articles/149756/ (LWN article)] Currently a [http://www.icir.org/kohler/dcp/draft-ietf-dccp-spec-11.txt RFC draft] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c657876b63cb1d8a2ec06f8fc6c37bb8412e66c (commit)] * Implement SKB fast cloning: Protocols that make extensive use of SKB cloning, for example TCP, eat at least 2 allocations per packet sent as a result. To cut the kmalloc() count in half, we implement a pre-allocation scheme wherein we allocate 2 sk_buff objects in advance, then use a simple reference count to free up the memory at the correct time [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d179cd12928443f3ec29cfbc3567439644bd0afc (commit)] * Add netlink connector: userspace <-> kernel space easy to use communication module which implements easy to use bidirectional message bus using netlink as its backend [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7672d0b54411371e0b6a831c1cb2f0ce615de6dc (commit)], also a "async connector mode" [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=acd042bb2de50d4e6fb969281a00cc8b8b71e46d (commit)] * IPV6: Support several new sockopt / ancillary data in Advanced API (RFC3542): IPV6_RECVPKTINFO, IPV6_PKTINFO, IPV6_RECVHOPOPTS, IPV6_HOPOPTS, IPV6_RECVDSTOPTS, IPV6_DSTOPTS, IPV6_RTHDRDSTOPTS, IPV6_RECVRTHDR, IPV6_RTHDR, IPV6_RECVHOPOPTS, IPV6_HOPOPTS, IPV6_{RECV,}TCLASS [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=333fad5364d6b457c8d837f7d05802d2aaf8a961 (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=41a1f8ea4fbfcdc4232f023732584aae2220de31 (commit)] * [http://fuse.sourceforge.net/ FUSE]: Allows to implement a fully functional filesystem in a userspace program [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d8a5ba45457e4a22aa39c939121efd7bb6c76672 (commit)] * [http://v9fs.sourceforge.net/ 9P support]: Linux port of the [http://www.cs.bell-labs.com/sys/doc/9.html Plan9]'s [http://plan9.bell-labs.com/sys/man/5/INDEX.html 9P protocol] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=93fa58cb831337fdf5d36b3b913441100a484dae (commit)] * [http://relayfs.sourceforge.net/ RelayFS]: Relayfs is just a bunch of per-cpu kernel buffers that can be efficiently written into from kernel code. These buffers are represented as files which can be mmap'ed and directly read from in user space. The purpose of this setup is to provide the simplest possible mechanism allowing potentially large amounts of data to be logged in the kernel and 'relayed' to user space." [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e82894f84dbba130ab46c97748c03647f8204f92 (commit)] * securityfs filesystem [http://lwn.net/Articles/153366/ (LWN article)] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b67dbf9d4c1987c370fd18fdc4cf9d8aaea604c2 (commit)] * Suspend support for CIFS filesystem [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ede1327ea4ca8019ec6df24b3e837def091c26b8 (commit)] * Enable atomic inode security labeling on ext3 and ext2: it enables atomic security labeling of newly created inodes by altering the fs code to invoke a new LSM hook to obtain the security attribute to apply to a newly created inode and to set up the incore inode security state during the inode creation transaction. This parallels the existing processing for setting ACLs on newly created inodes [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5e41ff9e0650f327a6c819841fa412da95d57319 (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=10f47e6a1b8b276323b652053945c87a63a5812d (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ac50960afa31877493add6d941d8402fa879c452 (commit)] * SELinux memory improvements: Reduce access rules memory usage by 20x [http://www.livejournal.com/users/james_morris/6197.html James Morris explanation] [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=782ebb992ec20b5afdd5786ee8c2f1b58b631f24 (commit)] * NTFS: Support journals ($Logfile) which have been modified by chkdsk. This means users can boot into Windows after we marked the volume dirty. The Windows boot will run chkdsk and then reboot. The user can then immediately boot into Linux rather than having to do a full Windows boot first before rebooting into Linux [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7a1033b946f4f2622f2b338ab107f559aad542c (commit)] * SAS transport class [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c7ebbbce366c02e5657ac6b6059933fe0353b175 (commit)] * Remove ACPI S4 BIOS support [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b01d8684e9e5b04270970c97df856d47668267e3 (commit)] * [http://ipw2100.sourceforge.net/ ipw2100] and [http://ipw2200.sourceforge.net/ ipw2200] wireless drivers (intel centrino) [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2c86c275015c880e810830304a3a4ab94803b38b (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43f66a6ce8da299344cf1bc2ac2311889cc88555 (commit)] * [http://hostap.epitest.fi/ HostAP]: Adds support to work as "Wireless Access Point" [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ff1d2767d5a43c85f944e86a45284b721f66196c (commit)] * [http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Linux.Wireless.Extensions.html Wireless extensions] API update to version 19 [http://marc.theaimsgroup.com/?l=linux-netdev&m=112568599006559&w=2 (mail)] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6582c164f2b3b6e58d1f13c1c031b19ee691eb14 (commit)] * ISA DMA suspend for x86/x86-64 [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=795312e763569ce4df67e7a0ca726a9901358fa2 (commit)] - [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7dc24db1757f950f8bd21b7191106d4bf5134be7 (commit)] * PCI: Support PCI PM CAP version 3 [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3fe9d19f9e86a55679f5f2b38ec0a43a1a510cee (commit)] * Keys: Add possessor permissions to keys. It adds extra permission grants to keys for the possessor of a key in addition to the owner, group and other permissions bits. This makes SUID binaries easier to support without going as far as labelling keys and key targets using the LSM facilities [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=664cceb0093b755739e56572b836a99104ee8a75 (commit)] * Driver for the IBM Hard Drive Active Protection System (HDAPS), an accelerometer found in most modern Thinkpads [http://lwn.net/Articles/155440/ (LWN article)] [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=860e1d6b46bd4cbc67d8d065f0f682143513382f (commit)] * Add Apple USB touchpad driver for the USB touchpad which can be found on post-February 2005 Apple Powerbooks [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f7214ff4e8248513ec626212b2c1a3ca0b2a0888 (commit)] * Spinlock consolidation [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fb1c8f93d869b34cacb8b8932e2b83d96a19d720 (commit)] * Largefile support for accounting: The accounting subsystem in the kernel can not correctly handle files larger than 2GB. This fixes it by adding the O_LARGEFILE flag [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c9c0b52b8c6b68b05bb06efd7079a8fc5e9ba60 (commit)] * Detect soft lockups, new debug feature (CONFIG_DETECT_SOFTLOCKUP). When enabled then per-CPU watchdog threads are started, which try to run once per second. If they get delayed for more than 10 seconds then a callback from the timer interrupt detects this condition and prints out a warning message and a stack dump [http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8446f1d391f3d27e6bf9c43d4cbcdac0ca720417 (commit)] * Add kzalloc(): new function, it allows to obtain pre-zeroed memory [http://lwn.net/Articles/147014/ (LWN article)] [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dd3927105b6f65afb7dac17682172cdfb86d3f00 (commit)] * Add schedule_timeout_{,un}interruptible() [http://lwn.net/Articles/149019 (LWN article)] [http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64ed93a268bc18fa6f72f61420d0e0022c5e38d1 (commit)] TODO: * Import relevant data from [http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.14-rc5/2.6.14-rc5-mm1/broken-out/post-halloween-doc.patch davej's post halloween document] or remaining stuff from [http://kernelnewbies.org/status/latest.html Kernelnewbies status] * Find links to corresponding changesets (!!) * Keep track of what gets changed |
<<Include(Linux_5.18)>> |
Changes done in each Linux kernel release. Other places to get news about the Linux kernel are LWN kernel status or the Linux Kernel mailing list (there is a web interface in www.lkml.org or lore.kernel.org/lkml). The lore.kernel.org/lkml/ archive is also available via NTTP if you prefer to use a newsreader: use nntp://nntp.lore.kernel.org/org.kernel.vger.linux-kernel for that. List of changes of older releases can be found at LinuxVersions. If you're going to add something here look first at LinuxChangesRules!
You can discuss the latest Linux kernel changes on the New Linux Kernel Features Forum.
Linux 5.18 was released on Sunday, 22 May 2022.
Summary: This release includes support for user events, which allow processes to create and write to trace events that are isolated from kernel trace level events and will only provide trace information when the trace is enabled; support for Intel Indirect Branch Tracking on Intel CPUs, which helps to prevent some kinds of exploits; stricter memcpy() compile-time bounds checking, better process scheduling performance on AMD Zen processors; support for fprobe, which allows faster probing of function calls; some preparation work for header rearchitecting that will provide faster compilation times; support for Btrfs encoded I/O, cross-mount reflink/dedupe and performance improvements; and switch to the C11 standard. As always, there are many other features, new drivers, improvements and fixes.
Contents
-
Prominent features
- Support for Indirect Branch Tracking on Intel CPUs
- User events
- Better process scheduling performance on AMD Zen
- fprobe, for probing multiple functions with a single probe handler
- Headers rearchitecturing preparations for faster compilation times
- Btrfs: Encoded I/O, cross-mount reflink/dedupe and performance improvements
- Stricter memcpy() compile-time bounds checking
- Switch to C11
- Core (various)
- File systems
- Memory management
- Block layer
- Tracing, perf and BPF
- Virtualization
- Cryptography
- Security
- Networking
- Architectures
-
Drivers
- Graphics
- Power Management
- Storage
- Drivers in the Staging area
- Networking
- Audio
- Tablets, touch screens, keyboards, mouses
- TV tuners, webcams, video capturers
- Universal Serial Bus
- Serial Peripheral Interface (SPI)
- Watchdog
- Serial
- CPU Frequency scaling
- Voltage, current regulators, power capping, power supply
- Real Time Clock (RTC)
- Pin Controllers (pinctrl)
- Multi Media Card (MMC)
- Memory Technology Devices (MTD)
- Industrial I/O (iio)
- Multi Function Devices (MFD)
- Pulse-Width Modulation (PWM)
- Inter-Integrated Circuit (I2C + I3C)
- Hardware monitoring (hwmon)
- General Purpose I/O (gpio)
- Leds
- DMA engines
- Hardware Random Number Generator (hwrng)
- Cryptography hardware acceleration
- PCI
- FRU Support Interface (FSI)
- Clock
- PHY ("physical layer" framework)
- EDAC (Error Detection And Correction)
- Various
- List of Pull Requests
- Other news sites
1. Prominent features
1.1. Support for Indirect Branch Tracking on Intel CPUs
Indirect Branch Tracking is a feature found in Intel CPUs that attempts to improve security by forcing that functions called with indirect calls start with a specific ENDBR instruction. The instruction by itself does nothing, but if the code being called lacks it, the CPU will refuse to run it. The compiler inserts the required instructions where necessary to make this happen. This makes harder for a exploit (and proprietary modules) to call some random function.
Recommended LWN article: Indirect branch tracking for Intel CPUs
1.2. User events
Linux already has a method that allows tracing user space processes with the kernel tracing tools (uprobes). This release adds a new ABI that allow processes to create and write to trace events that are isolated from kernel trace level events. This enables a faster path for tracing from user mode data as well as opens managed code to participate in trace events, where stub locations are dynamic.
Processes often want to trace only when it's useful. A process can register an event describing the format of the event to the kernel. The kernel will create the event. The process will then receive a byte in a page mapping from a mapped tracefs file that it can check against. A privileged task can enable that event, which will change the mapped byte to true. The process can then start writing the event to the tracing buffer.
Links: Documentation, Example.
1.3. Better process scheduling performance on AMD Zen
Some CPUs, like AMD Zen, have multiple Last Level Caches per node with local memory channels and due to the allowed imbalance, it's far harder to tune some workloads to run optimally than it is on hardware that has 1 LLC per node. This release adjusts the imbalance on multi-LLC machines to allow an imbalance up to the point where LLCs should be balanced between nodes, which improves significantly the performance in some workloads.
1.4. fprobe, for probing multiple functions with a single probe handler
Linux already provices ways to probe function calls. This release includes a new one, fprobe, which is based on ftrace. The reasons why this new probe API exists is that it doesn't use the ftrace full features, it just provides a way to attach callbacks on function entry and exit. Unlike kprobes and kretprobes, fprobe gives faster+instrumentation for multiple functions with single handler.
Documentation: Fprobe - Function entry/exit probe
1.5. Headers rearchitecturing preparations for faster compilation times
A major rearchitecting of the kernel headers for significantly faster builds has been proposed; this release introduces some of these changes in the task scheduler.
1.6. Btrfs: Encoded I/O, cross-mount reflink/dedupe and performance improvements
The Btrfs file system supports transparent compression. When using send/receive, the sending side decompresses the data and the receiving side recompresses it before writing it out. This release lets user space tools avoid the extra decompression/compression by letting send/receive read and write compressed extents directly.
This release also adds support for cross-mount reflink/dedupe support, and several substantial performance improvements, especially for fsync-based workloads. There also are some preparations for the future extent tree v2 changes.
1.7. Stricter memcpy() compile-time bounds checking
This release implements stricter (no struct member overflows) bounds checking for memcpy(), memmove(), and memset() under CONFIG_FORTIFY_SOURCE. In order to eliminate a large class of common buffer overflow flaws that continue to persist in the kernel, these changes perform bounds checking of the destination struct member when they have a known size. This would have caught all of the memcpy()-related buffer write overflow flaws identified in at least the last three years
Recommended LWN article: Strict memcpy() bounds checking for the kernel
1.8. Switch to C11
The Linux kernel has relied until now on the C89 for various reasons. This release will switch to the C11 standard.
Recommended LWN article: https://lwn.net/Articles/885941/
2. Core (various)
locking: Enable RT_MUTEXES by default on PREEMPT_RT commit
Allow to collect all CPUs backtraces during a panic event and also to enable "panic_print" in a kdump event commit, commit, commit
- Scheduler
- io_uring
Add support for ring messages. A new IORING_OP_MSG_RING command allows an SQE to signal another ring. That allows either waking up someone waiting on the ring, or even passing a 64-bit value via the user_data field in the CQE commit, commit
Lots of workloads use multiple threads, in which case the file table is shared between them, getting and putting the ring file descriptor for each io_uring_enter(2) system call is more expensive, as it involves an atomic get and put for each call. Similarly to how io_uring allows registering normal file descriptors to avoid this overhead, this release adds support for an io_uring_register(2) API that allows to register the ring fds themselves (IORING_REGISTER_RING_FDS and IORING_UNREGISTER_RING_FDS commands) commit
Support for NAPI poll on sockets commit
Make statx API stable commit
rseq: Remove broken uapi field layout on 32-bit little endian commit
userfaultfd: provide unmasked address on page-fault commit
docs: add two texts covering regressions commit, commit, commit
- kbuild
Enable -Warray-bounds commit
Enable -Wzero-length-bounds commit
(FEATURED) Optimize scheduler build time commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Allow CONFIG_DEBUG_INFO_DWARF5=y + CONFIG_DEBUG_INFO_BTF=y commit, commit, commit, commit, commit
Enable -Werror by default on x86 commit
Remove '-mno-global-merge' from build flags as it causes warnings for UML, and it no longer appears to be necessary commit
Add --target to correctly cross-compile UAPI headers with Clang commit
objtool: Add --dry-run commit
Add new environment variables, USERCFLAGS and USERLDFLAGS to allow additional flags to be passed to user-space programs commit
3. File systems
- BTRFS
(FEATURED) Speedup directory logging/fsync, by avoiding logging dentries created in past transactions, which helps reducing a lot the amount of logged metadata, and therefore less IO as well for large directories (up to -90% run time) commit, commit, commit, commit
Speedup and avoid inode logging during rename/link (up to -60% run time) commit, commit, commit, commit, commit, commit
Prepare extents to be logged before locking a log tree path (throughput +7%) commit, commit, commit, commit, commit, commit
Stop copying old file extents when doing a full fsync commit, commit, commit, commit, commit, commit
(FEATURED) Encoded read/write ioctls, allows user space to read or write compressed raw data directly to extents, which avoids compression/recompression in some cases. Requires send tools that use the send/receive v2 ioctls commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Preparation for extent tree v2: global roots and block group root support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Implement metadata DUP for zoned mode commit, commit, commit, commit
checker: verify the transaction id of the to-be-written dirty extent buffer commit
- F2FS
Introduce F2FS_IPU_HONOR_OPU_WRITE ipu policy commit
Introduce F2FS_UNFAIR_RWSEM to support unfair rwsem commit
Support idmapped mounts commit
Add a sysfs entry to call checkpoint during fsync() in order to avoid long elapsed time to run roll-forward recovery when booting the device commit
Expose discard related parameters in sysfs commit
Introduce gc_urgent_mid mode commit
Remove obsolete whint_mode commit
- NFS
4.1 support for NFS4_RESULT_PRESERVER_UNLINKED, which tells the client that it does not need to do a silly rename of an opened file when it's being removed commit
Readdir improvements commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Provide mount option to toggle discovery of trunking locations commit
Add support for the birth time attribute commit
- EXT4
- CEPH
- REISERFS
Deprecate reiserfs commit
4. Memory management
NUMA balancing: optimize memory placement for memory tiering system commit, commit, commit
Adds vmalloc tagging support for SW_TAGS and HW_TAGS KASAN modes commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- kfence
- memcg
- DAMON
Memory management folio patches (get_user_pages, vmscan, start on the page cache, make readahead use large folios) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Filesystem conversions to folio structures commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Free the 2nd vmemmap page associated with each HugeTLB page commit, commit, commit, commit, commit
hwpoison-inject: support injecting hwpoison to free page commit
Rework of mlock+munlock page handling to massively reduce the contention on i_mmap_rwsem when many processes mlock the same file and exit commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
page_owner: Extend page_owner to show memcg information commit, commit, commit, commit
zswap: allow handling just same-value filled pages commit
Optimize list lru memory consumption commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
madvise: Add MADV_DONTNEED_LOCKED. Like DONTNEED, but drop locked pages too commit
Attempt to optimize and streamline the COW logic for ordinary anon pages and THP anon pages, fixing two remaining instances of CVE-2020-29374 in do_swap_page() and do_huge_pmd_wp_page(): information can leak from a parent process to a child process via anonymous pages shared during fork() commit, commit, commit, commit, commit, commit, commit, commit, commit
page_pool: Add stats counters commit, commit, commit, commit, commit
- tmpfs
- tools/vm/page_owner_sort.c
usercopy: Check valid lifetime via stack depth commit
5. Block layer
Add support for direct I/O with fscrypt using blk-crypto commit, commit, commit, commit, commit
Remove remaining parts of congestion tracking code commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for 64-bit data integrity in the block layer and in NVMe commit, commit, commit, commit, commit, commit, commit, commit
libnvdimm: Jettison block-aperture-window support commit, commit, commit, commit, commit, commit
scsi: target: Add iscsi/cpus_allowed_list in configfs commit
scsi_debug: Add no_rwlock parameter commit
scsi: Make "access_state" sysfs attribute always visible commit
Deprecate autoloading based on dev_t commit
- nvme
6. Tracing, perf and BPF
- perf
Add perf interface to expose nvdimm commit, commit, commit, commit
Introduce threaded trace streaming for basic perf record operation commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
libperf: Add API for allocating new thread map array commit
ftrace latency: Add -n/--use-nsec option commit
perf lock: Add --synth=no option for record commit
perf lock: Add -F/--field option to control output commit
perf lock: Add -c/--combine-locks option commit
perf script: Add 'brstackinsnlen' for branch stacks commit
perf tools: Enhance the matching of sub-commands abbreviations commit
- BPF
Extend the interoperability with IMA, to give wider flexibility for the implementation of integrity-focused LSMs based on eBPF commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for transmitting packets using XDP in bpf_prog_run() commit, commit, commit, commit, commit
Add bpf_copy_from_user_task helper and sleepable bpf iterator programs commit, commit, commit, commit
Allow cgroup progs to export custom retval to userspace commit, commit, commit, commit
Adds new link type BPF_TRACE_KPROBE_MULTI that attaches kprobe program through fprobe API. The fprobe API allows to attach probe on multiple functions at once very fast, because it works on top of ftrace. On the other hand this limits the probe point to the function entry or return commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Light skeleton for the kernel that performs program loading and map creation tasks without libbpf commit, commit, commit, commit, commit
Enable non-atomic allocations in local storage commit
Batching iter for AF_UNIX sockets commit, commit, commit, commit, commit
Add __user tagging support in vmlinux BTF commit, commit, commit, commit, commit
Support BPF_PROG_QUERY for progs attached to sockmap commit
cgroup/bpf: fast path skb BPF filtering commit
- bpftool
Add BPF_TRACE_KPROBE_MULTI to attach type names table commit
Add C++-specific open/load/etc skeleton wrappers commit
Add bpf_cookie to link output commit
Implement BTFGen commit, commit, commit, commit, commit, commit, commit
Switch to new versioning scheme (align on libbpf's) commit, commit
Add support for subskeletons commit, commit, commit, commit, commit
Add support for BTF program names commit
Streamline netlink-based XDP APIs commit, commit, commit, commit
fprobe: Introduce fprobe function entry/exit probe commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- libbpf
- tracing
(FEATURED) New user_events interface. User space can register an event with the kernel describing the format of the event. Then it will receive a byte in a page mapping that it can check against. A privileged task can then enable that event like any other event, which will change the mapped byte to true, telling the user space application to start writing the event to the tracing buffer commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add new ftrace_boot_snapshot kernel command line parameter. When set, the tracing buffer will be saved in the snapshot buffer at boot up when the kernel hands things over to user space. This will keep the traces that happened at boot up available even if user space boot up has tracing as well commit
Allow custom events to be added to the tracefs directory commit
rtla: Improved tracing support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
7. Virtualization
vmgenid: notify RNG of VM fork and supply generation ID commit
Introduce akcipher service for virtio-crypto commit, commit, commit
KVM: mmu: Zap only obsolete roots on "reload" commit, commit, commit, commit, commit, commit
vdpa: add two ioctl commands to support generic vDPA commit, commit
hv: balloon: Support status report for larger page sizes commit
8. Cryptography
Introduce a new Linux kernel keyring containing the TPM's Machine Owner Keys (MOK) called machine. In the mok side, the MokListTrustedRT UEFI variable can be set, from which kernel knows that MOK keys are kernel trusted keys and they are populated to the machine keyring. This keyring linked to the secondary trusted keyring, which means that can be used like any kernel trusted keys. This keyring of course can be used to hold other MOK'ish keys in other platforms in future. See instructions here. commit, commit, commit, commit, commit, commit, commit, commit
dh: infrastructure for NVM in-band auth and FIPS conformance commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
KEYS: encrypted: Instantiate key with user-provided decrypted data commit
KEYS: remove support for asym_tpm keys commit
9. Security
- Random: Changes to the RNG's crypto, the intent for 5.18 has been to shore up the existing design as much as possible with modern cryptographic functions and proven constructions, rather than actually changing up anything fundamental to the RNG's design. So it's still the same old RNG at its core as before: it still counts entropy bits, and collects from the various sources with the same heuristics as before, and so forth. However, the cryptographic algorithms that transform that entropic data into safe random numbers have been modernized
Use RDSEED when we can rather than using RDRAND, and make sure RDRAND/RDSEED input always goes through the mixer rather than being xor'd into our state directly, in part in order to prevent ridiculous hypothetical cpu backdoors commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Use computational hash for entropy extraction commit, commit, commit, commit, commit
Treat bootloader trust toggle the same way as cpu trust toggle commit
Give sysctl_random_min_urandom_seed a more sensible value commit
Do not allow user to keep crng key around on stack commit
(FEATURED) Strict compile-time buffer size checking under FORTIFY_SOURCE for the memcpy()-family of functions commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
audit: log AUDIT_TIME_* records only from rules commit
overflow: Implement size_t saturating arithmetic helpers commit
usercopy: Disable CONFIG_HARDENED_USERCOPY_PAGESPAN (will be replaced) commit
10. Networking
Introduce XDP multi-buffer support, allowing the use of XDP with jumbo frame MTUs and combination with Rx coalescing offloads (LRO) commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- TCP
Make hash rethink configurable commit, commit, commit, commit, commit
Add new protocol attribute to IPv4 and IPv6 addresses. Inspiration was taken from the protocol attribute of routes. User space applications like iproute2 can set/get the protocol with the Netlink API. Scenarios where you want to distinguish between addresses coming from a specific protocol like DHCP and addresses that have been statically set commit
Allow SO_MARK with CAP_NET_RAW via cmsg commit
- bonding
- Bridge
ip6_tunnel: allow routing IPv4 traffic in NBMA mode commit
ip6mr: add support for passing full packet on wrong mif commit
Speedup namespace dismantles commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
IPv4: Namespaceify min_adv_mss sysctl knob commit
IPv4: Reject again rules with high DSCP values commit
IPv6: remove requirement about the netns loopback device being the last device being dismantled commit, commit, commit, commit
- Wireless
HW counters for soft devices commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
drop_monitor: support drop reason commit
- DSA
Replay and offload host VLAN entries commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Unicast filtering commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
FDB isolation commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
FDB entries on DSA LAG interfaces commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- ethtool
flow_dissector: Add support for High-availability Seamless Redundancy commit, commit
geneve: support IPv4/IPv6 as inner protocol commit
macvtap: advertise link netns via netlink commit
MCTP tag control interface commit, commit, commit, commit, commit
- mptcp
Add SO_SNDTIMEO socket option commit, commit, commit, commit, commit, commit, commit, commit
Improve set-flags command commit, commit, commit, commit, commit, commit, commit, commit, commit
Advertisement reliability improvement commit, commit, commit, commit, commit, commit, commit, commit, commit
Send ADD_ADDR echo before create subflows commit
- netfilter
Add unstable conntrack lookup helpers using BPF kfunc support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
conntrack: mark UDP zero checksum as CHECKSUM_UNNECESSARY commit
conntrack: revisit gc autotuning commit
exthdr: add support for tcp option removal commit
nfqueue: enable to get skb->priority commit
openvswitch: IPv6: Add IPv6 extension header support commit
ping6: support basic socket cmsgs commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
ping6: support setting basic SOL_IPV6 options via cmsg commit, commit, commit, commit, commit
rfkill: make new event layout opt-in commit
vxlan metadata device vnifiltering support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- Bluetooth
route: Generate netlink notification when default IPv6 route preference changes commit
SUNRPC: Teach server to recognize RPC_AUTH_TLS authentication commit
- sched
Set default rss queues num to physical cores / 2 commit
- SMC
tun: support NAPI for packets received from batched XDP buffs commit
Introduce xdp frags support to veth driver commit, commit, commit
vxcan: enable local echo for sent CAN frames commit
11. Architectures
11.1. ARM
- Device Tree Sources
New SoCs
Airoha (formerly Mediatek/EcoNet) EN7523 networking SoC and EVB commit, commit
Mediatek mt6582 tablet platform with the Prestigio PMT5008 3G tablet commit
Microchip Lan966 networking SoC and it evaluation board commit
Qualcomm Snapdragon 625/632 midrange phone SoCs, with the LG Nexus 5X and Fairphone FP3 phones commit, commit
Renesas RZ/G2LC and RZ/V2L general-purpose embedded SoCs, along with their evaluation boards commit, commit, commit, commit, commit
Samsung Exynos 850 phone SoC and reference board commit, commit
Samsung Exynos7885 with the Samsung Galaxy A8 (2018) phone commit
Tesla FSD (Fully Self-Driving), an automotive SoC loosely derived from the Samsung Exynos family commit, commit, commit, commit, commit, commit, commit, commit, commit
Add initial support for the i.MXRTxxxx SoC family commit
- New machines
Allwinner: A20-Marsboard development board commit
- Amlogic
Arm Juno: Separate DT depending on SCMI firmware version commit
- Aspeed
Broadcom: Raspberry Pi Zero 2 W commit
- Marvell MVEBU/Armada:
- Mstar
NXP i.MX: Numerous i.MX8M Mini based boards in even more variations: Protonic PRT8MM, emCON-MX8M Mini, Toradex Verdin, and Gateworks GW7903 commit, commit, commit, commit
- Qualcomm
TI OMAP: SanCloud BeagleBone Enhanced WiFi commit
- Rockchip
Add initial support for Prestigio PMT5008 3G tablet commit
arria5: add board compatible for SoCFPGA DK commit
Add support for the Wireless Tag IDO-SBC2D06-V1B-22W, an ultra-small SOM module based on SigmaStar SSD201/SSD202 SoC (ARM Cortex A7 core) commit
meson: add common SM1 ac2xx dtsi for Android STB devices based on the Amlogic S905X3 (AC213/AC214) and S905D3 (AC201/AC202) reference designscommit
- qcom
arria10: add board compatible for Mercury AA1 commit and FPGA DK commit
agilex: add board compatible for N5X DK commit and for SoCFPGA DK commit
stratix10: add board compatible for SoCFPGA DK commit
amd-seattle: remove Husky platform commit
Add QEMU virt machine compatible commit
Adds a basic driver for the PLL that generates the cpu clock on MStar/SigmaStar ARMv7 SoCs commit, commit, commit, commit, commit, commit, commit
ixp4xx: Delete Gateway 7001 boardfiles commit, delete the Goramo MLR boardfile commit, drop all common code commit
pxa: remove Intel Imote2 and Stargate 2 boards commit
Implementing IRQ stacks and vmap'ed stacks for all 32-bit ARM systems that are currently supported, including RiscPC and Footbridge commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Remove support for NOMMU ARMv4/v5 commit
- ftrace
Add gcc Shadow Call Stack support commit
mte: Remove asymmetric mode from the prctl() interface commit
- soc
at91: add support in soc driver for new SAMA5D29 commit
drivers/perf: CPU PMU driver for Apple M1 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- firmware: arm_scmi
Introduce atomic support for SCMI transports commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add optee transport commit
Add SCMI Virtio & Clock atomic support commit, commit, commit, commit, commit, commit, commit
arm_scmi: Make virtio Version_1 compliance optional commit
xilinx: Add sysfs support for feature config commit
- ARM64
Support PREEMPT_DYNAMIC with static keys commit, commit, commit, commit, commit, commit, commit
Emulate the OS Lock commit, commit, commit, commit, commit, commit
mte: Asymmetric MTE support in userspace commit, commit, commit, commit
Add part number for Arm Cortex-A78AE commit
Support of PAuth QARMA3 architected algorithm commit, commit, commit
Import Arm Optimized Routines str{n}cmp functions commit, commit
Accelerate crc32_be commit
mte: add core dump support commit, commit, commit, commit, commit
random: implement arch_get_random_int/_long based on RNDR commit
Enable kfunc call commit
KVM: Improve PMU support on heterogeneous systems commit, commit, commit, commit, commit, commit
perf jevents: Add support for HiSilicon CPA PMU aliasing commit
perf: Expose some Armv9 common events under sysfs commit
11.2. X86
(FEATURED) Add support for Intel CET-IBT (Indirect Branch Tracking), a hardware support course-grain forward-edge Control Flow Integrity protection. It enforces that all indirect calls must land on an ENDBR instruction, as such, the compiler will instrument the code with them to make this happen commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Re-enable ENQCMD and PASID (Process Address Space ID) MSR. See the documentation here commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
rethook: Replace kretprobe trampoline with rethook commit, commit, commit, commit
PPIN (Protected Processor Inventory Number) updates commit, commit, commit, commit, commit
- platform
chrome: Add driver for ChromeOS privacy-screen commit
uncore-freq: Enhance HW interface commit, commit, commit, commit
Add AMD system management interface commit
amd-pmc: Add support for AMD Spill to DRAM STB feature commit
gigabyte-wmi: added support for B660 GAMING X DDR4 motherboard commit
hp-wmi: support omen thermal profile policy v1 commit
Support Spi in i2c-multi-instantiate driver commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
think-lmi: Certificate authentication support commit
thinkpad_acpi: Add PSC mode support commit
thinkpad_acpi: Add dual fan probe commit
x86-android-tablets: Add Lenovo Yoga Tablet 2 830 / 1050 data commit
x86-android-tablets: Add Nextbook Ares 8 data commit
x86-android-tablets: Add battery swnode support commit
x86-android-tablets: Lenovo Yoga Tablet 2 830/1050 sound support commit
surface: gpe: Add support for Surface Pro 8 commit
- perf
Add Intel Raptor Lake support commit, commit, commit, commit
Add SAPPHIRERAPIDS_X CPU support commit
Add support for event tracing and TNT disabling commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Update Intel events and metrics commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- KVM
Allow SEV intra-host migration of VM with mirrors commit
SVM: nSVM: Implement Enlightened MSR-Bitmap for Hyper-V-on-KVM commit, commit, commit, commit
SVM: Allow AVIC support on system w/ physical APIC ID > 255 commit
Introduce KVM_CAP_DISABLE_QUIRKS2 commit
Provide per VM capability for disabling PMU virtualization commit, commit, commit
Disable HAVE_ARCH_HUGE_VMALLOC on 32-bit x86 commit
mce: Remove the tolerance level control, not needed commit
crypto: accelerated implementation for SM3 algorithm commit, commit, commit, commit, commit, commit
11.3. RISCV
Improve RISC-V Perf support using SBI PMU and sscofpmf extension commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for restartable sequence commit
CPU Idle Support commit, commit, commit, commit, commit, commit, commit, commit
Provide a framework for RISC-V ISA extensions commit, commit, commit, commit, commit, commit
SBI v0.3 support commit, commit, commit, commit, commit, commit
11.4. MIPS
Malta: Enable BLK_DEV_INITRD commit
ath79: add support for QCN550x commit
Remove TX39XX support commit
11.5. POWERPC
Implement livepatch on PPC32 and more commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
papr_scm: Implement initial support for injecting smart errors commit
Enable VAS and NX-GZIP support on powerVM commit, commit, commit, commit, commit, commit, commit, commit, commit
Add link stack flush mitigation status in debugfs commit
11.6. S390
KVM: Check keys when emulating instructions and let user space do key checked accesses. User space can do so via an extension of the MEMOP IOCTL commit, commit, commit, commit, commit, commit, commit, commit, commit
Enable sysfs attribute scans to force AP bus rescan commit
nospec: add an option to use thunk-extern commit
- zcrypt
11.7. XTENSA
Add kernel ABI selection to Kconfig commit
Make secondary reset vector support conditional commit
Enable GCC plugin support commit
11.8. PARISC
Add vDSO support commit
11.9. UM
Allow setting path to port-helper using UML_PORT_HELPER envvar commit
11.10. NDS32
Remove architecture, no longer maintained commit
12. Drivers
12.1. Graphics
Add support for nomodeset to a lot of drm drivers commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- fbdev
- amdgpu
Enable freesync video mode by default commit
Expose benchmark tests via debugfs, drop benchmark and testing module parameter commit, commit, commit
Add a new CTX ioctl operation to set stable pstates for profiling commit
Improve VRAM access for debug using SDMA commit
- GC 10.3.7, SDMA 5.2.7, DCN 3.1.6 updates
Add module param to disable XGMI for testing commit
GPU reset debugfs register dumping support commit
Drop experimental flag on aldebaran commit
amdkfd CRIU support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Enable sysfs required by rocm-smi tool for One VF mode commit
Enable amdgpu_dc module parameter commit
- Intel
ADL-N platform enabling commit
DG2-G12 subplatform added commit
DG2 accelerated migration support commit
Prepare for Xe_HP compute engines commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Initial small BAR support commit, commit, commit, commit, commit, commit, commit
Drop fake LMEM support commit
ADL-N PCH support commit
Async flip optimisation for DG2 commit, commit, commit, commit
GuC 69.0.3 support commit
Register per-crtc debugfs files commit
opregion: add support for mailbox #5 EDID commit
Dump hw.enable and pipe_mode commit
- bridge
- panel
panel-edp: Add eDP sharp panel support commit
panel-edp: Allow querying the detected panel via debugfs commit
nt35560: Support also ACX424AKM commit
nt35560: Support more panel IDs commit
simple: add Multi-Inno Technology MI0700S4T-6 commit
panel-edp: Add panels planned for sc7180-trogdor-pazquel commit
- simpledrm
Add "panel orientation" property on non-upright mounted LCD panels commit
- msm
Add SET_PARAM ioctl commit
Add DisplayPort controller for SM8350 commit
dpu + dsi support for qcm2290 commit
10nm dsi phy tuning support commit
Gpu support for additional 7c3 SKUs commit
Add Add a way for userspace to specify the sequence number fence used to track completion of the submit commit
Add SYSPROF param (v2) commit
- ingenic
- ast
- vc4
Add CSC + full range support commit
- panfrost
Add initial dual-core GPU support commit
- stm
New revision support commit
- tegra
- rcar-du
LVDS support for M3-W+ (R8A77961) commit
- exynos
BGR pixel format for FIMD device commit
- mediatek
Allow commands to be sent during video mode commit
- edid
- nouveau
tiny: Add MIPI DBI compatible SPI driver commit, commit, commit, commit, commit
vkms: add support for multiple overlay planes commit, commit, commit
Add driver for Solomon SSD130x OLED displays commit, commit, commit, commit, commit, commit
12.2. Power Management
Thermal: Introduce the Hardware Feedback Interface for thermal and performance management commit, commit, commit, commit, commit, commit, commit
- ACPI
cpupower: Add AMD P-State Support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- thermal
Add tracer tool for AMD P-State driver commit, commit, commit, commit
- intel-speed-select
12.3. Storage
- nvmem
- scsi
pmcraid: Remove the PMCRAID_PASSTHROUGH_IOCTL ioctl implementation commit
ufs: ufs-pci: Add support for Intel MTL commit
mvsas: Add PCI ID of RocketRaid 2640 commit
qla2xxx: Add ql2xnvme_queues module param to configure number of NVMe queues commit
smartpqi: Add PCI IDs commit
smartpqi: Enable SATA NCQ priority in sysfs commit
smartpqi: Speed up RAID 10 sequential reads commit
12.4. Drivers in the Staging area
meson: vdec: add VP9 support to GXM commit
iio:adc:ad7280a: Move out of staging commit
media: hantro: Add support for i.MX8MM Hantro-G1 commit
media: hantro: jpeg: Various improvements commit, commit, commit, commit, commit, commit, commit
media: imx: imx7-media-csi: add support for imx8mq commit
media: staging: media: zoran: add debugfs commit, rename debug module parameter commit, remove procfs commit
media: staging: tegra-vde: De-stage driver commit, Remove legacy UAPI support commit, Support V4L stateless video decoder API commit
pi433: add debugfs interface commit
Remove ashmem commit
wfx: allow new PDS format commit
drop fpgaboot driver commit
12.5. Networking
Add dm9051 driver commit
- Bluetooth
hci_h5: btrtl: Add support for RTL8822CS hci_ver 0x08 commit, commit
btrtl: Add support for RTL8852B commit
btusb: Add a new PID/VID 13d3/3567 for MT7921 commit
btusb: Add another Realtek 8761BU commit
btusb: Add missing Chicony device for Realtek RTL8723BE commit
btusb: Add one more Bluetooth part for the Realtek RTL8852AE commit
btusb: Add support for Intel Madison Peak (MsP2) device commit
btusb: add support for LG LGSBWAC02 (MT7663BUN) commit
hci_bcm: Add the Asus TF103C to the bcm_broken_irq_dmi_table commit
hci_bcm: add BCM43430A0 & BCM43430A1 commit
mt7921s: Add WBS support commit
mt7921s: Enable SCO over I2S commit
mt7921s: Support wake on bluetooth commit
mt7921s: support bluetooth reset mechanism commit
RDMA: irdma: Add support for address handle re-use commit
- ath11k
ath6kl: add device ID for WLU5150-D81 commit
axienet: commit, commit, commit, commit, commit, commit, commit
bnxt_en: Add driver support to use Real Time Counter for PTP commit, commit
- brcmfmac
- can
gs_usb: add CAN-FD support commit
gs_usb: add VID/PID for ABE CAN Debugger devices commit
gs_usb: add VID/PID for CES CANext FD devices commit
gs_usb: support up to 3 channels per device commit
mcp251xfd: ethtool: add support commit
mcp251xfd: ram: coalescing support commit
mcp251xfd: ring: add support for runtime configurable RX/TX ring parameters commit, commit
rcar_canfd: Add support for r8a779a0 SoC commit
- dpaa2
Add support for software TSO commit, commit, commit, commit, commit, commit, commit
Add support for changing the protocol at runtime commit, commit, commit, commit, commit, commit, commit, commit
Mirroring for Ocelot switches commit, commit, commit, commit, commit, commit
lantiq_gswip: enable jumbo frames on GSWIP commit
microchip: add ksz8563 to ksz9477 I2C driver commit
microchip: ksz9477: implement MTU configuration commit
mv88e6xxx: Improve standalone port isolation commit, commit, commit, commit, commit
mv88e6xxx: Improve indirect addressing performance commit, commit
mv88e6xxx: make serdes SGMII/Fiber tx amplitude configurable commit
mv88e6xxx: support RMII cmode commit
Add support for qca8k mdio rw in Ethernet packet commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Basic QoS classification on Felix DSA switch using dcbnl commit, commit, commit
realtek: MDIO interface and RTL8367S,RTL8367RB-VB commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
realtek: rtl8365mb: add support for rtl8_4t tag commit, commit, commit
sja1105: support switching between SGMII and 2500BASE-X commit
enetc: report software timestamping via SO_TIMESTAMPING commit
fsl: xgmac_mdio: Preamble suppression and custom MDC frequencies commit, commit, commit, commit, commit
Add new Fungible Ethernet driver commit, commit, commit, commit, commit, commit, commit, commit
ice: GTP support in switchdev commit, commit, commit, commit, commit, commit, commit
hns3: add support for TX push mode commit
- i40e
iavf: Add support for 50G/100G in AIM algorithm commit
- ice
igb: zero hwtstamp by default commit
ionic: updates for stable FW recovery commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- iwlwifi
Configure FW debug preset via module param commit
Add support for BZ-U and BZ-L HW commit
Advertise support for HE - DCM BPSK RX/TX commit
Add support for 1K BA queue commit
Add support for CT-KILL notification version 2 commit
Add support for IMR based on platform commit
Remove cipher scheme support commit
Support new BAID allocation command commit
Support v3 of station HE context command commit
Add support for MS devices commit
Support new queue allocation command commit
yoyo: add IMR DRAM dump support commit
yoyo: support dump policy for the dump size commit
ixgbe: add the ability for the PF to disable VF link state commit
ixgbevf: add disable link state commit
- lan743x
PCI11010 / PCI11414 devices commit, commit, commit, commit, commit
PCI11010 / PCI11414 devices Enhancements commit, commit, commit, commit, commit
lan966x: Add PTP Hardward Clock support commit, commit, commit, commit, commit, commit, commit
lan966x: add support for mcast snooping commit, commit, commit
Improve the CPU TX bitrate commit
Allow offloading timestamp operations to the PHY commit
- mac80211_hwsim
macb: Cadence MACB/GEM support for ZynqMP SGMII commit, commit, commit
mana: Add XDP counters, reuse dropped pages commit, commit, commit
marvell: prestera: add basic routes offloading commit, commit, commit
mctp i2c: MCTP I2C binding driver commit
- mlx5
Add mlx5 live migration driver and v2 migration protocol commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add command failures data to debugfs commit
Add debugfs counters for page commands failures commit
Add pages debugfs commit
Add support for configuring max device MTU commit
Add support for ConnectX-7 steering commit
Add support for matching on Internet Header Length (IHL) commit
mlx5e: XDP multi buffer support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- mlxsw:
mdio: mscc-miim: add lan966x internal phy reset support commit
- mt76
Improve signal strength reporting commit
mt7615: add support for LG LGSBWAC02 (MT7663BUN) commit
mt7615: introduce SAR support commit
Add mt7916 support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mt7915: add support for MT7986 commit
mt7915: add support for passing chip/firmware debug data to user space commit
mt7915: Introduce background radar support commit, commit, commit, commit, commit, commit
mt7915: introduce 802.11ax multi-bss support commit
mt7915: set bssinfo/starec command when adding interface commit
mt7915e: Add a hwmon attribute to get the actual throttle state commit
mt7915e: Enable thermal management by default commit
Introduce mt7921u driver commit, commit, commit, commit, commit, commit, commit, commit, commit
mt7921: toggle runtime-pm adding a monitor vif commit
mvneta: Add support for 98DX2530 Ethernet port commit
netdevsim: Introduce support for L3 offload xstats commit
- nfp
Add AF_XDP zero-copy support commit, commit, commit, commit, commit
flow-independent tc action hardware offload commit, commit, commit, commit, commit, commit
Support for NFP-3800 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Preliminary support for NFP-3800 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- octeontx2
- phy
prestera: acl: add multi-chain support offload commit
r8169: support L1.2 control on RTL8168h commit
rtlwifi: rtl8192cu: Add On Networks N150 commit
- rtw88
Switch WiFi to 1ss mode to get better experience with BT HID gaming device commit, commit, commit, commit, commit, commit
rtw8821c: enable rfe 6 devices commit
Support hw_scan and tx_wake firmware features commit, commit
Add RX counters of VHT MCS-10/11 to debugfs commit
Preparation of RFK helpers, 6G and 160M changes to support new chip commit, commit, commit, commit, commit, commit
Support AP mode commit, commit, commit, commit, commit, commit, commit
Get channel parameters of 160MHz bandwidth commit
sfc: set affinity hints in local NUMA node only commit
- sparx5
- stmmac
typhoon: implement ndo_features_check method commit
usb: ax88179_178a: add Allied Telesis AT-UMCs commit
wcn36xx: Add SNR reporting via get_survey() commit
wwan: iosm: Enable M.2 7360 WWAN card support commit
xpcs: add support for retrieving supported interface modes commit
12.6. Audio
- HDA
Adds new HW variants for Dell's Dolphin and Warlock commit, commit, commit, commit, commit, commit
Add HDMI codec VID for Raptorlake-P commit
Add keep-alive support for ADL-P and DG2 commit
realtek: Add mute and micmut LED support for Zbook Fury 17 G9 commit
realtek: Add quirk for Clevo NP70PNJ commit
realtek: Add support for HP Laptops commit
realtek: Enable headset mic on Lenovo P360 commit
tegra: Add Tegra234 hda driver support commit
Add AlderLake-PS variant PCI ID commit
Add PCI and HDMI IDs for Intel Raptor Lake commit
intel-dspconfig: add ES8336 support for CNL commit
scarlett2: Add "Standalone" switch commit
usb-audio: Add mute TLV for playback volumes on RODE NT-USB commit
soundwire: qcom: add pm runtime support commit, commit, commit
- ASoC
Intel: AVS - Audio DSP for cAVS commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Intel: add RT1308 I2S machine driver and HDMI-in capture via I2S support commit
Intel: cirrus-common: support cs35l41 amplifier commit
Intel: soc-acpi-byt: Add new WM5102 ACPI HID commit
Intel: improve support for ES8336-based platforms commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Intel: sof_rt5682: add two derivative options commit, commit
Make the SOF control, PCM and PM code IPC agnostic commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Intel: pci-tgl: add RPL-S support commit
IPC client infrastructure commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for TAS5805M digital amplifier commit
amd: acp-legacy: Add legacy card support for new machines commit
amd: acp: Add generic PDM and PCI driver support for ACP commit, commit, commit, commit, commit, commit
amd: sof-mach: Add support for RT5682S and RT1019 card commit
Add Euro Headset support for wcd938x codec commit
codecs: Add Awinic AW8738 audio amplifier driver commit
Add power domains support for digital macro codecs commit
fsl_sai: implement 1:1 bclk:mclk ratio support commit
Add support for audio on SC7280 based targets commit, commit, commit, commit, commit, commit, commit, commit, commit
Machine driver to support LPASS SC7280 sound card registration commit, commit, commit
rk3399_gru_sound: Wire up DP jack detection commit
sun4i-i2s: Add support for the R329/D1 variant commit
tegra: Update AHUB driver for Tegra234 commit
tlv320adc3xxx: Add IIR filter configuration commit
12.7. Tablets, touch screens, keyboards, mouses
Add Imagis touchscreen driver commit
mt6779-keypad: add MediaTek keypad driver commit
mtk-pmic-keys: add support for MT6358 commit
soc_button_array: add support for Microsoft Surface 3 (MSHW0028) buttons commit, commit
synaptics: enable InterTouch on ThinkPad T14/P14s Gen 1 AMD commit
tsc200x: add axis inversion and swapping support commit
- HID
Add driver for Razer Blackwidow keyboards commit
Add SiGma Micro driver commit
apple: Add fn mapping for MacBook Pros with Touch Bar commit
apple: Add necessary IDs and configuration for T2 Macs commit
apple: Add support for keyboard backlight on certain T2 Macs commit
apple: Magic Keyboard first generation and 2015 FN key mapping commit, commit, commit
apple: Report Magic Keyboard 2021 battery over USB commit
apple: Report Magic Keyboard 2021 with fingerprint reader battery over USB commit
google: Add support for vivaldi to hid-hammer commit
uclogic: Support Huion 13th frame button commit
uclogic: Support Huion tilt reporting commit
uclogic: Support multiple frame input devices commit
12.8. TV tuners, webcams, video capturers
Add a driver for the og01a1b camera sensor commit
amphion video decoder/encoder driver commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
atmel: atmel-isc: implement media controller commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
CAMSS: Add SM8250 support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
hi847: Add support for Hi-847 sensor commit
i2c: Add ov08d10 camera sensor driver commit
i2c: dw9714: add optional regulator support commit
i2c: isl7998x: Add driver for Intersil ISL7998x commit
imx: De-stage imx7-mipi-csis commit, commit, commit, commit, commit, commit, commit
Support multi hardware decode using of_platform_populate commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
stkwebcam: add new Asus laptop to upside_down table commit
uvcvideo: Add support for Apple T2-attached FaceTime HD Camera commit
12.9. Universal Serial Bus
quirks: add a Realtek card reader commit
serial: cp210x: add PIDs for Kamstrup USB Meter Reader commit
serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions commit
serial: option: add support for Cinterion MV32-WA/MV32-WB commit
serial: pl2303: add IBM device IDs commit
serial: simple: add Nokia phone driver commit
dwc3: drd: Add support for usb-conn-gpio based usb-role-switch commit
i.MX8MP: more USB3 glue layer feature support commit, commit, commit, commit
dwc3: pci: Add support for Intel Alder Lake commit
ehci: add pci device support for Aspeed platforms commit
- gadget: Add configfs HS/SS bInterval
gadget: f_uac2: Add HS/SS bInterval to configfs commit, commit, commit, commit
gadget: f_mass_storage: Make CD-ROM emulation work with Mac OS-X commit
gadget: audio: Multiple rates, notify commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
gadget: f_uac1: allow changing interface name via configfs commit
gadget: f_uac2: allow changing interface name via configfs commit
misc: eud: Add driver support for Embedded USB Debugger(EUD) commit
typec: Support the WUSB3801 port controller commit
typec: rt1719: Add support for Richtek RT1719 commit
ulpi: Add debugfs support commit
xhci-mtk: add support ip-sleep wakeup for mt8195 commit
xhci and hub features commit, commit, commit, commit, commit, commit, commit, commit, commit
serial: option: add Fibocom L610 modem commit
serial: option: add Fibocom MA510 modem commit
serial: qcserial: add support for Sierra Wireless EM7590 commit
serial: pl2303: add device id for HP LM930 Display commit
serial: pl2303: add device id for HP LM930 Display commit
12.10. Serial Peripheral Interface (SPI)
Add compatible for MT7986 commit
Add spi driver for Sunplus SP7021 commit
amd: Add support for version AMDI0062 commit
- auxdisplay: Add support for the Titanmec TM1628 7 segment display controller
intel: Add support for Raptor Lake-S SPI serial flash commit
mediatek: add ipm design support for MT7986 commit
External ECC engines & Macronix support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
pxa2xx: Add support for Intel Raptor Lake PCH-S commit
s3c64xx: Add spi port configuration for Tesla FSD SoC commit
spi-mtk-nor: add new soc mt8186 support commit
Tegra QUAD SPI combined sequence mode commit, commit, commit, commit
12.11. Watchdog
aspeed: add nowayout support commit
ixp4xx: Implement restart commit
max77620: Add support for the max77714 variant commit
orion_wdt: support pretimeout on Armada-XP commit
renesas_wdt: Add R-Car Gen4 support commit
sp5100_tco: Enable Family 17h+ CPUs commit
12.12. Serial
8250_bcm2835aux: Add ACPI support commit
mvebu-uart: Support for higher baudrates commit, commit, commit, commit, commit, commit
sunplus-uart: Add Sunplus SoC UART Driver commit
atmel: add earlycon support commit
samsung: Add ARTPEC-8 support commit
12.13. CPU Frequency scaling
qcom-hw: Add support for per-core-dcvs commit
12.14. Voltage, current regulators, power capping, power supply
Introduce "opp-microwatt" and Energy Model from DT commit, commit, commit, commit, commit
AB8500 charging commit, commit, commit, commit, commit, commit
Introduces bypass charge type property commit, commit, commit
power: supply: Add a driver for Injoinic power bank ICs commit
power: supply: bq24190 updates + new ug3105 driver commit, commit, commit, commit, commit, commit, commit, commit
power-suppy/i2c/extcon: Fix charger setup on Xiaomi Mi Pad 2 and Lenovo Yogabook commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
regulator: Add support for TPS6286x commit
Add Richtek RT5190A PMIC support commit
regulator: qcom-rpmh: Add support for SDX65 commit
12.15. Real Time Clock (RTC)
Add new RTC_FEATURE_ALARM_WAKEUP_ONLY feature commit
max77686: Add MAX77714 support commit
optee: add RTC driver for OP-TEE RTC PTA commit
sun6i: Add Allwinner H616 support commit
sun6i: Add support for broken-down alarm registers commit
sun6i: Add support for linear day storage commit
12.16. Pin Controllers (pinctrl)
Add driver for Sunplus SP7021 commit
Add pinctrl driver on mt8186 commit
alderlake: Add Intel Alder Lake-N pin controller support commit
alderlake: Add Raptor Lake-S ACPI ID commit
bcm: add driver for BCM4908 pinmux commit
icelake: Add Ice Lake-N PCH pin controller support commit
imx93: Add pinctrl driver support commit
nuvoton: Add driver for WPCM450 commit
ocelot: Add support for ServalT SoC commit
qcom-pmic-gpio: Add support for pm8450 commit
qcom: Introduce sc8280xp TLMM driver commit
qcom: sm8450: Add egpio support commit
qcom: spmi-mpp: Add PM8226 compatible commit
12.17. Multi Media Card (MMC)
Add driver for LiteX's LiteSDCard interface commit
sdhci-tegra: Enable wake on SD card event commit
sdhci_am654: Add Support for TI's AM62 SoC commit
sunxi-mmc: Add D1 MMC variant commit
12.18. Memory Technology Devices (MTD)
mchp23k256: Add SPI ID table commit
mchp48l640: Add SPI ID table commit
External ECC engines & Macronix support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
BCMA support for brcmnand commit, commit, commit, commit, commit, commit, commit, commit, commit
rawnand: stm32_fmc2: Add NAND Write Protect support commit
12.19. Industrial I/O (iio)
afe: add temperature rescaling support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
accel: add ADXL367 driver commit
accel: adxl345: Add ACPI HID table commit
accel: st_accel: Add support for Silan SC7A20 commit
amplifiers: ada4250: add support for ADA4250 commit
dac: add support for ltc2688 commit
frequency: admv1014: add support for ADMV1014 commit
frequency: admv4420.c: Add support for ADMV4420 commit
humidity: hdc100x: Add ACPI HID table commit
potentiometer: ds1803: Add support for Maxim DS3502 commit
pressure: dps310: Add ACPI HID table commit
proximity:sx9324: Add SX9324 support commit
proximity:sx9360: Add sx9360 support commit
temperature: iqs620at-temp: Add support for V3 silicon commit
12.20. Multi Function Devices (MFD)
ab8500: Drop debugfs module commit
arizona-spi: Add Android board ACPI table handling commit
intel-lpss: Add Intel Raptor Lake PCH-S PCI IDs commit
max77714: Add driver for Maxim MAX77714 PMIC commit
rk808: Add reboot support to rk808.c commit
12.21. Pulse-Width Modulation (PWM)
jz4740: Add support for X1000 SoC commit
12.22. Inter-Integrated Circuit (I2C + I3C)
Introduce common module to instantiate CCGx UCSI commit
designware: Add AMD PSP I2C bus support commit
i3c: support dynamically added i2c devices commit
i801: Add support for Intel Raptor Lake PCH-S commit
i801: Add support for the Process Call command commit
mediatek: Add i2c compatible for Mediatek MT8168 commit
piix4: Enable EFCH MMIO for Family 17h+ commit
rcar: Add R-Car Gen4 support commit
12.23. Hardware monitoring (hwmon)
Add "label" attribute commit
adm1275: Add sample averaging binding support commit
aquacomputer_d5next: Add support for Aquacomputer Farbwerk 360 commit
asus-ec-sensors: add CPU core voltage commit
asus-ec-sensors: add driver for ASUS EC commit
asus_wmi_ec_sensors: Support T_Sensor on Prime X570-Pro commit
asus_wmi_sensors: add ASUS ROG STRIX B450-F GAMING II commit
sch5627: Add pwmX_auto_channels_temp attributes commit, commit
Add driver for Texas Instruments TMP464 and TMP468 commit
Deprecate asis_wmi_ec_sensors driver commit
sy7636a: Add temperature driver for sy7636a commit
lm70: Add ti,tmp125 support commit
max6639: Add regulator support commit
mlxreg-fan: Use pwm attribute for setting fan speed low limit commit
nct6775: add ASUS Pro B550M-C/PRIME B550M-A commit
nct6775: add ASUS ROG STRIX Z390/Z490/X570-* / PRIME X570-P commit
occ: Add various poll response data in sysfs commit, commit, commit, commit
pmbus/lm25066: Add regulator support commit
powr1220: Add support for Lattice's POWR1014 power manager IC commit
tc654: Add thermal_cooling device support commit
xdpe12284: Add regulator support commit
xdpe12284: Add support for xdpe11280 commit
12.24. General Purpose I/O (gpio)
12.25. Leds
pca955x: Allow zero LEDs to be specified commit
12.26. DMA engines
12.27. Hardware Random Number Generator (hwrng)
Introduce rng_quality sysfs attribute commit
12.28. Cryptography hardware acceleration
atmel: add support for AES and SHA IPs available on lan966x SoC commit
atmel-tdes: Add support for the TDES IP available on sama7g5 SoC commit
hisilicon/sec: add the register configuration for HW V3 commit
octeontx2: add synchronization between mailbox accesses commit
qat: enable power management for QAT GEN4 commit
xilinx: Add Xilinx SHA3 driver commit
12.29. PCI
P2PDMA: Add Intel 3rd Gen Intel Xeon Scalable Processors to whitelist commit
Support BAR sizes up to 8TB commit
aardvark: Add support for PME interrupts commit
aardvark: Enable MSI-X support commit
fu740: Force 2.5GT/s for initial device probe commit
Extends pci-bridge-emul driver to emulate PCI Subsystem Vendor ID capability and PCIe extended capabilities. And then implement in pci-mvebu.c driver support for PCI Subsystem Vendor IDs, PCIe AER registers, support for legacy INTx interrupts, configuration for X1/X4 mode and usage of new PCI child_ops API commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
qcom: Add SM8450 PCIe support commit
Introduce UniPhier NX1 PCI endpoint controller support commit, commit
12.30. FRU Support Interface (FSI)
12.31. Clock
clk-apple-nco: Add driver for Apple NCO commit
clocksource: Add a Kconfig option for WATCHDOG_MAX_SKEW commit
cs2000-cp: add dynamic mode and more features commit, commit, commit, commit, commit, commit, commit, commit, commit
imx: Add imx8dxl clk driver commit
imx: Add initial support for i.MXRT1050 clock driver commit
Add i.MX93 clk bindings and driver commit, commit, commit, commit, commit
imx: pll14xx: Support dynamic rates commit, commit, commit, commit, commit, commit, commit, commit
microchip: Add driver for Microchip PolarFire SoC commit
qcom: Add GPU clock controller driver for SM6350 commit
qcom: Add MSM8226 Multimedia Clock Controller support commit
qcom: Add SDX65 APCS clock controller support commit
qcom: Add display clock controller driver for QCM2290 commit
qcom: Add display clock controller driver for SM6125 commit
qcom: Add display clock controller driver for SM6350 commit
qcom: gcc-ipq806x: add CryptoEngine clocks commit
qcom: rpmhcc: add sc8280xp support to the RPMh clock controller commit
renesas: rzg2l-cpg: Add support for RZ/V2L SoC commit
rs9: Add Renesas 9-series PCIe clock generator driver commit
samsung: fsd: Add initial clock support commit
starfive: Add JH7100 audio clock driver commit
sunxi-ng: Add support for the sun6i RTC clocks commit
sunxi-ng: sun6i-rtc: Add support for H6 commit
12.32. PHY ("physical layer" framework)
Add support for the Layerscape SerDes 28G commit
cadence: Add Cadence D-PHY Rx driver commit
cadence: Sierra: Add support for skipping configuration commit
qcom-qmp: add sc8280xp UFS PHY commit
qcom-qusb2: Add compatible for MSM8953 commit
qcom-snps: Add sc8280xp support commit
qcom: Add support for eDP PHY on sc7280 commit
rockchip: add naneng combo phy for RK3568 commit
sun4i-usb: Add D1 variant commit
usb: Add "wake on" functionality for newer Synopsis XHCI controllers commit
12.33. EDAC (Error Detection And Correction)
altera: Add SDRAM ECC check for U-Boot commit
Add new register offset support and related changes commit
12.34. Various
CXL.mem Topology Discovery and Hotplug Support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- habanalabs
vfio/hisilicon: add ACC live migration driver commit, commit, commit, commit, commit, commit, commit, commit, commit
iommu/ipmmu-vmsa: Add support for R-Car Gen4 commit
ipmi:ipmb: Add the ability to have a separate slave and master device commit
- irqchip
- mailbox
mei: me: add Alder Lake N device id commit
mfd: Add support for the MediaTek MT6366 PMIC commit
mfd: simple-mfd-i2c: Enable support for the silergy,sy7636a commit
misc: fastrpc: Add missing DSP FastRPC features commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
misc: open-dice: Add driver to expose DICE data to userspace commit
misc: rtsx: rts522a rts5228 rts5261 support Runtime PM commit
opp: Expose of-node's name in debugfs commit
Introduce PECI subsystem commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- ptp
- remoteproc
K3 R5F & DSP IPC-only mode support commit, commit, commit, commit, commit
mediatek: Support mt8186 scp commit
soc: qcom: mdt_loader: Support Qualcomm SM8450 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
qcom: q6v5: Add interconnect path proxy vote commit
Add support for sc7280 WPSS PIL loading commit
reset: Add Delta TN48M CPLD reset controller commit
Restructure the rpmsg_char driver and introduce rpmsg_ctrl driver commit, commit, commit, commit, commit, commit, commit, commit
vDPA/ifcvf: implement shared IRQ feature commit, commit, commit, commit, commit
w1: w1_therm: Add support for Maxim MAX31850 thermoelement IF commit
cn10k DDR Performance monitor support commit, commit, commit, commit
13. List of Pull Requests