From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jens Axboe <axboe@kernel.dk>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.15 153/263] io_uring/net: mark iov as dynamically allocated even for single segments
Date: Thu, 3 Jul 2025 16:41:13 +0200 [thread overview]
Message-ID: <20250703144010.498828697@linuxfoundation.org> (raw)
In-Reply-To: <20250703144004.276210867@linuxfoundation.org>
6.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jens Axboe <axboe@kernel.dk>
[ Upstream commit 9a709b7e98e6fa51600b5f2d24c5068efa6d39de ]
A bigger array of vecs could've been allocated, but
io_ring_buffers_peek() still decided to cap the mapped range depending
on how much data was available. Hence don't rely on the segment count
to know if the request should be marked as needing cleanup, always
check upfront if the iov array is different than the fast_iov array.
Fixes: 26ec15e4b0c1 ("io_uring/kbuf: don't truncate end buffer for multiple buffer peeks")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
io_uring/net.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/io_uring/net.c b/io_uring/net.c
index 3feceb2b5b97e..adfdcea01e39b 100644
--- a/io_uring/net.c
+++ b/io_uring/net.c
@@ -1084,6 +1084,12 @@ static int io_recv_buf_select(struct io_kiocb *req, struct io_async_msghdr *kmsg
if (unlikely(ret < 0))
return ret;
+ if (arg.iovs != &kmsg->fast_iov && arg.iovs != kmsg->vec.iovec) {
+ kmsg->vec.nr = ret;
+ kmsg->vec.iovec = arg.iovs;
+ req->flags |= REQ_F_NEED_CLEANUP;
+ }
+
/* special case 1 vec, can be a fast path */
if (ret == 1) {
sr->buf = arg.iovs[0].iov_base;
@@ -1092,11 +1098,6 @@ static int io_recv_buf_select(struct io_kiocb *req, struct io_async_msghdr *kmsg
}
iov_iter_init(&kmsg->msg.msg_iter, ITER_DEST, arg.iovs, ret,
arg.out_len);
- if (arg.iovs != &kmsg->fast_iov && arg.iovs != kmsg->vec.iovec) {
- kmsg->vec.nr = ret;
- kmsg->vec.iovec = arg.iovs;
- req->flags |= REQ_F_NEED_CLEANUP;
- }
} else {
void __user *buf;
--
2.39.5
next prev parent reply other threads:[~2025-07-03 15:03 UTC|newest]
Thread overview: 286+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-03 14:38 [PATCH 6.15 000/263] 6.15.5-rc1 review Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 001/263] cifs: Correctly set SMB1 SessionKey field in Session Setup Request Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 002/263] cifs: Fix cifs_query_path_info() for Windows NT servers Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 003/263] cifs: Fix encoding of SMB1 Session Setup NTLMSSP Request in non-UNICODE mode Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 004/263] NFSv4: Always set NLINK even if the server doesnt support it Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 005/263] NFSv4.2: fix listxattr to return selinux security label Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 006/263] NFSv4.2: fix setattr caching of TIME_[MODIFY|ACCESS]_SET when timestamps are delegated Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 007/263] mailbox: Not protect module_put with spin_lock_irqsave Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 008/263] mfd: max77541: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 009/263] mfd: max14577: " Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 010/263] mfd: max77705: " Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 011/263] mfd: 88pm886: " Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 012/263] mfd: sprd-sc27xx: " Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 013/263] sunrpc: dont immediately retransmit on seqno miss Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 014/263] hwmon: (isl28022) Fix current reading calculation Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 015/263] dm vdo indexer: dont read request structure after enqueuing Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 016/263] leds: multicolor: Fix intensity setting while SW blinking Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 017/263] fuse: fix race between concurrent setattrs from multiple nodes Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 018/263] cxl/region: Add a dev_err() on missing target list entries Greg Kroah-Hartman
2025-07-03 14:38 ` [PATCH 6.15 019/263] cxl: core/region - ignore interleave granularity when ways=1 Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 020/263] NFSv4: xattr handlers should check for absent nfs filehandles Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 021/263] hwmon: (pmbus/max34440) Fix support for max34451 Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 022/263] ksmbd: allow a filename to contain special characters on SMB3.1.1 posix extension Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 023/263] ksmbd: provide zero as a unique ID to the Mac client Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 024/263] rust: module: place cleanup_module() in .exit.text section Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 025/263] rust: arm: fix unknown (to Clang) argument -mno-fdpic Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 026/263] Revert "iommu/amd: Prevent binding other PCI drivers to IOMMU PCI devices" Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 027/263] dmaengine: idxd: Check availability of workqueue allocated by idxd wq driver before using Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 028/263] dmaengine: xilinx_dma: Set dma_device directions Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 029/263] PCI: dwc: Make link training more robust by setting PORT_LOGIC_LINK_WIDTH to one lane Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 030/263] PCI: apple: Fix missing OF node reference in apple_pcie_setup_port Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 031/263] PCI: imx6: Add workaround for errata ERR051624 Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 032/263] wifi: iwlwifi: mld: Move regulatory domain initialization Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 033/263] nvme-tcp: fix I/O stalls on congested sockets Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 034/263] nvme-tcp: sanitize request list handling Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 035/263] md/md-bitmap: fix dm-raid max_write_behind setting Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 036/263] amd/amdkfd: fix a kfd_process ref leak Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 037/263] drm/amdgpu/vcn5.0.1: read back register after written Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 038/263] drm/amdgpu/vcn4: " Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 039/263] drm/amdgpu/vcn3: " Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 040/263] drm/amdgpu/vcn2.5: " Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 041/263] bcache: fix NULL pointer in cache_set_flush() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 042/263] drm/amdgpu: seq64 memory unmap uses uninterruptible lock Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 043/263] drm/scheduler: signal scheduled fence when kill job Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 044/263] iio: pressure: zpa2326: Use aligned_s64 for the timestamp Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 045/263] bus: mhi: host: pci_generic: Add Telit FN920C04 modem support Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 046/263] um: Add cmpxchg8b_emu and checksum functions to asm-prototypes.h Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 047/263] um: use proper care when taking mmap lock during segfault Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 048/263] 8250: microchip: pci1xxxx: Add PCIe Hot reset disable support for Rev C0 and later devices Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 049/263] coresight: Only check bottom two claim bits Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 050/263] usb: dwc2: also exit clock_gating when stopping udc while suspended Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 051/263] iio: adc: ad_sigma_delta: Fix use of uninitialized status_pos Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 052/263] iio: dac: adi-axi-dac: add cntrl chan check Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 053/263] iio: light: al3000a: Fix an error handling path in al3000a_probe() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 054/263] iio: adc: ad7606_spi: check error in ad7606B_sw_mode_config() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 055/263] iio: hid-sensor-prox: Add support for 16-bit report size Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 056/263] misc: tps6594-pfsm: Add NULL pointer check in tps6594_pfsm_probe() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 057/263] usb: potential integer overflow in usbg_make_tpg() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 058/263] tty: serial: uartlite: register uart driver in init Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 059/263] usb: common: usb-conn-gpio: use a unique name for usb connector device Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 060/263] usb: Add checks for snprintf() calls in usb_alloc_dev() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 061/263] usb: cdc-wdm: avoid setting WDM_READ for ZLP-s Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 062/263] usb: gadget: f_hid: wake up readers on disable/unbind Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 063/263] usb: typec: displayport: Receive DP Status Update NAK request exit dp altmode Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 064/263] usb: typec: tcpci: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 065/263] usb: typec: tipd: " Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 066/263] usb: typec: mux: do not return on EOPNOTSUPP in {mux, switch}_set Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 067/263] riscv: add a data fence for CMODX in the kernel mode Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 068/263] s390/mm: Fix in_atomic() handling in do_secure_storage_access() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 069/263] riscv: misaligned: declare misaligned_access_speed under CONFIG_RISCV_MISALIGNED Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 070/263] ALSA: hda: Ignore unsol events for cards being shut down Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 071/263] ALSA: hda: Add new pci id for AMD GPU display HD audio controller Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 072/263] ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 073/263] ASoC: rt1320: fix speaker noise when volume bar is 100% Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 074/263] ceph: fix possible integer overflow in ceph_zero_objects() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 075/263] scsi: ufs: core: Dont perform UFS clkscaling during host async scan Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 076/263] riscv: save the SR_SUM status over switches Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 077/263] ovl: Check for NULL d_inode() in ovl_dentry_upper() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 078/263] btrfs: fix race between async reclaim worker and close_ctree() Greg Kroah-Hartman
2025-07-03 14:39 ` [PATCH 6.15 079/263] btrfs: handle csum tree error with rescue=ibadroots correctly Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 080/263] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 081/263] Revert "drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1" Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 082/263] btrfs: use unsigned types for constants defined as bit shifts Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 083/263] btrfs: fix qgroup reservation leak on failure to allocate ordered extent Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 084/263] media: uvcvideo: Keep streaming state in the file handle Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 085/263] media: uvcvideo: Create uvc_pm_(get|put) functions Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 086/263] media: uvcvideo: Increase/decrease the PM counter per IOCTL Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 087/263] media: uvcvideo: Rollback non processed entities on error Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 088/263] ASoC: codec: wcd9335: Convert to GPIO descriptors Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 089/263] ASoC: codecs: wcd9335: Fix missing free of regulator supplies Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 090/263] f2fs: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 091/263] io_uring/zcrx: move io_zcrx_iov_page Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 092/263] io_uring/zcrx: improve area validation Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 093/263] io_uring/zcrx: split out memory holders from area Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 094/263] io_uring/zcrx: fix area release on registration failure Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 095/263] drm/i915/display: Add check for alloc_ordered_workqueue() and alloc_workqueue() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 096/263] af_unix: Dont leave consecutive consumed OOB skbs Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 097/263] i2c: omap: Fix an error handling path in omap_i2c_probe() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 098/263] i2c: imx: fix emulated smbus block read Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 099/263] i2c: tiny-usb: disable zero-length read messages Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 100/263] i2c: robotfuzz-osif: " Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 101/263] LoongArch: KVM: Avoid overflow with array index Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 102/263] LoongArch: KVM: Check validity of "num_cpu" from user space Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 103/263] LoongArch: KVM: Disable updating of "num_cpu" and "feature" Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 104/263] LoongArch: KVM: Add address alignment check for IOCSR emulation Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 105/263] LoongArch: KVM: Fix interrupt route update with EIOINTC Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 106/263] LoongArch: KVM: Check interrupt route from physical CPU Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 107/263] fuse: fix runtime warning on truncate_folio_batch_exceptionals() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 108/263] scripts/gdb: fix dentry_name() lookup Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 109/263] ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 110/263] smb: client: remove \t from TP_printk statements Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 111/263] mm/damon/sysfs-schemes: free old damon_sysfs_scheme_filter->memcg_path on write Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 112/263] smb: client: fix regression with native SMB symlinks Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 113/263] riscv: vector: Fix context save/restore with xtheadvector Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 114/263] ASoC: amd: yc: Add DMI quirk for Lenovo IdeaPad Slim 5 15 Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 115/263] riscv: export boot_cpu_hartid Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 116/263] s390/pkey: Prevent overflow in size calculation for memdup_user() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 117/263] io_uring/rsrc: fix folio unpinning Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 118/263] io_uring/rsrc: dont rely on user vaddr alignment Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 119/263] io_uring: dont assume uaddr alignment in io_vec_fill_bvec Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 120/263] fs/proc/task_mmu: fix PAGE_IS_PFNZERO detection for the huge zero folio Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 121/263] lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 122/263] Revert "riscv: Define TASK_SIZE_MAX for __access_ok()" Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 123/263] Revert "riscv: misaligned: fix sleeping function called during misaligned access handling" Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 124/263] drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 125/263] drm/amd/display: Add sanity checks for drm_edid_raw() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 126/263] drm/amdgpu/mes: add compatibility checks for set_hw_resource_1 Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 127/263] drm/xe/display: Add check for alloc_ordered_workqueue() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 128/263] drm/i915/snps_hdmi_pll: Fix 64-bit divisor truncation by using div64_u64 Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 129/263] drm/xe: Move DSB l2 flush to a more sensible place Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 130/263] drm/xe: move DPT " Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 131/263] HID: Intel-thc-hid: Intel-quicki2c: Enhance QuickI2C reset flow Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 132/263] HID: wacom: fix crash in wacom_aes_battery_handler() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 133/263] cxl/ras: Fix CPER handler device confusion Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 134/263] scsi: fnic: Fix missing DMA mapping error in fnic_send_frame() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 135/263] atm: clip: prevent NULL deref in clip_push() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 136/263] ASoC: amd: ps: fix for soundwire failures during hibernation exit sequence Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 137/263] Bluetooth: hci_core: Fix use-after-free in vhci_flush() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 138/263] ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3() Greg Kroah-Hartman
2025-07-03 14:40 ` [PATCH 6.15 139/263] attach_recursive_mnt(): do not lock the covering tree when sliding something under it Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 140/263] libbpf: Fix null pointer dereference in btf_dump__free on allocation failure Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 141/263] net: netpoll: Initialize UDP checksum field before checksumming Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 142/263] ethernet: ionic: Fix DMA mapping tests Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 143/263] bridge: mcast: Fix use-after-free during router port configuration Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 144/263] wifi: mac80211: fix beacon interval calculation overflow Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 145/263] af_unix: Dont set -ECONNRESET for consumed OOB skb Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 146/263] wifi: mac80211: Add link iteration macro for link data Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 147/263] wifi: mac80211: Create separate links for VLAN interfaces Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 148/263] wifi: mac80211: finish link init before RCU publish Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 149/263] userns and mnt_idmap leak in open_tree_attr(2) Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 150/263] vsock/uapi: fix linux/vm_sockets.h userspace compilation errors Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 151/263] bnxt: properly flush XDP redirect lists Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 152/263] um: ubd: Add missing error check in start_io_thread() Greg Kroah-Hartman
2025-07-03 14:41 ` Greg Kroah-Hartman [this message]
2025-07-03 14:41 ` [PATCH 6.15 154/263] libbpf: Fix possible use-after-free for externs Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 155/263] net: enetc: Correct endianness handling in _enetc_rd_reg64 Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 156/263] netlink: specs: tc: replace underscores with dashes in names Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 157/263] atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister() Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 158/263] ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X507UAR Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 159/263] net: selftests: fix TCP packet checksum Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 160/263] nvme: refactor the atomic write unit detection Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 161/263] nvme: fix atomic write size validation Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 162/263] riscv: fix runtime constant support for nommu kernels Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 163/263] drm: writeback: Fix drm_writeback_connector_cleanup signature Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 164/263] drm/amd: Adjust output for discovery error handling Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 165/263] drm/i915: fix build error some more Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 166/263] drm/bridge: ti-sn65dsi86: make use of debugfs_init callback Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 167/263] drm/bridge: ti-sn65dsi86: Add HPD for DisplayPort connector type Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 168/263] drm/xe/guc: Explicitly exit CT safe mode on unwind Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 169/263] drm/xe: Process deferred GGTT node removals on device unwind Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 170/263] smb: client: fix potential deadlock when reconnecting channels Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 171/263] EDAC/amd64: Fix size calculation for Non-Power-of-Two DIMMs Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 172/263] x86/traps: Initialize DR6 by writing its architectural reset value Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 173/263] staging: rtl8723bs: Avoid memset() in aes_cipher() and aes_decipher() Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 174/263] dt-bindings: serial: 8250: Make clocks and clock-frequency exclusive Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 175/263] serial: core: restore of_node information in sysfs Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 176/263] serial: imx: Restore original RXTL for console to fix data loss Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 177/263] Bluetooth: L2CAP: Fix L2CAP MTU negotiation Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 178/263] dm-raid: fix variable in journal device check Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 179/263] bcache: remove unnecessary select MIN_HEAP Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 180/263] btrfs: fix a race between renames and directory logging Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 181/263] btrfs: update superblocks device bytes_used when dropping chunk Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 182/263] btrfs: fix invalid inode pointer dereferences during log replay Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 183/263] Revert "bcache: update min_heap_callbacks to use default builtin swap" Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 184/263] Revert "bcache: remove heap-related macros and switch to generic min_heap" Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 185/263] selinux: change security_compute_sid to return the ssid or tsid on match Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 186/263] spi: spi-cadence-quadspi: Fix pm runtime unbalance Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 187/263] net: libwx: fix the creation of page_pool Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 188/263] maple_tree: fix MA_STATE_PREALLOC flag in mas_preallocate() Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 189/263] mm: userfaultfd: fix race of userfaultfd_move and swap cache Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 190/263] mm/shmem, swap: fix softlockup with mTHP swapin Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 191/263] mm/gup: revert "mm: gup: fix infinite loop within __get_longterm_locked" Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 192/263] f2fs: fix to zero post-eof page Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 193/263] HID: appletb-kbd: fix "appletb_backlight" backlight device reference counting Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 194/263] HID: lenovo: Restrict F7/9/11 mode to compact keyboards only Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 195/263] HID: wacom: fix memory leak on kobject creation failure Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 196/263] HID: wacom: fix memory leak on sysfs attribute " Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 197/263] HID: wacom: fix kobject reference count leak Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 198/263] scsi: megaraid_sas: Fix invalid node index Greg Kroah-Hartman
2025-07-03 14:41 ` [PATCH 6.15 199/263] scsi: ufs: core: Fix clk scaling to be conditional in reset and restore Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 200/263] scsi: fnic: Fix crash in fnic_wq_cmpl_handler when FDMI times out Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 201/263] scsi: fnic: Turn off FDMI ACTIVE flags on link down Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 202/263] drm/ast: Fix comment on modeset lock Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 203/263] drm/cirrus-qemu: Fix pitch programming Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 204/263] drm/etnaviv: Protect the schedulers pending list with its lock Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 205/263] drm/panel: simple: Tianma TM070JDHG34-00: add delays Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 206/263] drm/simpledrm: Do not upcast in release helpers Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 207/263] drm/tegra: Assign plane type before registration Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 208/263] drm/tegra: Fix a possible null pointer dereference Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 209/263] drm/udl: Unregister device before cleaning up on disconnect Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 210/263] drm/msm/gpu: Fix crash when throttling GPU immediately during boot Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 211/263] drm/amdkfd: Fix race in GWS queue scheduling Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 212/263] drm/i915/ptl: Use everywhere the correct DDI port clock select mask Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 213/263] drm/i915/dp_mst: Work around Thunderbolt sink disconnect after SINK_COUNT_ESI read Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 214/263] drm/bridge: cdns-dsi: Fix the clock variable for mode_valid() Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 215/263] drm/bridge: cdns-dsi: Fix phy de-init and flag it so Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 216/263] drm/bridge: cdns-dsi: Fix connecting to next bridge Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 217/263] drm/bridge: cdns-dsi: Check return value when getting default PHY config Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 218/263] drm/bridge: cdns-dsi: Wait for Clk and Data Lanes to be ready Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 219/263] drm/amd/display: Add null pointer check for get_first_active_display() Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 220/263] drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 221/263] drm/amdgpu: disable workload profile switching when OD is enabled Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 222/263] drm/amd/display: Correct non-OLED pre_T11_delay Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 223/263] drm/xe/vm: move rebind_work init earlier Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 224/263] drm/xe/sched: stop re-submitting signalled jobs Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 225/263] drm/xe/guc_submit: add back fix Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 226/263] drm/amd/display: Fix RMCM programming seq errors Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 227/263] drm/amdgpu: VCN v5_0_1 to prevent FW checking RB during DPG pause Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 228/263] drm/amdgpu: Add kicker device detection Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 229/263] drm/amd/display: Check dce_hwseq before dereferencing it Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 230/263] drm/xe: Fix memset on iomem Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 231/263] drm/xe: Fix taking invalid lock on wedge Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 232/263] drm/xe: Fix early wedge on GuC load failure Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 233/263] drm/i915/dsi: Fix off by one in BXT_MIPI_TRANS_VTOTAL Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 234/263] drm/amdgpu: Fix SDMA UTC_L1 handling during start/stop sequences Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 235/263] drm/amdgpu: switch job hw_fence to amdgpu_fence Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 236/263] drm/amdgpu: add kicker fws loading for gfx11/smu13/psp13 Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 237/263] drm/amd/display: Add more checks for DSC / HUBP ONO guarantees Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 238/263] drm/amd/display: Add dc cap for dp tunneling Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 239/263] drm/amd/display: Fix mpv playback corruption on weston Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 240/263] arm64: dts: qcom: Commonize X1 CRD DTSI Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 241/263] arm64: dts: qcom: x1e80100-crd: mark l12b and l15b always-on Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 242/263] arm64: dts: qcom: x1e78100-t14s: " Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 243/263] arm64: dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 244/263] crypto: powerpc/poly1305 - add depends on BROKEN for now Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 245/263] drm/amdgpu/mes: add missing locking in helper functions Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 246/263] arm64: dts: qcom: x1e78100-t14s: fix missing HID supplies Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 247/263] sched_ext: Make scx_group_set_weight() always update tg->scx.weight Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 248/263] drm/amd/display: Add early 8b/10b channel equalization test pattern sequence Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 249/263] drm/amd/display: Get LTTPR IEEE OUI/Device ID From Closest LTTPR To Host Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 250/263] drm/amd/display: Fix default DC and AC levels Greg Kroah-Hartman
2025-07-04 5:00 ` Jiri Slaby
2025-07-04 9:06 ` Greg Kroah-Hartman
2025-07-04 9:14 ` Jiri Slaby
2025-07-04 9:17 ` Jiri Slaby
2025-07-04 9:29 ` Greg Kroah-Hartman
2025-07-04 9:21 ` Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 251/263] drm/amd/display: Only read ACPI backlight caps once Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 252/263] drm/amd/display: Optimize custom brightness curve Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 253/263] drm/amd/display: Export full brightness range to userspace Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 254/263] rust: completion: implement initial abstraction Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 255/263] rust: revocable: indicate whether `data` has been revoked already Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 256/263] rust: devres: fix race in Devres::drop() Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 257/263] rust: devres: do not dereference to the internal Revocable Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 258/263] x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE Greg Kroah-Hartman
2025-07-03 14:42 ` [PATCH 6.15 259/263] x86/pkeys: Simplify PKRU update in signal frame Greg Kroah-Hartman
2025-07-03 14:43 ` [PATCH 6.15 260/263] s390/ptrace: Fix pointer dereferencing in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-07-03 14:43 ` [PATCH 6.15 261/263] io_uring/kbuf: flag partial buffer mappings Greg Kroah-Hartman
2025-07-03 14:43 ` [PATCH 6.15 262/263] io_uring: gate REQ_F_ISREG on !S_ANON_INODE as well Greg Kroah-Hartman
2025-07-03 14:43 ` [PATCH 6.15 263/263] riscv: uaccess: Only restore the CSR_STATUS SUM bit Greg Kroah-Hartman
2025-07-03 15:25 ` [PATCH 6.15 000/263] 6.15.5-rc1 review Ronald Warsow
2025-07-03 18:18 ` Florian Fainelli
2025-07-03 18:20 ` Christian Heusel
2025-07-03 20:12 ` Hardik Garg
2025-07-03 22:13 ` Shuah Khan
2025-07-04 5:51 ` Ron Economos
2025-07-04 7:33 ` Pascal Ernster
2025-07-04 7:42 ` Achill Gilgenast
2025-07-10 13:21 ` Greg Kroah-Hartman
2025-07-04 10:09 ` Takeshi Ogasawara
2025-07-04 10:26 ` Luna Jernberg
2025-07-04 11:13 ` Jon Hunter
2025-07-04 11:48 ` Naresh Kamboju
2025-07-04 12:11 ` Mark Brown
2025-07-04 17:07 ` Markus Reichelt
2025-07-04 23:52 ` Miguel Ojeda
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=20250703144010.498828697@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=axboe@kernel.dk \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--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;
as well as URLs for NNTP newsgroup(s).