public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Ye Bin <yebin10@huawei.com>,
	"Masami Hiramatsu (Google)" <mhiramat@kernel.org>,
	"Steven Rostedt (Google)" <rostedt@goodmis.org>
Subject: [PATCH 6.6 293/567] kprobes: avoid crash when rmmod/insmod after ftrace killed
Date: Mon, 23 Mar 2026 14:43:33 +0100	[thread overview]
Message-ID: <20260323134541.070493812@linuxfoundation.org> (raw)
In-Reply-To: <20260323134533.749096647@linuxfoundation.org>

6.6-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Masami Hiramatsu (Google) <mhiramat@kernel.org>

commit e113f0b46d19626ec15388bcb91432c9a4fd6261 upstream.

After we hit ftrace is killed by some errors, the kernel crash if
we remove modules in which kprobe probes.

BUG: unable to handle page fault for address: fffffbfff805000d
PGD 817fcc067 P4D 817fcc067 PUD 817fc8067 PMD 101555067 PTE 0
Oops: Oops: 0000 [#1] SMP KASAN PTI
CPU: 4 UID: 0 PID: 2012 Comm: rmmod Tainted: G        W  OE
Tainted: [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
RIP: 0010:kprobes_module_callback+0x89/0x790
RSP: 0018:ffff88812e157d30 EFLAGS: 00010a02
RAX: 1ffffffff805000d RBX: dffffc0000000000 RCX: ffffffff86a8de90
RDX: ffffed1025c2af9b RSI: 0000000000000008 RDI: ffffffffc0280068
RBP: 0000000000000000 R08: 0000000000000001 R09: ffffed1025c2af9a
R10: ffff88812e157cd7 R11: 205d323130325420 R12: 0000000000000002
R13: ffffffffc0290488 R14: 0000000000000002 R15: ffffffffc0280040
FS:  00007fbc450dd740(0000) GS:ffff888420331000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: fffffbfff805000d CR3: 000000010f624000 CR4: 00000000000006f0
Call Trace:
 <TASK>
 notifier_call_chain+0xc6/0x280
 blocking_notifier_call_chain+0x60/0x90
 __do_sys_delete_module.constprop.0+0x32a/0x4e0
 do_syscall_64+0x5d/0xfa0
 entry_SYSCALL_64_after_hwframe+0x76/0x7e

This is because the kprobe on ftrace does not correctly handles
the kprobe_ftrace_disabled flag set by ftrace_kill().

To prevent this error, check kprobe_ftrace_disabled in
__disarm_kprobe_ftrace() and skip all ftrace related operations.

Link: https://lore.kernel.org/all/176473947565.1727781.13110060700668331950.stgit@mhiramat.tok.corp.google.com/

Reported-by: Ye Bin <yebin10@huawei.com>
Closes: https://lore.kernel.org/all/20251125020536.2484381-1-yebin@huaweicloud.com/
Fixes: ae6aa16fdc16 ("kprobes: introduce ftrace based optimization")
Cc: stable@vger.kernel.org
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 kernel/kprobes.c |    4 ++++
 1 file changed, 4 insertions(+)

--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -1114,6 +1114,10 @@ static int __disarm_kprobe_ftrace(struct
 	int ret;
 
 	lockdep_assert_held(&kprobe_mutex);
+	if (unlikely(kprobe_ftrace_disabled)) {
+		/* Now ftrace is disabled forever, disarm is already done. */
+		return 0;
+	}
 
 	if (*cnt == 1) {
 		ret = unregister_ftrace_function(ops);



  parent reply	other threads:[~2026-03-23 15:06 UTC|newest]

Thread overview: 1563+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-23 13:38 [PATCH 6.6 000/567] 6.6.130-rc1 review Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 001/567] drm/vmwgfx: Fix invalid kref_put callback in vmw_bo_dirty_release Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 002/567] drm/vmwgfx: Return the correct value in vmw_translate_ptr functions Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 003/567] drm/logicvc: Fix device node reference leak in logicvc_drm_config_parse() Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 004/567] irqchip/sifive-plic: Fix frozen interrupt due to affinity setting Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 005/567] scsi: lpfc: Properly set WC for DPP mapping Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 006/567] scsi: pm8001: Fix use-after-free in pm8001_queue_command() Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 007/567] ALSA: usb-audio: Remove VALIDATE_RATES quirk for Focusrite devices Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 008/567] rseq: Clarify rseq registration rseq_size bound check comment Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 009/567] scsi: ufs: core: Move link recovery for hibern8 exit failure to wl_resume Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 010/567] ALSA: usb-audio: Cap the packet size pre-calculations Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 011/567] ALSA: usb-audio: Use inclusive terms Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 012/567] perf: Fix __perf_event_overflow() vs perf_remove_from_context() race Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 013/567] ALSA: pci: hda: use snd_kcontrol_chip() Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 014/567] ALSA: hda: cs35l56: Fix signedness error in cs35l56_hda_posture_put() Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 015/567] btrfs: move btrfs_crc32c_final into free-space-cache.c Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 016/567] btrfs: remove btrfs_crc32c wrapper Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 017/567] btrfs: move btrfs_extref_hash into inode-item.h Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 018/567] btrfs: add raid stripe tree definitions Greg Kroah-Hartman
2026-03-23 13:38 ` [PATCH 6.6 019/567] btrfs: read raid stripe tree from disk Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 020/567] btrfs: add support for inserting raid stripe extents Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 021/567] btrfs: fix incorrect key offset in error message in check_dev_extent_item() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 022/567] btrfs: fix objectid value in error message in check_extent_data_ref() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 023/567] btrfs: fix warning in scrub_verify_one_metadata() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 024/567] btrfs: fix compat mask in error messages in btrfs_check_features() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 025/567] bpf: Fix stack-out-of-bounds write in devmap Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 026/567] PCI: Correct PCI_CAP_EXP_ENDPOINT_SIZEOF_V2 value Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 027/567] memory: mtk-smi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 028/567] memory: mtk-smi: fix device leaks on common probe Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 029/567] memory: mtk-smi: fix device leak on larb probe Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 030/567] PCI: Update BAR # and window messages Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 031/567] PCI: Use resource names in PCI log messages Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 032/567] resource: Add resource set range and size helpers Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 033/567] PCI: Use resource_set_range() that correctly sets ->end Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 034/567] KVM: x86: Fix KVM_GET_MSRS stack info leak Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 035/567] KVM: x86: Rename KVM_MSR_RET_INVALID to KVM_MSR_RET_UNSUPPORTED Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 036/567] KVM: x86: Return "unsupported" instead of "invalid" on access to unsupported PV MSR Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 037/567] media: tegra-video: Use accessors for pad config try_* fields Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 038/567] media: tegra-video: Fix memory leak in __tegra_channel_try_format() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 039/567] KVM: x86: WARN if a vCPU gets a valid wakeup that KVM cant yet inject Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 040/567] KVM: x86: Ignore -EBUSY when checking nested events from vcpu_block() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 041/567] drm/tegra: dsi: fix device leak on probe Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 042/567] bus: omap-ocp2scp: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 043/567] bus: omap-ocp2scp: fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 044/567] ext4: get rid of ppath in ext4_find_extent() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 045/567] ext4: get rid of ppath in ext4_ext_create_new_leaf() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 046/567] ext4: get rid of ppath in ext4_ext_insert_extent() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 047/567] ext4: get rid of ppath in ext4_split_extent_at() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 048/567] ext4: subdivide EXT4_EXT_DATA_VALID1 Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 049/567] ext4: dont zero the entire extent if EXT4_EXT_DATA_PARTIAL_VALID1 Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 050/567] ext4: get rid of ppath in ext4_split_extent() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 051/567] ext4: get rid of ppath in ext4_split_convert_extents() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 052/567] ext4: get rid of ppath in ext4_convert_unwritten_extents_endio() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 053/567] ext4: get rid of ppath in ext4_ext_convert_to_initialized() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 054/567] ext4: get rid of ppath in ext4_ext_handle_unwritten_extents() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 055/567] ext4: correct the comments place for EXT4_EXT_MAY_ZEROOUT Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 056/567] ext4: dont set EXT4_GET_BLOCKS_CONVERT when splitting before submitting I/O Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 057/567] ext4: drop extent cache after doing PARTIAL_VALID1 zeroout Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 058/567] ext4: drop extent cache when splitting extent fails Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 059/567] mailbox: Use of_property_match_string() instead of open-coding Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 060/567] mailbox: dont protect of_parse_phandle_with_args with con_mutex Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 061/567] mailbox: sort headers alphabetically Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 062/567] mailbox: remove unused header files Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 063/567] mailbox: Use dev_err when there is error Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 064/567] mailbox: Use guard/scoped_guard for con_mutex Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 065/567] mailbox: Allow controller specific mapping using fwnode Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 066/567] mailbox: Prevent out-of-bounds access in fw_mbox_index_xlate() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 067/567] ext4: delete redundant calculations in ext4_mb_get_buddy_page_lock() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 068/567] ext4: convert bd_bitmap_page to bd_bitmap_folio Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 069/567] ext4: convert bd_buddy_page to bd_buddy_folio Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 070/567] ext4: fix e4b bitmap inconsistency reports Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 071/567] mfd: qcom-pm8xxx: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 072/567] mfd: qcom-pm8xxx: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 073/567] mfd: omap-usb-host: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 074/567] mfd: omap-usb-host: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 075/567] arm64: dts: rockchip: Fix rk356x PCIe range mappings Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 076/567] clk: tegra: tegra124-emc: fix device leak on set_rate() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 077/567] usb: cdns3: remove redundant if branch Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 078/567] usb: cdns3: call cdns_power_is_lost() only once in cdns_resume() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.6 079/567] usb: cdns3: fix role switching during resume Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 080/567] drm/amd: Fix hang on amdgpu unload by using pci_dev_is_disconnected() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 081/567] ALSA: hda/conexant: Add quirk for HP ZBook Studio G4 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 082/567] hwmon: (max16065) Use READ/WRITE_ONCE to avoid compiler optimization induced race Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 083/567] ALSA: hda/conexant: Fix headphone jack handling on Acer Swift SF314 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 084/567] net: arcnet: com20020-pci: fix support for 2.5Mbit cards Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 085/567] drm/amd: Drop special case for yellow carp without discovery Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 086/567] drm/amdgpu: keep vga memory on MacBooks with switchable graphics Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 087/567] eventpoll: Fix integer overflow in ep_loop_check_proc() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 088/567] media: dvb-core: fix wrong reinitialization of ringbuffer on reopen Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 089/567] nfc: pn533: properly drop the usb interface reference on disconnect Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 090/567] net: usb: kaweth: validate USB endpoints Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 091/567] net: usb: kalmia: " Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 092/567] net: usb: pegasus: " Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 093/567] can: ems_usb: ems_usb_read_bulk_callback(): check the proper length of a message Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 094/567] can: usb: f81604: correctly anchor the urb in the read bulk callback Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 095/567] can: ucan: Fix infinite loop from zero-length messages Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 096/567] can: usb: etas_es58x: correctly anchor the urb in the read bulk callback Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 097/567] can: usb: f81604: handle short interrupt urb messages properly Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 098/567] can: usb: f81604: handle bulk write errors properly Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 099/567] HID: Add HID_CLAIMED_INPUT guards in raw_event callbacks missing them Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 100/567] x86/efi: defer freeing of boot services memory Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 101/567] platform/x86: dell-wmi-sysman: Dont hex dump plaintext password data Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 102/567] platform/x86: dell-wmi: Add audio/mic mute key codes Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 103/567] ALSA: usb-audio: Use correct version for UAC3 header validation Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 104/567] wifi: radiotap: reject radiotap with unknown bits Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 105/567] wifi: cfg80211: cancel rfkill_block work in wiphy_unregister() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 106/567] wifi: mac80211: bounds-check link_id in ieee80211_ml_reconfiguration Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 107/567] wifi: mac80211: fix NULL pointer dereference in mesh_rx_csa_frame() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 108/567] IB/mthca: Add missed mthca_unmap_user_db() for mthca_create_srq() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 109/567] RDMA/irdma: Fix kernel stack leak in irdma_create_user_ah() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 110/567] net/sched: ets: fix divide by zero in the offload path Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 111/567] scsi: target: Fix recursive locking in __configfs_open_file() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 112/567] Squashfs: check metadata block offset is within range Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 113/567] drbd: fix "LOGIC BUG" in drbd_al_begin_io_nonblock() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 114/567] drbd: fix null-pointer dereference on local read error Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 115/567] smb: client: fix cifs_pick_channel when channels are equally loaded Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 116/567] smb: client: fix broken multichannel with krb5+signing Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 117/567] smb: client: Dont log plaintext credentials in cifs_set_cifscreds Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 118/567] scsi: core: Fix refcount leak for tagset_refcnt Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 119/567] selftests: mptcp: more stable simult_flows tests Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 120/567] selftests: mptcp: join: check removing signal+subflow endp Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 121/567] ARM: clean up the memset64() C wrapper Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 122/567] hwmon: (aht10) Add support for dht20 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 123/567] hwmon: (aht10) Fix initialization commands for AHT20 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 124/567] pinctrl: equilibrium: rename irq_chip function callbacks Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 125/567] pinctrl: equilibrium: fix warning trace on load Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 126/567] platform/x86: thinkpad_acpi: Fix errors reading battery thresholds Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 127/567] pinctrl: cirrus: cs42l43: Fix double-put in cs42l43_pin_probe() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 128/567] hwmon: (it87) Check the it87_lock() return value Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 129/567] e1000e: clear DPG_EN after reset to avoid autonomous power-gating Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 130/567] drm/ssd130x: Use bool for ssd130x_deviceinfo flags Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 131/567] drm/ssd130x: Store the HW buffer in the driver-private CRTC state Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 132/567] drm/ssd130x: Replace .page_height field in device info with a constant Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 133/567] drm/solomon: Fix page start when updating rectangle in page addressing mode Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 134/567] net: ethernet: ti: am65-cpsw-nuss/cpsw-ale: Fix multicast entry handling in ALE table Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 135/567] xsk: Get rid of xdp_buff_xsk::xskb_list_node Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 136/567] xsk: s/free_list_node/list_node/ Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 137/567] xsk: Fix fragment node deletion to prevent buffer leak Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 138/567] xsk: Fix zero-copy AF_XDP fragment drop Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.6 139/567] dpaa2-switch: do not clear any interrupts automatically Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 140/567] dpaa2-switch: Fix interrupt storm after receiving bad if_id in IRQ handler Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 141/567] atm: lec: fix null-ptr-deref in lec_arp_clear_vccs Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 142/567] amd-xgbe: fix MAC_TCR_SS register width for 2.5G and 10M speeds Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 143/567] can: bcm: fix locking for bcm_op runtime updates Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 144/567] can: mcp251x: fix deadlock in error path of mcp251x_open Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 145/567] rust: kunit: fix warning when !CONFIG_PRINTK Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 146/567] kunit: tool: copy caller args in run_kernel to prevent mutation Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 147/567] net: dsa: realtek: rtl8365mb: fix rtl8365mb_phy_ocp_write return value Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 148/567] bpf/bonding: reject vlan+srcmac xmit_hash_policy change when XDP is loaded Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 149/567] octeon_ep: Relocate counter updates before NAPI Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 150/567] octeon_ep: avoid compiler and IQ/OQ reordering Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 151/567] wifi: cw1200: Fix locking in error paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 152/567] wifi: wlcore: Fix a locking bug Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 153/567] wifi: mt76: mt7996: Fix possible oob access in mt7996_mac_write_txwi_80211() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 154/567] wifi: mt76: Fix possible oob access in mt76_connac2_mac_write_txwi_80211() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 155/567] indirect_call_wrapper: do not reevaluate function pointer Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 156/567] net/rds: Fix circular locking dependency in rds_tcp_tune Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 157/567] xen/acpi-processor: fix _CST detection using undersized evaluation buffer Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 158/567] bpf: export bpf_link_inc_not_zero Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 159/567] bpf: Fix a UAF issue in bpf_trampoline_link_cgroup_shim Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 160/567] smb/client: fix buffer size for smb311_posix_qinfo in smb2_compound_op() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 161/567] smb/client: fix buffer size for smb311_posix_qinfo in SMB311_posix_query_info() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 162/567] ipv6: fix NULL pointer deref in ip6_rt_get_dev_rcu() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 163/567] amd-xgbe: fix sleep while atomic on suspend/resume Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 164/567] drm/sched: Fix kernel-doc warning for drm_sched_job_done() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 165/567] nvme: reject invalid pr_read_keys() num_keys values Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 166/567] nvme: fix memory allocation in nvme_pr_read_keys() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 167/567] net: sched: avoid qdisc_reset_all_tx_gt() vs dequeue race for lockless qdiscs Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 168/567] net: nfc: nci: Fix zero-length proprietary notifications Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 169/567] nfc: nci: free skb on nci_transceive early error paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 170/567] nfc: nci: clear NCI_DATA_EXCHANGE before calling completion callback Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 171/567] nfc: rawsock: cancel tx_work before socket teardown Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 172/567] net: stmmac: Fix error handling in VLAN add and delete paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 173/567] net: ethernet: mtk_eth_soc: Reset prog ptr to old_prog in case of error in mtk_xdp_setup() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 174/567] net: bridge: fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 175/567] net: vxlan: " Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 176/567] net: ipv6: fix panic when IPv4 route references loopback IPv6 nexthop Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 177/567] net/sched: act_ife: Fix metalist update behavior Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 178/567] xdp: use modulo operation to calculate XDP frag tailroom Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 179/567] xsk: introduce helper to determine rxq->frag_size Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 180/567] i40e: fix registering XDP RxQ info Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 181/567] i40e: use xdp.frame_sz as XDP RxQ info frag_size Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 182/567] xdp: produce a warning when calculated tailroom is negative Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 183/567] selftest/arm64: Fix sve2p1_sigill() to hwcap test Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 184/567] tracing: Add NULL pointer check to trigger_data_free() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 185/567] net/sched: Only allow act_ct to bind to clsact/ingress qdiscs and shared blocks Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 186/567] net: tcp: accept old ack during closing Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 187/567] apparmor: validate DFA start states are in bounds in unpack_pdb Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 188/567] apparmor: fix memory leak in verify_header Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 189/567] apparmor: replace recursive profile removal with iterative approach Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 190/567] apparmor: fix: limit the number of levels of policy namespaces Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 191/567] apparmor: fix side-effect bug in match_char() macro usage Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 192/567] apparmor: fix missing bounds check on DEFAULT table in verify_dfa() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 193/567] apparmor: Fix double free of ns_name in aa_replace_profiles() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 194/567] apparmor: fix unprivileged local user can do privileged policy management Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 195/567] apparmor: fix differential encoding verification Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 196/567] apparmor: fix race on rawdata dereference Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 197/567] apparmor: fix race between freeing data and fs accessing it Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 198/567] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.6 199/567] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 200/567] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 201/567] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 202/567] wifi: mac80211: set default WMM parameters on all links Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 203/567] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 204/567] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 205/567] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 206/567] ASoC: cs42l43: Report insert for exotic peripherals Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 207/567] scsi: ufs: core: Fix possible NULL pointer dereference in ufshcd_add_command_trace() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 208/567] scsi: ufs: core: Fix shift out of bounds when MAXQ=32 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 209/567] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 210/567] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 211/567] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 212/567] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 213/567] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 214/567] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 215/567] smb/server: Fix another refcount leak in smb2_open() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 216/567] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 217/567] net: dsa: realtek: rtl8365mb: remove ifOutDiscards from rx_packets Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 218/567] drm/msm/dsi: Document DSC related pclk_rate and hdisplay calculations Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 219/567] drm/msm/dsi: fix pclk rate calculation for bonded dsi Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 220/567] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 221/567] net/mlx5: IFC updates for disabled host PF Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 222/567] net/mlx5: Query to see if host PF is disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 223/567] net/mlx5: Fix deadlock between devlink lock and esw->wq Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 224/567] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 225/567] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 226/567] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 227/567] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 228/567] ASoC: simple-card-utils: use __free(device_node) for device node Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 229/567] ASoC: simple-card-utils: fix graph_util_is_ports0() for DT overlays Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 230/567] net: sfp: re-implement ignoring the hardware TX_FAULT signal Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 231/567] net: sfp: improve Nokia GPON sfp fixup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 232/567] net: sfp: add quirk for Potron SFP+ XGSPON ONU Stick Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 233/567] net: sfp: improve Huawei MA5671a fixup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 234/567] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 235/567] mctp: i2c: fix skb memory leak in receive path Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 236/567] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 237/567] mctp: route: hold key->lock in mctp_flow_prepare_output() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 238/567] amd-xgbe: fix link status handling in xgbe_rx_adaptation Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 239/567] amd-xgbe: prevent CRC errors during RX adaptation with AN disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 240/567] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 241/567] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 242/567] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 243/567] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 244/567] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 245/567] regulator: pca9450: Make IRQ optional Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 246/567] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 247/567] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 248/567] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 249/567] nvme-pci: Fix race bug in nvme_poll_irqdisable() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 250/567] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 251/567] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 252/567] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 253/567] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 254/567] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 255/567] net: bonding: Fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 256/567] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 257/567] octeontx2-af: devlink health: use retained error fmsg API Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 258/567] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.6 259/567] usb: gadget: f_mass_storage: Fix potential integer overflow in check_command_size_in_blocks() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 260/567] Revert "arm64: dts: qcom: sdm845-oneplus: Mark l14a regulator as boot-on" Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 261/567] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 262/567] ALSA: pcm: fix use-after-free on linked stream runtime in snd_pcm_drain() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 263/567] ALSA: usb-audio: Check endpoint numbers at parsing Scarlett2 mixer interfaces Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 264/567] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 265/567] net: usb: lan78xx: fix TX byte statistics for small packets Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 266/567] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 267/567] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK PM1503CDA Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 268/567] KVM: SVM: Initialize AVIC VMCB fields if AVIC is enabled with in-kernel APIC Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 269/567] USB: add QUIRK_NO_BOS for video capture several devices Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 270/567] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 271/567] USB: ezcap401 needs USB_QUIRK_NO_BOS to function on 10gbs usb speed Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 272/567] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 273/567] usb: xhci: Prevent interrupt storm on host controller error (HCE) Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 274/567] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 275/567] usb: dwc3: pci: add support for the Intel Nova Lake -H Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 276/567] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 277/567] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 278/567] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 279/567] usb: roles: get usb role switch from parent only for usb-b-connector Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 280/567] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 281/567] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 282/567] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 283/567] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 284/567] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 285/567] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 286/567] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 287/567] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 288/567] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 289/567] mm/kfence: disable KFENCE upon KASAN HW tags enablement Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 290/567] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 291/567] ASoC: qcom: qdsp6: Fix q6apm remove ordering during ADSP stop and start Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 292/567] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-03-23 13:43 ` Greg Kroah-Hartman [this message]
2026-03-23 13:43 ` [PATCH 6.6 294/567] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 295/567] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 296/567] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 297/567] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 298/567] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 299/567] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 300/567] ceph: fix memory leaks in ceph_mdsc_build_path() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 301/567] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 302/567] i3c: dw-i3c-master: Set SIR_REJECT in DAT on device attach and reattach Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 303/567] scsi: ufs: core: Fix SError in ufshcd_rtc_work() during UFS suspend Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 304/567] scsi: hisi_sas: Add time interval between two H2D FIS following soft reset spec Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 305/567] scsi: hisi_sas: Use macro instead of magic number Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 306/567] scsi: hisi_sas: Fix NULL pointer exception during user_scan() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 307/567] Revert "tcpm: allow looking for role_sw device in the main node" Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 308/567] drm/bridge: samsung-dsim: Fix memory leak in error path Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 309/567] drm/bridge: ti-sn65dsi86: Enable HPD polling if IRQ is not used Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 310/567] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 311/567] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 312/567] ice: reintroduce retry mechanism for indirect AQ Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 313/567] ixgbevf: fix link setup issue Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 314/567] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 315/567] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 316/567] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 317/567] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 318/567] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.6 319/567] tracing: Fix syscall events activation by ensuring refcount hits zero Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 320/567] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 321/567] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 322/567] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 323/567] arm64: mm: Add PTE_DIRTY back to PAGE_KERNEL* to fix kexec/hibernation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 324/567] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 325/567] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 326/567] parisc: Check kernel mapping earlier at bootup Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 327/567] pmdomain: bcm: bcm2835-power: Fix broken reset status read Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 328/567] ksmbd: fix use-after-free in smb_lazy_parent_lease_break_close() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 329/567] smb: server: fix use-after-free in smb2_open() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 330/567] ksmbd: fix use-after-free by using call_rcu() for oplock_info Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 331/567] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 332/567] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 333/567] net: dsa: microchip: Fix error path in PTP IRQ setup Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 334/567] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 335/567] drm/amd: Set num IP blocks to 0 if discovery fails Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 336/567] drm/bridge: ti-sn65dsi83: fix CHA_DSI_CLK_RANGE rounding Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 337/567] drm/i915: Fix potential overflow of shmem scatterlist length Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 338/567] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 339/567] cifs: make default value of retrans as zero Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 340/567] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 341/567] s390/dasd: Move quiesce state with pprc swap Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 342/567] s390/dasd: Copy detected format information to secondary device Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 343/567] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 344/567] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 345/567] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 346/567] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 347/567] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 348/567] smb: client: fix atomic open with O_DIRECT & O_SYNC Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 349/567] smb: client: fix in-place encryption corruption in SMB2_write() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 350/567] smb: client: fix iface port assignment in parse_server_interfaces Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 351/567] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 352/567] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 353/567] iio: frequency: adf4377: Fix duplicated soft reset mask Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 354/567] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 355/567] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 356/567] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 357/567] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 358/567] iio: buffer: Fix wait_queue not being removed Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 359/567] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 360/567] iio: gyro: mpu3050-i2c: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 361/567] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 362/567] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 363/567] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 364/567] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 365/567] drm/bridge: ti-sn65dsi86: Add support for DisplayPort mode with HPD Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 366/567] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 367/567] ksmbd: call ksmbd_vfs_kern_path_end_removing() on some error paths Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 368/567] wifi: libertas: fix use-after-free in lbs_free_adapter() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 369/567] platform/x86: hp-bioscfg: Support allocations of larger data Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 370/567] x86/sev: Allow IBPB-on-Entry feature for SNP guests Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 371/567] gve: fix incorrect buffer cleanup in gve_tx_clean_pending_packets for QPL Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 372/567] net: phy: register phy led_triggers during probe to avoid AB-BA deadlock Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 373/567] drm/amd/display: Use GFP_ATOMIC in dc_create_stream_for_sink Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 374/567] mptcp: pm: avoid sending RM_ADDR over same subflow Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 375/567] mptcp: pm: in-kernel: always mark signal+subflow endp as used Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 376/567] selftests: mptcp: add a check for add_addr_accepted Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 377/567] selftests: mptcp: join: check RM_ADDR not sent over same subflow Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.6 378/567] kbuild: Leave objtool binary around with make clean Greg Kroah-Hartman
  -- strict thread matches above, loose matches on Subject: below --
2026-03-23 13:39 [PATCH 6.1 000/481] 6.1.167-rc1 review Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 001/481] drm/vmwgfx: Fix invalid kref_put callback in vmw_bo_dirty_release Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 002/481] drm/vmwgfx: Return the correct value in vmw_translate_ptr functions Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 003/481] drm/logicvc: Fix device node reference leak in logicvc_drm_config_parse() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 004/481] irqchip/sifive-plic: Fix frozen interrupt due to affinity setting Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 005/481] scsi: lpfc: Properly set WC for DPP mapping Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 006/481] scsi: pm8001: Fix use-after-free in pm8001_queue_command() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 007/481] ALSA: usb-audio: Remove VALIDATE_RATES quirk for Focusrite devices Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 008/481] scsi: ufs: core: Always initialize the UIC done completion Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 009/481] scsi: ufs: core: Move link recovery for hibern8 exit failure to wl_resume Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 010/481] ALSA: usb-audio: Cap the packet size pre-calculations Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 011/481] ALSA: usb-audio: Use inclusive terms Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 012/481] perf: Fix __perf_event_overflow() vs perf_remove_from_context() race Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 013/481] btrfs: move btrfs_crc32c_final into free-space-cache.c Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 014/481] btrfs: fix incorrect key offset in error message in check_dev_extent_item() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 015/481] btrfs: fix compat mask in error messages in btrfs_check_features() Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 016/481] bpf: Fix stack-out-of-bounds write in devmap Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.1 017/481] memory: mtk-smi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 018/481] memory: mtk-smi: fix device leaks on common probe Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 019/481] memory: mtk-smi: fix device leak on larb probe Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 020/481] PCI: Introduce pci_dev_for_each_resource() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 021/481] PCI: Fix printk field formatting Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 022/481] PCI: Update BAR # and window messages Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 023/481] PCI: Use resource names in PCI log messages Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 024/481] resource: Add resource set range and size helpers Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 025/481] PCI: Use resource_set_range() that correctly sets ->end Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 026/481] KVM: x86/pmu: Provide "error" semantics for unsupported-but-known PMU MSRs Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 027/481] KVM: x86: Fix KVM_GET_MSRS stack info leak Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 028/481] KVM: x86: Rename KVM_MSR_RET_INVALID to KVM_MSR_RET_UNSUPPORTED Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 029/481] KVM: x86: Return "unsupported" instead of "invalid" on access to unsupported PV MSR Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 030/481] media: tegra-video: Use accessors for pad config try_* fields Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 031/481] media: tegra-video: Fix memory leak in __tegra_channel_try_format() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 032/481] media: camss: vfe-480: Multiple outputs support for SM8250 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 033/481] media: qcom: camss: vfe: Fix out-of-bounds access in vfe_isr_reg_update() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 034/481] KVM: x86: WARN if a vCPU gets a valid wakeup that KVM cant yet inject Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 035/481] KVM: x86: Ignore -EBUSY when checking nested events from vcpu_block() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 036/481] drm/tegra: dsi: fix device leak on probe Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 037/481] bus: omap-ocp2scp: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 038/481] bus: omap-ocp2scp: fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 039/481] ext4: make ext4_es_remove_extent() return void Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 040/481] ext4: get rid of ppath in ext4_find_extent() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 041/481] ext4: get rid of ppath in ext4_ext_create_new_leaf() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 042/481] ext4: get rid of ppath in ext4_ext_insert_extent() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 043/481] ext4: get rid of ppath in ext4_split_extent_at() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 044/481] ext4: subdivide EXT4_EXT_DATA_VALID1 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 045/481] ext4: dont zero the entire extent if EXT4_EXT_DATA_PARTIAL_VALID1 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 046/481] ext4: drop extent cache after doing PARTIAL_VALID1 zeroout Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 047/481] ext4: drop extent cache when splitting extent fails Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 048/481] ext4: remove unnecessary e4b->bd_buddy_page check in ext4_mb_load_buddy_gfp Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 049/481] ext4: convert some BUG_ONs in mballoc to use WARN_RATELIMITED instead Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 050/481] ext4: delete redundant calculations in ext4_mb_get_buddy_page_lock() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 051/481] ext4: convert bd_bitmap_page to bd_bitmap_folio Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 052/481] ext4: convert bd_buddy_page to bd_buddy_folio Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 053/481] ext4: fix e4b bitmap inconsistency reports Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 054/481] mfd: qcom-pm8xxx: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 055/481] mfd: qcom-pm8xxx: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 056/481] mfd: omap-usb-host: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 057/481] mfd: omap-usb-host: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 058/481] arm64: dts: rockchip: Fix rk356x PCIe range mappings Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 059/481] clk: tegra: tegra124-emc: fix device leak on set_rate() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 060/481] usb: cdns3: remove redundant if branch Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 061/481] usb: cdns3: call cdns_power_is_lost() only once in cdns_resume() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 062/481] usb: cdns3: fix role switching during resume Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 063/481] ALSA: hda/conexant: Add quirk for HP ZBook Studio G4 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 064/481] hwmon: (max16065) Use READ/WRITE_ONCE to avoid compiler optimization induced race Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 065/481] ALSA: hda/conexant: Fix headphone jack handling on Acer Swift SF314 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 066/481] net: arcnet: com20020-pci: fix support for 2.5Mbit cards Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 067/481] drm/amd: Drop special case for yellow carp without discovery Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 068/481] drm/amdgpu: keep vga memory on MacBooks with switchable graphics Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 069/481] eventpoll: Fix integer overflow in ep_loop_check_proc() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 070/481] media: dvb-core: fix wrong reinitialization of ringbuffer on reopen Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 071/481] nfc: pn533: properly drop the usb interface reference on disconnect Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 072/481] net: usb: kaweth: validate USB endpoints Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 073/481] net: usb: kalmia: " Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 074/481] net: usb: pegasus: " Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 075/481] can: ems_usb: ems_usb_read_bulk_callback(): check the proper length of a message Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 076/481] can: ucan: Fix infinite loop from zero-length messages Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.1 077/481] can: usb: etas_es58x: correctly anchor the urb in the read bulk callback Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 078/481] HID: Add HID_CLAIMED_INPUT guards in raw_event callbacks missing them Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 079/481] x86/efi: defer freeing of boot services memory Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 080/481] platform/x86: dell-wmi-sysman: Dont hex dump plaintext password data Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 081/481] platform/x86: dell-wmi: Add audio/mic mute key codes Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 082/481] ALSA: usb-audio: Use correct version for UAC3 header validation Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 083/481] wifi: radiotap: reject radiotap with unknown bits Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 084/481] wifi: mac80211: fix NULL pointer dereference in mesh_rx_csa_frame() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 085/481] IB/mthca: Add missed mthca_unmap_user_db() for mthca_create_srq() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 086/481] RDMA/irdma: Fix kernel stack leak in irdma_create_user_ah() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 087/481] net/sched: ets: fix divide by zero in the offload path Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 088/481] scsi: target: Fix recursive locking in __configfs_open_file() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 089/481] Squashfs: check metadata block offset is within range Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 090/481] drbd: fix "LOGIC BUG" in drbd_al_begin_io_nonblock() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 091/481] smb: client: fix broken multichannel with krb5+signing Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 092/481] smb: client: Dont log plaintext credentials in cifs_set_cifscreds Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 093/481] scsi: core: Fix refcount leak for tagset_refcnt Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 094/481] selftests: mptcp: more stable simult_flows tests Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 095/481] selftests: mptcp: join: check removing signal+subflow endp Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 096/481] ARM: clean up the memset64() C wrapper Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 097/481] platform/x86: thinkpad_acpi: Fix errors reading battery thresholds Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 098/481] net: ethernet: ti: am65-cpsw-nuss/cpsw-ale: Fix multicast entry handling in ALE table Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 099/481] net: dpaa2: replace dpaa2_mac_is_type_fixed() with dpaa2_mac_is_type_phy() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 100/481] net: dpaa2-switch: assign port_priv->mac after dpaa2_mac_connect() call Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 101/481] net: dpaa2-switch replace direct MAC access with dpaa2_switch_port_has_mac() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 102/481] net: dpaa2-switch: serialize changes to priv->mac with a mutex Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 103/481] dpaa2-switch: do not clear any interrupts automatically Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 104/481] dpaa2-switch: Fix interrupt storm after receiving bad if_id in IRQ handler Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 105/481] atm: lec: fix null-ptr-deref in lec_arp_clear_vccs Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 106/481] can: bcm: fix locking for bcm_op runtime updates Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 107/481] can: mcp251x: fix deadlock in error path of mcp251x_open Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 108/481] kunit: tool: print summary of failed tests if a few failed out of a lot Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 109/481] kunit: tool: make --json do nothing if --raw_ouput is set Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 110/481] kunit: tool: parse KTAP compliant test output Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 111/481] kunit: tool: dont include KTAP headers and the like in the test log Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 112/481] kunit: tool: make parser preserve whitespace when printing " Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 113/481] kunit: kunit.py extract handlers Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 114/481] kunit: tool: remove unused imports and variables Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 115/481] kunit: tool: fix pre-existing `mypy --strict` errors and update run_checks.py Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 116/481] kunit: tool: Add command line interface to filter and report attributes Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 117/481] kunit: tool: copy caller args in run_kernel to prevent mutation Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 118/481] net: dsa: realtek: rtl8365mb: fix rtl8365mb_phy_ocp_write return value Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 119/481] octeon_ep: Relocate counter updates before NAPI Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 120/481] octeon_ep: avoid compiler and IQ/OQ reordering Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 121/481] wifi: cw1200: Fix locking in error paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 122/481] wifi: wlcore: Fix a locking bug Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 123/481] wifi: mt76: Fix possible oob access in mt76_connac2_mac_write_txwi_80211() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 124/481] indirect_call_wrapper: do not reevaluate function pointer Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 125/481] xen/acpi-processor: fix _CST detection using undersized evaluation buffer Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 126/481] bpf: export bpf_link_inc_not_zero Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 127/481] bpf: Fix a UAF issue in bpf_trampoline_link_cgroup_shim Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 128/481] ipv6: fix NULL pointer deref in ip6_rt_get_dev_rcu() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 129/481] amd-xgbe: fix sleep while atomic on suspend/resume Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 130/481] net: sched: avoid qdisc_reset_all_tx_gt() vs dequeue race for lockless qdiscs Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 131/481] net: nfc: nci: Fix zero-length proprietary notifications Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 132/481] nfc: nci: free skb on nci_transceive early error paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 133/481] nfc: nci: clear NCI_DATA_EXCHANGE before calling completion callback Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 134/481] nfc: rawsock: cancel tx_work before socket teardown Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 135/481] net: stmmac: Fix error handling in VLAN add and delete paths Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 136/481] net: ethernet: mtk_eth_soc: Reset prog ptr to old_prog in case of error in mtk_xdp_setup() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.1 137/481] net: bridge: fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 138/481] net: vxlan: " Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 139/481] net: ipv6: fix panic when IPv4 route references loopback IPv6 nexthop Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 140/481] net/sched: act_ife: Fix metalist update behavior Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 141/481] xdp: use modulo operation to calculate XDP frag tailroom Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 142/481] xdp: produce a warning when calculated tailroom is negative Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 143/481] tracing: Add NULL pointer check to trigger_data_free() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 144/481] net/sched: Only allow act_ct to bind to clsact/ingress qdiscs and shared blocks Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 145/481] net: tcp: accept old ack during closing Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 146/481] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 147/481] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 148/481] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 149/481] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 150/481] wifi: mac80211: set default WMM parameters on all links Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 151/481] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 152/481] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 153/481] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 154/481] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 155/481] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 156/481] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 157/481] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 158/481] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 159/481] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 160/481] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 161/481] net: dsa: realtek: rtl8365mb: remove ifOutDiscards from rx_packets Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 162/481] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 163/481] net/mlx5: IFC updates for disabled host PF Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 164/481] net/mlx5: Query to see if host PF is disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 165/481] net/mlx5: Fix deadlock between devlink lock and esw->wq Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 166/481] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 167/481] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 168/481] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 169/481] ASoC: core: Exit all links before removing their components Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 170/481] ASoC: core: Do not call link_exit() on uninitialized rtd objects Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 171/481] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 172/481] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 173/481] mctp: i2c: fix skb memory leak in receive path Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 174/481] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 175/481] mctp: route: hold key->lock in mctp_flow_prepare_output() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 176/481] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 177/481] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 178/481] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 179/481] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 180/481] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 181/481] regulator: pca9450: Make IRQ optional Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 182/481] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 183/481] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 184/481] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 185/481] nvme-pci: Fix race bug in nvme_poll_irqdisable() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 186/481] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 187/481] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 188/481] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 189/481] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 190/481] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 191/481] net: bonding: Fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 192/481] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 193/481] octeontx2-af: devlink health: use retained error fmsg API Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 194/481] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 195/481] usb: gadget: f_mass_storage: Fix potential integer overflow in check_command_size_in_blocks() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 196/481] Revert "arm64: dts: qcom: sdm845-oneplus: Mark l14a regulator as boot-on" Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.1 197/481] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 198/481] ALSA: usb-audio: Check endpoint numbers at parsing Scarlett2 mixer interfaces Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 199/481] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 200/481] net: usb: lan78xx: fix TX byte statistics for small packets Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 201/481] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 202/481] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK PM1503CDA Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 203/481] KVM: SVM: Initialize AVIC VMCB fields if AVIC is enabled with in-kernel APIC Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 204/481] USB: add QUIRK_NO_BOS for video capture several devices Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 205/481] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 206/481] USB: ezcap401 needs USB_QUIRK_NO_BOS to function on 10gbs usb speed Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 207/481] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 208/481] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 209/481] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 210/481] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 211/481] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 212/481] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 213/481] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 214/481] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 215/481] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 216/481] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 217/481] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 218/481] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 219/481] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 220/481] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 221/481] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 222/481] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 223/481] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 224/481] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 225/481] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 226/481] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 227/481] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 228/481] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 229/481] time: add kernel-doc in time.c Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 230/481] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 231/481] drm/bridge: ti-sn65dsi86: Enable HPD polling if IRQ is not used Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 232/481] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 233/481] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 234/481] ixgbevf: fix link setup issue Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 235/481] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 236/481] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 237/481] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 238/481] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 239/481] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 240/481] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 241/481] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 242/481] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 243/481] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 244/481] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 245/481] parisc: Check kernel mapping earlier at bootup Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 246/481] smb: server: fix use-after-free in smb2_open() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 247/481] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 248/481] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 249/481] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 250/481] drm/amd: Set num IP blocks to 0 if discovery fails Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 251/481] drm/bridge: ti-sn65dsi83: fix CHA_DSI_CLK_RANGE rounding Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 252/481] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 253/481] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 254/481] s390/dasd: Move quiesce state with pprc swap Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 255/481] s390/dasd: Copy detected format information to secondary device Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 256/481] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.1 257/481] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 258/481] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 259/481] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 260/481] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 261/481] smb: client: fix atomic open with O_DIRECT & O_SYNC Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 262/481] smb: client: fix iface port assignment in parse_server_interfaces Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 263/481] btrfs: fix transaction abort on file creation due to name hash collision Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 264/481] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 265/481] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 266/481] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 267/481] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 268/481] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 269/481] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 270/481] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 271/481] iio: gyro: mpu3050-i2c: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 272/481] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 273/481] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 274/481] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 275/481] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 276/481] drm/bridge: ti-sn65dsi86: Add support for DisplayPort mode with HPD Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 277/481] ipv6: use RCU in ip6_xmit() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 278/481] bpf: Forget ranges when refining tnum after JSET Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 279/481] l2tp: do not use sock_hold() in pppol2tp_session_get_sock() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 280/481] io_uring/io-wq: check IO_WQ_BIT_EXIT inside work run loop Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 281/481] io_uring/kbuf: check if target buffer list is still legacy on recycle Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 282/481] sunrpc: fix cache_request leak in cache_release Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 283/481] nvdimm/bus: Fix potential use after free in asynchronous initialization Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 284/481] LoongArch: Give more information if kmem access failed Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 285/481] NFC: nxp-nci: allow GPIOs to sleep Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 286/481] net: macb: fix use-after-free access to PTP clock Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 287/481] Bluetooth: L2CAP: Fix type confusion in l2cap_ecred_reconf_rsp() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 288/481] Bluetooth: L2CAP: Validate L2CAP_INFO_RSP payload length before access Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 289/481] smb: client: fix krb5 mount with username option Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 290/481] ksmbd: unset conn->binding on failed binding request Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 291/481] mmc: sdhci-pci-gli: fix GL9750 DMA write corruption Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 292/481] mmc: sdhci: fix timing selection for 1-bit bus width Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 293/481] spi: fix use-after-free on controller registration failure Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 294/481] spi: fix statistics allocation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 295/481] mtd: rawnand: pl353: make sure optimal timings are applied Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 296/481] mtd: rawnand: cadence: Fix error check for dma_alloc_coherent() in cadence_nand_init() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 297/481] mtd: Avoid boot crash in RedBoot partition table parser Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 298/481] iommu/vt-d: Fix intel iommu iotlb sync hardlockup and retry Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 299/481] serial: 8250_pci: add support for the AX99100 Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 300/481] serial: 8250: Fix TX deadlock when using DMA Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 301/481] serial: 8250: Add late synchronize_irq() to shutdown to handle DW UART BUSY Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 302/481] serial: uartlite: fix PM runtime usage count underflow on probe Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 303/481] drm/amdgpu/mmhub2.0: add bounds checking for cid Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 304/481] drm/amdgpu/mmhub2.3: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 305/481] drm/amdgpu/mmhub3.0.1: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 306/481] drm/amdgpu/mmhub3.0.2: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 307/481] drm/amdgpu/mmhub3.0: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 308/481] drm/radeon: apply state adjust rules to some additional HAINAN vairants Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 309/481] drm/amdgpu: " Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 310/481] mm/hugetlb: fix copy_hugetlb_page_range() to use ->pt_share_count Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 311/481] mm/hugetlb: fix hugetlb_pmd_shared() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 312/481] mm/hugetlb: fix two comments related to huge_pmd_unshare() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 313/481] mm/hugetlb: fix excessive IPI broadcasts when unsharing PMD tables using mmu_gather Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 314/481] ksmbd: call ksmbd_vfs_kern_path_end_removing() on some error paths Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 315/481] ext4: fix dirtyclusters double decrement on fs shutdown Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.1 316/481] ext4: always allocate blocks only from groups inode can use Greg Kroah-Hartman
2026-03-23 13:39 [PATCH 6.12 000/460] 6.12.78-rc1 review Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.12 001/460] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.12 002/460] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-03-23 13:39 ` [PATCH 6.12 003/460] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 004/460] ALSA: hda/realtek: Fix speaker pop on Star Labs StarFighter Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 005/460] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 006/460] wifi: mac80211: set default WMM parameters on all links Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 007/460] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 008/460] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 009/460] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 010/460] ASoC: cs42l43: Report insert for exotic peripherals Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 011/460] scsi: ufs: core: Fix possible NULL pointer dereference in ufshcd_add_command_trace() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 012/460] scsi: ufs: core: Fix shift out of bounds when MAXQ=32 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 013/460] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 014/460] drm/amdgpu/vcn5: Add SMU dpm interface type Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 015/460] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 016/460] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 017/460] kexec: Consolidate machine_kexec_mask_interrupts() implementation Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 018/460] kexec: Include kernel-end even without crashkernel Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 019/460] powerpc/kexec/core: use big-endian types for crash variables Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 020/460] powerpc/crash: adjust the elfcorehdr size Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 021/460] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 022/460] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 023/460] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 024/460] smb/server: Fix another refcount leak in smb2_open() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 025/460] nfs: return EISDIR on nfs3_proc_create if d_alias is a dir Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 026/460] drm/msm/dsi: fix hdisplay calculation when programming dsi registers Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 027/460] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 028/460] btrfs: hold space_info->lock when clearing periodic reclaim ready Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 029/460] workqueue: Use POOL_BH instead of WQ_BH when checking pool flags Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 030/460] perf disasm: Fix off-by-one bug in outside check Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 031/460] net: dsa: realtek: rtl8365mb: remove ifOutDiscards from rx_packets Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 032/460] drm/msm/dsi: fix pclk rate calculation for bonded dsi Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 033/460] drm/amd/pm: add missing od setting PP_OD_FEATURE_ZERO_FAN_BIT for smu v14 Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 034/460] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 035/460] net/mlx5: IFC updates for disabled host PF Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 036/460] net/mlx5: Query to see if host PF is disabled Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 037/460] net/mlx5: Fix deadlock between devlink lock and esw->wq Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 038/460] net/mlx5: Fix crash when moving to switchdev mode Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 039/460] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 040/460] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 041/460] drm/sitronix/st7586: fix bad pixel data due to byte swap Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 042/460] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 043/460] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 044/460] ASoC: simple-card-utils: use __free(device_node) for device node Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 045/460] ASoC: simple-card-utils: fix graph_util_is_ports0() for DT overlays Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 046/460] net: sfp: improve Huawei MA5671a fixup Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 047/460] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 048/460] bnxt_en: Fix RSS table size check when changing ethtool channels Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 049/460] mctp: i2c: fix skb memory leak in receive path Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 050/460] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 051/460] bonding: add ESP offload features when slaves support Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 052/460] bonding: Correctly support GSO ESP offload Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 053/460] net: add a common function to compute features for upper devices Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 054/460] bonding: use common function to compute the features Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 055/460] bonding: fix type confusion in bond_setup_by_slave() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 056/460] mctp: route: hold key->lock in mctp_flow_prepare_output() Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 057/460] amd-xgbe: fix link status handling in xgbe_rx_adaptation Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 058/460] amd-xgbe: prevent CRC errors during RX adaptation with AN disabled Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 059/460] xdp: allow attaching already registered memory model to xdp_rxq_info Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 060/460] xdp: register system page pool as an XDP memory model Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 061/460] net: add xmit recursion limit to tunnel xmit functions Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 062/460] netfilter: nf_tables: always walk all pending catchall elements Greg Kroah-Hartman
2026-03-23 13:40 ` [PATCH 6.12 063/460] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 064/460] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 065/460] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 066/460] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 067/460] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 068/460] perf annotate: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 069/460] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 070/460] perf ftrace: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 071/460] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 072/460] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 073/460] nvme-pci: Fix race bug in nvme_poll_irqdisable() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 074/460] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 075/460] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 076/460] net: bcmgenet: fix broken EEE by converting to phylib-managed state Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 077/460] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 078/460] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 079/460] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 080/460] drm/amdkfd: Unreserve bo if queue update failed Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 081/460] net: bonding: Fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 082/460] net: dsa: realtek: Fix LED group port bit for non-zero LED group Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 083/460] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 084/460] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 085/460] net: prevent NULL deref in ip[6]tunnel_xmit() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 086/460] iio: imu: inv-mpu9150: fix irq ack preventing irq storms Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 087/460] usb: gadget: f_mass_storage: Fix potential integer overflow in check_command_size_in_blocks() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 088/460] Revert "arm64: dts: qcom: sdm845-oneplus: Mark l14a regulator as boot-on" Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 089/460] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 090/460] ALSA: pcm: fix use-after-free on linked stream runtime in snd_pcm_drain() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 091/460] ALSA: usb-audio: Check endpoint numbers at parsing Scarlett2 mixer interfaces Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 092/460] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 093/460] net: usb: lan78xx: fix TX byte statistics for small packets Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 094/460] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 095/460] ata: libata-core: Add BRIDGE_OK quirk for QEMU drives Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 096/460] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK PM1503CDA Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 097/460] KVM: SVM: Initialize AVIC VMCB fields if AVIC is enabled with in-kernel APIC Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 098/460] USB: add QUIRK_NO_BOS for video capture several devices Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 099/460] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 100/460] USB: ezcap401 needs USB_QUIRK_NO_BOS to function on 10gbs usb speed Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 101/460] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 102/460] usb: xhci: Prevent interrupt storm on host controller error (HCE) Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 103/460] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 104/460] usb: dwc3: pci: add support for the Intel Nova Lake -H Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 105/460] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 106/460] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 107/460] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 108/460] usb: roles: get usb role switch from parent only for usb-b-connector Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 109/460] usb: typec: altmode/displayport: set displayport signaling rate in configure message Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 110/460] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 111/460] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 112/460] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 113/460] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 114/460] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 115/460] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 116/460] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 117/460] rust: kbuild: allow `unused_features` Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 118/460] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 119/460] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 120/460] mm/kfence: disable KFENCE upon KASAN HW tags enablement Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 121/460] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 122/460] ASoC: qcom: qdsp6: Fix q6apm remove ordering during ADSP stop and start Greg Kroah-Hartman
2026-03-23 13:41 ` [PATCH 6.12 123/460] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 124/460] kprobes: avoid crash when rmmod/insmod after ftrace killed Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 125/460] ceph: add a bunch of missing ceph_path_info initializers Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 126/460] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 127/460] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 128/460] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 129/460] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 130/460] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 131/460] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 132/460] ceph: fix memory leaks in ceph_mdsc_build_path() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 133/460] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 134/460] i3c: dw-i3c-master: Set SIR_REJECT in DAT on device attach and reattach Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 135/460] scsi: ufs: core: Fix SError in ufshcd_rtc_work() during UFS suspend Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 136/460] scsi: hisi_sas: Add time interval between two H2D FIS following soft reset spec Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 137/460] scsi: hisi_sas: Use macro instead of magic number Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 138/460] scsi: hisi_sas: Fix NULL pointer exception during user_scan() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 139/460] kbuild: Disable CC_HAS_ASM_GOTO_OUTPUT on clang < 17 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 140/460] Fix CC_HAS_ASM_GOTO_OUTPUT on non-x86 architectures Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 141/460] Revert "tcpm: allow looking for role_sw device in the main node" Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 142/460] drm/amd: Disable MES LR compute W/A Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 143/460] drm/bridge: samsung-dsim: Fix memory leak in error path Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 144/460] drm/bridge: ti-sn65dsi86: Enable HPD polling if IRQ is not used Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 145/460] s390/pfault: Fix virtual vs physical address confusion Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 146/460] nfsd: Fix cred ref leak in nfsd_nl_listener_set_doit() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 147/460] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 148/460] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 149/460] btrfs: fix chunk map leak in btrfs_map_block() after btrfs_chunk_map_num_copies() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 150/460] ice: reintroduce retry mechanism for indirect AQ Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 151/460] ixgbevf: fix link setup issue Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 152/460] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 153/460] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 154/460] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 155/460] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 156/460] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 157/460] tracing: Fix syscall events activation by ensuring refcount hits zero Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 158/460] net/tcp-ao: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 159/460] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 160/460] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 161/460] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 162/460] arm64: mm: Add PTE_DIRTY back to PAGE_KERNEL* to fix kexec/hibernation Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 163/460] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 164/460] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 165/460] arm64: contpte: fix set_access_flags() no-op check for SMMU/ATS faults Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 166/460] parisc: Check kernel mapping earlier at bootup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 167/460] pmdomain: bcm: bcm2835-power: Fix broken reset status read Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 168/460] ata: libata-core: Disable LPM on ST1000DM010-2EP102 Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 169/460] drm/amd/display: Fallback to boot snapshot for dispclk Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 170/460] ksmbd: fix use-after-free in smb_lazy_parent_lease_break_close() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 171/460] smb: server: fix use-after-free in smb2_open() Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 172/460] ksmbd: fix use-after-free by using call_rcu() for oplock_info Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 173/460] net: nexthop: fix percpu use-after-free in remove_nh_grp_entry Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 174/460] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 175/460] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 176/460] net: dsa: microchip: Fix error path in PTP IRQ setup Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 177/460] drm/amd/pm: remove invalid gpu_metrics.energy_accumulator on smu v13.0.x Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 178/460] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 179/460] drm/amd: Set num IP blocks to 0 if discovery fails Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 180/460] drm/bridge: ti-sn65dsi83: fix CHA_DSI_CLK_RANGE rounding Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 181/460] drm/i915: Fix potential overflow of shmem scatterlist length Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 182/460] drm/msm: Fix dma_free_attrs() buffer size Greg Kroah-Hartman
2026-03-23 13:42 ` [PATCH 6.12 183/460] tracing: Fix enabling multiple events on the kernel command line and bootconfig Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 184/460] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 185/460] qmi_wwan: allow max_mtu above hard_mtu to control rx_urb_size Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 186/460] cifs: make default value of retrans as zero Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 187/460] xfs: fix returned valued from xfs_defer_can_append Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 188/460] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 189/460] xfs: ensure dquot item is deleted from AIL only after log shutdown Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 190/460] s390/dasd: Move quiesce state with pprc swap Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 191/460] s390/dasd: Copy detected format information to secondary device Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 192/460] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 193/460] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 194/460] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 195/460] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 196/460] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 197/460] smb: client: fix atomic open with O_DIRECT & O_SYNC Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 198/460] smb: client: fix in-place encryption corruption in SMB2_write() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 199/460] smb: client: fix iface port assignment in parse_server_interfaces Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 200/460] btrfs: fix transaction abort on file creation due to name hash collision Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 201/460] btrfs: fix transaction abort on set received ioctl due to item overflow Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 202/460] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 203/460] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 204/460] iio: frequency: adf4377: Fix duplicated soft reset mask Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 205/460] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 206/460] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 207/460] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 208/460] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 209/460] iio: buffer: Fix wait_queue not being removed Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 210/460] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 211/460] iio: gyro: mpu3050-i2c: " Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 212/460] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 213/460] iio: imu: inv_icm42600: fix odr switch when turning buffer off Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 214/460] iio: proximity: hx9023s: Protect against division by zero in set_samp_freq Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 215/460] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 216/460] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 217/460] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 218/460] drm/bridge: ti-sn65dsi86: Add support for DisplayPort mode with HPD Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 219/460] net/tcp-md5: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 220/460] ksmbd: Compare MACs in constant time Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 221/460] smb: client: " Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 222/460] dst: fix races in rt6_uncached_list_del() and rt_del_uncached_list() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 223/460] ksmbd: call ksmbd_vfs_kern_path_end_removing() on some error paths Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 224/460] spi: cadence-quadspi: Implement refcount to handle unbind during busy Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 225/460] gve: fix incorrect buffer cleanup in gve_tx_clean_pending_packets for QPL Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 226/460] net: phy: register phy led_triggers during probe to avoid AB-BA deadlock Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 227/460] x86/sev: Allow IBPB-on-Entry feature for SNP guests Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 228/460] platform/x86: hp-bioscfg: Support allocations of larger data Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 229/460] wifi: libertas: fix use-after-free in lbs_free_adapter() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 230/460] perf/x86/intel/uncore: Support more units on Granite Rapids Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 231/460] perf/x86/intel/uncore: Add per-scheduler IMC CAS count events Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 232/460] mptcp: pm: in-kernel: always mark signal+subflow endp as used Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 233/460] mptcp: pm: avoid sending RM_ADDR over same subflow Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 234/460] drm/amd/display: Use GFP_ATOMIC in dc_create_stream_for_sink Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 235/460] selftests: mptcp: add a check for add_addr_accepted Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 236/460] selftests: mptcp: join: check RM_ADDR not sent over same subflow Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 237/460] kbuild: Leave objtool binary around with make clean Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 238/460] net/sched: act_gate: snapshot parameters with RCU on replace Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 239/460] xfs: Fix error pointer dereference Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 240/460] can: gs_usb: gs_can_open(): always configure bitrates before starting device Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 241/460] cleanup: Provide retain_and_null_ptr() Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 242/460] usb: gadget: f_ncm: Fix net_device lifecycle with device_move Greg Kroah-Hartman
2026-03-23 13:43 ` [PATCH 6.12 243/460] usb: gadget: f_tcm: Fix NULL pointer dereferences in nexus handling Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 244/460] KVM: SVM: Limit AVIC physical max index based on configured max_vcpu_ids Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 245/460] KVM: SVM: Add a helper to look up the max physical ID for AVIC Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 246/460] KVM: SVM: Set/clear CR8 write interception when AVIC is (de)activated Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 247/460] mmc: dw_mmc-rockchip: use modern PM macros Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 248/460] mmc: dw_mmc-rockchip: Add memory clock auto-gating support Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 249/460] mmc: dw_mmc-rockchip: Fix runtime PM support for internal phase support Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 250/460] mm/page_alloc: move set_page_refcounted() to callers of post_alloc_hook() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 251/460] mm/page_alloc: sort out the alloc_contig_range() gfp flags mess Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 252/460] mm/page_alloc: forward the gfp flags from alloc_contig_range() to post_alloc_hook() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 253/460] mm/kfence: fix KASAN hardware tag faults during late enablement Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 254/460] nsfs: tighten permission checks for ns iteration ioctls Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 255/460] sched_ext: Disable preemption between scx_claim_exit() and kicking helper work Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 256/460] sched_ext: Fix starvation of scx_enable() under fair-class saturation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 257/460] iomap: reject delalloc mappings during writeback Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 258/460] fgraph: Fix thresh_return clear per-task notrace Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 259/460] KVM: x86: Co-locate initialization of feature MSRs in kvm_arch_vcpu_create() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 260/460] KVM: x86: Quirk initialization of feature MSRs to KVMs max configuration Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 261/460] KVM: x86: do not allow re-enabling quirks Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 262/460] KVM: x86: Allow vendor code to disable quirks Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 263/460] KVM: x86: Introduce supported_quirks to block disabling quirks Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 264/460] KVM: x86: Introduce Intel specific quirk KVM_X86_QUIRK_IGNORE_GUEST_PAT Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 265/460] KVM: nVMX: Add consistency checks for CR0.WP and CR4.CET Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 266/460] KVM: x86: Introduce KVM_X86_QUIRK_VMCS12_ALLOW_FREEZE_IN_SMM Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 267/460] ksmbd: Dont log keys in SMB3 signing and encryption key generation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 268/460] drm/bridge: ti-sn65dsi83: halve horizontal syncs for dual LVDS output Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 269/460] net: macb: Shuffle the tx ring before enabling tx Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 270/460] cifs: open files should not hold ref on superblock Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 271/460] crypto: atmel-sha204a - Fix OOM ->tfm_count leak Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 272/460] xfs: fix integer overflow in bmap intent sort comparator Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 273/460] drm/xe/sync: Cleanup partially initialized sync on parse failure Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 274/460] ipv6: use RCU in ip6_xmit() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 275/460] dm-verity: disable recursive forward error correction Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 276/460] rxrpc: Fix recvmsg() unconditional requeue Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 277/460] btrfs: do not strictly require dirty metadata threshold for metadata writepages Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 278/460] ice: fix devlink reload call trace Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 279/460] tracing: Add recursion protection in kernel stack trace recording Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 280/460] Octeontx2-af: Add proper checks for fwdata Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 281/460] io_uring/uring_cmd: fix too strict requirement on ioctl Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 282/460] x86/uprobes: Fix XOL allocation failure for 32-bit tasks Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 283/460] platform/x86/amd/pmc: Add support for Van Gogh SoC Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 284/460] mptcp: pm: in-kernel: always set ID as avail when rm endp Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 285/460] net: stmmac: remove support for lpi_intr_o Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 286/460] f2fs: compress: change the first parameter of page_array_{alloc,free} to sbi Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 287/460] f2fs: compress: fix UAF of f2fs_inode_info in f2fs_free_dic Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 288/460] f2fs: fix to avoid migrating empty section Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 289/460] blk-throttle: fix access race during throttle policy activation Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 290/460] dmaengine: mmp_pdma: Fix race condition in mmp_pdma_residue() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 291/460] net: dsa: properly keep track of conduit reference Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 292/460] binfmt_misc: restore write access before closing files opened by open_exec() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 293/460] xfs: get rid of the xchk_xfile_*_descr calls Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 294/460] erofs: fix inline data read failure for ztailpacking pclusters Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 295/460] mm: thp: deny THP for files on anonymous inodes Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 296/460] sched_ext: Remove redundant css_put() in scx_cgroup_init() Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 297/460] io_uring/kbuf: check if target buffer list is still legacy on recycle Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 298/460] sched/fair: Fix zero_vruntime tracking Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 299/460] s390/stackleak: Fix __stackleak_poison() inline assembly constraint Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 300/460] s390/xor: Fix xor_xc_2() inline assembly constraints Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 301/460] drm/i915/alpm: ALPM disable fixes Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 302/460] drm/i915/psr: Repeat Selective Update area alignment Greg Kroah-Hartman
2026-03-23 13:44 ` [PATCH 6.12 303/460] drm/amd/display: Add pixel_clock to amd_pp_display_configuration Greg Kroah-Hartman

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=20260323134541.070493812@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mhiramat@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=rostedt@goodmis.org \
    --cc=stable@vger.kernel.org \
    --cc=yebin10@huawei.com \
    /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