patches.lists.linux.dev archive mirror
 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,
	Arseniy Krasnov <avkrasnov@salutedevices.com>,
	syzbot+683f8cb11b94b1824c77@syzkaller.appspotmail.com,
	Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Subject: [PATCH 5.10 099/286] Bluetooth: hci_uart: Fix another race during initialization
Date: Tue, 29 Apr 2025 18:40:03 +0200	[thread overview]
Message-ID: <20250429161111.927432731@linuxfoundation.org> (raw)
In-Reply-To: <20250429161107.848008295@linuxfoundation.org>

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

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

From: Arseniy Krasnov <avkrasnov@salutedevices.com>

commit 5df5dafc171b90d0b8d51547a82657cd5a1986c7 upstream.

Do not set 'HCI_UART_PROTO_READY' before call 'hci_uart_register_dev()'.
Possible race is when someone calls 'hci_tty_uart_close()' after this bit
is set, but 'hci_uart_register_dev()' wasn't done. This leads to access
to uninitialized fields. To fix it let's set this bit after device was
registered (as before patch c411c62cc133) and to fix previous problem let's
add one more bit in addition to 'HCI_UART_PROTO_READY' which allows to
perform power up without original bit set (pls see commit c411c62cc133).

Crash backtrace from syzbot report:

RIP: 0010:skb_queue_empty_lockless include/linux/skbuff.h:1887 [inline]
RIP: 0010:skb_queue_purge_reason+0x6d/0x140 net/core/skbuff.c:3936

Call Trace:
 <TASK>
 skb_queue_purge include/linux/skbuff.h:3364 [inline]
 mrvl_close+0x2f/0x90 drivers/bluetooth/hci_mrvl.c:100
 hci_uart_tty_close+0xb6/0x120 drivers/bluetooth/hci_ldisc.c:557
 tty_ldisc_close drivers/tty/tty_ldisc.c:455 [inline]
 tty_ldisc_kill+0x66/0xc0 drivers/tty/tty_ldisc.c:613
 tty_ldisc_release+0xc9/0x120 drivers/tty/tty_ldisc.c:781
 tty_release_struct+0x10/0x80 drivers/tty/tty_io.c:1690
 tty_release+0x4ef/0x640 drivers/tty/tty_io.c:1861
 __fput+0x86/0x2a0 fs/file_table.c:450
 task_work_run+0x82/0xb0 kernel/task_work.c:239
 resume_user_mode_work include/linux/resume_user_mode.h:50 [inline]
 exit_to_user_mode_loop kernel/entry/common.c:114 [inline]
 exit_to_user_mode_prepare include/linux/entry-common.h:329 [inline]
 __syscall_exit_to_user_mode_work kernel/entry/common.c:207 [inline]
 syscall_exit_to_user_mode+0xa3/0x1b0 kernel/entry/common.c:218
 do_syscall_64+0x9a/0x190 arch/x86/entry/common.c:89
 entry_SYSCALL_64_after_hwframe+0x77/0x7f

Signed-off-by: Arseniy Krasnov <avkrasnov@salutedevices.com>
Reported-by: syzbot+683f8cb11b94b1824c77@syzkaller.appspotmail.com
Tested-by: syzbot+683f8cb11b94b1824c77@syzkaller.appspotmail.com
Closes: https://lore.kernel.org/linux-bluetooth/d159c57f-8490-4c26-79da-6ad3612c4a14@salutedevices.com/
Fixes: 366ceff495f9 ("Bluetooth: hci_uart: fix race during initialization")
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/bluetooth/hci_ldisc.c |   20 ++++++++++++++------
 drivers/bluetooth/hci_uart.h  |    1 +
 2 files changed, 15 insertions(+), 6 deletions(-)

--- a/drivers/bluetooth/hci_ldisc.c
+++ b/drivers/bluetooth/hci_ldisc.c
@@ -102,7 +102,8 @@ static inline struct sk_buff *hci_uart_d
 	if (!skb) {
 		percpu_down_read(&hu->proto_lock);
 
-		if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
+		if (test_bit(HCI_UART_PROTO_READY, &hu->flags) ||
+		    test_bit(HCI_UART_PROTO_INIT, &hu->flags))
 			skb = hu->proto->dequeue(hu);
 
 		percpu_up_read(&hu->proto_lock);
@@ -124,7 +125,8 @@ int hci_uart_tx_wakeup(struct hci_uart *
 	if (!percpu_down_read_trylock(&hu->proto_lock))
 		return 0;
 
-	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
+	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags) &&
+	    !test_bit(HCI_UART_PROTO_INIT, &hu->flags))
 		goto no_schedule;
 
 	set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
@@ -278,7 +280,8 @@ static int hci_uart_send_frame(struct hc
 
 	percpu_down_read(&hu->proto_lock);
 
-	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
+	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags) &&
+	    !test_bit(HCI_UART_PROTO_INIT, &hu->flags)) {
 		percpu_up_read(&hu->proto_lock);
 		return -EUNATCH;
 	}
@@ -579,7 +582,8 @@ static void hci_uart_tty_wakeup(struct t
 	if (tty != hu->tty)
 		return;
 
-	if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
+	if (test_bit(HCI_UART_PROTO_READY, &hu->flags) ||
+	    test_bit(HCI_UART_PROTO_INIT, &hu->flags))
 		hci_uart_tx_wakeup(hu);
 }
 
@@ -605,7 +609,8 @@ static void hci_uart_tty_receive(struct
 
 	percpu_down_read(&hu->proto_lock);
 
-	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
+	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags) &&
+	    !test_bit(HCI_UART_PROTO_INIT, &hu->flags)) {
 		percpu_up_read(&hu->proto_lock);
 		return;
 	}
@@ -706,13 +711,16 @@ static int hci_uart_set_proto(struct hci
 
 	hu->proto = p;
 
-	set_bit(HCI_UART_PROTO_READY, &hu->flags);
+	set_bit(HCI_UART_PROTO_INIT, &hu->flags);
 
 	err = hci_uart_register_dev(hu);
 	if (err) {
 		return err;
 	}
 
+	set_bit(HCI_UART_PROTO_READY, &hu->flags);
+	clear_bit(HCI_UART_PROTO_INIT, &hu->flags);
+
 	return 0;
 }
 
--- a/drivers/bluetooth/hci_uart.h
+++ b/drivers/bluetooth/hci_uart.h
@@ -89,6 +89,7 @@ struct hci_uart {
 #define HCI_UART_PROTO_SET	0
 #define HCI_UART_REGISTERED	1
 #define HCI_UART_PROTO_READY	2
+#define HCI_UART_PROTO_INIT	4
 
 /* TX states  */
 #define HCI_UART_SENDING	1



  parent reply	other threads:[~2025-04-29 17:16 UTC|newest]

Thread overview: 292+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 16:38 [PATCH 5.10 000/286] 5.10.237-rc1 review Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 001/286] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 002/286] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 003/286] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 004/286] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 005/286] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 006/286] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 007/286] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 008/286] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 009/286] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 010/286] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 011/286] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 012/286] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 013/286] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 014/286] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 015/286] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 016/286] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 017/286] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 018/286] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 019/286] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 020/286] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 021/286] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 022/286] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 023/286] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 024/286] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 025/286] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 026/286] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 027/286] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 028/286] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 029/286] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 030/286] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 031/286] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 032/286] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 033/286] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 034/286] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 035/286] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 036/286] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 037/286] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 038/286] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 039/286] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 040/286] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 041/286] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 042/286] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 043/286] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 044/286] pwm: mediatek: Always use bus clock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 045/286] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 046/286] pwm: rcar: Simplify multiplication/shift logic Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 047/286] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 048/286] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 049/286] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 050/286] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 051/286] ext4: reject casefold inode flag without casefold feature Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 052/286] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 053/286] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 054/286] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 055/286] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 056/286] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 057/286] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 058/286] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 059/286] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 060/286] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 061/286] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 062/286] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 063/286] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 064/286] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 065/286] media: i2c: ov7251: Set enable GPIO low in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 066/286] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 067/286] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 068/286] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 069/286] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 070/286] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 071/286] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 072/286] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 073/286] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 074/286] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 075/286] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 076/286] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 077/286] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 078/286] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 079/286] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 080/286] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 081/286] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 082/286] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 083/286] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 084/286] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 085/286] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 086/286] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 087/286] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 088/286] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 089/286] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 090/286] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 091/286] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 092/286] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 093/286] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 094/286] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 095/286] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 096/286] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 097/286] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 098/286] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:40 ` Greg Kroah-Hartman [this message]
2025-04-29 16:40 ` [PATCH 5.10 100/286] pwm: mediatek: always use bus clock for PWM on MT7622 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 101/286] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 102/286] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 103/286] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 104/286] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 105/286] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 106/286] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 107/286] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 108/286] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 109/286] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 110/286] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 111/286] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 112/286] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 113/286] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 114/286] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 115/286] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 116/286] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 117/286] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 118/286] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 119/286] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 120/286] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 121/286] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 122/286] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 123/286] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 124/286] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 125/286] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 126/286] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 127/286] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 128/286] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 129/286] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 130/286] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 131/286] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 132/286] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 133/286] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 134/286] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 135/286] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 136/286] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 137/286] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 138/286] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 139/286] drm/amd/pm/powerplay: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 140/286] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 141/286] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 142/286] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 143/286] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 144/286] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 145/286] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 146/286] tcp/dccp: Dont use timer_pending() in reqsk_queue_unlink() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 147/286] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 148/286] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 149/286] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 150/286] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 151/286] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 152/286] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 153/286] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 154/286] nvme: avoid double free special payload Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 155/286] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 156/286] phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 157/286] wifi: ath10k: avoid NULL pointer error during sdio remove Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 158/286] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 159/286] drm/amd/display: Fix out-of-bounds access in dcn21_link_encoder_create Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 160/286] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 161/286] smb: client: fix potential UAF in cifs_debug_files_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 162/286] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 163/286] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 164/286] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 165/286] smb: client: fix potential UAF in cifs_stats_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 166/286] smb: client: fix UAF in async decryption Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 167/286] smb: client: fix NULL ptr deref in crypto_aead_setkey() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 168/286] bpf: avoid holding freeze_mutex during mmap operation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 169/286] bpf: Check rcu_read_lock_trace_held() before calling bpf map helpers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 170/286] blk-cgroup: support to track if policy is online Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 171/286] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 172/286] ext4: fix timer use-after-free on failed mount Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 173/286] net/mlx5e: Fix use-after-free of encap entry in neigh update handler Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 174/286] ipvs: properly dereference pe in ip_vs_add_service Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 175/286] net: openvswitch: fix race on port output Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 176/286] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 177/286] scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 178/286] scsi: ufs: bsg: Set bsg_queue to NULL after removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 179/286] net: defer final struct net free in netns dismantle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 180/286] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 181/286] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 182/286] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 183/286] jfs: Fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 184/286] dm cache: fix flushing uninitialized delayed_work on cache_ctr error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 185/286] vfio/pci: fix memory leak during D3hot to D0 transition Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 186/286] kernel/resource: fix kfree() of bootmem memory again Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 187/286] drm/i915/gt: Cleanup partial engine discovery failures Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 188/286] fs/proc: do_task_stat: use sig->stats_lock to gather the threads/children stats Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 189/286] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 190/286] drivers: staging: rtl8723bs: Fix deadlock in rtw_surveydone_event_callback() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 191/286] s390/dasd: fix double module refcount decrement Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 192/286] pmdomain: ti: Add a null pointer check to the omap_prm_domain_init Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 193/286] drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 194/286] platform/x86: ISST: Correct command storage data length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 195/286] tracing: Allow synthetic events to pass around stacktraces Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 196/286] tracing: Fix synth event printk format for str fields Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 197/286] media: streamzap: remove unnecessary ir_raw_event_reset and handle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 198/286] media: streamzap: no need for usb pid/vid in device name Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 199/286] media: streamzap: less chatter Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 200/286] media: streamzap: remove unused struct members Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 201/286] media: streamzap: fix race between device disconnection and urb callback Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 202/286] media: venus: venc: Init the session only once in queue_setup Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 203/286] media: venus: Limit HFI sessions to the maximum supported Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 204/286] media: venus: hfi: Correct session init return error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 205/286] media: venus: pm_helpers: Check instance state when calculate instance frequency Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 206/286] media: venus: Create hfi platform and move vpp/vsp there Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 207/286] media: venus: Rename venus_caps to hfi_plat_caps Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 208/286] media: venus: hfi_plat: Add codecs and capabilities ops Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 209/286] media: venus: Get codecs and capabilities from hfi platform Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 210/286] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 211/286] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 212/286] soc: samsung: exynos-chipid: initialize later - with arch_initcall Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 213/286] soc: samsung: exynos-chipid: convert to driver and merge exynos-asv Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 214/286] soc: samsung: exynos-chipid: avoid soc_device_to_device() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 215/286] soc: samsung: exynos-chipid: Pass revision reg offsets Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 216/286] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 217/286] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 218/286] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 219/286] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 220/286] cifs: print TIDs as hex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 221/286] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 222/286] PCI: Introduce domain_nr in pci_host_bridge Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 223/286] PCI: Coalesce host bridge contiguous apertures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 224/286] PCI: Assign PCI domain IDs by ida_alloc() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 225/286] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 226/286] selftests/mm: generate a temporary mountpoint for cgroup filesystem Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 227/286] drm/amd/amdgpu/amdgpu_vram_mgr: Add missing descriptions for dev and dir Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 228/286] drm/amdgpu: Remove amdgpu_device arg from free_sgt api (v2) Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 229/286] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 230/286] dma/contiguous: avoid warning about unused size_bytes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 231/286] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 232/286] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 233/286] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 234/286] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 235/286] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 236/286] iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 237/286] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 238/286] KVM: SVM: Allocate IR data using atomic allocation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 239/286] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 240/286] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 241/286] mei: me: add panther lake H DID Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 242/286] KVM: x86: Reset IRTE to host control if *new* route isnt postable Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 243/286] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 244/286] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 245/286] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 246/286] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 247/286] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 248/286] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 249/286] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 250/286] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 251/286] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 252/286] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 253/286] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 254/286] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 255/286] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 256/286] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 257/286] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 258/286] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 259/286] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 260/286] objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 261/286] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 262/286] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 263/286] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 264/286] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 265/286] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 266/286] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 267/286] nvme: requeue namespace scan on missed AENs Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 268/286] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 269/286] nvme: re-read ANA log page after ns scan completes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 270/286] objtool: Stop UNRET validation on UD2 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 271/286] selftests/mincore: Allow read-ahead pages to reach the end of the file Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 272/286] x86/bugs: Use SBPB in write_ibpb() if applicable Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 273/286] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 274/286] ext4: make block validity check resistent to sb bh corruption Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 275/286] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 276/286] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 277/286] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 278/286] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 279/286] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 280/286] xdp: Reset bpf_redirect_info before running a xdps BPF prog Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 281/286] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 282/286] nvme: fixup scan failure for non-ANA multipath controllers Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 283/286] PCI: Fix use-after-free in pci_bus_release_domain_nr() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 284/286] soc: samsung: exynos-chipid: correct helpers __init annotation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 285/286] media: venus: Fix uninitialized variable count being checked for zero Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 286/286] media: venus: hfi_parser: Check for instance after hfi platform get Greg Kroah-Hartman
2025-04-29 20:16 ` [PATCH 5.10 000/286] 5.10.237-rc1 review Pavel Machek
2025-04-30  3:52 ` Dominique Martinet
2025-04-30 15:03 ` Jon Hunter
2025-04-30 15:50 ` Naresh Kamboju
2025-05-02 12:18 ` Florian Fainelli

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=20250429161111.927432731@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=avkrasnov@salutedevices.com \
    --cc=luiz.von.dentz@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+683f8cb11b94b1824c77@syzkaller.appspotmail.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;
as well as URLs for NNTP newsgroup(s).