From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev
Cc: Jiasheng Jiang <jiashengjiangcool@gmail.com>,
Konstantin Komarov <almaz.alexandrovich@paragon-software.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 357/385] fs/ntfs3: Fix slab-out-of-bounds read in DeleteIndexEntryRoot
Date: Sat, 28 Feb 2026 12:59:39 -0500 [thread overview]
Message-ID: <20260228180011.1568201-357-sashal@kernel.org> (raw)
In-Reply-To: <20260228180011.1568201-1-sashal@kernel.org>
From: Jiasheng Jiang <jiashengjiangcool@gmail.com>
[ Upstream commit b2bc7c44ed1779fc9eaab9a186db0f0d01439622 ]
In the 'DeleteIndexEntryRoot' case of the 'do_action' function, the
entry size ('esize') is retrieved from the log record without adequate
bounds checking.
Specifically, the code calculates the end of the entry ('e2') using:
e2 = Add2Ptr(e1, esize);
It then calculates the size for memmove using 'PtrOffset(e2, ...)',
which subtracts the end pointer from the buffer limit. If 'esize' is
maliciously large, 'e2' exceeds the used buffer size. This results in
a negative offset which, when cast to size_t for memmove, interprets
as a massive unsigned integer, leading to a heap buffer overflow.
This commit adds a check to ensure that the entry size ('esize') strictly
fits within the remaining used space of the index header before performing
memory operations.
Fixes: b46acd6a6a62 ("fs/ntfs3: Add NTFS journal")
Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/ntfs3/fslog.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c
index d0d530f4e2b95..5afe00972924c 100644
--- a/fs/ntfs3/fslog.c
+++ b/fs/ntfs3/fslog.c
@@ -3431,6 +3431,9 @@ static int do_action(struct ntfs_log *log, struct OPEN_ATTR_ENRTY *oe,
e1 = Add2Ptr(attr, le16_to_cpu(lrh->attr_off));
esize = le16_to_cpu(e1->size);
+ if (PtrOffset(e1, Add2Ptr(hdr, used)) < esize)
+ goto dirty_vol;
+
e2 = Add2Ptr(e1, esize);
memmove(e1, e2, PtrOffset(e2, Add2Ptr(hdr, used)));
--
2.51.0
next prev parent reply other threads:[~2026-02-28 18:05 UTC|newest]
Thread overview: 387+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-28 17:53 [PATCH 6.12 001/385] RDMA/siw: Fix potential NULL pointer dereference in header processing Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 002/385] RDMA/umad: Reject negative data_len in ib_umad_write Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 003/385] auxdisplay: arm-charlcd: fix release_mem_region() size Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 004/385] hfsplus: return error when node already exists in hfs_bnode_create Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 005/385] rcu: Refactor expedited handling check in rcu_read_unlock_special() Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 006/385] rcu: Remove local_irq_save/restore() in rcu_preempt_deferred_qs_handler() Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 007/385] rcu: Fix rcu_read_unlock() deadloop due to softirq Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 008/385] audit: move the compat_xxx_class[] extern declarations to audit_arch.h Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 009/385] i3c: Move device name assignment after i3c_bus_init Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 010/385] fs: add <linux/init_task.h> for 'init_fs' Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 011/385] i3c: master: Update hot-join flag only on success Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 012/385] gfs2: Retries missing in gfs2_{rename,exchange} Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 013/385] gfs2: Fix slab-use-after-free in qd_put Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 014/385] gfs2: Fix use-after-free in iomap inline data write path Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 015/385] i3c: dw: Initialize spinlock to avoid upsetting lockdep Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 016/385] i3c: dw: Fix memory leak in dw_i3c_master_i2c_xfers() Sasha Levin
2026-02-28 17:53 ` [PATCH 6.12 017/385] tpm: tpm_i2c_infineon: Fix locality leak on get_burstcount() failure Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 018/385] tpm: st33zp24: Fix missing cleanup on get_burstcount() error Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 019/385] erofs: get rid of raw bi_end_io() usage Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 020/385] erofs: handle end of filesystem properly for file-backed mounts Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 021/385] btrfs: qgroup: return correct error when deleting qgroup relation item Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 022/385] btrfs: fix block_group_tree dirty_list corruption Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 023/385] smb: client: fix potential UAF and double free in smb2_open_file() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 024/385] block: add a bio_add_virt_nofail helper Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 025/385] rnbd-srv: use bio_add_virt_nofail Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 026/385] rnbd-srv: Fix server side setting of bi_size for special IOs Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 027/385] xen/virtio: Don't use grant-dma-ops when running as Dom0 Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 028/385] io_uring: use release-acquire ordering for IORING_SETUP_R_DISABLED Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 029/385] ACPICA: Fix NULL pointer dereference in acpi_ev_address_space_dispatch() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 030/385] io_uring/sync: validate passed in offset Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 031/385] cpuidle: governors: menu: Always check timers with tick stopped Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 032/385] thermal: intel: x86_pkg_temp_thermal: Handle invalid temperature Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 033/385] md/raid5: fix raid5_run() to return error when log_init() fails Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 034/385] md/raid10: fix any_working flag handling in raid10_sync_request Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 035/385] OPP: Return correct value in dev_pm_opp_get_level Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 036/385] cpufreq: scmi: Fix device_node reference leak in scmi_cpu_domain_id() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 037/385] iomap: fix submission side handling of completion side errors Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 038/385] thermal/of: Fix reference leak in thermal_of_cm_lookup() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 039/385] ublk: Validate SQE128 flag before accessing the cmd Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 040/385] Partial revert "x86/xen: fix balloon target initialization for PVH dom0" Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 041/385] md/raid1: fix memory leak in raid1_run() if no active rdev Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 042/385] md/raid1: fix memory leak in raid1_run() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 043/385] PM: wakeup: Handle empty list in wakeup_sources_walk_start() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 044/385] perf: arm_spe: Properly set hw.state on failures Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 045/385] cpufreq: intel_pstate: Enable asym capacity only when CPU SMT is not possible Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 046/385] PM: sleep: wakeirq: harden dev_pm_clear_wake_irq() against races Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 047/385] s390/cio: Fix device lifecycle handling in css_alloc_subchannel() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 048/385] perf/x86/core: Do not set bit width for unavailable counters Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 049/385] crypto: qat - fix warning on adf_pfvf_pf_proto.c Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 050/385] selftests/bpf: veristat: fix printing order in output_stats() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 051/385] libbpf: Fix OOB read in btf_dump_get_bitfield_value Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 052/385] ARM: VDSO: Patch out __vdso_clock_getres() if unavailable Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 053/385] crypto: cavium - fix dma_free_coherent() size Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 054/385] crypto: octeontx " Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 055/385] crypto: hisilicon/zip - adjust the way to obtain the req in the callback function Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 056/385] crypto: hisilicon/sec2 - support skcipher/aead fallback for hardware queue unavailable Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 057/385] bpf: Preserve id of register in sync_linked_regs() Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 058/385] selftests/bpf: Fix resource leak in serial_test_wq on attach failure Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 059/385] hrtimer: Fix trace oddity Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 060/385] crypto: ccp - Ensure implicit SEV/SNP init and shutdown in ioctls Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 061/385] crypto: ccp - narrow scope of snp_range_list Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 062/385] bpf, sockmap: Fix incorrect copied_seq calculation Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 063/385] bpf, sockmap: Fix FIONREAD for sockmap Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 064/385] tracing: Add a comment about ftrace_regs definition Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 065/385] ftrace: Make ftrace_regs abstract from direct use Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 066/385] ftrace: Consolidate ftrace_regs accessor functions for archs using pt_regs Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 067/385] ftrace: Use arch_ftrace_regs() for ftrace_regs_*() macros Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 068/385] ftrace: Rename ftrace_regs_return_value to ftrace_regs_get_return_value Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 069/385] fgraph: Replace fgraph_ret_regs with ftrace_regs Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 070/385] tracing: Add ftrace_partial_regs() for converting ftrace_regs to pt_regs Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 071/385] tracing: Add ftrace_fill_perf_regs() for perf event Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 072/385] x86/fgraph,bpf: Fix stack ORC unwind from kprobe_multi return probe Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 073/385] x86/fgraph,bpf: Switch kprobe_multi program stack unwind to hw_regs path Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 074/385] crypto: hisilicon/trng - support tfms sharing the device Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 075/385] crypto: caam - fix netdev memory leak in dpaa2_caam_probe Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 076/385] bpf: Fix bpf_xdp_store_bytes proto for read-only arg Sasha Levin
2026-02-28 17:54 ` [PATCH 6.12 077/385] genirq: Set IRQF_COND_ONESHOT in devm_request_irq() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 078/385] platform/x86: int0002: Remove IRQF_ONESHOT from request_irq() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 079/385] Bluetooth: btintel_pcie: Use IRQF_ONESHOT and default primary handler Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 080/385] scsi: efct: " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 081/385] EDAC/altera: Remove IRQF_ONESHOT Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 082/385] mfd: wm8350-core: Use IRQF_ONESHOT Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 083/385] media: pci: mg4b: Use IRQF_NO_THREAD Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 084/385] sched/deadline: Clear the defer params Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 085/385] sched/rt: Skip currently executing CPU in rto_next_cpu() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 086/385] fs/tests: exec: drop duplicate bprm_stack_limits test vectors Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 087/385] crypto: starfive - Fix memory leak in starfive_aes_aead_do_one_req() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 088/385] hwrng: core - Allow runtime disabling of the HW RNG Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 089/385] hwrng: core - use RCU and work_struct to fix race condition Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 090/385] pstore/ram: fix buffer overflow in persistent_ram_save_old() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 091/385] soc: qcom: smem: handle ENOMEM error during probe Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 092/385] EDAC/i5000: Fix snprintf() size calculation in calculate_dimm_size() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 093/385] EDAC/i5400: Fix snprintf() limit " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 094/385] firmware: arm_ffa: Correct 32-bit response handling in NOTIFICATION_INFO_GET Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 095/385] arm64: dts: tqma8mpql-mba8mpxl: Fix HDMI CEC pad control settings Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 096/385] arm64: dts: tqma8mpql-mba8mp-ras314: " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 097/385] clk: qcom: Return correct error code in qcom_cc_probe_by_index() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 098/385] arm64: dts: qcom: sdm630: fix gpu_speed_bin size Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 099/385] arm64: dts: qcom: sdm845-oneplus: Don't mark ts supply boot-on Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 100/385] arm64: dts: qcom: sdm845-oneplus: Don't keep panel regulator always on Sasha Levin
2026-02-28 18:10 ` David Heidelberg
2026-03-02 0:44 ` Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 101/385] arm64: dts: qcom: sdm845-oneplus: Mark l14a regulator as boot-on Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 102/385] arm64: dts: qcom: x1e80100: Fix USB combo PHYs SS1 and SS2 ref clocks Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 103/385] arm64: dts: qcom: msm8994-octagon: Fix Analog Devices vendor prefix of AD7147 Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 104/385] ARM: dts: allwinner: sun5i-a13-utoo-p66: delete "power-gpios" property Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 105/385] powerpc/uaccess: Move barrier_nospec() out of allow_read_{from/write}_user() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 106/385] soc: qcom: cmd-db: Use devm_memremap() to fix memory leak in cmd_db_dev_probe Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 107/385] soc: mediatek: svs: Fix memory leak in svs_enable_debug_write() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 108/385] powerpc/eeh: fix recursive pci_lock_rescan_remove locking in EEH event handling Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 109/385] ARM: dts: lpc32xx: Set motor PWM #pwm-cells property value to 3 cells Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 110/385] arm: dts: lpc32xx: add clocks property to Motor Control PWM device tree node Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 111/385] arm64: dts: mediatek: mt8183-jacuzzi-pico6: Fix typo in pinmux node Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 112/385] arm64: dts: amlogic: s4: assign mmc b clock to 24MHz Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 113/385] arm64: dts: amlogic: s4: fix mmc clock assignment Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 114/385] arm64: dts: ti: k3-j784s4-main.dtsi: Move c71_3 node to appropriate order Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 115/385] arm64: dts: ti: k3-j784s4-j742s2-main-common.dtsi: Refactor watchdog instances for j784s4 Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 116/385] hwspinlock: omap: Handle devm_pm_runtime_enable() errors Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 117/385] arm64: dts: amlogic: c3: assign the MMC signal clocks Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 118/385] arm64: dts: amlogic: axg: " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 119/385] arm64: dts: amlogic: gx: " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 120/385] arm64: dts: amlogic: g12: assign the MMC B and C " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 121/385] arm64: dts: amlogic: g12: assign the MMC A signal clock Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 122/385] arm64: dts: qcom: qrb4210-rb2: Fix UART3 wakeup IRQ storm Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 123/385] arm64: dts: qcom: sdm845-db845c: drop CS from SPIO0 Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 124/385] arm64: dts: qcom: sdm845-db845c: specify power for WiFi CH1 Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 125/385] arm64: dts: qcom: x1e: bus is 40-bits (fix 64GB models) Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 126/385] arm64: dts: qcom: agatti: Add CX_MEM/DBGC GPU regions Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 127/385] arm64: dts: qcom: sm6115: " Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 128/385] drm/panthor: Recover from panthor_gpu_flush_caches() failures Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 129/385] drm/panthor: Fix the full_tick check Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 130/385] drm/panthor: Fix the group priority rotation logic Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 131/385] drm/panthor: Fix immediate ticking on a disabled tick Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 132/385] drm/panthor: Fix the logic that decides when to stop ticking Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 133/385] drm/panthor: Make sure we resume the tick when new jobs are submitted Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 134/385] workqueue: Factor out assign_rescuer_work() Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 135/385] workqueue: Only assign rescuer work when really needed Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 136/385] workqueue: Process rescuer work items one-by-one using a cursor Sasha Levin
2026-02-28 17:55 ` [PATCH 6.12 137/385] drm/panel: sw43408: Remove manual invocation of unprepare at remove Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 138/385] ALSA: pcm: use new array-copying-wrapper Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 139/385] ALSA: pcm: Relax __free() variable declarations Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 140/385] ALSA: vmaster: " Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 141/385] drm/panthor: Evict groups before VM termination Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 142/385] smack: /smack/doi must be > 0 Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 143/385] smack: /smack/doi: accept previously used values Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 144/385] ASoC: nau8821: Consistently clear interrupts before unmasking Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 145/385] ASoC: nau8821: Avoid unnecessary blocking in IRQ handler Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 146/385] ASoC: nau8821: Fixup nau8821_enable_jack_detect() Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 147/385] media: chips-media: wave5: Fix memory leak on codec_info allocation failure Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 148/385] drm/amd: Drop "amdgpu kernel modesetting enabled" message Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 149/385] drm/amdkfd: Fix signal_eviction_fence() bool return value Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 150/385] drm/amdgpu: Use explicit VCN instance 0 in SR-IOV init Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 151/385] drm/msm/disp/dpu: add merge3d support for sc7280 Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 152/385] drm/msm/dpu: Set vsync source irrespective of mdp top support Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 153/385] drm/msm/dpu: fix WD timer handling on DPU 8.x Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 154/385] regulator: core: move supply check earlier in set_machine_constraints() Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 155/385] HID: playstation: Add missing check for input_ff_create_memless Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 156/385] drm/msm/disp: set num_planes to 1 for interleaved YUV formats Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 157/385] drm/msm/dpu: fix CMD panels on DPU 1.x - 3.x Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 158/385] media: ccs: Accommodate C-PHY into the calculation Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 159/385] drm/msm/a2xx: fix pixel shader start on A225 Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 160/385] drm/buddy: release free_trees array on buddy mm teardown Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 161/385] platform/chrome: cros_typec_switch: Don't touch struct fwnode_handle::dev Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 162/385] media: uvcvideo: Fix allocation for small frame sizes Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 163/385] evm: Use ordered xattrs list to calculate HMAC in evm_init_hmac() Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 164/385] drm/xe: Unregister drm device on probe error Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 165/385] platform/chrome: cros_ec_lightbar: Fix response size initialization Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 166/385] HID: intel-ish-hid: fix NULL-ptr-deref in ishtp_bus_remove_all_clients Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 167/385] spi: tools: Add include folder to .gitignore Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 168/385] Revert "hwmon: (ibmpex) fix use-after-free in high/low store" Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 169/385] hwmon: pmbus: mpq8785: Prepare driver for multiple device support Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 170/385] hwmon: pmbus: mpq8785: Implement VOUT feedback resistor divider ratio configuration Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 171/385] hwmon: pmbus: mpq8785: Add support for MPM82504 Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 172/385] hwmon: (pmbus/mpq8785) fix VOUT_MODE mismatch during identification Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 173/385] PCI: mediatek: Fix IRQ domain leak when MSI allocation fails Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 174/385] Documentation: PCI: endpoint: Fix ntb/vntb copy & paste errors Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 175/385] PCI/PM: Avoid redundant delays on D3hot->D3cold Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 176/385] wifi: cfg80211: Fix use_for flag update on BSS refresh Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 177/385] PCI/P2PDMA: Release per-CPU pgmap ref when vm_insert_page() fails Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 178/385] docs: fix WARNING document not included in any toctree Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 179/385] Documentation: trace: Refactor toctree Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 180/385] Documentation: tracing: Add PCI tracepoint documentation Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 181/385] PCI: Do not attempt to set ExtTag for VFs Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 182/385] PCI/portdrv: Fix potential resource leak Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 183/385] dm: fix unlocked test for dm_suspended_md Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 184/385] dm: use READ_ONCE in dm_blk_report_zones Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 185/385] quota: fix livelock between quotactl and freeze_super Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 186/385] net: mctp-i2c: fix duplicate reception of old data Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 187/385] mctp i2c: initialise event handler read bytes Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 188/385] wifi: cfg80211: stop NAN and P2P in cfg80211_leave Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 189/385] netfilter: nf_tables: reset table validation state on abort Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 190/385] netfilter: nf_conncount: make nf_conncount_gc_list() to disable BH Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 191/385] netfilter: nf_conncount: increase the connection clean up limit to 64 Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 192/385] netfilter: nft_compat: add more restrictions on netlink attributes Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 193/385] netfilter: nf_conncount: fix tracking of connections from localhost Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 194/385] module: add helper function for reading module_buildid() Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 195/385] kallsyms/ftrace: set module buildid in ftrace_mod_address_lookup() Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 196/385] PCI: Mark 3ware-9650SA Root Port Extended Tags as broken Sasha Levin
2026-02-28 17:56 ` [PATCH 6.12 197/385] iommu/vt-d: Flush cache for PASID table before using it Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 198/385] iommu/vt-d: Separate page request queue from SVM Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 199/385] iommu/vt-d: Drain PRQs when domain removed from RID Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 200/385] iommu/vt-d: Avoid draining PRQ in sva mm release path Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 201/385] iommu/vt-d: Clear Present bit before tearing down PASID entry Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 202/385] dm: use bio_clone_blkg_association Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 203/385] xdrgen: Fix struct prefix for typedef types in program wrappers Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 204/385] NFS: NFSERR_INVAL is not defined by NFSv2 Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 205/385] xdrgen: Initialize data pointer for zero-length items Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 206/385] nfsd: never defer requests during idmap lookup Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 207/385] fat: avoid parent link count underflow in rmdir Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 208/385] tcp: tcp_tx_timestamp() must look at the rtx queue Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 209/385] PCI: Check parent for NULL in of_pci_bus_release_domain_nr() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 210/385] wifi: ath10k: sdio: add missing lock protection in ath10k_sdio_fw_crashed_dump() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 211/385] PCI: Initialize RCB from pci_configure_device() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 212/385] PCI: Add defines for bridge window indexing Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 213/385] PCI/ACPI: Restrict program_hpx_type2() to AER bits Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 214/385] selftests/mm: pagemap_ioctl: Fix types mismatches shown by compiler options Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 215/385] selftests/mm: convert page_size to unsigned long Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 216/385] ipc: don't audit capability check in ipc_permissions() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 217/385] ucount: check for CAP_SYS_RESOURCE using ns_capable_noaudit() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 218/385] of: unittest: fix possible null-pointer dereferences in of_unittest_property_copy() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 219/385] mptcp: fix receive space timestamp initialization Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 220/385] octeontx2-af: Fix PF driver crash with kexec kernel booting Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 221/385] bonding: only set speed/duplex to unknown, if getting speed failed Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 222/385] inet: RAW sockets using IPPROTO_RAW MUST drop incoming ICMP Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 223/385] nfc: hci: shdlc: Stop timers and work before freeing context Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 224/385] netfilter: nfnetlink_queue: optimize verdict lookup with hash table Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 225/385] netfilter: nfnetlink_queue: do shared-unconfirmed check before segmentation Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 226/385] netfilter: nft_set_hash: fix get operation on big endian Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 227/385] netfilter: nft_counter: fix reset of counters on 32bit archs Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 228/385] netfilter: nft_set_rbtree: fix bogus EEXIST with NLM_F_CREATE with null interval Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 229/385] netfilter: nft_set_rbtree: check for partial overlaps in anonymous sets Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 230/385] PCI: Add ACS quirk for Pericom PI7C9X2G404 switches [12d8:b404] Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 231/385] net: hns3: fix double free issue for tx spare buffer Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 232/385] procfs: fix missing RCU protection when reading real_parent in do_task_stat() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 233/385] smb: client: correct value for smbd_max_fragmented_recv_size Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 234/385] net: atm: fix crash due to unvalidated vcc pointer in sigd_send() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 235/385] net: sunhme: Fix sbus regression Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 236/385] net: Add skb_dstref_steal and skb_dstref_restore Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 237/385] net: Switch to skb_dstref_steal/skb_dstref_restore for ip_route_input callers Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 238/385] xfrm: fix ip_rt_bug race in icmp_route_lookup reverse path Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 239/385] serial: caif: fix use-after-free in caif_serial ldisc_close() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 240/385] octeon_ep: disable per ring interrupts Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 241/385] octeon_ep: ensure dbell BADDR updation Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 242/385] octeon_ep_vf: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 243/385] ionic: Rate limit unknown xcvr type messages Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 244/385] octeontx2-pf: Unregister devlink on probe failure Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 245/385] RDMA/rtrs: server: remove dead code Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 246/385] IB/cache: update gid cache on client reregister event Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 247/385] RDMA/hns: Fix WQ_MEM_RECLAIM warning Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 248/385] RDMA/hns: Fix RoCEv1 failure due to DSCP Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 249/385] RDMA/hns: Notify ULP of remaining soft-WCs during reset Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 250/385] power: supply: ab8500: Fix use-after-free in power_supply_changed() Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 251/385] power: supply: act8945a: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 252/385] power: supply: bq256xx: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 253/385] power: supply: bq25980: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 254/385] power: supply: cpcap-battery: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 255/385] power: supply: goldfish: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 256/385] power: supply: pm8916_bms_vm: " Sasha Levin
2026-02-28 17:57 ` [PATCH 6.12 257/385] power: supply: pm8916_lbc: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 258/385] power: supply: rt9455: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 259/385] power: supply: sbs-battery: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 260/385] power: reset: nvmem-reboot-mode: respect cell size for nvmem_cell_write Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 261/385] power: supply: bq27xxx: fix wrong errno when bus ops are unsupported Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 262/385] power: supply: wm97xx: Fix NULL pointer dereference in power_supply_changed() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 263/385] RDMA/rtrs-srv: fix SG mapping Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 264/385] RDMA/rxe: Fix double free in rxe_srq_from_init Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 265/385] RDMA/iwcm: Fix workqueue list corruption by removing work_list Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 266/385] tools/power/x86/intel-speed-select: Fix file descriptor leak in isolate_cpus() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 267/385] RDMA/mlx5: Fix UMR hang in LAG error state unload Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 268/385] IB/mlx5: Fix port speed query for representors Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 269/385] mtd: rawnand: cadence: Fix return type of CDMA send-and-wait helper Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 270/385] vfio/pci: Lock upstream bridge for vfio_pci_core_disable() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 271/385] platform/x86/amd/pmf: Prevent TEE errors after hibernate Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 272/385] crypto: ccp - Declare PSP dead if PSP_CMD_TEE_RING_INIT fails Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 273/385] crypto: ccp - Add an S4 restore flow Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 274/385] crypto: ccp - Factor out ring destroy handling to a helper Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 275/385] crypto: ccp - Send PSP_CMD_TEE_RING_DESTROY when PSP_CMD_TEE_RING_INIT fails Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 276/385] mtd: parsers: Fix memory leak in mtd_parser_tplink_safeloader_parse() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 277/385] nfs/localio: eliminate unnecessary kref in nfs_local_fsync_ctx Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 278/385] NFS/localio: use GFP_NOIO and non-memreclaim workqueue in nfs_local_commit Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 279/385] RDMA/uverbs: Validate wqe_size before using it in ib_uverbs_post_send Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 280/385] RDMA/mlx5: Fix memory leak in GET_DATA_DIRECT_SYSFS_PATH handler Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 281/385] RDMA/rxe: Fix race condition in QP timer handlers Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 282/385] RDMA/core: add rdma_rw_max_sge() helper for SQ sizing Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 283/385] cxl: Fix premature commit_end increment on decoder commit failure Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 284/385] mtd: parsers: ofpart: fix OF node refcount leak in parse_fixed_partitions() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 285/385] mtd: spinand: Fix kernel doc Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 286/385] power: supply: pm8916_lbc: Fix use-after-free for extcon in IRQ handler Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 287/385] power: supply: qcom_battmgr: Recognize "LiP" as lithium-polymer Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 288/385] RDMA/uverbs: Add __GFP_NOWARN to ib_uverbs_unmarshall_recv() kmalloc Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 289/385] pNFS: fix a missing wake up while waiting on NFS_LAYOUT_DRAIN Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 290/385] scsi: smartpqi: Fix memory leak in pqi_report_phys_luns() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 291/385] scsi: ufs: host: mediatek: Require CONFIG_PM Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 292/385] scsi: csiostor: Fix dereference of null pointer rn Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 293/385] nvdimm: virtio_pmem: serialize flush requests Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 294/385] fs/nfs: Fix readdir slow-start regression Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 295/385] tracing: Properly process error handling in event_hist_trigger_parse() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 296/385] tracing: Remove duplicate ENABLE_EVENT_STR and DISABLE_EVENT_STR macros Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 297/385] fbdev: of_display_timing: Fix device node reference leak in of_get_display_timings() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 298/385] fbdev: au1200fb: Fix a memory leak in au1200fb_drv_probe() Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 299/385] clk: qcom: gcc-sm8550: Use floor ops for SDCC RCGs Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 300/385] clk: qcom: gcc-sm8650: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 301/385] clk: qcom: rcg2: compute 2d using duty fraction directly Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 302/385] clk: meson: gxbb: Limit the HDMI PLL OD to /4 on GXL/GXM SoCs Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 303/385] clk: qcom: gcc-sm8450: Update the SDCC RCGs to use shared_floor_ops Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 304/385] clk: qcom: gcc-sm4450: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 305/385] clk: qcom: gcc-sdx75: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 306/385] clk: qcom: gcc-x1e80100: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 307/385] clk: qcom: gcc-qdu1000: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 308/385] clk: qcom: gcc-msm8953: Remove ALWAYS_ON flag from cpp_gdsc Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 309/385] clk: qcom: gcc-msm8917: " Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 310/385] clk: qcom: gcc-ipq5018: flag sleep clock as critical Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 311/385] clk: Move clk_{save,restore}_context() to COMMON_CLK section Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 312/385] clk: qcom: dispcc-sdm845: Enable parents for pixel clocks Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 313/385] clk: qcom: dispcc-sm7150: Fix dispcc_mdss_pclk1_clk_src Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 314/385] clk: qcom: gfx3d: add parent to parent request map Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 315/385] clk: mediatek: Fix error handling in runtime PM setup Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 316/385] interconnect: mediatek: Don't hijack parent device Sasha Levin
2026-02-28 17:58 ` [PATCH 6.12 317/385] interconnect: mediatek: Aggregate bandwidth with saturating add Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 318/385] dmaengine: mediatek: uart-apdma: Fix above 4G addressing TX/RX Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 319/385] dma: dma-axi-dmac: fix SW cyclic transfers Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 320/385] dma: dma-axi-dmac: fix HW scatter-gather not looking at the queue Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 321/385] soundwire: intel_ace2x: add SND_HDA_CORE dependency Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 322/385] iio: test: drop dangling symbol in gain-time-scale helpers Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 323/385] staging: greybus: lights: avoid NULL deref Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 324/385] serial: imx: change SERIAL_IMX_CONSOLE to bool Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 325/385] serial: SH_SCI: improve "DMA support" prompt Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 326/385] mmc: rtsx_pci_sdmmc: increase power-on settling delay to 5ms Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 327/385] iio: pressure: mprls0025pa: fix spi_transfer struct initialisation Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 328/385] iio: pressure: mprls0025pa: fix SPI CS delay violation Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 329/385] iio: pressure: mprls0025pa: fix interrupt flag Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 330/385] iio: pressure: mprls0025pa: fix scan_type struct Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 331/385] iio: pressure: mprls0025pa: fix pressure calculation Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 332/385] watchdog: starfive-wdt: Fix PM reference leak in probe error path Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 333/385] coresight: etm3x: Fix cpulocked warning on cpuhp Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 334/385] phy: freescale: imx8qm-hsio: fix NULL pointer dereference Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 335/385] Revert "mmc: rtsx_pci_sdmmc: increase power-on settling delay to 5ms" Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 336/385] mfd: arizona: Fix regulator resource leak on wm5102_clear_write_sequencer() failure Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 337/385] mfd: simple-mfd-i2c: Add MAX77705 support Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 338/385] mfd: simple-mfd-i2c: Add compatible strings for Layerscape QIXIS FPGA Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 339/385] mfd: simple-mfd-i2c: Add SpacemiT P1 support Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 340/385] mfd: simple-mfd-i2c: Keep compatible strings in alphabetical order Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 341/385] mfd: simple-mfd-i2c: Add Delta TN48M CPLD support Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 342/385] drivers: iio: mpu3050: use dev_err_probe for regulator request Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 343/385] usb: bdc: fix sleep during atomic Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 344/385] pinctrl: equilibrium: Fix device node reference leak in pinbank_init() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 345/385] ovl: Fix uninit-value in ovl_fill_real Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 346/385] iio: sca3000: Fix a resource leak in sca3000_probe() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 347/385] pinctrl: qcom: sm8250-lpass-lpi: Fix i2s2_data_groups definition Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 348/385] pinctrl: single: fix refcount leak in pcs_add_gpio_func() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 349/385] leds: qcom-lpg: Check the return value of regmap_bulk_write() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 350/385] backlight: qcom-wled: Support ovp values for PMI8994 Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 351/385] backlight: qcom-wled: Change PM8950 WLED configurations Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 352/385] dmaengine: fsl-edma: don't explicitly disable clocks in .remove() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 353/385] drbd: always set BLK_FEAT_STABLE_WRITES Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 354/385] io_uring/cancel: de-unionize file and user_data in struct io_cancel_data Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 355/385] fs/ntfs3: Initialize new folios before use Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 356/385] fs/ntfs3: prevent infinite loops caused by the next valid being the same Sasha Levin
2026-02-28 17:59 ` Sasha Levin [this message]
2026-02-28 17:59 ` [PATCH 6.12 358/385] ACPI: CPPC: Fix remaining for_each_possible_cpu() to use online CPUs Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 359/385] powercap: intel_rapl_tpmi: Remove FW_BUG from invalid version check Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 360/385] kbuild: Add objtool to top-level clean target Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 361/385] selftests/memfd: use IPC semaphore instead of SIGSTOP/SIGCONT Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 362/385] objpool: fix the overestimation of object pooling metadata size Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 363/385] ACPI: PM: Add unused power resource quirk for THUNDEROBOT ZERO Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 364/385] cpuidle: Skip governor when only one idle state is available Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 365/385] selftests: mlxsw: tc_restrictions: Fix test failure with new iproute2 Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 366/385] net: sparx5/lan969x: fix DWRR cost max to match hardware register width Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 367/385] net: mscc: ocelot: extract ocelot_xmit_timestamp() helper Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 368/385] net: mscc: ocelot: split xmit into FDMA and register injection paths Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 369/385] net: mscc: ocelot: add missing lock protection in ocelot_port_xmit_inj() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 370/385] ipv6: Fix out-of-bound access in fib6_add_rt2node() Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 371/385] net: sparx5/lan969x: fix PTP clock max_adj value Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 372/385] net: usb: catc: enable basic endpoint checking Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 373/385] xen-netback: reject zero-queue configuration from guest Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 374/385] net/rds: rds_sendmsg should not discard payload_len Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 375/385] net: bridge: mcast: always update mdb_n_entries for vlan contexts Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 376/385] selftests: forwarding: vxlan_bridge_1d: fix test failure with br_netfilter enabled Sasha Levin
2026-02-28 17:59 ` [PATCH 6.12 377/385] selftests: forwarding: vxlan_bridge_1d_ipv6: " Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 378/385] netfilter: nf_conntrack_h323: don't pass uninitialised l3num value Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 379/385] ipvs: do not keep dest_dst if dev is going down Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 380/385] net: remove WARN_ON_ONCE when accessing forward path array Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 381/385] netfilter: nf_tables: fix use-after-free in nf_tables_addchain() Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 382/385] ipv6: fix a race in ip6_sock_set_v6only() Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 383/385] bpftool: Fix truncated netlink dumps Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 384/385] ping: annotate data-races in ping_lookup() Sasha Levin
2026-02-28 18:00 ` [PATCH 6.12 385/385] Linux 6.12.75-rc1 Sasha Levin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260228180011.1568201-357-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=almaz.alexandrovich@paragon-software.com \
--cc=jiashengjiangcool@gmail.com \
--cc=patches@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox