stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Bart Van Assche <bvanassche@acm.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>
Subject: [PATCH 5.14 034/151] scsi: ufs: core: Fix task management completion
Date: Mon, 11 Oct 2021 15:45:06 +0200	[thread overview]
Message-ID: <20211011134518.953631211@linuxfoundation.org> (raw)
In-Reply-To: <20211011134517.833565002@linuxfoundation.org>

From: Adrian Hunter <adrian.hunter@intel.com>

commit f5ef336fd2e4c36dedae4e7ca66cf5349d6fda62 upstream.

The UFS driver uses blk_mq_tagset_busy_iter() when identifying task
management requests to complete, however blk_mq_tagset_busy_iter() doesn't
work.

blk_mq_tagset_busy_iter() only iterates requests dispatched by the block
layer. That appears as if it might have started since commit 37f4a24c2469
("blk-mq: centralise related handling into blk_mq_get_driver_tag") which
removed 'data->hctx->tags->rqs[rq->tag] = rq' from blk_mq_rq_ctx_init()
which gets called:

	blk_get_request
		blk_mq_alloc_request
			__blk_mq_alloc_request
				blk_mq_rq_ctx_init

Since UFS task management requests are not dispatched by the block layer,
hctx->tags->rqs[rq->tag] remains NULL, and since blk_mq_tagset_busy_iter()
relies on finding requests using hctx->tags->rqs[rq->tag], UFS task
management requests are never found by blk_mq_tagset_busy_iter().

By using blk_mq_tagset_busy_iter(), the UFS driver was relying on internal
details of the block layer, which was fragile and subsequently got
broken. Fix by removing the use of blk_mq_tagset_busy_iter() and having the
driver keep track of task management requests.

Link: https://lore.kernel.org/r/20210922091059.4040-1-adrian.hunter@intel.com
Fixes: 1235fc569e0b ("scsi: ufs: core: Fix task management request completion timeout")
Fixes: 69a6c269c097 ("scsi: ufs: Use blk_{get,put}_request() to allocate and free TMFs")
Cc: stable@vger.kernel.org
Tested-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/scsi/ufs/ufshcd.c |   52 +++++++++++++++++++---------------------------
 drivers/scsi/ufs/ufshcd.h |    1 
 2 files changed, 23 insertions(+), 30 deletions(-)

--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -6365,27 +6365,6 @@ static irqreturn_t ufshcd_check_errors(s
 	return retval;
 }
 
-struct ctm_info {
-	struct ufs_hba	*hba;
-	unsigned long	pending;
-	unsigned int	ncpl;
-};
-
-static bool ufshcd_compl_tm(struct request *req, void *priv, bool reserved)
-{
-	struct ctm_info *const ci = priv;
-	struct completion *c;
-
-	WARN_ON_ONCE(reserved);
-	if (test_bit(req->tag, &ci->pending))
-		return true;
-	ci->ncpl++;
-	c = req->end_io_data;
-	if (c)
-		complete(c);
-	return true;
-}
-
 /**
  * ufshcd_tmc_handler - handle task management function completion
  * @hba: per adapter instance
@@ -6396,18 +6375,24 @@ static bool ufshcd_compl_tm(struct reque
  */
 static irqreturn_t ufshcd_tmc_handler(struct ufs_hba *hba)
 {
-	unsigned long flags;
-	struct request_queue *q = hba->tmf_queue;
-	struct ctm_info ci = {
-		.hba	 = hba,
-	};
+	unsigned long flags, pending, issued;
+	irqreturn_t ret = IRQ_NONE;
+	int tag;
+
+	pending = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
 
 	spin_lock_irqsave(hba->host->host_lock, flags);
-	ci.pending = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
-	blk_mq_tagset_busy_iter(q->tag_set, ufshcd_compl_tm, &ci);
+	issued = hba->outstanding_tasks & ~pending;
+	for_each_set_bit(tag, &issued, hba->nutmrs) {
+		struct request *req = hba->tmf_rqs[tag];
+		struct completion *c = req->end_io_data;
+
+		complete(c);
+		ret = IRQ_HANDLED;
+	}
 	spin_unlock_irqrestore(hba->host->host_lock, flags);
 
-	return ci.ncpl ? IRQ_HANDLED : IRQ_NONE;
+	return ret;
 }
 
 /**
@@ -6530,9 +6515,9 @@ static int __ufshcd_issue_tm_cmd(struct
 	ufshcd_hold(hba, false);
 
 	spin_lock_irqsave(host->host_lock, flags);
-	blk_mq_start_request(req);
 
 	task_tag = req->tag;
+	hba->tmf_rqs[req->tag] = req;
 	treq->upiu_req.req_header.dword_0 |= cpu_to_be32(task_tag);
 
 	memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq));
@@ -6576,6 +6561,7 @@ static int __ufshcd_issue_tm_cmd(struct
 	}
 
 	spin_lock_irqsave(hba->host->host_lock, flags);
+	hba->tmf_rqs[req->tag] = NULL;
 	__clear_bit(task_tag, &hba->outstanding_tasks);
 	spin_unlock_irqrestore(hba->host->host_lock, flags);
 
@@ -9568,6 +9554,12 @@ int ufshcd_init(struct ufs_hba *hba, voi
 		err = PTR_ERR(hba->tmf_queue);
 		goto free_tmf_tag_set;
 	}
+	hba->tmf_rqs = devm_kcalloc(hba->dev, hba->nutmrs,
+				    sizeof(*hba->tmf_rqs), GFP_KERNEL);
+	if (!hba->tmf_rqs) {
+		err = -ENOMEM;
+		goto free_tmf_queue;
+	}
 
 	/* Reset the attached device */
 	ufshcd_device_reset(hba);
--- a/drivers/scsi/ufs/ufshcd.h
+++ b/drivers/scsi/ufs/ufshcd.h
@@ -780,6 +780,7 @@ struct ufs_hba {
 
 	struct blk_mq_tag_set tmf_tag_set;
 	struct request_queue *tmf_queue;
+	struct request **tmf_rqs;
 
 	struct uic_command *active_uic_cmd;
 	struct mutex uic_cmd_mutex;



  parent reply	other threads:[~2021-10-11 14:02 UTC|newest]

Thread overview: 162+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-11 13:44 [PATCH 5.14 000/151] 5.14.12-rc1 review Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 001/151] Partially revert "usb: Kconfig: using select for USB_COMMON dependency" Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 002/151] usb: cdc-wdm: Fix check for WWAN Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 003/151] usb: chipidea: ci_hdrc_imx: Also search for phys phandle Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 004/151] usb: gadget: f_uac2: fixed EP-IN wMaxPacketSize Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 005/151] USB: cdc-acm: fix racy tty buffer accesses Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 006/151] USB: cdc-acm: fix break reporting Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 007/151] usb: typec: tcpci: dont handle vSafe0V event if its not enabled Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 008/151] usb: typec: tcpm: handle SRC_STARTUP state if cc changes Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 009/151] usb: typec: tipd: Remove dependency on "connector" child fwnode Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 010/151] drm/amd/display: Fix B0 USB-C DP Alt mode Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 011/151] drm/amd/display: USB4 bring up set correct address Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 012/151] drm/amdgpu: During s0ix dont wait to signal GFXOFF Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 013/151] drm/nouveau/kms/tu102-: delay enabling cursor until after assign_windows Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 014/151] drm/nouveau/ga102-: support ttm buffer moves via copy engine Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 015/151] drm/amd/display: Limit display scaling to up to 4k for DCN 3.1 Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 016/151] drm/amd/display: Fix detection of 4 lane for DPALT Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 017/151] drm/amd/display: Fix DCN3 B0 DP Alt Mapping Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 018/151] drm/i915: Fix runtime pm handling in i915_gem_shrink Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 019/151] drm/i915: Extend the async flip VT-d w/a to skl/bxt Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 020/151] xen/privcmd: fix error handling in mmap-resource processing Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 021/151] mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 022/151] mmc: sdhci-of-at91: wait for calibration done before proceed Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 023/151] mmc: sdhci-of-at91: replace while loop with read_poll_timeout Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 024/151] fbdev: simplefb: fix Kconfig dependencies Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 025/151] ovl: fix missing negative dentry check in ovl_rename() Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 026/151] ovl: fix IOCB_DIRECT if underlying fs doesnt support direct IO Greg Kroah-Hartman
2021-10-11 13:44 ` [PATCH 5.14 027/151] nfsd: fix error handling of register_pernet_subsys() in init_nfsd() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 028/151] nfsd4: Handle the NFSv4 READDIR dircount hint being zero Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 029/151] SUNRPC: fix sign error causing rpcsec_gss drops Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 030/151] xen/balloon: fix cancelled balloon action Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 031/151] ARM: dts: omap3430-sdp: Fix NAND device node Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 032/151] ARM: dts: imx6dl-yapp4: Fix lp5562 LED driver probe Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 033/151] ARM: dts: qcom: apq8064: use compatible which contains chipid Greg Kroah-Hartman
2021-10-11 13:45 ` Greg Kroah-Hartman [this message]
2021-10-11 13:45 ` [PATCH 5.14 035/151] riscv: Flush current cpu icache before other cpus Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 036/151] bus: ti-sysc: Add break in switch statement in sysc_init_soc() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 037/151] soc: qcom: socinfo: Fixed argument passed to platform_set_data() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 038/151] ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 039/151] Revert "arm64: dts: qcom: sc7280: Fixup the cpufreq node" Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 040/151] ARM: at91: pm: do not panic if ram controllers are not enabled Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 041/151] iwlwifi: mvm: Fix possible NULL dereference Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 042/151] soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 043/151] ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 044/151] ARM: dts: imx: Fix USB host power regulator polarity " Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 045/151] ARM: dts: imx6qdl-pico: Fix Ethernet support Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 046/151] PCI: hv: Fix sleep while in non-sleep context when removing child devices from the bus Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 047/151] ath5k: fix building with LEDS=m Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 048/151] arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 049/151] xtensa: use CONFIG_USE_OF instead of CONFIG_OF Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 050/151] xtensa: call irqchip_init only when CONFIG_USE_OF is selected Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 051/151] iwlwifi: pcie: add configuration of a Wi-Fi adapter on Dell XPS 15 Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 052/151] netfilter: conntrack: fix boot failure with nf_conntrack.enable_hooks=1 Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 053/151] netfilter: nf_tables: add position handle in event notification Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 054/151] netfilter: nf_tables: reverse order in rule replacement expansion Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 055/151] bpf, arm: Fix register clobbering in div/mod implementation Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 056/151] soc: ti: omap-prm: Fix external abort for am335x pruss Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 057/151] bpf: Fix integer overflow in prealloc_elems_and_freelist() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 058/151] net/mlx5e: IPSEC RX, enable checksum complete Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 059/151] net/mlx5e: Keep the value for maximum number of channels in-sync Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 060/151] net/mlx5: E-Switch, Fix double allocation of acl flow counter Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 061/151] net/mlx5: Force round second at 1PPS out start time Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 062/151] net/mlx5: Avoid generating event after PPS out in Real time mode Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 063/151] net/mlx5: Fix length of irq_index in chars Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 064/151] net/mlx5: Fix setting number of EQs of SFs Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 065/151] net/mlx5e: Fix the presented RQ index in PTP stats Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 066/151] libbpf: Fix segfault in light skeleton for objects without BTF Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 067/151] phy: mdio: fix memory leak Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 068/151] libbpf: Fix memory leak in strset Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 069/151] net_sched: fix NULL deref in fifo_set_limit() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 070/151] net: mscc: ocelot: fix VCAP filters remaining active after being deleted Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 071/151] net: stmmac: dwmac-rk: Fix ethernet on rk3399 based devices Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 072/151] MIPS: Revert "add support for buggy MT7621S core detection" Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 073/151] netfilter: nf_tables: honor NLM_F_CREATE and NLM_F_EXCL in event notification Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 074/151] powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 075/151] ptp_pch: Load module automatically if ID matches Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 076/151] ARM: dts: imx: change the spi-nor tx Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 077/151] arm64: dts: imx8: " Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 078/151] arm64: dts: imx8mm-kontron-n801x-som: do not allow to switch off buck2 Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 079/151] arm64: dts: ls1028a: fix eSDHC2 node Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 080/151] dt-bindings: drm/bridge: ti-sn65dsi86: Fix reg value Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 081/151] ARM: imx6: disable the GIC CPU interface before calling stby-poweroff sequence Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 082/151] drm/i915/audio: Use BIOS provided value for RKL HDA link Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 083/151] drm/i915/jsl: Add W/A 1409054076 for JSL Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 084/151] drm/i915/tc: Fix TypeC port init/resume time sanitization Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 085/151] drm/i915/bdb: Fix version check Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 086/151] netfs: Fix READ/WRITE confusion when calling iov_iter_xarray() Greg Kroah-Hartman
2021-10-11 13:45 ` [PATCH 5.14 087/151] afs: Fix afs_launder_page() to set correct start file position Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 088/151] net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 089/151] net: bridge: fix under estimation " Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 090/151] net/sched: sch_taprio: properly cancel timer from taprio_destroy() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 091/151] net: sfp: Fix typo in state machine debug string Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 092/151] net: pcs: xpcs: fix incorrect CL37 AN sequence Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 093/151] netlink: annotate data races around nlk->bound Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 094/151] ARM: defconfig: gemini: Restore framebuffer Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 095/151] drm/amdkfd: fix a potential ttm->sg memory leak Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 096/151] drm/amdgpu: handle the case of pci_channel_io_frozen only in amdgpu_pci_resume Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 097/151] perf jevents: Free the sys_event_tables list after processing entries Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 098/151] bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 099/151] drm/sun4i: dw-hdmi: Fix HDMI PHY clock setup Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 100/151] drm/nouveau/fifo/ga102: initialise chid on return from channel creation Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 101/151] drm/panel: abt-y030xx067a: yellow tint fix Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 102/151] video: fbdev: gbefb: Only instantiate device when built for IP32 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 103/151] drm/nouveau: avoid a use-after-free when BO init fails Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 104/151] drm/nouveau/kms/nv50-: fix file release memory leak Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 105/151] drm/nouveau/debugfs: " Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 106/151] net: pcs: xpcs: fix incorrect steps on disable EEE Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 107/151] net: stmmac: trigger PCS EEE to turn off on link down Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 108/151] gve: Correct available tx qpl check Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 109/151] gve: Avoid freeing NULL pointer Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 110/151] gve: Properly handle errors in gve_assign_qpl Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 111/151] rtnetlink: fix if_nlmsg_stats_size() under estimation Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 112/151] gve: fix gve_get_stats() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 113/151] gve: report 64bit tx_bytes counter from gve_handle_report_stats() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 114/151] i40e: fix endless loop under rtnl Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 115/151] i40e: Fix freeing of uninitialized misc IRQ vector Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 116/151] iavf: fix double unlock of crit_lock Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 117/151] net: prefer socket bound to interface when not in VRF Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 118/151] powerpc/iommu: Report the correct most efficient DMA mask for PCI devices Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 119/151] i2c: acpi: fix resource leak in reconfiguration device addition Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 120/151] i2c: mediatek: Add OFFSET_EXT_CONF setting back Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 121/151] riscv: explicitly use symbol offsets for VDSO Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 122/151] RISC-V: Fix VDSO build for !MMU Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 123/151] riscv/vdso: Refactor asm/vdso.h Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 124/151] riscv/vdso: Move vdso data page up front Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 125/151] riscv/vdso: make arch_setup_additional_pages wait for mmap_sem for write killable Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 126/151] bpf, s390: Fix potential memory leak about jit_data Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 127/151] i2c: mlxcpld: Fix criteria for frequency setting Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 128/151] i2c: mlxcpld: Modify register setting for 400KHz frequency Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 129/151] RISC-V: Include clone3() on rv32 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 130/151] scsi: iscsi: Fix iscsi_task use after free Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 131/151] objtool: Remove reloc symbol type checks in get_alt_entry() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 132/151] objtool: Make .altinstructions section entry size consistent Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 133/151] powerpc/bpf: Fix BPF_MOD when imm == 1 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 134/151] powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 135/151] powerpc/bpf ppc32: Fix ALU32 BPF_ARSH operation Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 136/151] powerpc/bpf ppc32: Fix JMP32_JSET_K Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 137/151] powerpc/bpf ppc32: Do not emit zero extend instruction for 64-bit BPF_END Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 138/151] powerpc/bpf ppc32: Fix BPF_SUB when imm == 0x80000000 Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 139/151] powerpc/64s: fix program check interrupt emergency stack path Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 140/151] powerpc/traps: do not enable irqs in _exception Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 141/151] powerpc/64s: Fix unrecoverable MCE calling async handler from NMI Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 142/151] powerpc/32s: Fix kuap_kernel_restore() Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 143/151] pseries/eeh: Fix the kdump kernel crash during eeh_pseries_init Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 144/151] x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 145/151] x86/Kconfig: Correct reference to MWINCHIP3D Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 146/151] x86/sev: Return an error on a returned non-zero SW_EXITINFO1[31:0] Greg Kroah-Hartman
2021-10-11 13:46 ` [PATCH 5.14 147/151] x86/fpu: Restore the masking out of reserved MXCSR bits Greg Kroah-Hartman
2021-10-11 13:47 ` [PATCH 5.14 148/151] x86/entry: Correct reference to intended CONFIG_64_BIT Greg Kroah-Hartman
2021-10-11 13:47 ` [PATCH 5.14 149/151] x86/entry: Clear X86_FEATURE_SMAP when CONFIG_X86_SMAP=n Greg Kroah-Hartman
2021-10-11 13:47 ` [PATCH 5.14 150/151] x86/hpet: Use another crystalball to evaluate HPET usability Greg Kroah-Hartman
2021-10-11 13:47 ` [PATCH 5.14 151/151] dsa: tag_dsa: Fix mask for trunked packets Greg Kroah-Hartman
2021-10-11 16:25 ` [PATCH 5.14 000/151] 5.14.12-rc1 review Florian Fainelli
2021-10-11 16:43 ` Fox Chen
2021-10-11 18:35 ` Naresh Kamboju
2021-10-11 19:11   ` Naresh Kamboju
2021-10-11 19:30   ` Arnd Bergmann
2021-10-11 21:34     ` Naresh Kamboju
2021-10-12  1:17 ` Shuah Khan
2021-10-12  2:02 ` Guenter Roeck
2021-10-12  7:36 ` Jon Hunter
2021-10-12 10:27 ` Naresh Kamboju

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=20211011134518.953631211@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=adrian.hunter@intel.com \
    --cc=bvanassche@acm.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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