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, Enzo Matsumiya <ematsumiya@suse.de>,
	Steve French <stfrench@microsoft.com>,
	Jianqi Ren <jianqi.ren.cn@windriver.com>,
	He Zhe <zhe.he@windriver.com>
Subject: [PATCH 5.10 166/286] smb: client: fix UAF in async decryption
Date: Tue, 29 Apr 2025 18:41:10 +0200	[thread overview]
Message-ID: <20250429161114.714500176@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: Enzo Matsumiya <ematsumiya@suse.de>

commit b0abcd65ec545701b8793e12bc27dc98042b151a upstream.

Doing an async decryption (large read) crashes with a
slab-use-after-free way down in the crypto API.

Reproducer:
    # mount.cifs -o ...,seal,esize=1 //srv/share /mnt
    # dd if=/mnt/largefile of=/dev/null
    ...
    [  194.196391] ==================================================================
    [  194.196844] BUG: KASAN: slab-use-after-free in gf128mul_4k_lle+0xc1/0x110
    [  194.197269] Read of size 8 at addr ffff888112bd0448 by task kworker/u77:2/899
    [  194.197707]
    [  194.197818] CPU: 12 UID: 0 PID: 899 Comm: kworker/u77:2 Not tainted 6.11.0-lku-00028-gfca3ca14a17a-dirty #43
    [  194.198400] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-3-gd478f380-prebuilt.qemu.org 04/01/2014
    [  194.199046] Workqueue: smb3decryptd smb2_decrypt_offload [cifs]
    [  194.200032] Call Trace:
    [  194.200191]  <TASK>
    [  194.200327]  dump_stack_lvl+0x4e/0x70
    [  194.200558]  ? gf128mul_4k_lle+0xc1/0x110
    [  194.200809]  print_report+0x174/0x505
    [  194.201040]  ? __pfx__raw_spin_lock_irqsave+0x10/0x10
    [  194.201352]  ? srso_return_thunk+0x5/0x5f
    [  194.201604]  ? __virt_addr_valid+0xdf/0x1c0
    [  194.201868]  ? gf128mul_4k_lle+0xc1/0x110
    [  194.202128]  kasan_report+0xc8/0x150
    [  194.202361]  ? gf128mul_4k_lle+0xc1/0x110
    [  194.202616]  gf128mul_4k_lle+0xc1/0x110
    [  194.202863]  ghash_update+0x184/0x210
    [  194.203103]  shash_ahash_update+0x184/0x2a0
    [  194.203377]  ? __pfx_shash_ahash_update+0x10/0x10
    [  194.203651]  ? srso_return_thunk+0x5/0x5f
    [  194.203877]  ? crypto_gcm_init_common+0x1ba/0x340
    [  194.204142]  gcm_hash_assoc_remain_continue+0x10a/0x140
    [  194.204434]  crypt_message+0xec1/0x10a0 [cifs]
    [  194.206489]  ? __pfx_crypt_message+0x10/0x10 [cifs]
    [  194.208507]  ? srso_return_thunk+0x5/0x5f
    [  194.209205]  ? srso_return_thunk+0x5/0x5f
    [  194.209925]  ? srso_return_thunk+0x5/0x5f
    [  194.210443]  ? srso_return_thunk+0x5/0x5f
    [  194.211037]  decrypt_raw_data+0x15f/0x250 [cifs]
    [  194.212906]  ? __pfx_decrypt_raw_data+0x10/0x10 [cifs]
    [  194.214670]  ? srso_return_thunk+0x5/0x5f
    [  194.215193]  smb2_decrypt_offload+0x12a/0x6c0 [cifs]

This is because TFM is being used in parallel.

Fix this by allocating a new AEAD TFM for async decryption, but keep
the existing one for synchronous READ cases (similar to what is done
in smb3_calc_signature()).

Also remove the calls to aead_request_set_callback() and
crypto_wait_req() since it's always going to be a synchronous operation.

Signed-off-by: Enzo Matsumiya <ematsumiya@suse.de>
Signed-off-by: Steve French <stfrench@microsoft.com>
[In linux-5.10, dec and enc fields are named ccmaesdecrypt and ccmaesencrypt.]
Signed-off-by: Jianqi Ren <jianqi.ren.cn@windriver.com>
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/cifs/smb2ops.c |   48 ++++++++++++++++++++++++++++--------------------
 fs/cifs/smb2pdu.c |    6 ++++++
 2 files changed, 34 insertions(+), 20 deletions(-)

--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -4291,7 +4291,7 @@ smb2_get_enc_key(struct TCP_Server_Info
  */
 static int
 crypt_message(struct TCP_Server_Info *server, int num_rqst,
-	      struct smb_rqst *rqst, int enc)
+	      struct smb_rqst *rqst, int enc, struct crypto_aead *tfm)
 {
 	struct smb2_transform_hdr *tr_hdr =
 		(struct smb2_transform_hdr *)rqst[0].rq_iov[0].iov_base;
@@ -4302,8 +4302,6 @@ crypt_message(struct TCP_Server_Info *se
 	u8 key[SMB3_ENC_DEC_KEY_SIZE];
 	struct aead_request *req;
 	u8 *iv;
-	DECLARE_CRYPTO_WAIT(wait);
-	struct crypto_aead *tfm;
 	unsigned int crypt_len = le32_to_cpu(tr_hdr->OriginalMessageSize);
 	void *creq;
 
@@ -4314,15 +4312,6 @@ crypt_message(struct TCP_Server_Info *se
 		return rc;
 	}
 
-	rc = smb3_crypto_aead_allocate(server);
-	if (rc) {
-		cifs_server_dbg(VFS, "%s: crypto alloc failed\n", __func__);
-		return rc;
-	}
-
-	tfm = enc ? server->secmech.ccmaesencrypt :
-						server->secmech.ccmaesdecrypt;
-
 	if ((server->cipher_type == SMB2_ENCRYPTION_AES256_CCM) ||
 		(server->cipher_type == SMB2_ENCRYPTION_AES256_GCM))
 		rc = crypto_aead_setkey(tfm, key, SMB3_GCM256_CRYPTKEY_SIZE);
@@ -4361,11 +4350,7 @@ crypt_message(struct TCP_Server_Info *se
 	aead_request_set_crypt(req, sg, sg, crypt_len, iv);
 	aead_request_set_ad(req, assoc_data_len);
 
-	aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
-				  crypto_req_done, &wait);
-
-	rc = crypto_wait_req(enc ? crypto_aead_encrypt(req)
-				: crypto_aead_decrypt(req), &wait);
+	rc = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
 
 	if (!rc && enc)
 		memcpy(&tr_hdr->Signature, sign, SMB2_SIGNATURE_SIZE);
@@ -4454,7 +4439,7 @@ smb3_init_transform_rq(struct TCP_Server
 	/* fill the 1st iov with a transform header */
 	fill_transform_hdr(tr_hdr, orig_len, old_rq, server->cipher_type);
 
-	rc = crypt_message(server, num_rqst, new_rq, 1);
+	rc = crypt_message(server, num_rqst, new_rq, 1, server->secmech.ccmaesencrypt);
 	cifs_dbg(FYI, "Encrypt message returned %d\n", rc);
 	if (rc)
 		goto err_free;
@@ -4480,8 +4465,9 @@ decrypt_raw_data(struct TCP_Server_Info
 		 unsigned int npages, unsigned int page_data_size,
 		 bool is_offloaded)
 {
-	struct kvec iov[2];
+	struct crypto_aead *tfm;
 	struct smb_rqst rqst = {NULL};
+	struct kvec iov[2];
 	int rc;
 
 	iov[0].iov_base = buf;
@@ -4496,9 +4482,31 @@ decrypt_raw_data(struct TCP_Server_Info
 	rqst.rq_pagesz = PAGE_SIZE;
 	rqst.rq_tailsz = (page_data_size % PAGE_SIZE) ? : PAGE_SIZE;
 
-	rc = crypt_message(server, 1, &rqst, 0);
+	if (is_offloaded) {
+		if ((server->cipher_type == SMB2_ENCRYPTION_AES128_GCM) ||
+		    (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM))
+			tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
+		else
+			tfm = crypto_alloc_aead("ccm(aes)", 0, 0);
+		if (IS_ERR(tfm)) {
+			rc = PTR_ERR(tfm);
+			cifs_server_dbg(VFS, "%s: Failed alloc decrypt TFM, rc=%d\n", __func__, rc);
+
+			return rc;
+		}
+	} else {
+		if (unlikely(!server->secmech.ccmaesdecrypt))
+			return -EIO;
+
+		tfm = server->secmech.ccmaesdecrypt;
+	}
+
+	rc = crypt_message(server, 1, &rqst, 0, tfm);
 	cifs_dbg(FYI, "Decrypt message returned %d\n", rc);
 
+	if (is_offloaded)
+		crypto_free_aead(tfm);
+
 	if (rc)
 		return rc;
 
--- a/fs/cifs/smb2pdu.c
+++ b/fs/cifs/smb2pdu.c
@@ -998,6 +998,12 @@ SMB2_negotiate(const unsigned int xid, s
 		else
 			cifs_server_dbg(VFS, "Missing expected negotiate contexts\n");
 	}
+
+	if (server->cipher_type && !rc) {
+		rc = smb3_crypto_aead_allocate(server);
+		if (rc)
+			cifs_server_dbg(VFS, "%s: crypto alloc failed, rc=%d\n", __func__, rc);
+	}
 neg_exit:
 	free_rsp_buf(resp_buftype, rsp);
 	return rc;



  parent reply	other threads:[~2025-04-29 17:19 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 ` [PATCH 5.10 099/286] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
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 ` Greg Kroah-Hartman [this message]
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=20250429161114.714500176@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ematsumiya@suse.de \
    --cc=jianqi.ren.cn@windriver.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=stfrench@microsoft.com \
    --cc=zhe.he@windriver.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