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, Fedor Pchelkin <pchelkin@ispras.ru>,
	Zhihao Cheng <chengzhihao1@huawei.com>,
	Richard Weinberger <richard@nod.at>
Subject: [PATCH 6.15 457/592] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places
Date: Mon, 23 Jun 2025 15:06:55 +0200	[thread overview]
Message-ID: <20250623130711.301302022@linuxfoundation.org> (raw)
In-Reply-To: <20250623130700.210182694@linuxfoundation.org>

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

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

From: Fedor Pchelkin <pchelkin@ispras.ru>

commit 2b6d96503255a3ed676cd70f8368870c6d6a25c6 upstream.

Fuzzing hit another invalid pointer dereference due to the lack of
checking whether jffs2_prealloc_raw_node_refs() completed successfully.
Subsequent logic implies that the node refs have been allocated.

Handle that. The code is ready for propagating the error upwards.

KASAN: null-ptr-deref in range [0x0000000000000008-0x000000000000000f]
CPU: 1 PID: 5835 Comm: syz-executor145 Not tainted 5.10.234-syzkaller #0
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.12.0-1 04/01/2014
RIP: 0010:jffs2_link_node_ref+0xac/0x690 fs/jffs2/nodelist.c:600
Call Trace:
 jffs2_mark_erased_block fs/jffs2/erase.c:460 [inline]
 jffs2_erase_pending_blocks+0x688/0x1860 fs/jffs2/erase.c:118
 jffs2_garbage_collect_pass+0x638/0x1a00 fs/jffs2/gc.c:253
 jffs2_reserve_space+0x3f4/0xad0 fs/jffs2/nodemgmt.c:167
 jffs2_write_inode_range+0x246/0xb50 fs/jffs2/write.c:362
 jffs2_write_end+0x712/0x1110 fs/jffs2/file.c:302
 generic_perform_write+0x2c2/0x500 mm/filemap.c:3347
 __generic_file_write_iter+0x252/0x610 mm/filemap.c:3465
 generic_file_write_iter+0xdb/0x230 mm/filemap.c:3497
 call_write_iter include/linux/fs.h:2039 [inline]
 do_iter_readv_writev+0x46d/0x750 fs/read_write.c:740
 do_iter_write+0x18c/0x710 fs/read_write.c:866
 vfs_writev+0x1db/0x6a0 fs/read_write.c:939
 do_pwritev fs/read_write.c:1036 [inline]
 __do_sys_pwritev fs/read_write.c:1083 [inline]
 __se_sys_pwritev fs/read_write.c:1078 [inline]
 __x64_sys_pwritev+0x235/0x310 fs/read_write.c:1078
 do_syscall_64+0x30/0x40 arch/x86/entry/common.c:46
 entry_SYSCALL_64_after_hwframe+0x67/0xd1

Found by Linux Verification Center (linuxtesting.org) with Syzkaller.

Fixes: 2f785402f39b ("[JFFS2] Reduce visibility of raw_node_ref to upper layers of JFFS2 code.")
Fixes: f560928baa60 ("[JFFS2] Allocate node_ref for wasted space when skipping to page boundary")
Cc: stable@vger.kernel.org
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/jffs2/erase.c |    4 +++-
 fs/jffs2/scan.c  |    4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

--- a/fs/jffs2/erase.c
+++ b/fs/jffs2/erase.c
@@ -425,7 +425,9 @@ static void jffs2_mark_erased_block(stru
 			.totlen =	cpu_to_je32(c->cleanmarker_size)
 		};
 
-		jffs2_prealloc_raw_node_refs(c, jeb, 1);
+		ret = jffs2_prealloc_raw_node_refs(c, jeb, 1);
+		if (ret)
+			goto filebad;
 
 		marker.hdr_crc = cpu_to_je32(crc32(0, &marker, sizeof(struct jffs2_unknown_node)-4));
 
--- a/fs/jffs2/scan.c
+++ b/fs/jffs2/scan.c
@@ -256,7 +256,9 @@ int jffs2_scan_medium(struct jffs2_sb_in
 
 		jffs2_dbg(1, "%s(): Skipping %d bytes in nextblock to ensure page alignment\n",
 			  __func__, skip);
-		jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
+		ret = jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
+		if (ret)
+			goto out;
 		jffs2_scan_dirty_space(c, c->nextblock, skip);
 	}
 #endif



  parent reply	other threads:[~2025-06-23 21:50 UTC|newest]

Thread overview: 610+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 12:59 [PATCH 6.15 000/592] 6.15.4-rc1 review Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 001/592] alloc_tag: handle module codetag load errors as module load failures Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 002/592] configfs: Do not override creating attribute file failure in populate_attrs() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 003/592] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 004/592] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 005/592] sched/rt: Fix race in push_rt_task Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 006/592] sched/fair: Adhere to place_entity() constraints Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 007/592] crypto: qat - add shutdown handler to qat_c3xxx Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 008/592] crypto: qat - add shutdown handler to qat_420xx Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 009/592] crypto: qat - add shutdown handler to qat_4xxx Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 010/592] crypto: qat - add shutdown handler to qat_c62x Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 011/592] crypto: qat - add shutdown handler to qat_dh895xcc Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 012/592] ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 013/592] firmware: cs_dsp: Fix OOB memory read access in KUnit test Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 014/592] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 015/592] ASoC: amd: amd_sdw: Fix unlikely uninitialized variable use in create_sdw_dailinks() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 016/592] ASoC: amd: sof_amd_sdw: " Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 017/592] io_uring: account drain memory to cgroup Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 018/592] io_uring/kbuf: account ring io_buffer_list memory Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 019/592] powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 020/592] powerpc64/ftrace: fix clobbered r15 during livepatching Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 021/592] powerpc/bpf: fix JIT code size calculation of bpf trampoline Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 022/592] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 023/592] s390/pci: Remove redundant bus removal and disable from zpci_release_device() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 024/592] s390/pci: Prevent self deletion in disable_slot() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 025/592] s390/pci: Allow re-add of a reserved but not yet removed device Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 026/592] s390/pci: Serialize device addition and removal Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 027/592] regulator: max20086: Fix MAX200086 chip id Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 028/592] regulator: max20086: Change enable gpio to optional Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 029/592] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 030/592] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 031/592] wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 032/592] wifi: mt76: mt7925: fix host interrupt register initialization Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 033/592] anon_inode: use a proper mode internally Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 034/592] anon_inode: explicitly block ->setattr() Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 035/592] anon_inode: raise SB_I_NODEV and SB_I_NOEXEC Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 036/592] wifi: ath11k: fix rx completion meta data corruption Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 037/592] wifi: rtw88: usb: Upload the firmware in bigger chunks Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 038/592] wifi: ath11k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 039/592] NFSD: unregister filesystem in case genl_register_family() fails Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 040/592] NFSD: fix race between nfsd registration and exports_proc Greg Kroah-Hartman
2025-06-23 12:59 ` [PATCH 6.15 041/592] NFSD: Implement FATTR4_CLONE_BLKSIZE attribute Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 042/592] nfsd: fix access checking for NLM under XPRTSEC policies Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 043/592] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 044/592] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 045/592] SUNRPC: Prevent hang on NFS mount with xprtsec=[m]tls Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 046/592] NFS: always probe for LOCALIO support asynchronously Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 047/592] NFSv4: Dont check for OPEN feature support in v4.1 Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 048/592] fs/nfs/read: fix double-unlock bug in nfs_return_empty_folio() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 049/592] wifi: ath12k: fix ring-buffer corruption Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 050/592] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 051/592] svcrdma: Unregister the device if svc_rdma_accept() fails Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 052/592] wifi: rtw88: usb: Reduce control message timeout to 500 ms Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 053/592] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 054/592] jfs: validate AG parameters in dbMount() to prevent crashes Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 055/592] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 056/592] media: ov5675: " Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 057/592] media: i2c: change lt6911uxe irq_gpio name to "hpd" Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 058/592] media: imx335: Use correct register width for HNUM Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 059/592] media: nxp: imx8-isi: better handle the m2m usage_count Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 060/592] media: i2c: ds90ub913: Fix returned fmt from .set_fmt() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 061/592] media: ccs-pll: Start VT pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 062/592] media: ov2740: Move pm-runtime cleanup on probe-errors to proper place Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 063/592] media: ccs-pll: Start OP pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 064/592] media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 065/592] media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 066/592] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 067/592] media: davinci: vpif: Fix memory leak in probe error path Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 068/592] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 069/592] media: i2c: imx335: Fix frame size enumeration Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 070/592] media: imagination: fix a potential memory leak in e5010_probe() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 071/592] media: intel/ipu6: Fix dma mask for non-secure mode Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 072/592] media: ipu6: Remove workaround for Meteor Lake ES2 Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 073/592] media: iris: fix error code in iris_load_fw_to_memory() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 074/592] media: mediatek: vcodec: Correct vsi_core framebuffer size Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 075/592] media: omap3isp: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 076/592] media: ov08x40: Extend sleep after reset to 5 ms Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 077/592] media: qcom: camss: csid: suppress CSID log spam Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 078/592] media: qcom: camss: vfe: suppress VFE version " Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 079/592] media: rcar-vin: Fix RAW10 Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 080/592] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 081/592] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 082/592] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 083/592] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 084/592] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 085/592] media: imx-jpeg: Drop the first error frames Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 086/592] media: imx-jpeg: Move mxc_jpeg_free_slot_data() ahead Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 087/592] media: imx-jpeg: Reset slot data pointers when freed Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 088/592] media: imx-jpeg: Cleanup after an allocation error Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 089/592] media: uvcvideo: Return the number of processed controls Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 090/592] media: uvcvideo: Send control events for partial succeeds Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 091/592] media: uvcvideo: Fix deferred probing error Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 092/592] arm64/mm: Close theoretical race where stale TLB entry remains valid Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 093/592] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 094/592] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 095/592] ASoC: codecs: wcd9375: Fix double free of regulator supplies Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 096/592] ASoC: codecs: wcd937x: Drop unused buck_supply Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 097/592] block: use plug request list tail for one-shot backmerge attempt Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 098/592] block: Clear BIO_EMULATES_ZONE_APPEND flag on BIO completion Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 099/592] bus: mhi: ep: Update read pointer only after buffer is written Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 100/592] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:00 ` [PATCH 6.15 101/592] can: kvaser_pciefd: refine error prone echo_skb_max handling logic Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 102/592] can: tcan4x5x: fix power regulator retrieval during probe Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 103/592] ceph: avoid kernel BUG for encrypted inode with unaligned file size Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 104/592] ceph: set superblock s_magic for IMA fsmagic matching Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 105/592] cgroup,freezer: fix incomplete freezing when attaching tasks Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 106/592] bus: firewall: Fix missing static inline annotations for stubs Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 107/592] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 108/592] ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 109/592] ata: ahci: Disallow LPM for Asus B550-F motherboard Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 110/592] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 111/592] bus: fsl-mc: fix GET/SET_TAILDROP command ids Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 112/592] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 113/592] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 114/592] ext4: fix out of bounds punch offset Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 115/592] ext4: fix incorrect punch max_end Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 116/592] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 117/592] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 118/592] ext4: only dirty folios when data journaling regular files Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 119/592] Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 120/592] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 121/592] Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 122/592] f2fs: fix to do sanity check on ino and xnid Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 123/592] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 124/592] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 125/592] f2fs: fix to return correct error number in f2fs_sync_node_pages() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 126/592] hwmon: (ftsteutates) Fix TOCTOU race in fts_read() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 127/592] NFC: nci: uart: Set tty->disc_data only in success path Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 128/592] net/sched: fix use-after-free in taprio_dev_notifier Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 129/592] net: ftgmac100: select FIXED_PHY Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 130/592] iommu/vt-d: Restore context entry setup order for aliased devices Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 131/592] fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 132/592] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 133/592] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 134/592] parisc/unaligned: Fix hex output to show 8 hex chars Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 135/592] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 136/592] parisc: fix building with gcc-15 Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 137/592] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 138/592] ipc: fix to protect IPCS lookups using RCU Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 139/592] watchdog: fix watchdog may detect false positive of softlockup Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 140/592] RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 141/592] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 142/592] soc: qcom: pmic_glink_altmode: fix spurious DP hotplug events Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 143/592] configfs-tsm-report: Fix NULL dereference of tsm_ops Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 144/592] firmware: ti_sci: Convert CPU latency constraint from us to ms Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 145/592] firmware: arm_scmi: Ensure that the message-id supports fastchannel Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 146/592] iommu: Allow attaching static domains in iommu_attach_device_pasid() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 147/592] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 148/592] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 149/592] KVM: SVM: Clear current_vmcb during vCPU free for all *possible* CPUs Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 150/592] KVM: VMX: Flush shadow VMCS on emergency reboot Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 151/592] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 152/592] dm-verity: fix a memory leak if some arguments are specified multiple times Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 153/592] mtd: rawnand: qcom: Pass 18 bit offset from NANDc base to BAM base Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 154/592] mtd: rawnand: qcom: Fix last codeword read in qcom_param_page_type_exec() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 155/592] mtd: rawnand: qcom: Fix read len for onfi param page Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 156/592] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 157/592] dm: lock limits when reading them Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 158/592] dm-table: Set BLK_FEAT_ATOMIC_WRITES for target queue limits Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 159/592] phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 160/592] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:01 ` [PATCH 6.15 161/592] KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 162/592] sysfb: Fix screen_info type check for VGA Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 163/592] video: screen_info: Relocate framebuffers behind PCI bridges Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 164/592] nvme-tcp: remove tag set when second admin queue config fails Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 165/592] pwm: axi-pwmgen: fix missing separate external clock Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 166/592] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 167/592] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 168/592] ovl: Fix nested backing file paths Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 169/592] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 170/592] remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 171/592] remoteproc: core: Release rproc->clean_table after rproc_attach() fails Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 173/592] cifs: reset connections for all channels when reconnect requested Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 174/592] cifs: update dstaddr whenever channel iface is updated Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 175/592] cifs: dns resolution is needed only for primary channel Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 176/592] smb: client: add NULL check in automount_fullpath Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 177/592] Drivers: hv: Allocate interrupt and monitor pages aligned to system page boundary Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 178/592] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 179/592] uio_hv_generic: Align ring size to system page Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 180/592] PCI: cadence-ep: Correct PBA offset in .set_msix() callback Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 181/592] PCI: dwc: ep: " Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 182/592] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 183/592] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 184/592] PCI: dw-rockchip: Remove PCIE_L0S_ENTRY check from rockchip_pcie_link_up() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 185/592] PCI: apple: Set only available ports up Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 186/592] PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 187/592] hv_netvsc: fix potential deadlock in netvsc_vf_setxdp() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 188/592] iio: accel: fxls8962af: Fix temperature scan element sign Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 189/592] iio: accel: fxls8962af: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 190/592] accel/ivpu: Improve buffer object logging Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 191/592] accel/ivpu: Use firmware names from upstream repo Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 192/592] accel/ivpu: Trigger device recovery on engine reset/resume failure Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 193/592] accel/ivpu: Use dma_resv_lock() instead of a custom mutex Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 194/592] accel/ivpu: Fix warning in ivpu_gem_bo_free() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 195/592] io_uring/net: only consider msg_inq if larger than 1 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 196/592] dummycon: Trigger redraw when switching consoles with deferred takeover Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 197/592] mm: fix uprobe pte be overwritten when expanding vma Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 198/592] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 199/592] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 200/592] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 201/592] iio: adc: ad7944: mask high bits on direct read Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 202/592] iio: adc: ti-ads1298: Kconfig: add kfifo dependency to fix module build Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 203/592] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 204/592] iio: adc: ad7173: fix compiling without gpiolib Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 205/592] iio: adc: ad7606: fix raw read for 18-bit chips Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 206/592] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 207/592] ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 208/592] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 209/592] power: supply: gpio-charger: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 210/592] power: supply: collie: " Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 211/592] mmc: Add quirk to disable DDR50 tuning Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 212/592] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 213/592] mmc: sdhci-esdhc-imx: Save tuning value when card stays powered in suspend Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 214/592] EDAC/igen6: Skip absent memory controllers Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 215/592] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 216/592] ASoC: intel/sdw_utils: Assign initial value in asoc_sdw_rt_amp_spk_rtd_init() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 217/592] ACPI: bus: Bail out if acpi_kobj registration fails Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 218/592] ALSA: hda/realtek: Add support for Acer Helios Laptops using CS35L41 HDA Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 219/592] ACPI: Add missing prototype for non CONFIG_SUSPEND/CONFIG_X86 case Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 220/592] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 6.15 221/592] ACPICA: Apply pack(1) to union aml_resource Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 222/592] ALSA: hda: cs35l41: Fix swapped l/r audio channels for Acer Helios laptops Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 225/592] pmdomain: core: Reset genpd->states to avoid freeing invalid data Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 226/592] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 227/592] platform-msi: Add msi_remove_device_irq_domain() in platform_device_msi_free_irqs_all() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 228/592] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 229/592] Make cc-option work correctly for the -Wno-xyzzy pattern Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 230/592] gpiolib: of: Add polarity quirk for s5m8767 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 231/592] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 232/592] power: supply: max17040: adjust thermal channel scaling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 233/592] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 234/592] drm/amd/display: disable DPP RCG before DPP CLK enable Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 235/592] drm/bridge: select DRM_KMS_HELPER for AUX_BRIDGE Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 236/592] drm/amdgpu/gfx6: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 237/592] media: imx-jpeg: Check decoding is ongoing for motion-jpeg Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 238/592] drm/rockchip: inno-hdmi: Fix video timing HSYNC/VSYNC polarity setting for rk3036 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 239/592] drm/dp: add option to disable zero sized address only transactions Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 240/592] sunrpc: update nextcheck time when adding new cache entries Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 241/592] drm/amdgpu: Fix API status offset for MES queue reset Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 242/592] drm/amd/display: DCN32 null data check Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 243/592] drm/xe: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 244/592] drm/bridge: analogix_dp: Add irq flag IRQF_NO_AUTOEN instead of calling disable_irq() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 245/592] workqueue: Fix race condition in wq->stats incrementation Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 246/592] drm/panel/sharp-ls043t1le01: Use _multi variants Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 247/592] exfat: fix double free in delayed_free Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 248/592] drm/bridge: anx7625: enable HPD interrupts Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 249/592] drm/panthor: Dont update MMU_INT_MASK in panthor_mmu_irq_handler() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 250/592] drm/bridge: anx7625: change the gpiod_set_value API Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 251/592] exfat: do not clear volume dirty flag during sync Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 252/592] drm/amdkfd: Drop workaround for GC v9.4.3 revID 0 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 253/592] drm/amdgpu/gfx11: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 254/592] media: nuvoton: npcm-video: Fix stuck due to no video signal error Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 255/592] drm/nouveau: fix hibernate on disabled GPU Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 256/592] media: i2c: imx334: Enable runtime PM before sub-device registration Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 257/592] drm/amd/display: Avoid divide by zero by initializing dummy pitch to 1 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 258/592] drm/nouveau/gsp: fix rm shutdown wait condition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 259/592] drm/msm/hdmi: add runtime PM calls to DDC transfer function Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 260/592] media: uapi: v4l: Fix V4L2_TYPE_IS_OUTPUT condition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 261/592] drm/amd/display: Add NULL pointer checks in dm_force_atomic_commit() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 262/592] media: verisilicon: Enable wide 4K in AV1 decoder Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 263/592] drm/amd/display: Skip to enable dsc if it has been off Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 264/592] drm/amdgpu: Add basic validation for RAS header Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 265/592] dlm: use SHUT_RDWR for SCTP shutdown Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 266/592] drm/msm/a6xx: Increase HFI response timeout Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 267/592] drm/amd/display: Do Not Consider DSC if Valid Config Not Found Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 268/592] media: i2c: imx334: Fix runtime PM handling in remove function Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 269/592] drm/amdgpu/gfx10: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 270/592] drm: panel-orientation-quirks: Add ZOTAC Gaming Zone Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 271/592] media: ccs-pll: Better validate VT PLL branch Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 272/592] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 273/592] drm/amd/display: fix zero value for APU watermark_c Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 274/592] drm/ttm/tests: fix incorrect assert in ttm_bo_unreserve_bulk() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 275/592] drm/amdgpu/gfx7: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 276/592] drm/xe: Use copy_from_user() instead of __copy_from_user() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 277/592] ext4: ext4: unify EXT4_EX_NOCACHE|NOFAIL flags in ext4_ext_remove_space() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 278/592] jfs: fix array-index-out-of-bounds read in add_missing_indices Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 279/592] media: ti: cal: Fix wrong goto on error path Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 280/592] drm/xe/vf: Fix guc_info debugfs for VFs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 6.15 281/592] drm/amd/display: Update IPS sequential_ono requirement checks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 282/592] drm/amd/display: Correct SSC enable detection for DCN351 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 283/592] drm/amd/display: Fix Vertical Interrupt definitions for dcn32, dcn401 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 284/592] media: cec: extron-da-hd-4k-plus: Fix Wformat-truncation Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 285/592] media: rkvdec: Initialize the m2m context before the controls Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 286/592] drm/amdgpu: fix MES GFX mask Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 287/592] drm/amdgpu: Disallow partition query during reset Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 288/592] sunrpc: fix race in cache cleanup causing stale nextcheck time Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 289/592] ext4: prevent stale extent cache entries caused by concurrent get es_cache Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 290/592] drm/amdgpu/gfx8: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 291/592] drm/amd/display: disable EASF narrow filter sharpening Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 292/592] drm/amdgpu/gfx9: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 293/592] drm/amd/display: Fix VUpdate offset calculations for dcn401 Greg Kroah-Hartman
2025-06-24  7:25   ` Jiri Slaby
2025-06-24 10:04     ` Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 294/592] jfs: Fix null-ptr-deref in jfs_ioc_trim Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 295/592] drm/amd/pm: Reset SMU v13.0.x custom settings Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 296/592] drm/amd/display: Correct prefetch calculation Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 297/592] drm/amd/display: Restructure DMI quirks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 298/592] media: renesas: vsp1: Fix media bus code setup on RWPF source pad Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 299/592] drm/msm/dpu: dont select single flush for active CTL blocks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 300/592] drm/amdkfd: Set SDMA_RLCx_IB_CNTL/SWITCH_INSIDE_IB Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 301/592] media: tc358743: ignore video while HPD is low Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 302/592] media: platform: exynos4-is: Add hardware sync wait to fimc_is_hw_change_mode() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 303/592] media: i2c: imx334: update mode_3840x2160_regs array Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 304/592] nios2: force update_mmu_cache on spurious tlb-permission--related pagefaults Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 305/592] media: rcar-vin: Fix stride setting for RAW8 formats Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 306/592] drm/rockchip: vop2: Make overlay layer select register configuration take effect by vsync Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 307/592] drm/amdgpu: Add indirect L1_TLB_CNTL reg programming for VFs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 308/592] drm/xe/uc: Remove static from loop variable Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 309/592] media: qcom: venus: Fix uninitialized variable warning Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 310/592] drm/panel: simple: Add POWERTIP PH128800T004-ZZA01 panel entry Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 311/592] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 312/592] net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 313/592] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 314/592] f2fs: use vmalloc instead of kvmalloc in .init_{,de}compress_ctx Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 315/592] bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 316/592] Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 317/592] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 318/592] wifi: mt76: mt7996: drop fragments with multicast or broadcast RA Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 319/592] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 320/592] Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 321/592] Bluetooth: btusb: Add RTL8851BE device 0x0bda:0xb850 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 322/592] Bluetooth: btmrvl_sdio: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 323/592] Bluetooth: btmtksdio: " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 324/592] wifi: mt76: mt7996: fix uninitialized symbol warning Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 325/592] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 326/592] wifi: mt76: mt7921: add 160 MHz AP for mt7922 device Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 327/592] wifi: mt76: mt7925: introduce thermal protection Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 328/592] wifi: mac80211: validate SCAN_FLAG_AP in scan request during MLO Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 329/592] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 330/592] libbpf/btf: Fix string handling to support multi-split BTF Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 331/592] cpufreq: scmi: Skip SCMI devices that arent used by the CPUs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 332/592] i2c: tegra: check msg length in SMBUS block read Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 333/592] i2c: pasemi: Enable the unjam machine Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 335/592] clk: qcom: gcc-x1e80100: Set FORCE MEM CORE for UFS clocks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 336/592] clk: qcom: gcc: Set FORCE_MEM_CORE_ON for gcc_ufs_axi_clk for 8650/8750 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 337/592] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 338/592] net: phy: mediatek: do not require syscon compatible for pio property Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 339/592] wifi: ath12k: fix macro definition HAL_RX_MSDU_PKT_LENGTH_GET Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 340/592] wifi: ath12k: fix a possible dead lock caused by ab->base_lock Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 6.15 341/592] wifi: ath11k: Fix QMI memory reuse logic Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 342/592] iommu/amd: Allow matching ACPI HID devices without matching UIDs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 343/592] wifi: rtw89: leave idle mode when setting WEP encryption for AP mode Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 344/592] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 345/592] tcp: remove zero TCP TS samples for autotuning Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 346/592] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 347/592] tcp: add receive queue awareness in tcp_rcv_space_adjust() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 348/592] x86/sgx: Prevent attempts to reclaim poisoned pages Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 349/592] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 350/592] net: page_pool: Dont recycle into cache " Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 351/592] xfrm: validate assignment of maximal possible SEQ number Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 352/592] net: phy: marvell-88q2xxx: Enable temperature measurement in probe again Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 353/592] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 354/592] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 355/592] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 356/592] bpf: Pass the same orig_call value to trampoline functions Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 357/592] net: stmmac: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 358/592] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 359/592] libbpf: Check bpf_map_skeleton link for NULL Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 360/592] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 361/592] net/mlx5: HWS, fix counting of rules in the matcher Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 362/592] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 363/592] net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 364/592] wifi: rtw88: rtw8822bu VID/PID for BUFFALO WI-U2-866DM Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 365/592] wifi: iwlwifi: mld: call thermal exit without wiphy lock held Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 366/592] wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 367/592] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 368/592] bpftool: Fix cgroup command to only show cgroup bpf programs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 369/592] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 370/592] hid-asus: check ROG Ally MCU version and warn Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 371/592] ipmi:ssif: Fix a shutdown race Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 372/592] rtla: Define __NR_sched_setattr for LoongArch Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 373/592] wifi: iwlwifi: mvm: fix beacon CCK flag Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 374/592] wifi: iwlwifi: dvm: pair transport op-mode enter/leave Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 375/592] wifi: iwlwifi: mld: check for NULL before referencing a pointer Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 376/592] f2fs: fix to bail out in get_new_segment() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 377/592] tracing: Only return an adjusted address if it matches the kernel address Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 378/592] netfilter: nft_set_pipapo: clamp maximum map bucket size to INT_MAX Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 379/592] libbpf: Add identical pointer detection to btf_dedup_is_equiv() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 380/592] scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 381/592] scsi: smartpqi: Add new PCI IDs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 382/592] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 383/592] wifi: iwlwifi: pcie: make sure to lock rxq->read Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 384/592] wifi: rtw89: 8922a: fix TX fail with wrong VCO setting Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 385/592] wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 386/592] netdevsim: Mark NAPI ID on skb in nsim_rcv Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 387/592] net/mlx5: HWS, Fix IP version decision Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 388/592] bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 389/592] wifi: mac80211: VLAN traffic in multicast path Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 390/592] Revert "mac80211: Dynamically set CoDel parameters per station" Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 391/592] wifi: iwlwifi: Add missing MODULE_FIRMWARE for Qu-c0-jf-b0 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 392/592] net: bridge: mcast: update multicast contex when vlan state is changed Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 393/592] net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 394/592] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 395/592] bnxt_en: Remove unused field "ref_count" in struct bnxt_ulp Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 396/592] vxlan: Add RCU read-side critical sections in the Tx path Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 397/592] wifi: ath12k: correctly handle mcast packets for clients Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 398/592] wifi: ath12k: using msdu end descriptor to check for rx multicast packets Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 399/592] net: ethernet: ti: am65-cpsw: handle -EPROBE_DEFER Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 400/592] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 6.15 401/592] wifi: ath12k: make assoc link associate first Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 402/592] isofs: fix Y2038 and Y2156 issues in Rock Ridge TF entry Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 403/592] pinctrl: mcp23s08: Reset all pins to input at probe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 404/592] wifi: ath12k: fix failed to set mhi state error during reboot with hardware grouping Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 405/592] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 406/592] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 407/592] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 408/592] ixgbe: Fix unreachable retry logic in combined and byte I2C write functions Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 409/592] RDMA/hns: initialize db in update_srq_db() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 410/592] ice: fix check for existing switch rule Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 411/592] usbnet: asix AX88772: leave the carrier control to phylink Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 412/592] f2fs: fix to set atomic write status more clear Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 413/592] bpf, sockmap: Fix data lost during EAGAIN retries Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 414/592] net: ethernet: cortina: Use TOE/TSO on all TCP Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 415/592] octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 416/592] wifi: rtw88: Set AMPDU factor to hardware for RTL8814A Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 417/592] wifi: ath12k: Fix incorrect rates sent to firmware Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 418/592] wifi: ath12k: Fix the enabling of REO queue lookup table feature Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 419/592] wifi: ath12k: Fix memory leak due to multiple rx_stats allocation Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 420/592] wifi: ath11k: determine PM policy based on machine model Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 421/592] wifi: ath12k: fix link valid field initialization in the monitor Rx Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 422/592] wifi: ath12k: fix incorrect CE addresses Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 423/592] wifi: ath12k: Pass correct values of center freq1 and center freq2 for 160 MHz Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 424/592] net/mlx5: HWS, Harden IP version definer checks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 425/592] fbcon: Make sure modelist not set on unregistered console Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 426/592] wifi: iwlwifi: mld: Work around Clang loop unrolling bug Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 427/592] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 428/592] watchdog: stm32: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 429/592] i3c: mipi-i3c-hci: Fix handling status of i3c_hci_irq_handler() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 430/592] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 431/592] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 432/592] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 433/592] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 434/592] fs/xattr.c: fix simple_xattr_list() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 435/592] platform/x86/amd: pmc: Clear metrics table at start of cycle Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 436/592] platform/x86/amd: pmf: Use device managed allocations Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 437/592] platform/x86/amd: pmf: Prevent amd_pmf_tee_deinit() from running twice Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 438/592] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 439/592] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 440/592] ovl: fix debug print in case of mkdir error Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 441/592] powerpc/vdso: Fix build of VDSO32 with pcrel Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 442/592] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 443/592] fs: drop assert in file_seek_cur_needs_f_lock Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 444/592] io_uring/kbuf: dont truncate end buffer for multiple buffer peeks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 445/592] io_uring/rsrc: validate buffer count with offset for cloning Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 446/592] io_uring: fix task leak issue in io_wq_create() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 447/592] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 448/592] platform/loongarch: laptop: Get brightness setting from EC on probe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 449/592] platform/loongarch: laptop: Unregister generic_sub_drivers on exit Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 450/592] platform/loongarch: laptop: Add backlight power control support Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 451/592] LoongArch: vDSO: Correctly use asm parameters in syscall wrappers Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 452/592] LoongArch: Avoid using $r0/$r1 as "mask" for csrxchg Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 453/592] LoongArch: Fix panic caused by NULL-PMD in huge_pte_offset() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 454/592] firmware: cs_dsp: Fix OOB memory read access in KUnit test (ctl cache) Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 455/592] firmware: cs_dsp: Fix OOB memory read access in KUnit test (wmfw info) Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 456/592] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:06 ` Greg Kroah-Hartman [this message]
2025-06-23 13:06 ` [PATCH 6.15 458/592] cifs: deal with the channel loading lag while picking channels Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 459/592] cifs: serialize other channels when query server interfaces is pending Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 460/592] cifs: do not disable interface polling on failure Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 6.15 461/592] tracing: Fix regression of filter waiting a long time on RCU synchronization Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 462/592] smb: improve directory cache reuse for readdir operations Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 463/592] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 464/592] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 465/592] nvme: always punt polled uring_cmd end_io work to task_work Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 466/592] net_sched: sch_sfq: reject invalid perturb period Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 467/592] net: clear the dst when changing skb protocol Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 468/592] mm: close theoretical race where stale TLB entries could linger Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 469/592] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 470/592] mm/vma: reset VMA iterator on commit_merge() OOM failure Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 471/592] x86/mm/pat: dont collapse pages without PSE set Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 472/592] x86/Kconfig: only enable ROX cache in execmem when STRICT_MODULE_RWX is set Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 473/592] x86/its: move its_pages array to struct mod_arch_specific Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 474/592] x86/its: explicitly manage permissions for ITS pages Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 475/592] Revert "mm/execmem: Unify early execmem_cache behaviour" Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 476/592] x86/virt/tdx: Avoid indirect calls to TDX assembly functions Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 477/592] selftests/x86: Add a test to detect infinite SIGTRAP handler loop Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 478/592] ksmbd: fix null pointer dereference in destroy_previous_session Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 479/592] fgraph: Do not enable function_graph tracer when setting funcgraph-args Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 480/592] platform/x86: ideapad-laptop: use usleep_range() for EC polling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 481/592] Revert "platform/x86: alienware-wmi-wmax: Add G-Mode support to Alienware m16 R1" Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 482/592] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 483/592] platform/x86/intel-uncore-freq: Fail module load when plat_info is NULL Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 484/592] sched_ext, sched/core: Dont call scx_group_set_weight() prematurely from sched_create_group() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 485/592] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 486/592] drm/nouveau/nvkm: factor out current GSP RPC command policies Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 487/592] drm/nouveau/nvkm: introduce new GSP reply policy NVKM_GSP_RPC_REPLY_POLL Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 488/592] gpio: loongson-64bit: Correct Loongson-7A2000 ACPI GPIO access mode Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 489/592] arm64: Restrict pagetable teardown to avoid false warning Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 490/592] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 491/592] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 492/592] ALSA: hda/realtek - Add mute LED support for HP Victus 16-s1xxx and HP Victus 15-fa1xxx Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 493/592] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 494/592] ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X513EA Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 495/592] ALSA: hda/realtek: Add quirk for Asus GU605C Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 496/592] drm/appletbdrm: Make appletbdrm depend on X86 Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 497/592] mm/madvise: handle madvise_lock() failure during race unwinding Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 498/592] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 499/592] nfsd: use threads array as-is in netlink interface Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 500/592] sunrpc: handle SVC_GARBAGE during svc auth processing as auth error Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 501/592] io_uring/net: always use current transfer count for buffer put Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 502/592] drm/xe/svm: Fix regression disallowing 64K SVM migration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 503/592] drm/v3d: Avoid NULL pointer dereference in `v3d_job_update_stats()` Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 504/592] smb: fix secondary channel creation issue with kerberos by populating hostname when adding channels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 505/592] drm/msm/dp: Disable wide bus support for SDM845 Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 506/592] drm/msm/disp: Correct porch timing " Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 507/592] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 508/592] drm/msm: Fix CP_RESET_CONTEXT_STATE bitfield names Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 509/592] drm/msm/a7xx: Call CP_RESET_CONTEXT_STATE Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 510/592] drm/ssd130x: fix ssd132x_clear_screen() columns Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 511/592] ionic: Prevent driver/fw getting out of sync on devcmd(s) Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 512/592] drm/nouveau/gsp: split rpc handling out on its own Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 513/592] drm/nouveau: fix a use-after-free in r535_gsp_rpc_push() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 514/592] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 515/592] rust: devres: fix race in Devres::drop() Greg Kroah-Hartman
2025-06-23 23:14   ` Benno Lossin
2025-06-24  7:24     ` Thorsten Leemhuis
2025-06-24  8:07       ` Benno Lossin
2025-06-24  8:24         ` Thorsten Leemhuis
2025-06-24  9:03           ` Greg Kroah-Hartman
2025-06-24 10:14             ` Danilo Krummrich
2025-06-24 10:19               ` Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 516/592] rust: devres: implement Devres::access() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 517/592] rust: devres: do not dereference to the internal Revocable Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 518/592] drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 519/592] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 520/592] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 6.15 521/592] hwmon: (ltc4282) avoid repeated register write Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 522/592] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 523/592] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 524/592] io_uring/sqpoll: dont put task_struct on tctx setup failure Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 525/592] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 526/592] ice: fix eswitch code memory leak in reset scenario Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 527/592] e1000e: set fixed clock frequency indication for Nahum 11 and Nahum 13 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 528/592] workqueue: Initialize wq_isolated_cpumask in workqueue_init_early() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 529/592] ksmbd: add free_transport ops in ksmbd connection Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 530/592] net: ti: icssg-prueth: Fix packet handling for XDP_TX Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 531/592] net: netmem: fix skb_ensure_writable with unreadable skbs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 532/592] bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 533/592] bnxt_en: Add a helper function to configure MRU and RSS Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 534/592] bnxt_en: Update MRU and RSS table of RSS contexts on queue reset Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 535/592] ptp: fix breakage after ptp_vclock_in_use() rework Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 536/592] ptp: allow reading of currently dialed frequency to succeed on free-running clocks Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 537/592] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 538/592] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 539/592] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 540/592] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 541/592] io_uring: fix potential page leak in io_sqe_buffer_register() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 542/592] drm/amdkfd: move SDMA queue reset capability check to node_show Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 543/592] Octeontx2-pf: Fix Backpresure configuration Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 544/592] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 545/592] tcp: fix passive TFO socket having invalid NAPI ID Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 546/592] eth: fbnic: avoid double free when failing to DMA-map FW msg Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 547/592] net: lan743x: fix potential out-of-bounds write in lan743x_ptp_io_event_clock_get() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 548/592] ublk: santizize the arguments from userspace when adding a device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 549/592] drm/xe/bmg: Update Wa_16023588340 Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 550/592] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 551/592] mlxbf_gige: return EPROBE_DEFER if PHY IRQ is not available Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 552/592] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 553/592] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 554/592] tools: ynl: parse extack for sub-messages Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 555/592] tools: ynl: fix mixing ops and notifications on one socket Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 556/592] KVM: arm64: VHE: Synchronize restore of host debug registers Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 557/592] x86/mm: Disable INVLPGB when PTI is enabled Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 558/592] EDAC/amd64: Correct number of UMCs for family 19h models 70h-7fh Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 559/592] dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 560/592] perf/x86/intel: Fix crash in icl_update_topdown_event() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 561/592] smb: Log an error when close_all_cached_dirs fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 562/592] i2c: k1: check for transfer error Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 563/592] smb: client: fix first command failure during re-negotiation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 564/592] smb: client: fix max_sge overflow in smb_extract_folioq_to_rdma() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 565/592] EDAC/igen6: Fix NULL pointer dereference Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 566/592] x86/its: Fix an ifdef typo in its_alloc() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 567/592] rust: devres: fix doctest build under `!CONFIG_PCI` Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 568/592] dm-table: check BLK_FEAT_ATOMIC_WRITES inside limits_lock Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 569/592] tracing: Do not free "head" on error path of filter_free_subsystem_filters() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 570/592] Documentation: nouveau: Update GSP message queue kernel-doc reference Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 571/592] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 572/592] perf: Fix cgroup state vs ERROR Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 573/592] perf/core: Fix WARN in perf_cgroup_switch() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 574/592] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 575/592] scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 576/592] RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 577/592] RISC-V: KVM: Dont treat SBI HFENCE calls as NOPs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 578/592] gpio: pca953x: fix wrong error probe return value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 579/592] perf evsel: Missed close() when probing hybrid core PMUs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 580/592] perf test: Directory file descriptor leak Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 6.15 581/592] x86/mm: Fix early boot use of INVPLGB Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 582/592] mtd: spinand: Use more specific naming for the (single) read from cache ops Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 583/592] mtd: spinand: Use more specific naming for the (dual output) " Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 584/592] mtd: spinand: Use more specific naming for the (dual IO) " Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 585/592] mtd: spinand: Use more specific naming for the (quad output) " Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 586/592] mtd: spinand: Use more specific naming for the (quad IO) " Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 587/592] mtd: spinand: winbond: Prevent unsupported frequencies on dual/quad I/O variants Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 588/592] gpio: mlxbf3: only get IRQ for device instance 0 Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 589/592] PCI: pciehp: Ignore belated Presence Detect Changed caused by DPC Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 590/592] cifs: Remove duplicate fattr->cf_dtype assignment from wsl_to_fattr() function Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 591/592] erofs: refuse crafted out-of-file-range encoded extents Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 6.15 592/592] erofs: remove a superfluous check for " Greg Kroah-Hartman
2025-06-23 13:50 ` [PATCH 6.15 000/592] 6.15.4-rc1 review Christian Heusel
2025-06-23 23:15   ` Benno Lossin
2025-06-24 10:04   ` Greg Kroah-Hartman
2025-06-23 15:17 ` Ronald Warsow
2025-06-23 20:11 ` Achill Gilgenast
2025-06-23 20:45 ` Peter Schneider
2025-06-23 20:56 ` Naresh Kamboju
2025-06-23 22:39 ` Florian Fainelli
2025-06-24  8:07 ` Ron Economos
2025-06-24  8:43 ` Luna Jernberg
2025-06-24 11:48 ` Mark Brown
2025-06-24 11:57 ` Takeshi Ogasawara

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=20250623130711.301302022@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=chengzhihao1@huawei.com \
    --cc=patches@lists.linux.dev \
    --cc=pchelkin@ispras.ru \
    --cc=richard@nod.at \
    --cc=stable@vger.kernel.org \
    /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