28552
Comment: move older 2.6 releases to a separate page to keep the page small
|
1055
Linux 5.17 changelog
|
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.17)>> |
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.17 was released on Sun, 20 Mar 2022.
Summary: Among other changes this release includes support for recursive id-mapped mounts; CO-RE support that makes compiled BPF programs more portable; a new P-state driver for modern AMD CPUs; the random number generator switched to BLAKE2s and got much faster; a new Real-Time Linux Analysis tool; the fscache networking caching backend was rewritten; new fanotify flag to replace some inotify patterns; support for giving names to anonymous memory mappings. As always, there are many other features, new drivers, improvements and fixes.
Contents
-
Prominent features
- Support recursive id-mapped mounts
- BPF CO-RE support and other improvements
- New P-State driver for modern AMD cpus
- Random number generator improvements
- Rewrite of the networking caching backend for networking file systems
- New Real-Time Linux Analysis (RTLA) tool
- New fanotify FAN_RENAME flag
- Support giving names to anonymous memory
- Mitigate straight-line speculation attacks
- Core (various)
- File systems
- Memory management
- Block layer
- Tracing, perf and BPF
- Virtualization
- Cryptography
- 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
- CPU Frequency scaling
- Device Voltage and Frequency Scaling
- Voltage, current regulators, power capping, power supply
- Real Time Clock (RTC)
- Pin Controllers (pinctrl)
- Multi Media Card (MMC)
- Memory Technology Devices (MTD)
- Industrial I/O (iio)
- Multi Function Devices (MFD)
- Inter-Integrated Circuit (I2C + I3C)
- Hardware monitoring (hwmon)
- General Purpose I/O (gpio)
- Leds
- DMA engines
- Cryptography hardware acceleration
- PCI
- Non-Transparent Bridge (NTB)
- Thunderbolt
- Clock
- PHY ("physical layer" framework)
- EDAC (Error Detection And Correction)
- Various
- List of Pull Requests
- Other news sites
1. Prominent features
1.1. Support recursive id-mapped mounts
Linux 5.12 added support for id-mapped mounts, that is, creating a mount of an existing file system with the user and group IDs mapped to different ones. This is very useful for containers, where you might want to mount a directory with some random user ID as the user ID expected by the container. This feature, however, required that the base file system was a file system that was not id-mapped itself. This release supports recursive id-mapped mounts.
1.2. BPF CO-RE support and other improvements
The nature of BPF programs makes hard for them to be portable: The position of a member in a data structure can change depending from version to version and even on the same kernel depending on the compiler options. This requires compiling BPF programs in the target computer. In order to make BPF programs more portable, a few features are required; some have already been merged, like BTF, which was introduced in Linux 4.18 and provides type information of all kernel data structures. This release introduces "CO-RE" -Compile Once, Run Everywhere- support. Along with other pieces in the userspace BPF infrastructure, this helps to create BPF programs that can be run in different kernels without requiring compilation.
Recommended article: BPF CO-RE reference guide.
This release also adds the bpf_loop helper, which helps to move loop logic of BPF programs into the kernel and thereby guarantee that the loop will always terminate
Recommended article: A different approach to BPF loops
1.3. New P-State driver for modern AMD cpus
This release includes a new AMD P-State driver. AMD P-State is the AMD CPU performance scaling driver that introduces a new CPU frequency control mechanism on AMD Zen based CPU series in Linux kernel. The new mechanism is based on Collaborative Processor Performance Control (CPPC) which is finer grain frequency management than legacy ACPI hardware P-States. Current AMD CPU platforms are using the ACPI P-states driver to manage CPU frequency and clocks with switching only in three P-states. AMD P-State leverages the Linux kernel governors such as schedutil, ondemand, etc. to manage the performance hints which are provided by CPPC hardware functionality. AMD P-State is supported on recent AMD Zen base CPU series include some of Zen 2 and Zen 3 processors.
1.4. Random number generator improvements
This release switches the entropy extractor in the RNG from SHA-1 to BLAKE2s. This change improves the backtracking security from 80 bits to 128 bits. Some additional changes have also drastically improved performance.
Recommended post: Random number generator enhancements for Linux 5.17 and 5.18
1.5. Rewrite of the networking caching backend for networking file systems
Linux networking file systems (e.g. NFS) can optionally use a networking cache layer called fscache and cachefiles. This layer has been rewritten in this release, significantly simplifying the code compared to what's upstream, removing the complex operation scheduling and object state machine in favour of something much smaller and simpler
1.6. New Real-Time Linux Analysis (RTLA) tool
As part of the efforts to get PREEMPT_RT into mainline, this release includes a Real-Time Linux Analysis (RTLA) tool. rtla is a meta-tool that includes a set of commands that aims to analyze the real-time properties of Linux. But instead of testing Linux as a black box, rtla leverages kernel tracing capabilities to provide precise information about the properties and root causes of unexpected results, making it easier for users and developers to collect performance and trace data, and helping fine-tune their systems/algorithms.
Recommended blog: And now Linux has a Real-Time Linux Analysis (RTLA) tool!
1.7. New fanotify FAN_RENAME flag
This release adds a FAN_RENAME event to the fanotify interfaces to report extra info records about new and old parent+name details. This new event was designed as a replacement for the "inotify way" of joining the MOVED_FROM/MOVED_TO events using a cookie
1.8. Support giving names to anonymous memory
Anonymous memory (not backed by a file, e.g. malloc) is, as the name says, anonymous, and it's not easy to debug anonymous memory usage coming from various system components. This release allows to give a name to anonymous memory mappings. It adds a field to /proc/pid/maps and /proc/pid/smaps to show a userspace-provided name for anonymous vmas. The names of named anonymous vmas are shown as [anon:<name>]. Userspace can set the name for a region of memory by calling prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, start, len, (unsigned long)name);.
Recommended LWN article: Not-so-anonymous virtual memory areas
1.9. Mitigate straight-line speculation attacks
A new attack for CPUs has been found, called "Straight-line speculation"; this release adds some mitigations for it.
Recommended LWN article: Blocking straight-line speculation — eventually. commit, commit, commit, commit, commit, commit
2. Core (various)
(FEATURED) vfs: Extend the mapping infrastructure in order to support mapped mounts of mapped filesystems commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
(FEATURED) Add stright-line-speculation mitigations commit, commit, commit, commit, commit, commit
- fanotify
(FEATURED) Add FAN_RENAME event to report extra info records about new and old parent+name details. This new event was designed as a replacement for the "inotify way" of joining the MOVED_FROM/MOVED_TO events using a cookie commit, commit, commit, commit, commit, commit, commit, commit
Add a new FAN_REPORT_TARGET_FID flag, which supports reporting child info in directory fanotify events commit
devtmpfs: default mount with noexec and nosuid commit
fuse,virtiofs: support per-file DAX commit, commit, commit, commit, commit, commit, commit
- Task scheduler
- cgroup
signals: requeuing undeliverable signals commit, commit, commit
topology: only export used sysfs attributes commit, commit, commit
- io_uring
- RCU
Tasks updates commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
RCU no-CB CPUs updates, most notably the ability to offload CPUs that are in de-offloaded state at boot time commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Remove CONFIG_RCU_FAST_NO_HZ support commit, commit, commit, commit
Reference counting tracking infrastructure. Recommended LWN article: A reference-count tracking infrastructure.commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
module: add in-kernel support for decompressing for security purposes commit
Build: introduce debug.config for CI-like setup commit
Build: Add make mod2noconfig to disable module options commit
kunit tool: add --kconfig_add to allow easily tweaking kunitconfigs commit
kunit tool: Default --jobs to number of CPUs commit
Globally enable -Wcast-function-type commit
(FEATURED) fscache, cachefiles: Rewrite, significantly simplifying the code compared to what's upstream, removing the complex operation scheduling and object state machine in favour of something much smaller and simpler 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
irq: [PCI]MSI refactoring which aims to provide the ability of expanding MSI-X vectors after enabling MSI-X 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
3. File systems
- Btrfs
Speedup directory logging/fsync by copying index keys only. This reduces the amount of logged metadata by about half, and therefore the time spent logging or fsyncing large directories commit, commit
Enable adding of a device when balance is paused (i.e an fs is mounted with skip_balance options) commit, commit, commit
Allow defrag to be interruptible commit
free space tree entries get indexed and searched by size (latency -30%, search run time -30%) commit, commit, commit
Make send work with concurrent block group relocation commit
Remove reada infrastructure commit
- Ceph
- CIFS
- XFS
- ext4
- DLM
- EROFS
- F2FS
- FUSE
- KSMBD
- NFS
- UBIFS
Export filesystem error counters commit
4. Memory management
Convert much of the page cache to use folios, but still don't enable it 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
Separate struct slab from struct page - an offshot of the page folio work. Struct page fields used by slab allocators are moved from struct page to a new struct slab, that uses the same physical storage. Similar to struct folio, it always is a head page. This brings better type safety, separation of large kmalloc allocations from true slabs, and cleanups 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
Extend vmalloc support for constrained allocations commit, commit, commit, commit
(FEATURED) Support for anonymous VMA naming. It adds a field to /proc/pid/maps and /proc/pid/smaps to show a userspace-provided name for anonymous vmas. The names of named anonymous vmas are shown as [anon:<name>]. Userspace can set the name for a region of memory by calling prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, start, len, (unsigned long)name);. Recommended LWN article: Not-so-anonymous virtual memory areas. commit, commit, commit
- cgroup
kcsan: Support detecting a subset of missing memory barriers 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
- damon
Adds set_mempolicy_home_node syscall to set a home node for the MPOL_BIND and MPOL_PREFERRED_MANY memory policy. Users should use this syscall after setting up a memory policy for the specified range. The syscall allows specifying a home node/preferred node from which kernel will fulfill memory allocation requests first. This helps applications to hint at a memory allocation preference node and fallback to _only_ a set of nodes if the memory is not available on the preferred node. Fallback allocation is attempted from the node which is nearest to the preferred node commit, commit, commit
device-dax: Introduce compound pages in devmap in order to minimize 'struct page' overhead commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
sysctl: change watermark_scale_factor max limit to 30% commit
vmstat: add events for THP max_ptes_* commit
Introduce PAGE_TABLE_CHECK debug option to check user page table entries at the time they are added and removed, in order to catch memory corruption issues related to double mapping commit, commit, commit, commit
Migration: support multiple target nodes demotion commit
5. Block layer
Memory folio support in block + iomap layers commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
md: drop queue limitation for RAID1 and RAID10 commit
Remove the rsxx driver commit
6. Tracing, perf and BPF
Add rtla(1) tool, a meta-tool including a set of commands that aims to analyze the real-time properties of Linux. But instead of testing Linux as a black box, rtla leverages kernel tracing capabilities to provide precise information about the properties and root causes of unexpected results. In this release it presents an interface to the osnoise and timerlat tracers. In the future, it will also serve as home to the rtsl and other latency/noise tracers commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- BPF
- New helpers
(FEATURED) Add bpf_loop helper. One of the complexities of using for loops in bpf programs is that the verifier needs to ensure that in every possibility of the loop logic, the loop will always terminate. As such, there is a limit on how many iterations the loop can do. The bpf_loop helper moves the loop logic into the kernel and can thereby guarantee that the loop will always terminate. The bpf_loop helper simplifies a lot of the complexity the verifier needs to check, as well as removes the constraint on the number of loops able to be run commit, commit, commit, commit
bpf_find_vma(), to find and inspect VMAs for profiling use cases commit, commit,
bpf_strncmp(), improve performance, avoid compiler flakiness commit, commit, commit, commit
bpf_get_func_arg(), bpf_get_func_ret(), bpf_get_func_arg_cnt() for tracing programs, all inlined by the verifier commit, commit, commit, commit, commit
- Adds unstable conntrack lookup helpers using BPF kfunc support
Sleepable local storage commit
Add helpers to access traced function arguments commit, commit, commit, commit, commit
Support BTF_KIND_TYPE_TAG for btf_type_tag attributes. The main motivation for btf_type_tag is to bring kernel annotations __user, __rcu etc. to btf. With such information available in btf, bpf verifier can detect mis-usages and reject the program. For example, for __user tagged pointer, developers can then use proper helper like bpf_probe_read_kernel() etc. to read the data commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- perf
- libbpf
Deprecate bpf_prog_load_xattr() API commit, commit, commit, commit, commit, commit, commit, commit, commit
Enhance and rework logging controls commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add runtime APIs to query libbpf version commit
Revamp and fix libbpf's feature-probing APIs commit, commit, commit
bpftool: Probes for bounded loops and instruction set extensions commit, commit, commit
bpftool: Enable libbpf's strict mode by default commit
bpftool: Add current libbpf_strict mode to version output commit
- tracing
7. Virtualization
iommu/virtio: Add identity domains commit, commit, commit, commit, commit
Allow for configuring max number of virtqueue pairs commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
vdpa: add driver_override support and sysfs ABI documentation commit
8. Cryptography
(FEATURED) random: use BLAKE2s instead of SHA1 commit
Add SP800-108 KDF implementation to crypto API commit, commit, commit, commit
DRBG - improve 'nopr' reseeding commit, commit, commit, commit, commit, commit
jitter: add oversampling of noise source commit
keys: X.509 public key issuer lookup without AKID commit
9. Networking
TCP optimizations. The most notable change is in deferring the freeing of socket buffers after the socket lock is released, which improves performance in recvmsg and RX zerocopy commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Allow CAP_NET_RAW to setsockopt SO_PRIORITY commit
Allow SO_MARK with CAP_NET_RAW commit
Expose SO_RCVBUF/SO_SNDBUF through bpf_getsockopt() commit
Get ingress_ifindex in BPF_SK_LOOKUP prog type commit, commit
bridge: Allow base 16 inputs in sysfs commit
- Bonding
Add new hwtstamp flag HWTSTAMP_FLAG_BONDED_PHC_INDEX to get the bond active interface's PHC commit, commit
- Wireless
Add support for notifying association comeback commit, commit
Allow continuous radar monitoring on offchannel chain commit
Implement APIs for dedicated radar detection HW commit
Allow drivers to provide a destination device + info for flow offload. Only supported in combination with 802.3 encap offload commit
Indicate SA Query procedures offload for AP SME device commit, commit
- sysctl:
- ethtool
Allow user to offload tc action to net device commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
GRO: add ability to control gro max packet size commit
IPv4: support binding to nonlocal addresses commit
IPv6: ioam: Support for Queue depth data field commit
- MCTP
- MPTCP
More socket option support: IP_TOS, IP_FREEBIND, IP_TRANSPARENT, IPV6_FREEBIND, and IPV6_TRANSPARENT commit, commit, commit, commit
Adds socket support for a few socket options, ioctls, and one ancillary data type commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add mibs counter for ignored incoming options commit
Enforce HoL-blocking estimation commit
improve accept() and disconnect() commit, commit, commit, commit, commit, commit
- Netfilter
bridge: add support for pppoe filtering commit
Add register tracking infrastructure to skip redundant store-to-register operations, this includes support for payload, meta and bitwise expresssions commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
nft_fwd_netdev: Support egress hook commit
sit: allow encapsulated IPv6 traffic to be delivered locally commit
- smc
xfrm: Add support for SM3 and SM4 secure hashes commit, commit
batman-adv: allow netlink usage in unprivileged containers commit
- Bluetooth
10. Architectures
10.1. ARM
- Device Tree Sources
New SoC: Qualcomm gets support for two newly announced platforms, both of hich can now work in production environments: the SDX65 5G modem that can run a minimal Linux on its Cortex-A7 core, and the Snapdragon 8 Gen 1, their latest high-end phone SoC commit
New SoC: Renesas adds support for R-Car S4-8, the most recent automotive Server/Communication SoC commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
New SoC: TI adds support for J721s2, a new automotive SoC in the K3 family commit, commit, commit, commit, commit
New SoC: Mediatek MT7986a/b is a SoC used in Wifi routers, the latest generation following their popular MT76xx series. Only basic support is added for now commit, commit
New SoC: NXP i.MX8 ULP8 is a new low-power variant of the widespread i.MX8 series commit, commit
New SoC: TI SPEAr320s is a minor variant of the old SPEAr320 SoC that we have supported for a long time commit
Aspeed AST2500/AST2600 BMCs in TYAN, Facebook and Yadro servers commit
AT91/SAMA5 based evaluation board commit
Intel IXP4xx now supports the final two machines in device tree that were previously only supported in old style board files commit
Mediatek MT6589, used in the Fairphone FP1 phone from 2013, while MT8183 is used in the Acer Chromebook 314 commit, commit
Qualcomm gains support for the reference machines using the two new SoCs, plus a number of Chromebook variants and phones based on the Snapdragon 7c, 845 and 888 SoCs, including Sony Xperia devices (Xperia XZ2 / XZ2C / XZ3 (Tama platform), Xperia 1 III / 5 III), Samsung J5, and the Microsoft Surface Duo 2 commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
ST STM32 now supports the Engicam i.Core STM32MP1 carrier board commit
Tegra now boots various older Android devices based on 32-bit chips out of the box, including a number of Asus Transformer tablets (Prime TF201, Pad TF701T, Pad TF300T, Infinity TF700T, EeePad TF101, Pad TF300TG). There is also a new Jetson AGX Orin developer kit commit, commit, commit, commit, commit, commit, commit, commit
Apple support adds the missing device trees for all the remaining M1 Macbook and iMac variants, though not yet the M1 Pro/Max versions commit
Allwinner now supports another version of the Tanix TX6 set-top box based on the H6 SoC commit
Broadcom gains support for the Netgear RAXE500 Wireless router based on BCM4908 commit
Adds support for the following modules: TQMa8Mx, TQMa8MxML, TQMa8MxNL. Each of the modules is available with different i.MX8M variants commit, commit, commit
tegra: Add device-tree for 1080p version of Nyan Big commit
Add Goramo MultiLink device tree commit
Add JOZ Access Point commit
aspeed: Adding Facebook Bletchley BMC commit
aspeed: add device tree for YADRO VEGMAN BMC commit
imx6: phytec: Add PEB-WLBT-05 support commit
imx6dl-yapp4: Add Y Soft IOTA Crux/Crux+ board commit
imx6qdl: add TQ-Systems MBa6x device trees commit
imx6qdl: phytec: Add support for optional PEB-EVAL-01 board commit
apple: Add t6000/t6001 MacBook Pro 14/16" compatibles commit
Enable KCSAN commit
Add support for Cortex-M55 processor commit
Add support for Cortex-M33 processor commit
Report Spectre v2 status through sysfs commit
arm64: Add two HWCAPs for Arm v8.7 FP behaviour commit, commit, commit
Xen: Add support of extended regions (safe ranges) on Arm commit, commit, commit, commit, commit, commit
Adds runtime PM support to Tegra drivers and enables core voltage scaling for Tegra20/30 SoCs, resolving overheating troubles 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
- perf
Userspace counter access support commit, commit, commit, commit, commit
vendor events: Arm Neoverse N2 commit
arm-spe: Add SPE total latency as PERF_SAMPLE_WEIGHT commit
arm-spe: Synthesize SPE instruction events commit
Inject missing frames when using 'perf record --call-graph=fp' commit
Add LLC-TAD perf counter support commit
Arm CMN updates commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
smmuv3: Add devicetree support commit
coresight: syscfg: dynamic load commit, commit, commit, commit, commit, commit
coresight: trbe: Workaround Cortex-A510 erratas commit, commit, commit, commit
Apple SoC PMGR device power states driver commit, commit, commit, commit, commit, commit
samsung: Add USI driver commit
samsung: exynos-chipid: add Exynos7885 SoC support commit
xor: use EOR3 instructions when available commit
KVM: arm64: series implements an unshare hypercall at EL2 in nVHE protected mode, and makes use of it to unmmap guest-specific data-structures from EL2 stage-1 during guest tear-down commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
10.2. x86
- Platforms
Add Asus TF103C dock driver commit
Add intel_crystal_cove_charger driver commit
amd-pmc: Add support for AMD Smart Trace Buffer commit
asus-wmi: Add support for custom fan curves commit
int3472: Add board data for Surface Go 3 commit
lenovo-yogabook-wmi: Add driver for Lenovo Yoga Book commit
lenovo-yogabook-wmi: Add support for hall sensor on the back commit
Add device drivers for Siemens Industrial PCs commit, commit, commit, commit
system76_acpi: Guard System76 EC specific functionality commit
think-lmi: Opcode support commit
touchscreen_dmi: Add TrekStor SurfTab duo W1 touchscreen info commit
touchscreen_dmi: Enable pen support on the Chuwi Hi10 Plus and Pro commit
touchscreen_dmi: Remove the Glavey TM800A550L entry commit
pdx86: Add support for x86 Android tablets with broken DSDTs commit, commit, commit, commit, commit, commit, commit, commit, commit
x86-android-tablets: Add support for disabling ACPI _AEI handlers commit
x86-android-tablets: New driver for x86 Android tablets commit
- KVM
AMX support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
nVMX: Enlightened MSR Bitmap feature for Hyper-V, which allows L1 hypervisor to inform L0 when it changes MSR bitmap, this eliminates the need to examine L1's MSR bitmap for L2 every time when 'real' MSR bitmap for L2 gets constructed. When the feature is enabled for Win10+WSL2, it shaves off around 700 CPU cycles from a nested vmexit cost (tight cpuid loop test) commit, commit, commit
svm: Add module param to control PMU virtualization commit
Add the capability KVM_CAP_ENABLE_CAP to x86 so userspace can ensure KVM_ENABLE_CAP is available on a vcpu before using it commit
Export supported_xcr0 via UAPI commit, commit, commit, commit
Hyper-V: Add Hyper-V Isolation VM support commit, commit, commit, commit, commit
Security: easure initrd data loaded by the EFI stub commit, commit, commit, commit
perf: intel/lbr: Support LBR format V7 commit
AMD: mce_amd: Support non-uniform MCA bank type enumeration commit
Remove X86_USE_3DNOW commit
Basic recovery for machine checks inside SGX commit, commit, commit, commit, commit, commit, commit
sgx: Add an attribute for the amount of SGX memory in a NUMA node commit
xen: Add in-kernel Xen event channel delivery commit, commit, commit, commit, commit
10.3. PowerPC
Book3S HV P9: entry/exit optimisations. This reduces radix guest full entry/exit latency on POWER9 and POWER10 by 2x 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
Add BPF_PROBE_MEM JIT support commit, commit, commit, commit, commit, commit, commit, commit
Add KUAP support for BOOKE and 40x commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Make hash MMU code build configurable commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
- Implement livepatch on PPC32
ftrace: Activate HAVE_DYNAMIC_FTRACE_WITH_REGS on PPC32 commit
xive: Add a debugfs file to dump EQs commit, add a debugfs toggle for StoreEOI commit, add a debugfs toggle for save-restore commitadd a kernel parameter for StoreEOI commit
10.4. RISC-V
Introduce sv48 support without relocatable kernel commit, commit, commit, commit, commit, commit, commit, commit
Basic StarFive JH7100 RISC-V SoC support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add Supervisor Binary Interface v0.2 support for KVM commit, commit, commit, commit, commit
10.5. MIPS
BCM47XX: Add board entry for Linksys WRT320N v1 commit
BCM47XX: Add support for Netgear R6300 v1 commit
BCM47XX: Add support for Netgear WN2500RP v1 & v2 commit
Loongson64: Add Loongson-2K1000 reset platform driver commit
TXX9: Remove TX4939 SoC support commit, remove rbtx4938 board support commit,remove rbtx4939 board support commit
New Kconfig option ZBOOT_LOAD_ADDRESS commit
10.6. PA-RISC
Rewrite light-weight syscall and futex code commit
Add kgdb io_module to read chars via PDC commit
Enable TOC (transfer of contents) feature unconditionally commit
10.7. S390
Add new CPU-MF Counters for new IBM Z Hardware commit, commit
crypto: add SIMD implementation for ChaCha20 commit
10.8. UML
10.9. M68K
Enable memtest functionality commit
11. Drivers
11.1. Graphics
Add privacy-screen class and connector properties. It allows non KMS drivers to register a privacy-screen device, which the KMS drivers can then use to implement the standard privacy-screen properties. This is in order to support laptops that have the LCD panel with a builtin electronic privacy-screen commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Remove DMA_BUF_SET_NAME ioctl restrictions commit
sysfs: send hotplug event commit
Support XRGB2101010 source buffers commit
fourcc: Add packed 10bit YUV 4:2:0 format commit
- Intel
Support VESA panel backlights commit, commit, commit, commit, commit
Update ADL-P DMC fw to v2.14 commit
Enable runtime PM autosuspend by default commit
DP per-lane drive settings for icl+ commit
Remove CCS FB stride restrictions on ADL-P commit
VRR platform support for display 11 commit
add support for display audio codec keepalive commit
Improved eviction performance with async TTM moves commit
Enable pipe color support on D13 platform commit, commit, commit
Add support for moving fence waiting commit
- AMD
Add smart trace buffer (STB) for supported GPUs commit, commit, commit
Add Debugfs Entry to Force in SST Sequence commit
Add debugfs entry for ILR commit
PSR panel capability debugfs commit
Add new fields for Sienna Cichlid commit
Enable unique_id for Aldebaran commit
Add new query interface for umc block commit
Add support for SMU debug option commit
Support new mode-1 reset interface commit
amdkfd: Add sysfs bitfields and enums to uAPI commit
amdkfd: Make KFD support on Hawaii experimental commit
- tegra
NVDEC support commit
- panel
simple: Add Vivax TPC-9150 panel v6 commit
simple: Add support for the Innolux G070Y2-T02 panel commit
Add BOE BF060Y8M-AJ0 5.99" AMOLED panel driver commit
Add JDI R63452 MIPI DSI panel driver commit
Add Sony Tulip Truly NT35521 driver commit
Add driver for Novatek NT35950 DSI DriverIC panels commit
ilitek-ili9881d: add support for Wanchanglong W552946ABA panel commit
simple: Add Team Source Display TST043015CMHX panel commit
- simpledrm
- msm
- anx7625
- dw-hdmi
Allow interlace on bridge commit
- ps8640
- tx358768
Add pulse mode support commit
- ti-sn65dsi86
Add PWM support commit
- kmb
Enable fb console commit
- vc4
- vmwgfx
- omapdrm
- mediatek
backlight: lp855x: Add support ACPI enumeration commit
- host1x
Add initial runtime PM and OPP support commit
- rcar-du
R-Car DU: Add DSI encoder driver for V3U commit
Add Unisoc's drm kms module commit, commit, commit, commit, commit, commit
11.2. Power management
- ACPI
PCC: Implement OperationRegion handler for the PCC Type 3 subtype commit
Introduce Platform Firmware Runtime Update and Telemetry drivers. The PFRUT(Platform Firmware Runtime Update and Telemetry) kernel interface is designed to interact with the platform firmware interface defined in the Management Mode Firmware Runtime Update commit, commit, commit, commit
Add support for PCC Opregion special context data commit
iASL/Disassembler: Additional support for NHLT table commit
iASL/NHLT table: "Specific Data" field support commit
Add support for AGDI table commit
EFI: runtime: avoid EFIv2 runtime services on Apple x86 machines commit
hibernate: Allow ACPI hardware signature to be honoured commit
power: supply: core: add POWER_SUPPLY_HEALTH_NO_BATTERY commit
Add Thermal support for RZ/G2L commit
11.3. Storage
- SCSI
ufs: Implement polling support commit
mpi3mr: Add support for PCIe Managed Switch SES device commit
mpi3mr: Add Event acknowledgment logic commit
mpi3mr: Enhanced Task Management Support Reply handling commit
mpi3mr: Add io_uring interface support in I/O-polled mode commit
mpi3mr: Support Prepare for Reset event commit
ata: sata_sx4: add module parameter 'dimm_test' commit
ata: ahci: Add support for AMD A85 FCH (Hudson D4) commit
nvme: add 'iopolicy' module parameter commit
11.4. Drivers in the Staging area
media: atomisp: add Microsoft Surface 3 ACPI vars commit
media: max96712: Add basic support for MAX96712 GMSL2 deserializer commit
atomisp: add support for enum frame rate and sizes commit, commit
Add NVIDIA Tegra114 support to video decoder driver commit, commit, commit
media: cedrus: Add support for the D1 variant commit
fbtft: Remove fb_watterott driver commit
ralink-gdma: remove driver from tree commit
mt7621-dma: remove driver from tree commit
11.5. Networking
- Bluetooth
Add MT7921 SDIO Bluetooth support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
btmtksdio: add support of processing firmware coredump and log commit
btmtksdio: enable AOSP extension for MT7921 commit
btusb: Add one more Bluetooth part for WCN6855 commit
btusb: Add one more Bluetooth part for the Realtek RTL8852AE commit
btusb: Add support for Foxconn MT7922A commit
btusb: Add support for Foxconn QCA 0xe0d0 commit
btusb: Add support for queuing during polling interval commit
btusb: Add support using different nvm for variant WCN6855 controller commit
btusb: Add the new support IDs for WCN6855 commit
btusb: Add two more Bluetooth parts for WCN6855 commit
btusb: enable Mediatek to support AOSP extension commit
InfiniBand
iser: Remove deprecated pi_guard module param commit
hns: Remove support for HIP06 commit
hns: Support direct wqe of userspace commit
mlx5: Expose NDR speed through MAD commit
mlx5: Add support to multiple priorities for FDB rules commit
mlx5: Add misc5 flow table match parameters commit
DR, Add support for UPLINK destination type commit
DR, Add support for dumping steering info commit
DR, Add support for matching on geneve_tlv_option_0_exist field commit
DR, Improve steering for empty or RX/TX-only matchers commit
DR, Support matching on tunnel headers 0 and 1 commit
mlx5: E-switch, Create QoS on demand commit
mlx5: E-switch, Enable vport QoS on demand commit
mlx5: Introduce API for bulk request and release of IRQs commit
Parsing Infrastructure for TC actions commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Provide knobs which will enable users to minimize memory consumption of mlx5 Functions (PF/VF/SF) commit, commit, commit, commit, commit, commit, commit
mlx5e: Expose FEC counters via ethtool commit
mlx5e: Support ethtool cq mode commit
mlxsw: Add Spectrum-4 support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
mlxsw: Add support for VxLAN with IPv6 underlay commit, commit, commit, commit, commit, commit, commit, commit
amd-xgbe: Add Support for Yellow Carp Ethernet device commit
- ath11k
Support MAC address randomization in scan commit
Add full monitor mode support for QCN9074 commit, commit, commit
Add 11d scan offload support for QCA6390/WCN6855 commit, commit, commit
Add regdb.bin download for regdb offload commit
Add signal report to mac80211 for QCA6390 and WCN6855 commit
Add spectral/CFR buffer validation support commit
Add support for BSS color change commit
Add support for WCN6855 hw2.1 commit
Add support for hardware rfkill for QCA6390 commit
Add support of firmware logging for WCN6855 commit
Enable 802.11 power save mode in station mode commit
ath: regdom: extend South Korea regulatory domain support commit
- bnxt_en
brcmfmac: Configure keep-alive packet on suspend commit
- can
- dsa
felix: add port fast age support commit
felix: psfp support on vsc9959 commit, commit, commit, commit, commit, commit, commit, commit
lan9303: add VLAN IDs to master device commit
qca8k: add LAG support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
sja1105: bring deferred xmit implementation in line with ocelot-8021q commit
rtl8365mb: add GMII as user port mode commit
ena: Add a new capabilities bitmask field to get indication of capabilities supported by the device. Use the capabilities field to query the device for ENI stats support commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
gemini: allow any RGMII interface mode commit
gve: Supporting tx|rx-coalesce-usec for DQO, suspend/resume/shutdown, and optional metadata descriptors commit, commit, commit, commit, commit, commit, commit, commit
hns3: debugfs add drop packet statistics of multicast and broadcast for igu commit
- iavf
Add support in the iavf driver for communicating and using VIRTCHNL_VF_OFFLOAD_VLAN_V2. The new VIRTCHNL_VF_OFFLOAD_VLAN_V2 adds more granularity, flexibility, and support for 802.1ad offloads and filtering. This includes the VF negotiating which VLAN offloads/filtering it's allowed, where VLAN tags should be inserted and/or stripped into and from descriptors, and the supported VLAN protocols commit, commit, commit, commit, commit, commit
Enable setting RSS hash key commit
- ice
Add flow director support for channel mode commit
Configure iWARP or RoCEv2 protocol support for E800 devices commit, commit, commit
Add firmware features commit, commit, commit, commit, commit
Implement support for PTP on E822 hardware commit, commit, commit, commit, commit, commit, commit, commit, commit
ifb: support ethtools stats commit
- iwlwifi
Add new Qu-Hr device commit
Add new ax1650 killer device commit
Add support for BNJ HW commit
Add support for Bz-Z HW commit
mei: add debugfs hooks commit
Intel Management Engine communication over WLAN commit
mvm: Add support for a new version of scan request command commit
mvm: Increase the scan timeout guard to 30 seconds commit
mvm: add support for OCE scan commit
mvm: add support for PHY context command v4 commit
mvm: add support for statistics update version 15 commit
mvm: d3: support v12 wowlan status commit
mvm: support Bz TX checksum offload commit
mvm: support RLC configuration command commit
mvm: support revision 1 of WTAS table commit
mvm: synchronize with FW after multicast commands commit
pcie: add killer devices to the driver commit
pcie: support Bz suspend/resume trigger commit
rs: add support for TLC config command ver 4 commit
Support 4-bits in MAC step value commit
Support SAR GEO Offset Mapping override via BIOS commit
yoyo: support TLV-based firmware reset commit
ixgbevf: Introducing 1.5 API for mailbox communication commit, commit, commit, commit, commit
lan78xx: NAPI Performance Improvements commit, commit, commit, commit, commit, commit
- lan966x
lantiq_xrx200: add ingress SG DMA support commit
- mana
- marvell
mscc: ocelot: add gate and police action offload to PSFP commit
- mt76
mt7603: introduce SAR support commit
mt76x02: introduce SAR support commit
mt7915: add default calibrated data support commit
mt7915: add mu-mimo and ofdma debugfs knobs commit
mt7915: introduce SAR support commit
mt7921: add support for PCIe ID 0x0608/0x0616 commit
mt7921: introduce 160 MHz channel bandwidth support commit
mvneta: Add TC traffic shaping offload commit
netvsc: Add Isolation VM support for netvsc driver commit
- phy
phylink: Introduce generic phylink validation commit, commit, commit
- prestera
qed*: esl priv flag support through ethtool commit
- qmi_wwan
r8169: enable ASPM L1/L1.1 from RTL8168h commit
- rtw88
rtw89: add AXIDMA and TX FIFO dump in mac_mem_dump commit
- stmmac
tsnep: Add TSN endpoint Ethernet MAC driver commit
ax88179_178a: add TSO feature commit
vertexcom: Add MSE102x SPI support commit
wcn36xx: Implement beacon filtering commit
- wwan
11.6. Audio
hda/cs8409: Add new Warlock SKUs to patch_cs8409 commit
hda: Add AlderLake-N PCI ID commit
hda: Add new AlderLake-P variant PCI ID commit
hda: Add support for CS35L41 in HDA systems commit, commit, commit, commit, commit, commit, commit, commit, commit
hda: intel-dsp-config: add JasperLake support commit
hda: intel: More comprehensive PM runtime setup for controller driver commit
usb-audio: add mapping for MSI MPG X570S Carbon Max Wifi commit
soundwire: intel: remove PDM support commit
- ASoC
Add AK4375 support commit
Intel: add sof-nau8825 machine driver commit
Intel: boards: add max98390 2/4 speakers support commit
Intel: sof_sdw: add SKU for Dell Latitude 9520 commit
- SOF
Enable multicore with dynamic pipelines commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add support for Mediatek MT8195 commit, commit, commit, commit, commit, commit, commit, commit
Implement support for DMA trace free IPC command commit, commit, commit
Intel: power optimizations with HDaudio SPIB register commit, commit, commit, commit
Re-visit firmware state and panic tracking/handling commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Platform updates for AMD and Mediatek commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
Add PM support for i.MX8/i.MX8X/i.MX8M commit, commit, commit, commit, commit
amd: acp-config: Enable SOF audio for Google chrome boards commit
codec: tlv320adc3xxx: New codec driver commit
codecs: MBHC: Add support for special headset commit
codecs: tfa989x: Add support for tfa9897 optional rcv-gpios commit
Add low power hibernation support to cs35l41 commit, commit, commit, commit, commit, commit, commit, commit
cs35l41: DSP Support commit
cs42l42: Add control for audio slow-start switch commit
Add support for RT5682s headset codec in mt8195 machine drivers, and SOF support on card mt8195-mt6359-rt1019-rt5682 commit, commit, commit
qcom: Add support for ALC5682I-VS codec commit
rt5640: Add support for external GPIO jack-detect commit, commit, commit, commit, commit, commit, commit
sun8i-codec: Add AIF, ADC, and DAC volume controls commit
sunxi: sun4i-spdif: Implement IEC958 control commit
tegra: Add master volume/mute control support commit
Support BCLK input clock in tlv320aic31xx commit, commit, commit, commit, commit
11.7. Tablets, touch screens, keyboards, mouses
goodix: add pen support commit
silead: add pen support commit
silead: add support for EFI-embedded fw using different min/max coordinates commit
- HID
Add new Letsketch tablet driver commit
Add support for UGTABLET WP5540 commit
Add support for open wheel and no attachment to T300 commit
Add mapping for KEY_ALL_APPLICATIONS commit
Add mapping for KEY_DICTATE commit
apple: Add 2021 Magic Keyboard with fingerprint reader commit
apple: Add 2021 Magic Keyboard with number pad commit
apple: Add 2021 magic keyboard FN key mapping commit
apple: Add Magic Keyboard 2021 with fingerprint reader FN key mapping commit
apple: Report Magic Keyboard battery over USB commit
i2c-hid-of: Expose the touchscreen-inverted properties commit
logitech-dj: add new lightspeed receiver id commit
magicmouse: Report battery level over USB commit
11.8. TV tuners, webcams, video capturers
hantro: add Allwinner H6 support commit, commit, commit, commit, commit, commit, commit, commit, commit
VP9 codec V4L2 control interface commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
coda: V4L2_PIX_FMT_GREY for coda960 JPEG Encoder commit
Extensions to ov8865 driver commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
imx-pxp: Add rotation support commit
Add support for X86/ACPI camera sensor/PMIC setup with clk and regulator platform data commit, commit, commit, commit, commit, commit, commit, commit, commit
si2157: add ATV support for si2158 commit
si2157: add support for 1.7MHz and 6.1 MHz commit
si2157: add support for DVB-C Annex C commit
si2157: add support for ISDB-T and DTMB commit
Add support for DMA2D of STMicroelectronics STM32 Soc series commit, commit, commit, commit, commit, commit, commit
11.9. Universal Serial Bus
Introduce Xen pvUSB frontend (xen hcd) commit
dwc3: gadget: Support Multi-Stream Transfer commit
serial: ch341: add support for GW Instek USB2.0-Serial devices commit
serial: ftdi_sio: add support for Brainboxes US-159/235/320 commit
serial: option: add Telit LE910R1 compositions commit
serial: option: add ZTE MF286D modem commit
serial: option: add support for DW5829e commit
uhci: add aspeed ast2600 uhci support commit
11.10. Serial Peripheral Interface (SPI)
dw: Introduce Synopsys IP-core versions interface commit
11.11. Watchdog
Add Apple SoC watchdog driver commit
Add Realtek Otto watchdog timer commit
Add Watchdog Timer driver for RZ/G2L commit
f71808e_wdt: Add F81966 support commit
s3c2410: Add Exynos850 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
11.12. CPU Frequency scaling
(FEATURED) Introduce a new AMD CPU frequency control mechanism commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
11.13. Device Voltage and Frequency Scaling
devfreq: Add a driver for the sun8i/sun50i MBUS commit
11.14. Voltage, current regulators, power capping, power supply
- power
- regulator
11.15. Real Time Clock (RTC)
gamecube: Add a RTC driver for the GameCube, Wii and Wii U commit
Add driver for RTC in Sunplus SP7021 commit
rs5c372: Add RTC_VL_READ, RTC_VL_CLR ioctls commit
rv8803: Add support for the Epson RX8804 RTC commit
11.16. Pin Controllers (pinctrl)
Add Intel Thunder Bay pinctrl driver commit
freescale: Add i.MXRT1050 pinctrl driver support commit
ocelot: Extend support for lan966x commit
qcom-pmic-gpio: Add support for pm8019 commit
qcom: Add SDX65 pincontrol driver commit
qcom: Add SM8450 pinctrl driver commit
qcom: Add egpio feature support commit
qcom: sc7280: Add egpio support commit
renesas: rzg2l: Add support to get/set drive-strength and output-impedance-ohms commit
spmi-gpio: Add support for PM2250 commit
11.17. Multi Media Card (MMC)
mmci: add hs200 support for stm32 sdmmc commit
dw_mmc: Add driver callbacks for data read timeout commit
jz4740: Support using a bi-directional DMA channel commit
dw_mmc-exynos: Add support for ARTPEC-8 commit
sdhci-esdhc-imx: Add sdhc support for i.MXRT series commit
sdhci-pci: Add PCI ID for Intel ADL commit
mmci: Add support for sdmmc variant revision v2.2 commit
11.18. Memory Technology Devices (MTD)
rawnand: renesas: Add new NAND controller driver commit
Introduce an expert mode for forensics and debugging purposes commit
11.19. Industrial I/O (iio)
Add reading "raw" attribute commit
adc: Add Xilinx AMS driver commit
adc:axp20x: add support for NTC thermistor commit
dac: Add AD3552R driver support commit
dac:ad7293: add support for AD7293 commit
frequency: admv1013: add support for ADMV1013 commit
light: ltr501: Added ltr303 driver support commit
ltr501: Export near level property for proximity sensor commit
11.20. Multi Function Devices (MFD)
bd70528: Drop BD70528 support commit
da9062: Support SMBus and I2C mode commit
intel-lpss: Add Intel Lakefield PCH PCI IDs commit
11.21. Inter-Integrated Circuit (I2C + I3C)
exynos5: Add support for modern Exynos SoCs commit, commit, commit, commit, commit, commit
tegra: Add the ACPI support commit
Remove unused Netlogic/Sigma Designs XLR driver commit
i3c: svc: add runtime pm support commit
11.22. Hardware monitoring (hwmon)
Add driver for NZXT RGB&Fan Controller/Smart Device v2 commit
Driver for Texas Instruments INA238 commit
adm1021: Improve detection of LM84, MAX1617, and MAX1617A commit
asus_wmi_ec_sensors: Support B550 Asus WMI commit
asus_wmi_sensors: Support X370 Asus WMI commit
f71882fg: Add F81966 support commit
jc42: Add support for ONSEMI N34TS04 commit
k10temp: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh commit
k10temp: Support up to 12 CCDs on AMD Family of processors commit
nct6775: add ROG STRIX B550-A/X570-I GAMING commit
ntc_thermistor: Add Samsung 1404-001221 NTC commit
pmbus: Add Delta AHE-50DC fan control module driver commit
pmbus: Add support for MPS Multi-phase mp5023 commit
pmbus: ir38064 Add support for IR38060, IR38164 IR38263 commit
pmbus: ir38064 Expose a regulator commit
11.23. General Purpose I/O (gpio)
amdpt: add new device ID and 24-pin support commit
msc313: Add support for SSD201 and SSD202D commit
sim: new testing module commit
tegra186: Add support for Tegra234 commit
tegra186: Add support for Tegra241 commit
xlp: Remove Netlogic XLP variants commit
bd70528: Drop BD70528 support commit
11.24. Leds
11.25. DMA engines
jz4780: Add support for the MDMA and BDMA in the JZ4760(B) commit
idxd: add knob for enqcmds retries commit
rcar-dmac: Add support for R-Car S4-8 commit
ti: k3-psil: Add support for J721S2 commit
jz4780: Support bidirectional I/O on one channel commit
11.26. Cryptography hardware acceleration
qat: PFVF refactoring and improved GEN4 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, commit, commit, commit, commit, commit, commit, commit, commit, commit
caam: save caam memory to support crypto engine retry mechanism commit
sun8i-ce - Add support for the D1 variant commit
11.27. PCI
PCI: brcmstb: Augment driver for MIPs SOCs commit, commit, commit, commit
hv: Add arm64 Hyper-V vPCI support commit
imx: Add the imx8mm pcie support commit
mvebu: Add support for compiling driver as module commit
switchtec: Add Gen4 automotive device IDs commit
vmd: Add DID 8086:A77F for all Intel Raptor Lake SKU's commit
11.28. Non-Transparent Bridge (NTB)
ntb_hw_amd: Add NTB PCI ID for new gen CPU commit
11.29. Thunderbolt
11.30. Clock
Introduce clk-tps68470 driver commit
clk-fch: Add support for newer family of AMD's SOC commit
mediatek: add mt7986 clock support commit
qcom: Add Pdc, GCC and RPMh clock support for SDX65 commit, commit, commit, commit, commit, commit, commit
qcom: Add clock driver for SM8450 commit
qcom: rpmh: add support for SM8450 rpmh clocks commit
renesas: r8a779a0: Add SDnH clock to V3U commit
renesas: rcar-gen3: Add SDnH clock commit
starfive: Add JH7100 clock generator driver commit
sunxi-ng: Add support for the D1 SoC clocks commit
Add write operation for clk_parent debugfs node commit
clocksource: renesas-ostm: Add RZ/G2L OSTM support commit
clocksource: msc313e: Add support for ssd20xd-based platforms commit
clocksource: Add MStar MSC313e timer support commit
11.31. PHY ("physical layer" framework)
Add lan966x ethernet serdes PHY driver commit
amlogic: Add a new driver for the HDMI TX PHY on Meson8/8b/8m2 commit
Add support for multilink configurations in Cadence Sierra PHY driver commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit, commit
freescale: pcie: Initialize the imx8 pcie standalone phy driver commit
intel: Add Thunder Bay eMMC PHY support commit
phy-mtk-tphy: add support efuse setting commit
qcom: add support for PCIe0 on SM8450 platform commit, commit, commit, commit, commit, commit, commit, commit
qcom: Introduce new eDP PHY driver commit
socionext: Introduce some features for UniPhier SoCs commit, commit, commit, commit, commit, commit, commit, commit
11.32. EDAC (Error Detection And Correction)
amd64: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh commit
synopsys: Add support for version 3 of the Synopsys EDAC DDR commit
mce_amd: Add new SMCA bank types commit
amd64: Add support for family 19h, models 50h-5fh commit
11.33. Various
bus: mhi: pci_generic: Add new device ID support for ! for UniPhieT99W175 commit
bus: mhi: pci_generic: Introduce Sierra EM919X support commit
eeprom: at24: Add support for 24c1025 EEPROM commit
firmware: cs_dsp: Add support for rev 2 coefficient files commit
firmware: xilinx: instantiate xilinx event manager driver commit
gnss: add USB support commit
gnss: usb: add support for Sierra Wireless XM1210 commit
- habanalabs
Add SOB information to signal submission uAPI commit
Add more info ioctls support during reset commit
Add new opcodes for INFO IOCTL commit
Add support for fetching historic errors commit
debugfs support for larger I2C transactions commit
Expand clock throttling information uAPI commit
Expose soft reset sysfs nodes for inference ASIC commit
Support hard-reset scheduling during soft-reset commit
sysfs support for two infineon versions commit
hwrng: cn10k - Add random number generator support commit
Add QCM2290 interconnect support commit, commit, commit, commit, commit
interconnect: qcom: Add EPSS L3 support on SC7280 commit
interconnect: qcom: Add MSM8996 interconnect provider driver commit
interconnect: qcom: Add SM8450 interconnect provider driver commit
iommu: arm-smmu-impl: Add SM8450 qcom iommu implementation commit
mailbox: qcom-ipcc: Support more IPCC instance commit
mei: bus: add client dma interface commit
memory: renesas-rpc-if: Add support for RZ/G2L commit
pcmcia: clean up dead drivers for CompuLab CM-X255/CM-X270 boards commit
powercap: intel_rapl: support new layout of Psys PowerLimit Register on SPR commit
remoteproc: Add Renesas rcar driver commit
reset: starfive-jh7100: Add StarFive JH7100 reset driver commit
spmi: mediatek: Add support for MT6873/8192 commit
spmi: mediatek: Add support for MT8195 commit
tpm: Add Upgrade/Reduced mode support for TPM2 modules commit
tty: Add support for Brainboxes UC cards commit
tty: serial: fsl_lpuart: Add i.MXRT1050 support commit
tty: serial: samsung: Enable console as module commit
12. List of Pull Requests
13. Other news sites
Phoronix's 5.17 feature overview