← Back to archive

Daily update · Aug 25–28, 2026

Linux mainline update: AppArmor security fixes, swap performance, and broad SoC clock support

A busy cycle lands critical AppArmor and IPsec hardening, batched swap I/O, MGLRU improvements, new hardware support, and dozens of stability fixes across networking and power management.

In brief

This update brings a large batch of security fixes—most notably multiple AppArmor vulnerabilities including use-after-free in credential handling, integer overflow in policy unpacking, and a user namespace confinement escape. The XFRM/IPsec subsystem received fixes for out-of-bounds writes, use-after-free, and deadlock conditions. On the performance side, batched swap I/O for block devices and zswap writeback improvements promise better throughput under memory pressure, while MGLRU gains better executable folio promotion and reduced lock contention. New hardware support spans clock controllers for Amlogic A9, Rockchip RV1106, ESWIN EIC7700, UltraRISC DP1000, Cix Sky1, and several Qualcomm SoCs, plus LED drivers and thermal sensors. Bluetooth sees important fixes for RFCOMM security and TP-Link UB500 firmware loops. NFS gains UNCACHEABLE_FILE_DATA support and flexfiles loosely-coupled data server compatibility.

Security & Hardening

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.

3f4ae5fab613465946d3c5609f1e40193eef08c2f7c8d4b1

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.

44c98fd082ea759c185d0bbdca0583c24661f5afdff569a0

Memory Management

Batched swap I/O for block devices with 2x writeout clustering

The swap I/O path was refactored to batch multiple folios into a single bio for block-based swap, extending the swap_iocb mechanism previously used only for filesystem-backed swap. Kernel build workloads showed 2x clustering for writeout and 1.2x for swap-in. Synchronous swap devices like zram revert to single-folio writes to avoid regression.

Why it matters: Systems using block-device swap should see improved throughput under memory pressure with fewer individual I/O submissions and better bio merging.

a8efc69a65fb8f29aa226f823c5194eb2e64

MGLRU promotes executable folios and reduces lock contention

MGLRU now promotes mapped executable folios after first usage, matching classical LRU behavior and reducing IO thrashing. LRU lock contention was reduced by deriving scan-balance cost from vmstats instead of acquiring lru_lock at multiple sites. A bug undercounting young large folios during look-around scanning and a bug mishandling unevictable folios in sort_folio were fixed.

Why it matters: MGLRU workloads retain executable code in memory more reliably, improving performance on memory-pressured systems. Large multi-core machines benefit from reduced lock contention during reclaim.

0ee06ee38aeda69797fb3645508537753b5cf7e698e326b2

zswap batch writeback and reduced shrinker lock contention

shrink_memcg() now writes back up to SWAP_CLUSTER_MAX pages per node traversal instead of a single entry. zswap_shrinker_count() uses ratelimited mem_cgroup_flush_stats() instead of synchronous flush, eliminating severe global cgroup rstat lock contention on large multi-NUMA machines. A bug where the global shrinker broke entirely when memory cgroup support is disabled was fixed.

Why it matters: Under heavy memory pressure, zswap keeps up with refaults more effectively. Large systems (e.g., 96-core AMD EPYC) with zswap see significantly reduced lock contention during kswapd reclaim.

6f34b4126b8b1f2b4b28aafedc8458f43fe9

zram: larger disk sizes, big-endian slot lock fix, and recompression mismatch

zram switched from unsigned int to unsigned long for page index calculations, removing limitations on maximum disk size. On 64-bit big-endian systems with ZRAM_TRACK_ENTRY_ACTIME, the slot lock bit landed in the wrong half of the word, causing lock loss or permanent lock appearance. A zs_lookup_class_index mismatch caused wasted zram recompression with no memory savings.

Why it matters: zram users can configure significantly larger devices. Big-endian PowerPC configurations avoid data corruption or deadlocks. Recompression users avoid wasted CPU cycles on ineffective recompression.

184bf187c45ba8b5875741d4f7bf5cd5b5f2

OOM-killed processes with large swap pools exit promptly instead of hanging

At Meta, OOM-killed jobs with large zswap pools were stuck in the exit path for hours because dying tasks kept triggering reclaim and OOM killer invocations with nothing left to reclaim. The fix bypasses reclaim and OOM for dying tasks once the oom_reaper has finished processing them.

Why it matters: OOM-killed processes with large swap pools will exit promptly instead of potentially hanging for hours, improving system reliability under memory pressure.

6b0d1083364f

Networking

NFS: delegation leak fix, pNFS layout recall, and UNCACHEABLE_FILE_DATA support

Three error paths in nfs_inode_set_delegation() returned without sending DELEGRETURN, leaking server-side delegation state. pNFS now honors the clora_changed flag on layout recall, only cancelling in-flight I/O when the layout is actually changing. NFSv4.2 UNCACHEABLE_FILE_DATA attribute support was added, with files marked uncacheable automatically opened O_DIRECT. Flexfiles now supports loosely coupled data servers per RFC 8435.

Why it matters: NFS clients avoid spurious revocations and performance degradation from leaked delegations. pNFS clients avoid abandoning writes whose data already reached storage. Environments using flexfiles with loosely coupled data servers gain compatibility.

220af23d8639aceaa5991bdf86ff1842795bb4dd7f81592292a885576fbc

TCP: MSS from configured MTU, urgent data corruption, and divide-by-zero fixes

TCP now advertises MSS from the configured interface or route MTU rather than a learned PMTU, improving throughput on asymmetric paths like DSR load balancers. A guard missing from the retransmit path caused GSO-segmented retransmits to copy the same urg_ptr onto every segment, corrupting urgent data. Route-derived advmss values could drop below 1, causing divide-by-zero in tcp_select_initial_window().

Why it matters: Asymmetric path throughput improves. TCP urgent/OOB data applications receive correct urgent pointers after packet loss. Routes with unusually small MTU no longer crash the kernel.

2640e6419594ce2b807f42ed870a9e42ecc6

qdisc: soft lockup from huge MTU overflow and size-table amplification fixed

Several qdiscs (fq, fq_codel, codel, fq_pie, hhf, sfq) computed quantum or MTU without clamping, so enormous MTU caused signed integer overflow, infinite dequeue loops, and soft lockups. A crafted size table could amplify qdisc_pkt_len to ~1 GiB, causing deficit schedulers to spin billions of times. HTB classifier infinite loops from cyclic inner-class filters were bounded with a hop counter.

Why it matters: CAP_NET_ADMIN users or misconfigured devices can no longer hang the networking stack via qdisc configuration. CoDel-based AQM is no longer silently disabled by overflow.

709f34f7c28d8f735d64382d729c4896ab82

TLS device offload out-of-bounds write via splice

A missing frag-count check in the MSG_MORE early-break path of tls_push_data() allowed repeated tiny splice() calls to overflow the frags array in tls_record_info, causing an out-of-bounds write.

Why it matters: Systems with TLS offload-capable NICs could be crashed or corrupted by a local attacker using splice with SPLICE_F_MORE.

b17cf742eaad

Clock & Hardware Support

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.

c86814e70390a7f16660af39ae794aa6e88d

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.

13b10571cc3552aef653c3d0

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

Qualcomm Platform Fixes

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.

11b170abe4d3d69f0c2b8d2986b23609d5e1eea55fc694e1

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.

38d06956f60617784427df92c5339edc6abb

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.

9c4cee964e0c6b0044bc75b0

Virtualization & Platform

Hyper-V: confidential computing netvsc support, old host support removed, interrupt fixes

New vmbus_alloc_buffer()/vmbus_free_buffer() APIs allocate send/receive buffers as physically-contiguous decrypted chunks for CoCo VMs without confidential VMBus. Support for Hyper-V 2012/2012R2 and Windows 8/8.1 guests was removed across VMBus, storvsc, hv_sock, netvsc, and synthetic timer. Hyper-V PCI MSI interrupts lost during CPU hotplug and nested root partition vector conflicts were fixed.

Why it matters: Confidential computing VMs gain netvsc networking. Users on very old Hyper-V hosts must stay on older kernels. Hyper-V guests avoid lost interrupts during CPU hotplug and nested configurations.

73fe42af955aa9a05e801eff86bdd16e8f39769bcbee07a4

Apple MacBook Pro USB CDC-NCM and Razer Blade Pro 17 lid switch quirks

Some MacBook Pro models (e.g., M1 Max) connected over USB4/Thunderbolt without PCIe tunneling present themselves with product ID 0x1902 instead of 0x1905, using the same zero-endpoint CDC-NCM descriptor layout that needs a quirk. The Razer Blade Pro 17 (2020) lid switch reported close but could miss the matching open after resume, causing systemd-logind to suspend roughly every 35 seconds.

Why it matters: MacBook Pro users connecting via USB4-only Thunderbolt cables can now use the CDC-NCM network interface. Razer Blade Pro 17 (2020) users no longer experience repeated suspend loops after resume.

746fc0787f61415125669c2d

ACPI: battery property race fix and deferred device power initialization

acpi_battery_get_property() called acpi_battery_get_state() without a lock, allowing concurrent _BST evaluations that could confuse the AML interpreter. Device power state was initialized before checking enumeration readiness; if enumeration was deferred, extra references to power resources prevented them from being turned off in D3. An ACPI PFR update stack buffer overflow from firmware-supplied lengths was also fixed.

Why it matters: Laptops with affected ACPI battery firmware see fewer spurious sysfs read races. Devices with deferred ACPI enumeration properly power down when idle. A malicious ACPI table can no longer cause a stack buffer overflow.

9e409f1dff78dc948f8b384aced45be0073a

Source commits893 entries +
7965b1f3940a

apparmor: make MEDIATES_AF_UNIX its own fn

John Johansen · Jun 17, 2018 · 3 files

4f0cafcb2850

apparmor: refactor network sock mediation in preparation for inet mediation

John Johansen · Oct 9, 2021 · 6 files

812aa0aa67d5

apparmor: refactor xattr attachment, to take the file path

John Johansen · Jun 25, 2023 · 1 files

17b5758bf35c

apparmor: Initial support for compressed policies

Maxime Bélair · Feb 1, 2024 · 5 files

c37e23f84a36

apparmor: fix race condition in label replacement

John Johansen · Apr 19, 2024 · 1 files

97dd3f51bf0c

apparmor: add audit mode to provide a mechanism to silence complain messages

John Johansen · Aug 4, 2025 · 4 files

379fc3b26b57

reset: eyeq: Add EyeQ7H compatibles

Benoît Monin · Aug 21, 2025 · 1 files

111f35a67307

clk: eyeq: Prefix the PLL registers with the PLL type

Benoît Monin · Sep 3, 2025 · 1 files

c74d7d80218e

dt-bindings: soc: mobileye: Add EyeQ7H OLB

Benoît Monin · Sep 25, 2025 · 2 files

46dda4d9750e

clk: fixed-factor: Rework initialization with parent clocks

Benoît Monin · Oct 20, 2025 · 1 files

257a34a028ae

clk: fixed-factor: Export __clk_hw_register_fixed_factor()

Benoît Monin · Oct 20, 2025 · 2 files

a922374afc36

clk: eyeq: Introduce a generic clock type

Benoît Monin · Dec 10, 2025 · 1 files

5e80c4b4f4ae

clk: eyeq: Convert clocks declaration to eqc_clock

Benoît Monin · Dec 10, 2025 · 1 files

0fe7490b034c

clk: eyeq: Drop PLL, dividers, and fixed factors structs

Benoît Monin · Dec 10, 2025 · 1 files

44af1b974949

clk: eyeq: Add EyeQ7H compatibles

Benoît Monin · Dec 11, 2025 · 1 files

a7bc8ccbd279

apparmor: move netfilter functions next to the LSM network operations

John Johansen · Jan 8, 2026 · 1 files

27908a4356f0

apparmor: move sock_rcv_skb() next to inet_conn_request

John Johansen · Feb 9, 2026 · 1 files

622ec01756ee

apparmor: fix net.h and policy.h circular include pattern

Ryan Lee · Feb 12, 2026 · 5 files

37077e4cfad4

apparmor: make include headers self-contained

Ryan Lee · Feb 13, 2026 · 7 files

13b10571cc35

clk: rockchip: rk3588: Don't change PLL rates when setting dclk_vop2_src

Heiko Stuebner · Mar 4, 2026 · 1 files

778dd30867ad

clk: rockchip: rk3588: Allow VP2 the same sourcing options as other VPs

Heiko Stuebner · Mar 4, 2026 · 1 files

44c98fd082ea

Bluetooth: RFCOMM: Validate MTU in rfcomm_apply_pn() to prevent infinite loop

Hyunwoo Kim · Mar 19, 2026 · 1 files

bb23acfd05f0

net: ionic: Fetch RCQ sign bit from firmware

Abhijit Gangurde · Apr 17, 2026 · 1 files

0661ee1d650f

clk: qcom: gdsc: Add custom disable callback for GX GDSC

Jagadeesh Kona · Apr 27, 2026 · 2 files

badf361c00c8

clk: qcom: gxclkctl: Use custom disable callback for gx_gdsc

Taniya Das · Apr 27, 2026 · 1 files

a5da6c5697a5

clk: qcom: common: ensure runtime PM suspend completes on probe

Taniya Das · Apr 27, 2026 · 1 files

1c99638642c2

clk: qcom: gxclkctl: Remove GX/GMxC rail votes to align with IFPC

Taniya Das · Apr 27, 2026 · 1 files

9bcc081252d8

MAINTAINERS: Add Intel LPSS section to follow the changes

Andy Shevchenko · Apr 29, 2026 · 1 files

0f83e6003f92

dt-bindings: mfd: qcom,tcsr: Add compatible for Shikra

Komal Bajaj · May 1, 2026 · 1 files

5f2db1ce2012

clk: imx: scu: drop redundant init.ops variable assignment

Brian Masney · May 6, 2026 · 1 files

862e0773f130

clk: add clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 2 files

7ea6726c91b5

clk: hisilicon: hi3660-stub: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

af137873866b

clk: imx: scu: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

42334774a5c8

clk: qcom: rpm: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

bc88bae2529b

clk: qcom: rpmh: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

972ff9a25102

clk: qcom: smd-rpm: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

917079a285e7

clk: renesas: rzg2l-cpg: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

df5c96aa570e

clk: rp1: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

d0f1d7ed5fa9

clk: samsung: acpm: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

6dae6cf18bc3

clk: scpi: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

f934c2c10e74

clk: sprd: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

a621e3dfd4cb

phy: mediatek: phy-mtk-hdmi-mt2701: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

b37966e116cb

pmdomain: mediatek: airoha: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

e3a9ad35af67

pmdomain: mediatek: mtk-mfg: use clk_determine_rate_noop()

Brian Masney · May 6, 2026 · 1 files

48d5f26f1d5c

clk: hisilicon: allow COMPILE_TEST builds

Rosen Penev · May 9, 2026 · 2 files

08c2f7c8d4b1

apparmor: fix unconfined user namespace restriction forced stack

John Johansen · May 9, 2026 · 1 files

dda61023f976

apparmor: fix alternate loaders ability to load compressed policy

John Johansen · May 10, 2026 · 1 files

a8036f459154

clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller

Min zhang · May 12, 2026 · 1 files

ef9f74ee4ccc

clk: add kernel docs for the core flags

Brian Masney · May 12, 2026 · 1 files

d131daafa99f

clk: add kernel docs for struct clk_core

Brian Masney · May 12, 2026 · 1 files

378ca82af05a

docs: clk: include some identifiers to keep documentation up to date

Brian Masney · May 12, 2026 · 1 files

4750122e2f6b

clk: test: convert constants to use HZ_PER_MHZ

Brian Masney · May 12, 2026 · 1 files

003d9ba31a5d

clk: add missing function short descriptions for kernel-doc

Randy Dunlap · May 12, 2026 · 1 files

ab171a6afd4e

clk: qcom: gcc-sm6115: Set HW_CTRL_TRIGGER for video GDSC

Dmitry Baryshkov · May 15, 2026 · 1 files

f5964864856c

clk: si5341: Drop unused i2c driver_data

Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 1 files

cae51b908edc

clk: Use named initializers for arrays of i2c_device_data

Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 11 files

0bf68e8dcb84

clk: stm32: add missing bitfield.h header

Rosen Penev · May 19, 2026 · 2 files

7ddc04d1bd08

leds: trigger: netdev: Extend speeds up to 100G

Mike Marciniszyn (Meta) · May 20, 2026 · 2 files

b3a2223a7805

clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation

Joey Lu · May 21, 2026 · 1 files

26de5aed72d8

clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc

Joey Lu · May 21, 2026 · 1 files

e1311954cb60

clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic

Joey Lu · May 21, 2026 · 1 files

f63aecdb45e9

clk: mediatek: mt8196: Select REGMAP_MMIO for vlpckgen

Akari Tsuyukusa · May 22, 2026 · 1 files

32c9625638c2

tmpfs/ramfs: let memfd_create() work on nommu

Daniel Palmer · May 23, 2026 · 1 files

c67b3c631a1b

dt-bindings: clock: renesas: Add audio clock inputs for RZ/V2H family

John Madieu · May 25, 2026 · 1 files

7774d5b240e9

clk: renesas: r9a09g047: Add audio clock and reset support

John Madieu · May 25, 2026 · 1 files

9f275f2ee9ca

clk: moxart: remove unused variables, fix refcount leak

Alexander A. Klimov · May 26, 2026 · 1 files

4f04b40ae7e2

clk: Use named initializers for platform_device_id arrays

Uwe Kleine-König (The Capable Hub) · May 28, 2026 · 4 files

2019a2a7268f

dt-bindings: leds: backlight: Document the SY7758 6-channel High Efficiency LED Driver

Neil Armstrong · May 29, 2026 · 1 files

110d67699a43

backlight: Add SY7758 6-channel High Efficiency LED Driver support

KancyJoe · May 29, 2026 · 3 files

483932d86b00

clk: bcm: kona: Stop defaulting to parent index 0 on error

Yu-Chun Lin · May 31, 2026 · 1 files

1f0391aea883

netfilter: tproxy: use DEBUG_NET_WARN_ON_ONCE for protocol fallbacks

Fernando Fernandez Mancera · Jun 1, 2026 · 2 files

9b4ab1f3fed8

netfilter: conncount: use DEBUG_NET_WARN_ON_ONCE on reaching count limit

Fernando Fernandez Mancera · Jun 1, 2026 · 1 files

d4d0d335e8d3

clk: zynq: handle kasprintf() failure in periph_clk registration

William Theesfeld · Jun 1, 2026 · 1 files

ff29670735e0

clk: tegra: Support unique names for multi-socket platforms

Jon Hunter · Jun 2, 2026 · 1 files

d69f0c2b8d29

clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status

Herman van Hazendonk · Jun 2, 2026 · 1 files

eea55fc694e1

clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains

Herman van Hazendonk · Jun 2, 2026 · 1 files

86b23609d5e1

clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister()

Herman van Hazendonk · Jun 2, 2026 · 1 files

50ca555d6ae8

clk: divider: Add KUnit tests for clk_divider_bestdiv() ULONG_MAX handling

Lad Prabhakar · Jun 2, 2026 · 4 files

e129a400d8a7

clk: divider: Fix clk_divider_bestdiv() returning min rate for large rate requests

Lad Prabhakar · Jun 2, 2026 · 2 files

a1fa2f528c4b

clk: renesas: r9a08g046: Add clock and reset entries for SDHI

Biju Das · Jun 3, 2026 · 1 files

468238ced6c3

clk: imx: Add audio PLL debugfs for K-divider control

Jacky Bai · Jun 4, 2026 · 3 files

b63c613a140f

clk: renesas: r9a08g046: Add clock and reset entries for GE3D

Biju Das · Jun 4, 2026 · 1 files

fc8c21a2b524

dt-bindings: clock: Add ESWIN eic7700 HSP clock and reset generator

Xuyang Dong · Jun 5, 2026 · 4 files

8d92085fd79a

clk: eswin: Add eic7700 HSP clock driver

Xuyang Dong · Jun 5, 2026 · 3 files

b37fe0ee3691

reset: eswin: Add eic7700 HSP reset driver

Xuyang Dong · Jun 5, 2026 · 3 files

782cca1ac6f4

leds: pwm-multicolor: Introduce default-intensity property

Jonas Rebmann · Jun 5, 2026 · 1 files

22109b7329f9

clk: eswin: Add CLK_IGNORE_UNUSED to NoC clock

Xuyang Dong · Jun 5, 2026 · 1 files

4adf593c6fc5

clk: clocking-wizard: fix integer overflow in rate calculation

Pavel Löbl · Jun 5, 2026 · 1 files

91d00e377f65

drivers/clk/clk_test: Use strscpy() to copy the test description

David Laight · Jun 6, 2026 · 1 files

fd22370226a0

SUNRPC: check rpc_sockaddr2uaddr() return value in rpcb_register_inet4/6

Weiming Shi · Jun 7, 2026 · 1 files

9cb19714779f

clk: kirkwood: use kzalloc_flex

Rosen Penev · Jun 8, 2026 · 1 files

b87549a9bbda

mfd: si476x: Modernize GPIO handling

Linus Walleij · Jun 8, 2026 · 5 files

4d8ba321a786

mfd: cs42l43: Use new SoundWire enumeration helper

Charles Keepax · Jun 8, 2026 · 4 files

20469662a552

clk: qcom: smd-rpm: Add missing RF_CLK1/RF_CLK2 clocks support on Agatti

Imran Shaik · Jun 8, 2026 · 1 files

01cf3e27824d

clk: qcom: Add Global clock controller support on Qualcomm Shikra SoC

Imran Shaik · Jun 8, 2026 · 3 files

39268dbd7bc7

dt-bindings: mfd: syscon: Disallow simple-bus with syscon

Krzysztof Kozlowski · Jun 8, 2026 · 1 files

6165900f3922

dt-bindings: mfd: syscon: Drop custom select for older dtschema

Krzysztof Kozlowski · Jun 8, 2026 · 2 files

d6ae9f9b9bd3

platform/chrome: cros_ec_proto: Introduce cros_ec_read_features helper

Andrei Kuchynski · Jun 8, 2026 · 2 files

5855464dff6a

mfd: cros_ec: Read EC features during probe to catch transfer error

Andrei Kuchynski · Jun 8, 2026 · 1 files

c17b056c136d

dt-bindings: mfd: qcom,spmi-pmic: Document PMG1110

Fenglin Wu · Jun 10, 2026 · 1 files

f3d8db39d91e

clk: qcom: gcc-ipq5424: drop the CLK_IGNORE_UNUSED flag

Kathiravan Thirumoorthy · Jun 10, 2026 · 1 files

9b5e4809806c

maple_tree: remove undocumented CONFIG_MAPLE_RCU_DISABLED macro

Ethan Nelson-Moore · Jun 10, 2026 · 1 files

da3a98c94175

mfd: ipaq-micro: Fix out-of-bounds stack read in ipaq_micro_str

Dmitry Torokhov · Jun 10, 2026 · 1 files

22709abff9d0

mm: fix CONFIG_STACK_GROWSUP typo in tools/testing/vma/include/dup.h

Ethan Nelson-Moore · Jun 11, 2026 · 1 files

33930840b5f0

sunrpc: xprtsock: annotate shared socket callbacks with READ_ONCE/WRITE_ONCE

Runyu Xiao · Jun 11, 2026 · 1 files

3756bf05c963

mfd: axp20x: Preserve other control bits when powering off

Oleg Proshkin · Jun 11, 2026 · 1 files

ae794aa6e88d

dt-bindings: clock: Add spread spectrum definition

Peng Fan · Jun 12, 2026 · 1 files

c86814e70390

clk: Introduce clk_hw_set_spread_spectrum

Peng Fan · Jun 12, 2026 · 2 files

a7f16660af39

clk: conf: Support assigned-clock-sscs

Peng Fan · Jun 12, 2026 · 1 files

7d98de6ffdab

clk: Add KUnit tests for assigned-clock-sscs

Peng Fan · Jun 12, 2026 · 17 files

a73edd3ed8d3

clk: scmi: Introduce common header for SCMI clock interface

Peng Fan · Jun 12, 2026 · 2 files

77369b1e6a37

clk: scmi: Add i.MX95 OEM extension support for SCMI clock driver

Peng Fan · Jun 12, 2026 · 4 files

03221f26ed7c

clk: at91: Read "reg" with helper

Rob Herring (Arm) · Jun 12, 2026 · 1 files

da3abd044524

clk: at91: Read "reg" with helper

Rob Herring (Arm) · Jun 12, 2026 · 1 files

d5083527908a

dt-bindings: clock: exynos990: Add CLK_GOUT_PERIS_TMU_SUB_PCLK

Denzeel Oliva · Jun 13, 2026 · 1 files

b7d6221aa44f

clk: samsung: exynos990: Add PERIS TMU_SUB_PCLK gate

Denzeel Oliva · Jun 13, 2026 · 1 files

a016e8978147

clk: samsung: exynos990: Fix PERIS gate clock parents

Denzeel Oliva · Jun 13, 2026 · 1 files

6ebc88313c4a

dt-bindings: mfd: 88pm886: Allow vbus regulator

Duje Mihanović · Jun 13, 2026 · 1 files

824b2c8473f1

mfd: 88pm886: Initialize the battery page

Duje Mihanović · Jun 13, 2026 · 2 files

0a6643b1a5ee

clk: renesas: cpg-mssr: Implement dedicated MSTP delay logic for RZ/T2H LCDC and RTC

Lad Prabhakar · Jun 15, 2026 · 1 files

c4a16f90797e

dt-bindings: clock: renesas,r9a09g077/87: Add LCDC_CLKD clock ID

Lad Prabhakar · Jun 15, 2026 · 2 files

2b005b458f6e

dt-bindings: clock: renesas,r9a09g077/87: Add PCLKRTC clock ID

Lad Prabhakar · Jun 15, 2026 · 2 files

182b03cbe80f

clk: renesas: r9a09g077: Add RTC clocks

Lad Prabhakar · Jun 15, 2026 · 1 files

2bbc0f34ef0c

clk: renesas: r9a08g046: Add USB2.0 clock and reset entries

Biju Das · Jun 16, 2026 · 1 files

90d9f2988d00

mfd: mt6397-core: Add mt6323 EFUSE support

Roman Vivchar · Jun 17, 2026 · 1 files

7399034fd786

clk: qcom: gcc-glymur: Move EVA clocks to critical clock list

Taniya Das · Jun 17, 2026 · 1 files

e291ec812dec

clk: qcom: Add EVA clock controller driver for Glymur SoC

Taniya Das · Jun 17, 2026 · 3 files

220af23d8639

NFS: Return a delegation the client fails to record

Chuck Lever · Jun 17, 2026 · 1 files

804bac4a2654

clk: canaan: Clear rate fields before reprogramming dividers

David Carlier · Jun 18, 2026 · 1 files

d4873b918134

clk: clk-lmk04832: Simplify device abstraction

Uwe Kleine-König (The Capable Hub) · Jun 18, 2026 · 1 files

4f4230ff5d0a

clk: renesas: rzv2h-cpg: Use per-SoC PLL reference frequency for calculations

Lad Prabhakar · Jun 18, 2026 · 2 files

73c360100dec

clk: renesas: rzv2h-cpg: Extract PLL calculation helpers into shared library

Lad Prabhakar · Jun 18, 2026 · 5 files

6745ca5d9504

clk: renesas: r9a09g077: Add LCDC and PLL3 clock support for RZ/T2H display pipeline

Lad Prabhakar · Jun 18, 2026 · 2 files

b47afb5a7c02

MAINTAINERS: Add a mailing list entry to MFD

Lee Jones · Jun 19, 2026 · 1 files

83f98a48f22c

dt-bindings: thermal: qcom-tsens: Document the Maili Temperature Sensor

Haritha S K · Jun 19, 2026 · 1 files

b8bc38bcecb7

mfd: db8500-prcmu: Fold dbx500 header into db8500

Linus Walleij · Jun 19, 2026 · 12 files

10a5a70c0227

leds: lp5860: Fix a potential double-unlock

Christophe JAILLET · Jun 20, 2026 · 1 files

f647a2266289

leds: lp5860-spi: Fix an error handling path

Christophe JAILLET · Jun 20, 2026 · 1 files

61461050da42

nfs: replace atomic bitops sequence with clear_and_wake_up_bit helper

Arnaud Bonnet · Jun 22, 2026 · 1 files

187bfc974eef

nfs: refactor pNFS functions using clear_and_wake_up_bit

Arnaud Bonnet · Jun 22, 2026 · 1 files

d425596035b3

dt-bindings: clock: Add Amlogic A9 AO clock controller

Jian Hu · Jun 23, 2026 · 2 files

a1b4c3a63a7e

clk: amlogic: Add A9 AO clock controller driver

Jian Hu · Jun 23, 2026 · 3 files

e25d8d35e8cb

clk: versaclock7: Fix APLL clock leak on probe failure

Myeonghun Pak · Jun 23, 2026 · 1 files

b3044f9e8f13

clk: renesas: r9a09g047: Add LVDS clocks and resets

Tommaso Merciai · Jun 23, 2026 · 1 files

91fb46439543

dt-bindings: clock: renesas,versaclock7: Update maintainer

Biju Das · Jun 23, 2026 · 2 files

628b6fee9fca

clk: meson: align gxbb_32k_clk_sel number of parents with actual count

Martin Blumenstingl · Jun 23, 2026 · 1 files

d05c2007b3d8

NFSv4: remove callback IDR entry on client allocation failure

Ruoyu Wang · Jun 24, 2026 · 3 files

51be18310cd8

dt-bindings: clock: ast2700: add PECI clock

Ryan Chen · Jun 24, 2026 · 1 files

5ffa9d308c7a

clk: aspeed: add AST2700 PECI clock

Ryan Chen · Jun 24, 2026 · 1 files

935ad6242c47

clk: mediatek: mt6735: Unregister PLLs on probe failure

Myeonghun Pak · Jun 24, 2026 · 1 files

97255eedd690

clk: qcom: camcc-glymur: Add camera clock controller driver

Jagadeesh Kona · Jun 24, 2026 · 3 files

c056f817e420

pnfs/blocklayout: Fix device leaks on parse failure

ZhangGuoDong · Jun 25, 2026 · 1 files

cf561283254d

clk: tegra: set up proper EMC clock implementation for Tegra114

Svyatoslav Ryhel · Jun 25, 2026 · 1 files

46e31d69a547

clk: tegra: support 48MHz clock for pll_p_out1

Dmitry Osipenko · Jun 25, 2026 · 1 files

ba0f097418c7

pNFS: report clora_changed in the cb_layoutrecall_file tracepoint

Benjamin Coddington · Jun 25, 2026 · 2 files

aceaa5991bdf

pNFS: honor clora_changed when recalling a layout

Benjamin Coddington · Jun 25, 2026 · 3 files

4a013b0e881e

NFSv4/flexfiles: report cancelled I/O as a layout error

Benjamin Coddington · Jun 25, 2026 · 1 files

dd04ad1cdabc

thermal/drivers/rcar: Fix error checking in probe()

Dan Carpenter · Jun 26, 2026 · 1 files

7b2a8eb5c7b5

clk: samsung: use kzalloc_flex

Rosen Penev · Jun 29, 2026 · 2 files

421ccea8f872

clk: samsung: cpu: use kzalloc_flex

Rosen Penev · Jun 29, 2026 · 1 files

6d32ae640369

clk: samsung: pll: use kzalloc_flex

Rosen Penev · Jun 29, 2026 · 1 files

d85028afefad

clk: clocking-wizard: Program PLL CP/RES and lock parameters on reconfig

Shubhrajyoti Datta · Jun 29, 2026 · 1 files

fd0e3e4edea6

clk: mediatek: mt8135: Fix inverted gate control for devapc_ck

Akari Tsuyukusa · Jun 29, 2026 · 1 files

22d9257f0891

clk: qcom: Return expected ENOMEM error on dynamic allocation failure

Vladimir Zapolskiy · Jun 29, 2026 · 1 files

d230991493b5

mm: mempolicy: fix automatic numa balancing for shmem

Johannes Weiner · Jun 29, 2026 · 1 files

11b170abe4d3

clk: qcom: gcc-qcs8300: Use retention for PCIe power domains

Loic Poulain · Jun 29, 2026 · 1 files

d8638610e0c9

clk: qcom: gcc-qcs8300: Use retention for USB power domains

Loic Poulain · Jun 29, 2026 · 1 files

006ba909c240

clk: clocking-wizard: fix clock difference detection

Colin Foster · Jun 29, 2026 · 1 files

9329714414d1

clk: clocking-wizard: optimize clock search

Colin Foster · Jun 29, 2026 · 1 files

54ed94b709e0

clk: clocking-wizard: remove 20kHz restriction

Colin Foster · Jun 29, 2026 · 1 files

1af45bf33b3c

apparmor: refactor network socket mediation to support compatibility

John Johansen · Jun 29, 2026 · 1 files

9475ebe12932

clk: lan966x: Add MCHP_LAN966X_PCI dependency

Herve Codina · Jun 30, 2026 · 1 files

7a588b62679c

clk: spacemit: k3: fix parent clock of UFS aclk

Yixun Lan · Jun 30, 2026 · 1 files

4fc567e1bacd

dt-bindings: soc: spacemit: k3: Add clock ID for UFS refclk

Yixun Lan · Jun 30, 2026 · 1 files

8abba78dc0ee

clk: spacemit: k3: Add UFS refclk clock

Yixun Lan · Jun 30, 2026 · 1 files

89ac6aa752ec

apparmor: push inet mediation into profile callbacks, and improve auditing

John Johansen · Jun 30, 2026 · 2 files

cbe31d5ce498

thermal/drivers/armada: Use bitfield and bitmask macros

Bryan B. Lima · Jul 1, 2026 · 1 files

ecd4e67a28dd

apparmor: reserve mediation class for packet mediation

John Johansen · Jul 1, 2026 · 2 files

027dc284d5b3

clk: qcom: Don't use all caps for Glymur GPUCC

Luca Weiss · Jul 1, 2026 · 1 files

33972977d632

dt-bindings: clock: Add Amlogic A9 peripherals clock controller

Jian Hu · Jul 1, 2026 · 2 files

6f809ca8104b

clk: amlogic: Add A9 peripherals clock controller driver

Jian Hu · Jul 1, 2026 · 3 files

1bc94d09e1a9

apparmor: fix error handling for copy_from_user in policy_update

John Johansen · Jul 1, 2026 · 1 files

d1828369fafb

dt-bindings: clock: si544: add si549 compatible

Pavel Löbl · Jul 1, 2026 · 1 files

bdba63b59897

clk: si544: add support for si549

Pavel Löbl · Jul 1, 2026 · 2 files

abf98c166e41

mfd: sprd-sc27xx: Add SC2730 regulator cell

Otto Pflüger · Jul 1, 2026 · 1 files

0f2da45318c2

dt-bindings: mfd: mediatek,mt8195-scpsys: Add support for MT8189 SoC

Louis-Alexis Eyraud · Jul 1, 2026 · 1 files

644ad84870ab

mm: nommu: point to the write iterator upon split_vma

Hajime Tazaki · Jul 2, 2026 · 1 files

59075fb8b788

NFS: fix folio dereference before NULL check in nfs_inode_remove_request()

Jiangshan Yi · Jul 2, 2026 · 1 files

251621813fb4

thermal/drivers/airoha: Fix copy paste error on clamp_t low temp

Christian Marangi · Jul 2, 2026 · 1 files

6791265d6095

thermal/drivers/airoha: Fix copy paste error for sen internal

Christian Marangi · Jul 2, 2026 · 1 files

a3137f1aa44c

thermal/drivers/airoha: Convert to regmap API

Christian Marangi · Jul 2, 2026 · 1 files

62f6a66189b1

thermal/drivers/airoha: Generalize probe function

Christian Marangi · Jul 2, 2026 · 1 files

86741c912862

thermal/drivers/airoha: Generalize get_thermal_ADC and set_mux function

Christian Marangi · Jul 2, 2026 · 1 files

fff997256c65

dt-bindings: arm: airoha: Add the chip-scu node for AN7583 SoC

Christian Marangi · Jul 2, 2026 · 1 files

b20d9782756a

thermal/drivers/airoha: Add support for AN7583 Thermal Sensor

Christian Marangi · Jul 2, 2026 · 1 files

e9929b4b61dc

mfd: Drop unused assignment of spi_device_id driver data

Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files

02c54e90785c

mfd: Initialize spi_device_id arrays using member names

Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 8 files

d0a1023960c8

mfd: Unify style of spi_device_id arrays

Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files

d9ef4ed45866

dt-bindings: clock: qcom: Add Hawi video clock controller

Lin Li · Jul 2, 2026 · 2 files

edbd5d323183

clk: qcom: Add support for VideoCC driver for Hawi

Lin Li · Jul 2, 2026 · 3 files

1f2b4b28aafe

mm/zswap: use ratelimited stats flush in zswap_shrinker_count()

Yunzhao Li · Jul 2, 2026 · 1 files

9c019a8cb95d

leds: st1202: Stop pattern sequence before reprogramming

Manuel Fombuena · Jul 2, 2026 · 1 files

fd2529ba8fb4

leds: st1202: Validate pattern input before stopping the sequence

Manuel Fombuena · Jul 2, 2026 · 1 files

d32f8bdc2b41

leds: st1202: Fix pattern duration prescaler and pattern_clear skip marker

Manuel Fombuena · Jul 2, 2026 · 2 files

d2ca0e2b6d64

leds: st1202: Set all pattern PWM slots to full after clearing pattern

Manuel Fombuena · Jul 2, 2026 · 1 files

08645ab95768

batman-adv: bla: avoid CRC corruption due to parallel claim add

Sven Eckelmann · Jul 2, 2026 · 1 files

dcc31246aaf0

leds: st1202: Fix spurious pattern sequence start in setup

Manuel Fombuena · Jul 2, 2026 · 1 files

7cbe470366bd

leds: st1202: Fix brightness having no effect while pattern mode is active

Manuel Fombuena · Jul 2, 2026 · 1 files

0767335233a8

leds: st1202: Disable channel when brightness is set to zero

Manuel Fombuena · Jul 2, 2026 · 1 files

cf197514bdfd

leds: st1202: Validate LED reg property against channel count

Manuel Fombuena · Jul 2, 2026 · 1 files

96fa4d69958c

leds: st1202: Correct and extend hw_pattern documentation

Manuel Fombuena · Jul 2, 2026 · 1 files

65a38a28a0b0

leds: pca9532: Fix inverted GPIO output polarity

Cosmo Chou · Jul 3, 2026 · 1 files

4af10c020e29

dt-bindings: clock: qcom,a53pll: Add IPQ5210 compatible

Varadarajan Narayanan · Jul 3, 2026 · 1 files

546e0bc2aa20

clk: qcom: apss-ipq-pll: Add IPQ5210 support

Varadarajan Narayanan · Jul 3, 2026 · 1 files

3265f1998ae9

NFS: Verify symlink inode before caching target

ZhangGuoDong · Jul 3, 2026 · 1 files

2ce505b437e9

clk: qcom: Restrict IPQ5424, IPQ6018,IPQ9574, QCM2290 and others to ARM64

Krzysztof Kozlowski · Jul 3, 2026 · 1 files

9904402cf417

clk: qcom: Restrict A7PLL and IPQ4019 GCC to ARM

Krzysztof Kozlowski · Jul 3, 2026 · 1 files

5c38f9b7df77

clk: qcom: Make important ARM64 drivers default

Krzysztof Kozlowski · Jul 3, 2026 · 1 files

d643934c275d

clk: qcom: Make important ARM32 drivers default

Krzysztof Kozlowski · Jul 3, 2026 · 1 files

6b150572bb76

clk: qcom: Add defaults for desired arm64 drivers

Krzysztof Kozlowski · Jul 3, 2026 · 1 files

733fbd0d1198

mfd: viperboard: Remove redundant NULL check before kfree()

Mohammad Shahid · Jul 3, 2026 · 1 files

096ab64a0e69

clk: mediatek: mt6735-vdecsys: add missing MODULE_DEVICE_TABLE()

Pengpeng Hou · Jul 4, 2026 · 1 files

36cf8d279ff9

clk: mediatek: mt6735-vencsys: add missing MODULE_DEVICE_TABLE()

Pengpeng Hou · Jul 4, 2026 · 1 files

e89485455ac4

clk: imx: imx8qxp-lpcg: add missing MODULE_DEVICE_TABLE()

Pengpeng Hou · Jul 4, 2026 · 1 files

68c03755577a

NFS: Fix delayed delegation return list handling

Guangshuo Li · Jul 4, 2026 · 1 files

5d9e3bf34fec

xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full

Xiang Mei · Jul 4, 2026 · 1 files

cd21fdcbef3f

clk: imx: imx8qxp: add missing MODULE_DEVICE_TABLE()

Pengpeng Hou · Jul 5, 2026 · 1 files

23454c4635b9

clk: mediatek: remove unneeded 'fast_io' parameter in regmap_config

Wolfram Sang · Jul 5, 2026 · 1 files

b08e97bee0e1

thermal: Remove unneeded 'fast_io' parameter in regmap_config

Wolfram Sang · Jul 5, 2026 · 2 files

485d3f5760d8

apparmor: use SEND_SIG_NOINFO instead of NULL in aa_audit()

Oleg Nesterov · Jul 5, 2026 · 1 files

3fb968b400bd

clk: qcom: camcc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers

Krzysztof Kozlowski · Jul 5, 2026 · 1 files

e5b2050ff760

clk: qcom: videocc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers

Krzysztof Kozlowski · Jul 5, 2026 · 1 files

89f3502ff687

batman-adv: bla: prevent CRC corruptions after claim flush

Sven Eckelmann · Jul 5, 2026 · 1 files

4b3f5baf67de

MAINTAINERS: Update my email address for the AW99706 backlight driver

Junjie Cao · Jul 6, 2026 · 2 files

7b9f8fe9c9e0

dt-bindings: rtc: sun6i: no clock-output-names on h616/r329

Jerome Brunet · Jul 6, 2026 · 1 files

38d6b194a21c

dt-bindings: rtc: sun6i: add sun60i-a733 support

Jerome Brunet · Jul 6, 2026 · 2 files

81f4ddc9f7e0

clk: sunxi-ng: fix ccu probe clock unregister on error

Jerome Brunet · Jul 6, 2026 · 1 files

192c6220e14d

clk: sunxi-ng: sun6i-rtc: clean up DT usage

Jerome Brunet · Jul 6, 2026 · 1 files

d2fcd82ca07d

clk: sunxi-ng: sun6i-rtc: Add feature bit for IOSC calibration

Junhui Liu · Jul 6, 2026 · 2 files

c52b5090bf1e

clk: sunxi-ng: mux: remove unneeded export

Jerome Brunet · Jul 6, 2026 · 1 files

c5339edc6abb

clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk

Stephan Gerhold · Jul 6, 2026 · 1 files

fc611445b021

clk: qcom: gcc-msm8939: Fix enable_reg for gcc_blsp1_sleep_clk

Stephan Gerhold · Jul 6, 2026 · 1 files

944d0fb38cff

clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk

Stephan Gerhold · Jul 6, 2026 · 1 files

ca7e6cc30cde

clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk

Stephan Gerhold · Jul 6, 2026 · 1 files

c99bc8e83848

clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset

Stephan Gerhold · Jul 6, 2026 · 1 files

38d06956f606

clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src

Stephan Gerhold · Jul 6, 2026 · 1 files

17784427df92

clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src

Stephan Gerhold · Jul 6, 2026 · 1 files

e111ddda092a

clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks

Stephan Gerhold · Jul 6, 2026 · 1 files

1df0fa742c5a

dt-bindings: clock: qcom: gcc-mdm9607: Drop SYSTEM_NOC_BFDCD_CLK_SRC

Stephan Gerhold · Jul 6, 2026 · 1 files

5c117709e7e1

dt-bindings: clock: qcom: gcc-mdm9607: Add missing "clocks" property

Stephan Gerhold · Jul 6, 2026 · 1 files

75ae68fcbddc

dt-bindings: clock: qcom: gcc-mdm9607: Use proper address in example

Stephan Gerhold · Jul 6, 2026 · 1 files

d4d2fcb3e3e9

clk: qcom: gcc-mdm9607: Drop redundant register update during probe

Stephan Gerhold · Jul 6, 2026 · 1 files

da729ddd4a1b

NFS/localio: issue IO inline when not in a memory-reclaim context

Mike Snitzer · Jul 6, 2026 · 3 files

b10c63dcf27a

NFS/localio: remove dead FLUSH_SYNC handling from nfs_local_commit

Mike Snitzer · Jul 6, 2026 · 3 files

3e05a62a97b1

NFS/localio: issue commit inline when not in a memory-reclaim context

Mike Snitzer · Jul 6, 2026 · 1 files

e6de568d3eda

batman-adv: dat: atomically update mac addresses

Sven Eckelmann · Jul 6, 2026 · 2 files

0121afa52cdb

batman-adv: dat: avoid unaligned fault in IP extraction

Sven Eckelmann · Jul 6, 2026 · 1 files

d7a9410cd921

dt-bindings: mfd: st,stmpe: Fix typo st,stmpe601 (should be st,stmpe610)

Frank Li · Jul 6, 2026 · 1 files

1b86b4ef3abf

mfd: rohm: Factor out power button registration

Dmitry Torokhov · Jul 6, 2026 · 7 files

b2ee00d0bf4c

clk: thead: allow COMPILE_TEST builds

Rosen Penev · Jul 7, 2026 · 1 files

0674e2cd7f40

mfd: ucb1x00: Register software node for GPIO controller

Dmitry Torokhov · Jul 7, 2026 · 2 files

cbff6a720d94

mfd: ucb1x00: Convert Assabet gpio-keys to use software nodes

Dmitry Torokhov · Jul 7, 2026 · 1 files

932a8cf6abb2

sunrpc: fix use-after-free in __rpc_clnt_handle_event and __rpc_clnt_remove_pipedir

Luxiao Xu · Jul 7, 2026 · 1 files

dd7ddd057fcd

dt-bindings: clock: qcom: Add IPQ9650 REFGEN clock IDs

Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files

e27e02fff418

clk: qcom: ipq9650: Add clocks for the REFGEN block

Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files

1eba458a54d0

mm/kconfig: drop redundant memory hotplug dependencies

Kaitao Cheng · Jul 7, 2026 · 1 files

8cb1ce7aa0e8

NFSv4: pin the superblock for active state owners

Jia Zhu · Jul 7, 2026 · 1 files

627666f7c9cd

dt-bindings: leds: bcm6358: Convert to DT schema

Ninad Naik · Jul 7, 2026 · 2 files

2b03ebbf8d5e

NFSv4/flexfiles: fix NULL dereference for NFSv4.0 data servers

Jeuk Kim · Jul 8, 2026 · 2 files

92a885576fbc

NFSv4/flexfiles: support loosely coupled data servers

Jeuk Kim · Jul 8, 2026 · 8 files

584dfca970a2

clk: en7523: reset PCIE HB on init for AN7581

Christian Marangi · Jul 8, 2026 · 1 files

f54ac9a7096b

dt-bindings: clock: qcom,sm8450-camcc: Drop qcom,sc8280xp-camcc from "if" block

Krzysztof Kozlowski · Jul 8, 2026 · 1 files

9b9139d88c1a

dt-bindings: clock: qcom,sm8450-camcc: Require required-opps on SM8750

Krzysztof Kozlowski · Jul 8, 2026 · 1 files

ecb42d97c8e1

dt-bindings: clock: qcom,sm8450-video: Require required-opps on X1E80100

Krzysztof Kozlowski · Jul 8, 2026 · 1 files

2e68a2188d5b

mfd: cs42l43: Remove redundant NULL checks on SoundWire

Charles Keepax · Jul 8, 2026 · 1 files

f726279f5eab

clk: tegra: tegra124-emc: put EMC node on register failure

Guangshuo Li · Jul 8, 2026 · 1 files

a764e2a61759

dt-bindings: mfd: Convert OMAP USB TLL to DT schema

Eduard Bostina · Jul 8, 2026 · 2 files

a3027963217c

mfd: cs42l43: Tidy up formatting on sdw_device_id table

Charles Keepax · Jul 8, 2026 · 1 files

1d581ab2348c

alloc_tag: add ioctl to /proc/allocinfo

Suren Baghdasaryan · Jul 8, 2026 · 7 files

5732a4e4c18a

alloc_tag: add ioctl filters to /proc/allocinfo

Abhishek Bapat · Jul 8, 2026 · 2 files

6f6769ea88f8

alloc_tag: add size-based filtering to ioctl

Abhishek Bapat · Jul 8, 2026 · 2 files

33588e0b81df

alloc_tag: add accuracy based filtering to ioctl

Abhishek Bapat · Jul 8, 2026 · 2 files

2f252a7a6c90

kselftest: alloc_tag: add kselftest for ioctl interface

Abhishek Bapat · Jul 8, 2026 · 4 files

923690d80993

kselftest: alloc_tag: extend the allocinfo ioctl kselftest

Abhishek Bapat · Jul 8, 2026 · 1 files

499b4cb6710f

clk: qcom: camcc-sc8280xp: unregister CAMCC_GDSC_CLK

Brian Masney · Jul 8, 2026 · 1 files

3c28d9d0b7e0

dt-bindings: leds: Add LTC3220 18 channel LED Driver

Edelweise Escala · Jul 9, 2026 · 2 files

07e028d93a57

leds: ltc3220: Add Support for LTC3220 18 channel LED Driver

Edelweise Escala · Jul 9, 2026 · 4 files

092836fedd82

mm: standardize printing for pgtable entries

David Hildenbrand (Arm) · Jul 9, 2026 · 1 files

1ae94ed761a4

mfd: mt6397-core: Add mt6323 AUXADC support

Roman Vivchar · Jul 9, 2026 · 1 files

540d91480bcb

clk: mediatek: pllfh: Fix IO remapping leak in register_pllfhs error path

Louis-Alexis Eyraud · Jul 9, 2026 · 1 files

2df26b8663b6

clk: r9a08g045: Add clocks and resets for CAN-FD

Claudiu Beznea · Jul 9, 2026 · 1 files

7aedb59b8099

batman-adv: fix TX priority extraction for BATADV_FORW_MCAST

Sven Eckelmann · Jul 9, 2026 · 1 files

82bf207f48eb

batman-adv: mcast: ensure unshared skb for multicast packets

Sven Eckelmann · Jul 9, 2026 · 1 files

6a30a59e2660

batman-adv: mcast: linearize skbuff for packet generation

Sven Eckelmann · Jul 9, 2026 · 1 files

ce6fc0411324

dt-bindings: backlight: 88pm860x: Add missing bracket

Manuel Ebner · Jul 10, 2026 · 1 files

011d8de504bc

clk: eswin: Zero-initialize stack-allocated clk_init_data

Kostas Damaskinakis · Jul 10, 2026 · 1 files

412ce33fadd9

dt-bindings: mfd: qcom,tcsr: Add compatible for Hawi and Maili SoCs

Mukesh Ojha · Jul 10, 2026 · 1 files

98c5c7b0d426

leds: gpio: Make legacy gpiolib interface optional

Arnd Bergmann · Jul 10, 2026 · 2 files

ccda84fcbf3a

clk: palmas: Manage external-control prepare with devm

Myeonghun Pak · Jul 11, 2026 · 1 files

10f9dc786a1b

clk: palmas: Use devm_of_clk_add_hw_provider()

Myeonghun Pak · Jul 11, 2026 · 1 files

4d8da7e3dc0d

dt-bindings: leds: Document "gpio" trigger

Samuel Holland · Jul 11, 2026 · 1 files

cd958e48bc4b

dt-bindings: vendor-prefixes: Add techvision

Samuel Holland · Jul 11, 2026 · 1 files

0b4268ac77fa

mm/kconfig: drop redundant dependency wrappers

Kaitao Cheng · Jul 12, 2026 · 1 files

c431011ab65f

apparmor: replace decompress_zstd() prototype with its entity

Tetsuo Handa · Jul 12, 2026 · 1 files

21697720ff43

esp: do not unref managed frag pages in esp_ssg_unref()

Maher Azzouzi · Jul 12, 2026 · 2 files

2ebd1cb772b0

dt-bindings: leds: Add default-intensity property

Jonas Rebmann · Jul 13, 2026 · 2 files

a8efc69a65fb

shmem: provide a shmem_write_folio wrapper

Christoph Hellwig · Jul 13, 2026 · 5 files

8f29aa226f82

mm/swap: introduce struct swap_io_ctx

Christoph Hellwig · Jul 13, 2026 · 7 files

dda8fb68b590

mm/swap: also use struct swap_iocb for block I/O

Christoph Hellwig · Jul 13, 2026 · 3 files

4e915b16ded2

mm/swap: remove count_swpout_vm_event

Christoph Hellwig · Jul 13, 2026 · 1 files

563597895e65

mm/swap: use swap_ops to register swap device's methods

Christoph Hellwig · Jul 13, 2026 · 4 files

0df74c115879

mm/swap: remove SWP_FS_OPS

Christoph Hellwig · Jul 13, 2026 · 9 files

c01e6df60e7b

mm/vmstat: add NRSWP{IN,OUT} counters

Christoph Hellwig · Jul 13, 2026 · 3 files

fb496eb06230

mm: kmemleak: confirm suspected leaks with a second scan

Catalin Marinas · Jul 13, 2026 · 1 files

e776db8e7101

mm: kmemleak: report leaks only after N consecutive unreferenced scans

Breno Leitao · Jul 13, 2026 · 2 files

70a964bafe55

mm: kmemleak: factor leak confirmation into a helper

Breno Leitao · Jul 13, 2026 · 1 files

8f07855f579a

selftests: mm: test kmemleak's N-consecutive-scan leak confirmation

Breno Leitao · Jul 13, 2026 · 2 files

2970c2db8ab3

mfd: cgbc: Fix teardown ordering in cgbc_remove()

Thomas Richard · Jul 13, 2026 · 1 files

b6e08e0ad4cf

leds: bcm63138: Use %pe to print pinctrl error instead of %ld

Ninad Naik · Jul 13, 2026 · 1 files

0cad34fd9530

clk: mmp: pxa1908-apbc: Remove unneeded semicolon

Chen Ni · Jul 14, 2026 · 1 files

a9954d40de71

clk: qcom: camcc-glymur: Add const qualifier for driver_data & CBCRs list

Jagadeesh Kona · Jul 14, 2026 · 1 files

2a97ca25f7d5

clk: mmp: pxa1908-apbcp: Remove unneeded semicolon

Chen Ni · Jul 14, 2026 · 1 files

18e9d14cbac3

clk/x86: pmc_atom: add kasprintf return value check

longlong yan · Jul 14, 2026 · 1 files

d3045184699d

clk: document that clk_get_parent() returns NULL

Dan Carpenter · Jul 14, 2026 · 1 files

2092f5b38f88

NFS: fix delegation_hash_table leak when nfs4_server_common_setup() fails

Nate Prodromou · Jul 14, 2026 · 1 files

8d6b6c05b8e3

leds: pca9532: Fix phantom device registration on missing hardware

Cosmo Chou · Jul 15, 2026 · 1 files

d22a37e9fba7

dt-bindings: clock: qcom: glymur-gcc: Add missing CX power domain

Abel Vesa · Jul 15, 2026 · 1 files

8d4f342369d0

clk: qcom: gcc-glymur: Enable runtime PM

Abel Vesa · Jul 15, 2026 · 1 files

b1eb3de64d02

mfd: si476x-i2c: Get rid of duplicate NULL checks

Andy Shevchenko · Jul 15, 2026 · 1 files

9cbf780428ca

thermal/drivers/spacemit/k1: Add shutdown action and reorder registration order

Pei Xiao · Jul 16, 2026 · 1 files

3a8a7d597b07

clk: qcom: nord: use BRANCH_HALT_SKIP for PHY pipe clocks

Taniya Das · Jul 16, 2026 · 2 files

a5c2859ffe9c

clk: qcom: negcc-nord: use clk_regmap_phy_mux for USB3 pipe clock srcs

Taniya Das · Jul 16, 2026 · 1 files

205986f9e81d

clk: qcom: Drop inclusions of <linux/mod_devicetable.h>

Uwe Kleine-König (The Capable Hub) · Jul 16, 2026 · 4 files

deb232e88487

xfrm: espintcp: fix UAF during close

Sabrina Dubroca · Jul 16, 2026 · 1 files

55c16e15ff9f

thermal/drivers: Remove redundant error messages on IRQ request failure

Pan Chuang · Jul 17, 2026 · 24 files

58410321dbdc

dt-bindings: clock: qcom: Add Qualcomm Maili video clock controller

Jagadeesh Kona · Jul 17, 2026 · 2 files

778149217dc0

clk: qcom: Add support for videocc driver on Qualcomm Maili SoC

Jagadeesh Kona · Jul 17, 2026 · 3 files

b090524f775b

mm/swap: fix swap_cluster_lock() !CONFIG_SWAP stub signature mismatch

Hongfu Li · Jul 17, 2026 · 1 files

cf59a8742581

dt-bindings: soc: spacemit: k3: add i2s_sysclk, i2s_bclk_factor and i2s1_sysclk_src IDs

Troy Mitchell · Jul 17, 2026 · 1 files

e6b17a690c2f

clk: spacemit: k3: fix i2s clock topology

Troy Mitchell · Jul 17, 2026 · 2 files

8a7d4b1924d2

clk: spacemit: k3: fix missing /2 factor in i2s sysclk dividers

Troy Mitchell · Jul 17, 2026 · 1 files

d97a98f434af

mfd: viperboard: Fix native fields type in structures as little-endian

Mikhail Lukianchikov · Jul 17, 2026 · 1 files

4c7fc129db06

lockd: fix NULL dereference on lockowner allocation failure

Shuangpeng Bai · Jul 17, 2026 · 1 files

3693ff45ec25

apparmor: leverage audit_log_n_untrustedstring() when possible

Paul Moore · Jul 17, 2026 · 1 files

e1d7c5ac1c24

xfrm: drop ESP-in-TCP packets with no ingress device

Zhiling Zou · Jul 18, 2026 · 1 files

70ef527b483f

dt-bindings: clock: qcom,qcm2290-dispcc: Add missing power-domains property

Imran Shaik · Jul 18, 2026 · 1 files

b4ae34a7e661

clk: qcom: gcc-qcm2290: Keep the critical clocks always-on from probe

Imran Shaik · Jul 18, 2026 · 1 files

b8b5b26aa10e

clk: qcom: dispcc-qcm2290: Move to the latest common qcom_cc_probe() model

Imran Shaik · Jul 18, 2026 · 1 files

11345cbf17ca

clk: qcom: dispcc-qcm2290: Enable runtime PM support

Imran Shaik · Jul 18, 2026 · 1 files

6b0044bc75b0

clk: qcom: qcm2290: Set POLL_CFG_GDSCR flag for DISPCC and GPUCC GDSCs

Imran Shaik · Jul 18, 2026 · 2 files

899dfd90229e

clk: qcom: qcm2290: Add RETAIN_FF_ENABLE flag for DISPCC and GPUCC GDSCs

Imran Shaik · Jul 18, 2026 · 2 files

08cfbfd81dd6

clk: qcom: qcm2290: Update DISPCC and GPUCC GDSC *wait_val values

Imran Shaik · Jul 18, 2026 · 2 files

1b2e1f5a37dd

clk: qcom: gpucc-qcm2290: Drop pm_clk handling

Imran Shaik · Jul 18, 2026 · 1 files

1b4599bc20e9

clk: qcom: gpucc-qcm2290: Move to the latest common qcom_cc_probe() model

Imran Shaik · Jul 18, 2026 · 1 files

7274ea68d2b4

clk: qcom: gpucc-qcm2290: Keep the critical clocks always-on from probe

Imran Shaik · Jul 18, 2026 · 1 files

ab46b5fb668b

clk: qcom: gpucc-qcm2290: Park RCG's clk source at XO during disable

Imran Shaik · Jul 18, 2026 · 1 files

99c28d653aac

dt-bindings: clock: qcom: Add Qualcomm Shikra Display clock controller

Imran Shaik · Jul 18, 2026 · 1 files

46d50405c969

dt-bindings: clock: qcom: Add Qualcomm Shikra GPU clock controller

Imran Shaik · Jul 18, 2026 · 1 files

c7d44572a85a

clk: qcom: Add support for Qualcomm GPU Clock Controller on Shikra

Imran Shaik · Jul 18, 2026 · 1 files

5859fa79c7d8

backlight: ktd2801: Fix unmet dependency on GPIOLIB

Julian Braha · Jul 19, 2026 · 1 files

0a29aa605286

mfd: macsmc: Fix key count endianness annotation

Sven Peter · Jul 19, 2026 · 1 files

438623bb9350

clk: stm32: add missing bitfield.h header

Rosen Penev · Jul 19, 2026 · 2 files

745dfe874d5b

clk: stm32: allow STM32MP COMPILE_TEST builds

Rosen Penev · Jul 19, 2026 · 1 files

3194c0f961a4

clk: hisilicon: hi3660-stub: use devm_platform_ioremap_resource

Rosen Penev · Jul 19, 2026 · 1 files

f600fbdb2093

clk: composite: Export devm composite pdata helper

Jia Wang · Jul 20, 2026 · 1 files

e1d57ac7fe53

dt-bindings: clock: ultrarisc: Add DP1000 Clock Controller

Jia Wang · Jul 20, 2026 · 3 files

3948a36be42b

clk: ultrarisc: Add DP1000 clock driver

Jia Wang · Jul 20, 2026 · 8 files

68b78ad1e353

thermal/drivers/spacemit: Validate clamped trip thresholds

surendra · Jul 20, 2026 · 1 files

3bf07ce8058b

mm: vmscan: convert folio_referenced() to use vma_flags_t

Baolin Wang · Jul 20, 2026 · 3 files

b64727d26478

mm: vmscan: add a helper to identify file-backed executable folios

Baolin Wang · Jul 20, 2026 · 1 files

0ee06ee38aed

mm: mglru: promote mapped executable folios after first usage

Baolin Wang · Jul 20, 2026 · 1 files

83feedd9d83c

mfd: sm501: Fix potential memory leaks during remove

Abdun Nihaal · Jul 20, 2026 · 1 files

08ea045e0b82

mfd: iqs62x: Reject zero-length firmware records

Pengpeng Hou · Jul 20, 2026 · 1 files

0be718b5451b

mfd: rave-sp: validate received frame payload lengths

Pengpeng Hou · Jul 20, 2026 · 1 files

3541a2b06ecd

mm/kmemleak: report RCU-tasks quiescent states during the scan

Breno Leitao · Jul 20, 2026 · 1 files

62e39381b780

mm: use proper PTE accessor in move_ptes()

Alexander Gordeev · Jul 20, 2026 · 1 files

cb0ec27efac2

tools/lib/thermal: Fix misplaced extern "C" closing brace

Andreas Haufler · Jul 21, 2026 · 1 files

5f0d4a794391

dt-bindings: thermal: mediatek: Make resets optional for MT8196

AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files

6b73e78462ad

thermal/drivers/mediatek/lvts_thermal: Make reset optional for MT8196

AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files

763fe700b7c5

xfrm: avoid lock inversion in nat keepalive work

Zihan Xi · Jul 21, 2026 · 1 files

60276a9469a1

clk: qcom: gcc-shikra: Add additional frequencies for EMAC RGMII clocks

Imran Shaik · Jul 22, 2026 · 1 files

f9cbc4bddb63

dt-bindings: clock: qcom: Move glymur TCSR to own binding

Qiang Yu · Jul 22, 2026 · 2 files

0998cf30b0e0

dt-bindings: clock: qcom,glymur-tcsr: Add mahua support

Qiang Yu · Jul 22, 2026 · 1 files

22c70e573200

clk: qcom: Add generic clkref_en support

Qiang Yu · Jul 22, 2026 · 3 files

0753091abc4b

clk: qcom: tcsrcc-glymur: Add regulator supplies and migrate to clk_ref helper

Qiang Yu · Jul 22, 2026 · 1 files

0f87ded5f839

clk: qcom: tcsrcc-glymur: Add Mahua QREF regulator support

Qiang Yu · Jul 22, 2026 · 1 files

0bf739c3cd22

backlight: qcom-wled: Remove redundant dev_err()

Pan Chuang · Jul 22, 2026 · 1 files

2aed51fc58d9

xfrm: Fix skb double-free in xfrm_dev_direct_output()

Sanghyun Park · Jul 22, 2026 · 1 files

fcbf9964b67a

thermal/drivers/qoriq: Disable clock on resume failure

Can Peng · Jul 22, 2026 · 1 files

bcc6d886e500

thermal/drivers/imx: Disable clock on runtime resume failure

Can Peng · Jul 22, 2026 · 1 files

8d128c932bce

batman-adv: bla: fix freeing of claims on meshif deletion

Sven Eckelmann · Jul 22, 2026 · 1 files

5d901d7d1002

dt-bindings: thermal: Add Qualcomm MBG thermal monitor support

Satya Priya Kakitapalli · Jul 22, 2026 · 2 files

c3dce117333c

thermal/drivers/qcom: Add support for Qualcomm MBG thermal monitoring

Satya Priya Kakitapalli · Jul 22, 2026 · 3 files

7680af9184f1

iio: adc: qcom-spmi-adc5-gen3: Remove an unnecessary print

Jishnu Prakash · Jul 22, 2026 · 1 files

b39f9b4b21df

iio: adc: qcom-spmi-adc5-gen3: Share SDAM0 IRQ with ADC_TM auxiliary driver

Jishnu Prakash · Jul 22, 2026 · 2 files

948ee3a74f35

thermal/drivers/qcom: add support for PMIC5 Gen3 ADC thermal monitoring

Jishnu Prakash · Jul 22, 2026 · 2 files

9c4cee964e0c

clk: qcom: gcc-qcm2290: don't park QUP RCGs upon registration

Dmitry Baryshkov · Jul 22, 2026 · 1 files

468e458ffde9

NFSv4: Fix incorrect argument passed to nfs4_delete_lease() in nfs4_add_lease()

Zhansong Gao · Jul 22, 2026 · 1 files

1b7c8fe294a6

memcg: move mem_cgroup_swappiness and vm_swappiness to mm/swap.h

Ridong Chen · Jul 23, 2026 · 4 files

8a905195850d

mm: vmscan: fix node reclaim ignoring swappiness parameter

Ridong Chen · Jul 23, 2026 · 1 files

3c5194eb2e64

mm/swap: revert to single-folio writes for synchronous swap devices

Christoph Hellwig · Jul 23, 2026 · 1 files

52d85ca90c7d

mm/swap: add a new swap_ops.h header to allow for pluggable swap ops

Christoph Hellwig · Jul 23, 2026 · 9 files

22779ae8175a

mm/swap: move swap_ops into file systems for file system-based swap

Christoph Hellwig · Jul 23, 2026 · 10 files

48ceae43be9f

dt-bindings: soc: cix: add sky1 audss cru controller

Joakim Zhang · Jul 23, 2026 · 3 files

3730fe6032d9

clk: cix: add sky1 audss clock controller

Joakim Zhang · Jul 23, 2026 · 5 files

b5fa9d3beec4

reset: cix: add sky1 audss auxiliary reset driver

Joakim Zhang · Jul 23, 2026 · 3 files

a2b1c025cf28

arm64: dts: cix: sky1: add audss cru

Joakim Zhang · Jul 23, 2026 · 1 files

7bad4bda74dc

xfrm: ah6: validate routing header segments_left

Asim Viladi Oglu Manizada · Jul 23, 2026 · 1 files

4bcba49984ff

clk: sunxi-ng: mux: fix determine helper rate propagation

Jerome Brunet · Jul 23, 2026 · 1 files

7bbbfcd4e495

clk: sunxi-ng: div: add read-only operation support

Jerome Brunet · Jul 23, 2026 · 2 files

176184e7f799

clk: sunxi-ng: sun6i-rtc: split main oscillator div and gate

Jerome Brunet · Jul 23, 2026 · 2 files

0a136efc0fc2

clk: sunxi-ng: sun6i-rtc: add a733 support

Jerome Brunet · Jul 23, 2026 · 2 files

95231a92250e

dt-bindings: leds: backlight: Convert TPS65217 to DT schema

Eduard Bostina · Jul 23, 2026 · 3 files

52aef653c3d0

clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs

Alexey Charkov · Jul 23, 2026 · 1 files

581478883477

clk: rockchip: Fractional PLL coefficient on RK3588/RK3576 is two's complement

Alexey Charkov · Jul 23, 2026 · 4 files

b698927accb1

clk: Add devm_clk_bulk_get_enable()

Suraj Gupta · Jul 23, 2026 · 3 files

50507d6fc801

apparmor: switch website link to https

Baruch Siach · Jul 23, 2026 · 1 files

4e324f1bc003

clk: remove conditional return with no effect

Sang-Heon Jeon · Jul 23, 2026 · 2 files

e6850b69b674

dt-bindings: clock: airoha: Add additional reset for PCIe PERSTOUT

Christian Marangi · Jul 23, 2026 · 1 files

6712f48eb3a1

clk: en7523: add support for dedicated PCIe PERSTOUT reset

Christian Marangi · Jul 23, 2026 · 1 files

ef6f39403997

apparmor: make table entry count last enum for static tables

John Johansen · Jul 23, 2026 · 3 files

1bd606110942

apparmor: fix error debug output in fn_label_build

John Johansen · Jul 23, 2026 · 1 files

a3ed5d43f786

apparmor: mark static tables and structs as read only

John Johansen · Jul 23, 2026 · 8 files

9477820c63cb

mm: memcg: stop reclaim when a limit update is superseded

Guopeng Zhang · Jul 24, 2026 · 1 files

ef6ca9c4df02

clk: mvebu: clean-up simple provider misuse of the consumer API

Jerome Brunet · Jul 24, 2026 · 1 files

470bd66370ec

clk: qcom: clean-up simple provider misuse of the consumer API

Jerome Brunet · Jul 24, 2026 · 4 files

227d02395205

clk: st: clean-up simple provider misuse of the consumer API

Jerome Brunet · Jul 24, 2026 · 1 files

3ed463b69be8

clk: tegra: clean-up simple provider misuse of the consumer API

Jerome Brunet · Jul 24, 2026 · 1 files

6c3a4d971503

clk: qcom: gcc-nord: mark PCIe link clocks as critical

Taniya Das · Jul 24, 2026 · 1 files

936e98ef12f7

clk: qcom: negcc-nord: keep GPU2 CFG clock enabled via critical CBCR

Taniya Das · Jul 24, 2026 · 1 files

d6c34c2929f5

dt-bindings: clock: qcom: Document Nord display clock controller

Taniya Das · Jul 24, 2026 · 2 files

9dcc782e2082

clk: qcom: Add Nord display clock controller support

Taniya Das · Jul 24, 2026 · 4 files

0c51d1ad27cb

dt-bindings: clock: qcom: Document Nord GPU clock controllers

Taniya Das · Jul 24, 2026 · 3 files

47f2e6e1cee1

clk: qcom: gpucc: Add Nord graphics clock controller support

Taniya Das · Jul 24, 2026 · 4 files

0c569e22020f

thermal/drivers/qcom-spmi-adc-tm5: Drop IIO_VAL_INT check in adc_tm5_get_temp

Rakesh Kota · Jul 24, 2026 · 1 files

6ef116708c63

dt-bindings: clock: qcom: Add Qualcomm Shikra AudioCoreCC and AudioCoreCSR

Imran Shaik · Jul 24, 2026 · 3 files

3e7b00804665

clk: qcom: Add Audio Core clock controller support on Qualcomm Shikra SoC

Imran Shaik · Jul 24, 2026 · 3 files

942901eeda93

leds: gpio: Clear error pointers for skipped LEDs

Steve Dunnagan · Jul 24, 2026 · 1 files

368500fcb367

dt-bindings: clock: ti,keystone-gate: Convert to DT schema

Bhargav Joshi · Jul 25, 2026 · 3 files

667f420c09f1

clk: ti: mux: resolve parent clocks by DT index, not by name

Mathieu Dubois-Briand · Jul 27, 2026 · 1 files

fe3dd92ac54a

clk: ti: composite: resolve parent clocks by DT index, not by name

Mathieu Dubois-Briand · Jul 27, 2026 · 1 files

4496593f4d69

dt-bindings: mfd: qcom,tcsr: Document the IPQ9650 TCSR block

Kathiravan Thirumoorthy · Jul 27, 2026 · 1 files

4004c130c358

selftests/mm: skip COW tmpfile cases when fallocate() is unsupported

Muhammad Usama Anjum · Jul 27, 2026 · 1 files

e5220e4d934f

selftests/mm: skip guard hole-punch test if MADV_REMOVE is unsupported

Muhammad Usama Anjum · Jul 27, 2026 · 1 files

e14e52a7ce02

selftests/mm: skip hard dirty page-cache test on NFS

Muhammad Usama Anjum · Jul 27, 2026 · 1 files

746c94b7cb79

selftests/mm: retry migration failures for the full runtime

Muhammad Usama Anjum · Jul 27, 2026 · 1 files

6c27cd23bd43

apparmor: refactory mount to use check_perms

John Johansen · Jul 27, 2026 · 4 files

b765b508bdd5

dt-bindings: leds: nxp,pca963x: Fix reg maximum for pca9635

Loic Poulain · Jul 27, 2026 · 1 files

160c78e69c3b

dt-bindings: leds: nxp,pca963x: Add multicolor LED support

Loic Poulain · Jul 27, 2026 · 1 files

cd5d8dcd4ad7

leds: pca963x: Add multicolor LED class support

Loic Poulain · Jul 27, 2026 · 2 files

a69797fb3645

mm/vmstat, mm/memcontrol: add _monotonic vmstat readers

Usama Arif · Jul 27, 2026 · 4 files

1b089def0fb8

mm/vmscan: add pgrotate_anon and pgrotate_file vmstat counters

Usama Arif · Jul 27, 2026 · 4 files

7b9f4e5f8101

mm/vmscan: reduce lru_lock contention via vmstat-derived scan-balance cost

Usama Arif · Jul 27, 2026 · 9 files

c12cbf56320f

xfrm: fix xfrm_state_construct() auth-trunc leak

Zihan Xi · Jul 27, 2026 · 1 files

86ff1842795b

nfs4.2: add UNCACHEABLE_FILE_DATA attribute support

Tom Haynes · Jul 27, 2026 · 8 files

6f36ce30983e

nfs4.2: request UNCACHEABLE_FILE_DATA only for regular files

Mike Snitzer · Jul 27, 2026 · 2 files

b4dd7f815922

nfs4.2: open UNCACHEABLE_FILE_DATA files with O_DIRECT

Mike Snitzer · Jul 27, 2026 · 4 files

e1fc6e70f36e

Drivers: hv: Use meaningful errnos for hypercall status codes

Hardik Garg · Jul 27, 2026 · 1 files

34a00895d032

mm/migrate_device: clear stale mapping after freeing swapcache

Arvind Yadav · Jul 28, 2026 · 1 files

442d24ce7f4c

dt-bindings: clock: mediatek: Add mt8173 mfgtop

Chen-Yu Tsai · Jul 28, 2026 · 2 files

ebd0b73d2137

clk: mediatek: Add mt8173-mfgtop driver

Chen-Yu Tsai · Jul 28, 2026 · 3 files

e36f8825616b

dt-bindings: leds: lacie,ns2-leds: Convert to DT schema

Ninad Naik · Jul 28, 2026 · 2 files

5120b1e048d4

hugetlb: only adjust reservation during unmapping if mapcount is 0

Guillaume Morin · Jul 28, 2026 · 1 files

b9f2181b90ec

apparmor: fix auditing of mount binary data

John Johansen · Jul 28, 2026 · 1 files

ecafacef162f

apparmor: drop use of _confined variant for iteration

John Johansen · Jul 28, 2026 · 1 files

e3bc982007fe

apparmor: constify aa_perms parameters that are read-only

John Johansen · Jul 28, 2026 · 6 files

08066bcdeed0

apparmor: constify aa_profile parameters on read-only compute paths

John Johansen · Jul 28, 2026 · 10 files

6b0d1083364f

memcg: bypass the reclaim and oom killer for dying tasks once oom_reaper is done

Shakeel Butt · Jul 29, 2026 · 1 files

dde75313eed0

zram: set default primary compressor in zram_destroy_comps()

Sergey Senozhatsky · Jul 29, 2026 · 1 files

ec7607ac4717

zram: validate deflate params

Sergey Senozhatsky · Jul 29, 2026 · 1 files

be8e785db92c

Drop Michael Turquette's clk maintainer entry

Uwe Kleine-König · Jul 29, 2026 · 2 files

01a915e8239b

apparmor: constify aa_dfa parameters on read-only compute paths

John Johansen · Jul 29, 2026 · 8 files

713e4d54ff73

dt-bindings: clock: rockchip: Add RV1106 CRU support

Simon Glass · Jul 29, 2026 · 2 files

b520d056f261

clk: rockchip: Add clock controller for the RV1106

Simon Glass · Jul 29, 2026 · 3 files

830ead322c39

clk: qcom: Fix test_ctl_hi field for DEFAULT_EVO PLLs

Imran Shaik · Jul 29, 2026 · 3 files

9e4c1ef73b43

apparmor: compressed_data not described in aa_get_data_from_compressed

John Johansen · Jul 29, 2026 · 1 files

769bcbee07a4

x86/hyperv: reserve more vectors

Wei Liu · Jul 30, 2026 · 1 files

f74e6dff5440

Documentation: zram: correct algo parameters configuration documentation

Sergey Senozhatsky · Jul 30, 2026 · 1 files

16f212563f86

dt-bindings: clock: ti: Convert APLL clock to DT schema

Eduard Bostina · Jul 30, 2026 · 2 files

884dfb2dfe2c

clk: imx95-blk-ctl: Add func_out_en clock for i.MX9x PCIe

Richard Zhu · Jul 30, 2026 · 1 files

39ec460b56b2

clk: imx95-blk-ctl: Fix REFCLK rise-fall mismatch on i.MX95

Richard Zhu · Jul 30, 2026 · 1 files

1c5f27e845e8

apparmor: Fix build failure when ZSTD_DECOMPRESS is not enabled

John Johansen · Jul 30, 2026 · 2 files

bbc2de7fa5b4

docs/ja_JP: translate submitting-patches.rst (tag usage)

Akiyoshi Kurita · Jul 30, 2026 · 1 files

126ee572d04e

dt-bindings: clock: qcom-rpmhcc: Add RPMH clock controller for Maili

Taniya Das · Jul 30, 2026 · 1 files

2f4a1d2ed505

dt-bindings: clock: qcom: Add Maili TCSR clock controller

Taniya Das · Jul 30, 2026 · 1 files

86ea9de5fae9

dt-bindings: clock: qcom: Add Maili global clock controller

Taniya Das · Jul 30, 2026 · 2 files

cc881afb66ab

clk: qcom: gcc-hawi: Add support for global clock controller on Maili

Taniya Das · Jul 30, 2026 · 1 files

ad46c907d7d9

batman-adv: fix stale receive device on merged fragments

Zhiling Zou · Jul 31, 2026 · 1 files

a44730dd05a3

mm: shmem: reject page-aligned fallocate end overflow

Zhiling Zou · Jul 31, 2026 · 1 files

7822fa5f4f64

mm: zswap: drop list_lru param from zswap_lru_add() and _del()

Wilson Felipe Pereira · Jul 31, 2026 · 1 files

dd0dcfe8ef21

mm: kmemleak: default min_unref_scans to 2 for verbose auto-scan

Breno Leitao · Jul 31, 2026 · 1 files

09dde5e9bac0

Documentation: kmemleak: document the conditional min_unref_scans default

Breno Leitao · Jul 31, 2026 · 1 files

972195eb9b4c

selftests/mm: kmemleak: drop stale min_unref_scans default from comments

Breno Leitao · Jul 31, 2026 · 1 files

d51fc9d4cd6e

power: sequencing: rename pwrseq_power_on/off() to pwrseq_enable/disable()

Bartosz Golaszewski · Jul 31, 2026 · 8 files

8380671909bf

mm/sparse: correct init section annotations

Sang-Heon Jeon · Jul 31, 2026 · 1 files

7a39f03bc9da

mm/page_reporting: add page_reporting_delay_ms module parameter

Pratyush Mallick · Jul 31, 2026 · 2 files

078e1a0fc41a

mm/gup: fix always draining LRU caches in collect_longterm_unpinnable_folios()

David Hildenbrand (Arm) · Jul 31, 2026 · 1 files

b0c2e98d291b

apparmor: fix implicit declaration of function 'decompress_zstd'

John Johansen · Aug 1, 2026 · 1 files

0d4d262c1664

clk: devres: fix cleanup in devm_clk_get_optional_enabled_with_rate()

Onur Özkan · Aug 1, 2026 · 1 files

272b0d84b17f

mm/vmalloc: make vm_struct.nr_pages an unsigned long

Artem Lytkin · Aug 1, 2026 · 2 files

5d7ebde44469

dt-bindings: clock: Correct white-space style

Krzysztof Kozlowski · Aug 1, 2026 · 4 files

b9183788a2de

mm/vmalloc: do not warn on -ENOMEM from va_alloc()

Uladzislau Rezki (Sony) · Aug 2, 2026 · 1 files

47504742cea7

mfd: qnap-mcu: keep the reply buffer alive past a command timeout

Ali Ahmet Memis · Aug 2, 2026 · 1 files

112e447d17f7

netfilter: validate L4 headers after userspace packet writes

Zhiling Zou · Aug 3, 2026 · 2 files

efede141dc86

apparmor: Fix warning: 'decompress_zstd' defined but not used

John Johansen · Aug 3, 2026 · 1 files

3cf908dd1396

clk: zynq: pll: Fix kernel-doc after determine_rate() conversion

Babanpreet Singh · Aug 3, 2026 · 1 files

c310a8932a31

mm/swap: reject swapon() on filesystem-level encrypted files

Eric Biggers · Aug 3, 2026 · 2 files

4e7e499b750f

selftests/mm: rename local_config.h to local_config.h_gen

Pratyush Mallick · Aug 3, 2026 · 4 files

2bee308f3adb

selftests/mm: use pattern matching in .gitignore

Pratyush Mallick · Aug 3, 2026 · 1 files

daf120e46438

backlight: aw99706: Fix DT property names to match binding

Junjie Cao · Aug 4, 2026 · 1 files

3d142b19b09e

backlight: aw99706: Validate all DT property values consistently

Junjie Cao · Aug 4, 2026 · 1 files

fbf8b5d251e8

backlight: aw99706: Honor the core blank state in update_status()

Junjie Cao · Aug 4, 2026 · 1 files

894913e2d35c

zram: fix out-of-bounds access in writeback_store()

Longlong Xia · Aug 4, 2026 · 1 files

391f057f44a5

zram: fix out-of-bounds access in read_block_state()

Longlong Xia · Aug 4, 2026 · 1 files

45214458d6b5

zram: do not release zstd global params from error paths

Haoqin Huang · Aug 4, 2026 · 1 files

6dc404d433ad

zram: reject zero-size dictionary

Haoqin Huang · Aug 4, 2026 · 1 files

70922d5ef84a

zram: add pr_fmt to backend files

Haoqin Huang · Aug 4, 2026 · 7 files

7b0f677c7bd5

zram: validate parameters in each backend's setup_params

Haoqin Huang · Aug 4, 2026 · 7 files

702c5a799db2

zram: reset per-priority params when changing algorithm before init

Haoqin Huang · Aug 4, 2026 · 1 files

6fd3e592c09d

mm: add some missing includes to mm-local headers

Lorenzo Stoakes (ARM) · Aug 4, 2026 · 7 files

d86dadc6feea

dt-bindings: mfd: syscon: Add ESWIN EIC7700 compatible

Pinkesh Vaghela · Aug 4, 2026 · 1 files

8bc69b8d209f

selftests/mm: read memory information without popen

Warren Xiong · Aug 4, 2026 · 1 files

2b02aa1b547a

dt-bindings: mfd: syscon: Allow syscon compatible for Loongson-2K0300 chip id

Binbin Zhou · Aug 4, 2026 · 1 files

34568000f3c9

mm/Kconfig: make FLATMEM depend on !NUMA

Sang-Heon Jeon · Aug 4, 2026 · 1 files

0ddb8bb85b98

mm/page_ext: remove pgdat_page_ext_init()

Sang-Heon Jeon · Aug 4, 2026 · 3 files

fbedf6d92e54

apparmor: constify aa_label parameters on read-only query helpers

John Johansen · Aug 4, 2026 · 2 files

c299a2285d9d

mm/huge_memory: use folio's memcg inside __folio_split()

Zi Yan · Aug 4, 2026 · 1 files

789763523fb4

xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc()

Zi Yan · Aug 4, 2026 · 1 files

c4c405023635

thermal/of: Fix trivial enabled typo

Marek Vasut · Aug 4, 2026 · 1 files

8be7c167be57

mm/show_mem: fix format string inconsistencies and type mismatches

Ye Liu · Aug 5, 2026 · 1 files

e73aeb8a411e

mm/sparse: keep mem_section_usage_size() internal

Muchun Song · Aug 5, 2026 · 3 files

f5071235a162

dt-bindings: mfd: qcom,spmi-pmic: Document haptics device

Fenglin Wu · Aug 5, 2026 · 1 files

36a9799b2c86

maple_tree: remove unused mas_is_root_limits()

Zhan Xusheng · Aug 5, 2026 · 1 files

bb3e3c5c2d63

mm: debug_page_alloc: fix type mismatch for debug_guardpage_minorder

Ye Liu · Aug 5, 2026 · 1 files

a44ab4bd1ec0

ksm: update comments and docs to reference folio->mapping

Hongfu Li · Aug 5, 2026 · 3 files

9d0e4b1ae5b0

mfd: cs42l43: Fix regmap defaults ordering

Charles Keepax · Aug 5, 2026 · 1 files

c659fa329ea2

cpufreq: intel_pstate: Consolidate HWP P-states initialization

Rafael J. Wysocki · Aug 5, 2026 · 1 files

d657aa1b8ed3

cpufreq: intel_pstate: Avoid using DESIRED_PERF when DEC is enabled

Rafael J. Wysocki · Aug 5, 2026 · 1 files

3c37cac718fa

mm/ksm: avoid missing ksmd wakeups in ksm_enter

Longlong Xia · Aug 5, 2026 · 1 files

586ff159ec02

clk: rockchip: rk3576: fix source muxes for SPI0..SPI4

Alexey Charkov · Aug 5, 2026 · 1 files

cf1a12e08045

backlight: Use sysfs_emit() instead of sprintf()

Levente Szajko · Aug 5, 2026 · 2 files

88656a46dfa3

dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator

Geert Uytterhoeven · Aug 5, 2026 · 2 files

0fb9083a6e56

clk: renesas: Add R-Car X5H CPG driver

Geert Uytterhoeven · Aug 5, 2026 · 3 files

afff109c2f8b

alloc_tag: expose boot-time compression configuration

Abhishek Bapat · Aug 5, 2026 · 2 files

5bb01c657ff9

of: fix out-of-bounds read in of_alias_scan() stem parser

Abdurrahman Hussain · Aug 5, 2026 · 1 files

a9a05e801eff

Drivers: hv: Remove support for WS2012/2012R2 & Win8/8.1 version of Hyper-V

Michael Kelley · Aug 5, 2026 · 5 files

73da9973b353

hv_sock: Remove check for old Hyper-V hosts

Michael Kelley · Aug 5, 2026 · 1 files

6b8345035d9d

hv_netvsc: Remove GPADL teardown special case for old Hyper-V hosts

Michael Kelley · Aug 5, 2026 · 1 files

54cf8154186f

scsi: storvsc: Remove support for storvsc protocol of old Hyper-V hosts

Michael Kelley · Aug 5, 2026 · 1 files

be0cfab740e5

clocksource: hyper-v: Remove support for stimer interrupts in message mode

Michael Kelley · Aug 5, 2026 · 6 files

54cc9b384709

mm: debug_page_alloc: fix NULL buf in debug_guardpage_minorder_setup

Ye Liu · Aug 6, 2026 · 1 files

4b82a0b91be5

selftests/mm: drop duplicate test_seal_mprotect_two_vma_with_gap() call

Hongfu Li · Aug 6, 2026 · 1 files

184bf187c45b

zram: switch to unsigned long indexing

Sergey Senozhatsky · Aug 6, 2026 · 1 files

e4ce743a8f3a

selftests: mm: extend the check_huge() to support mTHP check

Baolin Wang · Aug 6, 2026 · 9 files

6995150ede28

selftests: mm: move gather_after_split_folio_orders() into vm_util.c file

Baolin Wang · Aug 6, 2026 · 3 files

6dedaf0d46a9

selftests: mm: implement the mTHP-sized hugepage check helpers

Baolin Wang · Aug 6, 2026 · 1 files

76f134aabb62

selftests: mm: add mTHP collapse test cases

Baolin Wang · Aug 6, 2026 · 2 files

3774c56cc38b

drivers/base, mm: move arch_numa.c to mm/

Mike Rapoport (Microsoft) · Aug 6, 2026 · 7 files

dc8458f43fe9

mm/zswap: fix global shrinker when memory cgroup is disabled

Hao Jia · Aug 6, 2026 · 1 files

6f34b4126b8b

mm/zswap: support batch writeback in shrink_memcg()

Hao Jia · Aug 6, 2026 · 1 files

8282cb36d021

mm/page_alloc: only update lowmem_reserve_ratio on sysctl write

Jianlin Shi · Aug 6, 2026 · 1 files

f8cca63a0a4f

leds: is31fl319x: Modernize registration

Andreas Kemnade · Aug 6, 2026 · 1 files

53cb675d7206

clk: samsung: Don't include <linux/mod_devicetable.h>

Uwe Kleine-König (The Capable Hub) · Aug 6, 2026 · 1 files

10f307e525a1

nfs: fix ENXIO on O_CREAT open of existing symlink over NFSv3

Michael Nemanov · Aug 6, 2026 · 1 files

3bff8f8e95fd

cpufreq: schedutil: Fix rate limit overflow

Hui Su · Aug 6, 2026 · 1 files

dc924f0f85af

selftests/mm/vm_util.c: correct __pagemap_scan_get_categories return value

Audra Mitchell · Aug 6, 2026 · 1 files

3f4ae5fab613

apparmor: fix cred UAF caused by begin_current_label_crit_section()

Jann Horn · Aug 6, 2026 · 3 files

fc6415a384f0

mm/gup: factor out LRU cache draining for folio into lru_cache_drain_for_folio()

David Hildenbrand (Arm) · Aug 6, 2026 · 4 files

1555a0e2a149

apparmor: optimize current_label_crit_section() with needput

John Johansen · Aug 6, 2026 · 5 files

e80456d79ec8

netfilter: ipset: remove need to allocate memory on delete operations

Florian Westphal · Aug 7, 2026 · 3 files

4050b5b0b60c

selftests/mm: fix read_file() return value check

Hongfu Li · Aug 7, 2026 · 2 files

34e0849142c3

mm/hugetlb_cma: support percentage-based hugetlb_cma reservation

Sourav Panda · Aug 7, 2026 · 2 files

660ee6792edf

dt-bindings: input: Add Qualcomm SPMI PMIC haptics

Fenglin Wu · Aug 7, 2026 · 1 files

20d4d490bc0c

mm/execmem: fix fallback_end description in kernel-doc

Henry Elderman · Aug 7, 2026 · 1 files

28b13c3c4c65

mm: make VM_FAULT_RESULT_TRACE compatible with sparse

Bart Van Assche · Aug 7, 2026 · 1 files

8790303cbaac

kasan: fix cache shrink race with CPU hotplug

Hui Su · Aug 8, 2026 · 1 files

dc6b7c771a96

Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative

Guangshuo Li · Aug 8, 2026 · 1 files

853a92b97ca5

Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative

Guangshuo Li · Aug 8, 2026 · 1 files

c7e9a8cb6918

Bluetooth: hci_intel: fix usage_count leak when autosuspend_delay is negative

Guangshuo Li · Aug 8, 2026 · 1 files

a414485ebc2a

ACPI: scan: fix bus ID cleanup on device_add() failures

Hongyan Xu · Aug 8, 2026 · 1 files

66d6ef18548a

Bluetooth: L2CAP: fix race l2cap_sock_cleanup_listen() vs. put_chan

Pauli Virtanen · Aug 8, 2026 · 2 files

59eecbe2f2f3

Bluetooth: mgmt: fix 'hdev->discovery.uuids' NULL dereference

Pavel Shpakovskiy · Aug 8, 2026 · 2 files

0685630fdccb

selftests/proc: make proc-maps-race work with READ_IMPLIES_EXEC

Karl Mehltretter · Aug 8, 2026 · 1 files

d4bfa78fd679

Bluetooth: L2CAP: reject accept queue add unless BT_LISTEN

Pauli Virtanen · Aug 8, 2026 · 1 files

9e409f1dff78

ACPI: battery: Protect all properties with a separated mutex

Rong Zhang · Aug 8, 2026 · 1 files

f7bf5cd5b5f2

zsmalloc: account for handle size in class lookup

Longlong Xia · Aug 9, 2026 · 1 files

465946d3c560

apparmor: fix integer overflow in verify_tags() bounds check

Fabrice Derepas · Aug 9, 2026 · 1 files

a89dd5974588

SUNRPC: wait for in-flight client TLS handshake callback

Jérémy Jean · Aug 9, 2026 · 1 files

ca2c4c264986

Bluetooth: L2CAP: access chan->conn safely in get/setsockopt

Pauli Virtanen · Aug 9, 2026 · 1 files

86bdd16e8f39

PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip

Naman Jain · Aug 10, 2026 · 1 files

097492865fbe

mm/cma: remove stray newline from auto-generated CMA area name

Hongfu Li · Aug 10, 2026 · 1 files

9f1e40193eef

apparmor: fix out-of-bounds write when null terminating a label vec

Hyunwoo Kim · Aug 10, 2026 · 1 files

534b19bbb677

mm/gup_test: keep longterm pin state per file

David Hildenbrand (Arm) · Aug 10, 2026 · 1 files

7904b94768e9

netfilter: nf_tables: don't queue packet path object notifications

Fourie Zhang · Aug 10, 2026 · 1 files

a9ba4dd2f18b

ACPI: platform: Use acpi_bus_get_primary_device()

Rafael J. Wysocki · Aug 10, 2026 · 1 files

87ee7d704f69

ACPI: scan: Use acpi_bus_get_primary_device()

Rafael J. Wysocki · Aug 10, 2026 · 1 files

1dea8e081ec3

mm/page-writeback: document folio_mark_dirty() locking more explicitly

Jann Horn · Aug 10, 2026 · 2 files

3a6deb47cdd4

dt-bindings: clock: ti,clockdomain: Convert to DT schema

Bhargav Joshi · Aug 10, 2026 · 3 files

556147fc27b5

mm/hmm.c:hmm_do_fault(): suppress sparse warning

Andrew Morton · Aug 10, 2026 · 1 files

a8b5875741d4

zram: fix slot lock bit position on big-endian 64-bit

David Carlier · Aug 10, 2026 · 2 files

6f615890b848

selftests/cgroup: test_zswap: skip test_no_kmem_bypass if debugfs is unavailable

Wilson Felipe Pereira · Aug 11, 2026 · 2 files

bd1ad3cf07d1

kasan: fix quarantine_size accounting during cache removal

Hui Su · Aug 11, 2026 · 1 files

cb19774faa57

Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request

Ibrahim Abdelkader · Aug 11, 2026 · 1 files

447cbe95ebb9

vlan: fix skb_under_panic and races when toggling HW VLAN offload

Eric Dumazet · Aug 11, 2026 · 1 files

b115930d716d

thermal/drivers/armada: Fix missing bitfields include

Daniel Lezcano · Aug 11, 2026 · 1 files

c5f7c0d35c55

thermal/drivers/qcom/spm mbg tm: Fix missing bitfield header

Daniel Lezcano · Aug 11, 2026 · 1 files

b86a7d03ea53

mm/khugepaged: refactor per-scan state clearing into collapse_control_init_scan()

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

e8122742cfb4

mm/khugepaged: extract reference check into folio_pte_referenced() helper

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

948ec48e5686

mm/khugepaged: introduce a count_collapse_event() helper

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

cc044178edc9

mm/khugepaged: fix outdated comments

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

27490db7ec04

mm/khugepaged: unmap pte before releasing vma write lock

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

2a0be246e342

mm: Documentation: clarify where the mTHP stats live

Nico Pache (Red Hat) · Aug 11, 2026 · 1 files

cebe35918801

thermal/drivers/qcom: Fix missing spmi adc tm5 gen3 file

Jishnu Prakash · Aug 11, 2026 · 1 files

8f1da3536b8f

Drivers: hv: vmbus: add vmbus_establish_gpadl_caller_decrypted()

Kameron Carr · Aug 11, 2026 · 2 files

73fe42af955a

Drivers: hv: vmbus: Add vmbus_alloc_buffer()/vmbus_free_buffer() for CoCo VMs

Kameron Carr · Aug 11, 2026 · 2 files

f85e1cc5ecbb

hv_netvsc: Allocate send/receive buffers using vmbus_alloc_buffer()

Kameron Carr · Aug 11, 2026 · 3 files

508537753b5c

mm/mglru: fix young counter undercount for large folios

Hui Zhu · Aug 12, 2026 · 1 files

3372b6631b52

MAINTAINERS: add drivers/char/mem.c to mm misc, memory mapping sections

Lorenzo Stoakes (ARM) · Aug 12, 2026 · 1 files

73b5d07990a0

Docs/mm: fix outdated "radix tree" in page_migration

Song Hu · Aug 12, 2026 · 1 files

5fc04d4648f4

netfilter: nf_conntrack_expect: consolidate check for insertion of dead expectation

Pablo Neira Ayuso · Aug 12, 2026 · 1 files

322371b09058

netfilter: ctnetlink: do not expose expectation DEAD flag

Pablo Neira Ayuso · Aug 12, 2026 · 1 files

4ec11f14d1d6

apparmor: fix deadlock in complain-mode change_hat

John Johansen · Aug 12, 2026 · 3 files

0d0878fd7c9b

lib/test_hmm: fix garbage pfn and wrong direction in devmem fault debug

Qiang Liu · Aug 12, 2026 · 1 files

f7e698e326b2

mm/mglru: fix and remove redundant unevictable folio handling

Kairui Song · Aug 12, 2026 · 1 files

72530e1f72b0

ACPI: bus: Introduce acpi_bus_get_primary_device()

Rafael J. Wysocki · Aug 12, 2026 · 2 files

cee0d90bceae

Drivers: hv: vmbus: Skip VMBus module cleanup for non-nested root partition

Michael Kelley · Aug 12, 2026 · 1 files

f525001b3309

percpu: drop CONFIG_DEBUG_FORCE_WEAK_PER_CPU

Tejun Heo · Aug 12, 2026 · 4 files

b1881d362e19

netfilter: nf_tables: move hardware offload step after building the chain blob

Pablo Neira Ayuso · Aug 13, 2026 · 1 files

79a57e48822a

thermal/drivers/qcom-spmi-mbg-tm: Add module namespace import for IIO_CONSUMER

Nathan Chancellor · Aug 13, 2026 · 1 files

408da1df1811

net: mctp: hold a reference to the route device in mctp_route_lookup()

Aldo Ariel Panzardo · Aug 13, 2026 · 1 files

4226911d7296

ACPI: APD: Convert fixed clock rates to use HZ_PER_MHZ

Hongnan Li · Aug 13, 2026 · 1 files

6d2d46274855

ACPI: APD: Add clock frequency for HJMC01 I2C controller

Xiangyang Yu · Aug 13, 2026 · 1 files

b343ededb3f9

netfilter: nf_tables: move set_update_list to nftables per-netns

Pablo Neira Ayuso · Aug 13, 2026 · 2 files

1e3b9e1c77fe

netfilter: nf_tables: call set ops .commit when building new ruleset blob

Pablo Neira Ayuso · Aug 13, 2026 · 1 files

a1b114b4cec1

mm/Kconfig: make MEMORY_FAILURE select MIGRATION

Xie Yuanbin · Aug 13, 2026 · 1 files

0bd14001eb26

mm/vma: introduce VMA anon page offset field and add helpers

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 5 files

51943a18ad4b

mm: provide vma_[flags_]is_cow_mapping() and remove is_cow_mapping()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 16 files

7e6543d1f939

mm: introduce linear_anon_page_index()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files

c02fe674feaf

mm: abstract vma_address() and introduce vma_anon_address()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

2a8de2d1d6a5

mm: update print_bad_page_map() to show anon index if appropriate

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

dba10745e9b4

mm: introduce and use vma_filebacked_address()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 4 files

9998bc06d75b

mm/vma: fix self-merge check in copy_vma()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files

746b9e0a4777

tools/testing/vma: add tests for copy_vma() self-merge

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

6a993c7fbc3e

mm: propagate VMA anonymous page offset on map, remap, split + merge

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 7 files

50c5f35a64aa

mm/rmap: track whether the page VMA mapped pgoff is anonymous

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files

e7006fbd608f

mm: clean up vma_address_end()

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

8e658ecc3be2

mm/huge_memory: update remove_migration_pmd() to accept a folio

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files

5f653f8b7a34

mm/migrate: calculate large folio page index using PFN

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

93c0c8dc87f6

mm/rmap: use anon pgoff to track MAP_PRIVATE file-backed anon folios

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 8 files

6b7460ad1af8

tools/testing/vma: expand VMA merge tests to assert anon pgoff

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

fb580e196497

tools/testing/selftests/mm: test anonymous page offset merge behaviour

Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files

e625a9477d12

ipvs: fix integer overflow in ftp helper port/address parsing

Joas Antonio dos Santos · Aug 13, 2026 · 1 files

cdd719b3f2b8

maple_tree: fix comment typo

Mark Sercombe · Aug 13, 2026 · 1 files

e37b2abca804

xsk: fix NULL pointer dereference in __xsk_rcv()

Cen Zhang (Microsoft) · Aug 13, 2026 · 1 files

a8b842366f8f

powercap: intel_rapl: Sign-extend the PMU delta on counter wraparound

Li, Yifan · Aug 14, 2026 · 1 files

f2b1cb39d5cc

arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map()

Nathan Chancellor · Aug 14, 2026 · 1 files

f52b3b89faba

mm/rmap: synchronize lock and unlock target in anon_vma_clone

Eric Kim · Aug 14, 2026 · 1 files

fbfa013eeac2

clk: microchip: mpfs: fix regmap_update_bits() mask/val order

Pedro Kopper · Aug 14, 2026 · 1 files

b74a072d8fb7

net: bridge: Reject descending VLAN tunnel ranges

Ruoyu Wang · Aug 14, 2026 · 1 files

8bc7ceadce1f

MAINTAINERS: Add Brian Masney and Jerome Brunet as co-maintainers for clk subsystem

Brian Masney · Aug 14, 2026 · 1 files

060fa7592bdc

Bluetooth: btnxpuart: Validate the FW dump header length

Ali Ahmet Memis · Aug 14, 2026 · 1 files

68d8c6532659

net: core: propagate unreadable flag in skb_zerocopy

Mina Almasry · Aug 14, 2026 · 2 files

d9c56501c72f

net: tcp: block mixing readable and unreadable frags

Mina Almasry · Aug 14, 2026 · 1 files

ced45be0073a

ACPI: pfr_update: fix stack buffer overflow in query_capability()

Anirudh Prasad · Aug 14, 2026 · 1 files

3cbfd627ee72

net: ipa: fix stalled modem TX queue after runtime resume

Jorijn van der Graaf · Aug 15, 2026 · 1 files

4beb198bc59b

Bluetooth: eir: Fix OOB read in eir_get_service_data()

HyeongJun An · Aug 15, 2026 · 1 files

2640e6419594

net: advertise TCP MSS from the configured MTU, not the learned PMTU

Jiayuan Chen · Aug 15, 2026 · 4 files

e5c8e301b497

selftests: net: packetdrill: add tests for advertised MSS with PMTU exceptions

Eric Dumazet · Aug 15, 2026 · 2 files

47cdab0d51aa

ipv6: use RCU iterator to dump route exceptions

Yuyang Huang · Aug 15, 2026 · 1 files

c5ae83ee02c0

net: thunderbolt: Count delivered packets in rx_packets and rx_bytes

Fan Ye · Aug 15, 2026 · 1 files

b878dfdd12d7

mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction

Harshit Varu · Aug 15, 2026 · 1 files

59c3ee19ca88

Bluetooth: btmtk: Do not report success when subsys reset fails

Ismail Tarim · Aug 15, 2026 · 1 files

21b50c24843b

Bluetooth: btmtk: Do not discard the subsystem reset timeout

Ismail Tarim · Aug 15, 2026 · 1 files

d2796ffe38cb

bnx2x: fix double free in bnx2x_init_firmware() error path

Jiangshan Yi · Aug 15, 2026 · 1 files

6b9eaa61ff2d

net: ipa: balance runtime PM reference on remove error

Ruoyu Wang · Aug 15, 2026 · 1 files

e5bbf81def17

docs: kernel-parameters: add CPU_FREQ, CPU_IDLE build options

Randy Dunlap · Aug 15, 2026 · 1 files

9393f1d656a7

forcedeth: fix off-by-one when saving/restoring non-PCI config space

Marek Czernohous · Aug 15, 2026 · 1 files

cfa9178ce2e5

forcedeth: stop the tx_timeout register dump past the requested window

Marek Czernohous · Aug 15, 2026 · 1 files

55dd20f0f4b1

netfilter: nft_set_pipapo_avx2: add missing vzeroupper

Eric Biggers · Aug 15, 2026 · 1 files

44f7b876b7c6

regulator: tps65185: wait for the IC to wake before the first I2C access

Mario Rugiero · Aug 15, 2026 · 1 files

746fc0787f61

net: usb: cdc_ncm: add Apple MacBook Pro USB product ID 0x1902

Mehrdad Afshari · Aug 16, 2026 · 1 files

5e8076e4e412

net: qlcnic: validate unified ROM sections before loading

Pengpeng Hou · Aug 16, 2026 · 1 files

ff0f9b7aa1c7

net/mlx5: E-Switch, use state lock for vport state changes

Mark Bloch · Aug 16, 2026 · 5 files

20f11b5cfa42

net/mlx5: Move vport DOWN state check out of mlx5_query_vport_max_tx_speed()

Or Har-Toov · Aug 16, 2026 · 3 files

ad0ae7aefa7a

net/mlx5: E-Switch, preserve max tx speed on vport state modification

Or Har-Toov · Aug 16, 2026 · 2 files

c75ef2137e74

NFSv4.2: fix LAYOUTSTATS send buffer exhaustion

Junrui Luo · Aug 16, 2026 · 1 files

13c23c5cb977

NFSv4/pnfs: key the data server cache on the NFS version

Junrui Luo · Aug 16, 2026 · 4 files

ee5a386cfe60

NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path

Junrui Luo · Aug 16, 2026 · 1 files

5b9b68abb5fa

Bluetooth: hci_sync: add conditional locking annotations

Pauli Virtanen · Aug 16, 2026 · 1 files

f7f11bdddaba

doc:it_IT: align Italian documentation in process

Federico Vaga · Aug 16, 2026 · 16 files

8e2efb3f45a5

net/sched: add get_fill_size callbacks for actions missing them

Victor Nogueira · Aug 16, 2026 · 9 files

da4471557f27

net/tcp-ao: fix use-after-free of current_key on reconnect to another peer

Hyunwoo Kim · Aug 16, 2026 · 1 files

992cc9f94ca9

net/packet: defer vmalloc TX_RING free until skbs finish

Kyle Zeng · Aug 16, 2026 · 1 files

d2c26c2911dd

ipv6: avoid divide by zero in rt6_multipath_rebalance

Cen Zhang (Microsoft) · Aug 17, 2026 · 1 files

3b8f8d632381

Bluetooth: btnxpuart: Check remote M.2 connector availability before pwrseq

Sherry Sun · Aug 17, 2026 · 1 files

0fda52de8bbd

Revert "esp: do not unref managed frag pages in esp_ssg_unref()"

Steffen Klassert · Aug 17, 2026 · 2 files

256496397287

NTB: ntb_transport: Recycle TX entries before client callbacks

Koichiro Den · Aug 17, 2026 · 1 files

8aaa47351db0

net: ntb_netdev: Fix TX busy and drop handling

Koichiro Den · Aug 17, 2026 · 1 files

873ce713fef5

NTB: ntb_transport: Fail TX enqueue when the QP link is down

Koichiro Den · Aug 17, 2026 · 1 files

a4f2387db6f1

NTB: ntb_transport: Reject oversized TX buffers

Koichiro Den · Aug 17, 2026 · 1 files

9add2cc22de6

mm/migrate_device: fix cache flush when replacing huge zero PMD

Hui Su · Aug 17, 2026 · 1 files

dd14e6cd3392

selftests/mm: drop redundant open() in mprotect_tests()

Hongfu Li · Aug 17, 2026 · 1 files

07e98a4d5e9c

netdevsim: update queue NAPI association on queue reset

Eric Dumazet · Aug 17, 2026 · 1 files

f12c2de4f542

batman-adv: reject unrepresentable multicast TVLV offsets

Kyle Zeng · Aug 17, 2026 · 2 files

44930446dde4

ipv6: seg6: clear IPv4 control block on IPIP decapsulation

Kyle Zeng · Aug 17, 2026 · 1 files

155e3003d1e6

Bluetooth: btmtksdio: Take exclusive ownership of the SKB before TX

Chris Lu · Aug 17, 2026 · 1 files

fa0ad2d277c7

Bluetooth: btmtksdio: Fix out-of-bounds DMA read in the TX path

Chris Lu · Aug 17, 2026 · 1 files

c1afbd5de131

mm/memcontrol: avoid false sharing between vmstats and events

Usama Arif · Aug 17, 2026 · 1 files

f826df95332c

ipv6: rpl: fix NULL dereference of idev in ipv6_rpl_srh_rcv()

Andrea Mayer · Aug 17, 2026 · 1 files

f85dc137aabf

net: add missing ref_tracker_dir_exit() to net_passive_dec()

Tetsuo Handa · Aug 17, 2026 · 1 files

415125669c2d

ACPI: button: Add DMI quirk for Razer Blade Pro 17 early 2020 lid switch

Robin Everaars · Aug 17, 2026 · 1 files

b7adcc56fd3d

net: microchip: vcap: use port number instead of netdev name for debugfs

Daniel Machon · Aug 17, 2026 · 3 files

b62793a7baee

net: sparx5: fix sleep in atomic context in MAC table access

Daniel Machon · Aug 17, 2026 · 1 files

4e9442ce551e

xfrm: bound nat keepalive state collection

Zihan Xi · Aug 17, 2026 · 1 files

f2849b1fd059

net: phylink: correctly validate returned PCS in phylink_inband_caps

Christian Marangi · Aug 17, 2026 · 1 files

7bf29145d7a9

net: txgbe: fix MISC interrupt unmasking in non-MSI-X mode and device shutdown

Jiawen Wu · Aug 18, 2026 · 1 files

d302d7109fb9

ethtool: remove unused __ETHTOOL_LINK_MODE_MASK_NWORDS

Zhan Xusheng · Aug 18, 2026 · 1 files

036322025d6e

net/smc: free stashed qentry before overwrite in REQ_ADD_LINK to ADD_LINK transition

Mahanta Jambigi · Aug 18, 2026 · 1 files

06aa3d26327f

qede: Fix NULL pointer dereference in TPA fragment processing

Vaibhav Nagare · Aug 18, 2026 · 2 files

5ee0ceddc778

net/smc: free pending qentry in smc_llc_flow_stop() before memset

Mahanta Jambigi · Aug 18, 2026 · 1 files

f05516dd7b86

net: libwx: fix concurrent bitmap overwrite in PTP setup

Jiawen Wu · Aug 18, 2026 · 1 files

f43358489db4

netfilter: x_tables: remove pr_debug

Pablo Neira Ayuso · Aug 18, 2026 · 18 files

793d9eda4821

netfilter: x_tables: replace pr_{info,err}() by pr_info_ratelimited()

Pablo Neira Ayuso · Aug 18, 2026 · 2 files

f9dc428249ed

mm, swap: ratelimit bad swap entry reports

Breno Leitao · Aug 18, 2026 · 1 files

aec6a8d80e3d

Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378

Lorenzo Stoakes (ARM) · Aug 18, 2026 · 1 files

4c660ee8c809

net: sched: fix 32-bit backlog wrap in gred, bfifo and plug enqueue

Jamal Hadi Salim · Aug 18, 2026 · 3 files

dd1638dfbb1c

mm: include swap.h in swapops.h

Kiryl Shutsemau (Meta) · Aug 18, 2026 · 1 files

48863da10ba1

mm: memcg: release the css reference when a stock slot empties

Song Hu · Aug 18, 2026 · 1 files

25b863cd6d12

tools: ynl: handle calloc failure in ynl_ntf_parse

Triet Hoang · Aug 18, 2026 · 1 files

ed5fb41d3b6b

Bluetooth: hci_conn: re-enable advertising only for peripheral role

Valentin Kindschi · Aug 18, 2026 · 1 files

941929abe5fe

Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection

Valentin Kindschi · Aug 18, 2026 · 1 files

c7a4e939f87c

selftests/mm: fix unchecked ftruncate return value in soft-dirty test

Anshuman · Aug 18, 2026 · 1 files

8197c180052f

docs: oa-tc6-framework: Fix link to specification

Stefan Wahren · Aug 18, 2026 · 1 files

498386b6d402

gtp: serialize PDP context updates

Qing Ming · Aug 18, 2026 · 1 files

57549ab90791

net: bridge: arp/nd proxy: fix reading neigh ha

Nikolay Aleksandrov · Aug 18, 2026 · 1 files

b824059a673b

vxlan: fix reading neigh ha

Nikolay Aleksandrov · Aug 18, 2026 · 1 files

2ee66e948717

inetpeer: randomize RB-tree node comparison using SipHash

Eric Dumazet · Aug 18, 2026 · 2 files

71283aaa6c65

xdp: fix zero-copy frame layout

Weiming Shi · Aug 18, 2026 · 1 files

cb258d651d74

PM: sleep: Unblock runtime PM when device prepare fails

Shibo Zhu · Aug 18, 2026 · 1 files

235b42b58601

ip6mr: do not clone dst in ip6mr_cache_report()

Eric Dumazet · Aug 18, 2026 · 1 files

560bef609fa5

Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready

Hang Nan · Aug 19, 2026 · 1 files

03a9d10ecf71

sctp: drop a chunk if its transport was removed

Hyunwoo Kim · Aug 19, 2026 · 1 files

a42a459ef0e5

net/smc: fix use-after-free of the LLC qentry in smc_llc_srv_add_link()

Yehyeong Lee · Aug 19, 2026 · 1 files

2d1e7c5aaa33

net/smc: bound the peer rkey counts in SMC-Rv2 LLC messages

Yehyeong Lee · Aug 19, 2026 · 1 files

8d3c1ab82c11

net/smc: carry oversized SMC-Rv2 LLC messages in the queue entry

Yehyeong Lee · Aug 19, 2026 · 2 files

6776efe4a52f

ipip: fix skb leak in collect_md mode when metadata_dst allocation fails

Anton Danilov · Aug 19, 2026 · 1 files

43559058d21e

netfilter: nf_tables: skip double clone set expressions on element insert

Pablo Neira Ayuso · Aug 19, 2026 · 3 files

d16e52a9ba9e

selftests/mm: check stat() return value in khugepaged get_finfo()

Anshuman · Aug 19, 2026 · 1 files

203582017774

pNFS: Fix EBUSY check in pnfs_layout_need_return

Tim Menninger · Aug 19, 2026 · 1 files

c0ef04232f9f

net: ethernet: mtk_wed: increase WED v2 WDMA RESV_BUFF to 0x80

Shiji Yang · Aug 19, 2026 · 2 files

60763c2f834d

docs: threat-model: fix /dev/kmsg reference

Johan Hovold · Aug 19, 2026 · 1 files

f5afdff569a0

Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb

Xin Chen · Aug 19, 2026 · 1 files

1beb81947eb4

net/sched: account classifier filter allocations to memcg

Jamal Hadi Salim · Aug 19, 2026 · 10 files

870a9e42ecc6

tcp: clamp route advmss to TCP_MIN_MSS

Yong Wang · Aug 19, 2026 · 5 files

bd7d30bd1d38

xsk: align TX metadata layout across ABIs

Stanislav Fomichev · Aug 19, 2026 · 2 files

a6e4b9a6deb9

xsk: honor XDP_TX_METADATA in zero-copy path

Stanislav Fomichev · Aug 19, 2026 · 7 files

82e15be2d8b9

net: ntb_netdev: Avoid double-accounting netif_rx() drops

Koichiro Den · Aug 19, 2026 · 1 files

31ded341c375

net: ntb_netdev: Count packets dropped on RX refill failure

Koichiro Den · Aug 19, 2026 · 1 files

94509f50d696

docs: panic: Disclaimer about console verbosity when using panic_print with pstore

Guilherme G. Piccoli · Aug 19, 2026 · 1 files

3ae1674975d4

clk: ti: Make sure clk_init_data is fully initialized

Geert Uytterhoeven · Aug 19, 2026 · 3 files

39c0e6c844a1

clk: visconti: Make sure clk_init_data is fully initialized

Geert Uytterhoeven · Aug 19, 2026 · 1 files

b2702908ee23

spi: amlogic-spisg: Make sure clk_init_data is fully initialized

Geert Uytterhoeven · Aug 19, 2026 · 1 files

b40a680ea4ef

docs: block: fix dead http link in blk-mq.rst

Jenson Johnathon Reggentin · Aug 19, 2026 · 1 files

45ccfec7caab

ACPI: Add Bob Moore to CREDITS

Rafael J. Wysocki · Aug 19, 2026 · 1 files

500919d75d5b

ACPI: Update MAINTAINERS entry for ACPICA

Rafael J. Wysocki · Aug 19, 2026 · 1 files

a6fa4d6e38d6

ACPI: Update upstream ACPICA repository URL in documentation

Rafael J. Wysocki · Aug 19, 2026 · 1 files

4e15e89faac9

net: bnxt: ring the doorbell when SW USO exits early

Joe Damato · Aug 19, 2026 · 2 files

d989e22ae980

gtp: add synchronize_net() in gtp_newlink() error path to prevent use-after-free

Cen Zhang (Microsoft) · Aug 20, 2026 · 1 files

ec65631bd5ec

octeontx2-af: fix NULL deref in NIX TM tree debugfs read path

Anshumali Gaur · Aug 20, 2026 · 1 files

4d5df98369c5

octeontx2-af: fix out-of-bounds read setting MSI-X irq affinity

Anshumali Gaur · Aug 20, 2026 · 1 files

dc948f8b384a

ACPI: scan: Defer device power initialization

Peixin Xie · Aug 20, 2026 · 2 files

db51a8658c11

net/smc: stop killed, freed and out_of_sync sharing a byte

Hidayath Khan · Aug 20, 2026 · 1 files

c924884743e9

net/smc: fix use-after-free in smc_rx_pipe_buf_release()

Hidayath Khan · Aug 20, 2026 · 1 files

132a02beb46f

netfilter: nf_tables: set on dead bit when performing early element removal

Pablo Neira Ayuso · Aug 20, 2026 · 1 files

3ba97ff4f873

octeontx2-vf: fix workqueue and netdev race in probe/remove

Anshumali Gaur · Aug 20, 2026 · 1 files

6fe7e31a45e3

net: airoha: npu: fix missing streaming DMA mask

Daniel Pawlik · Aug 20, 2026 · 1 files

a9c2f0d401fd

spi: loongson: pm: add .freeze .poweroff .thaw .restore

Li Jun · Aug 20, 2026 · 1 files

137b8ae233ca

net_sched: sch_fq: fix pacing delay underflow with pacing offload

Eric Dumazet · Aug 20, 2026 · 1 files

11efd7963dac

net: hibmcge: fix page_pool DMA direction mismatch

Jian Shen · Aug 20, 2026 · 1 files

719296c4aa82

net/smc: fix socket refcount leak in smc_switch_conns()

Hidayath Khan · Aug 20, 2026 · 1 files

7cbfb180945c

net/sched: sch_cake: fix autorate reconfiguration throttling

Giuseppe Piscitelli · Aug 20, 2026 · 1 files

ec518a7c4ba1

net: macb: drop CONFIG_OF #if block

Théo Lebrun · Aug 20, 2026 · 1 files

039f248a6cc1

net: page_pool: Remove zone/policy GFP flags when allocating XArray entries

Rong Zhang · Aug 20, 2026 · 1 files

af20e269f745

net: l2tp: do not propagate multicast notification errors

Zihan Xi · Aug 20, 2026 · 1 files

7617cc05df28

ACPI: scan: Do not combine resources that overlap completely

Rafael J. Wysocki · Aug 20, 2026 · 1 files

a66734a1c5e3

net: qualcomm: rmnet: restore skb->dev on deaggregated frames

Xiang Mei · Aug 20, 2026 · 1 files

8fa4804fe62c

NFSv4.1: zero referring call lists before decoding

Jérémy Jean · Aug 20, 2026 · 1 files

a70859cf3121

bnxt_en: Gate TPH enablement behind BNXT_SUPPORTS_QUEUE_API check

Thomas Walsh · Aug 20, 2026 · 1 files

a9355799343e

Bluetooth: hci_uart: Fix false success return in hci_uart_setup()

Gongwei Li · Aug 21, 2026 · 2 files

2d83aa65dc98

selftests/net: fix kill() argument order and wrapper cleanup in fin_ack_lat

Qingshuang Fu · Aug 21, 2026 · 2 files

11e41444a3f6

selftests/net: check fork() return value in fin_ack_lat

Qingshuang Fu · Aug 21, 2026 · 1 files

403f96c32c9e

openvswitch: Fix CT limit teardown use-after-free

Yuqi Xu · Aug 21, 2026 · 4 files

777dbc9914b2

ptp: netc: fix period truncation and potential divide-by-zero in PEROUT

Wei Fang · Aug 21, 2026 · 1 files

622d698df423

bnxt_en: Fix call to hardware monitoring event handler

Guenter Roeck · Aug 21, 2026 · 1 files

9edf8d4876e8

octeontx2-af: Fix TL3/TL2 link config ENA clearing

Naveen Mamindlapalli · Aug 21, 2026 · 1 files

317fe168f4c0

net: stmmac: fix device node reference leaks in stmmac_mtl_setup()

Md Rabbani · Aug 21, 2026 · 1 files

5d3fe91b70e7

mm/vmscan: fix comment logic in balance_pgdat

Enlin Mu · Aug 21, 2026 · 1 files

9e94d8e14ae4

net: enetc: restore RX ring congestion mode after ring reconfiguration

Wei Fang · Aug 21, 2026 · 3 files

fa1a8457b858

net: enetc: restore RX ring congestion mode for ENETC v4

Wei Fang · Aug 21, 2026 · 1 files

5c07193ebe47

net: ethernet: renesas: rswitch: fix device_node refcount leak in rswitch_get_port_node()

Manush Prajwal · Aug 21, 2026 · 1 files

3b11a77f6998

octeontx2-af: fix cn20k mailbox lifetime on repeated rvu_mbox_init()

Sai Krishna · Aug 21, 2026 · 3 files

fc04229727d8

netfilter: nf_tables: remove leftover set_update_list

Pablo Neira Ayuso · Aug 21, 2026 · 1 files

b09a0503c755

octeontx2-pf: fix NULL deref of af_xdp_zc_qidx on rep setup

Suman Ghosh · Aug 21, 2026 · 3 files

80230a18c164

net/iucv: filter frames in afiucv_hs_rcv() by ingress device

Alexandra Winter · Aug 21, 2026 · 1 files

5b483f7791b0

net/sched: act_ife: Only operate on Ethernet frames

Victor Nogueira · Aug 21, 2026 · 2 files

2c7493f98014

net: mana: Cap MSI-X vectors to the device MSI-X table size

Long Li · Aug 21, 2026 · 1 files

9e32ec53b1ec

maple_tree: add rcu locking check when LOCKDEP is enabled

Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files

8f2109843137

locking/lockdep: add sequence counter to held_lock

Liam R. Howlett (Oracle) · Aug 21, 2026 · 4 files

19e269917dc4

maple_tree: add write lock checking with lockdep sequence numbers

Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files

5e0b9b71bcf4

maple_tree: documentation fix

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

acac9108a6a1

maple_tree: drop dead code from mas_extend_spanning_null()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

3526e09d8cab

maple_tree: drop MAPLE_ALLOC_SLOTS

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

7d1e34352727

maple_tree: clarify comments on mas_nomem()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

4bd59d5bc2c8

maple_tree: use prefetched value in mas_wr_store_type()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

88f87f881240

maple_tree: optimise mas_wr_node_store() when not in rcu mode

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

f0a3892cd726

maple_tree: micro optimisation of mas_wr_store_type()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

cf1f9bae5dac

maple_tree: add bulk parent set helper

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

35f1342e5b89

maple_tree: catch race in mas_alloc_cyclic()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

3f06ef1f34a7

maple_tree: document that erase may use GFP_KERNEL for allocations

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

f1681380b5f9

maple_tree: avoid mas_erase() and mtree_erase() failures

Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files

ee2487d9ba6c

maple_tree: document erase and allocations better

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

18d4f8e6e6ce

maple_tree: change two GFP flags in tests

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

00f67814a14e

maple_tree: fix argument name in header

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

4e4fe9d7271e

maple_tree: avoid extra gap calculation

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

d17c749d32b2

maple_tree: add helper mas_make_walkable()

Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files

1476cca098f6

dma-contiguous: fix truncation of numa_cma / cma_pernuma sizes >= 2G

Alexander Graf · Aug 21, 2026 · 1 files

0e0ac326c511

memcg: move LRU size accounting on reparenting instead of copying it

Shakeel Butt · Aug 22, 2026 · 2 files

d4f484661961

net/rds: use wq_has_sleeper() in rds_cong_map_updated()

Allison Henderson · Aug 22, 2026 · 1 files

3220b62fbb8a

net: fix a resource leak in copy_net_ns() error handling path

Tetsuo Handa · Aug 22, 2026 · 1 files

f967455fb2a5

seg6: reset IP6CB after IPv6 decapsulation

Zhiling Zou · Aug 22, 2026 · 1 files

0dbc2398fca3

openvswitch: only skb_tx_error() a packet we are about to drop

Norbert Szetei · Aug 22, 2026 · 1 files

8ece90615012

net: skbuff: don't skb_tx_error() the source skb in skb_zerocopy()

Norbert Szetei · Aug 22, 2026 · 1 files

f66bdb1cc0fc

net: skbuff: don't touch shared zerocopy state in skb_tx_error()

Norbert Szetei · Aug 22, 2026 · 1 files

916b61abba58

powercap: intel_rapl: Fix kernel panic during PMU unbind

Sumeet Pawnikar · Aug 22, 2026 · 1 files

c27c449d455a

virtio-net: Ensure that TCP packets don't overflow gso_segs

Alice Mikityanska · Aug 22, 2026 · 1 files

0b13256ce37b

net: Guard for gso_segs overflow in skb_segment

Alice Mikityanska · Aug 22, 2026 · 1 files

dc170da3347e

selftests: net: Wait for netserver to launch

Alice Mikityanska · Aug 22, 2026 · 1 files

bb42c16f489f

selftests: net: Lower threshold on debug kernels for big_tcp_tunnels.sh

Alice Mikityanska · Aug 22, 2026 · 1 files

f7d0400bd345

selftests: net: Lower threshold with csum offload off in big_tcp_tunnels.sh

Alice Mikityanska · Aug 22, 2026 · 1 files

1d62b83fb751

selftests: net: Fix slow configurations in big_tcp_tunnels.sh

Alice Mikityanska · Aug 22, 2026 · 1 files

ebe6674292fd

Bluetooth: RFCOMM: serialize session teardown

Chengfeng Ye · Aug 22, 2026 · 1 files

759c185d0bbd

Bluetooth: RFCOMM: serialize security confirmation handling

Chengfeng Ye · Aug 22, 2026 · 1 files

728836ebca23

vsock/virtio: flush works in dependency order

Chengfeng Ye · Aug 22, 2026 · 1 files

709f34f7c28d

net/sched: fq: add overflow bounds to quantum and initial quantum

Jamal Hadi Salim · Aug 22, 2026 · 1 files

d9ebd8f9aa8b

net/sched: fq_codel: clamp default quantum and mtu

Jamal Hadi Salim · Aug 22, 2026 · 1 files

6439461f1618

net/sched: sch_codel: clamp default mtu to avoid disabling CoDel

Jamal Hadi Salim · Aug 22, 2026 · 1 files

c86cd7ed0b0e

net/sched: fq_pie: clamp default quantum to avoid signed overflow

Jamal Hadi Salim · Aug 22, 2026 · 1 files

2164b512b97b

net/sched: hhf: clamp quantum before hhf_change() to avoid overflow

Jamal Hadi Salim · Aug 22, 2026 · 1 files

816e90057ab1

net/sched: sfq: clamp quantum to avoid signed overflow soft lockup

Jamal Hadi Salim · Aug 22, 2026 · 1 files

94ad9e114a1c

net/tcp: fix TCP-AO key deletion in VRFs

Rastislav Szabo · Aug 22, 2026 · 1 files

687e5b48c4f5

selftests: net: tcp_ao: test VRF-scoped key deletion

Rastislav Szabo · Aug 22, 2026 · 3 files

b17cf742eaad

tls: device: fix out-of-bounds write in tls_append_frag()

Jiayuan Chen · Aug 23, 2026 · 1 files

03b4702fc5e3

net: phy: air_en8811h: move LED GPIO configuration to config_init

Vitaliy Sochnev · Aug 23, 2026 · 1 files

2db9bfa3e27b

sctp: fix NULL deref on untransmitted RECONF completion

Weiming Shi · Aug 23, 2026 · 1 files

81d0d1e64f30

net/sched: act_skbmod: fix length calculations and avoid invalid header warnings

Eric Dumazet · Aug 23, 2026 · 1 files

00e11ee9831b

net: core: check skb_frags_readable before uncloning in skb_copy_ubufs

Mina Almasry · Aug 23, 2026 · 1 files

97148bcb7511

net: core: fix head-page leak in skb_zerocopy

Mina Almasry · Aug 23, 2026 · 1 files

cec261b0b4c5

net/smc: release the internal TCP sock on IPPROTO_SMC socket creation failure

Yifei Chu · Aug 24, 2026 · 1 files

ca0583c24661

Bluetooth: btusb: limit RTL8761B BROKEN_EXT_SCAN quirk to 0bda:a728

Junjie Cao · Aug 24, 2026 · 2 files

63c885688f38

net: wangxun: use BIT_ULL() to prevent shift overflow on 32-bit archs

Jiawen Wu · Aug 24, 2026 · 2 files

ab0304fd69b0

verification/rvgen: Use .old instead of .bak for kunit backup files

Gabriele Monaco · Aug 24, 2026 · 3 files

63f44178f0a0

sctp: distinguish sequence zero from wildcard in reconf lookup

Jun Yang · Aug 24, 2026 · 1 files

3faf13aff243

sctp: fix stream->outcnt underflow on duplicate RECONF responses

Jun Yang · Aug 24, 2026 · 2 files

9c24a504a3af

net: stmmac: drop gso_enabled_types and rely on netdev features

Lorenzo Bianconi · Aug 24, 2026 · 2 files

2c4e7c42d77e

slip: fix use-after-free in sl_sync()

Aleksandr Khromov · Aug 24, 2026 · 1 files

991c2be78257

net: ethernet: sun4i-emac: Fix IRQ error handling

bui duc phuc · Aug 24, 2026 · 1 files

7e1e4047200f

Bluetooth: do not leak an hci_conn when a second LE connect is rejected

Radek Podgorny · Aug 24, 2026 · 1 files

dc4b95b8fee9

net/sched: sch_teql: restore skb->dev on the slave failure path

Victor Nogueira · Aug 24, 2026 · 1 files

23680bf5f8c6

net: stmmac: restore NET_IP_ALIGN in the RX DMA offset

Pascal Kneuper · Aug 24, 2026 · 1 files

88c71cc0ad98

net: dsa: mxl862xx: enable assisted learning on CPU port

Edoardo Pinci · Aug 24, 2026 · 1 files

1087c29d9c5f

Revert "thermal/core: Use the thermal class pointer as init guard"

Rafael J. Wysocki · Aug 24, 2026 · 1 files

aa4174127fe6

Revert "thermal/core: Allocate the thermal class dynamically"

Rafael J. Wysocki · Aug 24, 2026 · 1 files

3daad923a868

apparmor: policy_int make sure list heads are initialized before fail path

John Johansen · Aug 24, 2026 · 1 files

ea30dc5267e3

tcp: fix AO info use-after-free in tcp_ao_connect_init()

Qing Ming · Aug 25, 2026 · 1 files

8f735d64382d

net/sched: bound qdisc_pkt_len to prevent qdisc soft lockup

Jamal Hadi Salim · Aug 25, 2026 · 2 files

82aeed240078

net: fix spurious TX timeout after dev_activate()

Breno Leitao · Aug 25, 2026 · 1 files

9a56a27e6002

net: stmmac: selftests: Pass the IP proto mask in the TC selftest

Maxime Chevallier · Aug 25, 2026 · 1 files

00eeab0c644a

bnxt_en: Write doorbell when linearizing skb fails

Joe Damato · Aug 26, 2026 · 1 files

50e5c6605cc9

net: bridge: mcast: fix use-after-free of a master VLAN's multicast context

Norbert Szetei · Aug 26, 2026 · 1 files

dd890ae29299

net: fec: only stop PTP if it was initialized

bui duc phuc · Aug 26, 2026 · 1 files

23c53269f2ba

slip: remove slip_hangup() to fix use-after-free in slip_receive_buf()

Eric Dumazet · Aug 26, 2026 · 1 files

fe66c3ff85e8

of/irq: Fix device node refcount leak in of_irq_get_affinity()

Fuad Tabba · Aug 26, 2026 · 1 files

a60fd8c6dbaa

usb: atm: usbatm: fix invalid ci_range initialization

Deepanshu Kartikey · Aug 26, 2026 · 1 files

d29b399150b0

net: stmmac: selftests: Check multiple MMC counters

Maxime Chevallier · Aug 26, 2026 · 1 files

9698b6da3714

net: stmmac: dwmac1000: Account for the primary MAC address for UC filtering

Maxime Chevallier · Aug 26, 2026 · 1 files

82187f42c014

net: stmmac: dwmac4: Account for the primary MAC address for UC filtering

Maxime Chevallier · Aug 26, 2026 · 1 files

2739d6f9a2b8

net: stmmac: dwxgmac: Account for the primary MAC address for UC filtering

Maxime Chevallier · Aug 26, 2026 · 1 files

cd8c3b2752c6

net: stmmac: selftests: Account for the UC filter list for filtering tests

Maxime Chevallier · Aug 26, 2026 · 1 files

96e8cb5527ce

net: stmmac: selftests: Don't test flow control for small rx fifos

Maxime Chevallier · Aug 26, 2026 · 1 files

ce2b807f42ed

tcp: fix corruption of urgent data on multi-segment retransmit

Jiayuan Chen · Aug 26, 2026 · 1 files

6a7e91f890ec

selftests/net: packetdrill: add tcp_urg_ptr_retransmit

Jiayuan Chen · Aug 26, 2026 · 1 files

729c4896ab82

net/sched: sch_htb: limit htb_classify inner-class filter hops

Jamal Hadi Salim · Aug 26, 2026 · 1 files

d5dc1e69fd72

inet: frags: strip GSO state from fragments before reassembly

Xinyang Ge · Aug 27, 2026 · 1 files