public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Viresh Kumar <viresh.kumar@linaro.org>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Subject: [PATCH 6.19 215/342] cpufreq: Dont skip cpufreq_frequency_table_cpuinfo()
Date: Tue, 31 Mar 2026 18:20:48 +0200	[thread overview]
Message-ID: <20260331161806.889242832@linuxfoundation.org> (raw)
In-Reply-To: <20260331161758.909578033@linuxfoundation.org>

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

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

From: Viresh Kumar <viresh.kumar@linaro.org>

commit 8f13c0c6cb75cc4421d5a60fc060e9e6fd9d1097 upstream.

The commit 6db0f533d320 ("cpufreq: preserve freq_table_sorted
across suspend/hibernate") unintentionally made a change where
cpufreq_frequency_table_cpuinfo() isn't getting called anymore
for old policies getting re-initialized.

This leads to potentially invalid values of policy->max and
policy->cpuinfo_max_freq.

Fix the issue by reverting the original commit and adding the condition
for just the sorting function.

Fixes: 6db0f533d320 ("cpufreq: preserve freq_table_sorted across suspend/hibernate")
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: 6.19+ <stable@vger.kernel.org> # 6.19+
Link: https://patch.msgid.link/65ba5c45749267c82e8a87af3dc788b37a0b3f48.1773998611.git.viresh.kumar@linaro.org
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/cpufreq/cpufreq.c    |    9 +++------
 drivers/cpufreq/freq_table.c |    4 ++++
 2 files changed, 7 insertions(+), 6 deletions(-)

--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -1421,12 +1421,9 @@ static int cpufreq_policy_online(struct
 		 * If there is a problem with its frequency table, take it
 		 * offline and drop it.
 		 */
-		if (policy->freq_table_sorted != CPUFREQ_TABLE_SORTED_ASCENDING &&
-		    policy->freq_table_sorted != CPUFREQ_TABLE_SORTED_DESCENDING) {
-			ret = cpufreq_table_validate_and_sort(policy);
-			if (ret)
-				goto out_offline_policy;
-		}
+		ret = cpufreq_table_validate_and_sort(policy);
+		if (ret)
+			goto out_offline_policy;
 
 		/* related_cpus should at least include policy->cpus. */
 		cpumask_copy(policy->related_cpus, policy->cpus);
--- a/drivers/cpufreq/freq_table.c
+++ b/drivers/cpufreq/freq_table.c
@@ -360,6 +360,10 @@ int cpufreq_table_validate_and_sort(stru
 	if (policy_has_boost_freq(policy))
 		policy->boost_supported = true;
 
+	if (policy->freq_table_sorted == CPUFREQ_TABLE_SORTED_ASCENDING ||
+	    policy->freq_table_sorted == CPUFREQ_TABLE_SORTED_DESCENDING)
+		return 0;
+
 	return set_freq_table_sorted(policy);
 }
 



  parent reply	other threads:[~2026-03-31 16:40 UTC|newest]

Thread overview: 365+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-31 16:17 [PATCH 6.19 000/342] 6.19.11-rc1 review Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 001/342] cxl/port: Fix use after free of parent_port in cxl_detach_ep() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 002/342] cxl/region: Fix leakage in __construct_region() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 003/342] bpf: Reset register ID for BPF_END value tracking Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 004/342] bpf: Fix constant blinding for PROBE_MEM32 stores Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 005/342] x86/perf: Make sure to program the counter value for stopped events on migration Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 006/342] perf: Make sure to use pmu_ctx->pmu for groups Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 007/342] s390/mm: Add missing secure storage access fixups for donated memory Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 008/342] objtool/klp: fix data alignment in __clone_symbol() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 009/342] livepatch/klp-build: Fix inconsistent kernel version Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 010/342] cxl/hdm: Avoid incorrect DVSEC fallback when HDM decoders are enabled Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 011/342] hwmon: axi-fan: dont use driver_override as IRQ name Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 012/342] sh: platform_early: remove pdev->driver_override check Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 013/342] driver core: generalize driver_override in struct device Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 014/342] driver core: platform: use generic driver_override infrastructure Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 015/342] perf metricgroup: Fix metricgroup__has_metric_or_groups() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 016/342] bpf: Release module BTF IDR before module unload Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 017/342] cxl: Adjust the startup priority of cxl_pmem to be higher than that of cxl_acpi Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 018/342] bpf: Fix exception exit lock checking for subprogs Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 019/342] bpf: Fix undefined behavior in interpreter sdiv/smod for INT_MIN Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 020/342] bpf: Fix unsound scalar forking in maybe_fork_scalars() for BPF_OR Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 021/342] tracing: Revert "tracing: Remove pid in task_rename tracing output" Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 022/342] platform/x86: hp-wmi: Add Omen 16-wf0xxx fan and thermal support Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 023/342] HID: asus: avoid memory leak in asus_report_fixup() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 024/342] platform/x86: intel-hid: Add Dell 14 Plus 2-in-1 to dmi_vgbs_allow_list Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 025/342] nvme-pci: cap queue creation to used queues Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 026/342] nvme-fabrics: use kfree_sensitive() for DHCHAP secrets Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 027/342] platform/x86: hp-wmi: Add Omen 16-xd0xxx fan and thermal support Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 028/342] platform/x86: intel-hid: Enable 5-button array on ThinkPad X1 Fold 16 Gen 1 Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 029/342] platform/x86: touchscreen_dmi: Add quirk for y-inverted Goodix touchscreen on SUPI S10 Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 030/342] platform/x86: hp-wmi: add Omen 14-fb1xxx (board 8E41) support Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 031/342] nvme-pci: ensure were polling a polled queue Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 032/342] HID: magicmouse: fix battery reporting for Apple Magic Trackpad 2 Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 033/342] HID: magicmouse: avoid memory leak in magicmouse_report_fixup() Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 034/342] platform/x86: hp-wmi: Add Victus 16-d0xxx support Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 035/342] HID: intel-ish-hid: ipc: Add Nova Lake-H/S PCI device IDs Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 036/342] platform/x86: oxpec: Add support for OneXPlayer APEX Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 037/342] HID: apple: Add EPOMAKER TH87 to the non-apple keyboards list Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 038/342] platform/x86: oxpec: Add support for OneXPlayer X1z Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 039/342] net: usb: r8152: add TRENDnet TUC-ET2G Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 040/342] kbuild: install-extmod-build: Package resolve_btfids if necessary Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 041/342] platform/x86: oxpec: Add support for Aokzoe A2 Pro Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 042/342] platform/x86: oxpec: Add support for OneXPlayer X1 Air Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 043/342] HID: mcp2221: cancel last I2C command on read error Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 044/342] HID: asus: add xg mobile 2023 external hardware support Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 045/342] module: Fix kernel panic when a symbol st_shndx is out of bounds Greg Kroah-Hartman
2026-03-31 16:17 ` [PATCH 6.19 046/342] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_set_reg() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 047/342] scsi: mpi3mr: Clear reset history on ready and recheck state after timeout Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 048/342] ASoC: rt1321: fix DMIC ch2/3 mask issue Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 049/342] scsi: devinfo: Add BLIST_SKIP_IO_HINTS for Iomega ZIP Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 050/342] ASoC: Intel: sof_sdw: Add quirk for Alienware Area 51 (2025) 0CCD SKU Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 051/342] ALSA: hda/hdmi: Add Tegra238 HDA codec device ID Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 052/342] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 053/342] ASoC: cs35l56: Only patch ASP registers if the DAI is part of a DAIlink Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 054/342] spi: spi-dw-dma: fix print error log when wait finish transaction Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 055/342] dma-buf: Include ioctl.h in UAPI header Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 056/342] block: break pcpu_alloc_mutex dependency on freeze_lock Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 057/342] ALSA: hda/senary: Ensure EAPD is enabled during init Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 058/342] drm/ttm/tests: Fix build failure on PREEMPT_RT Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 059/342] ASoC: amd: acp: Add ACP6.3 match entries for Cirrus Logic parts Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 060/342] bpf: Fix u32/s32 bounds when ranges cross min/max boundary Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 061/342] HID: apple: avoid memory leak in apple_report_fixup() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 062/342] sched_ext: Use WRITE_ONCE() for the write side of dsq->seq update Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 063/342] btrfs: set BTRFS_ROOT_ORPHAN_CLEANUP during subvol create Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 064/342] objtool: Use HOSTCFLAGS for HAVE_XXHASH test Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 065/342] powerpc64/ftrace: fix OOL stub count with clang Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 066/342] ALSA: hda/realtek: add HP Laptop 14s-dr5xxx mute LED quirk Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 067/342] objtool/klp: Disable unsupported pr_debug() usage Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 068/342] ALSA: hda/realtek: Add quirk for Gigabyte Technology to fix headphone Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 069/342] ALSA: hda/realtek: Add headset jack quirk for Thinkpad X390 Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 070/342] objtool: Handle Clang RSP musical chairs Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 071/342] nvmet: move async event work off nvmet-wq Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 072/342] drm/amdgpu: fix gpu idle power consumption issue for gfx v12 Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 073/342] usb: core: new quirk to handle devices with zero configurations Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 074/342] spi: intel-pci: Add support for Nova Lake mobile SPI flash Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 075/342] ALSA: usb-audio: Add iface reset and delay quirk for SPACETOUCH USB Audio Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 076/342] ALSA: hda/realtek: add quirk for ASUS UM6702RC Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 077/342] i3c: master: dw-i3c: Fix missing of_node for virtual I2C adapter Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 078/342] xfrm: add missing extack for XFRMA_SA_PCPU in add_acquire and allocspi Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 079/342] xfrm: fix the condition on x->pcpu_num in xfrm_sa_len Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 080/342] xfrm: call xdo_dev_state_delete during state update Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 081/342] esp: fix skb leak with espintcp and async crypto Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 082/342] pinctrl: renesas: rzt2h: Fix device node leak in rzt2h_gpio_register() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 083/342] xfrm: iptfs: fix skb_put() panic on non-linear skb during reassembly Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 084/342] pinctrl: qcom: spmi-gpio: implement .get_direction() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 085/342] pinctrl: renesas: rza1: Normalize return value of gpio_get() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 086/342] xfrm: Fix work re-schedule after cancel in xfrm_nat_keepalive_net_fini() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 087/342] xfrm: prevent policy_hthresh.work from racing with netns teardown Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 088/342] af_key: validate families in pfkey_send_migrate() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 089/342] dma: swiotlb: add KMSAN annotations to swiotlb_bounce() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 090/342] erofs: set fileio bio failed in short read case Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 091/342] can: statistics: add missing atomic access in hot path Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 092/342] pinctrl: stm32: fix HDP driver dependency on GPIO_GENERIC Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 093/342] Bluetooth: L2CAP: Fix stack-out-of-bounds read in l2cap_ecred_conn_req Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 094/342] Bluetooth: L2CAP: Validate PDU length before reading SDU length in l2cap_ecred_data_rcv() Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 095/342] Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 096/342] Bluetooth: MGMT: Fix dangling pointer on mgmt_add_adv_patterns_monitor_complete Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 097/342] Bluetooth: hci_ll: Fix firmware leak on error path Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 098/342] Bluetooth: L2CAP: Fix null-ptr-deref on l2cap_sock_ready_cb Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 099/342] pinctrl: mediatek: common: Fix probe failure for devices without EINT Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 100/342] ionic: fix persistent MAC address override on PF Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 101/342] nfc: nci: fix circular locking dependency in nci_close_device Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 102/342] net: openvswitch: Avoid releasing netdev before teardown completes Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 103/342] openvswitch: defer tunnel netdev_put to RCU release Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 104/342] openvswitch: validate MPLS set/set_masked payload length Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 105/342] net/smc: fix double-free of smc_spd_priv when tee() duplicates splice pipe buffer Greg Kroah-Hartman
2026-03-31 16:18 ` [PATCH 6.19 106/342] rtnetlink: count IFLA_PARENT_DEV_{NAME,BUS_NAME} in if_nlmsg_size Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 107/342] rtnetlink: count IFLA_INFO_SLAVE_KIND " Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 108/342] net: bcmasp: streamline early exit in probe Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 109/342] net: bcmasp: fix double free of WoL irq Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 110/342] net: bcmasp: fix double disable of clk Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 111/342] platform/x86: ISST: Check HWP support before MSR access Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 112/342] platform/x86: lenovo: wmi-gamezone: Drop gz_chain_head Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 113/342] platform/olpc: olpc-xo175-ec: Fix overflow error message to print inlen Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 114/342] platform/x86: intel-hid: disable wakeup_mode during hibernation Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 115/342] ice: fix inverted ready check for VF representors Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 116/342] ice: use ice_update_eth_stats() for representor stats Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 117/342] iavf: fix out-of-bounds writes in iavf_get_ethtool_stats() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 118/342] ipv6: Remove permanent routes from tb6_gc_hlist when all exceptions expire Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 119/342] ipv6: Dont remove permanent routes with exceptions from tb6_gc_hlist Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 120/342] net: fix fanout UAF in packet_release() via NETDEV_UP race Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 121/342] net: airoha: add RCU lock around dev_fill_forward_path Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 122/342] net: b44: always select CONFIG_FIXED_PHY Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 123/342] udp: Fix wildcard bind conflict check when using hash2 Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 124/342] net: enetc: fix the output issue of ethtool --show-ring Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 125/342] virtio-net: correct hdr_len handling for VIRTIO_NET_F_GUEST_HDRLEN Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 126/342] virtio-net: correct hdr_len handling for tunnel gso Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 127/342] team: fix header_ops type confusion with non-Ethernet ports Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 128/342] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 129/342] net: lan743x: fix duplex configuration in mac_link_up Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 130/342] rtnetlink: fix leak of SRCU struct in rtnl_link_register Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 131/342] net_sched: codel: fix stale state for empty flows in fq_codel Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 132/342] dma-mapping: add missing `inline` for `dma_free_attrs` Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 133/342] Bluetooth: L2CAP: Fix send LE flow credits in ACL link Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 134/342] Bluetooth: btintel: serialize btintel_hw_error() with hci_req_sync_lock Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 135/342] Bluetooth: L2CAP: Fix not tracking outstanding TX ident Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 136/342] Bluetooth: L2CAP: Fix deadlock in l2cap_conn_del() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 137/342] Bluetooth: L2CAP: Fix ERTM re-init and zero pdu_len infinite loop Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 138/342] Bluetooth: btusb: clamp SCO altsetting table indices Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 139/342] tls: Purge async_hold in tls_decrypt_async_wait() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 140/342] netfilter: nfnetlink_log: fix uninitialized padding leak in NFULA_PAYLOAD Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 141/342] netfilter: ip6t_rt: reject oversized addrnr in rt_mt6_check() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 142/342] netfilter: nft_set_rbtree: revisit array resize logic Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 143/342] netfilter: nf_conntrack_expect: skip expectations in other netns via proc Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 144/342] netfilter: nf_conntrack_sip: fix use of uninitialized rtp_addr in process_sdp Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 145/342] netfilter: ctnetlink: use netlink policy range checks Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 146/342] net: macb: use the current queue number for stats Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 147/342] RDMA/bng_re: Fix silent failure in HWRM version query Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 148/342] RDMA/efa: Check stored completion CTX command ID with received one Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 149/342] RDMA/efa: Improve admin completion context state machine Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 150/342] RDMA/efa: Fix use of completion ctx after free Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 151/342] regmap: Synchronize cache for the page selector Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 152/342] ALSA: hda/realtek: Sequence GPIO2 on Star Labs StarFighter Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 153/342] RDMA/rw: Fall back to direct SGE on MR pool exhaustion Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 154/342] RDMA/efa: Fix possible deadlock Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 155/342] ALSA: usb-audio: Exclude Scarlett 2i2 1st Gen from SKIP_IFACE_SETUP Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 156/342] RDMA/irdma: Initialize free_qp completion before using it Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 157/342] RDMA/irdma: Update ibqp state to error if QP is already in error state Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 158/342] RDMA/irdma: Remove a NOP wait_event() in irdma_modify_qp_roce() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 159/342] RDMA/irdma: Clean up unnecessary dereference of event->cm_node Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 160/342] RDMA/irdma: Remove reset check from irdma_modify_qp_to_err() Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 161/342] RDMA/irdma: Fix deadlock during netdev reset with active connections Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 162/342] RDMA/irdma: Return EINVAL for invalid arp index error Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 163/342] RDMA/irdma: Harden depth calculation functions Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 164/342] ASoC: simple-card-utils: Check value of is_playback_only and is_capture_only Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 165/342] ASoC: fsl: imx-card: initialize playback_only and capture_only Greg Kroah-Hartman
2026-03-31 16:19 ` [PATCH 6.19 166/342] scsi: scsi_transport_sas: Fix the maximum channel scanning issue Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 167/342] x86/efi: efi_unmap_boot_services: fix calculation of ranges_to_free size Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 168/342] drm/mediatek: dsi: Store driver data before invoking mipi_dsi_host_register Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 169/342] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 170/342] PM: hibernate: Drain trailing zero pages on userspace restore Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 171/342] PM: sleep: Drop spurious WARN_ON() from pm_restore_gfp_mask() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 172/342] drm/xe/pf: Fix use-after-free in migration restore Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 173/342] spi: sn-f-ospi: Fix resource leak in f_ospi_probe() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 174/342] ASoC: Intel: catpt: Fix the device initialization Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 175/342] spi: meson-spicc: Fix double-put in remove path Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 176/342] drm/amd/display: Do not skip unrelated mode changes in DSC validation Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 177/342] ASoC: dt-bindings: stm32: Fix incorrect compatible string in stm32h7-sai match Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 178/342] rust: regulator: do not assume that regulator_get() returns non-null Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 179/342] drm/xe: Implement recent spec updates to Wa_16025250150 Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 180/342] spi: use generic driver_override infrastructure Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 181/342] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 182/342] drm/amdgpu: Fix fence put before wait in amdgpu_amdkfd_submit_ib Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 183/342] hwmon: (adm1177) fix sysfs ABI violation and current unit conversion Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 184/342] ASoC: SDCA: fix finding wrong entity Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 185/342] hwmon: (pmbus) Mark lowest/average/highest/rated attributes as read-only Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 186/342] hwmon: (pmbus) Introduce the concept of "write-only" attributes Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 187/342] hwmon: (pmbus/core) Protect regulator operations with mutex Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 188/342] sysctl: fix uninitialized variable in proc_do_large_bitmap Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 189/342] ASoC: adau1372: Fix unchecked clk_prepare_enable() return value Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 190/342] ASoC: adau1372: Fix clock leak on PLL lock failure Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 191/342] spi: spi-fsl-lpspi: fix teardown order issue (UAF) Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 192/342] io_uring/fdinfo: fix SQE_MIXED SQE displaying Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 193/342] io_uring/fdinfo: fix OOB read in SQE_MIXED wrap check Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 194/342] ALSA: usb-audio: Exclude Scarlett 2i4 1st Gen from SKIP_IFACE_SETUP Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 195/342] s390/syscalls: Add spectre boundary for syscall dispatch table Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 196/342] s390/barrier: Make array_index_mask_nospec() __always_inline Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 197/342] s390/entry: Scrub r12 register on kernel entry Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 198/342] tracing: Drain deferred trigger frees if kthread creation fails Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 199/342] tracing: Fix potential deadlock in cpu hotplug with osnoise Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 200/342] drm/xe: always keep track of remap prev/next Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 201/342] ksmbd: replace hardcoded hdr2_len with offsetof() in smb2_calc_max_out_buf_len() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 202/342] ksmbd: fix potencial OOB in get_file_all_info() for compound requests Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 203/342] ksmbd: fix memory leaks and NULL deref in smb2_lock() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 204/342] ksmbd: do not expire session on binding failure Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 205/342] Revert "ALSA: hda/intel: Add MSI X870E Tomahawk to denylist" Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 206/342] ALSA: hda/realtek: add quirk for ASUS Strix G16 G615JMR Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 207/342] ALSA: firewire-lib: fix uninitialized local variable Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 208/342] accel/ivpu: Add disable clock relinquish workaround for NVL-A0 Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 209/342] ASoC: codecs: wcd934x: fix typo in dt parsing Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 210/342] ASoC: sma1307: fix double free of devm_kzalloc() memory Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 211/342] ASoC: SOF: ipc4-topology: Allow bytes controls without initial payload Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 212/342] can: gw: fix OOB heap access in cgw_csum_crc8_rel() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 213/342] can: isotp: fix tx.buf use-after-free in isotp_sendmsg() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 214/342] can: netlink: can_changelink(): add missing error handling to call can_ctrlmode_changelink() Greg Kroah-Hartman
2026-03-31 16:20 ` Greg Kroah-Hartman [this message]
2026-03-31 16:20 ` [PATCH 6.19 216/342] cpufreq: conservative: Reset requested_freq on limits change Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 217/342] kbuild: Delete .builtin-dtbs.S when running make clean Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 218/342] mm/damon/stat: monitor all System RAM resources Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 219/342] thermal: intel: int340x: soc_slider: Set offset only for balanced mode Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 220/342] RDMA/ionic: Preserve and set Ethernet source MAC after ib_ud_header_init() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 221/342] platform/x86: ISST: Correct locked bit width Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 222/342] KVM: arm64: Discard PC update state on vcpu reset Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 223/342] KVM: arm64: Fix the descriptor address in __kvm_at_swap_desc() Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 224/342] hwmon: (pmbus/ina233) Fix error handling and sign extension in shunt voltage read Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 225/342] hwmon: (pmbus/isl68137) Add mutex protection for AVS enable sysfs attributes Greg Kroah-Hartman
2026-03-31 16:20 ` [PATCH 6.19 226/342] hwmon: (peci/cputemp) Fix crit_hyst returning delta instead of absolute temperature Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 227/342] hwmon: (peci/cputemp) Fix off-by-one in cputemp_is_visible() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 228/342] media: mc, v4l2: serialize REINIT and REQBUFS with req_queue_mutex Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 229/342] media: verisilicon: Fix kernel panic due to __initconst misuse Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 230/342] xfrm: iptfs: validate inner IPv4 header length in IPTFS payload Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 231/342] xfrm: iptfs: only publish mode_data after clone setup Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 232/342] virt: tdx-guest: Fix handling of host controlled quote buffer length Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 233/342] virtio_net: Fix UAF on dst_ops when IFF_XMIT_DST_RELEASE is cleared and napi_tx is false Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 234/342] vfio/pci: Fix double free in dma-buf feature Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 235/342] erofs: add GFP_NOIO in the bio completion if needed Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 236/342] alarmtimer: Fix argument order in alarm_timer_forward() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 237/342] mm/huge_memory: fix folio isnt locked in softleaf_to_folio() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 238/342] writeback: dont block sync for filesystems with no data integrity guarantees Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 239/342] x86/cpu: Enable FSGSBASE early in cpu_init_exception_handling() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 240/342] x86/cpu: Remove X86_CR4_FRED from the CR4 pinned bits mask Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 241/342] x86/fred: Fix early boot failures on SEV-ES/SNP guests Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 242/342] phy: qcom: qmp-ufs: Fix SM8650 PCS table for Gear 4 Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 243/342] ovl: make fsync after metadata copy-up opt-in mount option Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 244/342] ovl: fix wrong detection of 32bit inode numbers Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 245/342] scsi: ibmvfc: Fix OOB access in ibmvfc_discover_targets_done() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 246/342] scsi: ses: Handle positive SCSI error from ses_recv_diag() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 247/342] net: macb: Move devm_{free,request}_irq() out of spin lock area Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 248/342] net: macb: Protect access to net_device::ip_ptr with RCU lock Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 249/342] net: macb: Use dev_consume_skb_any() to free TX SKBs Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 250/342] KVM: x86/mmu: Drop/zap existing present SPTE even when creating an MMIO SPTE Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 251/342] KVM: x86/mmu: Only WARN in direct MMUs when overwriting shadow-present SPTE Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 252/342] jbd2: gracefully abort on checkpointing state corruptions Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 253/342] irqchip/qcom-mpm: Add missing mailbox TX done acknowledgment Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 254/342] iomap: fix invalid folio access when i_blkbits differs from I/O granularity Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 255/342] i2c: designware: amdisp: Fix resume-probe race condition issue Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 256/342] futex: Clear stale exiting pointer in futex_lock_pi() retry path Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 257/342] i2c: imx: fix i2c issue when reading multiple messages Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 258/342] i2c: imx: ensure no clock is generated after last read Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 259/342] dmaengine: fsl-edma: fix channel parameter config for fixed channel requests Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 260/342] dmaengine: sh: rz-dmac: Protect the driver specific lists Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 261/342] dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 262/342] drm/amdgpu: prevent immediate PASID reuse case Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 263/342] drm/amdgpu: fix strsep() corrupting lockup_timeout on multi-GPU (v3) Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 264/342] drm/amd/display: Fix DCE LVDS handling Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 265/342] drm/amd/display: Fix drm_edid leak in amdgpu_dm Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 266/342] drm/amd/display: check if ext_caps is valid in BL setup Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 267/342] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 268/342] drm/i915: Order OP vs. timeout correctly in __wait_for() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 269/342] drm/i915: Unlink NV12 planes earlier Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 270/342] LoongArch: Fix missing NULL checks for kstrdup() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 271/342] LoongArch: vDSO: Emit GNU_EH_FRAME correctly Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 272/342] LoongArch: Workaround LS2K/LS7A GPU DMA hang bug Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 273/342] LoongArch: KVM: Make kvm_get_vcpu_by_cpuid() more robust Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 274/342] LoongArch: KVM: Fix base address calculation in kvm_eiointc_regs_access() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 275/342] LoongArch: KVM: Handle the case that EIOINTCs coremap is empty Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 276/342] drm/amd/pm: Return -EOPNOTSUPP for unsupported OD_MCLK on smu_v13_0_6 Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 277/342] mm/memory: fix PMD/PUD checks in follow_pfnmap_start() Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 278/342] mm/mseal: update VMA end correctly on merge Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 279/342] mm/damon/sysfs: fix param_ctx leak on damon_sysfs_new_test_ctx() failure Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 280/342] mm/damon/sysfs: check contexts->nr before accessing contexts_arr[0] Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 281/342] mm/damon/sysfs: check contexts->nr in repeat_call_fn Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 282/342] mm/pagewalk: fix race between concurrent split and refault Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 283/342] xfs: stop reclaim before pushing AIL during unmount Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 284/342] xfs: save ailp before dropping the AIL lock in push callbacks Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 285/342] xfs: avoid dereferencing log items after " Greg Kroah-Hartman
2026-03-31 16:21 ` [PATCH 6.19 286/342] xfs: scrub: unlock dquot before early return in quota scrub Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 287/342] xfs: fix ri_total validation in xlog_recover_attri_commit_pass2 Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 288/342] xfs: dont irele after failing to iget in xfs_attri_recover_work Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 289/342] xfs: remove file_path tracepoint data Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 290/342] ext4: fix journal credit check when setting fscrypt context Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 291/342] ext4: convert inline data to extents when truncate exceeds inline size Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 292/342] ext4: fix stale xarray tags after writeback Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 293/342] ext4: do not check fast symlink during orphan recovery Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 294/342] ext4: fix fsync(2) for nojournal mode Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 295/342] ext4: make recently_deleted() properly work with lazy itable initialization Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 296/342] ext4: replace BUG_ON with proper error handling in ext4_read_inline_folio Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 297/342] ext4: publish jinode after initialization Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 298/342] ext4: test if inodes all dirty pages are submitted to disk Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 299/342] ext4: validate p_idx bounds in ext4_ext_correct_indexes Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 300/342] ext4: avoid infinite loops caused by residual data Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 301/342] ext4: avoid allocate block from corrupted group in ext4_mb_find_by_goal() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 302/342] ext4: reject mount if bigalloc with s_first_data_block != 0 Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 303/342] ext4: fix use-after-free in update_super_work when racing with umount Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 304/342] ext4: fix the might_sleep() warnings in kvfree() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 305/342] ext4: handle wraparound when searching for blocks for indirect mapped blocks Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 306/342] ext4: fix iloc.bh leak in ext4_fc_replay_inode() error paths Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 307/342] ext4: always drain queued discard work in ext4_mb_release() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 308/342] arm64: dts: imx8mn-tqma8mqnl: fix LDO5 power off Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 309/342] powerpc64/bpf: do not increment tailcall count when prog is NULL Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 310/342] mm/damon/core: avoid use of half-online-committed context Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 311/342] rust: pin-init: internal: init: document load-bearing fact of field accessors Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 312/342] ksmbd: fix use-after-free and NULL deref in smb_grant_oplock() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 313/342] dmaengine: idxd: Fix crash when the event log is disabled Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 314/342] dmaengine: idxd: Fix possible invalid memory access after FLR Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 315/342] dmaengine: idxd: Fix not releasing workqueue on .release() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 316/342] dmaengine: idxd: Fix memory leak when a wq is reset Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 317/342] dmaengine: idxd: Fix freeing the allocated ida too late Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 318/342] dmaengine: idxd: Fix leaking event log memory Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 319/342] phy: ti: j721e-wiz: Fix device node reference leak in wiz_get_lane_phy_types() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 320/342] dmaengine: dw-edma: Fix multiple times setting of the CYCLE_STATE and CYCLE_BIT bits for HDMA Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 321/342] dmaengine: xilinx: xdma: Fix regmap init error handling Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 322/342] netfs: Fix kernel BUG in netfs_limit_iter() for ITER_KVEC iterators Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 323/342] netfs: Fix NULL pointer dereference in netfs_unbuffered_write() on retry Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 324/342] dmaengine: idxd: fix possible wrong descriptor completion in llist_abort_desc() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 325/342] dmaengine: xilinx: xilinx_dma: Fix dma_device directions Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 326/342] dmaengine: xilinx: xilinx_dma: Fix residue calculation for cyclic DMA Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 327/342] dmaengine: xilinx: xilinx_dma: Fix unmasked residue subtraction Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 328/342] dmaengine: xilinx_dma: Fix reset related timeout with two-channel AXIDMA Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 329/342] selftests/mount_setattr: increase tmpfs size for idmapped mount tests Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 330/342] netfs: Fix read abandonment during retry Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 331/342] btrfs: fix super block offset in error message in btrfs_validate_super() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 332/342] btrfs: fix leak of kobject name for sub-group space_info Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 333/342] btrfs: fix lost error when running device stats on multiple devices fs Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 334/342] xen/privcmd: unregister xenstore notifier on module exit Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 335/342] netfs: Fix the handling of stream->front by removing it Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 336/342] irqchip/renesas-rzv2h: Fix error path in rzv2h_icu_probe_common() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 337/342] futex: Require sys_futex_requeue() to have identical flags Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 338/342] futex: Fix UaF between futex_key_to_node_opt() and vma_replace_policy() Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 339/342] ext4: introduce EXPORT_SYMBOL_FOR_EXT4_TEST() helper Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 340/342] ext4: fix mballoc-test.c is not compiled when EXT4_KUNIT_TESTS=M Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 341/342] bug: avoid format attribute warning for clang as well Greg Kroah-Hartman
2026-03-31 16:22 ` [PATCH 6.19 342/342] Bluetooth: L2CAP: Fix regressions caused by reusing ident Greg Kroah-Hartman
2026-03-31 17:23 ` [PATCH 6.19 000/342] 6.19.11-rc1 review Ronald Warsow
2026-03-31 18:24 ` Dileep malepu
2026-03-31 21:18 ` François Valenduc
2026-04-01 18:20   ` François Valenduc
     [not found]     ` <2026040220-sincere-undaunted-65b5@gregkh>
     [not found]       ` <CACU-xRtcWU=RKOfhL+8B2YmYnPN-fxc+TYc4rjaQEFc5qAk1+g@mail.gmail.com>
     [not found]         ` <2026040243-dwelled-overdrive-51b3@gregkh>
2026-04-02 19:09           ` François Valenduc
2026-04-03  6:15             ` Greg Kroah-Hartman
2026-04-02  7:56   ` Thorsten Leemhuis
2026-03-31 21:52 ` Justin Forbes
2026-03-31 22:18 ` Florian Fainelli
2026-04-01 11:42   ` Greg Kroah-Hartman
2026-04-01  6:21 ` Peter Schneider
2026-04-01  6:45 ` Shung-Hsi Yu
2026-04-01  7:28 ` Brett A C Sheffield
2026-04-01  9:17 ` Ron Economos
2026-04-01  9:19 ` Jon Hunter
2026-04-01 10:06   ` Luna Jernberg
2026-04-01 11:14 ` Takeshi Ogasawara
2026-04-01 15:58 ` Jeffrin Thalakkottoor
2026-04-01 16:09 ` Shuah Khan
2026-04-01 17:35 ` Mark Brown
2026-04-02  9:43 ` Barry K. Nathan
2026-04-02 12:04 ` Miguel Ojeda

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20260331161806.889242832@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=rafael.j.wysocki@intel.com \
    --cc=stable@vger.kernel.org \
    --cc=viresh.kumar@linaro.org \
    /path/to/YOUR_REPLY

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

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