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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
New SoC clock controller drivers: Amlogic A9, Rockchip RV1106, ESWIN EIC7700, UltraRISC DP1000, Cix Sky1, and more
Clock controller drivers were added for Amlogic A9 (always-on and peripherals), Rockchip RV1106/RV1103, ESWIN EIC7700 high-speed peripherals, UltraRISC DP1000 RISC-V SoC, Cix Sky1 audio subsystem, Mobileye EyeQ7H, Allwinner A733 RTC, Renesas R-Car X5H, and Si549 programmable oscillator. SCMI clock driver gained vendor-specific OEM extension support for i.MX95.
Why it matters: These advance mainline kernel support for a diverse range of ARM and RISC-V SoC platforms, enabling proper clock management for their subsystems.
d425596035b333972977d632713e4d54ff73fc8c21a2b5243948a36be42b3730fe6032d9c74d7d80218e0a136efc0fc288656a46dfa3bdba63b59897a73edd3ed8d3
RK3588 display clock no longer breaks UART and peripherals
The dclk_vop2_src clock had CLK_SET_RATE_PARENT set, causing PLL rate changes that disrupted UART console, I2S, and SPDIF. The flag was removed and VP2 was given the same parent-switching flexibility as other video ports. Separately, RK3588/RK3576 fractional PLL rate calculation was corrected—the coefficient was treated as unsigned and divided by 65535 instead of 65536.
Why it matters: RK3588 board users no longer experience console breakage or peripheral failures when the display pipeline is configured. Fractional PLL rates are now correct, important for future DisplayPort pixel clock support.
LED and thermal hardware support additions
New drivers were added for Silergy SY7758 6-channel LED backlight (Ayaneo Pocket S2), LTC3220 18-channel LED driver, and PCA963x multicolor LED grouping. Airoha AN7583 thermal sensor support was added. Qualcomm MBG (Master Bandgap) thermal monitoring driver for PM8775 PMIC was introduced. Netdev LED trigger was extended to 100G link speeds.
Why it matters: Linux gains support for more LED controllers and thermal sensors across consumer and networking hardware. High-speed network interfaces can now reflect link speeds up to 100G via the netdev LED trigger.
110d67699a433c28d9d0b7e0160c78e69c3bb20d9782756a5d901d7d10027ddc04d1bd08
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.
MDM9607 clock driver fixes prevent crashes from incorrect clock definitions
Several clock definitions (apss_tcu_clk_src, system_noc_bfdcd_clk_src, BIMC PLL) were incorrectly copied from MSM8916 and caused register read/write failures or crashes on MDM9607. The halt_reg for gcc_apss_axi_clk was fixed and USB PHY reset delay was increased. BLSP sleep clock enable was corrected for MSM8916/MSM8939/MDM9607.
Why it matters: Prevents crashes and incorrect behavior on MDM9607 modems by removing clock definitions for hardware that does not exist on this SoC. Sleep clock gating is fixed on several older Qualcomm platforms.
QCM2290 UART console output preserved during clock driver probe
QUP wrap0 clock sources were switched to clk_rcg2_shared_no_init_park_ops so their bootloader-configured frequency is not reparked to XO at registration time, which was dropping early console output. QCM2290 GDSC power domain fixes address status polling, register context retention, and wait value configuration for display and GPU.
Why it matters: QCM2290-based devices no longer lose serial console output between bootloader handoff and serial driver probing. Display and GPU power domain failures are prevented.
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.
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.
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.
Source commits893 entries +
apparmor: make MEDIATES_AF_UNIX its own fn
John Johansen · Jun 17, 2018 · 3 files
apparmor: refactor network sock mediation in preparation for inet mediation
John Johansen · Oct 9, 2021 · 6 files
apparmor: refactor xattr attachment, to take the file path
John Johansen · Jun 25, 2023 · 1 files
apparmor: Initial support for compressed policies
Maxime Bélair · Feb 1, 2024 · 5 files
apparmor: fix race condition in label replacement
John Johansen · Apr 19, 2024 · 1 files
apparmor: add audit mode to provide a mechanism to silence complain messages
John Johansen · Aug 4, 2025 · 4 files
reset: eyeq: Add EyeQ7H compatibles
Benoît Monin · Aug 21, 2025 · 1 files
clk: eyeq: Prefix the PLL registers with the PLL type
Benoît Monin · Sep 3, 2025 · 1 files
dt-bindings: soc: mobileye: Add EyeQ7H OLB
Benoît Monin · Sep 25, 2025 · 2 files
clk: fixed-factor: Rework initialization with parent clocks
Benoît Monin · Oct 20, 2025 · 1 files
clk: fixed-factor: Export __clk_hw_register_fixed_factor()
Benoît Monin · Oct 20, 2025 · 2 files
clk: eyeq: Introduce a generic clock type
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Convert clocks declaration to eqc_clock
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Drop PLL, dividers, and fixed factors structs
Benoît Monin · Dec 10, 2025 · 1 files
clk: eyeq: Add EyeQ7H compatibles
Benoît Monin · Dec 11, 2025 · 1 files
apparmor: move netfilter functions next to the LSM network operations
John Johansen · Jan 8, 2026 · 1 files
apparmor: move sock_rcv_skb() next to inet_conn_request
John Johansen · Feb 9, 2026 · 1 files
apparmor: fix net.h and policy.h circular include pattern
Ryan Lee · Feb 12, 2026 · 5 files
apparmor: make include headers self-contained
Ryan Lee · Feb 13, 2026 · 7 files
clk: rockchip: rk3588: Don't change PLL rates when setting dclk_vop2_src
Heiko Stuebner · Mar 4, 2026 · 1 files
clk: rockchip: rk3588: Allow VP2 the same sourcing options as other VPs
Heiko Stuebner · Mar 4, 2026 · 1 files
Bluetooth: RFCOMM: Validate MTU in rfcomm_apply_pn() to prevent infinite loop
Hyunwoo Kim · Mar 19, 2026 · 1 files
net: ionic: Fetch RCQ sign bit from firmware
Abhijit Gangurde · Apr 17, 2026 · 1 files
clk: qcom: gdsc: Add custom disable callback for GX GDSC
Jagadeesh Kona · Apr 27, 2026 · 2 files
clk: qcom: gxclkctl: Use custom disable callback for gx_gdsc
Taniya Das · Apr 27, 2026 · 1 files
clk: qcom: common: ensure runtime PM suspend completes on probe
Taniya Das · Apr 27, 2026 · 1 files
clk: qcom: gxclkctl: Remove GX/GMxC rail votes to align with IFPC
Taniya Das · Apr 27, 2026 · 1 files
MAINTAINERS: Add Intel LPSS section to follow the changes
Andy Shevchenko · Apr 29, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Add compatible for Shikra
Komal Bajaj · May 1, 2026 · 1 files
clk: imx: scu: drop redundant init.ops variable assignment
Brian Masney · May 6, 2026 · 1 files
clk: add clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 2 files
clk: hisilicon: hi3660-stub: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: imx: scu: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: rpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: rpmh: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: qcom: smd-rpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: renesas: rzg2l-cpg: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: rp1: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: samsung: acpm: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: scpi: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: sprd: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
phy: mediatek: phy-mtk-hdmi-mt2701: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
pmdomain: mediatek: airoha: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
pmdomain: mediatek: mtk-mfg: use clk_determine_rate_noop()
Brian Masney · May 6, 2026 · 1 files
clk: hisilicon: allow COMPILE_TEST builds
Rosen Penev · May 9, 2026 · 2 files
apparmor: fix unconfined user namespace restriction forced stack
John Johansen · May 9, 2026 · 1 files
apparmor: fix alternate loaders ability to load compressed policy
John Johansen · May 10, 2026 · 1 files
clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller
Min zhang · May 12, 2026 · 1 files
clk: add kernel docs for the core flags
Brian Masney · May 12, 2026 · 1 files
clk: add kernel docs for struct clk_core
Brian Masney · May 12, 2026 · 1 files
docs: clk: include some identifiers to keep documentation up to date
Brian Masney · May 12, 2026 · 1 files
clk: test: convert constants to use HZ_PER_MHZ
Brian Masney · May 12, 2026 · 1 files
clk: add missing function short descriptions for kernel-doc
Randy Dunlap · May 12, 2026 · 1 files
clk: qcom: gcc-sm6115: Set HW_CTRL_TRIGGER for video GDSC
Dmitry Baryshkov · May 15, 2026 · 1 files
clk: si5341: Drop unused i2c driver_data
Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 1 files
clk: Use named initializers for arrays of i2c_device_data
Uwe Kleine-König (The Capable Hub) · May 15, 2026 · 11 files
clk: stm32: add missing bitfield.h header
Rosen Penev · May 19, 2026 · 2 files
leds: trigger: netdev: Extend speeds up to 100G
Mike Marciniszyn (Meta) · May 20, 2026 · 2 files
clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation
Joey Lu · May 21, 2026 · 1 files
clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc
Joey Lu · May 21, 2026 · 1 files
clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic
Joey Lu · May 21, 2026 · 1 files
clk: mediatek: mt8196: Select REGMAP_MMIO for vlpckgen
Akari Tsuyukusa · May 22, 2026 · 1 files
tmpfs/ramfs: let memfd_create() work on nommu
Daniel Palmer · May 23, 2026 · 1 files
dt-bindings: clock: renesas: Add audio clock inputs for RZ/V2H family
John Madieu · May 25, 2026 · 1 files
clk: renesas: r9a09g047: Add audio clock and reset support
John Madieu · May 25, 2026 · 1 files
clk: moxart: remove unused variables, fix refcount leak
Alexander A. Klimov · May 26, 2026 · 1 files
clk: Use named initializers for platform_device_id arrays
Uwe Kleine-König (The Capable Hub) · May 28, 2026 · 4 files
dt-bindings: leds: backlight: Document the SY7758 6-channel High Efficiency LED Driver
Neil Armstrong · May 29, 2026 · 1 files
backlight: Add SY7758 6-channel High Efficiency LED Driver support
KancyJoe · May 29, 2026 · 3 files
clk: bcm: kona: Stop defaulting to parent index 0 on error
Yu-Chun Lin · May 31, 2026 · 1 files
netfilter: tproxy: use DEBUG_NET_WARN_ON_ONCE for protocol fallbacks
Fernando Fernandez Mancera · Jun 1, 2026 · 2 files
netfilter: conncount: use DEBUG_NET_WARN_ON_ONCE on reaching count limit
Fernando Fernandez Mancera · Jun 1, 2026 · 1 files
clk: zynq: handle kasprintf() failure in periph_clk registration
William Theesfeld · Jun 1, 2026 · 1 files
clk: tegra: Support unique names for multi-socket platforms
Jon Hunter · Jun 2, 2026 · 1 files
clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister()
Herman van Hazendonk · Jun 2, 2026 · 1 files
clk: divider: Add KUnit tests for clk_divider_bestdiv() ULONG_MAX handling
Lad Prabhakar · Jun 2, 2026 · 4 files
clk: divider: Fix clk_divider_bestdiv() returning min rate for large rate requests
Lad Prabhakar · Jun 2, 2026 · 2 files
clk: renesas: r9a08g046: Add clock and reset entries for SDHI
Biju Das · Jun 3, 2026 · 1 files
clk: imx: Add audio PLL debugfs for K-divider control
Jacky Bai · Jun 4, 2026 · 3 files
clk: renesas: r9a08g046: Add clock and reset entries for GE3D
Biju Das · Jun 4, 2026 · 1 files
dt-bindings: clock: Add ESWIN eic7700 HSP clock and reset generator
Xuyang Dong · Jun 5, 2026 · 4 files
clk: eswin: Add eic7700 HSP clock driver
Xuyang Dong · Jun 5, 2026 · 3 files
reset: eswin: Add eic7700 HSP reset driver
Xuyang Dong · Jun 5, 2026 · 3 files
leds: pwm-multicolor: Introduce default-intensity property
Jonas Rebmann · Jun 5, 2026 · 1 files
clk: eswin: Add CLK_IGNORE_UNUSED to NoC clock
Xuyang Dong · Jun 5, 2026 · 1 files
clk: clocking-wizard: fix integer overflow in rate calculation
Pavel Löbl · Jun 5, 2026 · 1 files
drivers/clk/clk_test: Use strscpy() to copy the test description
David Laight · Jun 6, 2026 · 1 files
SUNRPC: check rpc_sockaddr2uaddr() return value in rpcb_register_inet4/6
Weiming Shi · Jun 7, 2026 · 1 files
clk: kirkwood: use kzalloc_flex
Rosen Penev · Jun 8, 2026 · 1 files
mfd: si476x: Modernize GPIO handling
Linus Walleij · Jun 8, 2026 · 5 files
mfd: cs42l43: Use new SoundWire enumeration helper
Charles Keepax · Jun 8, 2026 · 4 files
clk: qcom: smd-rpm: Add missing RF_CLK1/RF_CLK2 clocks support on Agatti
Imran Shaik · Jun 8, 2026 · 1 files
clk: qcom: Add Global clock controller support on Qualcomm Shikra SoC
Imran Shaik · Jun 8, 2026 · 3 files
dt-bindings: mfd: syscon: Disallow simple-bus with syscon
Krzysztof Kozlowski · Jun 8, 2026 · 1 files
dt-bindings: mfd: syscon: Drop custom select for older dtschema
Krzysztof Kozlowski · Jun 8, 2026 · 2 files
platform/chrome: cros_ec_proto: Introduce cros_ec_read_features helper
Andrei Kuchynski · Jun 8, 2026 · 2 files
mfd: cros_ec: Read EC features during probe to catch transfer error
Andrei Kuchynski · Jun 8, 2026 · 1 files
dt-bindings: mfd: qcom,spmi-pmic: Document PMG1110
Fenglin Wu · Jun 10, 2026 · 1 files
clk: qcom: gcc-ipq5424: drop the CLK_IGNORE_UNUSED flag
Kathiravan Thirumoorthy · Jun 10, 2026 · 1 files
maple_tree: remove undocumented CONFIG_MAPLE_RCU_DISABLED macro
Ethan Nelson-Moore · Jun 10, 2026 · 1 files
mfd: ipaq-micro: Fix out-of-bounds stack read in ipaq_micro_str
Dmitry Torokhov · Jun 10, 2026 · 1 files
mm: fix CONFIG_STACK_GROWSUP typo in tools/testing/vma/include/dup.h
Ethan Nelson-Moore · Jun 11, 2026 · 1 files
sunrpc: xprtsock: annotate shared socket callbacks with READ_ONCE/WRITE_ONCE
Runyu Xiao · Jun 11, 2026 · 1 files
mfd: axp20x: Preserve other control bits when powering off
Oleg Proshkin · Jun 11, 2026 · 1 files
dt-bindings: clock: Add spread spectrum definition
Peng Fan · Jun 12, 2026 · 1 files
clk: Introduce clk_hw_set_spread_spectrum
Peng Fan · Jun 12, 2026 · 2 files
clk: conf: Support assigned-clock-sscs
Peng Fan · Jun 12, 2026 · 1 files
clk: Add KUnit tests for assigned-clock-sscs
Peng Fan · Jun 12, 2026 · 17 files
clk: scmi: Introduce common header for SCMI clock interface
Peng Fan · Jun 12, 2026 · 2 files
clk: scmi: Add i.MX95 OEM extension support for SCMI clock driver
Peng Fan · Jun 12, 2026 · 4 files
clk: at91: Read "reg" with helper
Rob Herring (Arm) · Jun 12, 2026 · 1 files
clk: at91: Read "reg" with helper
Rob Herring (Arm) · Jun 12, 2026 · 1 files
dt-bindings: clock: exynos990: Add CLK_GOUT_PERIS_TMU_SUB_PCLK
Denzeel Oliva · Jun 13, 2026 · 1 files
clk: samsung: exynos990: Add PERIS TMU_SUB_PCLK gate
Denzeel Oliva · Jun 13, 2026 · 1 files
clk: samsung: exynos990: Fix PERIS gate clock parents
Denzeel Oliva · Jun 13, 2026 · 1 files
dt-bindings: mfd: 88pm886: Allow vbus regulator
Duje Mihanović · Jun 13, 2026 · 1 files
mfd: 88pm886: Initialize the battery page
Duje Mihanović · Jun 13, 2026 · 2 files
clk: renesas: cpg-mssr: Implement dedicated MSTP delay logic for RZ/T2H LCDC and RTC
Lad Prabhakar · Jun 15, 2026 · 1 files
dt-bindings: clock: renesas,r9a09g077/87: Add LCDC_CLKD clock ID
Lad Prabhakar · Jun 15, 2026 · 2 files
dt-bindings: clock: renesas,r9a09g077/87: Add PCLKRTC clock ID
Lad Prabhakar · Jun 15, 2026 · 2 files
clk: renesas: r9a09g077: Add RTC clocks
Lad Prabhakar · Jun 15, 2026 · 1 files
clk: renesas: r9a08g046: Add USB2.0 clock and reset entries
Biju Das · Jun 16, 2026 · 1 files
mfd: mt6397-core: Add mt6323 EFUSE support
Roman Vivchar · Jun 17, 2026 · 1 files
clk: qcom: gcc-glymur: Move EVA clocks to critical clock list
Taniya Das · Jun 17, 2026 · 1 files
clk: qcom: Add EVA clock controller driver for Glymur SoC
Taniya Das · Jun 17, 2026 · 3 files
NFS: Return a delegation the client fails to record
Chuck Lever · Jun 17, 2026 · 1 files
clk: canaan: Clear rate fields before reprogramming dividers
David Carlier · Jun 18, 2026 · 1 files
clk: clk-lmk04832: Simplify device abstraction
Uwe Kleine-König (The Capable Hub) · Jun 18, 2026 · 1 files
clk: renesas: rzv2h-cpg: Use per-SoC PLL reference frequency for calculations
Lad Prabhakar · Jun 18, 2026 · 2 files
clk: renesas: rzv2h-cpg: Extract PLL calculation helpers into shared library
Lad Prabhakar · Jun 18, 2026 · 5 files
clk: renesas: r9a09g077: Add LCDC and PLL3 clock support for RZ/T2H display pipeline
Lad Prabhakar · Jun 18, 2026 · 2 files
MAINTAINERS: Add a mailing list entry to MFD
Lee Jones · Jun 19, 2026 · 1 files
dt-bindings: thermal: qcom-tsens: Document the Maili Temperature Sensor
Haritha S K · Jun 19, 2026 · 1 files
mfd: db8500-prcmu: Fold dbx500 header into db8500
Linus Walleij · Jun 19, 2026 · 12 files
leds: lp5860: Fix a potential double-unlock
Christophe JAILLET · Jun 20, 2026 · 1 files
leds: lp5860-spi: Fix an error handling path
Christophe JAILLET · Jun 20, 2026 · 1 files
nfs: replace atomic bitops sequence with clear_and_wake_up_bit helper
Arnaud Bonnet · Jun 22, 2026 · 1 files
nfs: refactor pNFS functions using clear_and_wake_up_bit
Arnaud Bonnet · Jun 22, 2026 · 1 files
dt-bindings: clock: Add Amlogic A9 AO clock controller
Jian Hu · Jun 23, 2026 · 2 files
clk: amlogic: Add A9 AO clock controller driver
Jian Hu · Jun 23, 2026 · 3 files
clk: versaclock7: Fix APLL clock leak on probe failure
Myeonghun Pak · Jun 23, 2026 · 1 files
clk: renesas: r9a09g047: Add LVDS clocks and resets
Tommaso Merciai · Jun 23, 2026 · 1 files
dt-bindings: clock: renesas,versaclock7: Update maintainer
Biju Das · Jun 23, 2026 · 2 files
clk: meson: align gxbb_32k_clk_sel number of parents with actual count
Martin Blumenstingl · Jun 23, 2026 · 1 files
NFSv4: remove callback IDR entry on client allocation failure
Ruoyu Wang · Jun 24, 2026 · 3 files
dt-bindings: clock: ast2700: add PECI clock
Ryan Chen · Jun 24, 2026 · 1 files
clk: aspeed: add AST2700 PECI clock
Ryan Chen · Jun 24, 2026 · 1 files
clk: mediatek: mt6735: Unregister PLLs on probe failure
Myeonghun Pak · Jun 24, 2026 · 1 files
clk: qcom: camcc-glymur: Add camera clock controller driver
Jagadeesh Kona · Jun 24, 2026 · 3 files
pnfs/blocklayout: Fix device leaks on parse failure
ZhangGuoDong · Jun 25, 2026 · 1 files
clk: tegra: set up proper EMC clock implementation for Tegra114
Svyatoslav Ryhel · Jun 25, 2026 · 1 files
clk: tegra: support 48MHz clock for pll_p_out1
Dmitry Osipenko · Jun 25, 2026 · 1 files
pNFS: report clora_changed in the cb_layoutrecall_file tracepoint
Benjamin Coddington · Jun 25, 2026 · 2 files
pNFS: honor clora_changed when recalling a layout
Benjamin Coddington · Jun 25, 2026 · 3 files
NFSv4/flexfiles: report cancelled I/O as a layout error
Benjamin Coddington · Jun 25, 2026 · 1 files
thermal/drivers/rcar: Fix error checking in probe()
Dan Carpenter · Jun 26, 2026 · 1 files
clk: samsung: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 2 files
clk: samsung: cpu: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 1 files
clk: samsung: pll: use kzalloc_flex
Rosen Penev · Jun 29, 2026 · 1 files
clk: clocking-wizard: Program PLL CP/RES and lock parameters on reconfig
Shubhrajyoti Datta · Jun 29, 2026 · 1 files
clk: mediatek: mt8135: Fix inverted gate control for devapc_ck
Akari Tsuyukusa · Jun 29, 2026 · 1 files
clk: qcom: Return expected ENOMEM error on dynamic allocation failure
Vladimir Zapolskiy · Jun 29, 2026 · 1 files
mm: mempolicy: fix automatic numa balancing for shmem
Johannes Weiner · Jun 29, 2026 · 1 files
clk: qcom: gcc-qcs8300: Use retention for PCIe power domains
Loic Poulain · Jun 29, 2026 · 1 files
clk: qcom: gcc-qcs8300: Use retention for USB power domains
Loic Poulain · Jun 29, 2026 · 1 files
clk: clocking-wizard: fix clock difference detection
Colin Foster · Jun 29, 2026 · 1 files
clk: clocking-wizard: optimize clock search
Colin Foster · Jun 29, 2026 · 1 files
clk: clocking-wizard: remove 20kHz restriction
Colin Foster · Jun 29, 2026 · 1 files
apparmor: refactor network socket mediation to support compatibility
John Johansen · Jun 29, 2026 · 1 files
clk: lan966x: Add MCHP_LAN966X_PCI dependency
Herve Codina · Jun 30, 2026 · 1 files
clk: spacemit: k3: fix parent clock of UFS aclk
Yixun Lan · Jun 30, 2026 · 1 files
dt-bindings: soc: spacemit: k3: Add clock ID for UFS refclk
Yixun Lan · Jun 30, 2026 · 1 files
clk: spacemit: k3: Add UFS refclk clock
Yixun Lan · Jun 30, 2026 · 1 files
apparmor: push inet mediation into profile callbacks, and improve auditing
John Johansen · Jun 30, 2026 · 2 files
thermal/drivers/armada: Use bitfield and bitmask macros
Bryan B. Lima · Jul 1, 2026 · 1 files
apparmor: reserve mediation class for packet mediation
John Johansen · Jul 1, 2026 · 2 files
clk: qcom: Don't use all caps for Glymur GPUCC
Luca Weiss · Jul 1, 2026 · 1 files
dt-bindings: clock: Add Amlogic A9 peripherals clock controller
Jian Hu · Jul 1, 2026 · 2 files
clk: amlogic: Add A9 peripherals clock controller driver
Jian Hu · Jul 1, 2026 · 3 files
apparmor: fix error handling for copy_from_user in policy_update
John Johansen · Jul 1, 2026 · 1 files
dt-bindings: clock: si544: add si549 compatible
Pavel Löbl · Jul 1, 2026 · 1 files
clk: si544: add support for si549
Pavel Löbl · Jul 1, 2026 · 2 files
mfd: sprd-sc27xx: Add SC2730 regulator cell
Otto Pflüger · Jul 1, 2026 · 1 files
dt-bindings: mfd: mediatek,mt8195-scpsys: Add support for MT8189 SoC
Louis-Alexis Eyraud · Jul 1, 2026 · 1 files
mm: nommu: point to the write iterator upon split_vma
Hajime Tazaki · Jul 2, 2026 · 1 files
NFS: fix folio dereference before NULL check in nfs_inode_remove_request()
Jiangshan Yi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Fix copy paste error on clamp_t low temp
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Fix copy paste error for sen internal
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Convert to regmap API
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Generalize probe function
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Generalize get_thermal_ADC and set_mux function
Christian Marangi · Jul 2, 2026 · 1 files
dt-bindings: arm: airoha: Add the chip-scu node for AN7583 SoC
Christian Marangi · Jul 2, 2026 · 1 files
thermal/drivers/airoha: Add support for AN7583 Thermal Sensor
Christian Marangi · Jul 2, 2026 · 1 files
mfd: Drop unused assignment of spi_device_id driver data
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files
mfd: Initialize spi_device_id arrays using member names
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 8 files
mfd: Unify style of spi_device_id arrays
Uwe Kleine-König (The Capable Hub) · Jul 2, 2026 · 3 files
dt-bindings: clock: qcom: Add Hawi video clock controller
Lin Li · Jul 2, 2026 · 2 files
clk: qcom: Add support for VideoCC driver for Hawi
Lin Li · Jul 2, 2026 · 3 files
mm/zswap: use ratelimited stats flush in zswap_shrinker_count()
Yunzhao Li · Jul 2, 2026 · 1 files
leds: st1202: Stop pattern sequence before reprogramming
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Validate pattern input before stopping the sequence
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Fix pattern duration prescaler and pattern_clear skip marker
Manuel Fombuena · Jul 2, 2026 · 2 files
leds: st1202: Set all pattern PWM slots to full after clearing pattern
Manuel Fombuena · Jul 2, 2026 · 1 files
batman-adv: bla: avoid CRC corruption due to parallel claim add
Sven Eckelmann · Jul 2, 2026 · 1 files
leds: st1202: Fix spurious pattern sequence start in setup
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Fix brightness having no effect while pattern mode is active
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Disable channel when brightness is set to zero
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Validate LED reg property against channel count
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: st1202: Correct and extend hw_pattern documentation
Manuel Fombuena · Jul 2, 2026 · 1 files
leds: pca9532: Fix inverted GPIO output polarity
Cosmo Chou · Jul 3, 2026 · 1 files
dt-bindings: clock: qcom,a53pll: Add IPQ5210 compatible
Varadarajan Narayanan · Jul 3, 2026 · 1 files
clk: qcom: apss-ipq-pll: Add IPQ5210 support
Varadarajan Narayanan · Jul 3, 2026 · 1 files
NFS: Verify symlink inode before caching target
ZhangGuoDong · Jul 3, 2026 · 1 files
clk: qcom: Restrict IPQ5424, IPQ6018,IPQ9574, QCM2290 and others to ARM64
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Restrict A7PLL and IPQ4019 GCC to ARM
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Make important ARM64 drivers default
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Make important ARM32 drivers default
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
clk: qcom: Add defaults for desired arm64 drivers
Krzysztof Kozlowski · Jul 3, 2026 · 1 files
mfd: viperboard: Remove redundant NULL check before kfree()
Mohammad Shahid · Jul 3, 2026 · 1 files
clk: mediatek: mt6735-vdecsys: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
clk: mediatek: mt6735-vencsys: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
clk: imx: imx8qxp-lpcg: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 4, 2026 · 1 files
NFS: Fix delayed delegation return list handling
Guangshuo Li · Jul 4, 2026 · 1 files
xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full
Xiang Mei · Jul 4, 2026 · 1 files
clk: imx: imx8qxp: add missing MODULE_DEVICE_TABLE()
Pengpeng Hou · Jul 5, 2026 · 1 files
clk: mediatek: remove unneeded 'fast_io' parameter in regmap_config
Wolfram Sang · Jul 5, 2026 · 1 files
thermal: Remove unneeded 'fast_io' parameter in regmap_config
Wolfram Sang · Jul 5, 2026 · 2 files
apparmor: use SEND_SIG_NOINFO instead of NULL in aa_audit()
Oleg Nesterov · Jul 5, 2026 · 1 files
clk: qcom: camcc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers
Krzysztof Kozlowski · Jul 5, 2026 · 1 files
clk: qcom: videocc-x1p42100: Constify qcom_cc_driver_data and list of critical CBCR registers
Krzysztof Kozlowski · Jul 5, 2026 · 1 files
batman-adv: bla: prevent CRC corruptions after claim flush
Sven Eckelmann · Jul 5, 2026 · 1 files
MAINTAINERS: Update my email address for the AW99706 backlight driver
Junjie Cao · Jul 6, 2026 · 2 files
dt-bindings: rtc: sun6i: no clock-output-names on h616/r329
Jerome Brunet · Jul 6, 2026 · 1 files
dt-bindings: rtc: sun6i: add sun60i-a733 support
Jerome Brunet · Jul 6, 2026 · 2 files
clk: sunxi-ng: fix ccu probe clock unregister on error
Jerome Brunet · Jul 6, 2026 · 1 files
clk: sunxi-ng: sun6i-rtc: clean up DT usage
Jerome Brunet · Jul 6, 2026 · 1 files
clk: sunxi-ng: sun6i-rtc: Add feature bit for IOSC calibration
Junhui Liu · Jul 6, 2026 · 2 files
clk: sunxi-ng: mux: remove unneeded export
Jerome Brunet · Jul 6, 2026 · 1 files
clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-msm8939: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Drop SYSTEM_NOC_BFDCD_CLK_SRC
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Add missing "clocks" property
Stephan Gerhold · Jul 6, 2026 · 1 files
dt-bindings: clock: qcom: gcc-mdm9607: Use proper address in example
Stephan Gerhold · Jul 6, 2026 · 1 files
clk: qcom: gcc-mdm9607: Drop redundant register update during probe
Stephan Gerhold · Jul 6, 2026 · 1 files
NFS/localio: issue IO inline when not in a memory-reclaim context
Mike Snitzer · Jul 6, 2026 · 3 files
NFS/localio: remove dead FLUSH_SYNC handling from nfs_local_commit
Mike Snitzer · Jul 6, 2026 · 3 files
NFS/localio: issue commit inline when not in a memory-reclaim context
Mike Snitzer · Jul 6, 2026 · 1 files
batman-adv: dat: atomically update mac addresses
Sven Eckelmann · Jul 6, 2026 · 2 files
batman-adv: dat: avoid unaligned fault in IP extraction
Sven Eckelmann · Jul 6, 2026 · 1 files
dt-bindings: mfd: st,stmpe: Fix typo st,stmpe601 (should be st,stmpe610)
Frank Li · Jul 6, 2026 · 1 files
mfd: rohm: Factor out power button registration
Dmitry Torokhov · Jul 6, 2026 · 7 files
clk: thead: allow COMPILE_TEST builds
Rosen Penev · Jul 7, 2026 · 1 files
mfd: ucb1x00: Register software node for GPIO controller
Dmitry Torokhov · Jul 7, 2026 · 2 files
mfd: ucb1x00: Convert Assabet gpio-keys to use software nodes
Dmitry Torokhov · Jul 7, 2026 · 1 files
sunrpc: fix use-after-free in __rpc_clnt_handle_event and __rpc_clnt_remove_pipedir
Luxiao Xu · Jul 7, 2026 · 1 files
dt-bindings: clock: qcom: Add IPQ9650 REFGEN clock IDs
Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files
clk: qcom: ipq9650: Add clocks for the REFGEN block
Kathiravan Thirumoorthy · Jul 7, 2026 · 1 files
mm/kconfig: drop redundant memory hotplug dependencies
Kaitao Cheng · Jul 7, 2026 · 1 files
NFSv4: pin the superblock for active state owners
Jia Zhu · Jul 7, 2026 · 1 files
dt-bindings: leds: bcm6358: Convert to DT schema
Ninad Naik · Jul 7, 2026 · 2 files
NFSv4/flexfiles: fix NULL dereference for NFSv4.0 data servers
Jeuk Kim · Jul 8, 2026 · 2 files
NFSv4/flexfiles: support loosely coupled data servers
Jeuk Kim · Jul 8, 2026 · 8 files
clk: en7523: reset PCIE HB on init for AN7581
Christian Marangi · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-camcc: Drop qcom,sc8280xp-camcc from "if" block
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-camcc: Require required-opps on SM8750
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
dt-bindings: clock: qcom,sm8450-video: Require required-opps on X1E80100
Krzysztof Kozlowski · Jul 8, 2026 · 1 files
mfd: cs42l43: Remove redundant NULL checks on SoundWire
Charles Keepax · Jul 8, 2026 · 1 files
clk: tegra: tegra124-emc: put EMC node on register failure
Guangshuo Li · Jul 8, 2026 · 1 files
dt-bindings: mfd: Convert OMAP USB TLL to DT schema
Eduard Bostina · Jul 8, 2026 · 2 files
mfd: cs42l43: Tidy up formatting on sdw_device_id table
Charles Keepax · Jul 8, 2026 · 1 files
alloc_tag: add ioctl to /proc/allocinfo
Suren Baghdasaryan · Jul 8, 2026 · 7 files
alloc_tag: add ioctl filters to /proc/allocinfo
Abhishek Bapat · Jul 8, 2026 · 2 files
alloc_tag: add size-based filtering to ioctl
Abhishek Bapat · Jul 8, 2026 · 2 files
alloc_tag: add accuracy based filtering to ioctl
Abhishek Bapat · Jul 8, 2026 · 2 files
kselftest: alloc_tag: add kselftest for ioctl interface
Abhishek Bapat · Jul 8, 2026 · 4 files
kselftest: alloc_tag: extend the allocinfo ioctl kselftest
Abhishek Bapat · Jul 8, 2026 · 1 files
clk: qcom: camcc-sc8280xp: unregister CAMCC_GDSC_CLK
Brian Masney · Jul 8, 2026 · 1 files
dt-bindings: leds: Add LTC3220 18 channel LED Driver
Edelweise Escala · Jul 9, 2026 · 2 files
leds: ltc3220: Add Support for LTC3220 18 channel LED Driver
Edelweise Escala · Jul 9, 2026 · 4 files
mm: standardize printing for pgtable entries
David Hildenbrand (Arm) · Jul 9, 2026 · 1 files
mfd: mt6397-core: Add mt6323 AUXADC support
Roman Vivchar · Jul 9, 2026 · 1 files
clk: mediatek: pllfh: Fix IO remapping leak in register_pllfhs error path
Louis-Alexis Eyraud · Jul 9, 2026 · 1 files
clk: r9a08g045: Add clocks and resets for CAN-FD
Claudiu Beznea · Jul 9, 2026 · 1 files
batman-adv: fix TX priority extraction for BATADV_FORW_MCAST
Sven Eckelmann · Jul 9, 2026 · 1 files
batman-adv: mcast: ensure unshared skb for multicast packets
Sven Eckelmann · Jul 9, 2026 · 1 files
batman-adv: mcast: linearize skbuff for packet generation
Sven Eckelmann · Jul 9, 2026 · 1 files
dt-bindings: backlight: 88pm860x: Add missing bracket
Manuel Ebner · Jul 10, 2026 · 1 files
clk: eswin: Zero-initialize stack-allocated clk_init_data
Kostas Damaskinakis · Jul 10, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Add compatible for Hawi and Maili SoCs
Mukesh Ojha · Jul 10, 2026 · 1 files
leds: gpio: Make legacy gpiolib interface optional
Arnd Bergmann · Jul 10, 2026 · 2 files
clk: palmas: Manage external-control prepare with devm
Myeonghun Pak · Jul 11, 2026 · 1 files
clk: palmas: Use devm_of_clk_add_hw_provider()
Myeonghun Pak · Jul 11, 2026 · 1 files
dt-bindings: leds: Document "gpio" trigger
Samuel Holland · Jul 11, 2026 · 1 files
dt-bindings: vendor-prefixes: Add techvision
Samuel Holland · Jul 11, 2026 · 1 files
mm/kconfig: drop redundant dependency wrappers
Kaitao Cheng · Jul 12, 2026 · 1 files
apparmor: replace decompress_zstd() prototype with its entity
Tetsuo Handa · Jul 12, 2026 · 1 files
esp: do not unref managed frag pages in esp_ssg_unref()
Maher Azzouzi · Jul 12, 2026 · 2 files
dt-bindings: leds: Add default-intensity property
Jonas Rebmann · Jul 13, 2026 · 2 files
shmem: provide a shmem_write_folio wrapper
Christoph Hellwig · Jul 13, 2026 · 5 files
mm/swap: introduce struct swap_io_ctx
Christoph Hellwig · Jul 13, 2026 · 7 files
mm/swap: also use struct swap_iocb for block I/O
Christoph Hellwig · Jul 13, 2026 · 3 files
mm/swap: remove count_swpout_vm_event
Christoph Hellwig · Jul 13, 2026 · 1 files
mm/swap: use swap_ops to register swap device's methods
Christoph Hellwig · Jul 13, 2026 · 4 files
mm/swap: remove SWP_FS_OPS
Christoph Hellwig · Jul 13, 2026 · 9 files
mm/vmstat: add NRSWP{IN,OUT} counters
Christoph Hellwig · Jul 13, 2026 · 3 files
mm: kmemleak: confirm suspected leaks with a second scan
Catalin Marinas · Jul 13, 2026 · 1 files
mm: kmemleak: report leaks only after N consecutive unreferenced scans
Breno Leitao · Jul 13, 2026 · 2 files
mm: kmemleak: factor leak confirmation into a helper
Breno Leitao · Jul 13, 2026 · 1 files
selftests: mm: test kmemleak's N-consecutive-scan leak confirmation
Breno Leitao · Jul 13, 2026 · 2 files
mfd: cgbc: Fix teardown ordering in cgbc_remove()
Thomas Richard · Jul 13, 2026 · 1 files
leds: bcm63138: Use %pe to print pinctrl error instead of %ld
Ninad Naik · Jul 13, 2026 · 1 files
clk: mmp: pxa1908-apbc: Remove unneeded semicolon
Chen Ni · Jul 14, 2026 · 1 files
clk: qcom: camcc-glymur: Add const qualifier for driver_data & CBCRs list
Jagadeesh Kona · Jul 14, 2026 · 1 files
clk: mmp: pxa1908-apbcp: Remove unneeded semicolon
Chen Ni · Jul 14, 2026 · 1 files
clk/x86: pmc_atom: add kasprintf return value check
longlong yan · Jul 14, 2026 · 1 files
clk: document that clk_get_parent() returns NULL
Dan Carpenter · Jul 14, 2026 · 1 files
NFS: fix delegation_hash_table leak when nfs4_server_common_setup() fails
Nate Prodromou · Jul 14, 2026 · 1 files
leds: pca9532: Fix phantom device registration on missing hardware
Cosmo Chou · Jul 15, 2026 · 1 files
dt-bindings: clock: qcom: glymur-gcc: Add missing CX power domain
Abel Vesa · Jul 15, 2026 · 1 files
clk: qcom: gcc-glymur: Enable runtime PM
Abel Vesa · Jul 15, 2026 · 1 files
mfd: si476x-i2c: Get rid of duplicate NULL checks
Andy Shevchenko · Jul 15, 2026 · 1 files
thermal/drivers/spacemit/k1: Add shutdown action and reorder registration order
Pei Xiao · Jul 16, 2026 · 1 files
clk: qcom: nord: use BRANCH_HALT_SKIP for PHY pipe clocks
Taniya Das · Jul 16, 2026 · 2 files
clk: qcom: negcc-nord: use clk_regmap_phy_mux for USB3 pipe clock srcs
Taniya Das · Jul 16, 2026 · 1 files
clk: qcom: Drop inclusions of <linux/mod_devicetable.h>
Uwe Kleine-König (The Capable Hub) · Jul 16, 2026 · 4 files
xfrm: espintcp: fix UAF during close
Sabrina Dubroca · Jul 16, 2026 · 1 files
thermal/drivers: Remove redundant error messages on IRQ request failure
Pan Chuang · Jul 17, 2026 · 24 files
dt-bindings: clock: qcom: Add Qualcomm Maili video clock controller
Jagadeesh Kona · Jul 17, 2026 · 2 files
clk: qcom: Add support for videocc driver on Qualcomm Maili SoC
Jagadeesh Kona · Jul 17, 2026 · 3 files
mm/swap: fix swap_cluster_lock() !CONFIG_SWAP stub signature mismatch
Hongfu Li · Jul 17, 2026 · 1 files
dt-bindings: soc: spacemit: k3: add i2s_sysclk, i2s_bclk_factor and i2s1_sysclk_src IDs
Troy Mitchell · Jul 17, 2026 · 1 files
clk: spacemit: k3: fix i2s clock topology
Troy Mitchell · Jul 17, 2026 · 2 files
clk: spacemit: k3: fix missing /2 factor in i2s sysclk dividers
Troy Mitchell · Jul 17, 2026 · 1 files
mfd: viperboard: Fix native fields type in structures as little-endian
Mikhail Lukianchikov · Jul 17, 2026 · 1 files
lockd: fix NULL dereference on lockowner allocation failure
Shuangpeng Bai · Jul 17, 2026 · 1 files
apparmor: leverage audit_log_n_untrustedstring() when possible
Paul Moore · Jul 17, 2026 · 1 files
xfrm: drop ESP-in-TCP packets with no ingress device
Zhiling Zou · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom,qcm2290-dispcc: Add missing power-domains property
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gcc-qcm2290: Keep the critical clocks always-on from probe
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: dispcc-qcm2290: Move to the latest common qcom_cc_probe() model
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: dispcc-qcm2290: Enable runtime PM support
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: qcm2290: Set POLL_CFG_GDSCR flag for DISPCC and GPUCC GDSCs
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: qcm2290: Add RETAIN_FF_ENABLE flag for DISPCC and GPUCC GDSCs
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: qcm2290: Update DISPCC and GPUCC GDSC *wait_val values
Imran Shaik · Jul 18, 2026 · 2 files
clk: qcom: gpucc-qcm2290: Drop pm_clk handling
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Move to the latest common qcom_cc_probe() model
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Keep the critical clocks always-on from probe
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: gpucc-qcm2290: Park RCG's clk source at XO during disable
Imran Shaik · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra Display clock controller
Imran Shaik · Jul 18, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra GPU clock controller
Imran Shaik · Jul 18, 2026 · 1 files
clk: qcom: Add support for Qualcomm GPU Clock Controller on Shikra
Imran Shaik · Jul 18, 2026 · 1 files
backlight: ktd2801: Fix unmet dependency on GPIOLIB
Julian Braha · Jul 19, 2026 · 1 files
mfd: macsmc: Fix key count endianness annotation
Sven Peter · Jul 19, 2026 · 1 files
clk: stm32: add missing bitfield.h header
Rosen Penev · Jul 19, 2026 · 2 files
clk: stm32: allow STM32MP COMPILE_TEST builds
Rosen Penev · Jul 19, 2026 · 1 files
clk: hisilicon: hi3660-stub: use devm_platform_ioremap_resource
Rosen Penev · Jul 19, 2026 · 1 files
clk: composite: Export devm composite pdata helper
Jia Wang · Jul 20, 2026 · 1 files
dt-bindings: clock: ultrarisc: Add DP1000 Clock Controller
Jia Wang · Jul 20, 2026 · 3 files
clk: ultrarisc: Add DP1000 clock driver
Jia Wang · Jul 20, 2026 · 8 files
thermal/drivers/spacemit: Validate clamped trip thresholds
surendra · Jul 20, 2026 · 1 files
mm: vmscan: convert folio_referenced() to use vma_flags_t
Baolin Wang · Jul 20, 2026 · 3 files
mm: vmscan: add a helper to identify file-backed executable folios
Baolin Wang · Jul 20, 2026 · 1 files
mm: mglru: promote mapped executable folios after first usage
Baolin Wang · Jul 20, 2026 · 1 files
mfd: sm501: Fix potential memory leaks during remove
Abdun Nihaal · Jul 20, 2026 · 1 files
mfd: iqs62x: Reject zero-length firmware records
Pengpeng Hou · Jul 20, 2026 · 1 files
mfd: rave-sp: validate received frame payload lengths
Pengpeng Hou · Jul 20, 2026 · 1 files
mm/kmemleak: report RCU-tasks quiescent states during the scan
Breno Leitao · Jul 20, 2026 · 1 files
mm: use proper PTE accessor in move_ptes()
Alexander Gordeev · Jul 20, 2026 · 1 files
tools/lib/thermal: Fix misplaced extern "C" closing brace
Andreas Haufler · Jul 21, 2026 · 1 files
dt-bindings: thermal: mediatek: Make resets optional for MT8196
AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files
thermal/drivers/mediatek/lvts_thermal: Make reset optional for MT8196
AngeloGioacchino Del Regno · Jul 21, 2026 · 1 files
xfrm: avoid lock inversion in nat keepalive work
Zihan Xi · Jul 21, 2026 · 1 files
clk: qcom: gcc-shikra: Add additional frequencies for EMAC RGMII clocks
Imran Shaik · Jul 22, 2026 · 1 files
dt-bindings: clock: qcom: Move glymur TCSR to own binding
Qiang Yu · Jul 22, 2026 · 2 files
dt-bindings: clock: qcom,glymur-tcsr: Add mahua support
Qiang Yu · Jul 22, 2026 · 1 files
clk: qcom: Add generic clkref_en support
Qiang Yu · Jul 22, 2026 · 3 files
clk: qcom: tcsrcc-glymur: Add regulator supplies and migrate to clk_ref helper
Qiang Yu · Jul 22, 2026 · 1 files
clk: qcom: tcsrcc-glymur: Add Mahua QREF regulator support
Qiang Yu · Jul 22, 2026 · 1 files
backlight: qcom-wled: Remove redundant dev_err()
Pan Chuang · Jul 22, 2026 · 1 files
xfrm: Fix skb double-free in xfrm_dev_direct_output()
Sanghyun Park · Jul 22, 2026 · 1 files
thermal/drivers/qoriq: Disable clock on resume failure
Can Peng · Jul 22, 2026 · 1 files
thermal/drivers/imx: Disable clock on runtime resume failure
Can Peng · Jul 22, 2026 · 1 files
batman-adv: bla: fix freeing of claims on meshif deletion
Sven Eckelmann · Jul 22, 2026 · 1 files
dt-bindings: thermal: Add Qualcomm MBG thermal monitor support
Satya Priya Kakitapalli · Jul 22, 2026 · 2 files
thermal/drivers/qcom: Add support for Qualcomm MBG thermal monitoring
Satya Priya Kakitapalli · Jul 22, 2026 · 3 files
iio: adc: qcom-spmi-adc5-gen3: Remove an unnecessary print
Jishnu Prakash · Jul 22, 2026 · 1 files
iio: adc: qcom-spmi-adc5-gen3: Share SDAM0 IRQ with ADC_TM auxiliary driver
Jishnu Prakash · Jul 22, 2026 · 2 files
thermal/drivers/qcom: add support for PMIC5 Gen3 ADC thermal monitoring
Jishnu Prakash · Jul 22, 2026 · 2 files
clk: qcom: gcc-qcm2290: don't park QUP RCGs upon registration
Dmitry Baryshkov · Jul 22, 2026 · 1 files
NFSv4: Fix incorrect argument passed to nfs4_delete_lease() in nfs4_add_lease()
Zhansong Gao · Jul 22, 2026 · 1 files
memcg: move mem_cgroup_swappiness and vm_swappiness to mm/swap.h
Ridong Chen · Jul 23, 2026 · 4 files
mm: vmscan: fix node reclaim ignoring swappiness parameter
Ridong Chen · Jul 23, 2026 · 1 files
mm/swap: revert to single-folio writes for synchronous swap devices
Christoph Hellwig · Jul 23, 2026 · 1 files
mm/swap: add a new swap_ops.h header to allow for pluggable swap ops
Christoph Hellwig · Jul 23, 2026 · 9 files
mm/swap: move swap_ops into file systems for file system-based swap
Christoph Hellwig · Jul 23, 2026 · 10 files
dt-bindings: soc: cix: add sky1 audss cru controller
Joakim Zhang · Jul 23, 2026 · 3 files
clk: cix: add sky1 audss clock controller
Joakim Zhang · Jul 23, 2026 · 5 files
reset: cix: add sky1 audss auxiliary reset driver
Joakim Zhang · Jul 23, 2026 · 3 files
arm64: dts: cix: sky1: add audss cru
Joakim Zhang · Jul 23, 2026 · 1 files
xfrm: ah6: validate routing header segments_left
Asim Viladi Oglu Manizada · Jul 23, 2026 · 1 files
clk: sunxi-ng: mux: fix determine helper rate propagation
Jerome Brunet · Jul 23, 2026 · 1 files
clk: sunxi-ng: div: add read-only operation support
Jerome Brunet · Jul 23, 2026 · 2 files
clk: sunxi-ng: sun6i-rtc: split main oscillator div and gate
Jerome Brunet · Jul 23, 2026 · 2 files
clk: sunxi-ng: sun6i-rtc: add a733 support
Jerome Brunet · Jul 23, 2026 · 2 files
dt-bindings: leds: backlight: Convert TPS65217 to DT schema
Eduard Bostina · Jul 23, 2026 · 3 files
clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs
Alexey Charkov · Jul 23, 2026 · 1 files
clk: rockchip: Fractional PLL coefficient on RK3588/RK3576 is two's complement
Alexey Charkov · Jul 23, 2026 · 4 files
clk: Add devm_clk_bulk_get_enable()
Suraj Gupta · Jul 23, 2026 · 3 files
apparmor: switch website link to https
Baruch Siach · Jul 23, 2026 · 1 files
clk: remove conditional return with no effect
Sang-Heon Jeon · Jul 23, 2026 · 2 files
dt-bindings: clock: airoha: Add additional reset for PCIe PERSTOUT
Christian Marangi · Jul 23, 2026 · 1 files
clk: en7523: add support for dedicated PCIe PERSTOUT reset
Christian Marangi · Jul 23, 2026 · 1 files
apparmor: make table entry count last enum for static tables
John Johansen · Jul 23, 2026 · 3 files
apparmor: fix error debug output in fn_label_build
John Johansen · Jul 23, 2026 · 1 files
apparmor: mark static tables and structs as read only
John Johansen · Jul 23, 2026 · 8 files
mm: memcg: stop reclaim when a limit update is superseded
Guopeng Zhang · Jul 24, 2026 · 1 files
clk: mvebu: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: qcom: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 4 files
clk: st: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: tegra: clean-up simple provider misuse of the consumer API
Jerome Brunet · Jul 24, 2026 · 1 files
clk: qcom: gcc-nord: mark PCIe link clocks as critical
Taniya Das · Jul 24, 2026 · 1 files
clk: qcom: negcc-nord: keep GPU2 CFG clock enabled via critical CBCR
Taniya Das · Jul 24, 2026 · 1 files
dt-bindings: clock: qcom: Document Nord display clock controller
Taniya Das · Jul 24, 2026 · 2 files
clk: qcom: Add Nord display clock controller support
Taniya Das · Jul 24, 2026 · 4 files
dt-bindings: clock: qcom: Document Nord GPU clock controllers
Taniya Das · Jul 24, 2026 · 3 files
clk: qcom: gpucc: Add Nord graphics clock controller support
Taniya Das · Jul 24, 2026 · 4 files
thermal/drivers/qcom-spmi-adc-tm5: Drop IIO_VAL_INT check in adc_tm5_get_temp
Rakesh Kota · Jul 24, 2026 · 1 files
dt-bindings: clock: qcom: Add Qualcomm Shikra AudioCoreCC and AudioCoreCSR
Imran Shaik · Jul 24, 2026 · 3 files
clk: qcom: Add Audio Core clock controller support on Qualcomm Shikra SoC
Imran Shaik · Jul 24, 2026 · 3 files
leds: gpio: Clear error pointers for skipped LEDs
Steve Dunnagan · Jul 24, 2026 · 1 files
dt-bindings: clock: ti,keystone-gate: Convert to DT schema
Bhargav Joshi · Jul 25, 2026 · 3 files
clk: ti: mux: resolve parent clocks by DT index, not by name
Mathieu Dubois-Briand · Jul 27, 2026 · 1 files
clk: ti: composite: resolve parent clocks by DT index, not by name
Mathieu Dubois-Briand · Jul 27, 2026 · 1 files
dt-bindings: mfd: qcom,tcsr: Document the IPQ9650 TCSR block
Kathiravan Thirumoorthy · Jul 27, 2026 · 1 files
selftests/mm: skip COW tmpfile cases when fallocate() is unsupported
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: skip guard hole-punch test if MADV_REMOVE is unsupported
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: skip hard dirty page-cache test on NFS
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
selftests/mm: retry migration failures for the full runtime
Muhammad Usama Anjum · Jul 27, 2026 · 1 files
apparmor: refactory mount to use check_perms
John Johansen · Jul 27, 2026 · 4 files
dt-bindings: leds: nxp,pca963x: Fix reg maximum for pca9635
Loic Poulain · Jul 27, 2026 · 1 files
dt-bindings: leds: nxp,pca963x: Add multicolor LED support
Loic Poulain · Jul 27, 2026 · 1 files
leds: pca963x: Add multicolor LED class support
Loic Poulain · Jul 27, 2026 · 2 files
mm/vmstat, mm/memcontrol: add _monotonic vmstat readers
Usama Arif · Jul 27, 2026 · 4 files
mm/vmscan: add pgrotate_anon and pgrotate_file vmstat counters
Usama Arif · Jul 27, 2026 · 4 files
mm/vmscan: reduce lru_lock contention via vmstat-derived scan-balance cost
Usama Arif · Jul 27, 2026 · 9 files
xfrm: fix xfrm_state_construct() auth-trunc leak
Zihan Xi · Jul 27, 2026 · 1 files
nfs4.2: add UNCACHEABLE_FILE_DATA attribute support
Tom Haynes · Jul 27, 2026 · 8 files
nfs4.2: request UNCACHEABLE_FILE_DATA only for regular files
Mike Snitzer · Jul 27, 2026 · 2 files
nfs4.2: open UNCACHEABLE_FILE_DATA files with O_DIRECT
Mike Snitzer · Jul 27, 2026 · 4 files
Drivers: hv: Use meaningful errnos for hypercall status codes
Hardik Garg · Jul 27, 2026 · 1 files
mm/migrate_device: clear stale mapping after freeing swapcache
Arvind Yadav · Jul 28, 2026 · 1 files
dt-bindings: clock: mediatek: Add mt8173 mfgtop
Chen-Yu Tsai · Jul 28, 2026 · 2 files
clk: mediatek: Add mt8173-mfgtop driver
Chen-Yu Tsai · Jul 28, 2026 · 3 files
dt-bindings: leds: lacie,ns2-leds: Convert to DT schema
Ninad Naik · Jul 28, 2026 · 2 files
hugetlb: only adjust reservation during unmapping if mapcount is 0
Guillaume Morin · Jul 28, 2026 · 1 files
apparmor: fix auditing of mount binary data
John Johansen · Jul 28, 2026 · 1 files
apparmor: drop use of _confined variant for iteration
John Johansen · Jul 28, 2026 · 1 files
apparmor: constify aa_perms parameters that are read-only
John Johansen · Jul 28, 2026 · 6 files
apparmor: constify aa_profile parameters on read-only compute paths
John Johansen · Jul 28, 2026 · 10 files
memcg: bypass the reclaim and oom killer for dying tasks once oom_reaper is done
Shakeel Butt · Jul 29, 2026 · 1 files
zram: set default primary compressor in zram_destroy_comps()
Sergey Senozhatsky · Jul 29, 2026 · 1 files
zram: validate deflate params
Sergey Senozhatsky · Jul 29, 2026 · 1 files
Drop Michael Turquette's clk maintainer entry
Uwe Kleine-König · Jul 29, 2026 · 2 files
apparmor: constify aa_dfa parameters on read-only compute paths
John Johansen · Jul 29, 2026 · 8 files
dt-bindings: clock: rockchip: Add RV1106 CRU support
Simon Glass · Jul 29, 2026 · 2 files
clk: rockchip: Add clock controller for the RV1106
Simon Glass · Jul 29, 2026 · 3 files
clk: qcom: Fix test_ctl_hi field for DEFAULT_EVO PLLs
Imran Shaik · Jul 29, 2026 · 3 files
apparmor: compressed_data not described in aa_get_data_from_compressed
John Johansen · Jul 29, 2026 · 1 files
x86/hyperv: reserve more vectors
Wei Liu · Jul 30, 2026 · 1 files
Documentation: zram: correct algo parameters configuration documentation
Sergey Senozhatsky · Jul 30, 2026 · 1 files
dt-bindings: clock: ti: Convert APLL clock to DT schema
Eduard Bostina · Jul 30, 2026 · 2 files
clk: imx95-blk-ctl: Add func_out_en clock for i.MX9x PCIe
Richard Zhu · Jul 30, 2026 · 1 files
clk: imx95-blk-ctl: Fix REFCLK rise-fall mismatch on i.MX95
Richard Zhu · Jul 30, 2026 · 1 files
apparmor: Fix build failure when ZSTD_DECOMPRESS is not enabled
John Johansen · Jul 30, 2026 · 2 files
docs/ja_JP: translate submitting-patches.rst (tag usage)
Akiyoshi Kurita · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom-rpmhcc: Add RPMH clock controller for Maili
Taniya Das · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom: Add Maili TCSR clock controller
Taniya Das · Jul 30, 2026 · 1 files
dt-bindings: clock: qcom: Add Maili global clock controller
Taniya Das · Jul 30, 2026 · 2 files
clk: qcom: gcc-hawi: Add support for global clock controller on Maili
Taniya Das · Jul 30, 2026 · 1 files
batman-adv: fix stale receive device on merged fragments
Zhiling Zou · Jul 31, 2026 · 1 files
mm: shmem: reject page-aligned fallocate end overflow
Zhiling Zou · Jul 31, 2026 · 1 files
mm: zswap: drop list_lru param from zswap_lru_add() and _del()
Wilson Felipe Pereira · Jul 31, 2026 · 1 files
mm: kmemleak: default min_unref_scans to 2 for verbose auto-scan
Breno Leitao · Jul 31, 2026 · 1 files
Documentation: kmemleak: document the conditional min_unref_scans default
Breno Leitao · Jul 31, 2026 · 1 files
selftests/mm: kmemleak: drop stale min_unref_scans default from comments
Breno Leitao · Jul 31, 2026 · 1 files
power: sequencing: rename pwrseq_power_on/off() to pwrseq_enable/disable()
Bartosz Golaszewski · Jul 31, 2026 · 8 files
mm/sparse: correct init section annotations
Sang-Heon Jeon · Jul 31, 2026 · 1 files
mm/page_reporting: add page_reporting_delay_ms module parameter
Pratyush Mallick · Jul 31, 2026 · 2 files
mm/gup: fix always draining LRU caches in collect_longterm_unpinnable_folios()
David Hildenbrand (Arm) · Jul 31, 2026 · 1 files
apparmor: fix implicit declaration of function 'decompress_zstd'
John Johansen · Aug 1, 2026 · 1 files
clk: devres: fix cleanup in devm_clk_get_optional_enabled_with_rate()
Onur Özkan · Aug 1, 2026 · 1 files
mm/vmalloc: make vm_struct.nr_pages an unsigned long
Artem Lytkin · Aug 1, 2026 · 2 files
dt-bindings: clock: Correct white-space style
Krzysztof Kozlowski · Aug 1, 2026 · 4 files
mm/vmalloc: do not warn on -ENOMEM from va_alloc()
Uladzislau Rezki (Sony) · Aug 2, 2026 · 1 files
mfd: qnap-mcu: keep the reply buffer alive past a command timeout
Ali Ahmet Memis · Aug 2, 2026 · 1 files
netfilter: validate L4 headers after userspace packet writes
Zhiling Zou · Aug 3, 2026 · 2 files
apparmor: Fix warning: 'decompress_zstd' defined but not used
John Johansen · Aug 3, 2026 · 1 files
clk: zynq: pll: Fix kernel-doc after determine_rate() conversion
Babanpreet Singh · Aug 3, 2026 · 1 files
mm/swap: reject swapon() on filesystem-level encrypted files
Eric Biggers · Aug 3, 2026 · 2 files
selftests/mm: rename local_config.h to local_config.h_gen
Pratyush Mallick · Aug 3, 2026 · 4 files
selftests/mm: use pattern matching in .gitignore
Pratyush Mallick · Aug 3, 2026 · 1 files
backlight: aw99706: Fix DT property names to match binding
Junjie Cao · Aug 4, 2026 · 1 files
backlight: aw99706: Validate all DT property values consistently
Junjie Cao · Aug 4, 2026 · 1 files
backlight: aw99706: Honor the core blank state in update_status()
Junjie Cao · Aug 4, 2026 · 1 files
zram: fix out-of-bounds access in writeback_store()
Longlong Xia · Aug 4, 2026 · 1 files
zram: fix out-of-bounds access in read_block_state()
Longlong Xia · Aug 4, 2026 · 1 files
zram: do not release zstd global params from error paths
Haoqin Huang · Aug 4, 2026 · 1 files
zram: reject zero-size dictionary
Haoqin Huang · Aug 4, 2026 · 1 files
zram: add pr_fmt to backend files
Haoqin Huang · Aug 4, 2026 · 7 files
zram: validate parameters in each backend's setup_params
Haoqin Huang · Aug 4, 2026 · 7 files
zram: reset per-priority params when changing algorithm before init
Haoqin Huang · Aug 4, 2026 · 1 files
mm: add some missing includes to mm-local headers
Lorenzo Stoakes (ARM) · Aug 4, 2026 · 7 files
dt-bindings: mfd: syscon: Add ESWIN EIC7700 compatible
Pinkesh Vaghela · Aug 4, 2026 · 1 files
selftests/mm: read memory information without popen
Warren Xiong · Aug 4, 2026 · 1 files
dt-bindings: mfd: syscon: Allow syscon compatible for Loongson-2K0300 chip id
Binbin Zhou · Aug 4, 2026 · 1 files
mm/Kconfig: make FLATMEM depend on !NUMA
Sang-Heon Jeon · Aug 4, 2026 · 1 files
mm/page_ext: remove pgdat_page_ext_init()
Sang-Heon Jeon · Aug 4, 2026 · 3 files
apparmor: constify aa_label parameters on read-only query helpers
John Johansen · Aug 4, 2026 · 2 files
mm/huge_memory: use folio's memcg inside __folio_split()
Zi Yan · Aug 4, 2026 · 1 files
xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc()
Zi Yan · Aug 4, 2026 · 1 files
thermal/of: Fix trivial enabled typo
Marek Vasut · Aug 4, 2026 · 1 files
mm/show_mem: fix format string inconsistencies and type mismatches
Ye Liu · Aug 5, 2026 · 1 files
mm/sparse: keep mem_section_usage_size() internal
Muchun Song · Aug 5, 2026 · 3 files
dt-bindings: mfd: qcom,spmi-pmic: Document haptics device
Fenglin Wu · Aug 5, 2026 · 1 files
maple_tree: remove unused mas_is_root_limits()
Zhan Xusheng · Aug 5, 2026 · 1 files
mm: debug_page_alloc: fix type mismatch for debug_guardpage_minorder
Ye Liu · Aug 5, 2026 · 1 files
ksm: update comments and docs to reference folio->mapping
Hongfu Li · Aug 5, 2026 · 3 files
mfd: cs42l43: Fix regmap defaults ordering
Charles Keepax · Aug 5, 2026 · 1 files
cpufreq: intel_pstate: Consolidate HWP P-states initialization
Rafael J. Wysocki · Aug 5, 2026 · 1 files
cpufreq: intel_pstate: Avoid using DESIRED_PERF when DEC is enabled
Rafael J. Wysocki · Aug 5, 2026 · 1 files
mm/ksm: avoid missing ksmd wakeups in ksm_enter
Longlong Xia · Aug 5, 2026 · 1 files
clk: rockchip: rk3576: fix source muxes for SPI0..SPI4
Alexey Charkov · Aug 5, 2026 · 1 files
backlight: Use sysfs_emit() instead of sprintf()
Levente Szajko · Aug 5, 2026 · 2 files
dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator
Geert Uytterhoeven · Aug 5, 2026 · 2 files
clk: renesas: Add R-Car X5H CPG driver
Geert Uytterhoeven · Aug 5, 2026 · 3 files
alloc_tag: expose boot-time compression configuration
Abhishek Bapat · Aug 5, 2026 · 2 files
of: fix out-of-bounds read in of_alias_scan() stem parser
Abdurrahman Hussain · Aug 5, 2026 · 1 files
Drivers: hv: Remove support for WS2012/2012R2 & Win8/8.1 version of Hyper-V
Michael Kelley · Aug 5, 2026 · 5 files
hv_sock: Remove check for old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
hv_netvsc: Remove GPADL teardown special case for old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
scsi: storvsc: Remove support for storvsc protocol of old Hyper-V hosts
Michael Kelley · Aug 5, 2026 · 1 files
clocksource: hyper-v: Remove support for stimer interrupts in message mode
Michael Kelley · Aug 5, 2026 · 6 files
mm: debug_page_alloc: fix NULL buf in debug_guardpage_minorder_setup
Ye Liu · Aug 6, 2026 · 1 files
selftests/mm: drop duplicate test_seal_mprotect_two_vma_with_gap() call
Hongfu Li · Aug 6, 2026 · 1 files
zram: switch to unsigned long indexing
Sergey Senozhatsky · Aug 6, 2026 · 1 files
selftests: mm: extend the check_huge() to support mTHP check
Baolin Wang · Aug 6, 2026 · 9 files
selftests: mm: move gather_after_split_folio_orders() into vm_util.c file
Baolin Wang · Aug 6, 2026 · 3 files
selftests: mm: implement the mTHP-sized hugepage check helpers
Baolin Wang · Aug 6, 2026 · 1 files
selftests: mm: add mTHP collapse test cases
Baolin Wang · Aug 6, 2026 · 2 files
drivers/base, mm: move arch_numa.c to mm/
Mike Rapoport (Microsoft) · Aug 6, 2026 · 7 files
mm/zswap: fix global shrinker when memory cgroup is disabled
Hao Jia · Aug 6, 2026 · 1 files
mm/zswap: support batch writeback in shrink_memcg()
Hao Jia · Aug 6, 2026 · 1 files
mm/page_alloc: only update lowmem_reserve_ratio on sysctl write
Jianlin Shi · Aug 6, 2026 · 1 files
leds: is31fl319x: Modernize registration
Andreas Kemnade · Aug 6, 2026 · 1 files
clk: samsung: Don't include <linux/mod_devicetable.h>
Uwe Kleine-König (The Capable Hub) · Aug 6, 2026 · 1 files
nfs: fix ENXIO on O_CREAT open of existing symlink over NFSv3
Michael Nemanov · Aug 6, 2026 · 1 files
cpufreq: schedutil: Fix rate limit overflow
Hui Su · Aug 6, 2026 · 1 files
selftests/mm/vm_util.c: correct __pagemap_scan_get_categories return value
Audra Mitchell · Aug 6, 2026 · 1 files
apparmor: fix cred UAF caused by begin_current_label_crit_section()
Jann Horn · Aug 6, 2026 · 3 files
mm/gup: factor out LRU cache draining for folio into lru_cache_drain_for_folio()
David Hildenbrand (Arm) · Aug 6, 2026 · 4 files
apparmor: optimize current_label_crit_section() with needput
John Johansen · Aug 6, 2026 · 5 files
netfilter: ipset: remove need to allocate memory on delete operations
Florian Westphal · Aug 7, 2026 · 3 files
selftests/mm: fix read_file() return value check
Hongfu Li · Aug 7, 2026 · 2 files
mm/hugetlb_cma: support percentage-based hugetlb_cma reservation
Sourav Panda · Aug 7, 2026 · 2 files
dt-bindings: input: Add Qualcomm SPMI PMIC haptics
Fenglin Wu · Aug 7, 2026 · 1 files
mm/execmem: fix fallback_end description in kernel-doc
Henry Elderman · Aug 7, 2026 · 1 files
mm: make VM_FAULT_RESULT_TRACE compatible with sparse
Bart Van Assche · Aug 7, 2026 · 1 files
kasan: fix cache shrink race with CPU hotplug
Hui Su · Aug 8, 2026 · 1 files
Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
Bluetooth: hci_intel: fix usage_count leak when autosuspend_delay is negative
Guangshuo Li · Aug 8, 2026 · 1 files
ACPI: scan: fix bus ID cleanup on device_add() failures
Hongyan Xu · Aug 8, 2026 · 1 files
Bluetooth: L2CAP: fix race l2cap_sock_cleanup_listen() vs. put_chan
Pauli Virtanen · Aug 8, 2026 · 2 files
Bluetooth: mgmt: fix 'hdev->discovery.uuids' NULL dereference
Pavel Shpakovskiy · Aug 8, 2026 · 2 files
selftests/proc: make proc-maps-race work with READ_IMPLIES_EXEC
Karl Mehltretter · Aug 8, 2026 · 1 files
Bluetooth: L2CAP: reject accept queue add unless BT_LISTEN
Pauli Virtanen · Aug 8, 2026 · 1 files
ACPI: battery: Protect all properties with a separated mutex
Rong Zhang · Aug 8, 2026 · 1 files
zsmalloc: account for handle size in class lookup
Longlong Xia · Aug 9, 2026 · 1 files
apparmor: fix integer overflow in verify_tags() bounds check
Fabrice Derepas · Aug 9, 2026 · 1 files
SUNRPC: wait for in-flight client TLS handshake callback
Jérémy Jean · Aug 9, 2026 · 1 files
Bluetooth: L2CAP: access chan->conn safely in get/setsockopt
Pauli Virtanen · Aug 9, 2026 · 1 files
PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip
Naman Jain · Aug 10, 2026 · 1 files
mm/cma: remove stray newline from auto-generated CMA area name
Hongfu Li · Aug 10, 2026 · 1 files
apparmor: fix out-of-bounds write when null terminating a label vec
Hyunwoo Kim · Aug 10, 2026 · 1 files
mm/gup_test: keep longterm pin state per file
David Hildenbrand (Arm) · Aug 10, 2026 · 1 files
netfilter: nf_tables: don't queue packet path object notifications
Fourie Zhang · Aug 10, 2026 · 1 files
ACPI: platform: Use acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 10, 2026 · 1 files
ACPI: scan: Use acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 10, 2026 · 1 files
mm/page-writeback: document folio_mark_dirty() locking more explicitly
Jann Horn · Aug 10, 2026 · 2 files
dt-bindings: clock: ti,clockdomain: Convert to DT schema
Bhargav Joshi · Aug 10, 2026 · 3 files
mm/hmm.c:hmm_do_fault(): suppress sparse warning
Andrew Morton · Aug 10, 2026 · 1 files
zram: fix slot lock bit position on big-endian 64-bit
David Carlier · Aug 10, 2026 · 2 files
selftests/cgroup: test_zswap: skip test_no_kmem_bypass if debugfs is unavailable
Wilson Felipe Pereira · Aug 11, 2026 · 2 files
kasan: fix quarantine_size accounting during cache removal
Hui Su · Aug 11, 2026 · 1 files
Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request
Ibrahim Abdelkader · Aug 11, 2026 · 1 files
vlan: fix skb_under_panic and races when toggling HW VLAN offload
Eric Dumazet · Aug 11, 2026 · 1 files
thermal/drivers/armada: Fix missing bitfields include
Daniel Lezcano · Aug 11, 2026 · 1 files
thermal/drivers/qcom/spm mbg tm: Fix missing bitfield header
Daniel Lezcano · Aug 11, 2026 · 1 files
mm/khugepaged: refactor per-scan state clearing into collapse_control_init_scan()
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: extract reference check into folio_pte_referenced() helper
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: introduce a count_collapse_event() helper
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: fix outdated comments
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm/khugepaged: unmap pte before releasing vma write lock
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
mm: Documentation: clarify where the mTHP stats live
Nico Pache (Red Hat) · Aug 11, 2026 · 1 files
thermal/drivers/qcom: Fix missing spmi adc tm5 gen3 file
Jishnu Prakash · Aug 11, 2026 · 1 files
Drivers: hv: vmbus: add vmbus_establish_gpadl_caller_decrypted()
Kameron Carr · Aug 11, 2026 · 2 files
Drivers: hv: vmbus: Add vmbus_alloc_buffer()/vmbus_free_buffer() for CoCo VMs
Kameron Carr · Aug 11, 2026 · 2 files
hv_netvsc: Allocate send/receive buffers using vmbus_alloc_buffer()
Kameron Carr · Aug 11, 2026 · 3 files
mm/mglru: fix young counter undercount for large folios
Hui Zhu · Aug 12, 2026 · 1 files
MAINTAINERS: add drivers/char/mem.c to mm misc, memory mapping sections
Lorenzo Stoakes (ARM) · Aug 12, 2026 · 1 files
Docs/mm: fix outdated "radix tree" in page_migration
Song Hu · Aug 12, 2026 · 1 files
netfilter: nf_conntrack_expect: consolidate check for insertion of dead expectation
Pablo Neira Ayuso · Aug 12, 2026 · 1 files
netfilter: ctnetlink: do not expose expectation DEAD flag
Pablo Neira Ayuso · Aug 12, 2026 · 1 files
apparmor: fix deadlock in complain-mode change_hat
John Johansen · Aug 12, 2026 · 3 files
lib/test_hmm: fix garbage pfn and wrong direction in devmem fault debug
Qiang Liu · Aug 12, 2026 · 1 files
mm/mglru: fix and remove redundant unevictable folio handling
Kairui Song · Aug 12, 2026 · 1 files
ACPI: bus: Introduce acpi_bus_get_primary_device()
Rafael J. Wysocki · Aug 12, 2026 · 2 files
Drivers: hv: vmbus: Skip VMBus module cleanup for non-nested root partition
Michael Kelley · Aug 12, 2026 · 1 files
percpu: drop CONFIG_DEBUG_FORCE_WEAK_PER_CPU
Tejun Heo · Aug 12, 2026 · 4 files
netfilter: nf_tables: move hardware offload step after building the chain blob
Pablo Neira Ayuso · Aug 13, 2026 · 1 files
thermal/drivers/qcom-spmi-mbg-tm: Add module namespace import for IIO_CONSUMER
Nathan Chancellor · Aug 13, 2026 · 1 files
net: mctp: hold a reference to the route device in mctp_route_lookup()
Aldo Ariel Panzardo · Aug 13, 2026 · 1 files
ACPI: APD: Convert fixed clock rates to use HZ_PER_MHZ
Hongnan Li · Aug 13, 2026 · 1 files
ACPI: APD: Add clock frequency for HJMC01 I2C controller
Xiangyang Yu · Aug 13, 2026 · 1 files
netfilter: nf_tables: move set_update_list to nftables per-netns
Pablo Neira Ayuso · Aug 13, 2026 · 2 files
netfilter: nf_tables: call set ops .commit when building new ruleset blob
Pablo Neira Ayuso · Aug 13, 2026 · 1 files
mm/Kconfig: make MEMORY_FAILURE select MIGRATION
Xie Yuanbin · Aug 13, 2026 · 1 files
mm/vma: introduce VMA anon page offset field and add helpers
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 5 files
mm: provide vma_[flags_]is_cow_mapping() and remove is_cow_mapping()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 16 files
mm: introduce linear_anon_page_index()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files
mm: abstract vma_address() and introduce vma_anon_address()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: update print_bad_page_map() to show anon index if appropriate
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: introduce and use vma_filebacked_address()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 4 files
mm/vma: fix self-merge check in copy_vma()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files
tools/testing/vma: add tests for copy_vma() self-merge
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm: propagate VMA anonymous page offset on map, remap, split + merge
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 7 files
mm/rmap: track whether the page VMA mapped pgoff is anonymous
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 2 files
mm: clean up vma_address_end()
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm/huge_memory: update remove_migration_pmd() to accept a folio
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 3 files
mm/migrate: calculate large folio page index using PFN
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
mm/rmap: use anon pgoff to track MAP_PRIVATE file-backed anon folios
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 8 files
tools/testing/vma: expand VMA merge tests to assert anon pgoff
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
tools/testing/selftests/mm: test anonymous page offset merge behaviour
Lorenzo Stoakes (ARM) · Aug 13, 2026 · 1 files
ipvs: fix integer overflow in ftp helper port/address parsing
Joas Antonio dos Santos · Aug 13, 2026 · 1 files
maple_tree: fix comment typo
Mark Sercombe · Aug 13, 2026 · 1 files
xsk: fix NULL pointer dereference in __xsk_rcv()
Cen Zhang (Microsoft) · Aug 13, 2026 · 1 files
powercap: intel_rapl: Sign-extend the PMU delta on counter wraparound
Li, Yifan · Aug 14, 2026 · 1 files
arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map()
Nathan Chancellor · Aug 14, 2026 · 1 files
mm/rmap: synchronize lock and unlock target in anon_vma_clone
Eric Kim · Aug 14, 2026 · 1 files
clk: microchip: mpfs: fix regmap_update_bits() mask/val order
Pedro Kopper · Aug 14, 2026 · 1 files
net: bridge: Reject descending VLAN tunnel ranges
Ruoyu Wang · Aug 14, 2026 · 1 files
MAINTAINERS: Add Brian Masney and Jerome Brunet as co-maintainers for clk subsystem
Brian Masney · Aug 14, 2026 · 1 files
Bluetooth: btnxpuart: Validate the FW dump header length
Ali Ahmet Memis · Aug 14, 2026 · 1 files
net: core: propagate unreadable flag in skb_zerocopy
Mina Almasry · Aug 14, 2026 · 2 files
net: tcp: block mixing readable and unreadable frags
Mina Almasry · Aug 14, 2026 · 1 files
ACPI: pfr_update: fix stack buffer overflow in query_capability()
Anirudh Prasad · Aug 14, 2026 · 1 files
net: ipa: fix stalled modem TX queue after runtime resume
Jorijn van der Graaf · Aug 15, 2026 · 1 files
Bluetooth: eir: Fix OOB read in eir_get_service_data()
HyeongJun An · Aug 15, 2026 · 1 files
net: advertise TCP MSS from the configured MTU, not the learned PMTU
Jiayuan Chen · Aug 15, 2026 · 4 files
selftests: net: packetdrill: add tests for advertised MSS with PMTU exceptions
Eric Dumazet · Aug 15, 2026 · 2 files
ipv6: use RCU iterator to dump route exceptions
Yuyang Huang · Aug 15, 2026 · 1 files
net: thunderbolt: Count delivered packets in rx_packets and rx_bytes
Fan Ye · Aug 15, 2026 · 1 files
mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction
Harshit Varu · Aug 15, 2026 · 1 files
Bluetooth: btmtk: Do not report success when subsys reset fails
Ismail Tarim · Aug 15, 2026 · 1 files
Bluetooth: btmtk: Do not discard the subsystem reset timeout
Ismail Tarim · Aug 15, 2026 · 1 files
bnx2x: fix double free in bnx2x_init_firmware() error path
Jiangshan Yi · Aug 15, 2026 · 1 files
net: ipa: balance runtime PM reference on remove error
Ruoyu Wang · Aug 15, 2026 · 1 files
docs: kernel-parameters: add CPU_FREQ, CPU_IDLE build options
Randy Dunlap · Aug 15, 2026 · 1 files
forcedeth: fix off-by-one when saving/restoring non-PCI config space
Marek Czernohous · Aug 15, 2026 · 1 files
forcedeth: stop the tx_timeout register dump past the requested window
Marek Czernohous · Aug 15, 2026 · 1 files
netfilter: nft_set_pipapo_avx2: add missing vzeroupper
Eric Biggers · Aug 15, 2026 · 1 files
regulator: tps65185: wait for the IC to wake before the first I2C access
Mario Rugiero · Aug 15, 2026 · 1 files
net: usb: cdc_ncm: add Apple MacBook Pro USB product ID 0x1902
Mehrdad Afshari · Aug 16, 2026 · 1 files
net: qlcnic: validate unified ROM sections before loading
Pengpeng Hou · Aug 16, 2026 · 1 files
net/mlx5: E-Switch, use state lock for vport state changes
Mark Bloch · Aug 16, 2026 · 5 files
net/mlx5: Move vport DOWN state check out of mlx5_query_vport_max_tx_speed()
Or Har-Toov · Aug 16, 2026 · 3 files
net/mlx5: E-Switch, preserve max tx speed on vport state modification
Or Har-Toov · Aug 16, 2026 · 2 files
NFSv4.2: fix LAYOUTSTATS send buffer exhaustion
Junrui Luo · Aug 16, 2026 · 1 files
NFSv4/pnfs: key the data server cache on the NFS version
Junrui Luo · Aug 16, 2026 · 4 files
NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path
Junrui Luo · Aug 16, 2026 · 1 files
Bluetooth: hci_sync: add conditional locking annotations
Pauli Virtanen · Aug 16, 2026 · 1 files
doc:it_IT: align Italian documentation in process
Federico Vaga · Aug 16, 2026 · 16 files
net/sched: add get_fill_size callbacks for actions missing them
Victor Nogueira · Aug 16, 2026 · 9 files
net/tcp-ao: fix use-after-free of current_key on reconnect to another peer
Hyunwoo Kim · Aug 16, 2026 · 1 files
net/packet: defer vmalloc TX_RING free until skbs finish
Kyle Zeng · Aug 16, 2026 · 1 files
ipv6: avoid divide by zero in rt6_multipath_rebalance
Cen Zhang (Microsoft) · Aug 17, 2026 · 1 files
Bluetooth: btnxpuart: Check remote M.2 connector availability before pwrseq
Sherry Sun · Aug 17, 2026 · 1 files
Revert "esp: do not unref managed frag pages in esp_ssg_unref()"
Steffen Klassert · Aug 17, 2026 · 2 files
NTB: ntb_transport: Recycle TX entries before client callbacks
Koichiro Den · Aug 17, 2026 · 1 files
net: ntb_netdev: Fix TX busy and drop handling
Koichiro Den · Aug 17, 2026 · 1 files
NTB: ntb_transport: Fail TX enqueue when the QP link is down
Koichiro Den · Aug 17, 2026 · 1 files
NTB: ntb_transport: Reject oversized TX buffers
Koichiro Den · Aug 17, 2026 · 1 files
mm/migrate_device: fix cache flush when replacing huge zero PMD
Hui Su · Aug 17, 2026 · 1 files
selftests/mm: drop redundant open() in mprotect_tests()
Hongfu Li · Aug 17, 2026 · 1 files
netdevsim: update queue NAPI association on queue reset
Eric Dumazet · Aug 17, 2026 · 1 files
batman-adv: reject unrepresentable multicast TVLV offsets
Kyle Zeng · Aug 17, 2026 · 2 files
ipv6: seg6: clear IPv4 control block on IPIP decapsulation
Kyle Zeng · Aug 17, 2026 · 1 files
Bluetooth: btmtksdio: Take exclusive ownership of the SKB before TX
Chris Lu · Aug 17, 2026 · 1 files
Bluetooth: btmtksdio: Fix out-of-bounds DMA read in the TX path
Chris Lu · Aug 17, 2026 · 1 files
mm/memcontrol: avoid false sharing between vmstats and events
Usama Arif · Aug 17, 2026 · 1 files
ipv6: rpl: fix NULL dereference of idev in ipv6_rpl_srh_rcv()
Andrea Mayer · Aug 17, 2026 · 1 files
net: add missing ref_tracker_dir_exit() to net_passive_dec()
Tetsuo Handa · Aug 17, 2026 · 1 files
ACPI: button: Add DMI quirk for Razer Blade Pro 17 early 2020 lid switch
Robin Everaars · Aug 17, 2026 · 1 files
net: microchip: vcap: use port number instead of netdev name for debugfs
Daniel Machon · Aug 17, 2026 · 3 files
net: sparx5: fix sleep in atomic context in MAC table access
Daniel Machon · Aug 17, 2026 · 1 files
xfrm: bound nat keepalive state collection
Zihan Xi · Aug 17, 2026 · 1 files
net: phylink: correctly validate returned PCS in phylink_inband_caps
Christian Marangi · Aug 17, 2026 · 1 files
net: txgbe: fix MISC interrupt unmasking in non-MSI-X mode and device shutdown
Jiawen Wu · Aug 18, 2026 · 1 files
ethtool: remove unused __ETHTOOL_LINK_MODE_MASK_NWORDS
Zhan Xusheng · Aug 18, 2026 · 1 files
net/smc: free stashed qentry before overwrite in REQ_ADD_LINK to ADD_LINK transition
Mahanta Jambigi · Aug 18, 2026 · 1 files
qede: Fix NULL pointer dereference in TPA fragment processing
Vaibhav Nagare · Aug 18, 2026 · 2 files
net/smc: free pending qentry in smc_llc_flow_stop() before memset
Mahanta Jambigi · Aug 18, 2026 · 1 files
net: libwx: fix concurrent bitmap overwrite in PTP setup
Jiawen Wu · Aug 18, 2026 · 1 files
netfilter: x_tables: remove pr_debug
Pablo Neira Ayuso · Aug 18, 2026 · 18 files
netfilter: x_tables: replace pr_{info,err}() by pr_info_ratelimited()
Pablo Neira Ayuso · Aug 18, 2026 · 2 files
mm, swap: ratelimit bad swap entry reports
Breno Leitao · Aug 18, 2026 · 1 files
Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378
Lorenzo Stoakes (ARM) · Aug 18, 2026 · 1 files
net: sched: fix 32-bit backlog wrap in gred, bfifo and plug enqueue
Jamal Hadi Salim · Aug 18, 2026 · 3 files
mm: include swap.h in swapops.h
Kiryl Shutsemau (Meta) · Aug 18, 2026 · 1 files
mm: memcg: release the css reference when a stock slot empties
Song Hu · Aug 18, 2026 · 1 files
tools: ynl: handle calloc failure in ynl_ntf_parse
Triet Hoang · Aug 18, 2026 · 1 files
Bluetooth: hci_conn: re-enable advertising only for peripheral role
Valentin Kindschi · Aug 18, 2026 · 1 files
Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection
Valentin Kindschi · Aug 18, 2026 · 1 files
selftests/mm: fix unchecked ftruncate return value in soft-dirty test
Anshuman · Aug 18, 2026 · 1 files
docs: oa-tc6-framework: Fix link to specification
Stefan Wahren · Aug 18, 2026 · 1 files
gtp: serialize PDP context updates
Qing Ming · Aug 18, 2026 · 1 files
net: bridge: arp/nd proxy: fix reading neigh ha
Nikolay Aleksandrov · Aug 18, 2026 · 1 files
vxlan: fix reading neigh ha
Nikolay Aleksandrov · Aug 18, 2026 · 1 files
inetpeer: randomize RB-tree node comparison using SipHash
Eric Dumazet · Aug 18, 2026 · 2 files
xdp: fix zero-copy frame layout
Weiming Shi · Aug 18, 2026 · 1 files
PM: sleep: Unblock runtime PM when device prepare fails
Shibo Zhu · Aug 18, 2026 · 1 files
ip6mr: do not clone dst in ip6mr_cache_report()
Eric Dumazet · Aug 18, 2026 · 1 files
Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready
Hang Nan · Aug 19, 2026 · 1 files
sctp: drop a chunk if its transport was removed
Hyunwoo Kim · Aug 19, 2026 · 1 files
net/smc: fix use-after-free of the LLC qentry in smc_llc_srv_add_link()
Yehyeong Lee · Aug 19, 2026 · 1 files
net/smc: bound the peer rkey counts in SMC-Rv2 LLC messages
Yehyeong Lee · Aug 19, 2026 · 1 files
net/smc: carry oversized SMC-Rv2 LLC messages in the queue entry
Yehyeong Lee · Aug 19, 2026 · 2 files
ipip: fix skb leak in collect_md mode when metadata_dst allocation fails
Anton Danilov · Aug 19, 2026 · 1 files
netfilter: nf_tables: skip double clone set expressions on element insert
Pablo Neira Ayuso · Aug 19, 2026 · 3 files
selftests/mm: check stat() return value in khugepaged get_finfo()
Anshuman · Aug 19, 2026 · 1 files
pNFS: Fix EBUSY check in pnfs_layout_need_return
Tim Menninger · Aug 19, 2026 · 1 files
net: ethernet: mtk_wed: increase WED v2 WDMA RESV_BUFF to 0x80
Shiji Yang · Aug 19, 2026 · 2 files
docs: threat-model: fix /dev/kmsg reference
Johan Hovold · Aug 19, 2026 · 1 files
Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb
Xin Chen · Aug 19, 2026 · 1 files
net/sched: account classifier filter allocations to memcg
Jamal Hadi Salim · Aug 19, 2026 · 10 files
tcp: clamp route advmss to TCP_MIN_MSS
Yong Wang · Aug 19, 2026 · 5 files
xsk: align TX metadata layout across ABIs
Stanislav Fomichev · Aug 19, 2026 · 2 files
xsk: honor XDP_TX_METADATA in zero-copy path
Stanislav Fomichev · Aug 19, 2026 · 7 files
net: ntb_netdev: Avoid double-accounting netif_rx() drops
Koichiro Den · Aug 19, 2026 · 1 files
net: ntb_netdev: Count packets dropped on RX refill failure
Koichiro Den · Aug 19, 2026 · 1 files
docs: panic: Disclaimer about console verbosity when using panic_print with pstore
Guilherme G. Piccoli · Aug 19, 2026 · 1 files
clk: ti: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 3 files
clk: visconti: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 1 files
spi: amlogic-spisg: Make sure clk_init_data is fully initialized
Geert Uytterhoeven · Aug 19, 2026 · 1 files
docs: block: fix dead http link in blk-mq.rst
Jenson Johnathon Reggentin · Aug 19, 2026 · 1 files
ACPI: Add Bob Moore to CREDITS
Rafael J. Wysocki · Aug 19, 2026 · 1 files
ACPI: Update MAINTAINERS entry for ACPICA
Rafael J. Wysocki · Aug 19, 2026 · 1 files
ACPI: Update upstream ACPICA repository URL in documentation
Rafael J. Wysocki · Aug 19, 2026 · 1 files
net: bnxt: ring the doorbell when SW USO exits early
Joe Damato · Aug 19, 2026 · 2 files
gtp: add synchronize_net() in gtp_newlink() error path to prevent use-after-free
Cen Zhang (Microsoft) · Aug 20, 2026 · 1 files
octeontx2-af: fix NULL deref in NIX TM tree debugfs read path
Anshumali Gaur · Aug 20, 2026 · 1 files
octeontx2-af: fix out-of-bounds read setting MSI-X irq affinity
Anshumali Gaur · Aug 20, 2026 · 1 files
ACPI: scan: Defer device power initialization
Peixin Xie · Aug 20, 2026 · 2 files
net/smc: stop killed, freed and out_of_sync sharing a byte
Hidayath Khan · Aug 20, 2026 · 1 files
net/smc: fix use-after-free in smc_rx_pipe_buf_release()
Hidayath Khan · Aug 20, 2026 · 1 files
netfilter: nf_tables: set on dead bit when performing early element removal
Pablo Neira Ayuso · Aug 20, 2026 · 1 files
octeontx2-vf: fix workqueue and netdev race in probe/remove
Anshumali Gaur · Aug 20, 2026 · 1 files
net: airoha: npu: fix missing streaming DMA mask
Daniel Pawlik · Aug 20, 2026 · 1 files
spi: loongson: pm: add .freeze .poweroff .thaw .restore
Li Jun · Aug 20, 2026 · 1 files
net_sched: sch_fq: fix pacing delay underflow with pacing offload
Eric Dumazet · Aug 20, 2026 · 1 files
net: hibmcge: fix page_pool DMA direction mismatch
Jian Shen · Aug 20, 2026 · 1 files
net/smc: fix socket refcount leak in smc_switch_conns()
Hidayath Khan · Aug 20, 2026 · 1 files
net/sched: sch_cake: fix autorate reconfiguration throttling
Giuseppe Piscitelli · Aug 20, 2026 · 1 files
net: macb: drop CONFIG_OF #if block
Théo Lebrun · Aug 20, 2026 · 1 files
net: page_pool: Remove zone/policy GFP flags when allocating XArray entries
Rong Zhang · Aug 20, 2026 · 1 files
net: l2tp: do not propagate multicast notification errors
Zihan Xi · Aug 20, 2026 · 1 files
ACPI: scan: Do not combine resources that overlap completely
Rafael J. Wysocki · Aug 20, 2026 · 1 files
net: qualcomm: rmnet: restore skb->dev on deaggregated frames
Xiang Mei · Aug 20, 2026 · 1 files
NFSv4.1: zero referring call lists before decoding
Jérémy Jean · Aug 20, 2026 · 1 files
bnxt_en: Gate TPH enablement behind BNXT_SUPPORTS_QUEUE_API check
Thomas Walsh · Aug 20, 2026 · 1 files
Bluetooth: hci_uart: Fix false success return in hci_uart_setup()
Gongwei Li · Aug 21, 2026 · 2 files
selftests/net: fix kill() argument order and wrapper cleanup in fin_ack_lat
Qingshuang Fu · Aug 21, 2026 · 2 files
selftests/net: check fork() return value in fin_ack_lat
Qingshuang Fu · Aug 21, 2026 · 1 files
openvswitch: Fix CT limit teardown use-after-free
Yuqi Xu · Aug 21, 2026 · 4 files
ptp: netc: fix period truncation and potential divide-by-zero in PEROUT
Wei Fang · Aug 21, 2026 · 1 files
bnxt_en: Fix call to hardware monitoring event handler
Guenter Roeck · Aug 21, 2026 · 1 files
octeontx2-af: Fix TL3/TL2 link config ENA clearing
Naveen Mamindlapalli · Aug 21, 2026 · 1 files
net: stmmac: fix device node reference leaks in stmmac_mtl_setup()
Md Rabbani · Aug 21, 2026 · 1 files
mm/vmscan: fix comment logic in balance_pgdat
Enlin Mu · Aug 21, 2026 · 1 files
net: enetc: restore RX ring congestion mode after ring reconfiguration
Wei Fang · Aug 21, 2026 · 3 files
net: enetc: restore RX ring congestion mode for ENETC v4
Wei Fang · Aug 21, 2026 · 1 files
net: ethernet: renesas: rswitch: fix device_node refcount leak in rswitch_get_port_node()
Manush Prajwal · Aug 21, 2026 · 1 files
octeontx2-af: fix cn20k mailbox lifetime on repeated rvu_mbox_init()
Sai Krishna · Aug 21, 2026 · 3 files
netfilter: nf_tables: remove leftover set_update_list
Pablo Neira Ayuso · Aug 21, 2026 · 1 files
octeontx2-pf: fix NULL deref of af_xdp_zc_qidx on rep setup
Suman Ghosh · Aug 21, 2026 · 3 files
net/iucv: filter frames in afiucv_hs_rcv() by ingress device
Alexandra Winter · Aug 21, 2026 · 1 files
net/sched: act_ife: Only operate on Ethernet frames
Victor Nogueira · Aug 21, 2026 · 2 files
net: mana: Cap MSI-X vectors to the device MSI-X table size
Long Li · Aug 21, 2026 · 1 files
maple_tree: add rcu locking check when LOCKDEP is enabled
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
locking/lockdep: add sequence counter to held_lock
Liam R. Howlett (Oracle) · Aug 21, 2026 · 4 files
maple_tree: add write lock checking with lockdep sequence numbers
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
maple_tree: documentation fix
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: drop dead code from mas_extend_spanning_null()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: drop MAPLE_ALLOC_SLOTS
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: clarify comments on mas_nomem()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: use prefetched value in mas_wr_store_type()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: optimise mas_wr_node_store() when not in rcu mode
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: micro optimisation of mas_wr_store_type()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: add bulk parent set helper
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: catch race in mas_alloc_cyclic()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: document that erase may use GFP_KERNEL for allocations
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: avoid mas_erase() and mtree_erase() failures
Liam R. Howlett (Oracle) · Aug 21, 2026 · 2 files
maple_tree: document erase and allocations better
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: change two GFP flags in tests
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: fix argument name in header
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: avoid extra gap calculation
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
maple_tree: add helper mas_make_walkable()
Liam R. Howlett (Oracle) · Aug 21, 2026 · 1 files
dma-contiguous: fix truncation of numa_cma / cma_pernuma sizes >= 2G
Alexander Graf · Aug 21, 2026 · 1 files
memcg: move LRU size accounting on reparenting instead of copying it
Shakeel Butt · Aug 22, 2026 · 2 files
net/rds: use wq_has_sleeper() in rds_cong_map_updated()
Allison Henderson · Aug 22, 2026 · 1 files
net: fix a resource leak in copy_net_ns() error handling path
Tetsuo Handa · Aug 22, 2026 · 1 files
seg6: reset IP6CB after IPv6 decapsulation
Zhiling Zou · Aug 22, 2026 · 1 files
openvswitch: only skb_tx_error() a packet we are about to drop
Norbert Szetei · Aug 22, 2026 · 1 files
net: skbuff: don't skb_tx_error() the source skb in skb_zerocopy()
Norbert Szetei · Aug 22, 2026 · 1 files
net: skbuff: don't touch shared zerocopy state in skb_tx_error()
Norbert Szetei · Aug 22, 2026 · 1 files
powercap: intel_rapl: Fix kernel panic during PMU unbind
Sumeet Pawnikar · Aug 22, 2026 · 1 files
virtio-net: Ensure that TCP packets don't overflow gso_segs
Alice Mikityanska · Aug 22, 2026 · 1 files
net: Guard for gso_segs overflow in skb_segment
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Wait for netserver to launch
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Lower threshold on debug kernels for big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Lower threshold with csum offload off in big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
selftests: net: Fix slow configurations in big_tcp_tunnels.sh
Alice Mikityanska · Aug 22, 2026 · 1 files
Bluetooth: RFCOMM: serialize session teardown
Chengfeng Ye · Aug 22, 2026 · 1 files
Bluetooth: RFCOMM: serialize security confirmation handling
Chengfeng Ye · Aug 22, 2026 · 1 files
vsock/virtio: flush works in dependency order
Chengfeng Ye · Aug 22, 2026 · 1 files
net/sched: fq: add overflow bounds to quantum and initial quantum
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: fq_codel: clamp default quantum and mtu
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: sch_codel: clamp default mtu to avoid disabling CoDel
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: fq_pie: clamp default quantum to avoid signed overflow
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: hhf: clamp quantum before hhf_change() to avoid overflow
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/sched: sfq: clamp quantum to avoid signed overflow soft lockup
Jamal Hadi Salim · Aug 22, 2026 · 1 files
net/tcp: fix TCP-AO key deletion in VRFs
Rastislav Szabo · Aug 22, 2026 · 1 files
selftests: net: tcp_ao: test VRF-scoped key deletion
Rastislav Szabo · Aug 22, 2026 · 3 files
tls: device: fix out-of-bounds write in tls_append_frag()
Jiayuan Chen · Aug 23, 2026 · 1 files
net: phy: air_en8811h: move LED GPIO configuration to config_init
Vitaliy Sochnev · Aug 23, 2026 · 1 files
sctp: fix NULL deref on untransmitted RECONF completion
Weiming Shi · Aug 23, 2026 · 1 files
net/sched: act_skbmod: fix length calculations and avoid invalid header warnings
Eric Dumazet · Aug 23, 2026 · 1 files
net: core: check skb_frags_readable before uncloning in skb_copy_ubufs
Mina Almasry · Aug 23, 2026 · 1 files
net: core: fix head-page leak in skb_zerocopy
Mina Almasry · Aug 23, 2026 · 1 files
net/smc: release the internal TCP sock on IPPROTO_SMC socket creation failure
Yifei Chu · Aug 24, 2026 · 1 files
Bluetooth: btusb: limit RTL8761B BROKEN_EXT_SCAN quirk to 0bda:a728
Junjie Cao · Aug 24, 2026 · 2 files
net: wangxun: use BIT_ULL() to prevent shift overflow on 32-bit archs
Jiawen Wu · Aug 24, 2026 · 2 files
verification/rvgen: Use .old instead of .bak for kunit backup files
Gabriele Monaco · Aug 24, 2026 · 3 files
sctp: distinguish sequence zero from wildcard in reconf lookup
Jun Yang · Aug 24, 2026 · 1 files
sctp: fix stream->outcnt underflow on duplicate RECONF responses
Jun Yang · Aug 24, 2026 · 2 files
net: stmmac: drop gso_enabled_types and rely on netdev features
Lorenzo Bianconi · Aug 24, 2026 · 2 files
slip: fix use-after-free in sl_sync()
Aleksandr Khromov · Aug 24, 2026 · 1 files
net: ethernet: sun4i-emac: Fix IRQ error handling
bui duc phuc · Aug 24, 2026 · 1 files
Bluetooth: do not leak an hci_conn when a second LE connect is rejected
Radek Podgorny · Aug 24, 2026 · 1 files
net/sched: sch_teql: restore skb->dev on the slave failure path
Victor Nogueira · Aug 24, 2026 · 1 files
net: stmmac: restore NET_IP_ALIGN in the RX DMA offset
Pascal Kneuper · Aug 24, 2026 · 1 files
net: dsa: mxl862xx: enable assisted learning on CPU port
Edoardo Pinci · Aug 24, 2026 · 1 files
Revert "thermal/core: Use the thermal class pointer as init guard"
Rafael J. Wysocki · Aug 24, 2026 · 1 files
Revert "thermal/core: Allocate the thermal class dynamically"
Rafael J. Wysocki · Aug 24, 2026 · 1 files
apparmor: policy_int make sure list heads are initialized before fail path
John Johansen · Aug 24, 2026 · 1 files
tcp: fix AO info use-after-free in tcp_ao_connect_init()
Qing Ming · Aug 25, 2026 · 1 files
net/sched: bound qdisc_pkt_len to prevent qdisc soft lockup
Jamal Hadi Salim · Aug 25, 2026 · 2 files
net: fix spurious TX timeout after dev_activate()
Breno Leitao · Aug 25, 2026 · 1 files
net: stmmac: selftests: Pass the IP proto mask in the TC selftest
Maxime Chevallier · Aug 25, 2026 · 1 files
bnxt_en: Write doorbell when linearizing skb fails
Joe Damato · Aug 26, 2026 · 1 files
net: bridge: mcast: fix use-after-free of a master VLAN's multicast context
Norbert Szetei · Aug 26, 2026 · 1 files
net: fec: only stop PTP if it was initialized
bui duc phuc · Aug 26, 2026 · 1 files
slip: remove slip_hangup() to fix use-after-free in slip_receive_buf()
Eric Dumazet · Aug 26, 2026 · 1 files
of/irq: Fix device node refcount leak in of_irq_get_affinity()
Fuad Tabba · Aug 26, 2026 · 1 files
usb: atm: usbatm: fix invalid ci_range initialization
Deepanshu Kartikey · Aug 26, 2026 · 1 files
net: stmmac: selftests: Check multiple MMC counters
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwmac1000: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwmac4: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: dwxgmac: Account for the primary MAC address for UC filtering
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: selftests: Account for the UC filter list for filtering tests
Maxime Chevallier · Aug 26, 2026 · 1 files
net: stmmac: selftests: Don't test flow control for small rx fifos
Maxime Chevallier · Aug 26, 2026 · 1 files
tcp: fix corruption of urgent data on multi-segment retransmit
Jiayuan Chen · Aug 26, 2026 · 1 files
selftests/net: packetdrill: add tcp_urg_ptr_retransmit
Jiayuan Chen · Aug 26, 2026 · 1 files
net/sched: sch_htb: limit htb_classify inner-class filter hops
Jamal Hadi Salim · Aug 26, 2026 · 1 files
inet: frags: strip GSO state from fragments before reassembly
Xinyang Ge · Aug 27, 2026 · 1 files