patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	syzbot+16a19b06125a2963eaee@syzkaller.appspotmail.com,
	"Paul E. McKenney" <paulmck@kernel.org>,
	Alexei Starovoitov <ast@kernel.org>,
	Andrii Nakryiko <andrii@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Kent Overstreet <kent.overstreet@linux.dev>,
	bpf@vger.kernel.org, Boqun Feng <boqun.feng@gmail.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.14 051/449] srcu: Force synchronization for srcu_get_delay()
Date: Thu, 17 Apr 2025 19:45:39 +0200	[thread overview]
Message-ID: <20250417175120.039482205@linuxfoundation.org> (raw)
In-Reply-To: <20250417175117.964400335@linuxfoundation.org>

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

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

From: Paul E. McKenney <paulmck@kernel.org>

[ Upstream commit d31e31365b5b6c0cdfc74d71be87234ced564395 ]

Currently, srcu_get_delay() can be called concurrently, for example,
by a CPU that is the first to request a new grace period and the CPU
processing the current grace period.  Although concurrent access is
harmless, it unnecessarily expands the state space.  Additionally,
all calls to srcu_get_delay() are from slow paths.

This commit therefore protects all calls to srcu_get_delay() with
ssp->srcu_sup->lock, which is already held on the invocation from the
srcu_funnel_gp_start() function.  While in the area, this commit also
adds a lockdep_assert_held() to srcu_get_delay() itself.

Reported-by: syzbot+16a19b06125a2963eaee@syzkaller.appspotmail.com
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Andrii Nakryiko <andrii@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Cc: <bpf@vger.kernel.org>
Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/rcu/srcutree.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/kernel/rcu/srcutree.c b/kernel/rcu/srcutree.c
index b83c74c4dcc0d..2d8f3329023c5 100644
--- a/kernel/rcu/srcutree.c
+++ b/kernel/rcu/srcutree.c
@@ -647,6 +647,7 @@ static unsigned long srcu_get_delay(struct srcu_struct *ssp)
 	unsigned long jbase = SRCU_INTERVAL;
 	struct srcu_usage *sup = ssp->srcu_sup;
 
+	lockdep_assert_held(&ACCESS_PRIVATE(ssp->srcu_sup, lock));
 	if (srcu_gp_is_expedited(ssp))
 		jbase = 0;
 	if (rcu_seq_state(READ_ONCE(sup->srcu_gp_seq))) {
@@ -674,9 +675,13 @@ static unsigned long srcu_get_delay(struct srcu_struct *ssp)
 void cleanup_srcu_struct(struct srcu_struct *ssp)
 {
 	int cpu;
+	unsigned long delay;
 	struct srcu_usage *sup = ssp->srcu_sup;
 
-	if (WARN_ON(!srcu_get_delay(ssp)))
+	spin_lock_irq_rcu_node(ssp->srcu_sup);
+	delay = srcu_get_delay(ssp);
+	spin_unlock_irq_rcu_node(ssp->srcu_sup);
+	if (WARN_ON(!delay))
 		return; /* Just leak it! */
 	if (WARN_ON(srcu_readers_active(ssp)))
 		return; /* Just leak it! */
@@ -1102,7 +1107,9 @@ static bool try_check_zero(struct srcu_struct *ssp, int idx, int trycount)
 {
 	unsigned long curdelay;
 
+	spin_lock_irq_rcu_node(ssp->srcu_sup);
 	curdelay = !srcu_get_delay(ssp);
+	spin_unlock_irq_rcu_node(ssp->srcu_sup);
 
 	for (;;) {
 		if (srcu_readers_active_idx_check(ssp, idx))
@@ -1849,7 +1856,9 @@ static void process_srcu(struct work_struct *work)
 	ssp = sup->srcu_ssp;
 
 	srcu_advance_state(ssp);
+	spin_lock_irq_rcu_node(ssp->srcu_sup);
 	curdelay = srcu_get_delay(ssp);
+	spin_unlock_irq_rcu_node(ssp->srcu_sup);
 	if (curdelay) {
 		WRITE_ONCE(sup->reschedule_count, 0);
 	} else {
-- 
2.39.5




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

Thread overview: 469+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-17 17:44 [PATCH 6.14 000/449] 6.14.3-rc1 review Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 001/449] ASoC: Intel: adl: add 2xrt1316 audio configuration Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 002/449] cgroup/cpuset: Fix incorrect isolated_cpus update in update_parent_effective_cpumask() Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 003/449] cgroup/cpuset: Fix error handling in remote_partition_disable() Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 004/449] cgroup/cpuset: Fix race between newly created partition and dying one Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 005/449] tracing: fprobe: Cleanup fprobe hash when module unloading Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 006/449] gpiolib: of: Fix the choice for Ingenic NAND quirk Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 007/449] selftests/futex: futex_waitv wouldblock test should fail Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 008/449] ublk: fix handling recovery & reissue in ublk_abort_queue() Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 009/449] drm/virtio: Fix flickering issue seen with imported dmabufs Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 010/449] drm/i915: Disable RPG during live selftest Greg Kroah-Hartman
2025-04-17 17:44 ` [PATCH 6.14 011/449] x86/acpi: Dont limit CPUs to 1 for Xen PV guests due to disabled ACPI Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 012/449] net: ethtool: fix ethtool_ringparam_get_cfg() returns a hds_thresh value always as 0 Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 013/449] drm/xe/hw_engine: define sysfs_ops on all directories Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 014/449] drm/xe: Restore EIO errno return when GuC PC start fails Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 015/449] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 016/449] objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 017/449] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 018/449] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 019/449] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 020/449] octeontx2-pf: qos: fix VF root node parent queue index Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 021/449] tc: Ensure we have enough buffer space when sending filter netlink notifications Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 022/449] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 023/449] drm/tests: modeset: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 024/449] drm/tests: helpers: Create kunit helper to destroy a drm_display_mode Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 025/449] drm/tests: cmdline: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 026/449] drm/tests: modes: " Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 027/449] drm/tests: probe-helper: " Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 028/449] net: libwx: handle page_pool_dev_alloc_pages error Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 029/449] cifs: Fix support for WSL-style symlinks Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 030/449] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 031/449] drm/i915/huc: Fix fence not released on early probe errors Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 032/449] s390/cpumf: Fix double free on error in cpumf_pmu_event_init() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 033/449] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 034/449] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 035/449] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 036/449] x86/cpu: Avoid running off the end of an AMD erratum table Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 037/449] smb: client: fix UAF in decryption with multichannel Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 038/449] net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 039/449] net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 040/449] ipv6: Align behavior across nexthops during path selection Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 041/449] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 042/449] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 043/449] ethtool: cmis_cdb: Fix incorrect read / write length extension Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 044/449] iommu/exynos: Fix suspend/resume with IDENTITY domain Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 045/449] iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 046/449] net: libwx: Fix the wrong Rx descriptor field Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 047/449] perf/core: Simplify the perf_event_alloc() error path Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 048/449] perf: Fix hang while freeing sigtrap event Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 049/449] fs: consistently deref the files table with rcu_dereference_raw() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 050/449] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-17 17:45 ` Greg Kroah-Hartman [this message]
2025-04-17 17:45 ` [PATCH 6.14 052/449] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 053/449] irqchip/gic-v3: Add Rockchip 3568002 erratum workaround Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 054/449] x86/mm: Clear _PAGE_DIRTY for kernel mappings when we clear _PAGE_RW Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 055/449] x86/percpu: Disable named address spaces for UBSAN_BOOL with KASAN for GCC < 14.2 Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 056/449] x86/ia32: Leave NULL selector values 0~3 unchanged Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 057/449] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 058/449] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 059/449] perf/dwc_pcie: fix some unreleased resources Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 060/449] perf/dwc_pcie: fix duplicate pci_dev devices Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 061/449] PM: hibernate: Avoid deadlock in hibernate_compressor_param_set() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 062/449] Flush console log from kernel_power_off() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 063/449] cpufreq/amd-pstate: Invalidate cppc_req_cached during suspend Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 064/449] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 065/449] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 066/449] zstd: Increase DYNAMIC_BMI2 GCC version cutoff from 4.8 to 11.0 to work around compiler segfault Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 067/449] tracing: Disable branch profiling in noinstr code Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 068/449] platform/chrome: cros_ec_lpc: Match on Framework ACPI device Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 069/449] ASoC: SOF: topology: Use krealloc_array() to replace krealloc() Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 070/449] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.14 071/449] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 072/449] HID: pidff: Add MISSING_DELAY quirk and its detection Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 073/449] HID: pidff: Add MISSING_PBO " Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 074/449] HID: pidff: Add PERMISSIVE_CONTROL quirk Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 075/449] HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 076/449] HID: pidff: Add FIX_WHEEL_DIRECTION quirk Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 077/449] HID: Add hid-universal-pidff driver and supported device ids Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 078/449] HID: pidff: Add PERIODIC_SINE_ONLY quirk Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 079/449] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 080/449] ASoC: amd: ps: use macro for ACP6.3 pci revision id Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 081/449] ASoC: amd: amd_sdw: Add quirks for Dell SKUs Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 082/449] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 083/449] ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 084/449] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 085/449] media: uvcvideo: Add quirk for Actions UVC05 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 086/449] HID: lenovo: Fix to ensure the data as __le32 instead of u32 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 087/449] media: s5p-mfc: Corrected NV12M/NV21M plane-sizes Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 088/449] mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 089/449] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 090/449] ASoC: amd: Add DMI quirk for ACP6X mic support Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 091/449] ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3315 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 092/449] ALSA: hda/realtek: fix micmute LEDs on HP Laptops with ALC3247 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 093/449] ASoC: amd: yc: update quirk data for new Lenovo model Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 094/449] platform/x86: x86-android-tablets: Add select POWER_SUPPLY to Kconfig Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 095/449] wifi: ath9k: use unsigned long for activity check timestamp Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 096/449] wifi: ath11k: Fix DMA buffer allocation to resolve SWIOTLB issues Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 097/449] wifi: ath11k: fix memory leak in ath11k_xxx_remove() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 098/449] wifi: ath12k: fix memory leak in ath12k_pci_remove() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 099/449] wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 100/449] wifi: ath12k: Avoid memory leak while enabling statistics Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 101/449] ata: libata-core: Add external to the libata.force kernel parameter Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 102/449] scsi: mpi3mr: Avoid reply queue full condition Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 103/449] scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 104/449] net: page_pool: dont cast mp param to devmem Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 105/449] f2fs: dont retry IO for corrupted data scenario Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 106/449] wifi: mac80211: add strict mode disabling workarounds Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 107/449] wifi: mac80211: ensure sdata->work is canceled before initialized Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 108/449] scsi: target: spc: Fix RSOC parameter data header size Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 109/449] net: usb: asix_devices: add FiberGecko DeviceID Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 110/449] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 111/449] can: flexcan: Add quirk to handle separate interrupt lines for mailboxes Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 112/449] can: flexcan: add NXP S32G2/S32G3 SoC support Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 113/449] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 114/449] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 115/449] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 116/449] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 117/449] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 118/449] wifi: rtw88: Add support for Mercusys MA30N and D-Link DWA-T185 rev. A1 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 119/449] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 120/449] net: sfp: add quirk for 2.5G OEM BX SFP Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 121/449] wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 122/449] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 123/449] net: sfp: add quirk for FS SFP-10GM-T copper SFP+ module Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 124/449] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 125/449] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 126/449] Revert "f2fs: rebuild nat_bits during umount" Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 127/449] wifi: mac80211: fix userspace_selectors corruption Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 128/449] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 129/449] cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 130/449] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.14 131/449] ahci: Marvell 88SE9215 controllers prefer DMA for ATAPI Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 132/449] btrfs: harden block_group::bg_list against list_del() races Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 133/449] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 134/449] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 135/449] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 136/449] Bluetooth: btusb: Add new VID/PID for WCN785x Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 137/449] Bluetooth: btintel_pcie: Add device id of Whale Peak Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 138/449] Bluetooth: btusb: Add 13 USB device IDs for Qualcomm WCN785x Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 139/449] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 140/449] Bluetooth: btusb: Add 2 HWIDs for MT7922 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 141/449] Bluetooth: hci_qca: use the power sequencer for wcn6750 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 142/449] Bluetooth: qca: simplify WCN399x NVM loading Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 143/449] Bluetooth: qca: add WCN3950 support Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 144/449] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 145/449] drm/virtio: Set missing bo->attached flag Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 146/449] drm/rockchip: Dont change hdmi reference clock rate Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 147/449] drm/xe/bmg: Add new PCI IDs Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 148/449] drm/xe/ptl: Update the PTL pci id table Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 149/449] drm/xe/pf: Dont send BEGIN_ID if VF has no context/doorbells Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 150/449] drm/xe/vf: Dont try to trigger a full GT reset if VF Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 151/449] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 152/449] drm/amd/display: Guard Possible Null Pointer Dereference Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 153/449] drm/amd/display: add workaround flag to link to force FFE preset Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 154/449] drm/amdgpu: Unlocked unmap only clear page table leaves Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 155/449] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 156/449] drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 157/449] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 158/449] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 159/449] drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel) Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 160/449] drm/debugfs: fix printk format for bridge index Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 161/449] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 162/449] drm/amd/display: Update FIXED_VS Link Rate Toggle Workaround Usage Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 163/449] drm/amd/display: stop DML2 from removing pipes based on planes Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 164/449] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 165/449] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 166/449] drm/amdkfd: Fix mode1 reset crash issue Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 167/449] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 168/449] drm/amdkfd: debugfs hang_hws skip GPU with MES Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 169/449] drm/xe/xelp: Move Wa_16011163337 from tunings to workarounds Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 170/449] drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 171/449] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 172/449] drm/rockchip: stop passing non struct drm_device to drm_err() and friends Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 173/449] PCI: Add Rockchip Vendor ID Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 174/449] drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 175/449] drm/amd/display: Prevent VStartup Overflow Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 176/449] PCI: Enable Configuration RRS SV early Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 177/449] drm/amdgpu: Fix the race condition for draining retry fault Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 178/449] PCI: Check BAR index for validity Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 179/449] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 180/449] drm/amdgpu: grab an additional reference on the gang fence v2 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 181/449] s390/pci: Support mmap() of PCI resources except for ISM devices Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 182/449] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 183/449] tracing: probe-events: Log error for exceeding the number of arguments Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 184/449] tracing: probe-events: Add comments about entry data storing code Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 185/449] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 186/449] tpm, tpm_tis: Workaround failed command reception on Infineon devices Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 187/449] tpm: End any active auth session before shutdown Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 188/449] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 189/449] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 190/449] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.14 191/449] pwm: stm32: Search an appropriate duty_cycle if period cannot be modified Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 192/449] erofs: set error to bio if file-backed IO fails Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 193/449] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 194/449] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 195/449] s390/pci: Fix s390_mmio_read/write syscall page fault handling Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 196/449] HID: pidff: Clamp PERIODIC effect period to devices logical range Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 197/449] HID: pidff: Stop all effects before enabling actuators Greg Kroah-Hartman
     [not found]   ` <763f6566-9806-4e09-a633-b27fe1767f38@orange.fr>
2025-04-18  4:47     ` Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 198/449] HID: pidff: Completely rework and fix pidff_reset function Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 199/449] HID: pidff: Simplify pidff_upload_effect function Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 200/449] HID: pidff: Define values used in pidff_find_special_fields Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 201/449] HID: pidff: Rescale time values to match field units Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 202/449] HID: pidff: Factor out code for setting gain Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 203/449] HID: pidff: Move all hid-pidff definitions to a dedicated header Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 204/449] HID: pidff: Simplify pidff_rescale_signed Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 205/449] HID: pidff: Use macros instead of hardcoded min/max values for shorts Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 206/449] HID: pidff: Factor out pool report fetch and remove excess declaration Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 207/449] HID: pidff: Make sure to fetch pool before checking SIMULTANEOUS_MAX Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 208/449] HID: hid-universal-pidff: Add Asetek wheelbases support Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 209/449] HID: pidff: Comment and code style update Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 210/449] HID: pidff: Support device error response from PID_BLOCK_LOAD Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 211/449] HID: pidff: Remove redundant call to pidff_find_special_keys Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 212/449] HID: pidff: Rename two functions to align them with naming convention Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 213/449] HID: pidff: Clamp effect playback LOOP_COUNT value Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 214/449] HID: pidff: Compute INFINITE value instead of using hardcoded 0xffff Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 215/449] HID: pidff: Fix 90 degrees direction name North -> East Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 216/449] HID: pidff: Fix set_device_control() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 217/449] auxdisplay: hd44780: Fix an API misuse in hd44780.c Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 218/449] dt-bindings: media: st,stmipid02: correct lane-polarities maxItems Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 219/449] media: mediatek: vcodec: Fix a resource leak related to the scp device in FW initialization Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 220/449] media: mtk-vcodec: venc: avoid -Wenum-compare-conditional warning Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 221/449] media: uapi: rkisp1-config: Fix typo in extensible params example Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 222/449] media: mgb4: Fix CMT registers update logic Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 223/449] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 224/449] media: mgb4: Fix switched CMT frequency range "magic values" sets Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 225/449] media: intel/ipu6: set the dev_parent of video device to pdev Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 226/449] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 227/449] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 228/449] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 229/449] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 230/449] media: rockchip: rga: fix rga offset lookup Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 231/449] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 232/449] KVM: arm64: PMU: Set raw values from user to PM{C,I}NTEN{SET,CLR}, PMOVS{SET,CLR} Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 233/449] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 234/449] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 235/449] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 236/449] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 237/449] KVM: arm64: Tear down vGIC on failed vCPU creation Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 238/449] KVM: arm64: Set HCR_EL2.TID1 unconditionally Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 239/449] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 240/449] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 241/449] tpm, tpm_tis: Fix timeout handling when waiting for TPM status Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 242/449] accel/ivpu: Fix PM related deadlocks in MS IOCTLs Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 243/449] media: ov08x40: Properly turn sensor on/off when runtime-suspended Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 244/449] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 245/449] media: hi556: Fix memory leak (on error) in hi556_check_hwcfg() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 246/449] media: visl: Fix ERANGE error when setting enum controls Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 247/449] media: platform: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 248/449] media: xilinx-tpg: fix double put in xtpg_parse_of() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 249/449] media: imx219: Adjust PLL settings based on the number of MIPI lanes Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 250/449] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.14 251/449] Revert "media: imx214: Fix the error handling in imx214_probe()" Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 252/449] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 253/449] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 254/449] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 255/449] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 256/449] media: nuvoton: Fix reference handling of ece_node Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 257/449] media: nuvoton: Fix reference handling of ece_pdev Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 258/449] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 259/449] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 260/449] media: i2c: imx319: Rectify runtime PM handling probe and remove Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 261/449] media: i2c: imx219: Rectify runtime PM handling in " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 262/449] media: i2c: imx214: Rectify probe error handling related to runtime PM Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 263/449] media: chips-media: wave5: Fix gray color on screen Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 264/449] media: chips-media: wave5: Avoid race condition in the interrupt handler Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 265/449] media: chips-media: wave5: Fix a hang after seeking Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 266/449] media: chips-media: wave5: Fix timeout while testing 10bit hevc fluster Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 267/449] irqchip/renesas-rzv2h: Fix wrong variable usage in rzv2h_tint_set_type() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 268/449] gve: unlink old napi only if page pool exists Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 269/449] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 270/449] mptcp: sockopt: fix getting freebind & transparent Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 271/449] block: make sure ->nr_integrity_segments is cloned in blk_rq_prep_clone Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 272/449] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 273/449] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 274/449] net: dsa: mv88e6xxx: fix internal PHYs " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 275/449] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 276/449] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 277/449] Revert "wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO" Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 278/449] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 279/449] wifi: mt76: mt792x: re-register CHANCTX_STA_CSA only for the mt7921 series Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 280/449] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 281/449] wifi: mt76: mt7925: ensure wow pattern command align fw format Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 282/449] wifi: mt76: mt7925: fix country count limitation for CLC Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 283/449] wifi: mt76: mt7925: fix the wrong link_idx when a p2p_device is present Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 284/449] wifi: mt76: mt7925: fix the wrong simultaneous cap for MLO Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 285/449] wifi: mt76: mt7925: adjust rm BSS flow to prevent next connection failure Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 286/449] wifi: mt76: mt7925: integrate *mlo_sta_cmd and *sta_cmd Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 287/449] wifi: mt76: mt7925: update the power-saving flow Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 288/449] scsi: lpfc: Restore clearing of NLP_UNREG_INP in ndlp->nlp_flag Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 289/449] net: stmmac: Fix accessing freed irq affinity_hint Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 290/449] io_uring/net: fix accept multishot handling Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 291/449] io_uring/net: fix io_req_post_cqe abuse by send bundle Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 292/449] io_uring/kbuf: reject zero sized provided buffers Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 293/449] ASoC: codecs: wcd937x: fix a potential memory leak in wcd937x_soc_codec_probe() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 294/449] ASoC: q6apm: add q6apm_get_hw_pointer helper Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 295/449] ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 296/449] ASoC: q6apm-dai: make use of q6apm_get_hw_pointer Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 297/449] ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 298/449] ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 299/449] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 300/449] ALSA: hda/realtek: Enable Mute LED on HP OMEN 16 Laptop xd000xx Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 301/449] accel/ivpu: Fix warning in ivpu_ipc_send_receive_internal() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 302/449] accel/ivpu: Fix deadlock in ivpu_ms_cleanup() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 303/449] arm/crc-t10dif: fix use of out-of-scope array in crc_t10dif_arch() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 304/449] arm64/crc-t10dif: " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 305/449] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 306/449] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 307/449] f2fs: fix the missing write pointer correction Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 308/449] f2fs: fix to avoid atomicity corruption of atomic file Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 309/449] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 310/449] udf: Fix inode_getblk() return value Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.14 311/449] tpm: do not start chip while suspended Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 312/449] svcrdma: do not unregister device for listeners Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 313/449] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 314/449] smb311 client: fix missing tcon check when mounting with linux/posix extensions Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 315/449] ima: limit the number of open-writers integrity violations Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 316/449] ima: limit the number of ToMToU " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 317/449] igc: Fix XSK queue NAPI ID mapping Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 318/449] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 319/449] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 320/449] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 321/449] kbuild: exclude .rodata.(cst|str)* when building ranges Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 322/449] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 323/449] leds: rgb: leds-qcom-lpg: Fix pwm resolution max for Hi-Res PWMs Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 324/449] leds: rgb: leds-qcom-lpg: Fix calculation of best period " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 325/449] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 326/449] mailbox: tegra-hsp: Define dimensioning masks in SoC data Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 327/449] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 328/449] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 329/449] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 330/449] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 331/449] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 332/449] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 333/449] mtd: spinand: Fix build with gcc < 7.5 Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 334/449] arm64: mops: Do not dereference src reg for a set operation Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 335/449] arm64: tegra: Remove the Orin NX/Nano suspend key Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 336/449] arm64: mm: Correct the update of max_pfn Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 337/449] arm64: dts: ti: k3-j784s4-j742s2-main-common: Correct the GICD size Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 338/449] arm64: dts: ti: k3-j784s4-j742s2-main-common: Fix serdes_ln_ctrl reg-masks Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 339/449] arm64: dts: mediatek: mt8188: Assign apll1 clock as parent to avoid hang Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 340/449] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 341/449] arm64: dts: exynos: gs101: disable pinctrl_gsacore node Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 342/449] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 343/449] btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 344/449] btrfs: tests: fix chunk map leak after failure to add it to the tree Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 345/449] btrfs: zoned: fix zone activation with missing devices Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 346/449] btrfs: zoned: fix zone finishing " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 347/449] iommufd: Fix uninitialized rc in iommufd_access_rw() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 348/449] iommu/tegra241-cmdqv: Fix warnings due to dmam_free_coherent() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 349/449] iommu/vt-d: Put IRTE back into posted MSI mode if vCPU posting is disabled Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 350/449] iommu/vt-d: Dont clobber posted vCPU IRTE when host IRQ affinity changes Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 351/449] iommu/vt-d: Fix possible circular locking dependency Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 352/449] iommu/vt-d: Wire up irq_ack() to irq_move_irq() for posted MSIs Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 353/449] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 354/449] sparc/mm: avoid calling arch_enter/leave_lazy_mmu() in set_ptes Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 355/449] net: Fix null-ptr-deref by sock_lock_init_class_and_name() and rmmod Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 356/449] mm/damon/ops: have damon_get_folio return folio even for tail pages Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 357/449] mm/damon: avoid applying DAMOS action to same entity multiple times Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 358/449] mm/rmap: reject hugetlb folios in folio_make_device_exclusive() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 359/449] mm: make page_mapped_in_vma() hugetlb walk aware Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 360/449] mm: fix lazy mmu docs and usage Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 361/449] mm/mremap: correctly handle partial mremap() of VMA starting at 0 Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 362/449] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 363/449] mm/userfaultfd: fix release hang over concurrent GUP Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 364/449] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 365/449] mm/hugetlb: move hugetlb_sysctl_init() to the __init section Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 366/449] mm/hwpoison: introduce folio_contain_hwpoisoned_page() helper Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 367/449] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 368/449] x86/xen: fix balloon target initialization for PVH dom0 Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 369/449] uprobes: Avoid false-positive lockdep splat on CONFIG_PREEMPT_RT=y in the ri_timer() uprobe timer callback, use raw_write_seqcount_*() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 370/449] tracing: fprobe: Fix to lock module while registering fprobe Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.14 371/449] tracing: fprobe events: Fix possible UAF on modules Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 372/449] tracing: Do not add length to print format in synthetic events Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 373/449] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 374/449] CIFS: Propagate min offload along with other parameters from primary to secondary channels Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 375/449] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 376/449] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 377/449] cifs: Ensure that all non-client-specific reparse points are processed by the server Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 378/449] clk: renesas: r9a07g043: Fix HP clock source for RZ/Five Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 379/449] clk: qcom: clk-branch: Fix invert halt status bit check for votable clocks Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 380/449] clk: qcom: gdsc: Release pm subdomains in reverse add order Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 381/449] clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 382/449] clk: qcom: gdsc: Set retain_ff before moving to HW CTRL Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 383/449] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 384/449] crypto: ccp - Fix uAPI definitions of PSP errors Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 385/449] dlm: fix error if inactive rsb is not hashed Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 386/449] dlm: fix error if active " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 387/449] dm-ebs: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 388/449] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 389/449] dm-integrity: fix non-constant-time tag verification Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 390/449] dm-verity: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 391/449] dt-bindings: coresight: qcom,coresight-tpda: Fix too many reg Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 392/449] dt-bindings: coresight: qcom,coresight-tpdm: " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 393/449] firmware: cs_dsp: test_control_parse: null-terminate test strings Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 394/449] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 395/449] ftrace: Properly merge notrace hashes Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 396/449] fuse: {io-uring} Fix a possible req cancellation race Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 397/449] gpio: mpc8xxx: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 398/449] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 399/449] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 400/449] gve: handle overflow when reporting TX consumed descriptors Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 401/449] KVM: Allow building irqbypass.ko as as module when kvm.ko is a module Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 402/449] KVM: PPC: Enable CAP_SPAPR_TCE_VFIO on pSeries KVM guests Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 403/449] KVM: x86: Explicitly zero-initialize on-stack CPUID unions Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 404/449] KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 405/449] scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 406/449] landlock: Move code to ease future backports Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 407/449] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 408/449] landlock: Add erratum for TCP fix Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 409/449] landlock: Always allow signals between threads of the same process Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 410/449] landlock: Prepare to add second errata Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 411/449] selftests/landlock: Split signal_scoping_threads tests Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 412/449] selftests/landlock: Add a new test for setuid() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 413/449] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 414/449] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 415/449] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 416/449] net: mana: Switch to page pool for jumbo frames Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 417/449] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 418/449] of/irq: Fix device node refcount leakage in API of_irq_parse_one() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 419/449] of/irq: Fix device node refcount leakage in API of_irq_parse_raw() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 420/449] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 421/449] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 422/449] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 423/449] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 424/449] PCI: j721e: Fix the value of .linkdown_irq_regfield for J784S4 Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 425/449] PCI: layerscape: Fix arg_count to syscon_regmap_lookup_by_phandle_args() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 426/449] PCI: pciehp: Avoid unnecessary device replacement check Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 427/449] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 428/449] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 429/449] PCI: Fix wrong length of devres array Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 430/449] phy: freescale: imx8m-pcie: assert phy reset and perst in power off Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.14 431/449] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 432/449] pinctrl: samsung: add support for eint_fltcon_offset Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 433/449] ring-buffer: Use flush_kernel_vmap_range() over flush_dcache_folio() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 434/449] s390/pci: Fix zpci_bus_is_isolated_vf() for non-VFs Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 435/449] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 436/449] s390: Fix linker error when -no-pie option is unavailable Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 437/449] sched_ext: create_dsq: Return -EEXIST on duplicate request Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 438/449] selftests: mptcp: close fd_in before returning in main_loop Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 439/449] selftests: mptcp: fix incorrect fd checks " Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 440/449] spi: fsl-qspi: use devm function instead of driver remove Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 441/449] spi: fsl-qspi: Fix double cleanup in probe error path Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 442/449] thermal/drivers/mediatek/lvts: Disable monitor mode during suspend Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 443/449] thermal/drivers/mediatek/lvts: Disable Stage 3 thermal threshold Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 444/449] wifi: ath11k: update channel list in worker when wait flag is set Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 445/449] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 446/449] iommufd: Make attach_handle generic than fault specific Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 447/449] iommufd: Fail replace if device has not been attached Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 448/449] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.14 449/449] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-17 18:53 ` [PATCH 6.14 000/449] 6.14.3-rc1 review Ronald Warsow
2025-04-17 19:53 ` Florian Fainelli
2025-04-18  0:02 ` Peter Schneider
2025-04-18  6:30 ` Naresh Kamboju
2025-04-18 11:03   ` Greg Kroah-Hartman
2025-04-22 10:07     ` Niklas Schnelle
2025-04-18  7:53 ` Naresh Kamboju
2025-04-23 16:25   ` Dan Carpenter
2025-04-23 17:22   ` [PATCH] rpmsg: qcom_smd: Fix uninitialized return variable in __qcom_smd_send() Dan Carpenter
2025-04-24  7:02     ` Abel Vesa
2025-04-25  6:06     ` Naresh Kamboju
2025-04-25  8:17       ` Dan Carpenter
2025-05-08  6:40     ` Dan Carpenter
2025-05-08  6:46       ` Greg Kroah-Hartman
2025-05-08  6:48         ` Dan Carpenter
2025-05-08  6:50           ` Dan Carpenter
2025-04-18 11:38 ` [PATCH 6.14 000/449] 6.14.3-rc1 review Pavel Machek
2025-04-18 14:30 ` Shuah Khan

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=20250417175120.039482205@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=boqun.feng@gmail.com \
    --cc=bpf@vger.kernel.org \
    --cc=kent.overstreet@linux.dev \
    --cc=patches@lists.linux.dev \
    --cc=paulmck@kernel.org \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+16a19b06125a2963eaee@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

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

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