All of lore.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, Adrien Thierry <athierry@redhat.com>,
	Bart Van Assche <bvanassche@acm.org>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.2 128/240] scsi: ufs: core: Initialize devfreq synchronously
Date: Tue, 28 Mar 2023 16:41:31 +0200	[thread overview]
Message-ID: <20230328142625.117629733@linuxfoundation.org> (raw)
In-Reply-To: <20230328142619.643313678@linuxfoundation.org>

From: Adrien Thierry <athierry@redhat.com>

[ Upstream commit 7dafc3e007918384c8693ff8d70381b5c1e9c247 ]

During UFS initialization, devfreq initialization is asynchronous:
ufshcd_async_scan() calls ufshcd_add_lus(), which in turn initializes
devfreq for UFS. The simple ondemand governor is then loaded. If it is
built as a module, request_module() is called and throws a warning:

  WARNING: CPU: 7 PID: 167 at kernel/kmod.c:136 __request_module+0x1e0/0x460
  Modules linked in: crct10dif_ce llcc_qcom phy_qcom_qmp_usb ufs_qcom phy_qcom_snps_femto_v2 ufshcd_pltfrm phy_qcom_qmp_combo ufshcd_core phy_qcom_qmp_ufs qcom_wdt socinfo fuse ipv6
  CPU: 7 PID: 167 Comm: kworker/u16:3 Not tainted 6.2.0-rc6-00009-g58706f7fb045 #1
  Hardware name: Qualcomm SA8540P Ride (DT)
  Workqueue: events_unbound async_run_entry_fn
  pstate: 00400005 (nzcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
  pc : __request_module+0x1e0/0x460
  lr : __request_module+0x1d8/0x460
  sp : ffff800009323b90
  x29: ffff800009323b90 x28: 0000000000000000 x27: 0000000000000000
  x26: ffff800009323d50 x25: ffff7b9045f57810 x24: ffff7b9045f57830
  x23: ffffdc5a83e426e8 x22: ffffdc5ae80a9818 x21: 0000000000000001
  x20: ffffdc5ae7502f98 x19: ffff7b9045f57800 x18: ffffffffffffffff
  x17: 312f716572667665 x16: 642f7366752e3030 x15: 0000000000000000
  x14: 000000000000021c x13: 0000000000005400 x12: ffff7b9042ed7614
  x11: ffff7b9042ed7600 x10: 00000000636c0890 x9 : 0000000000000038
  x8 : ffff7b9045f2c880 x7 : ffff7b9045f57c68 x6 : 0000000000000080
  x5 : 0000000000000000 x4 : 8000000000000000 x3 : 0000000000000000
  x2 : 0000000000000000 x1 : ffffdc5ae5d382f0 x0 : 0000000000000001
  Call trace:
   __request_module+0x1e0/0x460
   try_then_request_governor+0x7c/0x100
   devfreq_add_device+0x4b0/0x5fc
   ufshcd_async_scan+0x1d4/0x310 [ufshcd_core]
   async_run_entry_fn+0x34/0xe0
   process_one_work+0x1d0/0x320
   worker_thread+0x14c/0x444
   kthread+0x10c/0x110
   ret_from_fork+0x10/0x20

This occurs because synchronous module loading from async is not
allowed. According to __request_module():

  /*
   * We don't allow synchronous module loading from async.  Module
   * init may invoke async_synchronize_full() which will end up
   * waiting for this task which already is waiting for the module
   * loading to complete, leading to a deadlock.
   */

Such a deadlock was experienced on the Qualcomm QDrive3/sa8540p-ride. With
DEVFREQ_GOV_SIMPLE_ONDEMAND=m, the boot hangs after the warning.

Fix both the warning and the deadlock by moving devfreq initialization out
of the async routine.

Tested on the sa8540p-ride by using fio to put the UFS under load, and
printing the trace generated by
/sys/kernel/tracing/events/ufs/ufshcd_clk_scaling events. The trace looks
similar with and without the change.

Link: https://lore.kernel.org/r/20230217194423.42553-1-athierry@redhat.com
Signed-off-by: Adrien Thierry <athierry@redhat.com>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/ufs/core/ufshcd.c | 47 ++++++++++++++++++++++++++-------------
 include/ufs/ufshcd.h      |  1 +
 2 files changed, 32 insertions(+), 16 deletions(-)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index 2ddc1aba0ad75..d7fa053a78965 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -1357,6 +1357,13 @@ static int ufshcd_devfreq_target(struct device *dev,
 	struct ufs_clk_info *clki;
 	unsigned long irq_flags;
 
+	/*
+	 * Skip devfreq if UFS initialization is not finished.
+	 * Otherwise ufs could be in a inconsistent state.
+	 */
+	if (!smp_load_acquire(&hba->logical_unit_scan_finished))
+		return 0;
+
 	if (!ufshcd_is_clkscaling_supported(hba))
 		return -EINVAL;
 
@@ -8152,22 +8159,6 @@ static int ufshcd_add_lus(struct ufs_hba *hba)
 	if (ret)
 		goto out;
 
-	/* Initialize devfreq after UFS device is detected */
-	if (ufshcd_is_clkscaling_supported(hba)) {
-		memcpy(&hba->clk_scaling.saved_pwr_info.info,
-			&hba->pwr_info,
-			sizeof(struct ufs_pa_layer_attr));
-		hba->clk_scaling.saved_pwr_info.is_valid = true;
-		hba->clk_scaling.is_allowed = true;
-
-		ret = ufshcd_devfreq_init(hba);
-		if (ret)
-			goto out;
-
-		hba->clk_scaling.is_enabled = true;
-		ufshcd_init_clk_scaling_sysfs(hba);
-	}
-
 	ufs_bsg_probe(hba);
 	ufshpb_init(hba);
 	scsi_scan_host(hba->host);
@@ -8306,6 +8297,12 @@ static void ufshcd_async_scan(void *data, async_cookie_t cookie)
 	if (ret) {
 		pm_runtime_put_sync(hba->dev);
 		ufshcd_hba_exit(hba);
+	} else {
+		/*
+		 * Make sure that when reader code sees UFS initialization has finished,
+		 * all initialization steps have really been executed.
+		 */
+		smp_store_release(&hba->logical_unit_scan_finished, true);
 	}
 }
 
@@ -9912,12 +9909,30 @@ int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
 	 */
 	ufshcd_set_ufs_dev_active(hba);
 
+	/* Initialize devfreq */
+	if (ufshcd_is_clkscaling_supported(hba)) {
+		memcpy(&hba->clk_scaling.saved_pwr_info.info,
+			&hba->pwr_info,
+			sizeof(struct ufs_pa_layer_attr));
+		hba->clk_scaling.saved_pwr_info.is_valid = true;
+		hba->clk_scaling.is_allowed = true;
+
+		err = ufshcd_devfreq_init(hba);
+		if (err)
+			goto rpm_put_sync;
+
+		hba->clk_scaling.is_enabled = true;
+		ufshcd_init_clk_scaling_sysfs(hba);
+	}
+
 	async_schedule(ufshcd_async_scan, hba);
 	ufs_sysfs_add_nodes(hba->dev);
 
 	device_enable_async_suspend(dev);
 	return 0;
 
+rpm_put_sync:
+	pm_runtime_put_sync(dev);
 free_tmf_queue:
 	blk_mq_destroy_queue(hba->tmf_queue);
 	blk_put_queue(hba->tmf_queue);
diff --git a/include/ufs/ufshcd.h b/include/ufs/ufshcd.h
index 97a09a14c6349..4b6d63ca8c5d8 100644
--- a/include/ufs/ufshcd.h
+++ b/include/ufs/ufshcd.h
@@ -896,6 +896,7 @@ struct ufs_hba {
 	struct completion *uic_async_done;
 
 	enum ufshcd_state ufshcd_state;
+	bool logical_unit_scan_finished;
 	u32 eh_flags;
 	u32 intr_mask;
 	u16 ee_ctrl_mask;
-- 
2.39.2




  parent reply	other threads:[~2023-03-28 14:49 UTC|newest]

Thread overview: 255+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-28 14:39 [PATCH 6.2 000/240] 6.2.9-rc1 review Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 001/240] interconnect: qcom: osm-l3: fix icc_onecell_data allocation Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 002/240] interconnect: qcom: sm8450: switch to qcom_icc_rpmh_* function Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 003/240] interconnect: qcom: qcm2290: Fix MASTER_SNOC_BIMC_NRT Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 004/240] perf/core: Fix perf_output_begin parameter is incorrectly invoked in perf_event_bpf_output Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 005/240] perf: fix perf_event_context->time Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 006/240] tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 007/240] drm/amd/display: fix k1 k2 divider programming for phantom streams Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 008/240] drm/amd/display: Remove OTG DIV register write for Virtual signals Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 009/240] drm/amd/display: Fix DP MST sinks removal issue Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 010/240] arm64: dts: freescale: imx8-ss-lsio: Fix flexspi clock order Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 011/240] arm64: dts: qcom: sc8280xp: Add label property to vadc channel nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 012/240] arm64: dts: qcom: sm6375: Add missing power-domain-named to CDSP Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 013/240] arm64: dts: qcom: sm8450: correct WSA2 assigned clocks Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 014/240] arm64: dts: qcom: sm8450: Mark UFS controller as cache coherent Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 015/240] power: supply: bq24190: Fix use after free bug in bq24190_remove due to race condition Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 016/240] power: supply: da9150: Fix use after free bug in da9150_charger_remove " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 017/240] wifi: mt76: do not run mt76_unregister_device() on unregistered hw Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 018/240] wifi: mt76: connac: do not check WED status for non-mmio devices Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 019/240] efi: earlycon: Reprobe after parsing config tables Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 020/240] arm64: dts: imx8dxl-evk: Disable hibernation mode of AR8031 for EQOS Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 021/240] arm64: dts: imx8dxl-evk: Fix eqos phy reset gpio Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 022/240] ARM: dts: imx6sll: e70k02: fix usbotg1 pinctrl Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 023/240] ARM: dts: imx6sll: e60k02: " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 024/240] ARM: dts: imx6sl: tolino-shine2hd: " Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 025/240] arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 026/240] arm64: dts: imx93: add missing #address-cells and #size-cells to i2c nodes Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 027/240] NFS: Fix /proc/PID/io read_bytes for buffered reads Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 028/240] NFS: Correct timing for assigning access cache timestamp Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 029/240] xsk: Add missing overflow check in xdp_umem_reg Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 030/240] iavf: fix inverted Rx hash condition leading to disabled hash Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 031/240] iavf: fix non-tunneled IPv6 UDP packet type and hashing Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 032/240] iavf: do not track VLAN 0 filters Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 033/240] intel/igbvf: free irq on the error path in igbvf_request_msix() Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 034/240] igbvf: Regard vf reset nack as success Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 035/240] igc: fix the validation logic for taprios gate list Greg Kroah-Hartman
2023-03-28 14:39 ` [PATCH 6.2 036/240] i2c: imx-lpi2c: check only for enabled interrupt flags Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 037/240] i2c: mxs: ensure that DMA buffers are safe for DMA Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 038/240] i2c: hisi: Only use the completion interrupt to finish the transfer Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 039/240] scsi: scsi_dh_alua: Fix memleak for qdata in alua_activate() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 040/240] nfsd: dont replace page in rq_pages if its a continuation of last page Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 041/240] net: dsa: b53: mmap: fix device tree support Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 042/240] net: usb: smsc95xx: Limit packet length to skb->len Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 043/240] efi/libstub: smbios: Use length member instead of record struct size Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 044/240] arm64: efi: Use SMBIOS processor version to key off Ampere quirk Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 045/240] qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 046/240] xirc2ps_cs: Fix use after free bug in xirc2ps_detach Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 047/240] net: phy: Ensure state transitions are processed from phy_stop() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 048/240] net: mdio: fix owner field for mdio buses registered using device-tree Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 049/240] net: mdio: fix owner field for mdio buses registered using ACPI Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 050/240] net: stmmac: Fix for mismatched host/device DMA address width Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 051/240] thermal/drivers/mellanox: Use generic thermal_zone_get_trip() function Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 052/240] mlxsw: core_thermal: Fix fan speed in maximum cooling state Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 053/240] drm/i915/fbdev: lock the fbdev obj before vma pin Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 054/240] drm/i915/mtl: Disable MC6 for MTL A step Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 055/240] drm/i915/guc: Rename GuC register state capture node to be more obvious Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 056/240] drm/i915/guc: Fix missing ecodes Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 057/240] drm/i915/gt: perform uc late init after probe error injection Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 058/240] drm/i915: Fix format for perf_limit_reasons Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 059/240] drm/i915: Update vblank timestamping stuff on seamless M/N change Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 060/240] net: dsa: report rx_bytes unadjusted for ETH_HLEN Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 061/240] net: qcom/emac: Fix use after free bug in emac_remove due to race condition Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 062/240] net: usb: lan78xx: Limit packet length to skb->len Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 063/240] net/ps3_gelic_net: Fix RX sk_buff length Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 064/240] net/ps3_gelic_net: Use dma_mapping_error Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 065/240] octeontx2-vf: Add missing free for alloc_percpu Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 066/240] bootconfig: Fix testcase to increase max node Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 067/240] keys: Do not cache key in task struct if key is requested from kernel thread Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 068/240] ice: check if VF exists before mode check Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 069/240] iavf: fix hang on reboot with ice Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 070/240] i40e: fix flow director packet filter programming Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 071/240] bpf: Adjust insufficient default bpf_jit_limit Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 072/240] net/mlx5e: Set uplink rep as NETNS_LOCAL Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 073/240] net/mlx5e: Block entering switchdev mode with ns inconsistency Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 074/240] net/mlx5: Fix steering rules cleanup Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 075/240] net/mlx5e: Overcome slow response for first macsec ASO WQE Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 076/240] net/mlx5: Read the TC mapping of all priorities on ETS query Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 077/240] net/mlx5: E-Switch, Fix an Oops in error handling code Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 078/240] net: dsa: tag_brcm: legacy: fix daisy-chained switches Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 079/240] atm: idt77252: fix kmemleak when rmmod idt77252 Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 080/240] erspan: do not use skb_mac_header() in ndo_start_xmit() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 081/240] net: mscc: ocelot: fix stats region batching Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 082/240] net/sonic: use dma_mapping_error() for error check Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 083/240] nvme-tcp: fix nvme_tcp_term_pdu to match spec Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 084/240] mlxsw: spectrum_fid: Fix incorrect local port type Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 085/240] hvc/xen: prevent concurrent accesses to the shared ring Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 086/240] ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 087/240] ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 088/240] ksmbd: fix possible refcount leak in smb2_open() Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 089/240] Bluetooth: hci_sync: Resume adv with no RPA when active scan Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 090/240] Bluetooth: hci_core: Detect if an ACL packet is in fact an ISO packet Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 091/240] Bluetooth: btusb: Remove detection of ISO packets over bulk Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 092/240] Bluetooth: ISO: fix timestamped HCI ISO data packet parsing Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 093/240] Bluetooth: Remove "Power-on" check from Mesh feature Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 094/240] gve: Cache link_speed value from device Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 095/240] net: asix: fix modprobe "sysfs: cannot create duplicate filename" Greg Kroah-Hartman
2023-03-28 14:40 ` [PATCH 6.2 096/240] net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 097/240] net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 098/240] net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 099/240] net: mdio: thunder: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 100/240] efi/libstub: Use relocated version of kernels struct screen_info Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 101/240] drm/amd/display: Set dcn32 caps.seamless_odm Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 102/240] Bluetooth: btqcomsmd: Fix command timeout after setting BD address Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 103/240] Bluetooth: L2CAP: Fix responding with wrong PDU type Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 104/240] Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 105/240] Bluetooth: mgmt: Fix MGMT add advmon with RSSI command Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 106/240] Bluetooth: HCI: Fix global-out-of-bounds Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 107/240] platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 108/240] entry: Fix noinstr warning in __enter_from_user_mode() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 109/240] perf/x86/amd/core: Always clear status for idx Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 110/240] entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 111/240] hwmon: fix potential sensor registration fail if of_node is missing Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 112/240] hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 113/240] scsi: qla2xxx: Synchronize the IOCB count to be in order Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 114/240] scsi: qla2xxx: Perform lockless command completion in abort path Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 115/240] smb3: lower default deferred close timeout to address perf regression Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 116/240] smb3: fix unusable share after force unmount failure Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 117/240] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 118/240] thunderbolt: Use scale field when allocating USB3 bandwidth Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 119/240] thunderbolt: Call tb_check_quirks() after initializing adapters Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 120/240] thunderbolt: Add quirk to disable CLx Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 121/240] thunderbolt: Fix memory leak in margining Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 122/240] thunderbolt: Disable interrupt auto clear for rings Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 123/240] thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 124/240] thunderbolt: Use const qualifier for `ring_interrupt_index` Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 125/240] thunderbolt: Rename shadowed variables bit to interrupt_bit and auto_clear_bit Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 126/240] ASoC: amd: yp: Add OMEN by HP Gaming Laptop 16z-n000 to quirks Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 127/240] ASoC: Intel: sof_rt5682: Add quirk for Rex board with mx98360a amplifier Greg Kroah-Hartman
2023-03-28 14:41 ` Greg Kroah-Hartman [this message]
2023-03-29 17:48   ` [PATCH 6.2 128/240] scsi: ufs: core: Initialize devfreq synchronously Adrien Thierry
2023-03-28 14:41 ` [PATCH 6.2 129/240] ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A43) Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 130/240] ACPI: x86: Drop quirk for HP Elitebook Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 131/240] ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 132/240] riscv: Bump COMMAND_LINE_SIZE value to 1024 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 133/240] drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 134/240] HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 135/240] ca8210: fix mac_len negative array access Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 136/240] HID: logitech-hidpp: Add support for Logitech MX Master 3S mouse Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 137/240] HID: intel-ish-hid: ipc: Fix potential use-after-free in work function Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 138/240] m68k: mm: Fix systems with memory at end of 32-bit address space Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 139/240] m68k: Only force 030 bus error if PC not in exception table Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 140/240] selftests/bpf: check that modifier resolves after pointer Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 141/240] cpumask: fix incorrect cpumask scanning result checks Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 142/240] scsi: target: iscsi: Fix an error message in iscsi_check_key() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 143/240] scsi: qla2xxx: Add option to disable FC2 Target support Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 144/240] scsi: hisi_sas: Check devm_add_action() return value Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 145/240] scsi: ufs: core: Add soft dependency on governor_simpleondemand Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 146/240] scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 147/240] scsi: lpfc: Avoid usage of list iterator variable after loop Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 148/240] scsi: mpi3mr: Driver unload crashes host when enhanced logging is enabled Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 149/240] scsi: mpi3mr: Wait for diagnostic save during controller init Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 150/240] scsi: mpi3mr: NVMe command size greater than 8K fails Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 151/240] scsi: mpi3mr: Bad drive in topology results kernel crash Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 152/240] scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 153/240] platform/x86: int3472: Add GPIOs to Surface Go 3 Board data Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 154/240] net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 155/240] net: usb: qmi_wwan: add Telit 0x1080 composition Greg Kroah-Hartman
2023-03-28 14:41 ` [PATCH 6.2 156/240] drm/amd/display: Update clock table to include highest clock setting Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 157/240] sh: sanitize the flags on sigreturn Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 158/240] drm/amdgpu: Fix call trace warning and hang when removing amdgpu device Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 159/240] drm/amd: Fix initialization mistake for NBIO 7.3.0 Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 160/240] net/sched: act_mirred: better wording on protection against excessive stack growth Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 161/240] act_mirred: use the backlog for nested calls to mirred ingress Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 162/240] cifs: lock chan_lock outside match_session Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 163/240] cifs: append path to open_enter trace event Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 164/240] cifs: do not poll server interfaces too regularly Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 165/240] cifs: empty interface list when server doesnt support query interfaces Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 166/240] cifs: dump pending mids for all channels in DebugData Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 167/240] cifs: print session id while listing open files Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 168/240] cifs: fix dentry lookups in directory handle cache Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 169/240] x86/mm: Do not shuffle CPU entry areas without KASLR Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 170/240] x86/fpu/xstate: Prevent false-positive warning in __copy_xstate_uabi_buf() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 171/240] selftests/x86/amx: Add a ptrace test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 172/240] scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 173/240] usb: misc: onboard-hub: add support for Microchip USB2517 USB 2.0 hub Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 174/240] usb: dwc2: fix a race, dont power off/on phy for dual-role mode Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 175/240] usb: dwc2: drd: fix inconsistent mode if role-switch-default-mode="host" Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 176/240] usb: dwc2: fix a devres leak in hw_enable upon suspend resume Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 177/240] block/io_uring: pass in issue_flags for uring_cmd task_work handling Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 178/240] usb: gadget: u_audio: dont let userspace block driver unbind Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 179/240] btrfs: zoned: fix btrfs_can_activate_zone() to support DUP profile Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 180/240] Bluetooth: Fix race condition in hci_cmd_sync_clear Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 181/240] efi: sysfb_efi: Fix DMI quirks not working for simpledrm Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 182/240] mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 183/240] efi/libstub: zboot: Mark zboot EFI application as NX compatible Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 184/240] arm64: efi: Set NX compat flag in PE/COFF header Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 185/240] fscrypt: destroy keyring after security_sb_delete() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 186/240] fsverity: Remove WQ_UNBOUND from fsverity read workqueue Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 187/240] lockd: set file_lock start and end when decoding nlm4 testargs Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 188/240] arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 189/240] igb: revert rtnl_lock() that causes deadlock Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 190/240] dm thin: fix deadlock when swapping to thin device Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 191/240] usb: typec: tcpm: fix create duplicate source-capabilities file Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 192/240] usb: typec: tcpm: fix warning when handle discover_identity message Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 193/240] usb: cdns3: Fix issue with using incorrect PCI device function Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 194/240] usb: cdnsp: Fixes issue with redundant Status Stage Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 195/240] usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 196/240] usb: chipdea: core: fix return -EINVAL if request role is the same with current role Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 197/240] usb: chipidea: core: fix possible concurrent when switch role Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 198/240] usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 199/240] usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 200/240] usb: ucsi_acpi: Increase the command completion timeout Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 201/240] mm: kfence: fix using kfence_metadata without initialization in show_object() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 202/240] kfence: avoid passing -g for test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 203/240] io_uring/net: avoid sending -ECONNABORTED on repeated connection requests Greg Kroah-Hartman
2023-03-28 14:42   ` Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 204/240] io_uring/rsrc: fix null-ptr-deref in io_file_bitmap_get() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 205/240] Revert "kasan: drop skip_kasan_poison variable in free_pages_prepare" Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 206/240] kcsan: avoid passing -g for test Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 207/240] test_maple_tree: add more testing for mas_empty_area() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 208/240] maple_tree: fix mas_skip_node() end slot detection Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 209/240] ksmbd: fix wrong signingkey creation when encryption is AES256 Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 210/240] ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 211/240] ksmbd: dont terminate inactive sessions after a few seconds Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 212/240] ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 213/240] ksmbd: return unsupported error on smb1 mount Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 214/240] wifi: mac80211: fix qos on mesh interfaces Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 215/240] wifi: mac80211: Serialize ieee80211_handle_wake_tx_queue() Greg Kroah-Hartman
2023-03-28 14:42 ` [PATCH 6.2 216/240] nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 217/240] drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 218/240] drm/amd/display: fix wrong index used in dccg32_set_dpstreamclk Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 219/240] drm/meson: fix missing component unbind on bind errors Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 220/240] drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi Greg Kroah-Hartman
2023-03-28 14:43 ` [Intel-gfx] [PATCH 6.2 221/240] drm/i915/active: Fix missing debug object activation Greg Kroah-Hartman
2023-03-28 14:43   ` Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 222/240] drm/i915: Preserve crtc_state->inherited during state clearing Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 223/240] drm/amdgpu: skip ASIC reset for APUs when go to S4 Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 224/240] drm/amdgpu: reposition the gpu reset checking for reuse Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 225/240] riscv: mm: Fix incorrect ASID argument when flushing TLB Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 226/240] riscv: Handle zicsr/zifencei issues between clang and binutils Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 227/240] tee: amdtee: fix race condition in amdtee_open_session Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 228/240] firmware: arm_scmi: Fix device node validation for mailbox transport Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 229/240] arm64: dts: qcom: sc8280xp-x13s: mark s11b regulator as always-on Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 230/240] arm64: dts: qcom: sc7280: Mark PCIe controller as cache coherent Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 231/240] arm64: dts: qcom: sm8150: Fix the iommu mask used for PCIe controllers Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 232/240] soc: qcom: llcc: Fix slice configuration values for SC8280XP Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 233/240] mm/ksm: fix race with VMA iteration and mm_struct teardown Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 234/240] bus: imx-weim: fix branch condition evaluates to a garbage value Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 235/240] i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 236/240] dm stats: check for and propagate alloc_percpu failure Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 237/240] dm crypt: add cond_resched() to dmcrypt_write() Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 238/240] dm crypt: avoid accessing uninitialized tasklet Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 239/240] sched/fair: sanitize vruntime of entity being placed Greg Kroah-Hartman
2023-03-28 14:43 ` [PATCH 6.2 240/240] sched/fair: Sanitize vruntime of entity being migrated Greg Kroah-Hartman
2023-03-28 17:02 ` [PATCH 6.2 000/240] 6.2.9-rc1 review Markus Reichelt
2023-03-28 20:47 ` Justin Forbes
2023-03-28 21:03 ` Shuah Khan
2023-03-29  4:11 ` Bagas Sanjaya
2023-03-29  7:56 ` Ron Economos
2023-03-29  8:33 ` Chris Paterson
2023-03-29 11:20 ` Jon Hunter
2023-03-29 11:43 ` Naresh Kamboju
2023-03-29 12:45 ` Conor Dooley
2023-03-29 17:55 ` Florian Fainelli
2023-03-29 21:47 ` Guenter Roeck

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=20230328142625.117629733@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=athierry@redhat.com \
    --cc=bvanassche@acm.org \
    --cc=martin.petersen@oracle.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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