Archive-only list for patches
 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, Xiaoli Feng <xifeng@redhat.com>,
	"Paulo Alcantara (Red Hat)" <pc@manguebit.org>,
	David Howells <dhowells@redhat.com>,
	netfs@lists.linux.dev, linux-cifs@vger.kernel.org,
	linux-fsdevel@vger.kernel.org,
	Christian Brauner <brauner@kernel.org>
Subject: [PATCH 6.6 473/508] netfs: fix error handling in netfs_extract_user_iter()
Date: Wed, 20 May 2026 18:24:56 +0200	[thread overview]
Message-ID: <20260520162108.843821337@linuxfoundation.org> (raw)
In-Reply-To: <20260520162058.573354582@linuxfoundation.org>

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

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

From: Paulo Alcantara <pc@manguebit.org>

commit 0aad5704c6b4d14007d4eab15883e8524e4310f4 upstream.

In netfs_extract_user_iter(), if iov_iter_extract_pages() failed to
extract user pages, bail out on -ENOMEM, otherwise return the error
code only if @npages == 0, allowing short DIO reads and writes to be
issued.

This fixes mmapstress02 from LTP tests against CIFS.

Fixes: 85dd2c8ff368 ("netfs: Add a function to extract a UBUF or IOVEC into a BVEC iterator")
Reported-by: Xiaoli Feng <xifeng@redhat.com>
Signed-off-by: Paulo Alcantara (Red Hat) <pc@manguebit.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Link: https://patch.msgid.link/20260512123404.719402-10-dhowells@redhat.com
Cc: netfs@lists.linux.dev
Cc: stable@vger.kernel.org
Cc: linux-cifs@vger.kernel.org
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/netfs/iterator.c |   13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

--- a/fs/netfs/iterator.c
+++ b/fs/netfs/iterator.c
@@ -22,7 +22,7 @@
  *
  * Extract the page fragments from the given amount of the source iterator and
  * build up a second iterator that refers to all of those bits.  This allows
- * the original iterator to disposed of.
+ * the original iterator to be disposed of.
  *
  * @extraction_flags can have ITER_ALLOW_P2PDMA set to request peer-to-peer DMA be
  * allowed on the pages extracted.
@@ -67,8 +67,8 @@ ssize_t netfs_extract_user_iter(struct i
 		ret = iov_iter_extract_pages(orig, &pages, count,
 					     max_pages - npages, extraction_flags,
 					     &offset);
-		if (ret < 0) {
-			pr_err("Couldn't get user pages (rc=%zd)\n", ret);
+		if (unlikely(ret <= 0)) {
+			ret = ret ?: -EIO;
 			break;
 		}
 
@@ -97,6 +97,13 @@ ssize_t netfs_extract_user_iter(struct i
 		npages += cur_npages;
 	}
 
+	if (ret < 0 && (ret == -ENOMEM || npages == 0)) {
+		for (i = 0; i < npages; i++)
+			unpin_user_page(bv[i].bv_page);
+		kvfree(bv);
+		return ret;
+	}
+
 	iov_iter_bvec(new, orig->data_source, bv, npages, orig_len - count);
 	return npages;
 }



  parent reply	other threads:[~2026-05-20 18:49 UTC|newest]

Thread overview: 511+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-20 16:17 [PATCH 6.6 000/508] 6.6.141-rc1 review Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 001/508] blk-cgroup: wait for blkcg cleanup before initializing new disk Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 002/508] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 003/508] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 004/508] loop: fix partition scan race between udev and loop_reread_partitions() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 005/508] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 006/508] blk-cgroup: fix disk reference leak in blkcg_maybe_throttle_current() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 007/508] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 008/508] ACPI: x86: cmos_rtc: Clean up address space handler driver Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 009/508] ACPI: x86: cmos_rtc: Improve coordination with ACPI TAD driver Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 010/508] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 011/508] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 012/508] debugfs: check for NULL pointer in debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 013/508] debugfs: fix placement of EXPORT_SYMBOL_GPL for debugfs_create_str() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 014/508] s390/cio: make sch->lock spinlock pointer a member Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 015/508] s390/cio: convert sprintf()/snprintf() to sysfs_emit() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 016/508] s390/cio: use generic driver_override infrastructure Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 017/508] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 018/508] hrtimers: Update the return type of enqueue_hrtimer() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 019/508] hrtimer: Avoid pointless reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 020/508] hrtimer: Reduce trace noise in hrtimer_start() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 021/508] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 022/508] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 023/508] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 024/508] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 025/508] bpf: Add CHECKSUM_COMPLETE to bpf test progs Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 026/508] bpf: test_run: Fix the null pointer dereference issue in bpf_lwt_xmit_push_encap Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 027/508] dpaa2: add independent dependencies for FSL_DPAA2_SWITCH Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 028/508] dpaa2: compile dpaa2 even CONFIG_FSL_DPAA2_ETH=n Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 029/508] s390/bpf: Zero-extend bpf prog return values and kfunc arguments Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 030/508] params: Replace __modinit with __init_or_module Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 031/508] module: Fix freeing of charp module parameters when CONFIG_SYSFS=n Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 032/508] wifi: mt76: mt7921: Reset ampdu_state state in case of failure in mt76_connac2_tx_check_aggr() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 033/508] wifi: mt76: mt7615: fix use_cts_prot support Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 034/508] wifi: mt76: mt7915: " Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 035/508] wifi: mt76: mt7996: fix FCS error flag check in RX descriptor Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 036/508] arm64: cpufeature: Make PMUVer and PerfMon unsigned Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 037/508] wifi: mt76: mt7996: fix struct mt7996_mcu_uni_event Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 038/508] wifi: mt76: mt7915: fix use-after-free bugs in mt7915_mac_dump_work() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 039/508] bpf, devmap: Remove unnecessary if check in for loop Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 040/508] bpf: Use RCU-safe iteration in dev_map_redirect_multi() SKB path Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 041/508] wifi: rtw89: phy: fix uninitialized variable access in rtw89_phy_cfo_set_crystal_cap() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 042/508] r8152: fix incorrect register write to USB_UPHY_XTAL Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 043/508] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 044/508] selftests/powerpc: Re-order *FLAGS to follow lib.mk Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 045/508] selftests/powerpc: Suppress -Wmaybe-uninitialized with GCC 15 Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 046/508] macvlan: annotate data-races around port->bc_queue_len_used Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 047/508] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 048/508] bpf: Fix stale offload->prog pointer after constant blinding Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 049/508] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 050/508] bpf: Drop task_to_inode and inet_conn_established from lsm sleepable hooks Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 051/508] bpf: reject negative CO-RE accessor indices in bpf_core_parse_spec() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 052/508] ACPI: AGDI: fix missing newline in error message Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 053/508] arm64: kexec: Remove duplicate allocation for trans_pgd Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 054/508] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 055/508] net: bcmgenet: Remove custom ndo_poll_controller() Greg Kroah-Hartman
2026-05-20 16:17 ` [PATCH 6.6 056/508] net: bcmgenet: add bcmgenet_has_* helpers Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 057/508] net: bcmgenet: move DESC_INDEX flow to ring 0 Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 058/508] net: bcmgenet: support reclaiming unsent Tx packets Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 059/508] net: bcmgenet: switch to use 64bit statistics Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 060/508] net: bcmgenet: fix racing timeout handler Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 061/508] netfilter: xt_socket: enable defrag after all other checks Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 062/508] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 063/508] bpf: Fix RCU stall in bpf_fd_array_map_clear() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 064/508] 6pack: propagage new tty types Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 065/508] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 066/508] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 067/508] net/rds: Optimize rds_ib_laddr_check Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 068/508] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 069/508] bpf: Fix OOB in pcpu_init_value Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 070/508] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 071/508] net: ipa: Fix programming of QTIME_TIMESTAMP_CFG Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 072/508] net: ipa: Fix decoding EV_PER_EE for IPA v5.0+ Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 073/508] dt-bindings: net: dsa: nxp,sja1105: make spi-cpol optional for sja1110 Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 074/508] net/mlx5e: Fix features not applied during netdev registration Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 075/508] net/mlx5e: IPsec, fix ASO poll timeout with read_poll_timeout_atomic() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 076/508] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 077/508] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 078/508] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 079/508] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 080/508] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 081/508] net: phy: aquantia: move to separate directory Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 082/508] net: phy: add Rust Asix PHY driver Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 083/508] net: phy: move at803x PHY driver to dedicated directory Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 084/508] net: phy: qcom: at803x: Use the correct bit to disable extended next page Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 085/508] sctp: fix missing encap_port propagation for GSO fragments Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 086/508] net, bpf: fix null-ptr-deref in xdp_master_redirect() for down master Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 087/508] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 088/508] drm/sun4i: backend: fix error pointer dereference Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 089/508] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 090/508] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 091/508] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 092/508] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 093/508] dm cache: fix write hang " Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 094/508] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 095/508] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 096/508] dm cache: support shrinking the origin device Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 097/508] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 098/508] platform/chrome: chromeos_tbmc: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 099/508] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 100/508] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 101/508] drm/bridge: cadence: cdns-mhdp8546-core: Set the mhdp connector earlier in atomic_enable() Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 102/508] drm/bridge: cadence: cdns-mhdp8546-core: Add mode_valid hook to drm_bridge_funcs Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 103/508] drm/bridge: cadence: cdns-mhdp8546-core: Handle HDCP state in bridge atomic check Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 104/508] spi: fsl-qspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 105/508] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 106/508] drm/amdgpu: Add default case in DVI mode validation Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 107/508] dm init: ensure device probing has finished in dm-mod.waitfor= Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 108/508] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 109/508] crypto: atmel - Remove cfb and ofb Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 110/508] crypto: atmel - Use unregister_{aeads,ahashes,skciphers} Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 111/508] crypto: atmel-aes - guard unregister on error in atmel_aes_register_algs Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 112/508] padata: Remove cpu online check from cpu add and removal Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 113/508] padata: Put CPU offline callback in ONLINE section to allow failure Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 114/508] drm/amdgpu/gfx10: look at the right prop for gfx queue priority Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 115/508] spi: hisi-kunpeng: prevent infinite while() loop in hisi_spi_flush_fifo Greg Kroah-Hartman
2026-05-20 16:18 ` [PATCH 6.6 116/508] drm/msm/dpu: fix mismatch between power and frequency Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 117/508] drm/msm/dsi: add the missing parameter description Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 118/508] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 119/508] drm/panel: sharp-ls043t1le01: make use of prepare_prev_first Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 120/508] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 121/508] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 122/508] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 123/508] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 124/508] drm/amd/pm/smu7: Fix SMU7 voltage dependency on display clock Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 125/508] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 126/508] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 127/508] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 128/508] drm/amd/pm/smu7: Add SCLK cap for quirky Hawaii board Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 129/508] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 130/508] ASoC: SOF: Intel: hda: Place check before dereference Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 131/508] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 132/508] drm/msm/shrinker: Fix can_block() logic Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 133/508] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 134/508] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 135/508] pmdomain: imx: scu-pd: Fix device_node reference leak during ->probe() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 136/508] ASoC: fsl_micfil: Add access property for "VAD Detected" Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 137/508] ASoC: fsl_micfil: Fix event generation in hwvad_put_enable() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 138/508] ASoC: fsl_micfil: Fix event generation in hwvad_put_init_mode() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 139/508] ASoC: fsl_micfil: Fix event generation in micfil_put_dc_remover_state() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 140/508] ASoC: fsl_micfil: Fix event generation in micfil_quality_set() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 141/508] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_arc_mode_put() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 142/508] ASoC: fsl_xcvr: Fix event generation in fsl_xcvr_mode_put() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 143/508] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 144/508] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 145/508] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 146/508] ASoC: qcom: qdsp6: topology: check widget type before accessing data Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 147/508] crypto: qat - use swab32 macro Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 148/508] ASoC: rsnd: Fix potential out-of-bounds access of component_dais[] Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 149/508] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 150/508] PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 151/508] selftests/mm: skip migration tests if NUMA is unavailable Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 152/508] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 153/508] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 154/508] ALSA: scarlett2: Add missing sentinel initializer field Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 155/508] ASoC: SOF: compress: return the configured codec from get_params Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 156/508] PCI: tegra194: Fix polling delay for L2 state Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 157/508] PCI: tegra194: Increase LTSSM poll time on surprise link down Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 158/508] PCI: tegra194: Disable LTSSM after transition to Detect " Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 159/508] PCI: tegra194: Rename root_bus to root_port_bus in tegra_pcie_downstream_dev_to_D0() Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 160/508] PCI: tegra194: Dont force the device into the D0 state before L2 Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 161/508] PCI: tegra194: Disable PERST# IRQ only in Endpoint mode Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 162/508] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 163/508] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 164/508] PCI: tegra194: Allow system suspend when the Endpoint link is not up Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 165/508] PCI: tegra194: Use DWC IP core version Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 166/508] PCI: dwc: Apply ECRC workaround to DesignWare 5.00a as well Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 167/508] spi: mtk-snfi: unregister ECC engine on probe failure and remove() callback Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 168/508] ALSA: sc6000: Use standard print API Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 169/508] ALSA: sc6000: Keep the programmed board state in card-private data Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 170/508] dm cache: fix missing return in invalidate_committeds error path Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 171/508] crypto: jitterentropy - replace long-held spinlock with mutex Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 172/508] gfs2: Call unlock_new_inode before d_instantiate Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 173/508] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 174/508] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 175/508] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-20 16:19 ` [PATCH 6.6 176/508] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 177/508] gfs2: add some missing log locking Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 178/508] gfs2: prevent NULL pointer dereference during unmount Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 179/508] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 180/508] ksmbd: fix use-after-free from async crypto on Qualcomm crypto engine Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 181/508] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 182/508] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 183/508] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 184/508] arm64: dts: imx8-apalis: Fix LEDs name collision Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 185/508] arm64: dts: imx8mp-evk: Enable pull select bit for PCIe regulator GPIO (M.2 W_DISABLE1) Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 186/508] iommufd: vfio compatibility extension check for noiommu mode Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 187/508] arm64: dts: mediatek: mt6795: Fix gpio-ranges pin count Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 188/508] arm64: dts: mediatek: mt7986a: " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 189/508] arm64: dts: qcom: msm8953-xiaomi-vince: correct wled ovp value Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 190/508] arm64: dts: qcom: msm8953-xiaomi-daisy: fix backlight Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 191/508] soc: qcom: ocmem: make the core clock optional Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 192/508] soc: qcom: ocmem: use scoped device node handling to simplify error paths Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 193/508] soc: qcom: ocmem: register reasons for probe deferrals Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 194/508] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 195/508] arm64: dts: qcom: sm8450: Fix GIC_ITS range length Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 196/508] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 197/508] arm64: dts: qcom: sm8550: Fix xo clock supply of platform SD host controller Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 198/508] arm64: dts: qcom: sm8450: Enable UHS-I SDR50 and SDR104 SD card modes Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 199/508] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 200/508] arm64: dts: qcom: sm7225-fairphone-fp4: Fix conflicting bias pinctrl Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 201/508] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 202/508] arm64: dts: imx8qxp-mek: switch Type-C connector power-role to dual Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 203/508] soc/tegra: cbb: Set ERD on resume for err interrupt Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 204/508] unshare: fix nsproxy leak in ksys_unshare() on set_cred_ucounts() failure Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 205/508] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 206/508] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 207/508] soc: qcom: llcc: fix v1 SB syndrome register offset Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 208/508] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 209/508] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 210/508] ARM: OMAP1: Fix DEBUG_LL and earlyprintk on OMAP16XX Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 211/508] arm64/xor: fix conflicting attributes for xor_block_template Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 212/508] ARM: dts: imx27-eukrea: replace interrupts with interrupts-extended Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 213/508] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 214/508] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 215/508] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 216/508] dmaengine: dw-axi-dmac: Remove unnecessary return statement from void function Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 217/508] soundwire: bus: demote UNATTACHED state warnings to dev_dbg() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 218/508] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 219/508] soundwire: cadence: Clear message complete before signaling waiting thread Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 220/508] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 221/508] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 222/508] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 223/508] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 224/508] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 225/508] dt-bindings: interrupt-controller: arm,gic-v3: Fix EPPI range Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 226/508] mtd: spi-nor: core: correct the op.dummy.nbytes when check read operations Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 227/508] mtd: spi-nor: sfdp: introduce smpt_read_dummy fixup hook Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 228/508] mtd: spi-nor: sfdp: introduce smpt_map_id " Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 229/508] mtd: spi-nor: update spi_nor_fixups::post_sfdp() documentation Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 230/508] mtd: spi-nor: swp: check SR_TB flag when getting tb_mask Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 231/508] mtd: parsers: ofpart: call of_node_put() only in ofpart_fail path Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 232/508] mtd: parsers: ofpart: call of_node_get() for dedicated subpartitions Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 233/508] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 234/508] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 235/508] bpf, arm64: Fix off-by-one in check_imm signed range check Greg Kroah-Hartman
2026-05-20 16:20 ` [PATCH 6.6 236/508] bpf, riscv: Remove redundant bpf_flush_icache() after pack allocator finalize Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 237/508] bpf, sockmap: Fix af_unix iter deadlock Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 238/508] bpf, sockmap: Fix af_unix null-ptr-deref in proto update Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 239/508] bpf, sockmap: Take state lock for af_unix iter Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 240/508] bpf: Fix precedence bug in convert_bpf_ld_abs alignment check Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 241/508] bpf: Fix NULL deref in map_kptr_match_type for scalar regs Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 242/508] bpf: allow UTF-8 literals in bpf_bprintf_prepare() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 243/508] bpf, arm32: Reject BPF-to-BPF calls and callbacks in the JIT Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 244/508] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 245/508] pinctrl: cy8c95x0: remove duplicate error message Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 246/508] pinctrl: cy8c95x0: Unify messages with help of dev_err_probe() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 247/508] pinctrl: cy8c95x0: Avoid returning positive values to user space Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 248/508] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 249/508] perf: tools: cs-etm: Fix print issue for Coresight debug in ETE/TRBE trace Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 250/508] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 251/508] perf lock: Fix option value type in parse_max_stack Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 252/508] perf tools: Fix module symbol resolution for non-zero .text sh_addr Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 253/508] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 254/508] ipmi: ssif_bmc: fix missing check for copy_to_user() partial failure Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 255/508] ipmi: ssif_bmc: fix message desynchronization after truncated response Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 256/508] ipmi: ssif_bmc: change log level to dbg in irq callback Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 257/508] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 258/508] i3c: master: Fix error codes at send_ccc_cmd Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 259/508] i3c: mipi-i3c-hci: fix IBI payload length calculation for final status Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 260/508] dev_printk: add new dev_err_probe() helpers Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 261/508] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 262/508] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 263/508] leds: lgm-sso: Remove duplicate assignments for priv->mmap Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 264/508] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 265/508] platform/x86: panasonic-laptop: Fix OPTD notifier registration and cleanup Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 266/508] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 267/508] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 268/508] fs/ntfs3: terminate the cached volume label after UTF-8 conversion Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 269/508] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 270/508] platform/x86: dell-wmi-sysman: bound enumeration string aggregation Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 271/508] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 272/508] clk: qcom: dispcc-sm8450: use RCG2 ops for DPTX1 AUX clock source Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 273/508] scsi: sg: Make sg_sysfs_class constant Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 274/508] scsi: sg: Fix sysctl sg-big-buff register during sg_init() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 275/508] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 276/508] clk: qcom: dispcc-sc8280xp: remove CLK_SET_RATE_PARENT from byte_div_clk_src dividers Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 277/508] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 278/508] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 279/508] clk: qcom: gcc-sc8180x: " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 280/508] clk: qcom: gcc-sc8180x: Use retention for USB power domains Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 281/508] clk: qcom: gcc-sc8180x: Use retention for PCIe " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 282/508] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 283/508] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 284/508] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 285/508] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 286/508] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 287/508] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 288/508] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 289/508] dt-bindings: clock: qcom,dispcc-sc7180: Define MDSS resets Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 290/508] clk: qcom: dispcc-sc7180: Add missing " Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 291/508] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 292/508] clk: visconti: pll: initialize clk_init_data to zero Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 293/508] f2fs: Use sysfs_emit_at() to simplify code Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 294/508] f2fs: protect extension_list reading with sb_lock in f2fs_sbi_show() Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 295/508] drm/i915: Constify watermark state checker Greg Kroah-Hartman
2026-05-20 16:21 ` [PATCH 6.6 296/508] drm/i915: Simplify watermark state checker calling convention Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 297/508] drm/i915: Extract intel_dbuf_mdclk_cdclk_ratio_update() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 298/508] drm/i915: Loop over all active pipes in intel_mbus_dbox_update Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 299/508] drm/i915/wm: Verify the correct plane DDB entry Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 300/508] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 301/508] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 302/508] arm64: dts: imx8mp-debix-model-a: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 303/508] arm64: dts: imx8mp-debix-som-a: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 304/508] arm64: dts: imx8mp-icore-mx8mp: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 305/508] arm64: dts: imx8mp-dhcom-som: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 306/508] arm64: dts: imx8mp-data-modul-edm-sbc: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 307/508] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 308/508] arm64: dts: imx8mm-emtop-som: Correct PAD settings for PMIC_nINT Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 309/508] arm64: dts: imx8mn-tqma8mqnl: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 310/508] arm64: dts: imx8mm-tqma8mqml: " Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 311/508] macvlan: fix macvlan_get_size() not reserving space for IFLA_MACVLAN_BC_CUTOFF Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 312/508] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 313/508] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 314/508] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 315/508] tcp: add data-race annotations around tp->data_segs_out and tp->total_retrans Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 316/508] tcp: annotate data-races around tp->bytes_sent Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 317/508] tcp: annotate data-races around tp->bytes_retrans Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 318/508] tcp: annotate data-races around tp->dsack_dups Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 319/508] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 320/508] tcp: annotate data-races around tp->plb_rehash Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 321/508] ice: Remove jumbo_remove step from TX path Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 322/508] ice: fix double-free of tx_buf skb Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 323/508] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 324/508] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 325/508] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 326/508] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 327/508] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 328/508] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 329/508] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 330/508] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 331/508] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 332/508] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 333/508] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 334/508] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 335/508] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 336/508] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 337/508] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 338/508] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 339/508] ksmbd: destroy tree_conn_ida in ksmbd_session_destroy() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 340/508] ksmbd: Use struct_size() to improve smb_direct_rdma_xmit() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 341/508] ksmbd: add support for supplementary groups Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 342/508] ksmbd: destroy async_ida in ksmbd_conn_free() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 343/508] ksmbd: fix durable fd leak on ClientGUID mismatch in durable v2 open Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 344/508] ksmbd: scope conn->binding slowpath to bound sessions only Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 345/508] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 346/508] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 347/508] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 348/508] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 349/508] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 350/508] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 351/508] net: dsa: realtek: rtl8365mb: fix mode mask calculation Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 352/508] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 353/508] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 354/508] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 355/508] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-20 16:22 ` [PATCH 6.6 356/508] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 357/508] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 358/508] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 359/508] sched/psi: fix race between file release and pressure write Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 360/508] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 361/508] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 362/508] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 363/508] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 364/508] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 365/508] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 366/508] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 367/508] nvmet-tcp: propagate nvmet_tcp_build_pdu_iovec() errors to its callers Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 368/508] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 369/508] nvme-pci: fix missed admin queue sq doorbell write Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 370/508] drm/amdgpu: fix AMDGPU_INFO_READ_MMR_REG Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 371/508] drm/amdgpu: fix spelling typos Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 372/508] drm/amdgpu/uvd3.1: Dont validate the firmware when already validated Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 373/508] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 374/508] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 375/508] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 376/508] spi: rockchip: Read ISR, not IMR, to detect cs-inactive IRQ Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 377/508] drm/sysfb: ofdrm: fix PCI device reference leaks Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 378/508] arm64/scs: Fix potential sign extension issue of advance_loc4 Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 379/508] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 380/508] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 381/508] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 382/508] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 383/508] net/sched: netem: only reseed PRNG when seed is explicitly provided Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 384/508] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 385/508] net/sched: netem: fix slot delay calculation overflow Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 386/508] net/sched: netem: check for negative latency and jitter Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 387/508] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 388/508] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 389/508] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 390/508] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 391/508] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 392/508] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 393/508] net/sched: taprio: fix NULL pointer dereference in class dump Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 394/508] neighbour: add RCU protection to neigh_tables[] Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 395/508] neigh: let neigh_xmit take skb ownership Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 396/508] ALSA: usb-audio: Fix potential leak of pd at parsing UAC3 streams Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 397/508] net: mctp i2c: check length before marking flow active Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 398/508] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 399/508] drm/amdgpu/vcn: set no_user_fence for VCN v2.0 enc/dec rings Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 400/508] drm/amdgpu/vcn: set no_user_fence for VCN v2.5 " Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 401/508] drm/amdgpu/vcn: set no_user_fence for VCN v3.0 " Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 402/508] drm/amdgpu/vcn: set no_user_fence for VCN v4.0.3 enc ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 403/508] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.0 ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 404/508] drm/amdgpu/jpeg: set no_user_fence for JPEG v2.5 ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 405/508] drm/amdgpu/jpeg: set no_user_fence for JPEG v3.0 ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 406/508] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0 ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 407/508] drm/amdgpu/jpeg: set no_user_fence for JPEG v4.0.3 ring Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 408/508] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 409/508] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 410/508] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 411/508] ipv4: rename and move ip_route_output_tunnel() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 412/508] ipv4: remove "proto" argument from udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 413/508] ipv4: add new arguments to udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 414/508] ipv6: rename and move ip6_dst_lookup_tunnel() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 415/508] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-20 16:23 ` [PATCH 6.6 416/508] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 417/508] net: netconsole: move newline trimming to function Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 418/508] netconsole: propagate device name truncation in dev_name_store() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 419/508] ALSA: hda/conexant: fix some typos Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 420/508] ALSA: hda/conexant: Renaming the codec with device ID 0x1f86 and 0x1f87 Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 421/508] ALSA: hda/conexant: Fix missing error check for jack detection Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 422/508] futex: Prevent lockup in requeue-PI during signal/ timeout wakeup Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 423/508] drm/amd/display: Allow DCE link encoder without AUX registers Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 424/508] drm/amd/display: Read EDID from VBIOS embedded panel info Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 425/508] bonding: 802.3ad replace MAC_ADDRESS_EQUAL with __agg_has_partner Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 426/508] net: bonding: add broadcast_neighbor option for 802.3ad Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 427/508] bonding: add support for per-port LACP actor priority Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 428/508] bonding: print churn state via netlink Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 429/508] bonding: 3ad: implement proper RCU rules for port->aggregator Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 430/508] iavf: rename IAVF_VLAN_IS_NEW to IAVF_VLAN_ADDING Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 431/508] iavf: stop removing VLAN filters from PF on interface down Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 432/508] iavf: wait for PF confirmation before removing VLAN filters Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 433/508] iavf: add VIRTCHNL_OP_ADD_VLAN to success completion handler Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 434/508] ice: fix NULL pointer dereference in ice_reset_all_vfs() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 435/508] net: tls: fix strparser anchor skb leak on offload RX setup failure Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 436/508] sfc: fix error code in efx_devlink_info_running_versions() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 437/508] net/sched: cls_flower: revert unintended changes Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 438/508] ntfs: ->d_compare() must not block Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 439/508] Revert "crypto: nx - fix context leak in nx842_crypto_free_ctx" Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 440/508] Revert "crypto: nx - fix bounce buffer leaks in nx842_crypto_{alloc,free}_ctx" Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 441/508] Revert "crypto: nx - Migrate to scomp API" Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 442/508] smb: client: correctly handle ErrorContextData as a flexible array Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 443/508] smb: client: fix OOB reads parsing symlink error response Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 444/508] crypto: nx - fix bounce buffer leaks in nx842_crypto_{alloc,free}_ctx Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 445/508] net: bcmgenet: Initialize u64 stats seq counter Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 446/508] net: bcmgenet: fix leaking free_bds Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 447/508] ksmbd: validate response sizes in ipc_validate_msg() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 448/508] net/sched: sch_pie: annotate more data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 449/508] netconsole: avoid out-of-bounds access on empty string in trim_newline() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 450/508] bonding: fix NULL pointer dereference in actor_port_prio setting Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 451/508] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 452/508] i40e: Cleanup PTP pins on probe failure Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 453/508] workqueue: Fix wq->cpu_pwq leak in alloc_and_link_pwqs() WQ_UNBOUND path Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 454/508] netfilter: nf_conntrack_sip: get helper before allocating expectation Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 455/508] audit: fix incorrect inheritable capability in CAPSET records Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 456/508] netfilter: nft_ct: fix missing expect put in obj eval Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 457/508] net: atlantic: preserve PCI wake-from-D3 on shutdown when WOL enabled Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 458/508] audit: enforce AUDIT_LOCKED for AUDIT_TRIM and AUDIT_MAKE_EQUIV Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 459/508] KVM: Reject wrapped offset in kvm_reset_dirty_gfn() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 460/508] KVM: s390: pci: fix GAIT table indexing due to double-scaling pointer arithmetic Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 461/508] KVM: x86: Fix Xen hypercall tracepoint argument assignment Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 462/508] netfilter: nf_tables: unconditionally bump set->nelems before insertion Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 463/508] ASoC: SOF: Intel: hda-dai: remove dspless special case Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 464/508] ASoC: SOF: Intel: hda-dai: add support for dspless mode beyond HDAudio Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 465/508] ASoC: SOF: Intel: hda: Fix NULL pointer dereference Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 466/508] smb/client: fix possible infinite loop and oob read in symlink_data() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 467/508] drm/i915/dp: Fix VSC dynamic range signaling for RGB formats Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 468/508] ALSA: usb-audio: Bound MIDI 2.0 endpoint descriptor scans Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 469/508] ALSA: usb-audio: Bound MIDI " Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 470/508] ceph: fix a buffer leak in __ceph_setxattr() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 471/508] io-wq: check that the predecessor is hashed in io_wq_remove_pending() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 472/508] powerpc/warp: Fix error handling in pika_dtm_thread Greg Kroah-Hartman
2026-05-20 16:24 ` Greg Kroah-Hartman [this message]
2026-05-20 16:24 ` [PATCH 6.6 474/508] libceph: Fix potential out-of-bounds access in osdmap_decode() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 475/508] libceph: Fix potential null-ptr-deref in decode_choose_args() Greg Kroah-Hartman
2026-05-20 16:24 ` [PATCH 6.6 476/508] libceph: Fix potential out-of-bounds access in crush_decode() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 477/508] libceph: handle rbtree insertion error in decode_choose_args() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 478/508] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 479/508] drm/i915: skip __i915_request_skip() for already signaled requests Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 480/508] drm/panfrost: Fix wait_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 481/508] drm/gma500/oaktrail_hdmi: fix i2c adapter leak on setup Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 482/508] drm/gma500/oaktrail_lvds: fix hang on init failure Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 483/508] drm/gma500/oaktrail_lvds: fix i2c adapter leaks on init Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 484/508] pmdomain: core: Fix detach procedure for virtual devices in genpd Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 485/508] btrfs: remove fs_info argument from btrfs_sysfs_add_space_info_type() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 486/508] btrfs: fix double free in create_space_info_sub_group() error path Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 487/508] eventfs: Use list_add_tail_rcu() for SRCU-protected children list Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 488/508] drm/v3d: Reject empty multisync extension to prevent infinite loop Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 489/508] smb: client: Use FullSessionKey for AES-256 encryption key derivation Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 490/508] btrfs: use inode already stored in local variable at btrfs_rmdir() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 491/508] btrfs: use btrfs inodes in btrfs_rmdir() to avoid so much usage of BTRFS_I() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 492/508] btrfs: fix missing last_unlink_trans update when removing a directory Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 493/508] RDMA/mana: Validate rx_hash_key_len Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 494/508] mptcp: drop __mptcp_fastopen_gen_msk_ackseq() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 495/508] mptcp: fix rx timestamp corruption on fastopen Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 496/508] mptcp: pm: prio: skip closed subflows Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 497/508] mptcp: pm: kernel: correctly retransmit ADD_ADDR ID 0 Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 498/508] f2fs: fix incorrect file address mapping when inline inode is unwritten Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 499/508] f2fs: fix false alarm of lockdep on cp_global_sem lock Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 500/508] RDMA/mana: Fix error unwind in mana_ib_create_qp_rss() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 501/508] ksmbd: validate inherited ACE SID length Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 502/508] spi: st-ssc4: switch to use modern name Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 503/508] spi: st-ssc4: fix controller deregistration Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 504/508] media: nxp: imx8-isi: Reduce minimum queued buffers from 2 to 0 Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 505/508] spi: sifive: Simplify clock handling with devm_clk_get_enabled() Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 506/508] spi: sifive: fix controller deregistration Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 507/508] mptcp: pm: ADD_ADDR rtx: fix potential data-race Greg Kroah-Hartman
2026-05-20 16:25 ` [PATCH 6.6 508/508] mptcp: pm: ADD_ADDR rtx: resched blocked ADD_ADDR quicker Greg Kroah-Hartman
2026-05-20 19:11 ` [PATCH 6.6 000/508] 6.6.141-rc1 review Brett A C Sheffield
2026-05-20 20:33 ` Florian Fainelli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260520162108.843821337@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=brauner@kernel.org \
    --cc=dhowells@redhat.com \
    --cc=linux-cifs@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=netfs@lists.linux.dev \
    --cc=patches@lists.linux.dev \
    --cc=pc@manguebit.org \
    --cc=stable@vger.kernel.org \
    --cc=xifeng@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox