Weekly briefing · Aug 24–31, 2026
Linux mainline: week of Aug 24
A weekly briefing built from 10 published daily update(s).
In brief
This weekly briefing gathers the meaningful changes that entered Linux mainline over the previous seven days.
Bug fixes
Fix truncation of large CMA sizes on kernel command line
The numa_cma and cma_pernuma kernel parameters now correctly handle sizes of 2G and above; previously they were truncated to zero or negative values, silently reserving nothing or rejecting the request.
Why it matters: Users relying on large contiguous memory allocations via kernel parameters get the requested CMA size instead of silent failure.
Fix kernel panic when unbinding intel_rapl PMU
The intel_rapl driver now checks whether the PMU is actually registered before unregistering it, avoiding a NULL pointer dereference and kernel panic during driver unbind/removal.
Why it matters: Prevents a crash for users who unbind or remove the Intel RAPL power capping driver.
QCS8300 PCIe and USB survive suspend/resume; GDSC error handling hardened
PCIe and USB power domains on QCS8300 were losing state during suspend because their GDSCs were not set to retention mode, causing link failures and xHC resume errors. GDSC error handling was hardened: gdsc_poll_status() treated negative regmap errors as success, gdsc_unregister() left dangling genpd entries, and ALWAYS_ON domain enable failures were silently ignored.
Why it matters: QCS8300-based systems can suspend and resume without losing PCIe links or USB state. Qualcomm SoC systems are less likely to silently operate with unknown power-domain states.
MDM9607 clock driver fixes prevent crashes from incorrect clock definitions
Several clock definitions (apss_tcu_clk_src, system_noc_bfdcd_clk_src, BIMC PLL) were incorrectly copied from MSM8916 and caused register read/write failures or crashes on MDM9607. The halt_reg for gcc_apss_axi_clk was fixed and USB PHY reset delay was increased. BLSP sleep clock enable was corrected for MSM8916/MSM8939/MDM9607.
Why it matters: Prevents crashes and incorrect behavior on MDM9607 modems by removing clock definitions for hardware that does not exist on this SoC. Sleep clock gating is fixed on several older Qualcomm platforms.
QCM2290 UART console output preserved during clock driver probe
QUP wrap0 clock sources were switched to clk_rcg2_shared_no_init_park_ops so their bootloader-configured frequency is not reparked to XO at registration time, which was dropping early console output. QCM2290 GDSC power domain fixes address status polling, register context retention, and wait value configuration for display and GPU.
Why it matters: QCM2290-based devices no longer lose serial console output between bootloader handoff and serial driver probing. Display and GPU power domain failures are prevented.
AppArmor: initialize policy list heads before failure cleanup
If AppArmor profile creation fails before policy_init() completes, the policy list heads are not initialized. profile_free() then runs its sanity checks on uninitialized lists and triggers a kernel warning.
Why it matters: Prevents a spurious kernel WARN during AppArmor profile creation failure; no user-visible behavior change is expected.
seg6: reset IP6CB after IPv6 decapsulation
When SRv6 (IPv6 Segment Routing) decapsulation pulls the outer IPv6 headers, the IPv6 control block still contains offsets and flags from the outer packet. The inner packet can then be processed with stale nhoff and extension-header data, and an unprivileged user in a namespace can trigger this via End.DT6 with crafted outer extension headers.
Why it matters: Fixes a potential out-of-bounds read in the IPv6 input path after SRv6 decapsulation.
of/irq: fix device node refcount leak in of_irq_get_affinity()
of_irq_parse_one() takes a reference on the interrupt controller node, but of_irq_get_affinity() never drops it after parsing. The leak is hit through platform_get_irq_affinity(), used by arm_pmu, arm_spe_pmu, and coresight-trbe.
Why it matters: Prevents a gradual reference-count leak on interrupt controller nodes for ARM PMU, SPE, and TRBE users.
TCP urgent data corruption on multi-segment retransmit
The normal transmit path refuses to build multi-segment TSO packets while in urgent mode, so every segment gets its own urgent pointer. The retransmit path lacked that guard: __tcp_retransmit_skb() could build a multi-segment skb, and the GSO split copied the same urg_ptr verbatim onto every segment. Since urg_ptr is an offset from each segment's own sequence number, the copied value pointed at the wrong place on all but the first segment.
Why it matters: Connections using TCP urgent data could have retransmitted segments with a corrupted urgent pointer, breaking urgent-data semantics for the receiver. A new packetdrill test (tcp_urg_ptr_retransmit) verifies the fix.
TCP-AO: VRF key deletion and connect race fixed
tcp_ao_del_cmd() validated the supplied VRF interface index but never assigned it to the local l3index before matching keys, so deleting a key scoped to a non-default VRF always failed with ENOENT. Separately, tcp_ao_connect_init() could observe a different L3 master than the initial validation if the device was detached from its VRF in between, causing the only matching key to be removed and a subsequent use-after-free when the no-key path cleared ao_info.
Why it matters: VRF users of TCP-AO can now delete keys correctly, and a race during connect no longer risks a use-after-free. A selftest covers VRF-scoped key deletion.
GSO segment-count overflow blocked for crafted packets
A packet crafted with an AF_PACKET PACKET_VNET_HDR socket can specify any gso_size, including values below TCP_MIN_GSO_SIZE (8). Dividing a large BIG TCP packet by such a small gso_size could overflow the 16-bit gso_segs field during partial GSO. virtio-net now clamps TCP gso_size to at least 8, and skb_segment() independently clamps partial_segs as a generic safeguard.
Why it matters: Prevents malformed user-generated packets from overflowing gso_segs, which could otherwise lead to incorrect GSO segmentation. The skb_segment() clamp protects all drivers, not just virtio-net.
Two qdisc soft-lockup bugs fixed
qdisc_get_stab() accepts a user-supplied size table that can amplify qdisc_pkt_len() to about 1 GiB for an ordinary skb. Deficit schedulers such as DRR and ETS replenish one quantum per loop iteration, so with a tiny quantum they could spin billions of times under the qdisc lock. The value is now capped. Separately, htb_classify() followed filter-selected inner classes without bounding the number of hops, so a filter pointing back to itself caused an infinite loop in the classification path; a hop counter now drops the packet with a rate-limited warning.
Why it matters: Both were one-packet soft-lockup/RCU-stall triggers reachable from user space, so the fixes remove denial-of-service vectors in the packet scheduler.
slip: two use-after-free fixes
slip_devs[] stores bare net_device pointers without taking a reference, so sl_sync() could race with device teardown while walking the table. Separately, slip_hangup() simply called slip_close(), which unregisters and frees the net device; it ran concurrently with readers like slip_receive_buf() because the hangup hook is called under only a read lock on tty->ldisc_sem. The hangup hook is removed because line discipline close already handles teardown under the write lock.
Why it matters: Fixes slab use-after-free reads in slip_receive_buf() and sl_sync() when a slip device is closed or the tty hangs up, closing crash paths for this legacy protocol.
stmmac: RX alignment, TSO offload, and unicast filter fixes
The zero-copy RX path dropped NET_IP_ALIGN, so on architectures where it is 2 (like ARM32) IP headers landed misaligned, which is fatal for load-multiple instructions; the offset is restored. stmmac_xmit() also used a gso_enabled_types mask that could be zeroed when IPv4 TSO was disabled while IPv6 TSO stayed enabled, causing IPv6 GSO frames to fall through to the non-TSO path; the driver now relies on netdev features. In addition, dwmac1000/dwmac4/dwxgmac now account for the primary MAC address occupying one unicast filter slot when deciding whether to use promiscuous mode.
Why it matters: Fixes potential crashes on ARM32 from misaligned IP headers, broken IPv6 TSO offload, and incorrect unicast filtering on stmmac-based hardware (common in embedded and Amlogic/StarFive SoCs).
23680bf5f8c69c24a504a3af9698b6da371482187f42c0142739d6f9a2b8
nf_tables: offload ordering, set commit, and AVX2 lookup fixes
The hardware offload step now runs after building the chain blob, reducing the chance of an inconsistent state where the NIC's offloaded ruleset differs from the software ruleset. The dead bit is set earlier so deleted sets skip the commit path, fixing a regression. A double clone of set expressions on element insert is removed, and the AVX2 pipapo lookup now executes vzeroupper before returning to avoid degrading later SSE code. Several WARN_ON calls were also downgraded to debug-only to prevent panics on production systems with panic_on_warn=1.
Why it matters: Improves reliability of nftables hardware offload, fixes set commit behavior for deleted sets, avoids a performance penalty on CPUs using the AVX2 set lookup, and reduces panic risk in production.
b1881d362e19132a02beb46f43559058d21e55dd20f0f4b11f0391aea8839b4ab1f3fed8
Core fixes: TX watchdog, SMC leak, bridge mcast, fragment GSO
dev_activate() reset trans_start to 0 and only stamped queue 0, so other queues could appear stopped for about 49 days and trigger a false NETDEV WATCHDOG; jiffies are now stamped for all queues. IPPROTO_SMC sockets leaked their internal TCP socket when creation failed after proto->init (for example a cgroup BPF deny), which could grow kernel memory unboundedly; a .destroy hook now releases it. A use-after-free in bridge multicast teardown of master VLANs is fixed, and GSO state is now stripped from fragments before reassembly so a crafted virtio_net_hdr cannot make the reassembled datagram claim bogus GSO.
Why it matters: Fixes false watchdog timeouts on multi-queue NICs, closes an unbounded kernel memory leak, removes a bridge multicast use-after-free, and prevents malformed fragments from carrying GSO state into reassembly.
Driver fixes: EMAC, bnxt, PHY, wangxun, airoha, FEC, DSA
Allwinner EMAC now detects IRQ mapping failures correctly (irq_of_parse_and_map() returns 0 on error, not -ENXIO). bnxt_en writes the doorbell when linearizing an skb fails, avoiding stalled TX rings. The air_en8811h PHY reapplies LED GPIO output configuration after every MCU restart, fixing LEDs that stopped reflecting link state. Wangxun drivers use BIT_ULL() to avoid shift overflow on 32-bit builds. The airoha NPU driver sets both streaming and coherent DMA masks, fixing mailbox hangs on EN7581. FEC only stops PTP when it was initialized, and the MxL862xx DSA driver enables assisted learning on the CPU port so roaming clients get correct FDB updates.
Why it matters: Addresses device-specific bugs in Ethernet drivers used on Allwinner, Broadcom, Airoha, NXP/Freescale, and Marvell switch platforms.
991c2be7825700eeab0c644a03b4702fc5e363c885688f386fe7e31a45e3dd890ae2929988c71cc0ad98
UFS core: fix busy loop in ufshcd_wait_for_pending_cmds()
io_schedule_timeout() requires the task state to be set to TASK_UNINTERRUPTIBLE first; without it, the task remains TASK_RUNNING and the function returns immediately, causing a busy loop that wastes CPU cycles while waiting for pending commands.
Why it matters: Fixes a CPU-wasting busy loop in the UFS host controller driver's command-wait path.
mpt3sas: avoid freeing unallocated PCIe SGL buffers
_base_release_memory_pools() unconditionally freed every ioc->pcie_sg_lookup[] entry, including ones never allocated after a partial setup failure. This caused a 'bad dma' warning on debug kernels or a NULL pointer dereference otherwise.
Why it matters: Prevents a crash or DMA warning on Broadcom mpt3sas controllers when memory pool setup partially fails.
LeapRAID: serialize firmware-log mmap with teardown and balance host references
Two related fixes address races in LeapRAID's firmware-log mmap path. One ensures a temporary mmap reference is claimed before the VMA open callback runs, preventing removal from freeing the coherent buffer while a mapping is still being established. The other balances Scsi_Host references across VMA open/close so that cloning a mapping cannot prematurely release the host while another VMA still refers to the adapter.
Why it matters: Fixes use-after-free and premature host-release races in LeapRAID's userspace firmware-log mapping path.
ibmvfc: fix use of uninitialized rport in ibmvfc_do_work()
A copy-paste accidentally included an unnecessary check for 'rport' in a code block where the variable was uninitialized, triggering a clang warning or error with CONFIG_WERROR=y. The check was removed.
Why it matters: Clears a compiler warning/error; no runtime impact since the check was unreachable in context.
snic: fix SCSI host leak on workqueue allocation failure
If scsi_add_host() succeeded but alloc_ordered_workqueue() failed, snic_add_host() returned -ENOMEM with shost->work_q NULL. The error path then skipped scsi_remove_host(), leaving a zombie host in sysfs, permanently shifting host numbering and leaking memory.
Why it matters: Prevents a Scsi_Host leak and host-number shift when snic probe fails at workqueue allocation.
qla2xxx: fix loop timeout test, format specifier, and error code
Three small fixes: a loop timeout test checked for retries == 0 instead of -1; a size_t format specifier used %lx instead of the correct %zx on 32-bit builds; and qla_get_tmf() returned positive EIO instead of negative -EIO (no runtime impact, cleanup only).
Why it matters: Fixes a real timeout-test bug and a 32-bit build error in the qla2xxx Fibre Channel driver.
libsas: improve flutter and device-replace detection during rediscovery
Introduces sas_dev_is_flutter() and sas_rediscover_ex_phy() to better detect device flutter and replacement during SAS expander rediscovery. The new sas_ex_phy_to_dev() helper returns any device type attached to an expander PHY. Validation for linkrate and SAS-address changes is added, with SAS-address checked before linkrate so the old device can be properly unregistered when its address changes.
Why it matters: Improves hot-swap and device-replacement reliability for SAS expander topologies.
OpenRISC: close kernel memory access hole in or1k_atomic syscall
The or1k_atomic syscall swapped words at two user pointers without checking them or adding fault fixups, so a kernel address could be read and written directly. The fix adds access_ok() checks and handles faults safely.
Why it matters: On OpenRISC systems, an unprivileged process could previously use this syscall to read or modify kernel memory; the hole is now closed.
Tracing: fix use-after-free and error-path bugs
Several tracing fixes landed: trace_pipe readers could dereference freed ring-buffer pages after a sub-buffer size change; same-name hist triggers left a dangling list entry; user_events could copy a stale mm pointer into child processes; kthread_stop() was called on error pointers in the event self-test; and boot instance creation failures logged '(null)' instead of the instance name. Ring-buffer reader swap retry logic was also corrected.
Why it matters: These fix potential crashes or memory corruption in tracing paths involving runtime buffer resizing, named triggers, fork, and thread creation failures.
372f8534244da7318172aa33390f6bd8583d649bc7df3e5de0d3aed7b12c5eab74874d11a9a01be2834a
I2C: fix debugfs use-after-free and controller quirks
The core I2C adapter removal path could free debugfs state while a racing sysfs write still used it. Driver fixes also cover lost interrupts on HJMC3001 DesignWare controllers, target-register access on i.MX LPI2C controllers without target mode, frequency-table timing on IPQ5424, autosuspend cleanup on Qualcomm CCI, and a Device Tree channel-node leak in the mux core.
Why it matters: These changes prevent a crash during adapter removal and improve reliability of I2C on several Qualcomm, DesignWare, and NXP platforms.
b15b548d52b477549d01edec27c9445be86ba4f3fbccb65df98d49864821385c7af4e3b9
Rust: fix UB in Bounded conversions and build issues
A From<bool> conversion could create a signed Bounded value that violates its invariants and lead to undefined behavior. Other fixes keep Rust kernel builds working with CFI, LTO, inline helpers, and cross-architecture rusttest runs.
Why it matters: These are mostly build and safety fixes for the in-kernel Rust support; the Bounded fix removes a way for safe Rust code to reach undefined behavior.
7dd6343fc12729b03d1de967993f235c4af40bff7711c19b5febf432df1c1b0bab4a873fdea1bf38143f
ARM: PREEMPT_RT fault handling, debugfs lock, and Risc PC eBPF JIT
ARM now enables interrupts before sending signals for unhandled user faults, which is required on PREEMPT_RT. The page-table dump for user faults takes the mmap write lock to avoid a race with munmap(), and the eBPF JIT is disabled on Risc PC because its bus cannot do half-word accesses. ARM also stops reserving breakpoint type 0x03 for CFI unless CFI is in use.
Why it matters: These fix a PREEMPT_RT sleep-in-atomic bug, a potential use-after-free when user_debug is enabled, a broken eBPF JIT on the Risc PC, and give userspace debuggers a breakpoint type back on ARM.
Core kernel: revert locking guard change, fix eventfs and sample modules
A recent switch of cleanup guards to _irq variants was reverted after a fuzzing report found wrapped code that manually toggles interrupts. The eventfs code now initializes list heads before error paths can inspect them, two ftrace sample modules no longer pass ERR_PTR to kthread_stop(), and UML now uses asm-generic/timex.h instead of the host architecture header.
Why it matters: The revert avoids a subtle locking failure; the eventfs and sample fixes prevent false warnings and module-unload crashes; the UML change fixes builds on x86 hosts.
46094a7708b71704aaaf5d22d79fb758e7e26727b7618f4964f74d8f7288
Hardware support
Pin control: new SoC and PMIC support
The pinctrl pull request adds support for Qualcomm Maili TLMM, PMG1110 PMIC, and Eliza LPASS LPI TLMM SoCs, plus Samsung Exynos 8855, MediaTek MT6858, Rockchip RK3308B/RV1106, Airoha EN7523/AN7563, and Apple T6030/T6031.
Why it matters: Expands the range of platforms that can use the mainline pin control subsystem.
Mailbox: new drivers for Axiado and Exynos850
Adds a mailbox controller driver for the Axiado AX3005 and support for Exynos850, along with fixes for Qcom and PCC.
Why it matters: Enables mailbox communication on additional hardware.
PHY: new USB, PCIe, and DSI PHY drivers
Adds PHY drivers for MediaTek MT8196 DSI, Renesas RZ/G3L USB2, Qualcomm SM8475 QMP USB/PCIe, IPQ9650 PCIe, and a Spacemit USB3/PCIe combo PHY.
Why it matters: Provides the physical-layer support needed for USB, PCIe, and display interfaces on new hardware.
DMA engine: new API and MediaTek UART DMA
Introduces a combined configuration/preparation API and adds UART DMA support for the MediaTek MT8189 SoC.
Why it matters: Simplifies DMA client code and enables DMA on another SoC.
USB and Thunderbolt driver updates
The USB/Thunderbolt merge brings new device IDs, xhci fixes, and Type-C/gadget updates.
Why it matters: Broader hardware support and improved stability for USB and Thunderbolt devices.
TTY/serial: new 8250_mxpcie driver, ipwireless removal
Adds a new 8250_mxpcie serial driver and removes the obsolete ipwireless driver, along with other serial updates.
Why it matters: New hardware support and cleanup of a legacy driver.
Char/misc: IIO additions and legacy driver removals
Includes many IIO driver updates and additions, binder updates, and removal of the insecure SGI XP/GRU and obsolete ibmasm drivers.
Why it matters: More sensor/industrial I/O support and removal of unused, potentially insecure drivers.
Spread spectrum clocking API added to clock framework
The clock framework now supports configuring spread spectrum modulation via a new clk_hw_set_spread_spectrum API and a device-tree assigned-clock-sscs property, with definitions for down-spread, up-spread, and center-spread modulation methods.
Why it matters: Spread spectrum clocking reduces electromagnetic interference for systems that must pass regulatory compliance or operate in electrically noisy environments.
New SoC clock controller drivers: Amlogic A9, Rockchip RV1106, ESWIN EIC7700, UltraRISC DP1000, Cix Sky1, and more
Clock controller drivers were added for Amlogic A9 (always-on and peripherals), Rockchip RV1106/RV1103, ESWIN EIC7700 high-speed peripherals, UltraRISC DP1000 RISC-V SoC, Cix Sky1 audio subsystem, Mobileye EyeQ7H, Allwinner A733 RTC, Renesas R-Car X5H, and Si549 programmable oscillator. SCMI clock driver gained vendor-specific OEM extension support for i.MX95.
Why it matters: These advance mainline kernel support for a diverse range of ARM and RISC-V SoC platforms, enabling proper clock management for their subsystems.
d425596035b333972977d632713e4d54ff73fc8c21a2b5243948a36be42b3730fe6032d9c74d7d80218e0a136efc0fc288656a46dfa3bdba63b59897a73edd3ed8d3
RK3588 display clock no longer breaks UART and peripherals
The dclk_vop2_src clock had CLK_SET_RATE_PARENT set, causing PLL rate changes that disrupted UART console, I2S, and SPDIF. The flag was removed and VP2 was given the same parent-switching flexibility as other video ports. Separately, RK3588/RK3576 fractional PLL rate calculation was corrected—the coefficient was treated as unsigned and divided by 65535 instead of 65536.
Why it matters: RK3588 board users no longer experience console breakage or peripheral failures when the display pipeline is configured. Fractional PLL rates are now correct, important for future DisplayPort pixel clock support.
LED and thermal hardware support additions
New drivers were added for Silergy SY7758 6-channel LED backlight (Ayaneo Pocket S2), LTC3220 18-channel LED driver, and PCA963x multicolor LED grouping. Airoha AN7583 thermal sensor support was added. Qualcomm MBG (Master Bandgap) thermal monitoring driver for PM8775 PMIC was introduced. Netdev LED trigger was extended to 100G link speeds.
Why it matters: Linux gains support for more LED controllers and thermal sensors across consumer and networking hardware. High-speed network interfaces can now reflect link speeds up to 100G via the netdev LED trigger.
110d67699a433c28d9d0b7e0160c78e69c3bb20d9782756a5d901d7d10027ddc04d1bd08
Fix TPM driver reliability on I2C, SPI, and non-x86 systems
Fixes an IRQ enable/disable imbalance in the Nuvoton I2C TPM driver, a missing resume callback for SPI TPMs without CR50 support, and restricts the Atmel TPM driver to x86 where its fixed I/O ports exist.
Why it matters: Prevents TPM timeouts, resume failures, and boot crashes on affected systems.
Fix io_uring waitid cancellation and teardown handling
waitid requests now honor task_work cancellation and avoid copying siginfo to userspace when the ring is being torn down from a kworker.
Why it matters: Prevents incorrect cancellation behavior and inappropriate userspace access during io_uring ring teardown.
Fix arm64 32-bit LDM/STM alignment emulation
Fixes decrementing LDM/STM alignment emulation for 32-bit processes on arm64, which previously added nearly 4 GiB instead of subtracting the transfer size.
Why it matters: Fixes crashes or misbehavior for 32-bit ARM binaries using unaligned decrementing LDM/STM on ARM64.
Revert ACPI deferred power initialization
Reverts a change that deferred ACPI device power initialization, which could break power management for PCI devices.
Why it matters: Avoids elusive power management issues on laptops and other ACPI systems.
Security and hardening
Fix SMB client out-of-bounds read/write in T2 coalescing
coalesce_t2() now validates server-supplied DataOffset fields against buffer bounds before copying data.
Why it matters: Prevents a malicious SMB server from corrupting memory or leaking data via crafted T2 responses.
Fix SMB client use-after-free in secondary T2 handling
Malformed secondary T2 responses could leave a dangling buffer pointer, leading to a use-after-free.
Why it matters: Prevents a malicious SMB server from crashing the client or potentially executing code.
Validate SMB tree connect response byte count
CIFSTCon() now rejects responses with a byte count too small to parse, avoiding an out-of-bounds read.
Why it matters: Prevents a malicious SMB server from leaking kernel memory via /proc/fs/cifs/DebugData.
Clear sensitive key material in SMB client
Several SMB client paths now zeroize stack and heap buffers containing keys, hashes, and signatures before freeing them.
Why it matters: Reduces the risk of credential material leaking via memory disclosure bugs.
3d93986f68f455a1ad8413f51a6bd74a27f12f9af06e30b7111a2b8717ef
AppArmor: use-after-free, policy parsing overflow, and namespace escape fixed
Three critical AppArmor vulnerabilities were fixed: a use-after-free in begin_current_label_crit_section() where credential replacement could free a struct cred still referenced by kernel code; an integer overflow in verify_tags() allowing a malicious policy blob to bypass bounds checks and write past a kalloc'd array; and an unconfined user namespace restriction escape where stacked profiles could bypass confinement via two transitions through an unconfined profile.
Why it matters: These are real exploitable vulnerabilities in a major LSM affecting AppArmor-enabled distributions. Users loading untrusted policy blobs or relying on user namespace sandboxing are protected from memory corruption and confinement bypass.
XFRM/IPsec: out-of-bounds write, use-after-free, and deadlock fixes
An off-by-one in xfrm6_input_addr() allowed writing past the sec_path xvec array on full secpath re-injection. A use-after-free in espintcp_close() racing with xfrm_trans_reinject and a double-free in xfrm_dev_direct_output() were fixed. The NAT keepalive worker was restructured to avoid an AB-BA lock inversion with SA deletion, and ESP-in-TCP teardown NULL dereferences were fixed. An auth-trunc memory leak with cmac(aes) was also resolved.
Why it matters: Systems using IPv6 IPsec, ESP-in-TCP, or IPsec packet offload are protected from memory corruption, deadlocks, and crashes. The auth-trunc leak fix prevents kernel memory accumulation over connection teardowns.
5d9e3bf34fecdeb232e884872aed51fc58d9763fe700b7c5c12cbf56320f
Network security: Netfilter, TCP-AO, MCTP, OVS, and IPVS fixes
Netfilter now validates L4 headers after userspace packet modifications to prevent memory corruption. TCP-AO fixes a use-after-free of current_key on reconnect and VRF-scoped key deletion bugs. MCTP route lookup use-after-free reachable by unprivileged users was fixed. OpenvSwitch CT limit teardown use-after-free triggerable by unprivileged namespace users was resolved. IPVS FTP helper integer overflow in port parsing—present since Linux 2.6.12—was fixed. The inetpeer tree was randomized with SipHash to prevent targeted rate-limit evasion.
Why it matters: Multiple local privilege escalation or denial-of-service vectors are closed. The IPVS FTP helper fix addresses a long-standing vulnerability that could redirect FTP data connections. The inetpeer randomization prevents off-path attackers from manipulating kernel rate-limiting.
112e447d17f7da4471557f27408da1df1811403f96c32c9ee625a9477d122ee66e948717
Bluetooth: RFCOMM remote OOM, use-after-free races, and TP-Link UB500 firmware loop fixed
A remote peer sending RFCOMM PN frames with MTU zero caused infinite zero-length skb allocation loops; the fix clamps zero MTU to default. RFCOMM session teardown and security confirmation use-after-free races were fixed with proper mutex serialization. The TP-Link UB500 (RTL8761BU) dongle's infinite firmware-reload loop was fixed by limiting a chip-wide quirk to the specific dongle that needs it. HCI command completion intermittent -ETIMEDOUT was fixed by switching from skb_clone() to skb_get().
Why it matters: A malicious Bluetooth peer can no longer hang or OOM-kill machines accepting RFCOMM connections. TP-Link UB500 owners can use their dongle without constant resets. Bluetooth initialization reliability improves for affected controllers.
Fix out-of-bounds write in USB MIDI driver
A malicious USB device could advertise a bulk OUT endpoint with wMaxPacketSize of 1, causing a negative length to be passed to snd_rawmidi_transmit and an out-of-bounds write in snd_usbmidi_novation_output().
Why it matters: Closes a security vulnerability that could be triggered by a malicious USB device; users with USB MIDI interfaces should update.
Harden Ceph and libceph message decoding
Multiple missing bounds checks in Ceph and libceph message decoding are fixed, preventing out-of-bounds reads/writes and crashes from malicious or buggy MDS, OSD, or monitor servers.
Why it matters: Ceph users are protected from remote memory corruption or denial-of-service via crafted cluster server responses.
9ec08b7499a6eff8013c5a8968d541754d6c77933e22adfea3eb169ee2974bd3158bd624aedc9053d9093cde4a830230f374967fcdf0
Fix UBIFS out-of-bounds read in signature verification
The signature length check in ubifs_sb_verify_signature() used the wrong sign, accepting declared lengths up to 64 bytes larger than the node actually holds. This could lead to an out-of-bounds read past the end of the buffer during PKCS#7 signature parsing.
Why it matters: Fixes a potential security vulnerability in UBIFS that could be triggered by a crafted filesystem image.
Fix IPMI driver security issues
Adds validation of write message length in the IPMB driver to prevent reading uninitialized stack bytes and underflow, fixes a NULL pointer dereference in the SI driver after failed registration, and restores the required grace period before freeing command receivers to prevent a use-after-free.
Why it matters: Hardens IPMI management interfaces against malformed messages and error-path crashes, relevant for server and embedded systems using IPMI.
Fix out-of-bounds write in async compression request cloning
acomp_request_clone() now allocates a clone large enough for the async provider's request context instead of copying only the stack-sized synchronous fallback.
Why it matters: Prevents slab out-of-bounds writes with async compression accelerators such as QAT.
Fix ALSA control validation and LED handling
The DAPM double-enum control now rejects the second channel value when it equals the number of items, preventing an out-of-bounds read. The control core also skips write-only kcontrols when updating LED state, preventing a NULL pointer dereference.
Why it matters: Closes memory-safety holes in the ALSA mixer core that could be triggered by invalid control values or user-defined write-only controls with LED triggers.
Cap io_uring query size to prevent excessive zeroing
io_uring now rejects query sizes larger than PAGE_SIZE instead of allowing a nearly 4 GiB clear_user() on the error path.
Why it matters: Closes a way for unprivileged io_uring users to cause large kernel/userspace zeroing work, reducing a DoS risk.
Fix MTE store-only tag check leaking between tasks on arm64
The kernel now saves and restores SCTLR_EL1.TCSO0 on context switch, so a process that opted into MTE store-only tag checking no longer leaves that mode enabled for the next task.
Why it matters: Prevents one process's memory-tagging mode from unintentionally affecting another, improving isolation on arm64 systems using MTE.
Fix KFD CRIU restore and AQL queue validation
The KFD driver now checks that restore_mqd is implemented before calling it during CRIU queue restore, and rejects AQL queue memory allocations that become zero after the wraparound size-halving workaround.
Why it matters: Hardens the checkpoint/restore interface and prevents bypassing per-process VRAM limits, closing local privilege escalation or denial-of-service paths.
Harden AMD display and VCN against malformed inputs
A divide-by-zero in __is_lut_linear() and missing size validation for per-plane degamma LUTs could crash the kernel or read out of bounds with a malformed LUT blob. A crafted message buffer count could overflow the bounds check in the VCN video decoder.
Why it matters: Prevents system crashes and potential memory disclosure from userspace-supplied color LUTs and video decoder messages on AMD GPUs.
SCSI core: enable compile-time lock context analysis
A series of commits annotates SCSI core functions with lock context requirements (e.g., __must_hold(&shost->scan_mutex)), protects all SCSI host state changes with the host lock to silence KCSAN data-race reports, passes the SCSI host pointer directly to scanning functions to simplify annotations, and enables context analysis in the build system for files that pass cleanly.
Why it matters: Catches locking bugs at compile time rather than runtime; fixes KCSAN-reported data races on SCSI host state.
e70647b25a6409982efcc07e4c461ee2b2a5fb0fc67db962d34a88f53a7aff5d552022b3
lpfc: replace deprecated strlcat() with seq_buf and sysfs_emit_at()
Multiple commits replace strlcat() usage across lpfc's info strings, debugfs helpers, and sysfs show functions with seq_buf, scnprintf, and sysfs_emit_at() as appropriate, in preparation for removing the strlcat() API entirely.
Why it matters: No functional change to output; modernizes buffer handling and closes a format-string injection vector from adapter VPD data.
5a03dbfd670007f46a9f896422d4cbf6f7504832a60e0a7836b6dcb2b746
LeapRAID: standardize NCQ priority sysfs attributes
Replaces the earlier ncq_cmd_prio_enable attribute with the standard sas_ncq_prio_supported and sas_ncq_prio_enable names documented in sysfs-block-device, since the old name was never part of a released userspace ABI.
Why it matters: Aligns LeapRAID with standard SAS NCQ priority sysfs interface; no compatibility break since the old name was unreleased.
Source commits1388 entries +
apparmor: make MEDIATES_AF_UNIX its own fn
John Johansen · Jun 17, 2018 · 3 files
apparmor: refactor network sock mediation in preparation for inet mediation
John Johansen · Oct 9, 2021 · 6 files
apparmor: refactor xattr attachment, to take the file path
John Johansen · Jun 25, 2023 · 1 files
apparmor: Initial support for compressed policies
Maxime Bélair · Feb 1, 2024 · 5 files
apparmor: fix race condition in label replacement
John Johansen · Apr 19, 2024 · 1 files
apparmor: add audit mode to provide a mechanism to silence complain messages
John Johansen · Aug 4, 2025 · 4 files
reset: eyeq: Add EyeQ7H compatibles
Benoît Monin · Aug 21, 2025 · 1 files
clk: eyeq: Prefix the PLL registers with the PLL type
Benoît Monin · Sep 3, 2025 · 1 files
dt-bindings: soc: mobileye: Add EyeQ7H OLB
Benoît Monin · Sep 25, 2025 · 2 files
clk: fixed-factor: Rework initialization with parent clocks
Benoît Monin · Oct 20, 2025 · 1 files
clk: fixed-factor: Export __clk_hw_register_fixed_factor()
Benoît Monin · Oct 20, 2025 · 2 files
clk: eyeq: Introduce a generic clock type
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Convert clocks declaration to eqc_clock
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Drop PLL, dividers, and fixed factors structs
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Add EyeQ7H compatibles
Benoît Monin · Dec 11, 2025 · 1 files
apparmor: move netfilter functions next to the LSM network operations
John Johansen · Jan 8, 2026 · 1 files
apparmor: move sock_rcv_skb() next to inet_conn_request
John Johansen · Feb 9, 2026 · 1 files
apparmor: fix net.h and policy.h circular include pattern
Ryan Lee · Feb 12, 2026 · 5 files
apparmor: make include headers self-contained
Ryan Lee · Feb 13, 2026 · 7 files
clk: rockchip: rk3588: Don't change PLL rates when setting dclk_vop2_src
Heiko Stuebner · Mar 4, 2026 · 1 files
clk: rockchip: rk3588: Allow VP2 the same sourcing options as other VPs
Heiko Stuebner · Mar 4, 2026 · 1 files
Bluetooth: RFCOMM: Validate MTU in rfcomm_apply_pn() to prevent infinite loop
Hyunwoo Kim · Mar 19, 2026 · 1 files
net: ionic: Fetch RCQ sign bit from firmware
Abhijit Gangurde · Apr 17, 2026 · 1 files
clk: qcom: gdsc: Add custom disable callback for GX GDSC
Jagadeesh Kona · Apr 27, 2026 · 2 files
clk: qcom: gxclkctl: Use custom disable callback for gx_gdsc
Taniya Das · Apr 27, 2026 · 1 files
clk: qcom: common: ensure runtime PM suspend completes on probe
Taniya Das · Apr 27, 2026 · 1 files
clk: qcom: gxclkctl: Remove GX/GMxC rail votes to align with IFPC
Taniya Das · Apr 27, 2026 · 1 files
MAINTAINERS: Add Intel LPSS section to follow the changes
Andy Shevchenko · Apr 29, 2026 · 1 files
tty: xtensa/iss: use strnlen to improve iss_console_write
Thorsten Blum · Apr 30, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Add compatible for Shikra
Komal Bajaj · May 1, 2026 · 1 files
ARM: 9473/1: kprobes: test: add MODULE_DESCRIPTION
Arnd Bergmann · May 5, 2026 · 1 files
clk: imx: scu: drop redundant init.ops variable assignment
Brian Masney · May 6, 2026 · 1 files
clk: add clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 2 files
clk: hisilicon: hi3660-stub: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: imx: scu: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: rpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: rpmh: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: smd-rpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: renesas: rzg2l-cpg: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: rp1: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: samsung: acpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: scpi: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: sprd: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
phy: mediatek: phy-mtk-hdmi-mt2701: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
pmdomain: mediatek: airoha: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
pmdomain: mediatek: mtk-mfg: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: hisilicon: allow COMPILE_TEST builds
Rosen Penev · May 9, 2026 · 2 files
apparmor: fix unconfined user namespace restriction forced stack
John Johansen · May 9, 2026 · 1 files
apparmor: fix alternate loaders ability to load compressed policy
John Johansen · May 10, 2026 · 1 files
clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller
Min zhang · May 12, 2026 · 1 files
clk: add kernel docs for the core flags
Brian Masney · May 12, 2026 · 1 files
clk: add kernel docs for struct clk_core
Brian Masney · May 12, 2026 · 1 files
docs: clk: include some identifiers to keep documentation up to date
Brian Masney · May 12, 2026 · 1 files
clk: test: convert constants to use HZ_PER_MHZ
Brian Masney · May 12, 2026 · 1 files
clk: add missing function short descriptions for kernel-doc
Randy Dunlap · May 12, 2026 · 1 files
clk: qcom: gcc-sm6115: Set HW_CTRL_TRIGGER for video GDSC
Dmitry Baryshkov · May 15, 2026 · 1 files
clk: si5341: Drop unused i2c driver_data
Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 1 files
clk: Use named initializers for arrays of i2c_device_data
Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 11 files
clk: stm32: add missing bitfield.h header
Rosen Penev · May 19, 2026 · 2 files
leds: trigger: netdev: Extend speeds up to 100G
Mike Marciniszyn (Meta) · May 20, 2026 · 2 files
clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation
Joey Lu · May 21, 2026 · 1 files
clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc
Joey Lu · May 21, 2026 · 1 files
clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic
Joey Lu · May 21, 2026 · 1 files
clk: mediatek: mt8196: Select REGMAP_MMIO for vlpckgen
Akari Tsuyukusa · May 22, 2026 · 1 files
tmpfs/ramfs: let memfd_create() work on nommu
Daniel Palmer · May 23, 2026 · 1 files
dt-bindings: clock: renesas: Add audio clock inputs for RZ/V2H family
John Madieu · May 25, 2026 · 1 files
clk: renesas: r9a09g047: Add audio clock and reset support
John Madieu · May 25, 2026 · 1 files
clk: moxart: remove unused variables, fix refcount leak
Alexander A. Klimov · May 26, 2026 · 1 files
clk: Use named initializers for platform_device_id arrays
Uwe Kleine-König (The Capable Hub) · May 28, 2026 · 4 files
dt-bindings: leds: backlight: Document the SY7758 6-channel High Efficiency LED Driver
Neil Armstrong · May 29, 2026 · 1 files
backlight: Add SY7758 6-channel High Efficiency LED Driver support
KancyJoe · May 29, 2026 · 3 files
ceph: pass fscrypt `tname` buffers directly
Sam Edwards · May 30, 2026 · 3 files
ceph: properly decrypt filenames in vmalloc() buffers
Sam Edwards · May 30, 2026 · 2 files
drm/msm/dpu: fix parameter name in dpu_core_perf_adjusted_mode_clk kernel-doc
Rosen Penev · May 30, 2026 · 1 files
clk: bcm: kona: Stop defaulting to parent index 0 on error
Yu-Chun Lin · May 31, 2026 · 1 files
netfilter: tproxy: use DEBUG_NET_WARN_ON_ONCE for protocol fallbacks
Fernando Fernandez Mancera · Jun 1, 2026 · 2 files
netfilter: conncount: use DEBUG_NET_WARN_ON_ONCE on reaching count limit
Fernando Fernandez Mancera · Jun 1, 2026 · 1 files
clk: zynq: handle kasprintf() failure in periph_clk registration
William Theesfeld · Jun 1, 2026 · 1 files
rtc: pcf8563: fix clock provider leak on unbind
Yi Ding · Jun 2, 2026 · 1 files
clk: tegra: Support unique names for multi-socket platforms
Jon Hunter · Jun 2, 2026 · 1 files
clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister()
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: divider: Add KUnit tests for clk_divider_bestdiv() ULONG_MAX handling
Lad Prabhakar · Jun 2, 2026 · 4 files
clk: divider: Fix clk_divider_bestdiv() returning min rate for large rate requests
Lad Prabhakar · Jun 2, 2026 · 2 files
clk: renesas: r9a08g046: Add clock and reset entries for SDHI
Biju Das · Jun 3, 2026 · 1 files
ceph: Fix ERR_PTR(0) in ceph_mkdir()
Hongling Zeng · Jun 4, 2026 · 1 files
clk: imx: Add audio PLL debugfs for K-divider control
Jacky Bai · Jun 4, 2026 · 3 files
clk: renesas: r9a08g046: Add clock and reset entries for GE3D
Biju Das · Jun 4, 2026 · 1 files
drm/msm/a6xx: Fix stale rpmh votes after suspend
Shivam Rawat · Jun 4, 2026 · 1 files
drm/msm: Recover HW before retire hung submit
Jie Zhang · Jun 4, 2026 · 1 files
drm/msm/a6xx: Fix A663 GPUCC register list for state capture
Jie Zhang · Jun 4, 2026 · 1 files
drm/msm/a6xx: Fix A621 GPUCC register list for state capture
Jie Zhang · Jun 4, 2026 · 2 files
drm/msm/a6xx: Fix IRQ storm during msm_recovery test
Jie Zhang · Jun 4, 2026 · 4 files
drm/msm: Fix task_struct reference leak in recover_worker
Jie Zhang · Jun 4, 2026 · 1 files
dt-bindings: clock: Add ESWIN eic7700 HSP clock and reset generator
Xuyang Dong · Jun 5, 2026 · 4 files
clk: eswin: Add eic7700 HSP clock driver
Xuyang Dong · Jun 5, 2026 · 3 files
reset: eswin: Add eic7700 HSP reset driver
Xuyang Dong · Jun 5, 2026 · 3 files
leds: pwm-multicolor: Introduce default-intensity property
Jonas Rebmann · Jun 5, 2026 · 1 files
clk: eswin: Add CLK_IGNORE_UNUSED to NoC clock
Xuyang Dong · Jun 5, 2026 · 1 files
clk: clocking-wizard: fix integer overflow in rate calculation
Pavel Löbl · Jun 5, 2026 · 1 files
drivers/clk/clk_test: Use strscpy() to copy the test description
David Laight · Jun 6, 2026 · 1 files
SUNRPC: check rpc_sockaddr2uaddr() return value in rpcb_register_inet4/6
Weiming Shi · Jun 7, 2026 · 1 files
ubi: Fix rollback for explicit UBI device numbers
Yuho Choi · Jun 8, 2026 · 1 files
drm/msm/dp: add missing drm_edid_connector_update() before add_modes on cached EDID
Jens Glathe · Jun 8, 2026 · 1 files
clk: kirkwood: use kzalloc_flex
Rosen Penev · Jun 8, 2026 · 1 files
dt-bindings: display: msm: qcm2290: Add Shikra MDSS
Nabige Aala · Jun 8, 2026 · 3 files
mfd: si476x: Modernize GPIO handling
Linus Walleij · Jun 8, 2026 · 5 files
mfd: cs42l43: Use new SoundWire enumeration helper
Charles Keepax · Jun 8, 2026 · 4 files
clk: qcom: smd-rpm: Add missing RF_CLK1/RF_CLK2 clocks support on Agatti
Imran Shaik · Jun 8, 2026 · 1 files
clk: qcom: Add Global clock controller support on Qualcomm Shikra SoC
Imran Shaik · Jun 8, 2026 · 3 files
dt-bindings: mfd: syscon: Disallow simple-bus with syscon
Krzysztof Kozlowski · Jun 8, 2026 · 1 files
dt-bindings: mfd: syscon: Drop custom select for older dtschema
Krzysztof Kozlowski · Jun 8, 2026 · 2 files
platform/chrome: cros_ec_proto: Introduce cros_ec_read_features helper
Andrei Kuchynski · Jun 8, 2026 · 2 files
mfd: cros_ec: Read EC features during probe to catch transfer error
Andrei Kuchynski · Jun 8, 2026 · 1 files
dt-bindings: mfd: qcom,spmi-pmic: Document PMG1110
Fenglin Wu · Jun 10, 2026 · 1 files
drm/msm/a3xx: Drain VBIF before GPU suspend
Alexandre MINETTE · Jun 10, 2026 · 2 files
clk: qcom: gcc-ipq5424: drop the CLK_IGNORE_UNUSED flag
Kathiravan Thirumoorthy · Jun 10, 2026 · 1 files
maple_tree: remove undocumented CONFIG_MAPLE_RCU_DISABLED macro
Ethan Nelson-Moore · Jun 10, 2026 · 1 files
mfd: ipaq-micro: Fix out-of-bounds stack read in ipaq_micro_str
Dmitry Torokhov · Jun 10, 2026 · 1 files
mm: fix CONFIG_STACK_GROWSUP typo in tools/testing/vma/include/dup.h
Ethan Nelson-Moore · Jun 11, 2026 · 1 files
sunrpc: xprtsock: annotate shared socket callbacks with READ_ONCE/WRITE_ONCE
Runyu Xiao · Jun 11, 2026 · 1 files
drm/msm/adreno: fix use after free on error path in a6xx_gpu_init()
Dan Carpenter · Jun 11, 2026 · 1 files
mfd: axp20x: Preserve other control bits when powering off
Oleg Proshkin · Jun 11, 2026 · 1 files
dt-bindings: clock: Add spread spectrum definition
Peng Fan · Jun 12, 2026 · 1 files
clk: Introduce clk_hw_set_spread_spectrum
Peng Fan · Jun 12, 2026 · 2 files
clk: conf: Support assigned-clock-sscs
Peng Fan · Jun 12, 2026 · 1 files
clk: Add KUnit tests for assigned-clock-sscs
Peng Fan · Jun 12, 2026 · 17 files
clk: scmi: Introduce common header for SCMI clock interface
Peng Fan · Jun 12, 2026 · 2 files
clk: scmi: Add i.MX95 OEM extension support for SCMI clock driver
Peng Fan · Jun 12, 2026 · 4 files
clk: at91: Read "reg" with helper
Rob Herring (Arm) · Jun 12, 2026 · 1 files
clk: at91: Read "reg" with helper
Rob Herring (Arm) · Jun 12, 2026 · 1 files
rtc: ds1343: replace symbolic permissions with octal
Jack Lee · Jun 12, 2026 · 1 files
dt-bindings: clock: exynos990: Add CLK_GOUT_PERIS_TMU_SUB_PCLK
Denzeel Oliva · Jun 13, 2026 · 1 files
clk: samsung: exynos990: Add PERIS TMU_SUB_PCLK gate
Denzeel Oliva · Jun 13, 2026 · 1 files
clk: samsung: exynos990: Fix PERIS gate clock parents
Denzeel Oliva · Jun 13, 2026 · 1 files
dt-bindings: mfd: 88pm886: Allow vbus regulator
Duje Mihanović · Jun 13, 2026 · 1 files
mfd: 88pm886: Initialize the battery page
Duje Mihanović · Jun 13, 2026 · 2 files
ARM: 9477/1: Disable broken eBPF JIT on the Risc PC
Ethan Nelson-Moore · Jun 14, 2026 · 1 files
ARM: 9478/1: Remove references to removed CONFIG_CPU_ARM92x_CPU_IDLE options
Ethan Nelson-Moore · Jun 14, 2026 · 4 files
clk: renesas: cpg-mssr: Implement dedicated MSTP delay logic for RZ/T2H LCDC and RTC
Lad Prabhakar · Jun 15, 2026 · 1 files
dt-bindings: clock: renesas,r9a09g077/87: Add LCDC_CLKD clock ID
Lad Prabhakar · Jun 15, 2026 · 2 files
drm/amdgpu: delay ttm buffer func enablement on xgmi
Pierre-Eric Pelloux-Prayer · Jun 15, 2026 · 2 files
dt-bindings: clock: renesas,r9a09g077/87: Add PCLKRTC clock ID
Lad Prabhakar · Jun 15, 2026 · 2 files
clk: renesas: r9a09g077: Add RTC clocks
Lad Prabhakar · Jun 15, 2026 · 1 files
xtensa: correct CONFIG_XTENSA_CALIBRATE_CCOUNT macro name in comment
Ethan Nelson-Moore · Jun 15, 2026 · 1 files
clk: renesas: r9a08g046: Add USB2.0 clock and reset entries
Biju Das · Jun 16, 2026 · 1 files
drm/msm/dp: return 0 from audio_prepare when cable is disconnected
Kumar Anurag · Jun 16, 2026 · 1 files
mfd: mt6397-core: Add mt6323 EFUSE support
Roman Vivchar · Jun 17, 2026 · 1 files
clk: qcom: gcc-glymur: Move EVA clocks to critical clock list
Taniya Das · Jun 17, 2026 · 1 files
clk: qcom: Add EVA clock controller driver for Glymur SoC
Taniya Das · Jun 17, 2026 · 3 files
NFS: Return a delegation the client fails to record
Chuck Lever · Jun 17, 2026 · 1 files
m68k: coldfire/5441x: register mcf-rcm-reset platform device
Jean-Michel Hautbois · Jun 17, 2026 · 1 files
clk: canaan: Clear rate fields before reprogramming dividers
David Carlier · Jun 18, 2026 · 1 files
drm/msm: Do not declare msm_framebuffer_init() as static
Thomas Zimmermann · Jun 18, 2026 · 2 files
drm/msm: fbdev: Inline msm_alloc_stolen_fb()
Thomas Zimmermann · Jun 18, 2026 · 3 files
drm/msm: fbdev: Fix error reporting
Thomas Zimmermann · Jun 18, 2026 · 1 files
drm/msm: fbdev: Calculate buffer geometry with format helpers
Thomas Zimmermann · Jun 18, 2026 · 2 files
drm/msm: fbdev: Use a DRM client buffer
Thomas Zimmermann · Jun 18, 2026 · 1 files
drm/msm: Make msm_framebuffer_init() an internal interface again
Thomas Zimmermann · Jun 18, 2026 · 2 files
clk: clk-lmk04832: Simplify device abstraction
Uwe Kleine-König (The Capable Hub) · Jun 18, 2026 · 1 files
clk: renesas: rzv2h-cpg: Use per-SoC PLL reference frequency for calculations
Lad Prabhakar · Jun 18, 2026 · 2 files
clk: renesas: rzv2h-cpg: Extract PLL calculation helpers into shared library
Lad Prabhakar · Jun 18, 2026 · 5 files
clk: renesas: r9a09g077: Add LCDC and PLL3 clock support for RZ/T2H display pipeline
Lad Prabhakar · Jun 18, 2026 · 2 files
MAINTAINERS: Add a mailing list entry to MFD
Lee Jones · Jun 19, 2026 · 1 files
dt-bindings: thermal: qcom-tsens: Document the Maili Temperature Sensor
Haritha S K · Jun 19, 2026 · 1 files
mfd: db8500-prcmu: Fold dbx500 header into db8500
Linus Walleij · Jun 19, 2026 · 12 files
leds: lp5860: Fix a potential double-unlock
Christophe JAILLET · Jun 20, 2026 · 1 files
leds: lp5860-spi: Fix an error handling path
Christophe JAILLET · Jun 20, 2026 · 1 files
nfs: replace atomic bitops sequence with clear_and_wake_up_bit helper
Arnaud Bonnet · Jun 22, 2026 · 1 files
nfs: refactor pNFS functions using clear_and_wake_up_bit
Arnaud Bonnet · Jun 22, 2026 · 1 files
dt-bindings: clock: Add Amlogic A9 AO clock controller
Jian Hu · Jun 23, 2026 · 2 files
clk: amlogic: Add A9 AO clock controller driver
Jian Hu · Jun 23, 2026 · 3 files
f2fs: dirty directory inodes on mtime/ctime update
Joanne Chang · Jun 23, 2026 · 3 files
f2fs: don't drop the top folio order in the f2fs_iostat tracepoint
Zhan Xusheng · Jun 23, 2026 · 2 files
clk: versaclock7: Fix APLL clock leak on probe failure
Myeonghun Pak · Jun 23, 2026 · 1 files
f2fs: fix to avoid move_range and defragment on device_alias file
Chao Yu · Jun 23, 2026 · 1 files
clk: renesas: r9a09g047: Add LVDS clocks and resets
Tommaso Merciai · Jun 23, 2026 · 1 files
dt-bindings: clock: renesas,versaclock7: Update maintainer
Biju Das · Jun 23, 2026 · 2 files
clk: meson: align gxbb_32k_clk_sel number of parents with actual count
Martin Blumenstingl · Jun 23, 2026 · 1 files
NFSv4: remove callback IDR entry on client allocation failure
Ruoyu Wang · Jun 24, 2026 · 3 files
dt-bindings: clock: ast2700: add PECI clock
Ryan Chen · Jun 24, 2026 · 1 files
clk: aspeed: add AST2700 PECI clock
Ryan Chen · Jun 24, 2026 · 1 files
rtc: zynqmp: Return optional clock lookup errors
Pengpeng Hou · Jun 24, 2026 · 1 files
clk: mediatek: mt6735: Unregister PLLs on probe failure
Myeonghun Pak · Jun 24, 2026 · 1 files
clk: qcom: camcc-glymur: Add camera clock controller driver
Jagadeesh Kona · Jun 24, 2026 · 3 files
ipmi: ipmb: validate write message length
Yousef Alhouseen · Jun 24, 2026 · 1 files
pnfs/blocklayout: Fix device leaks on parse failure
ZhangGuoDong · Jun 25, 2026 · 1 files
clk: tegra: set up proper EMC clock implementation for Tegra114
Svyatoslav Ryhel · Jun 25, 2026 · 1 files
clk: tegra: support 48MHz clock for pll_p_out1
Dmitry Osipenko · Jun 25, 2026 · 1 files
pNFS: report clora_changed in the cb_layoutrecall_file tracepoint
Benjamin Coddington · Jun 25, 2026 · 2 files
pNFS: honor clora_changed when recalling a layout
Benjamin Coddington · Jun 25, 2026 · 3 files
NFSv4/flexfiles: report cancelled I/O as a layout error
Benjamin Coddington · Jun 25, 2026 · 1 files
rtc: mv: fix potential race condition
Alexandre Belloni · Jun 25, 2026 · 1 files
rtc: mv: remove mv_rtc_remove
Alexandre Belloni · Jun 25, 2026 · 1 files
f2fs: Remove unused curseg_segno() and curseg_alloc_type()
Zhan Xusheng · Jun 26, 2026 · 1 files
thermal/drivers/rcar: Fix error checking in probe()
Dan Carpenter · Jun 26, 2026 · 1 files
tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout
Myeonghun Pak · Jun 26, 2026 · 1 files
clk: samsung: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 2 files
clk: samsung: cpu: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 1 files
clk: samsung: pll: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 1 files
clk: clocking-wizard: Program PLL CP/RES and lock parameters on reconfig
Shubhrajyoti Datta · Jun 29, 2026 · 1 files
f2fs: fix to avoid potential section-unaligned pinfile
Chao Yu · Jun 29, 2026 · 1 files
clk: mediatek: mt8135: Fix inverted gate control for devapc_ck
Akari Tsuyukusa · Jun 29, 2026 · 1 files
clk: qcom: Return expected ENOMEM error on dynamic allocation failure
Vladimir Zapolskiy · Jun 29, 2026 · 1 files
mm: mempolicy: fix automatic numa balancing for shmem
Johannes Weiner · Jun 29, 2026 · 1 files
clk: qcom: gcc-qcs8300: Use retention for PCIe power domains
Loic Poulain · Jun 29, 2026 · 1 files
clk: qcom: gcc-qcs8300: Use retention for USB power domains
Loic Poulain · Jun 29, 2026 · 1 files
clk: clocking-wizard: fix clock difference detection
Colin Foster · Jun 29, 2026 · 1 files
clk: clocking-wizard: optimize clock search
Colin Foster · Jun 29, 2026 · 1 files
clk: clocking-wizard: remove 20kHz restriction
Colin Foster · Jun 29, 2026 · 1 files
apparmor: refactor network socket mediation to support compatibility
John Johansen · Jun 29, 2026 · 1 files
f2fs: validate MOVE_RANGE destination size
Wenjie Qi · Jun 30, 2026 · 1 files
f2fs: limit recovery filename logging to stored length
Wenjie Qi · Jun 30, 2026 · 1 files
clk: lan966x: Add MCHP_LAN966X_PCI dependency
Herve Codina · Jun 30, 2026 · 1 files
clk: spacemit: k3: fix parent clock of UFS aclk
Yixun Lan · Jun 30, 2026 · 1 files
dt-bindings: soc: spacemit: k3: Add clock ID for UFS refclk
Yixun Lan · Jun 30, 2026 · 1 files
clk: spacemit: k3: Add UFS refclk clock
Yixun Lan · Jun 30, 2026 · 1 files
ARM: 9480/1: entry: expand comment in __switch_to
Linus Walleij · Jun 30, 2026 · 1 files
apparmor: push inet mediation into profile callbacks, and improve auditing
John Johansen · Jun 30, 2026 · 2 files
ipmi: si: Fix NULL pointer dereference after failed registration
Seiji Nishikawa · Jun 30, 2026 · 1 files
thermal/drivers/armada: Use bitfield and bitmask macros
Bryan B. Lima · Jul 1, 2026 · 1 files
apparmor: reserve mediation class for packet mediation
John Johansen · Jul 1, 2026 · 2 files
clk: qcom: Don't use all caps for Glymur GPUCC
Luca Weiss · Jul 1, 2026 · 1 files
dt-bindings: clock: Add Amlogic A9 peripherals clock controller
Jian Hu · Jul 1, 2026 · 2 files
clk: amlogic: Add A9 peripherals clock controller driver
Jian Hu · Jul 1, 2026 · 3 files
apparmor: fix error handling for copy_from_user in policy_update
John Johansen · Jul 1, 2026 · 1 files
dt-bindings: clock: si544: add si549 compatible
Pavel Löbl · Jul 1, 2026 · 1 files
clk: si544: add support for si549
Pavel Löbl · Jul 1, 2026 · 2 files
mfd: sprd-sc27xx: Add SC2730 regulator cell
Otto Pflüger · Jul 1, 2026 · 1 files
dt-bindings: mfd: mediatek,mt8195-scpsys: Add support for MT8189 SoC
Louis-Alexis Eyraud · Jul 1, 2026 · 1 files
mm: nommu: point to the write iterator upon split_vma
Hajime Tazaki · Jul 2, 2026 · 1 files
NFS: fix folio dereference before NULL check in nfs_inode_remove_request()
Jiangshan Yi · Jul 2, 2026 · 1 files
drm/msm/hdmi_bridge: Simplify register bit updates
Krzysztof Kozlowski · Jul 2, 2026 · 2 files
drm/msm/hdmi_hdcp: Simplify register bit updates
Krzysztof Kozlowski · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Fix copy paste error on clamp_t low temp
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Fix copy paste error for sen internal
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Convert to regmap API
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Generalize probe function
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Generalize get_thermal_ADC and set_mux function
Christian Marangi · Jul 2, 2026 · 1 files
dt-bindings: arm: airoha: Add the chip-scu node for AN7583 SoC
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Add support for AN7583 Thermal Sensor
Christian Marangi · Jul 2, 2026 · 1 files
mfd: Drop unused assignment of spi_device_id driver data
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files
mfd: Initialize spi_device_id arrays using member names
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 8 files
mfd: Unify style of spi_device_id arrays
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files
dt-bindings: clock: qcom: Add Hawi video clock controller
Lin Li · Jul 2, 2026 · 2 files
clk: qcom: Add support for VideoCC driver for Hawi
Lin Li · Jul 2, 2026 · 3 files
mm/zswap: use ratelimited stats flush in zswap_shrinker_count()
Yunzhao Li · Jul 2, 2026 · 1 files
leds: st1202: Stop pattern sequence before reprogramming
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Validate pattern input before stopping the sequence
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Fix pattern duration prescaler and pattern_clear skip marker
Manuel Fombuena · Jul 2, 2026 · 2 files
leds: st1202: Set all pattern PWM slots to full after clearing pattern
Manuel Fombuena · Jul 2, 2026 · 1 files
batman-adv: bla: avoid CRC corruption due to parallel claim add
Sven Eckelmann · Jul 2, 2026 · 1 files
leds: st1202: Fix spurious pattern sequence start in setup
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Fix brightness having no effect while pattern mode is active
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Disable channel when brightness is set to zero
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Validate LED reg property against channel count
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Correct and extend hw_pattern documentation
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: pca9532: Fix inverted GPIO output polarity
Cosmo Chou · Jul 3, 2026 · 1 files
dt-bindings: clock: qcom,a53pll: Add IPQ5210 compatible
Varadarajan Narayanan · Jul 3, 2026 · 1 files
clk: qcom: apss-ipq-pll: Add IPQ5210 support
Varadarajan Narayanan · Jul 3, 2026 · 1 files
NFS: Verify symlink inode before caching target
ZhangGuoDong · Jul 3, 2026 · 1 files
clk: qcom: Restrict IPQ5424, IPQ6018,IPQ9574, QCM2290 and others to ARM64
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Restrict A7PLL and IPQ4019 GCC to ARM
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Make important ARM64 drivers default
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Make important ARM32 drivers default
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Add defaults for desired arm64 drivers
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
mfd: viperboard: Remove redundant NULL check before kfree()
Mohammad Shahid · Jul 3, 2026 · 1 files
dt-bindings: rtc: microchip,pic32mzda-rtc: Convert to DT schema
Udaya Kiran Challa · Jul 3, 2026 · 2 files
smb: client: remove redundant NULL check before kfree()
Mohammad Shahid · Jul 3, 2026 · 1 files
UBI: Preserve torture flag when rescheduling failed erasures
Zhihao Cheng · Jul 4, 2026 · 5 files
UBI: fastmap: Pass to_be_tortured when reusing old fastmap PEBs
Zhihao Cheng · Jul 4, 2026 · 1 files
rtc: brcmstb-waketimer: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
rtc: s32g: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
clk: mediatek: mt6735-vdecsys: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
clk: mediatek: mt6735-vencsys: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
clk: imx: imx8qxp-lpcg: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
rtc: ab-eoz9: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
NFS: Fix delayed delegation return list handling
Guangshuo Li · Jul 4, 2026 · 1 files
ARM: 9481/2: breakpoint: CFI breakpoints only on demand
Linus Walleij · Jul 4, 2026 · 1 files
xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full
Xiang Mei · Jul 4, 2026 · 1 files
clk: imx: imx8qxp: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 5, 2026 · 1 files
clk: mediatek: remove unneeded 'fast_io' parameter in regmap_config
Wolfram Sang · Jul 5, 2026 · 1 files
thermal: Remove unneeded 'fast_io' parameter in regmap_config
Wolfram Sang · Jul 5, 2026 · 2 files
apparmor: use SEND_SIG_NOINFO instead of NULL in aa_audit()
Oleg Nesterov · Jul 5, 2026 · 1 files
clk: qcom: camcc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers
Krzysztof Kozlowski · Jul 5, 2026 · 1 files
clk: qcom: videocc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers
Krzysztof Kozlowski · Jul 5, 2026 · 1 files
batman-adv: bla: prevent CRC corruptions after claim flush
Sven Eckelmann · Jul 5, 2026 · 1 files
MAINTAINERS: Update my email address for the AW99706 backlight driver
Junjie Cao · Jul 6, 2026 · 2 files
ceph: make __ceph_remove_cap() static
Max Kellermann · Jul 6, 2026 · 2 files
ceph: add helper function ceph_cap_is_removed()
Max Kellermann · Jul 6, 2026 · 3 files
ceph: mark cap remove with RB_CLEAR_NODE() instead of setting ci=NULL
Max Kellermann · Jul 6, 2026 · 2 files
ceph: pass inode pointer around instead of reloading it
Max Kellermann · Jul 6, 2026 · 3 files
dt-bindings: rtc: sun6i: no clock-output-names on h616/r329
Jerome Brunet · Jul 6, 2026 · 1 files
dt-bindings: rtc: sun6i: add sun60i-a733 support
Jerome Brunet · Jul 6, 2026 · 2 files
clk: sunxi-ng: fix ccu probe clock unregister on error
Jerome Brunet · Jul 6, 2026 · 1 files
clk: sunxi-ng: sun6i-rtc: clean up DT usage
Jerome Brunet · Jul 6, 2026 · 1 files
clk: sunxi-ng: sun6i-rtc: Add feature bit for IOSC calibration
Junhui Liu · Jul 6, 2026 · 2 files
clk: sunxi-ng: mux: remove unneeded export
Jerome Brunet · Jul 6, 2026 · 1 files
f2fs: embed f2fs_gc_kthread in f2fs_sb_info
Chao Yu · Jul 6, 2026 · 7 files
ceph: make nearfull sync writes opt-in
Alex Markuze · Jul 6, 2026 · 4 files
ceph: skip __touch_cap() most of the time
Max Kellermann · Jul 6, 2026 · 1 files
clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-msm8939: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Drop SYSTEM_NOC_BFDCD_CLK_SRC
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Add missing "clocks" property
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Use proper address in example
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop redundant register update during probe
Stephan Gerhold · Jul 6, 2026 · 1 files
ceph: Change system_unbound_wq with system_dfl_wq
Marco Crivellari · Jul 6, 2026 · 1 files
NFS/localio: issue IO inline when not in a memory-reclaim context
Mike Snitzer · Jul 6, 2026 · 3 files
NFS/localio: remove dead FLUSH_SYNC handling from nfs_local_commit
Mike Snitzer · Jul 6, 2026 · 3 files
NFS/localio: issue commit inline when not in a memory-reclaim context
Mike Snitzer · Jul 6, 2026 · 1 files
batman-adv: dat: atomically update mac addresses
Sven Eckelmann · Jul 6, 2026 · 2 files
batman-adv: dat: avoid unaligned fault in IP extraction
Sven Eckelmann · Jul 6, 2026 · 1 files
dt-bindings: mfd: st,stmpe: Fix typo st,stmpe601 (should be st,stmpe610)
Frank Li · Jul 6, 2026 · 1 files
dt-bindings: display/msm: gpu: Document Adreno 840
Akhil P Oommen · Jul 6, 2026 · 1 files
mfd: rohm: Factor out power button registration
Dmitry Torokhov · Jul 6, 2026 · 7 files
clk: thead: allow COMPILE_TEST builds
Rosen Penev · Jul 7, 2026 · 1 files
drm/msm/dsi: round 6G byte clock rate to the PLL-achievable value
Kavan Smith · Jul 7, 2026 · 1 files
mfd: ucb1x00: Register software node for GPIO controller
Dmitry Torokhov · Jul 7, 2026 · 2 files
mfd: ucb1x00: Convert Assabet gpio-keys to use software nodes
Dmitry Torokhov · Jul 7, 2026 · 1 files
sunrpc: fix use-after-free in __rpc_clnt_handle_event and __rpc_clnt_remove_pipedir
Luxiao Xu · Jul 7, 2026 · 1 files
dt-bindings: clock: qcom: Add IPQ9650 REFGEN clock IDs
Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files
clk: qcom: ipq9650: Add clocks for the REFGEN block
Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files
mm/kconfig: drop redundant memory hotplug dependencies
Kaitao Cheng · Jul 7, 2026 · 1 files
f2fs: quota: do not use GFP_NOFS in f2fs_quota_read()
Chao Yu · Jul 7, 2026 · 1 files
f2fs: drop FGP_NOFS in f2fs_write_begin()
Chao Yu · Jul 7, 2026 · 1 files
m68k: defconfig: add config for M52358EVB board
Greg Ungerer · Jul 7, 2026 · 1 files
m68k: defconfig: add config for M5282EVB board
Greg Ungerer · Jul 7, 2026 · 1 files
NFSv4: pin the superblock for active state owners
Jia Zhu · Jul 7, 2026 · 1 files
ceph: bound xattr value length in __build_xattrs()
Michael Bommarito · Jul 7, 2026 · 1 files
ceph: bound MDSCapAuth path and fs_name decode in handle_session()
Michael Bommarito · Jul 7, 2026 · 1 files
ceph: bound num_export_targets array for mds info v2/v3
Michael Bommarito · Jul 7, 2026 · 1 files
ceph: cap delegated inode count in ceph_parse_deleg_inos()
Michael Bommarito · Jul 7, 2026 · 3 files
dt-bindings: leds: bcm6358: Convert to DT schema
Ninad Naik · Jul 7, 2026 · 2 files
ceph: do not repeat ceph_trim_dentries() if no progress possible
Max Kellermann · Jul 7, 2026 · 1 files
f2fs: reject overlapping move range after len expansion
Hao-Qun Huang · Jul 8, 2026 · 1 files
NFSv4/flexfiles: fix NULL dereference for NFSv4.0 data servers
Jeuk Kim · Jul 8, 2026 · 2 files
NFSv4/flexfiles: support loosely coupled data servers
Jeuk Kim · Jul 8, 2026 · 8 files
clk: en7523: reset PCIE HB on init for AN7581
Christian Marangi · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-camcc: Drop qcom,sc8280xp-camcc from "if" block
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-camcc: Require required-opps on SM8750
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-video: Require required-opps on X1E80100
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
mfd: cs42l43: Remove redundant NULL checks on SoundWire
Charles Keepax · Jul 8, 2026 · 1 files
clk: tegra: tegra124-emc: put EMC node on register failure
Guangshuo Li · Jul 8, 2026 · 1 files
dt-bindings: mfd: Convert OMAP USB TLL to DT schema
Eduard Bostina · Jul 8, 2026 · 2 files
mfd: cs42l43: Tidy up formatting on sdw_device_id table
Charles Keepax · Jul 8, 2026 · 1 files
alloc_tag: add ioctl to /proc/allocinfo
Suren Baghdasaryan · Jul 8, 2026 · 7 files
alloc_tag: add ioctl filters to /proc/allocinfo
Abhishek Bapat · Jul 8, 2026 · 2 files
alloc_tag: add size-based filtering to ioctl
Abhishek Bapat · Jul 8, 2026 · 2 files
alloc_tag: add accuracy based filtering to ioctl
Abhishek Bapat · Jul 8, 2026 · 2 files
kselftest: alloc_tag: add kselftest for ioctl interface
Abhishek Bapat · Jul 8, 2026 · 4 files
kselftest: alloc_tag: extend the allocinfo ioctl kselftest
Abhishek Bapat · Jul 8, 2026 · 1 files
ceph: drop mdsc->mutex before decoding the MDS reply
Max Kellermann · Jul 8, 2026 · 1 files
clk: qcom: camcc-sc8280xp: unregister CAMCC_GDSC_CLK
Brian Masney · Jul 8, 2026 · 1 files
dt-bindings: leds: Add LTC3220 18 channel LED Driver
Edelweise Escala · Jul 9, 2026 · 2 files
leds: ltc3220: Add Support for LTC3220 18 channel LED Driver
Edelweise Escala · Jul 9, 2026 · 4 files
mm: standardize printing for pgtable entries
David Hildenbrand (Arm) · Jul 9, 2026 · 1 files
drm/msm: Only fini scheduler after successful init
Ruoyu Wang · Jul 9, 2026 · 2 files
ceph: use detach_cap_releases() in ceph_send_cap_releases()
Max Kellermann · Jul 9, 2026 · 1 files
mfd: mt6397-core: Add mt6323 AUXADC support
Roman Vivchar · Jul 9, 2026 · 1 files
clk: mediatek: pllfh: Fix IO remapping leak in register_pllfhs error path
Louis-Alexis Eyraud · Jul 9, 2026 · 1 files
clk: r9a08g045: Add clocks and resets for CAN-FD
Claudiu Beznea · Jul 9, 2026 · 1 files
drm/msm/adreno: Add support for A704 GPU
Aditya Sherawat · Jul 9, 2026 · 1 files
dt-bindings: display/msm/gpu: Add support for A704 GPU
Aditya Sherawat · Jul 9, 2026 · 1 files
dt-bindings: arm-smmu: Document GPU SMMU for Shikra SoC
Bibek Kumar Patro · Jul 9, 2026 · 1 files
batman-adv: fix TX priority extraction for BATADV_FORW_MCAST
Sven Eckelmann · Jul 9, 2026 · 1 files
batman-adv: mcast: ensure unshared skb for multicast packets
Sven Eckelmann · Jul 9, 2026 · 1 files
batman-adv: mcast: linearize skbuff for packet generation
Sven Eckelmann · Jul 9, 2026 · 1 files
dt-bindings: rtc: Convert rtc-cmos binding to YAML
Teja Sai Charan Bellamkonda · Jul 9, 2026 · 2 files
dt-bindings: backlight: 88pm860x: Add missing bracket
Manuel Ebner · Jul 10, 2026 · 1 files
clk: eswin: Zero-initialize stack-allocated clk_init_data
Kostas Damaskinakis · Jul 10, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Add compatible for Hawi and Maili SoCs
Mukesh Ojha · Jul 10, 2026 · 1 files
leds: gpio: Make legacy gpiolib interface optional
Arnd Bergmann · Jul 10, 2026 · 2 files
m68k/coldfire: replace linux/gpio.h inclusions
Arnd Bergmann · Jul 10, 2026 · 2 files
clk: palmas: Manage external-control prepare with devm
Myeonghun Pak · Jul 11, 2026 · 1 files
clk: palmas: Use devm_of_clk_add_hw_provider()
Myeonghun Pak · Jul 11, 2026 · 1 files
ceph: bound copied dentry name length in NFS export get_name
Michael Bommarito · Jul 11, 2026 · 1 files
tpm: Initial step to reorganize TPM public headers
Ross Philipson · Jul 11, 2026 · 7 files
tpm: Move TPM1 specific definitions to the command header
Ross Philipson · Jul 11, 2026 · 3 files
tpm: Move TPM2 specific definitions to the command header
Ross Philipson · Jul 11, 2026 · 5 files
tpm: Move TPM common base definitions to the command header
Ross Philipson · Jul 11, 2026 · 3 files
tpm: Move platform specific definitions to the new PTP header
Ross Philipson · Jul 11, 2026 · 2 files
tpm: Remove main TPM header from TPM event log header
Alec Brown · Jul 11, 2026 · 1 files
tpm-buf: Merge TPM_BUF_BOUNDARY_ERROR and TPM_BUF_OVERFLOW
Jarkko Sakkinen · Jul 11, 2026 · 3 files
tpm-buf: Remove chip parameter from tpm_buf_append_handle()
Jarkko Sakkinen · Jul 11, 2026 · 4 files
tpm-buf: Memory-safe allocations
Jarkko Sakkinen · Jul 11, 2026 · 10 files
tpm-buf: Add TPM buffer support header for standalone reuse
Ross Philipson · Jul 11, 2026 · 3 files
tpm: Remove redundant dev_err()
Pan Chuang · Jul 11, 2026 · 3 files
dt-bindings: leds: Document "gpio" trigger
Samuel Holland · Jul 11, 2026 · 1 files
dt-bindings: vendor-prefixes: Add techvision
Samuel Holland · Jul 11, 2026 · 1 files
mm/kconfig: drop redundant dependency wrappers
Kaitao Cheng · Jul 12, 2026 · 1 files
apparmor: replace decompress_zstd() prototype with its entity
Tetsuo Handa · Jul 12, 2026 · 1 files
Revert "drm/msm: dsi: fix PLL init in bonded mode"
Dmitry Baryshkov · Jul 12, 2026 · 2 files
esp: do not unref managed frag pages in esp_ssg_unref()
Maher Azzouzi · Jul 12, 2026 · 2 files
tpm: atmel: depend on X86
Karl Mehltretter · Jul 12, 2026 · 1 files
dt-bindings: leds: Add default-intensity property
Jonas Rebmann · Jul 13, 2026 · 2 files
shmem: provide a shmem_write_folio wrapper
Christoph Hellwig · Jul 13, 2026 · 5 files
mm/swap: introduce struct swap_io_ctx
Christoph Hellwig · Jul 13, 2026 · 7 files
mm/swap: also use struct swap_iocb for block I/O
Christoph Hellwig · Jul 13, 2026 · 3 files
mm/swap: remove count_swpout_vm_event
Christoph Hellwig · Jul 13, 2026 · 1 files
mm/swap: use swap_ops to register swap device's methods
Christoph Hellwig · Jul 13, 2026 · 4 files
mm/swap: remove SWP_FS_OPS
Christoph Hellwig · Jul 13, 2026 · 9 files
mm/vmstat: add NRSWP{IN,OUT} counters
Christoph Hellwig · Jul 13, 2026 · 3 files
f2fs: fix folio_nr_pages() race after put in large folio invalidate
Zhaoyang Huang · Jul 13, 2026 · 1 files
mm: kmemleak: confirm suspected leaks with a second scan
Catalin Marinas · Jul 13, 2026 · 1 files
mm: kmemleak: report leaks only after N consecutive unreferenced scans
Breno Leitao · Jul 13, 2026 · 2 files
mm: kmemleak: factor leak confirmation into a helper
Breno Leitao · Jul 13, 2026 · 1 files
selftests: mm: test kmemleak's N-consecutive-scan leak confirmation
Breno Leitao · Jul 13, 2026 · 2 files
rtc: msc313: Select by default on MSTARV7
Daniel Palmer · Jul 13, 2026 · 1 files
mfd: cgbc: Fix teardown ordering in cgbc_remove()
Thomas Richard · Jul 13, 2026 · 1 files
leds: bcm63138: Use %pe to print pinctrl error instead of %ld
Ninad Naik · Jul 13, 2026 · 1 files
rtc: st-lpc: get IRQ via platform_get_irq()
Rosen Penev · Jul 14, 2026 · 1 files
clk: mmp: pxa1908-apbc: Remove unneeded semicolon
Chen Ni · Jul 14, 2026 · 1 files
clk: qcom: camcc-glymur: Add const qualifier for driver_data & CBCRs list
Jagadeesh Kona · Jul 14, 2026 · 1 files
clk: mmp: pxa1908-apbcp: Remove unneeded semicolon
Chen Ni · Jul 14, 2026 · 1 files
ceph: fix use-after-dereference of NULL ci in __ceph_remove_cap()
Xiubo Li · Jul 14, 2026 · 1 files
clk/x86: pmc_atom: add kasprintf return value check
longlong yan · Jul 14, 2026 · 1 files
ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock
Xiubo Li · Jul 14, 2026 · 1 files
ceph: fix UAF in check_new_map() on session freed during unlock
Xiubo Li · Jul 14, 2026 · 1 files
libceph: validate OSD extent maps before cursor advance
Michael Bommarito · Jul 14, 2026 · 1 files
clk: document that clk_get_parent() returns NULL
Dan Carpenter · Jul 14, 2026 · 1 files
NFS: fix delegation_hash_table leak when nfs4_server_common_setup() fails
Nate Prodromou · Jul 14, 2026 · 1 files
leds: pca9532: Fix phantom device registration on missing hardware
Cosmo Chou · Jul 15, 2026 · 1 files
dt-bindings: clock: qcom: glymur-gcc: Add missing CX power domain
Abel Vesa · Jul 15, 2026 · 1 files
clk: qcom: gcc-glymur: Enable runtime PM
Abel Vesa · Jul 15, 2026 · 1 files
mfd: si476x-i2c: Get rid of duplicate NULL checks
Andy Shevchenko · Jul 15, 2026 · 1 files
f2fs: use the mount idmap for the owner check in f2fs_xattr_advise_set()
Zhan Xusheng · Jul 16, 2026 · 1 files
thermal/drivers/spacemit/k1: Add shutdown action and reorder registration order
Pei Xiao · Jul 16, 2026 · 1 files
clk: qcom: nord: use BRANCH_HALT_SKIP for PHY pipe clocks
Taniya Das · Jul 16, 2026 · 2 files
clk: qcom: negcc-nord: use clk_regmap_phy_mux for USB3 pipe clock srcs
Taniya Das · Jul 16, 2026 · 1 files
clk: qcom: Drop inclusions of <linux/mod_devicetable.h>
Uwe Kleine-König (The Capable Hub) · Jul 16, 2026 · 4 files
xfrm: espintcp: fix UAF during close
Sabrina Dubroca · Jul 16, 2026 · 1 files
thermal/drivers: Remove redundant error messages on IRQ request failure
Pan Chuang · Jul 17, 2026 · 24 files
dt-bindings: clock: qcom: Add Qualcomm Maili video clock controller
Jagadeesh Kona · Jul 17, 2026 · 2 files
clk: qcom: Add support for videocc driver on Qualcomm Maili SoC
Jagadeesh Kona · Jul 17, 2026 · 3 files
mm/swap: fix swap_cluster_lock() !CONFIG_SWAP stub signature mismatch
Hongfu Li · Jul 17, 2026 · 1 files
dt-bindings: soc: spacemit: k3: add i2s_sysclk, i2s_bclk_factor and i2s1_sysclk_src IDs
Troy Mitchell · Jul 17, 2026 · 1 files
clk: spacemit: k3: fix i2s clock topology
Troy Mitchell · Jul 17, 2026 · 2 files
clk: spacemit: k3: fix missing /2 factor in i2s sysclk dividers
Troy Mitchell · Jul 17, 2026 · 1 files
mfd: viperboard: Fix native fields type in structures as little-endian
Mikhail Lukianchikov · Jul 17, 2026 · 1 files
lockd: fix NULL dereference on lockowner allocation failure
Shuangpeng Bai · Jul 17, 2026 · 1 files
rtc: pcf85363: Add error checking to regmap calls in probe()
Cosmo Chou · Jul 17, 2026 · 1 files
drm/msm/a6xx: Fix RBBM_CLOCK_CNTL3_TP0 value in a730_hwcg
Puranam V G Tejaswi · Jul 17, 2026 · 1 files
drm/msm/a6xx: Rename GBIF_CX_CONFIG to a A6XX- variant register
Akhil P Oommen · Jul 17, 2026 · 4 files
drm/msm/a6xx: Add Adreno 722 support
Puranam V G Tejaswi · Jul 17, 2026 · 7 files
dt-bindings: arm-smmu: Document GPU SMMU for Eliza SoC
Akhil P Oommen · Jul 17, 2026 · 1 files
dt-bindings: display/msm: Document Adreno 722 GPU and GMU
Puranam V G Tejaswi · Jul 17, 2026 · 2 files
apparmor: leverage audit_log_n_untrustedstring() when possible
Paul Moore · Jul 17, 2026 · 1 files
xfrm: drop ESP-in-TCP packets with no ingress device
Zhiling Zou · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom,qcm2290-dispcc: Add missing power-domains property
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gcc-qcm2290: Keep the critical clocks always-on from probe
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: dispcc-qcm2290: Move to the latest common qcom_cc_probe() model
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: dispcc-qcm2290: Enable runtime PM support
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: qcm2290: Set POLL_CFG_GDSCR flag for DISPCC and GPUCC GDSCs
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: qcm2290: Add RETAIN_FF_ENABLE flag for DISPCC and GPUCC GDSCs
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: qcm2290: Update DISPCC and GPUCC GDSC *wait_val values
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: gpucc-qcm2290: Drop pm_clk handling
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Move to the latest common qcom_cc_probe() model
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Keep the critical clocks always-on from probe
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Park RCG's clk source at XO during disable
Imran Shaik · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra Display clock controller
Imran Shaik · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra GPU clock controller
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: Add support for Qualcomm GPU Clock Controller on Shikra
Imran Shaik · Jul 18, 2026 · 1 files
backlight: ktd2801: Fix unmet dependency on GPIOLIB
Julian Braha · Jul 19, 2026 · 1 files
f2fs: fix dentry folio leak in find_in_level
Guanghui Yang · Jul 19, 2026 · 1 files
mfd: macsmc: Fix key count endianness annotation
Sven Peter · Jul 19, 2026 · 1 files
dt-bindings: rtc: Convert TI Palmas RTC to DT schema
Eduard Bostina · Jul 19, 2026 · 2 files
clk: stm32: add missing bitfield.h header
Rosen Penev · Jul 19, 2026 · 2 files
clk: stm32: allow STM32MP COMPILE_TEST builds
Rosen Penev · Jul 19, 2026 · 1 files
clk: hisilicon: hi3660-stub: use devm_platform_ioremap_resource
Rosen Penev · Jul 19, 2026 · 1 files
clk: composite: Export devm composite pdata helper
Jia Wang · Jul 20, 2026 · 1 files
dt-bindings: clock: ultrarisc: Add DP1000 Clock Controller
Jia Wang · Jul 20, 2026 · 3 files
clk: ultrarisc: Add DP1000 clock driver
Jia Wang · Jul 20, 2026 · 8 files
drm/msm/dpu: Fix DMA SSPP REC block offsets on DPU v13
Yongxing Mou · Jul 20, 2026 · 2 files
thermal/drivers/spacemit: Validate clamped trip thresholds
surendra · Jul 20, 2026 · 1 files
mm: vmscan: convert folio_referenced() to use vma_flags_t
Baolin Wang · Jul 20, 2026 · 3 files
mm: vmscan: add a helper to identify file-backed executable folios
Baolin Wang · Jul 20, 2026 · 1 files
mm: mglru: promote mapped executable folios after first usage
Baolin Wang · Jul 20, 2026 · 1 files
mfd: sm501: Fix potential memory leaks during remove
Abdun Nihaal · Jul 20, 2026 · 1 files
mfd: iqs62x: Reject zero-length firmware records
Pengpeng Hou · Jul 20, 2026 · 1 files
mfd: rave-sp: validate received frame payload lengths
Pengpeng Hou · Jul 20, 2026 · 1 files
mm/kmemleak: report RCU-tasks quiescent states during the scan
Breno Leitao · Jul 20, 2026 · 1 files
mm: use proper PTE accessor in move_ptes()
Alexander Gordeev · Jul 20, 2026 · 1 files
ceph: revalidate ki_pos for O_APPEND writes after cap acquisition
Xiubo Li · Jul 21, 2026 · 1 files
rtc: ds1307: fix RX8130 wakeup alarm WADA bit for day-of-month mode
Robert Leussler · Jul 21, 2026 · 1 files
tools/lib/thermal: Fix misplaced extern "C" closing brace
Andreas Haufler · Jul 21, 2026 · 1 files
dt-bindings: thermal: mediatek: Make resets optional for MT8196
AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files
thermal/drivers/mediatek/lvts_thermal: Make reset optional for MT8196
AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files
xfrm: avoid lock inversion in nat keepalive work
Zihan Xi · Jul 21, 2026 · 1 files
clk: qcom: gcc-shikra: Add additional frequencies for EMAC RGMII clocks
Imran Shaik · Jul 22, 2026 · 1 files
dt-bindings: clock: qcom: Move glymur TCSR to own binding
Qiang Yu · Jul 22, 2026 · 2 files
dt-bindings: clock: qcom,glymur-tcsr: Add mahua support
Qiang Yu · Jul 22, 2026 · 1 files
clk: qcom: Add generic clkref_en support
Qiang Yu · Jul 22, 2026 · 3 files
clk: qcom: tcsrcc-glymur: Add regulator supplies and migrate to clk_ref helper
Qiang Yu · Jul 22, 2026 · 1 files
clk: qcom: tcsrcc-glymur: Add Mahua QREF regulator support
Qiang Yu · Jul 22, 2026 · 1 files
drm/msm/dp: reject YUV420-only modes without VSC SDP support
Dmitry Baryshkov · Jul 22, 2026 · 3 files
drm/msm/dp: do not reject wide-bus modes while a YUV420 mode is active
Dmitry Baryshkov · Jul 22, 2026 · 1 files
backlight: qcom-wled: Remove redundant dev_err()
Pan Chuang · Jul 22, 2026 · 1 files
xfrm: Fix skb double-free in xfrm_dev_direct_output()
Sanghyun Park · Jul 22, 2026 · 1 files
thermal/drivers/qoriq: Disable clock on resume failure
Can Peng · Jul 22, 2026 · 1 files
thermal/drivers/imx: Disable clock on runtime resume failure
Can Peng · Jul 22, 2026 · 1 files
batman-adv: bla: fix freeing of claims on meshif deletion
Sven Eckelmann · Jul 22, 2026 · 1 files
drm/amdgpu: ensure all userq VAs mapped before restore
Zhu Lingshan · Jul 22, 2026 · 1 files
dt-bindings: thermal: Add Qualcomm MBG thermal monitor support
Satya Priya Kakitapalli · Jul 22, 2026 · 2 files
thermal/drivers/qcom: Add support for Qualcomm MBG thermal monitoring
Satya Priya Kakitapalli · Jul 22, 2026 · 3 files
iio: adc: qcom-spmi-adc5-gen3: Remove an unnecessary print
Jishnu Prakash · Jul 22, 2026 · 1 files
iio: adc: qcom-spmi-adc5-gen3: Share SDAM0 IRQ with ADC_TM auxiliary driver
Jishnu Prakash · Jul 22, 2026 · 2 files
thermal/drivers/qcom: add support for PMIC5 Gen3 ADC thermal monitoring
Jishnu Prakash · Jul 22, 2026 · 2 files
clk: qcom: gcc-qcm2290: don't park QUP RCGs upon registration
Dmitry Baryshkov · Jul 22, 2026 · 1 files
NFSv4: Fix incorrect argument passed to nfs4_delete_lease() in nfs4_add_lease()
Zhansong Gao · Jul 22, 2026 · 1 files
UBI: fix two issues in the ubi.mtd MODULE_PARM_DESC
Ran Hongyun · Jul 23, 2026 · 1 files
UBI: support per-device wear-leveling threshold
Ran Hongyun · Jul 23, 2026 · 6 files
memcg: move mem_cgroup_swappiness and vm_swappiness to mm/swap.h
Ridong Chen · Jul 23, 2026 · 4 files
mm: vmscan: fix node reclaim ignoring swappiness parameter
Ridong Chen · Jul 23, 2026 · 1 files
mm/swap: revert to single-folio writes for synchronous swap devices
Christoph Hellwig · Jul 23, 2026 · 1 files
mm/swap: add a new swap_ops.h header to allow for pluggable swap ops
Christoph Hellwig · Jul 23, 2026 · 9 files
mm/swap: move swap_ops into file systems for file system-based swap
Christoph Hellwig · Jul 23, 2026 · 10 files
ceph: use GFP_NOFS for cap flush allocation in writeback path
Xiubo Li · Jul 23, 2026 · 1 files
ceph: do not cache negative dentries for snapped directories
Xiubo Li · Jul 23, 2026 · 2 files
dt-bindings: soc: cix: add sky1 audss cru controller
Joakim Zhang · Jul 23, 2026 · 3 files
clk: cix: add sky1 audss clock controller
Joakim Zhang · Jul 23, 2026 · 5 files
reset: cix: add sky1 audss auxiliary reset driver
Joakim Zhang · Jul 23, 2026 · 3 files
arm64: dts: cix: sky1: add audss cru
Joakim Zhang · Jul 23, 2026 · 1 files
xfrm: ah6: validate routing header segments_left
Asim Viladi Oglu Manizada · Jul 23, 2026 · 1 files
clk: sunxi-ng: mux: fix determine helper rate propagation
Jerome Brunet · Jul 23, 2026 · 1 files
clk: sunxi-ng: div: add read-only operation support
Jerome Brunet · Jul 23, 2026 · 2 files
clk: sunxi-ng: sun6i-rtc: split main oscillator div and gate
Jerome Brunet · Jul 23, 2026 · 2 files
clk: sunxi-ng: sun6i-rtc: add a733 support
Jerome Brunet · Jul 23, 2026 · 2 files
drm/msm: don't tear down KMS twice when KMS init fails
Dmitry Baryshkov · Jul 23, 2026 · 2 files
dt-bindings: leds: backlight: Convert TPS65217 to DT schema
Eduard Bostina · Jul 23, 2026 · 3 files
clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs
Alexey Charkov · Jul 23, 2026 · 1 files
clk: rockchip: Fractional PLL coefficient on RK3588/RK3576 is two's complement
Alexey Charkov · Jul 23, 2026 · 4 files
clk: Add devm_clk_bulk_get_enable()
Suraj Gupta · Jul 23, 2026 · 3 files
apparmor: switch website link to https
Baruch Siach · Jul 23, 2026 · 1 files
clk: remove conditional return with no effect
Sang-Heon Jeon · Jul 23, 2026 · 2 files
rtc: pcf2127: remove conditional return with no effect
Sang-Heon Jeon · Jul 23, 2026 · 1 files
dt-bindings: clock: airoha: Add additional reset for PCIe PERSTOUT
Christian Marangi · Jul 23, 2026 · 1 files
clk: en7523: add support for dedicated PCIe PERSTOUT reset
Christian Marangi · Jul 23, 2026 · 1 files
drm/msm: remove objects from evit list after pinning them
Anna Maniscalco · Jul 23, 2026 · 1 files
apparmor: make table entry count last enum for static tables
John Johansen · Jul 23, 2026 · 3 files
apparmor: fix error debug output in fn_label_build
John Johansen · Jul 23, 2026 · 1 files
apparmor: mark static tables and structs as read only
John Johansen · Jul 23, 2026 · 8 files
mm: memcg: stop reclaim when a limit update is superseded
Guopeng Zhang · Jul 24, 2026 · 1 files
ARM: 9483/1: select HAVE_POSIX_CPU_TIMERS_TASK_WORK
Karl Mehltretter · Jul 24, 2026 · 1 files
ubifs: fix out-of-bounds read in signature length check
Ibrahim Hashimov · Jul 24, 2026 · 1 files
clk: mvebu: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: qcom: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 4 files
clk: st: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: tegra: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: qcom: gcc-nord: mark PCIe link clocks as critical
Taniya Das · Jul 24, 2026 · 1 files
clk: qcom: negcc-nord: keep GPU2 CFG clock enabled via critical CBCR
Taniya Das · Jul 24, 2026 · 1 files
dt-bindings: clock: qcom: Document Nord display clock controller
Taniya Das · Jul 24, 2026 · 2 files
clk: qcom: Add Nord display clock controller support
Taniya Das · Jul 24, 2026 · 4 files
dt-bindings: clock: qcom: Document Nord GPU clock controllers
Taniya Das · Jul 24, 2026 · 3 files
clk: qcom: gpucc: Add Nord graphics clock controller support
Taniya Das · Jul 24, 2026 · 4 files
thermal/drivers/qcom-spmi-adc-tm5: Drop IIO_VAL_INT check in adc_tm5_get_temp
Rakesh Kota · Jul 24, 2026 · 1 files
rtc: spacemit: handle regmap_test_bits() error return
Surendra Singh Chouhan · Jul 24, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra AudioCoreCC and AudioCoreCSR
Imran Shaik · Jul 24, 2026 · 3 files
clk: qcom: Add Audio Core clock controller support on Qualcomm Shikra SoC
Imran Shaik · Jul 24, 2026 · 3 files
leds: gpio: Clear error pointers for skipped LEDs
Steve Dunnagan · Jul 24, 2026 · 1 files
coccinelle: double_lock: improve performance when no double lock exists
Sang-Heon Jeon · Jul 25, 2026 · 1 files
coccinelle: misc: minmax: improve performance when no candidate exists
Sang-Heon Jeon · Jul 25, 2026 · 1 files
dt-bindings: clock: ti,keystone-gate: Convert to DT schema
Bhargav Joshi · Jul 25, 2026 · 3 files
coccinelle: misc: minmax: drop unneeded parentheses
Julia Lawall · Jul 26, 2026 · 1 files
coccinelle: misc: minmax: check for the presence of if cases
Julia Lawall · Jul 26, 2026 · 1 files
coccinelle: misc: minmax: avoid unhelpful isomorphisms
Julia Lawall · Jul 26, 2026 · 1 files
scsi: snic: Fix SCSI host leak on workqueue allocation failure
Chen Changcheng · Jul 27, 2026 · 1 files
clk: ti: mux: resolve parent clocks by DT index, not by name
Mathieu Dubois-Briand · Jul 27, 2026 · 1 files
clk: ti: composite: resolve parent clocks by DT index, not by name
Mathieu Dubois-Briand · Jul 27, 2026 · 1 files
f2fs: return writeback error from collapse range
Wenjie Qi · Jul 27, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Document the IPQ9650 TCSR block
Kathiravan Thirumoorthy · Jul 27, 2026 · 1 files
selftests/mm: skip COW tmpfile cases when fallocate() is unsupported
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: skip guard hole-punch test if MADV_REMOVE is unsupported
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: skip hard dirty page-cache test on NFS
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: retry migration failures for the full runtime
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
apparmor: refactory mount to use check_perms
John Johansen · Jul 27, 2026 · 4 files
f2fs: only redirty pinned folios in redirty_blocks
Wenjie Qi · Jul 27, 2026 · 1 files
coccinelle: mini_lock: improve performance when searching loops
Sang-Heon Jeon · Jul 27, 2026 · 1 files
dt-bindings: leds: nxp,pca963x: Fix reg maximum for pca9635
Loic Poulain · Jul 27, 2026 · 1 files
dt-bindings: leds: nxp,pca963x: Add multicolor LED support
Loic Poulain · Jul 27, 2026 · 1 files
leds: pca963x: Add multicolor LED class support
Loic Poulain · Jul 27, 2026 · 2 files
mm/vmstat, mm/memcontrol: add _monotonic vmstat readers
Usama Arif · Jul 27, 2026 · 4 files
mm/vmscan: add pgrotate_anon and pgrotate_file vmstat counters
Usama Arif · Jul 27, 2026 · 4 files
mm/vmscan: reduce lru_lock contention via vmstat-derived scan-balance cost
Usama Arif · Jul 27, 2026 · 9 files
xfrm: fix xfrm_state_construct() auth-trunc leak
Zihan Xi · Jul 27, 2026 · 1 files
nfs4.2: add UNCACHEABLE_FILE_DATA attribute support
Tom Haynes · Jul 27, 2026 · 8 files
nfs4.2: request UNCACHEABLE_FILE_DATA only for regular files
Mike Snitzer · Jul 27, 2026 · 2 files
nfs4.2: open UNCACHEABLE_FILE_DATA files with O_DIRECT
Mike Snitzer · Jul 27, 2026 · 4 files
Drivers: hv: Use meaningful errnos for hypercall status codes
Hardik Garg · Jul 27, 2026 · 1 files
ARM: 9484/1: enable interrupts when unhandled user faults are triggered
Xie Yuanbin · Jul 28, 2026 · 1 files
ARM: 9485/1: mm: acquire mmap write lock around show_pte() for user faults
Xie Yuanbin · Jul 28, 2026 · 1 files
mm/migrate_device: clear stale mapping after freeing swapcache
Arvind Yadav · Jul 28, 2026 · 1 files
dt-bindings: clock: mediatek: Add mt8173 mfgtop
Chen-Yu Tsai · Jul 28, 2026 · 2 files
clk: mediatek: Add mt8173-mfgtop driver
Chen-Yu Tsai · Jul 28, 2026 · 3 files
drm/msm: Fix stale comments in uapi/drm/msm_drm.h
Hans de Goede · Jul 28, 2026 · 1 files
drm/msm/dp: remove cached drm_edid from panel
Yongxing Mou · Jul 28, 2026 · 3 files
drm/msm/dp: drop deprecated .mode_set() and use .atomic_pre_enable
Yongxing Mou · Jul 28, 2026 · 3 files
drm/msm/dp: move mode setup into msm_dp_panel_init_panel_info()
Yongxing Mou · Jul 28, 2026 · 3 files
drm/msm/dp: split msm_dp_ctrl_config_ctrl() into link parts and stream parts
Yongxing Mou · Jul 28, 2026 · 2 files
drm/msm/dp: extract MISC1_MISC0 configuration into a separate function
Yongxing Mou · Jul 28, 2026 · 1 files
drm/msm/dp: split link setup from source params
Yongxing Mou · Jul 28, 2026 · 1 files
drm/msm/dp: move the pixel clock control to its own API
Yongxing Mou · Jul 28, 2026 · 1 files
drm/msm/dp: break up dp_display_enable into two parts
Abhinav Kumar · Jul 28, 2026 · 3 files
drm/msm/dp: re-arrange dp_display_disable() into functional parts
Abhinav Kumar · Jul 28, 2026 · 3 files
drm/msm/dp: allow dp_ctrl stream APIs to use any panel passed to it
Abhinav Kumar · Jul 28, 2026 · 3 files
drm/msm/dp: split dp_ctrl_off() into stream and link parts
Abhinav Kumar · Jul 28, 2026 · 3 files
drm/msm/dp: simplify link and clock disable sequence
Yongxing Mou · Jul 28, 2026 · 1 files
drm/msm/dp: make bridge helpers use dp_display to allow re-use
Abhinav Kumar · Jul 28, 2026 · 4 files
drm/msm/dp: pass panel to display enable/disable helpers
Yongxing Mou · Jul 28, 2026 · 1 files
drm/msm/dpu: Drop sneaky dev_pm_opp_set_rate(0)
Konrad Dybcio · Jul 28, 2026 · 1 files
drm/msm/dp: Drop dev_pm_opp_set_rate(0)
Konrad Dybcio · Jul 28, 2026 · 1 files
drm/msm/dsi: Drop dev_pm_opp_set_rate(0)
Konrad Dybcio · Jul 28, 2026 · 1 files
smb: client: restore the data_offset bound in is_valid_oplock_break()
Bryam Vargas · Jul 28, 2026 · 1 files
dt-bindings: leds: lacie,ns2-leds: Convert to DT schema
Ninad Naik · Jul 28, 2026 · 2 files
hugetlb: only adjust reservation during unmapping if mapcount is 0
Guillaume Morin · Jul 28, 2026 · 1 files
apparmor: fix auditing of mount binary data
John Johansen · Jul 28, 2026 · 1 files
apparmor: drop use of _confined variant for iteration
John Johansen · Jul 28, 2026 · 1 files
apparmor: constify aa_perms parameters that are read-only
John Johansen · Jul 28, 2026 · 6 files
apparmor: constify aa_profile parameters on read-only compute paths
John Johansen · Jul 28, 2026 · 10 files
memcg: bypass the reclaim and oom killer for dying tasks once oom_reaper is done
Shakeel Butt · Jul 29, 2026 · 1 files
zram: set default primary compressor in zram_destroy_comps()
Sergey Senozhatsky · Jul 29, 2026 · 1 files
zram: validate deflate params
Sergey Senozhatsky · Jul 29, 2026 · 1 files
Drop Michael Turquette's clk maintainer entry
Uwe Kleine-König · Jul 29, 2026 · 2 files
apparmor: constify aa_dfa parameters on read-only compute paths
John Johansen · Jul 29, 2026 · 8 files
dt-bindings: clock: rockchip: Add RV1106 CRU support
Simon Glass · Jul 29, 2026 · 2 files
clk: rockchip: Add clock controller for the RV1106
Simon Glass · Jul 29, 2026 · 3 files
scsi: lpfc: Replace strlcat() with seq_buf in lpfc_info()
Ian Bridges · Jul 29, 2026 · 1 files
scsi: lpfc: Replace strlcat() with scnprintf() in lpfc_vport_symbolic_node_name()
Ian Bridges · Jul 29, 2026 · 1 files
scsi: lpfc: Replace strlcat() with seq_buf in lpfc_rx_monitor_report()
Ian Bridges · Jul 29, 2026 · 1 files
scsi: lpfc: Replace strlcat() with seq_buf in the debugfs dump helpers
Ian Bridges · Jul 29, 2026 · 1 files
scsi: lpfc: Replace strlcat() with sysfs_emit_at() in the sysfs show functions
Ian Bridges · Jul 29, 2026 · 2 files
clk: qcom: Fix test_ctl_hi field for DEFAULT_EVO PLLs
Imran Shaik · Jul 29, 2026 · 3 files
drm/msm: Fix barriers accessing ctx vm
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Rework queuelock
Rob Clark · Jul 29, 2026 · 3 files
drm/msm: Synchronize VM creation on ctxlock
Rob Clark · Jul 29, 2026 · 2 files
drm/msm: Synchronize set_sysprof on ctxlock
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Move nr_cmds initialization
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Remove redundant SIZE_MAX check
Rob Clark · Jul 29, 2026 · 1 files
drm/msm/a6xx: Access VM directly in submit path
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Add helper to check for per-process pgtables VM
Rob Clark · Jul 29, 2026 · 1 files
drm/msm/gem: Fix dma_buf import error paths
Rob Clark · Jul 29, 2026 · 3 files
drm/msm/gem: Remove useless locking in GEM import
Rob Clark · Jul 29, 2026 · 1 files
drm/msm/gem: Extract bookkeeping init helper
Rob Clark · Jul 29, 2026 · 1 files
drm/msm/gem: Set resv before exposing obj
Rob Clark · Jul 29, 2026 · 5 files
drm/msm/gem: Validate lazy VM in GEM_NEW
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Allow lazy VM creation to fail
Rob Clark · Jul 29, 2026 · 5 files
drm/msm: Don't fallback to shared VM for VM_BIND
Rob Clark · Jul 29, 2026 · 2 files
drm/msm: Fix per-process-pgtables check
Rob Clark · Jul 29, 2026 · 1 files
drm/msm: Fixup invalid overflow check
Rob Clark · Jul 29, 2026 · 1 files
ubifs: debug.h: fix kernel-doc struct prototypes
Randy Dunlap · Jul 29, 2026 · 1 files
ubifs: key.h: use correct function parameter name
Randy Dunlap · Jul 29, 2026 · 1 files
ubifs: ubifs.h: clean up kernel-doc comments
Randy Dunlap · Jul 29, 2026 · 1 files
apparmor: compressed_data not described in aa_get_data_from_compressed
John Johansen · Jul 29, 2026 · 1 files
x86/hyperv: reserve more vectors
Wei Liu · Jul 30, 2026 · 1 files
coccinelle: update Coccinelle website URL
相浦彰 / AIURA,AKIRA · Jul 30, 2026 · 3 files
Documentation: zram: correct algo parameters configuration documentation
Sergey Senozhatsky · Jul 30, 2026 · 1 files
dt-bindings: clock: ti: Convert APLL clock to DT schema
Eduard Bostina · Jul 30, 2026 · 2 files
clk: imx95-blk-ctl: Add func_out_en clock for i.MX9x PCIe
Richard Zhu · Jul 30, 2026 · 1 files
clk: imx95-blk-ctl: Fix REFCLK rise-fall mismatch on i.MX95
Richard Zhu · Jul 30, 2026 · 1 files
apparmor: Fix build failure when ZSTD_DECOMPRESS is not enabled
John Johansen · Jul 30, 2026 · 2 files
docs/ja_JP: translate submitting-patches.rst (tag usage)
Akiyoshi Kurita · Jul 30, 2026 · 1 files
drm/msm: detach the ARM DMA mapping before attaching our own domain
Dmitry Baryshkov · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom-rpmhcc: Add RPMH clock controller for Maili
Taniya Das · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom: Add Maili TCSR clock controller
Taniya Das · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom: Add Maili global clock controller
Taniya Das · Jul 30, 2026 · 2 files
clk: qcom: gcc-hawi: Add support for global clock controller on Maili
Taniya Das · Jul 30, 2026 · 1 files
batman-adv: fix stale receive device on merged fragments
Zhiling Zou · Jul 31, 2026 · 1 files
mm: shmem: reject page-aligned fallocate end overflow
Zhiling Zou · Jul 31, 2026 · 1 files
mm: zswap: drop list_lru param from zswap_lru_add() and _del()
Wilson Felipe Pereira · Jul 31, 2026 · 1 files
rtc: gamecube: check return value of devm_rtc_register_device()
Linkai Gong · Jul 31, 2026 · 1 files
mm: kmemleak: default min_unref_scans to 2 for verbose auto-scan
Breno Leitao · Jul 31, 2026 · 1 files
Documentation: kmemleak: document the conditional min_unref_scans default
Breno Leitao · Jul 31, 2026 · 1 files
selftests/mm: kmemleak: drop stale min_unref_scans default from comments
Breno Leitao · Jul 31, 2026 · 1 files
libceph: validate banner payload length
Aleksandr Nogikh · Jul 31, 2026 · 1 files
power: sequencing: rename pwrseq_power_on/off() to pwrseq_enable/disable()
Bartosz Golaszewski · Jul 31, 2026 · 8 files
drm: use drm_warn() in validate_blend_mode_for_alpha_formats()
Leandro Ribeiro · Jul 31, 2026 · 1 files
mm/sparse: correct init section annotations
Sang-Heon Jeon · Jul 31, 2026 · 1 files
mm/page_reporting: add page_reporting_delay_ms module parameter
Pratyush Mallick · Jul 31, 2026 · 2 files
mm/gup: fix always draining LRU caches in collect_longterm_unpinnable_folios()
David Hildenbrand (Arm) · Jul 31, 2026 · 1 files
selftests/fuse: test post-EOF page zeroing when a file is extended
Jimmy Zuber · Jul 31, 2026 · 3 files
apparmor: fix implicit declaration of function 'decompress_zstd'
John Johansen · Aug 1, 2026 · 1 files
clk: devres: fix cleanup in devm_clk_get_optional_enabled_with_rate()
Onur Özkan · Aug 1, 2026 · 1 files
mm/vmalloc: make vm_struct.nr_pages an unsigned long
Artem Lytkin · Aug 1, 2026 · 2 files
openrisc: drop unneeded semicolon
Julia Lawall · Aug 1, 2026 · 1 files
dt-bindings: clock: Correct white-space style
Krzysztof Kozlowski · Aug 1, 2026 · 4 files
mm/vmalloc: do not warn on -ENOMEM from va_alloc()
Uladzislau Rezki (Sony) · Aug 2, 2026 · 1 files
mfd: qnap-mcu: keep the reply buffer alive past a command timeout
Ali Ahmet Memis · Aug 2, 2026 · 1 files
coccinelle: api: check for macro context
Julia Lawall · Aug 2, 2026 · 1 files
netfilter: validate L4 headers after userspace packet writes
Zhiling Zou · Aug 3, 2026 · 2 files
ipmi: Remove all sysfs files on registration failure
Yuho Choi · Aug 3, 2026 · 1 files
i2c: imx-lpi2c: avoid accessing target registers on master-only controllers
Carlos Song · Aug 3, 2026 · 1 files
apparmor: Fix warning: 'decompress_zstd' defined but not used
John Johansen · Aug 3, 2026 · 1 files
clk: zynq: pll: Fix kernel-doc after determine_rate() conversion
Babanpreet Singh · Aug 3, 2026 · 1 files
f2fs: reject invalid recovered filename lengths
Wenjie Qi · Aug 3, 2026 · 1 files
f2fs: Run f2fs_write_end_io() asynchronously
Bart Van Assche · Aug 3, 2026 · 5 files
mm/swap: reject swapon() on filesystem-level encrypted files
Eric Biggers · Aug 3, 2026 · 2 files
f2fs: call __add_ino_entry out of the eviction path
Jaegeuk Kim · Aug 3, 2026 · 5 files
selftests/mm: rename local_config.h to local_config.h_gen
Pratyush Mallick · Aug 3, 2026 · 4 files
selftests/mm: use pattern matching in .gitignore
Pratyush Mallick · Aug 3, 2026 · 1 files
f2fs: fix valid block count leak on data block allocation failure
Chen Changcheng · Aug 4, 2026 · 1 files
f2fs: avoid NULL checkpoint thread access in sysfs
Wenjie Qi · Aug 4, 2026 · 1 files
f2fs: protect critical_task_priority updates with s_umount
Wenjie Qi · Aug 4, 2026 · 1 files
backlight: aw99706: Fix DT property names to match binding
Junjie Cao · Aug 4, 2026 · 1 files
backlight: aw99706: Validate all DT property values consistently
Junjie Cao · Aug 4, 2026 · 1 files
backlight: aw99706: Honor the core blank state in update_status()
Junjie Cao · Aug 4, 2026 · 1 files
zram: fix out-of-bounds access in writeback_store()
Longlong Xia · Aug 4, 2026 · 1 files
zram: fix out-of-bounds access in read_block_state()
Longlong Xia · Aug 4, 2026 · 1 files
zram: do not release zstd global params from error paths
Haoqin Huang · Aug 4, 2026 · 1 files
zram: reject zero-size dictionary
Haoqin Huang · Aug 4, 2026 · 1 files
zram: add pr_fmt to backend files
Haoqin Huang · Aug 4, 2026 · 7 files
zram: validate parameters in each backend's setup_params
Haoqin Huang · Aug 4, 2026 · 7 files
zram: reset per-priority params when changing algorithm before init
Haoqin Huang · Aug 4, 2026 · 1 files
mm: add some missing includes to mm-local headers
Lorenzo Stoakes (ARM) · Aug 4, 2026 · 7 files
dt-bindings: mfd: syscon: Add ESWIN EIC7700 compatible
Pinkesh Vaghela · Aug 4, 2026 · 1 files
selftests/mm: read memory information without popen
Warren Xiong · Aug 4, 2026 · 1 files
dt-bindings: mfd: syscon: Allow syscon compatible for Loongson-2K0300 chip id
Binbin Zhou · Aug 4, 2026 · 1 files
mm/Kconfig: make FLATMEM depend on !NUMA
Sang-Heon Jeon · Aug 4, 2026 · 1 files
mm/page_ext: remove pgdat_page_ext_init()
Sang-Heon Jeon · Aug 4, 2026 · 3 files
dt-bindings: rtc: ti,omap-rtc: Convert to DT schema
Bhargav Joshi · Aug 4, 2026 · 2 files
apparmor: constify aa_label parameters on read-only query helpers
John Johansen · Aug 4, 2026 · 2 files
drm/amd/display: avoid divide-by-zero in __is_lut_linear()
Harry Wentland · Aug 4, 2026 · 1 files
drm/amd/display: validate plane degamma LUT size for private color prop
Harry Wentland · Aug 4, 2026 · 1 files
mm/huge_memory: use folio's memcg inside __folio_split()
Zi Yan · Aug 4, 2026 · 1 files
xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc()
Zi Yan · Aug 4, 2026 · 1 files
thermal/of: Fix trivial enabled typo
Marek Vasut · Aug 4, 2026 · 1 files
mm/show_mem: fix format string inconsistencies and type mismatches
Ye Liu · Aug 5, 2026 · 1 files
mm/sparse: keep mem_section_usage_size() internal
Muchun Song · Aug 5, 2026 · 3 files
drm/amdgpu: Disable runtime PM for externally attached dGPUs
Yang Wang · Aug 5, 2026 · 1 files
dt-bindings: mfd: qcom,spmi-pmic: Document haptics device
Fenglin Wu · Aug 5, 2026 · 1 files
maple_tree: remove unused mas_is_root_limits()
Zhan Xusheng · Aug 5, 2026 · 1 files
mm: debug_page_alloc: fix type mismatch for debug_guardpage_minorder
Ye Liu · Aug 5, 2026 · 1 files
ksm: update comments and docs to reference folio->mapping
Hongfu Li · Aug 5, 2026 · 3 files
mfd: cs42l43: Fix regmap defaults ordering
Charles Keepax · Aug 5, 2026 · 1 files
cpufreq: intel_pstate: Consolidate HWP P-states initialization
Rafael J. Wysocki · Aug 5, 2026 · 1 files
cpufreq: intel_pstate: Avoid using DESIRED_PERF when DEC is enabled
Rafael J. Wysocki · Aug 5, 2026 · 1 files
f2fs: fix to return -EFSCORRUPTED in f2fs_get_node_info() correctly
Chao Yu · Aug 5, 2026 · 1 files
f2fs: avoid unnecessary shrink in f2fs_shrink_scan()
Chao Yu · Aug 5, 2026 · 1 files
f2fs: fix to clear dirty flag on folio in error path
Chao Yu · Aug 5, 2026 · 1 files
mm/ksm: avoid missing ksmd wakeups in ksm_enter
Longlong Xia · Aug 5, 2026 · 1 files
clk: rockchip: rk3576: fix source muxes for SPI0..SPI4
Alexey Charkov · Aug 5, 2026 · 1 files
backlight: Use sysfs_emit() instead of sprintf()
Levente Szajko · Aug 5, 2026 · 2 files
objtool/rust: add one more `noreturn` Rust function
Miguel Ojeda · Aug 5, 2026 · 1 files
dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator
Geert Uytterhoeven · Aug 5, 2026 · 2 files
clk: renesas: Add R-Car X5H CPG driver
Geert Uytterhoeven · Aug 5, 2026 · 3 files
alloc_tag: expose boot-time compression configuration
Abhishek Bapat · Aug 5, 2026 · 2 files
of: fix out-of-bounds read in of_alias_scan() stem parser
Abdurrahman Hussain · Aug 5, 2026 · 1 files
Drivers: hv: Remove support for WS2012/2012R2 & Win8/8.1 version of Hyper-V
Michael Kelley · Aug 5, 2026 · 5 files
hv_sock: Remove check for old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
hv_netvsc: Remove GPADL teardown special case for old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
scsi: storvsc: Remove support for storvsc protocol of old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
clocksource: hyper-v: Remove support for stimer interrupts in message mode
Michael Kelley · Aug 5, 2026 · 6 files
mm: debug_page_alloc: fix NULL buf in debug_guardpage_minorder_setup
Ye Liu · Aug 6, 2026 · 1 files
f2fs: support dynamic reserve/release for device aliasing
Daeho Jeong · Aug 6, 2026 · 11 files
f2fs: print error information in f2fs_put_super()
Chao Yu · Aug 6, 2026 · 1 files
selftests/mm: drop duplicate test_seal_mprotect_two_vma_with_gap() call
Hongfu Li · Aug 6, 2026 · 1 files
zram: switch to unsigned long indexing
Sergey Senozhatsky · Aug 6, 2026 · 1 files
selftests: mm: extend the check_huge() to support mTHP check
Baolin Wang · Aug 6, 2026 · 9 files
selftests: mm: move gather_after_split_folio_orders() into vm_util.c file
Baolin Wang · Aug 6, 2026 · 3 files
selftests: mm: implement the mTHP-sized hugepage check helpers
Baolin Wang · Aug 6, 2026 · 1 files
selftests: mm: add mTHP collapse test cases
Baolin Wang · Aug 6, 2026 · 2 files
f2fs: issue multi-device flushes in parallel
Yonggil Song · Aug 6, 2026 · 1 files
drivers/base, mm: move arch_numa.c to mm/
Mike Rapoport (Microsoft) · Aug 6, 2026 · 7 files
mm/zswap: fix global shrinker when memory cgroup is disabled
Hao Jia · Aug 6, 2026 · 1 files
mm/zswap: support batch writeback in shrink_memcg()
Hao Jia · Aug 6, 2026 · 1 files
mm/page_alloc: only update lowmem_reserve_ratio on sysctl write
Jianlin Shi · Aug 6, 2026 · 1 files
leds: is31fl319x: Modernize registration
Andreas Kemnade · Aug 6, 2026 · 1 files
f2fs: fix to pass folio->index to f2fs_sanity_check_node_footer()
Chao Yu · Aug 6, 2026 · 1 files
clk: samsung: Don't include <linux/mod_devicetable.h>
Uwe Kleine-König (The Capable Hub) · Aug 6, 2026 · 1 files
nfs: fix ENXIO on O_CREAT open of existing symlink over NFSv3
Michael Nemanov · Aug 6, 2026 · 1 files
cpufreq: schedutil: Fix rate limit overflow
Hui Su · Aug 6, 2026 · 1 files
drm/amdkfd: Reject zero-sized AQL queue allocations after size halving
Sunday Clement · Aug 6, 2026 · 2 files
selftests/mm/vm_util.c: correct __pagemap_scan_get_categories return value
Audra Mitchell · Aug 6, 2026 · 1 files
apparmor: fix cred UAF caused by begin_current_label_crit_section()
Jann Horn · Aug 6, 2026 · 3 files
mm/gup: factor out LRU cache draining for folio into lru_cache_drain_for_folio()
David Hildenbrand (Arm) · Aug 6, 2026 · 4 files
ipmi: Fix leak in __ipmi_bmc_register
Michail Tatas · Aug 6, 2026 · 1 files
apparmor: optimize current_label_crit_section() with needput
John Johansen · Aug 6, 2026 · 5 files
netfilter: ipset: remove need to allocate memory on delete operations
Florian Westphal · Aug 7, 2026 · 3 files
selftests/mm: fix read_file() return value check
Hongfu Li · Aug 7, 2026 · 2 files
drm/amdgpu/userq: fix lock missing for userq fence error set
Prike Liang · Aug 7, 2026 · 1 files
cifs: clear tcon after cifsFileInfo_put() in cifs_file_set_size()
Frank Sorenson · Aug 7, 2026 · 1 files
mm/hugetlb_cma: support percentage-based hugetlb_cma reservation
Sourav Panda · Aug 7, 2026 · 2 files
dt-bindings: input: Add Qualcomm SPMI PMIC haptics
Fenglin Wu · Aug 7, 2026 · 1 files
tracing: Fix logged instance name on creation failure
Vincent Donnefort · Aug 7, 2026 · 1 files
mm/execmem: fix fallback_end description in kernel-doc
Henry Elderman · Aug 7, 2026 · 1 files
char: ipmi: use named initializers for acpi_device_id
Pawel Zalewski (The Capable Hub) · Aug 7, 2026 · 3 files
mm: make VM_FAULT_RESULT_TRACE compatible with sparse
Bart Van Assche · Aug 7, 2026 · 1 files
drm/amdgpu/vcn: fix integer overflow in dec_msg buffer count check
David (Ming Qiang) Wu · Aug 7, 2026 · 2 files
mtd: ubi: Release device reference on busy detach
Yuho Choi · Aug 7, 2026 · 1 files
f2fs: refactor f2fs_evict_inode having three major parts
Jaegeuk Kim · Aug 7, 2026 · 1 files
scsi: ufs: core: Set task state before io_schedule_timeout()
Bart Van Assche · Aug 7, 2026 · 1 files
scsi: ufs: core: Enable context analysis
Bart Van Assche · Aug 7, 2026 · 4 files
scsi: core: Pass the SCSI host pointer directly to scanning functions
Bart Van Assche · Aug 7, 2026 · 1 files
scsi: core: Add lock context annotations
Bart Van Assche · Aug 7, 2026 · 1 files
scsi: core: Protect host state changes with the host lock
Bart Van Assche · Aug 7, 2026 · 10 files
scsi: core: Enable context analysis
Bart Van Assche · Aug 7, 2026 · 2 files
kasan: fix cache shrink race with CPU hotplug
Hui Su · Aug 8, 2026 · 1 files
Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
Bluetooth: hci_intel: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
ACPI: scan: fix bus ID cleanup on device_add() failures
Hongyan Xu · Aug 8, 2026 · 1 files
Bluetooth: L2CAP: fix race l2cap_sock_cleanup_listen() vs. put_chan
Pauli Virtanen · Aug 8, 2026 · 2 files
drm/amdgpu: fix autosuspend cleanup during removal
Guangshuo Li · Aug 8, 2026 · 1 files
scsi: mpt3sas: Avoid freeing unallocated PCIe SGL buffers
Chandrakanth Patil · Aug 8, 2026 · 1 files
Bluetooth: mgmt: fix 'hdev->discovery.uuids' NULL dereference
Pavel Shpakovskiy · Aug 8, 2026 · 2 files
selftests/proc: make proc-maps-race work with READ_IMPLIES_EXEC
Karl Mehltretter · Aug 8, 2026 · 1 files
cifs: fix clearing stats for fastest execution of each smb2 command
Frank Sorenson · Aug 8, 2026 · 1 files
Bluetooth: L2CAP: reject accept queue add unless BT_LISTEN
Pauli Virtanen · Aug 8, 2026 · 1 files
ACPI: battery: Protect all properties with a separated mutex
Rong Zhang · Aug 8, 2026 · 1 files
f2fs: unify add/remove ino entry API for all ino types
Chao Yu · Aug 9, 2026 · 1 files
coccinelle: misc: struct_size: drop unneeded parentheses
Sang-Heon Jeon · Aug 9, 2026 · 1 files
zsmalloc: account for handle size in class lookup
Longlong Xia · Aug 9, 2026 · 1 files
rust: jump_label: skip arch-specific asm in `testlib` builds
FUJITA Tomonori · Aug 9, 2026 · 1 files
apparmor: fix integer overflow in verify_tags() bounds check
Fabrice Derepas · Aug 9, 2026 · 1 files
scripts: coccinelle: devm_free: reduce false positives
Julia Lawall · Aug 9, 2026 · 1 files
SUNRPC: wait for in-flight client TLS handshake callback
Jérémy Jean · Aug 9, 2026 · 1 files
Bluetooth: L2CAP: access chan->conn safely in get/setsockopt
Pauli Virtanen · Aug 9, 2026 · 1 files
ipmi:si: Add async init to ipmi_si
Michal Clapinski · Aug 10, 2026 · 2 files
PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip
Naman Jain · Aug 10, 2026 · 1 files
mm/cma: remove stray newline from auto-generated CMA area name
Hongfu Li · Aug 10, 2026 · 1 files
apparmor: fix out-of-bounds write when null terminating a label vec
Hyunwoo Kim · Aug 10, 2026 · 1 files
mm/gup_test: keep longterm pin state per file
David Hildenbrand (Arm) · Aug 10, 2026 · 1 files
netfilter: nf_tables: don't queue packet path object notifications
Fourie Zhang · Aug 10, 2026 · 1 files
ACPI: platform: Use acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 10, 2026 · 1 files
ACPI: scan: Use acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 10, 2026 · 1 files
f2fs: return symlink writeback errors
Wenjie Qi · Aug 10, 2026 · 1 files
rust: kernel: list: fix incorrect pop_back example comment
Nikolai Grlica · Aug 10, 2026 · 1 files
mm/page-writeback: document folio_mark_dirty() locking more explicitly
Jann Horn · Aug 10, 2026 · 2 files
dt-bindings: clock: ti,clockdomain: Convert to DT schema
Bhargav Joshi · Aug 10, 2026 · 3 files
mm/hmm.c:hmm_do_fault(): suppress sparse warning
Andrew Morton · Aug 10, 2026 · 1 files
zram: fix slot lock bit position on big-endian 64-bit
David Carlier · Aug 10, 2026 · 2 files
scsi: libsas: Add sas_ex_phy_to_dev() helper
Xingui Yang · Aug 11, 2026 · 2 files
scsi: libsas: Add linkrate and sas_addr change detection in rediscover
Xingui Yang · Aug 11, 2026 · 1 files
selftests/cgroup: test_zswap: skip test_no_kmem_bypass if debugfs is unavailable
Wilson Felipe Pereira · Aug 11, 2026 · 2 files
smb/client: mark missing nlink values as unknown
Ze Tan · Aug 11, 2026 · 2 files
smb/client: preserve open info type across compound queries
Ze Tan · Aug 11, 2026 · 2 files
smb/client: decode reparse metadata using its payload type
Ze Tan · Aug 11, 2026 · 3 files
f2fs: fix to off-by-one issue in f2fs_zero_post_eof_page()
Chao Yu · Aug 11, 2026 · 1 files
f2fs: fix to zero post-EOF data when extending file size
Chao Yu · Aug 11, 2026 · 1 files
kasan: fix quarantine_size accounting during cache removal
Hui Su · Aug 11, 2026 · 1 files
Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request
Ibrahim Abdelkader · Aug 11, 2026 · 1 files
vlan: fix skb_under_panic and races when toggling HW VLAN offload
Eric Dumazet · Aug 11, 2026 · 1 files
thermal/drivers/armada: Fix missing bitfields include
Daniel Lezcano · Aug 11, 2026 · 1 files
thermal/drivers/qcom/spm mbg tm: Fix missing bitfield header
Daniel Lezcano · Aug 11, 2026 · 1 files
i2c: designware: Global register definitions
Heikki Krogerus · Aug 11, 2026 · 6 files
drm/xe/i2c: Fix the interrupt handling
Heikki Krogerus · Aug 11, 2026 · 6 files
drm/xe/i2c: Keep the i2c controller always enabled
Heikki Krogerus · Aug 11, 2026 · 2 files
mm/khugepaged: refactor per-scan state clearing into collapse_control_init_scan()
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: extract reference check into folio_pte_referenced() helper
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: introduce a count_collapse_event() helper
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: fix outdated comments
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: unmap pte before releasing vma write lock
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm: Documentation: clarify where the mTHP stats live
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
thermal/drivers/qcom: Fix missing spmi adc tm5 gen3 file
Jishnu Prakash · Aug 11, 2026 · 1 files
Drivers: hv: vmbus: add vmbus_establish_gpadl_caller_decrypted()
Kameron Carr · Aug 11, 2026 · 2 files
Drivers: hv: vmbus: Add vmbus_alloc_buffer()/vmbus_free_buffer() for CoCo VMs
Kameron Carr · Aug 11, 2026 · 2 files
hv_netvsc: Allocate send/receive buffers using vmbus_alloc_buffer()
Kameron Carr · Aug 11, 2026 · 3 files
scsi: qla2xxx: Fix size_t format specifier in qla29xx_process_rd_image()
Nathan Chancellor · Aug 11, 2026 · 1 files
smb: client: fix OOB read/write from unvalidated DataOffset in coalesce_t2()
Frank Sorenson · Aug 12, 2026 · 1 files
drm/amdgpu: check thunderbolt before switcheroo registration
Yang Wang · Aug 12, 2026 · 1 files
mm/mglru: fix young counter undercount for large folios
Hui Zhu · Aug 12, 2026 · 1 files
ceph: use GFP_KERNEL consistently in __ceph_pool_perm_get()
Xiubo Li · Aug 12, 2026 · 1 files
MAINTAINERS: add drivers/char/mem.c to mm misc, memory mapping sections
Lorenzo Stoakes (ARM) · Aug 12, 2026 · 1 files
Docs/mm: fix outdated "radix tree" in page_migration
Song Hu · Aug 12, 2026 · 1 files
netfilter: nf_conntrack_expect: consolidate check for insertion of dead expectation
Pablo Neira Ayuso · Aug 12, 2026 · 1 files
netfilter: ctnetlink: do not expose expectation DEAD flag
Pablo Neira Ayuso · Aug 12, 2026 · 1 files
i2c: qcom-geni: update frequency table to fix timing parameters
Kathiravan Thirumoorthy · Aug 12, 2026 · 1 files
i2c: core: fix debugfs UAF on adapter removal
Vasileios Almpanis · Aug 12, 2026 · 1 files
apparmor: fix deadlock in complain-mode change_hat
John Johansen · Aug 12, 2026 · 3 files
lib/test_hmm: fix garbage pfn and wrong direction in devmem fault debug
Qiang Liu · Aug 12, 2026 · 1 files
i2c: qcom-cci: fix autosuspend cleanup
Guangshuo Li · Aug 12, 2026 · 1 files
tpm: tpm_tis_spi: fix nodef CR50 tpm_tis_spi_resume is null
Li Jun · Aug 12, 2026 · 1 files
MAINTAINERS: configfs: split configfs entry in C and Rust parts
Andreas Hindborg · Aug 12, 2026 · 1 files
f2fs: fix to reclaim space in f2fs_allocate_pinning_section()
Chao Yu · Aug 12, 2026 · 1 files
f2fs: fix to shrink gc_lock coverage in f2fs_gc_range()
Chao Yu · Aug 12, 2026 · 4 files
f2fs: cleanup w/ f2fs_need_rand_{blk, seg, seg_blk}
Chao Yu · Aug 12, 2026 · 4 files
f2fs: fix to avoid pinfile fragment on fragment:{block, segment} mode
Chao Yu · Aug 12, 2026 · 4 files
f2fs: fix to propagate error from f2fs_sync_fs()
Chao Yu · Aug 12, 2026 · 2 files
mm/mglru: fix and remove redundant unevictable folio handling
Kairui Song · Aug 12, 2026 · 1 files
ACPI: bus: Introduce acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 12, 2026 · 2 files
smb: client: Clear sensitive stack data in smb2transport.c
Thomas Huth · Aug 12, 2026 · 1 files
smb: client: Clear sensitive stack and heap data in smb2ops.c
Thomas Huth · Aug 12, 2026 · 1 files
smb: client: Clear sensitive stack data in cifsencrypt.c
Thomas Huth · Aug 12, 2026 · 1 files
smb: client: Clear sensitive stack data in smb1encrypt.c
Thomas Huth · Aug 12, 2026 · 1 files
smb: client: Avoid leaking sensitive data to the heap in connect.c
Thomas Huth · Aug 12, 2026 · 1 files
Drivers: hv: vmbus: Skip VMBus module cleanup for non-nested root partition
Michael Kelley · Aug 12, 2026 · 1 files
drm/amdkfd: guard against NULL restore_mqd in CRIU queue restore
Vladimir Marioukhine · Aug 12, 2026 · 1 files
ceph: fix leaked inode reference on writeback abort at umount
Matthew Brown · Aug 12, 2026 · 1 files
percpu: drop CONFIG_DEBUG_FORCE_WEAK_PER_CPU
Tejun Heo · Aug 12, 2026 · 4 files
netfilter: nf_tables: move hardware offload step after building the chain blob
Pablo Neira Ayuso · Aug 13, 2026 · 1 files
thermal/drivers/qcom-spmi-mbg-tm: Add module namespace import for IIO_CONSUMER
Nathan Chancellor · Aug 13, 2026 · 1 files
net: mctp: hold a reference to the route device in mctp_route_lookup()
Aldo Ariel Panzardo · Aug 13, 2026 · 1 files
smb: client: fix UAF and buffer leak in cifs_check_trans2() for malformed secondary T2
Frank Sorenson · Aug 13, 2026 · 1 files
drm/amdgpu: force complete the MES ring fences on reset
Jesse Zhang · Aug 13, 2026 · 1 files
drm/amdgpu: force complete the KIQ ring fences on reset
Jesse Zhang · Aug 13, 2026 · 1 files
ACPI: APD: Convert fixed clock rates to use HZ_PER_MHZ
Hongnan Li · Aug 13, 2026 · 1 files
ACPI: APD: Add clock frequency for HJMC01 I2C controller
Xiangyang Yu · Aug 13, 2026 · 1 files
scsi: qla2xxx: Fix an error code in qla_get_tmf()
Dan Carpenter · Aug 13, 2026 · 1 files
scsi: lpfc: Remove unnnecessary NULL check
Dan Carpenter · Aug 13, 2026 · 1 files
drm/xe: tests: fix error message in xe_migrate_sanity_test()
Dan Carpenter · Aug 13, 2026 · 1 files
scsi: qla2xxx: Fix an loop timeout test
Dan Carpenter · Aug 13, 2026 · 1 files
drm/amdgpu/userq: ignore duplicate BO locks in userq signal ioctl
Sunil Khatri · Aug 13, 2026 · 1 files
drm/amdgpu/userq: ignore duplicate BO locks when counting wait fences
Sunil Khatri · Aug 13, 2026 · 1 files
drm/amdgpu/userq: ignore duplicate BO locks when returning wait fence info
Sunil Khatri · Aug 13, 2026 · 1 files
drm/amdgpu: validate rptr and wptr of a userq
Zhu Lingshan · Aug 13, 2026 · 1 files
ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode
Jérémy Jean · Aug 13, 2026 · 1 files
netfilter: nf_tables: move set_update_list to nftables per-netns
Pablo Neira Ayuso · Aug 13, 2026 · 2 files
netfilter: nf_tables: call set ops .commit when building new ruleset blob
Pablo Neira Ayuso · Aug 13, 2026 · 1 files
mm/Kconfig: make MEMORY_FAILURE select MIGRATION
Xie Yuanbin · Aug 13, 2026 · 1 files
drm/amdgpu: fix sysfs ip base addr for 64bit in standalone mode
Mukul Joshi · Aug 13, 2026 · 1 files
tpm: st33zp24: Validate locality read result
Ruoyu Wang · Aug 13, 2026 · 1 files
ASoC: tas2783-sdw: power the Function up before preparing the port
Andrey Golovko · Aug 13, 2026 · 1 files
ASoC: sdw_utils: prepare the stream again when resuming
Andrey Golovko · Aug 13, 2026 · 1 files
drm/amd/display: Scale custom brightness curve from full range
Akhmed Zhitaev · Aug 13, 2026 · 1 files
mm/vma: introduce VMA anon page offset field and add helpers
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 5 files
mm: provide vma_[flags_]is_cow_mapping() and remove is_cow_mapping()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 16 files
mm: introduce linear_anon_page_index()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files
mm: abstract vma_address() and introduce vma_anon_address()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: update print_bad_page_map() to show anon index if appropriate
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: introduce and use vma_filebacked_address()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 4 files
mm/vma: fix self-merge check in copy_vma()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files
tools/testing/vma: add tests for copy_vma() self-merge
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: propagate VMA anonymous page offset on map, remap, split + merge
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 7 files
mm/rmap: track whether the page VMA mapped pgoff is anonymous
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files
mm: clean up vma_address_end()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm/huge_memory: update remove_migration_pmd() to accept a folio
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files
mm/migrate: calculate large folio page index using PFN
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm/rmap: use anon pgoff to track MAP_PRIVATE file-backed anon folios
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 8 files
tools/testing/vma: expand VMA merge tests to assert anon pgoff
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
tools/testing/selftests/mm: test anonymous page offset merge behaviour
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
ipvs: fix integer overflow in ftp helper port/address parsing
Joas Antonio dos Santos · Aug 13, 2026 · 1 files
maple_tree: fix comment typo
Mark Sercombe · Aug 13, 2026 · 1 files
xsk: fix NULL pointer dereference in __xsk_rcv()
Cen Zhang (Microsoft) · Aug 13, 2026 · 1 files
powercap: intel_rapl: Sign-extend the PMU delta on counter wraparound
Li, Yifan · Aug 14, 2026 · 1 files
arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map()
Nathan Chancellor · Aug 14, 2026 · 1 files
scsi: leapraid: Balance host references for firmware log VMAs
Linmao Li · Aug 14, 2026 · 1 files
scsi: leapraid: Serialize firmware log mmap with teardown
Linmao Li · Aug 14, 2026 · 1 files
smb: client: simplify __build_path_from_dentry_optional_prefix()
Dmitry Antipov · Aug 14, 2026 · 1 files
mm/rmap: synchronize lock and unlock target in anon_vma_clone
Eric Kim · Aug 14, 2026 · 1 files
amdkfd: let profile_lock_device return an int other than uint32
Zhu Lingshan · Aug 14, 2026 · 1 files
drm/amdgpu/userq: lock and validate wptr BOs before reading their GPU offset on restore
Jesse Zhang · Aug 14, 2026 · 1 files
drm/xe: don't WARN on kernel job timeout when device already wedged
Nitin Gote · Aug 14, 2026 · 1 files
drm/amdgpu: fix hang and race in userq destroy
Zhu Lingshan · Aug 14, 2026 · 1 files
scsi: leapraid: Standardize NCQ priority sysfs attributes
Dongdong Hao · Aug 14, 2026 · 3 files
clk: microchip: mpfs: fix regmap_update_bits() mask/val order
Pedro Kopper · Aug 14, 2026 · 1 files
net: bridge: Reject descending VLAN tunnel ranges
Ruoyu Wang · Aug 14, 2026 · 1 files
drm/amdgpu: handle pipeline sync without a VM fence
Alex Deucher · Aug 14, 2026 · 3 files
scsi: core: Enable context analysis for hosts.o
Bart Van Assche · Aug 14, 2026 · 1 files
MAINTAINERS: Add Brian Masney and Jerome Brunet as co-maintainers for clk subsystem
Brian Masney · Aug 14, 2026 · 1 files
drm/kfd: Add CU occupancy support to GFX11
David Belanger · Aug 14, 2026 · 1 files
drm/kfd: Add CU occupancy support to GFX12
David Belanger · Aug 14, 2026 · 1 files
drm/kfd: Add CU occupancy support to GFX12.1
David Belanger · Aug 14, 2026 · 1 files
Bluetooth: btnxpuart: Validate the FW dump header length
Ali Ahmet Memis · Aug 14, 2026 · 1 files
net: core: propagate unreadable flag in skb_zerocopy
Mina Almasry · Aug 14, 2026 · 2 files
net: tcp: block mixing readable and unreadable frags
Mina Almasry · Aug 14, 2026 · 1 files
ACPI: pfr_update: fix stack buffer overflow in query_capability()
Anirudh Prasad · Aug 14, 2026 · 1 files
arm64: ptdump: Make note_page_flush() range aware
Wei-Lin Chang · Aug 14, 2026 · 2 files
KVM: arm64: ptdump: Flush the last region
Wei-Lin Chang · Aug 14, 2026 · 1 files
net: ipa: fix stalled modem TX queue after runtime resume
Jorijn van der Graaf · Aug 15, 2026 · 1 files
Bluetooth: eir: Fix OOB read in eir_get_service_data()
HyeongJun An · Aug 15, 2026 · 1 files
net: advertise TCP MSS from the configured MTU, not the learned PMTU
Jiayuan Chen · Aug 15, 2026 · 4 files
selftests: net: packetdrill: add tests for advertised MSS with PMTU exceptions
Eric Dumazet · Aug 15, 2026 · 2 files
ipv6: use RCU iterator to dump route exceptions
Yuyang Huang · Aug 15, 2026 · 1 files
crypto: acomp - allocate async request context when cloning
Jérémy Jean · Aug 15, 2026 · 1 files
net: thunderbolt: Count delivered packets in rx_packets and rx_bytes
Fan Ye · Aug 15, 2026 · 1 files
mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction
Harshit Varu · Aug 15, 2026 · 1 files
Bluetooth: btmtk: Do not report success when subsys reset fails
Ismail Tarim · Aug 15, 2026 · 1 files
Bluetooth: btmtk: Do not discard the subsystem reset timeout
Ismail Tarim · Aug 15, 2026 · 1 files
bnx2x: fix double free in bnx2x_init_firmware() error path
Jiangshan Yi · Aug 15, 2026 · 1 files
net: ipa: balance runtime PM reference on remove error
Ruoyu Wang · Aug 15, 2026 · 1 files
docs: kernel-parameters: add CPU_FREQ, CPU_IDLE build options
Randy Dunlap · Aug 15, 2026 · 1 files
forcedeth: fix off-by-one when saving/restoring non-PCI config space
Marek Czernohous · Aug 15, 2026 · 1 files
forcedeth: stop the tx_timeout register dump past the requested window
Marek Czernohous · Aug 15, 2026 · 1 files
netfilter: nft_set_pipapo_avx2: add missing vzeroupper
Eric Biggers · Aug 15, 2026 · 1 files
libceph: reject buckets with mismatched CRUSH ids
Jérémy Jean · Aug 15, 2026 · 1 files
regulator: tps65185: wait for the IC to wake before the first I2C access
Mario Rugiero · Aug 15, 2026 · 1 files
net: usb: cdc_ncm: add Apple MacBook Pro USB product ID 0x1902
Mehrdad Afshari · Aug 16, 2026 · 1 files
net: qlcnic: validate unified ROM sections before loading
Pengpeng Hou · Aug 16, 2026 · 1 files
net/mlx5: E-Switch, use state lock for vport state changes
Mark Bloch · Aug 16, 2026 · 5 files
net/mlx5: Move vport DOWN state check out of mlx5_query_vport_max_tx_speed()
Or Har-Toov · Aug 16, 2026 · 3 files
net/mlx5: E-Switch, preserve max tx speed on vport state modification
Or Har-Toov · Aug 16, 2026 · 2 files
NFSv4.2: fix LAYOUTSTATS send buffer exhaustion
Junrui Luo · Aug 16, 2026 · 1 files
NFSv4/pnfs: key the data server cache on the NFS version
Junrui Luo · Aug 16, 2026 · 4 files
NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path
Junrui Luo · Aug 16, 2026 · 1 files
Bluetooth: hci_sync: add conditional locking annotations
Pauli Virtanen · Aug 16, 2026 · 1 files
tracing: Fix use-after-free with same-name named triggers
Hui Su · Aug 16, 2026 · 1 files
kbuild: rust: preserve unreachable traps with inline helpers
Miguel Ojeda · Aug 16, 2026 · 3 files
kbuild: rust: keep Rust objects out of Clang LTO with inline helpers
Miguel Ojeda · Aug 16, 2026 · 2 files
doc:it_IT: align Italian documentation in process
Federico Vaga · Aug 16, 2026 · 16 files
net/sched: add get_fill_size callbacks for actions missing them
Victor Nogueira · Aug 16, 2026 · 9 files
net/tcp-ao: fix use-after-free of current_key on reconnect to another peer
Hyunwoo Kim · Aug 16, 2026 · 1 files
net/packet: defer vmalloc TX_RING free until skbs finish
Kyle Zeng · Aug 16, 2026 · 1 files
drm/radeon: fix internal display on iMac11, 1 (RV770/DCE3.1)
Gilles Risch · Aug 17, 2026 · 2 files
ipv6: avoid divide by zero in rt6_multipath_rebalance
Cen Zhang (Microsoft) · Aug 17, 2026 · 1 files
Bluetooth: btnxpuart: Check remote M.2 connector availability before pwrseq
Sherry Sun · Aug 17, 2026 · 1 files
f2fs: fix to reset all pinned status during fggc
Chao Yu · Aug 17, 2026 · 1 files
Revert "esp: do not unref managed frag pages in esp_ssg_unref()"
Steffen Klassert · Aug 17, 2026 · 2 files
NTB: ntb_transport: Recycle TX entries before client callbacks
Koichiro Den · Aug 17, 2026 · 1 files
net: ntb_netdev: Fix TX busy and drop handling
Koichiro Den · Aug 17, 2026 · 1 files
NTB: ntb_transport: Fail TX enqueue when the QP link is down
Koichiro Den · Aug 17, 2026 · 1 files
NTB: ntb_transport: Reject oversized TX buffers
Koichiro Den · Aug 17, 2026 · 1 files
mm/migrate_device: fix cache flush when replacing huge zero PMD
Hui Su · Aug 17, 2026 · 1 files
selftests/mm: drop redundant open() in mprotect_tests()
Hongfu Li · Aug 17, 2026 · 1 files
netdevsim: update queue NAPI association on queue reset
Eric Dumazet · Aug 17, 2026 · 1 files
batman-adv: reject unrepresentable multicast TVLV offsets
Kyle Zeng · Aug 17, 2026 · 2 files
ipv6: seg6: clear IPv4 control block on IPIP decapsulation
Kyle Zeng · Aug 17, 2026 · 1 files
Bluetooth: btmtksdio: Take exclusive ownership of the SKB before TX
Chris Lu · Aug 17, 2026 · 1 files
Bluetooth: btmtksdio: Fix out-of-bounds DMA read in the TX path
Chris Lu · Aug 17, 2026 · 1 files
mm/memcontrol: avoid false sharing between vmstats and events
Usama Arif · Aug 17, 2026 · 1 files
f2fs: use f2fs_{down, up}_(read, write}_trace() for nat_tree_lock
Chao Yu · Aug 17, 2026 · 5 files
tracing: Fix crash passing ERR_PTR to kthread_stop()
Hui Su · Aug 17, 2026 · 1 files
ipv6: rpl: fix NULL dereference of idev in ipv6_rpl_srh_rcv()
Andrea Mayer · Aug 17, 2026 · 1 files
tracing: Fix use-after-free in trace_pipe read on sub-buffer order change
Deepanshu Kartikey · Aug 17, 2026 · 1 files
net: add missing ref_tracker_dir_exit() to net_passive_dec()
Tetsuo Handa · Aug 17, 2026 · 1 files
ACPI: button: Add DMI quirk for Razer Blade Pro 17 early 2020 lid switch
Robin Everaars · Aug 17, 2026 · 1 files
net: microchip: vcap: use port number instead of netdev name for debugfs
Daniel Machon · Aug 17, 2026 · 3 files
net: sparx5: fix sleep in atomic context in MAC table access
Daniel Machon · Aug 17, 2026 · 1 files
smb: client: fix ALIGN() overflow in symlink_data() error context loop
Frank Sorenson · Aug 17, 2026 · 1 files
smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr()
Frank Sorenson · Aug 17, 2026 · 1 files
scsi: ibmvfc: Fix use of uninitialized rport in ibmvfc_do_work()
Nathan Chancellor · Aug 17, 2026 · 1 files
xfrm: bound nat keepalive state collection
Zihan Xi · Aug 17, 2026 · 1 files
libceph: remove ceph_put_page_vector()
Tal Zussman · Aug 17, 2026 · 3 files
net: phylink: correctly validate returned PCS in phylink_inband_caps
Christian Marangi · Aug 17, 2026 · 1 files
scsi: MAINTAINERS: Leave the cumana_1 and oak drivers to the RISCPC maintainers
Finn Thain · Aug 18, 2026 · 1 files
ASoC: codec: max98926: fixup invert setup mask
Kuninori Morimoto · Aug 18, 2026 · 1 files
ASoC: sdw_utils: fix double put_device() on aggregated amps
Jack Yu · Aug 18, 2026 · 1 files
net: txgbe: fix MISC interrupt unmasking in non-MSI-X mode and device shutdown
Jiawen Wu · Aug 18, 2026 · 1 files
ethtool: remove unused __ETHTOOL_LINK_MODE_MASK_NWORDS
Zhan Xusheng · Aug 18, 2026 · 1 files
Revert "cifs: remove all cifs files before kill super"
Zizhi Wo · Aug 18, 2026 · 1 files
net/smc: free stashed qentry before overwrite in REQ_ADD_LINK to ADD_LINK transition
Mahanta Jambigi · Aug 18, 2026 · 1 files
qede: Fix NULL pointer dereference in TPA fragment processing
Vaibhav Nagare · Aug 18, 2026 · 2 files
net/smc: free pending qentry in smc_llc_flow_stop() before memset
Mahanta Jambigi · Aug 18, 2026 · 1 files
net: libwx: fix concurrent bitmap overwrite in PTP setup
Jiawen Wu · Aug 18, 2026 · 1 files
netfilter: x_tables: remove pr_debug
Pablo Neira Ayuso · Aug 18, 2026 · 18 files
netfilter: x_tables: replace pr_{info,err}() by pr_info_ratelimited()
Pablo Neira Ayuso · Aug 18, 2026 · 2 files
ASoC: dt-bindings: qcom,q6dsp-lpass-ports: Rename QAIF clock IDs
Prasad Kumpatla · Aug 18, 2026 · 3 files
ASoC: qcom: qdsp6: Zero-initialize AudioReach module config
Prasad Kumpatla · Aug 18, 2026 · 1 files
ASoC: qcom: common: Distinguish missing and invalid TDM slot configuration
Prasad Kumpatla · Aug 18, 2026 · 1 files
ASoC: qcom: sc8280xp: Fix TDM hw_params error handling
Prasad Kumpatla · Aug 18, 2026 · 1 files
mm, swap: ratelimit bad swap entry reports
Breno Leitao · Aug 18, 2026 · 1 files
ASoC: loongson: Fix naming of machine event and DAPM widgets
Binbin Zhou · Aug 18, 2026 · 1 files
Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378
Lorenzo Stoakes (ARM) · Aug 18, 2026 · 1 files
net: sched: fix 32-bit backlog wrap in gred, bfifo and plug enqueue
Jamal Hadi Salim · Aug 18, 2026 · 3 files
io_uring/waitid: honor task_work cancellation
Hui Su · Aug 18, 2026 · 1 files
io_uring/waitid: avoid siginfo copy during ring teardown
Hui Su · Aug 18, 2026 · 1 files
mm: include swap.h in swapops.h
Kiryl Shutsemau (Meta) · Aug 18, 2026 · 1 files
mm: memcg: release the css reference when a stock slot empties
Song Hu · Aug 18, 2026 · 1 files
tools: ynl: handle calloc failure in ynl_ntf_parse
Triet Hoang · Aug 18, 2026 · 1 files
Bluetooth: hci_conn: re-enable advertising only for peripheral role
Valentin Kindschi · Aug 18, 2026 · 1 files
Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection
Valentin Kindschi · Aug 18, 2026 · 1 files
selftests/mm: fix unchecked ftruncate return value in soft-dirty test
Anshuman · Aug 18, 2026 · 1 files
docs: oa-tc6-framework: Fix link to specification
Stefan Wahren · Aug 18, 2026 · 1 files
ALSA: pcxhr: initialize mutexes before requesting threaded IRQ
Runyu Xiao · Aug 18, 2026 · 1 files
f2fs: fix i_size when pinned fallocate partially fails
Zhan Xusheng · Aug 18, 2026 · 1 files
gtp: serialize PDP context updates
Qing Ming · Aug 18, 2026 · 1 files
net: bridge: arp/nd proxy: fix reading neigh ha
Nikolay Aleksandrov · Aug 18, 2026 · 1 files
vxlan: fix reading neigh ha
Nikolay Aleksandrov · Aug 18, 2026 · 1 files
inetpeer: randomize RB-tree node comparison using SipHash
Eric Dumazet · Aug 18, 2026 · 2 files
xdp: fix zero-copy frame layout
Weiming Shi · Aug 18, 2026 · 1 files
PM: sleep: Unblock runtime PM when device prepare fails
Shibo Zhu · Aug 18, 2026 · 1 files
ip6mr: do not clone dst in ip6mr_cache_report()
Eric Dumazet · Aug 18, 2026 · 1 files
ipmi:msghandler: Cancel work cleanly on an error
Corey Minyard · Aug 18, 2026 · 1 files
ceph: force a cap message when a deferred revoke can't be acked immediately
Max Kellermann · Aug 18, 2026 · 2 files
io_uring: Add missing include for ITER_SOURCE and ITER_DEST
Mark Brown · Aug 18, 2026 · 1 files
f2fs: don't leave the hashed inode while it's unlinked
Jaegeuk Kim · Aug 18, 2026 · 3 files
drm/xe: Do not apply WA 14025883347 to media 3503
Daniele Ceraolo Spurio · Aug 18, 2026 · 1 files
ALSA: usb-audio: Add MIN_MUTE quirk for Creative Sound Blaster Play! 3
Chad Talbott · Aug 19, 2026 · 1 files
Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready
Hang Nan · Aug 19, 2026 · 1 files
f2fs: reduce memory footprint of ino management
Chao Yu · Aug 19, 2026 · 2 files
sctp: drop a chunk if its transport was removed
Hyunwoo Kim · Aug 19, 2026 · 1 files
net/smc: fix use-after-free of the LLC qentry in smc_llc_srv_add_link()
Yehyeong Lee · Aug 19, 2026 · 1 files
net/smc: bound the peer rkey counts in SMC-Rv2 LLC messages
Yehyeong Lee · Aug 19, 2026 · 1 files
net/smc: carry oversized SMC-Rv2 LLC messages in the queue entry
Yehyeong Lee · Aug 19, 2026 · 2 files
drm/amd/display: fix dc_lock leak on GPU reset error paths
Linkai Gong · Aug 19, 2026 · 1 files
drm/amdgpu: avoid force-completing uninitialized UVD rings
Bob Zhou · Aug 19, 2026 · 1 files
drm/amdgpu/mes: fix the inconsistent indenting for mes_userq_map()
Prike Liang · Aug 19, 2026 · 1 files
um: Use asm-generic/timex.h over the host architecture one
Thomas Weißschuh · Aug 19, 2026 · 1 files
drm/xe/xe_gt_idle: Add CCS to the powergating info print
Balasubramani Vivekanandan · Aug 19, 2026 · 1 files
fuse: invalidate the correct range after O_APPEND direct write
Baokun Li · Aug 19, 2026 · 1 files
ipip: fix skb leak in collect_md mode when metadata_dst allocation fails
Anton Danilov · Aug 19, 2026 · 1 files
netfilter: nf_tables: skip double clone set expressions on element insert
Pablo Neira Ayuso · Aug 19, 2026 · 3 files
selftests/mm: check stat() return value in khugepaged get_finfo()
Anshuman · Aug 19, 2026 · 1 files
pNFS: Fix EBUSY check in pnfs_layout_need_return
Tim Menninger · Aug 19, 2026 · 1 files
net: ethernet: mtk_wed: increase WED v2 WDMA RESV_BUFF to 0x80
Shiji Yang · Aug 19, 2026 · 2 files
docs: threat-model: fix /dev/kmsg reference
Johan Hovold · Aug 19, 2026 · 1 files
Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb
Xin Chen · Aug 19, 2026 · 1 files
net/sched: account classifier filter allocations to memcg
Jamal Hadi Salim · Aug 19, 2026 · 10 files
arm64: process: Fix context switching MTE store-only tag check
Vladimir Murzin · Aug 19, 2026 · 1 files
tcp: clamp route advmss to TCP_MIN_MSS
Yong Wang · Aug 19, 2026 · 5 files
xsk: align TX metadata layout across ABIs
Stanislav Fomichev · Aug 19, 2026 · 2 files
xsk: honor XDP_TX_METADATA in zero-copy path
Stanislav Fomichev · Aug 19, 2026 · 7 files
ALSA: hda/realtek: Add quirk for HP Laptop 15-fd0039nt
Habil Eren Türker · Aug 19, 2026 · 1 files
net: ntb_netdev: Avoid double-accounting netif_rx() drops
Koichiro Den · Aug 19, 2026 · 1 files
net: ntb_netdev: Count packets dropped on RX refill failure
Koichiro Den · Aug 19, 2026 · 1 files
f2fs: fix to migrate all curseg types during free_segment_range
Daeho Jeong · Aug 19, 2026 · 1 files
docs: panic: Disclaimer about console verbosity when using panic_print with pstore
Guilherme G. Piccoli · Aug 19, 2026 · 1 files
clk: ti: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 3 files
clk: visconti: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 1 files
spi: amlogic-spisg: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 1 files
docs: block: fix dead http link in blk-mq.rst
Jenson Johnathon Reggentin · Aug 19, 2026 · 1 files
ACPI: Add Bob Moore to CREDITS
Rafael J. Wysocki · Aug 19, 2026 · 1 files
ACPI: Update MAINTAINERS entry for ACPICA
Rafael J. Wysocki · Aug 19, 2026 · 1 files
ACPI: Update upstream ACPICA repository URL in documentation
Rafael J. Wysocki · Aug 19, 2026 · 1 files
arm64: compat: Fix decrementing LDM/STM alignment emulation
Karl Mehltretter · Aug 19, 2026 · 1 files
net: bnxt: ring the doorbell when SW USO exits early
Joe Damato · Aug 19, 2026 · 2 files
ALSA: ice1712: Fix the card leak at probe error with the auto-cleanup
Haotian Zhang · Aug 20, 2026 · 1 files
gtp: add synchronize_net() in gtp_newlink() error path to prevent use-after-free
Cen Zhang (Microsoft) · Aug 20, 2026 · 1 files
octeontx2-af: fix NULL deref in NIX TM tree debugfs read path
Anshumali Gaur · Aug 20, 2026 · 1 files
octeontx2-af: fix out-of-bounds read setting MSI-X irq affinity
Anshumali Gaur · Aug 20, 2026 · 1 files
ACPI: scan: Defer device power initialization
Peixin Xie · Aug 20, 2026 · 2 files
drm/xe: Reject page faults from non-fault-mode scratch VMs
Arvind Yadav · Aug 20, 2026 · 1 files
ALSA: hda/conexant: Simplify headset plugin type handling
Zhang Heng · Aug 20, 2026 · 1 files
net/smc: stop killed, freed and out_of_sync sharing a byte
Hidayath Khan · Aug 20, 2026 · 1 files
net/smc: fix use-after-free in smc_rx_pipe_buf_release()
Hidayath Khan · Aug 20, 2026 · 1 files
netfilter: nf_tables: set on dead bit when performing early element removal
Pablo Neira Ayuso · Aug 20, 2026 · 1 files
octeontx2-vf: fix workqueue and netdev race in probe/remove
Anshumali Gaur · Aug 20, 2026 · 1 files
net: airoha: npu: fix missing streaming DMA mask
Daniel Pawlik · Aug 20, 2026 · 1 files
spi: loongson: pm: add .freeze .poweroff .thaw .restore
Li Jun · Aug 20, 2026 · 1 files
ASoC: rt712-sdca: Pull high JD2 to prevent from entering TV mode
Jack Yu · Aug 20, 2026 · 2 files
drm/amd/display: Fix wrong bytes-per-pixel value for dml2_422_packed_10
Srinivasan Shanmugam · Aug 20, 2026 · 1 files
erofs: Fix EROFS_FS_ZIP_LZMA_DEFAULT_MAX_STREAMS default logic
Geert Uytterhoeven · Aug 20, 2026 · 1 files
drm/amd/display: Fix redundant GPUVMEnable checks in dcn6 flip schedule
Srinivasan Shanmugam · Aug 20, 2026 · 1 files
ALSA: mtpav: shut down output timer before card teardown
Runyu Xiao · Aug 20, 2026 · 1 files
ASoC: sdw_utils: Set component_name for tac5xx2 codec family
Niranjan H Y · Aug 20, 2026 · 1 files
ASoC: tac5xx2-sdw: Rename gain and volume macros
Niranjan H Y · Aug 20, 2026 · 2 files
ASoC: tac5xx2-sdw: update default regmap registers
Niranjan H Y · Aug 20, 2026 · 1 files
net_sched: sch_fq: fix pacing delay underflow with pacing offload
Eric Dumazet · Aug 20, 2026 · 1 files
xtensa: remove unused setup_profiling_timer function
Anthony Iliopoulos · Aug 20, 2026 · 2 files
net: hibmcge: fix page_pool DMA direction mismatch
Jian Shen · Aug 20, 2026 · 1 files
ALSA: hda/realtek: Fix bass speaker DAC routing for Lenovo Yoga Pro 9 16IAH10
Zhang Heng · Aug 20, 2026 · 1 files
ALSA: hda/realtek: Reorder quirk entries for Lenovo Legion Pro 7 16ARX8H
Zhang Heng · Aug 20, 2026 · 1 files
erofs: support SEEK_HOLE/SEEK_DATA in inode_share mode
Jingbo Xu · Aug 20, 2026 · 3 files
rust: cfi: disable function merging if CFI is enabled
Gary Guo · Aug 20, 2026 · 1 files
drm/amdgpu: Fix VCE 3 ring align_mask
David Rosca · Aug 20, 2026 · 1 files
net/smc: fix socket refcount leak in smc_switch_conns()
Hidayath Khan · Aug 20, 2026 · 1 files
net/sched: sch_cake: fix autorate reconfiguration throttling
Giuseppe Piscitelli · Aug 20, 2026 · 1 files
f2fs: avoid setting SBI_NEED_FSCK on transient resize failure
Daeho Jeong · Aug 20, 2026 · 1 files
net: macb: drop CONFIG_OF #if block
Théo Lebrun · Aug 20, 2026 · 1 files
net: page_pool: Remove zone/policy GFP flags when allocating XArray entries
Rong Zhang · Aug 20, 2026 · 1 files
net: l2tp: do not propagate multicast notification errors
Zihan Xi · Aug 20, 2026 · 1 files
ACPI: scan: Do not combine resources that overlap completely
Rafael J. Wysocki · Aug 20, 2026 · 1 files
net: qualcomm: rmnet: restore skb->dev on deaggregated frames
Xiang Mei · Aug 20, 2026 · 1 files
NFSv4.1: zero referring call lists before decoding
Jérémy Jean · Aug 20, 2026 · 1 files
cifs: call pagecache_isize_extended() in cifs_setsize() when extending
Frank Sorenson · Aug 20, 2026 · 1 files
smb: client: fix copy-paste error in WSL EA length accounting for $LXDEV
Frank Sorenson · Aug 20, 2026 · 1 files
bnxt_en: Gate TPH enablement behind BNXT_SUPPORTS_QUEUE_API check
Thomas Walsh · Aug 20, 2026 · 1 files
tpm: st33zp24: Return zero on status read failure
Ruoyu Wang · Aug 21, 2026 · 1 files
openrisc: fix arbitrary kernel memory access via or1k_atomic syscall
Ali Ahmet Memis · Aug 21, 2026 · 1 files
erofs: support splice() in inode_share mode
Zhan Xusheng · Aug 21, 2026 · 1 files
Bluetooth: hci_uart: Fix false success return in hci_uart_setup()
Gongwei Li · Aug 21, 2026 · 2 files
selftests/net: fix kill() argument order and wrapper cleanup in fin_ack_lat
Qingshuang Fu · Aug 21, 2026 · 2 files
selftests/net: check fork() return value in fin_ack_lat
Qingshuang Fu · Aug 21, 2026 · 1 files
openvswitch: Fix CT limit teardown use-after-free
Yuqi Xu · Aug 21, 2026 · 4 files
ptp: netc: fix period truncation and potential divide-by-zero in PEROUT
Wei Fang · Aug 21, 2026 · 1 files
bnxt_en: Fix call to hardware monitoring event handler
Guenter Roeck · Aug 21, 2026 · 1 files
octeontx2-af: Fix TL3/TL2 link config ENA clearing
Naveen Mamindlapalli · Aug 21, 2026 · 1 files
net: stmmac: fix device node reference leaks in stmmac_mtl_setup()
Md Rabbani · Aug 21, 2026 · 1 files
mm/vmscan: fix comment logic in balance_pgdat
Enlin Mu · Aug 21, 2026 · 1 files
net: enetc: restore RX ring congestion mode after ring reconfiguration
Wei Fang · Aug 21, 2026 · 3 files
net: enetc: restore RX ring congestion mode for ENETC v4
Wei Fang · Aug 21, 2026 · 1 files
drm/amdgpu: clamp the isolation index for rings outside a partition
Xiang Liu · Aug 21, 2026 · 2 files
net: ethernet: renesas: rswitch: fix device_node refcount leak in rswitch_get_port_node()
Manush Prajwal · Aug 21, 2026 · 1 files
rtc: hym8563: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 21, 2026 · 1 files
rtc: m41t80: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 21, 2026 · 1 files
rtc: nct3018y: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 21, 2026 · 1 files
rtc: philips: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 21, 2026 · 2 files
rtc: microcrystal: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 21, 2026 · 2 files
octeontx2-af: fix cn20k mailbox lifetime on repeated rvu_mbox_init()
Sai Krishna · Aug 21, 2026 · 3 files
ALSA: hda/realtek: Fix ALC700 audio on Intel Hades Canyon
Csaba Budai · Aug 21, 2026 · 1 files
netfilter: nf_tables: remove leftover set_update_list
Pablo Neira Ayuso · Aug 21, 2026 · 1 files
io_uring/query: cap user size passed to copy_struct_to_user
Laxman Acharya Padhya · Aug 21, 2026 · 1 files
octeontx2-pf: fix NULL deref of af_xdp_zc_qidx on rep setup
Suman Ghosh · Aug 21, 2026 · 3 files
erofs: support large folios in inode_share mode
Jingbo Xu · Aug 21, 2026 · 1 files
smb: client: reject a tree connect response whose byte count is too small
Bryam Vargas · Aug 21, 2026 · 2 files
net/iucv: filter frames in afiucv_hs_rcv() by ingress device
Alexandra Winter · Aug 21, 2026 · 1 files
f2fs: fix error handling on device alias check in rename and unlink
Daeho Jeong · Aug 21, 2026 · 1 files
ALSA: hda/realtek: Add quirk for TongFang XxAF5xxx
Eckhart Mohr · Aug 21, 2026 · 1 files
ASoC: tegra: Fix the I2S enable default value
Jon Hunter · Aug 21, 2026 · 2 files
ASoC: tegra: Fix the MIXER enable default value
Jon Hunter · Aug 21, 2026 · 1 files
ASoC: tegra: Sort ADMAIF register defaults
Jon Hunter · Aug 21, 2026 · 1 files
ASoC: tegra: Sort MBDRC register defaults
Jon Hunter · Aug 21, 2026 · 1 files
fuse: Fix the condition to enable over-io-uring
Bernd Schubert · Aug 21, 2026 · 2 files
net/sched: act_ife: Only operate on Ethernet frames
Victor Nogueira · Aug 21, 2026 · 2 files
ASoC: fix unmet dependencies on PPC_BESTCOMM and SND_SOC_AC97_BUS
Julian Braha · Aug 21, 2026 · 3 files
net: mana: Cap MSI-X vectors to the device MSI-X table size
Long Li · Aug 21, 2026 · 1 files
maple_tree: add rcu locking check when LOCKDEP is enabled
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
locking/lockdep: add sequence counter to held_lock
Liam R. Howlett (Oracle) · Aug 21, 2026 · 4 files
maple_tree: add write lock checking with lockdep sequence numbers
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
maple_tree: documentation fix
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: drop dead code from mas_extend_spanning_null()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: drop MAPLE_ALLOC_SLOTS
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: clarify comments on mas_nomem()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: use prefetched value in mas_wr_store_type()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: optimise mas_wr_node_store() when not in rcu mode
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: micro optimisation of mas_wr_store_type()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: add bulk parent set helper
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: catch race in mas_alloc_cyclic()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: document that erase may use GFP_KERNEL for allocations
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: avoid mas_erase() and mtree_erase() failures
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
maple_tree: document erase and allocations better
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: change two GFP flags in tests
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: fix argument name in header
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: avoid extra gap calculation
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: add helper mas_make_walkable()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
MAINTAINERS: update rtc subsystem patchwork location
Alexandre Belloni · Aug 21, 2026 · 1 files
dt-bindings: rtc: renesas,rzn1-rtc: Add RZ/T2H and RZ/N2H support
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Handle EPROBE_DEFER for optional pps interrupt
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Fix weekday underflow when alarm crosses month boundary
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Handle unset alarm weekday in rzn1_rtc_read_alarm
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Fix alarm range check truncation on 32-bit systems
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Disable alarm interrupt before reprogramming alarm registers
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Fix malformed MODULE_AUTHOR string
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: Kconfig: Broaden RTC_DRV_RZN1 dependency to ARCH_RENESAS
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Use pm_runtime_put_sync()
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Replace remove callback with devm_add_action_or_reset()
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Dynamically calculate synchronization delay based on clock rate
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Use temporary variable for struct device
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Consistently use dev_err_probe()
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: use FIELD_PREP/FIELD_GET and GENMASK for register access
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Add OF match data to gate SUBU register access
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Drop trailing comma from OF match table sentinel
Lad Prabhakar · Aug 21, 2026 · 1 files
rtc: rzn1: Add support for Renesas RZ/T2H and RZ/N2H SoCs
Lad Prabhakar · Aug 21, 2026 · 1 files
drm/amd/display: Fix HPD consideration for VGA/LVDS connectors on DCE
Timur Kristóf · Aug 21, 2026 · 1 files
drm/amd/display: Log details when failing to register HPD IRQ
Timur Kristóf · Aug 21, 2026 · 1 files
dma-contiguous: fix truncation of numa_cma / cma_pernuma sizes >= 2G
Alexander Graf · Aug 21, 2026 · 1 files
memcg: move LRU size accounting on reparenting instead of copying it
Shakeel Butt · Aug 22, 2026 · 2 files
net/rds: use wq_has_sleeper() in rds_cong_map_updated()
Allison Henderson · Aug 22, 2026 · 1 files
net: fix a resource leak in copy_net_ns() error handling path
Tetsuo Handa · Aug 22, 2026 · 1 files
rust: num: restrict bool conversion to unsigned Bounded
Younes Akhouayri · Aug 22, 2026 · 1 files
seg6: reset IP6CB after IPv6 decapsulation
Zhiling Zou · Aug 22, 2026 · 1 files
openvswitch: only skb_tx_error() a packet we are about to drop
Norbert Szetei · Aug 22, 2026 · 1 files
net: skbuff: don't skb_tx_error() the source skb in skb_zerocopy()
Norbert Szetei · Aug 22, 2026 · 1 files
net: skbuff: don't touch shared zerocopy state in skb_tx_error()
Norbert Szetei · Aug 22, 2026 · 1 files
powercap: intel_rapl: Fix kernel panic during PMU unbind
Sumeet Pawnikar · Aug 22, 2026 · 1 files
ALSA: usb-audio: Add quirk flags for SMSL USB DAC
Edward Blair · Aug 22, 2026 · 1 files
virtio-net: Ensure that TCP packets don't overflow gso_segs
Alice Mikityanska · Aug 22, 2026 · 1 files
net: Guard for gso_segs overflow in skb_segment
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Wait for netserver to launch
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Lower threshold on debug kernels for big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Lower threshold with csum offload off in big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Fix slow configurations in big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
erofs: skip sufficiently large global buffers when resizing
Nikhil Gurudasani · Aug 22, 2026 · 1 files
Bluetooth: RFCOMM: serialize session teardown
Chengfeng Ye · Aug 22, 2026 · 1 files
Bluetooth: RFCOMM: serialize security confirmation handling
Chengfeng Ye · Aug 22, 2026 · 1 files
vsock/virtio: flush works in dependency order
Chengfeng Ye · Aug 22, 2026 · 1 files
ALSA: doc: usb-audio: Add doc for QUIRK_FLAG_ALWAYS_SET_RATE
Rong Zhang · Aug 22, 2026 · 2 files
ALSA: usb-audio: Demote the severity of sticky GET_CUR
Rong Zhang · Aug 22, 2026 · 1 files
ALSA: usb-audio: Reverse MIXER_GET_CUR_BROKEN as MIXER_GET_CUR_OK
Rong Zhang · Aug 22, 2026 · 4 files
ALSA: usb-audio: Add quirk flags for Logitech PRO X Wireless
Rong Zhang · Aug 22, 2026 · 1 files
net/sched: fq: add overflow bounds to quantum and initial quantum
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: fq_codel: clamp default quantum and mtu
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: sch_codel: clamp default mtu to avoid disabling CoDel
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: fq_pie: clamp default quantum to avoid signed overflow
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: hhf: clamp quantum before hhf_change() to avoid overflow
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: sfq: clamp quantum to avoid signed overflow soft lockup
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/tcp: fix TCP-AO key deletion in VRFs
Rastislav Szabo · Aug 22, 2026 · 1 files
selftests: net: tcp_ao: test VRF-scoped key deletion
Rastislav Szabo · Aug 22, 2026 · 3 files
cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0
Frank Sorenson · Aug 22, 2026 · 1 files
ALSA: usb-audio: Add iD14 MkI to monitor-mix volume quirk
Will Porter · Aug 23, 2026 · 1 files
tls: device: fix out-of-bounds write in tls_append_frag()
Jiayuan Chen · Aug 23, 2026 · 1 files
ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC
Christopher Tolang · Aug 23, 2026 · 1 files
net: phy: air_en8811h: move LED GPIO configuration to config_init
Vitaliy Sochnev · Aug 23, 2026 · 1 files
ALSA: usb-audio: fix OOB write in snd_usbmidi_novation_output()
Marouane El Moufid · Aug 23, 2026 · 1 files
erofs: simplify z_erofs_gbuf_growsize()
Gao Xiang · Aug 23, 2026 · 1 files
coccinelle: remove obsolete pci_free_consistent.cocci
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: alloc_cast: drop removed allocators
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: zalloc-simple: drop the kmem_alloc rules
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: pool_zalloc-simple: drop the pci_pool_alloc rules
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: kfree_mismatch: drop vmalloc_exec
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: atomic_as_refcounter: drop atomic_long_dec_and_lock
Sang-Heon Jeon · Aug 23, 2026 · 1 files
coccinelle: ifnulldev_put: update outdated helper names
Sang-Heon Jeon · Aug 23, 2026 · 1 files
i2c: mux: Fix channel node leak on adapter add failure
Ahmad Byagowi · Aug 23, 2026 · 1 files
sctp: fix NULL deref on untransmitted RECONF completion
Weiming Shi · Aug 23, 2026 · 1 files
net/sched: act_skbmod: fix length calculations and avoid invalid header warnings
Eric Dumazet · Aug 23, 2026 · 1 files
net: core: check skb_frags_readable before uncloning in skb_copy_ubufs
Mina Almasry · Aug 23, 2026 · 1 files
net: core: fix head-page leak in skb_zerocopy
Mina Almasry · Aug 23, 2026 · 1 files
rust: kbuild: disambiguate `zerocopy_derive` for `rusttest`
Miguel Ojeda · Aug 23, 2026 · 1 files
drm/amdkfd: Fix error path at svm_migrate_copy_to_ram
Xiaogang Chen · Aug 23, 2026 · 1 files
drm/amdkfd: Fix the case that vm range is hole at svm_migrate_copy_to_vram
Xiaogang Chen · Aug 23, 2026 · 1 files
Merge tag 'rcu.2026.08.18a' of git://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux
Linus Torvalds · Aug 24, 2026 · 39 files
scsi: MAINTAINERS: Update my email address
Martin K. Petersen (Oracle) · Aug 24, 2026 · 2 files
net/smc: release the internal TCP sock on IPPROTO_SMC socket creation failure
Yifei Chu · Aug 24, 2026 · 1 files
Merge tag 'scftorture.2026.08.18a' of git://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux
Linus Torvalds · Aug 24, 2026 · 1 files
f2fs: use adjusted write range after f2fs_write_checks()
Seongjae Jeong · Aug 24, 2026 · 1 files
Bluetooth: btusb: limit RTL8761B BROKEN_EXT_SCAN quirk to 0bda:a728
Junjie Cao · Aug 24, 2026 · 2 files
net: wangxun: use BIT_ULL() to prevent shift overflow on 32-bit archs
Jiawen Wu · Aug 24, 2026 · 2 files
verification/rvgen: Use .old instead of .bak for kunit backup files
Gabriele Monaco · Aug 24, 2026 · 3 files
sctp: distinguish sequence zero from wildcard in reconf lookup
Jun Yang · Aug 24, 2026 · 1 files
sctp: fix stream->outcnt underflow on duplicate RECONF responses
Jun Yang · Aug 24, 2026 · 2 files
net: stmmac: drop gso_enabled_types and rely on netdev features
Lorenzo Bianconi · Aug 24, 2026 · 2 files
slip: fix use-after-free in sl_sync()
Aleksandr Khromov · Aug 24, 2026 · 1 files
ALSA: aoa: i2sbus: Check IRQ before requesting it
bui duc phuc · Aug 24, 2026 · 1 files
net: ethernet: sun4i-emac: Fix IRQ error handling
bui duc phuc · Aug 24, 2026 · 1 files
ASoC: rt766: add RT766/RT767 VA1 device IDs
Shuming Fan · Aug 24, 2026 · 1 files
locking: Revert switching guards to _irq_{disable,enable}()
Peter Zijlstra · Aug 24, 2026 · 2 files
Bluetooth: do not leak an hci_conn when a second LE connect is rejected
Radek Podgorny · Aug 24, 2026 · 1 files
net/sched: sch_teql: restore skb->dev on the slave failure path
Victor Nogueira · Aug 24, 2026 · 1 files
ALSA: hda/realtek: Add quirk for Lenovo IdeaPad Slim 3 15ABR8
Zhang Heng · Aug 24, 2026 · 1 files
net: stmmac: restore NET_IP_ALIGN in the RX DMA offset
Pascal Kneuper · Aug 24, 2026 · 1 files
ASoC: amd: yc: Add DMI entry for Alienware m18 R1 AMD
Zhang Heng · Aug 24, 2026 · 1 files
net: dsa: mxl862xx: enable assisted learning on CPU port
Edoardo Pinci · Aug 24, 2026 · 1 files
f2fs: fix to avoid potential deadloop in f2fs_fsync_node_pages()
Chao Yu · Aug 24, 2026 · 1 files
ALSA: usb-audio: Skip reading sample rate on M-Audio Venom
Federico Valentín Andrade · Aug 24, 2026 · 1 files
ALSA: usb-audio: Skip mixer creation on M-Audio Venom
Federico Valentín Andrade · Aug 24, 2026 · 1 files
fuse: zero the partial EOF page when extending a file
Jimmy Zuber · Aug 24, 2026 · 2 files
eventfs: Initialize ei->children and ei->list in init_ei()
Deepanshu Kartikey · Aug 24, 2026 · 1 files
Merge tag 'auxdisplay-v7.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-auxdisplay
Linus Torvalds · Aug 24, 2026 · 3 files
Merge tag 'pinctrl-v7.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl
Linus Torvalds · Aug 24, 2026 · 119 files
Merge tag 'i2c-7.3-part2' of git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux
Linus Torvalds · Aug 24, 2026 · 30 files
Merge tag 'mailbox-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox
Linus Torvalds · Aug 24, 2026 · 33 files
Merge tag 'platform-drivers-x86-v7.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86
Linus Torvalds · Aug 24, 2026 · 100 files
Merge tag 'configfs-for-v7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/a.hindborg/linux
Linus Torvalds · Aug 24, 2026 · 1 files
Revert "thermal/core: Use the thermal class pointer as init guard"
Rafael J. Wysocki · Aug 24, 2026 · 1 files
Revert "thermal/core: Allocate the thermal class dynamically"
Rafael J. Wysocki · Aug 24, 2026 · 1 files
Merge tag 'slab-for-7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab
Linus Torvalds · Aug 24, 2026 · 17 files
apparmor: policy_int make sure list heads are initialized before fail path
John Johansen · Aug 24, 2026 · 1 files
Merge tags 'dma-mapping-7.3-2026-08-24' and 'dma-mapping-7.3-2026-08-24-2' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux
Linus Torvalds · Aug 24, 2026 · 25 files
Merge tag 'soundwire-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire
Linus Torvalds · Aug 24, 2026 · 12 files
Merge tag 'phy-for-7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy
Linus Torvalds · Aug 24, 2026 · 66 files
Merge tag 'dmaengine-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine
Linus Torvalds · Aug 24, 2026 · 35 files
ALSA: usb-audio: Complete cleanup after system-resume errors
Will Porter · Aug 24, 2026 · 1 files
Merge tag 'cifs-fixes-7.3-rc1' of https://git.manguebit.org/linux
Linus Torvalds · Aug 25, 2026 · 22 files
f2fs: accurately adjust free_sections during free_segment_range
Daeho Jeong · Aug 25, 2026 · 1 files
tcp: fix AO info use-after-free in tcp_ao_connect_init()
Qing Ming · Aug 25, 2026 · 1 files
net/sched: bound qdisc_pkt_len to prevent qdisc soft lockup
Jamal Hadi Salim · Aug 25, 2026 · 2 files
ASoC: soc-generic-dmaengine: Fix DMA channel request warning
bui duc phuc · Aug 25, 2026 · 1 files
ALSA: hda/realtek: Fix speaker mute LED for HP Laptop 15-fd0039nt
Habil Eren Türker · Aug 25, 2026 · 1 files
ASoC: amd: acp-config: Add HVY-WXX9/M1060 DMI quirk
Mehmet Aysel · Aug 25, 2026 · 1 files
ASoC: amd: acp3x-es83xx: Add HVY-WXX9/M1060 DMI quirk
Mehmet Aysel · Aug 25, 2026 · 1 files
net: fix spurious TX timeout after dev_activate()
Breno Leitao · Aug 25, 2026 · 1 files
selftests/arm64: Print missing MTE TAP headers
Muhammad Usama Anjum · Aug 25, 2026 · 8 files
selftests/arm64: Treat KSM merge_across_nodes as optional
Muhammad Usama Anjum · Aug 25, 2026 · 1 files
selftests/arm64: Fix MTE prctl TAP plan
Muhammad Usama Anjum · Aug 25, 2026 · 1 files
selftests/arm64: Add MTE test config fragment
Muhammad Usama Anjum · Aug 25, 2026 · 1 files
ASoC: dapm: Fix off-by-one check on the second enum channel
HyeongJun An · Aug 25, 2026 · 1 files
ALSA: rawmidi: Another workaround for false-positive mutex lockdep warning
Takashi Iwai · Aug 25, 2026 · 3 files
Merge tag 'fuse-update-7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse
Linus Torvalds · Aug 25, 2026 · 27 files
Merge tag 'ntfs-for-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/ntfs
Linus Torvalds · Aug 25, 2026 · 30 files
Merge tag 'bootconfig-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
Linus Torvalds · Aug 25, 2026 · 12 files
Merge tag 'char-misc-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Linus Torvalds · Aug 25, 2026 · 764 files
tracing: Fix retry exhaustion in simple ring buffer reader swap
Ivan Immanuel Shaji · Aug 25, 2026 · 1 files
ring-buffer: Stop remote reader update when page swap fails
Ivan Immanuel Shaji · Aug 25, 2026 · 1 files
Merge tag 'staging-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Linus Torvalds · Aug 25, 2026 · 99 files
drm/xe/sysctrl: Read mailbox phase bit from hardware
Anoop Vijay · Aug 25, 2026 · 4 files
Merge tag 'usb-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Linus Torvalds · Aug 25, 2026 · 140 files
Merge tag 'tty-7.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
Linus Torvalds · Aug 25, 2026 · 81 files
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Linus Torvalds · Aug 25, 2026 · 318 files
Merge tag 'erofs-for-7.3-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs
Linus Torvalds · Aug 25, 2026 · 5 files
Merge tag 'rproc-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux
Linus Torvalds · Aug 25, 2026 · 58 files
Merge tag 'rpmsg-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux
Linus Torvalds · Aug 25, 2026 · 6 files
net: stmmac: selftests: Pass the IP proto mask in the TC selftest
Maxime Chevallier · Aug 25, 2026 · 1 files
Merge tag 'hwlock-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux
Linus Torvalds · Aug 25, 2026 · 2 files
ASoC: amd: acp-config: force SoundWire probe on HP OmniBook X Flip 16
Sehat Mahde · Aug 25, 2026 · 1 files
ipmi: Fix use-after-free of cmd_rcvr in _ipmi_destroy_user()
Yifei Gao · Aug 25, 2026 · 1 files
bnxt_en: Write doorbell when linearizing skb fails
Joe Damato · Aug 26, 2026 · 1 files
samples/ftrace: Fix kthread_stop() on ERR_PTR in ftrace-direct-modify
Haotian Zhang · Aug 26, 2026 · 1 files
samples/ftrace: Fix kthread_stop() on ERR_PTR in ftrace-direct-multi-modify
Haotian Zhang · Aug 26, 2026 · 1 files
i2c: designware: Enable interrupt mask workaround for HJMC3001
Hongbo Yao · Aug 26, 2026 · 1 files
net: bridge: mcast: fix use-after-free of a master VLAN's multicast context
Norbert Szetei · Aug 26, 2026 · 1 files
net: fec: only stop PTP if it was initialized
bui duc phuc · Aug 26, 2026 · 1 files
slip: remove slip_hangup() to fix use-after-free in slip_receive_buf()
Eric Dumazet · Aug 26, 2026 · 1 files
of/irq: Fix device node refcount leak in of_irq_get_affinity()
Fuad Tabba · Aug 26, 2026 · 1 files
ALSA: hda/conexant: Always enable the headset-mic pin on plugin
Bob Song · Aug 26, 2026 · 1 files
usb: atm: usbatm: fix invalid ci_range initialization
Deepanshu Kartikey · Aug 26, 2026 · 1 files
net: stmmac: selftests: Check multiple MMC counters
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwmac1000: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwmac4: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwxgmac: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: selftests: Account for the UC filter list for filtering tests
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: selftests: Don't test flow control for small rx fifos
Maxime Chevallier · Aug 26, 2026 · 1 files
tcp: fix corruption of urgent data on multi-segment retransmit
Jiayuan Chen · Aug 26, 2026 · 1 files
selftests/net: packetdrill: add tcp_urg_ptr_retransmit
Jiayuan Chen · Aug 26, 2026 · 1 files
net/sched: sch_htb: limit htb_classify inner-class filter hops
Jamal Hadi Salim · Aug 26, 2026 · 1 files
f2fs: support resizable tail section and unify pinned allocation
Daeho Jeong · Aug 26, 2026 · 7 files
ASoC: amd: acp-config: change quirks to cover all ASUS FA401EA variants
Shengyu Qu · Aug 26, 2026 · 1 files
ALSA: control: Don't add invalid kcontrols to LED layer
Takashi Iwai · Aug 27, 2026 · 1 files
Revert "ACPI: scan: Defer device power initialization"
Rafael J. Wysocki · Aug 27, 2026 · 2 files
inet: frags: strip GSO state from fragments before reassembly
Xinyang Ge · Aug 27, 2026 · 1 files
tracing/user_events: Clear copied tracing state before fork duplication
Jérémy Jean · Aug 27, 2026 · 1 files
CREDITS/mailmap: add some info about Darrick J. Wong
Darrick J. Wong · Aug 28, 2026 · 2 files
coccinelle: ifnulldev_put: update error message
Julia Lawall · Aug 30, 2026 · 1 files
Linux 7.3-rc1
Linus Torvalds · Aug 30, 2026 · 1 files