linux-kernel.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,
	Lucas De Marchi <lucas.demarchi@intel.com>,
	stable@vger.kernel.org, Dale B Stimson <dale.b.stimson@intel.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Chris Wilson <chris@chris-wilson.co.uk>
Subject: [PATCH 5.9 238/252] drm/i915/tgl: Fix Media power gate sequence.
Date: Mon, 23 Nov 2020 13:23:08 +0100	[thread overview]
Message-ID: <20201123121847.066523510@linuxfoundation.org> (raw)
In-Reply-To: <20201123121835.580259631@linuxfoundation.org>

From: Rodrigo Vivi <rodrigo.vivi@intel.com>

commit 85a12d7eb8fe449cf38f1aa9ead5ca744729a98f upstream.

Some media power gates are disabled by default. commit 5d86923060fc
("drm/i915/tgl: Enable VD HCP/MFX sub-pipe power gating")
tried to enable it, but it duplicated an existent register.
So, the main PG setup sequences ended up overwriting it.

So, let's now merge this to the main PG setup sequence.

v2: (Chris): s/BIT/REG_BIT, remove useless comment,
    	     remove useless =0, use the right gt,
	     remove rc6 sequence doubt from commit message.

Fixes: 5d86923060fc ("drm/i915/tgl: Enable VD HCP/MFX sub-pipe power gating")
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: stable@vger.kernel.org#v5.5+
Cc: Dale B Stimson <dale.b.stimson@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20201111072859.1186070-1-rodrigo.vivi@intel.com
(cherry picked from commit 695dc55b573985569259e18f8e6261a77924342b)
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/gpu/drm/i915/gt/intel_rc6.c |   22 +++++++++++++++++-----
 drivers/gpu/drm/i915/i915_reg.h     |   12 +++++-------
 drivers/gpu/drm/i915/intel_pm.c     |   13 -------------
 3 files changed, 22 insertions(+), 25 deletions(-)

--- a/drivers/gpu/drm/i915/gt/intel_rc6.c
+++ b/drivers/gpu/drm/i915/gt/intel_rc6.c
@@ -56,9 +56,12 @@ static inline void set(struct intel_unco
 
 static void gen11_rc6_enable(struct intel_rc6 *rc6)
 {
-	struct intel_uncore *uncore = rc6_to_uncore(rc6);
+	struct intel_gt *gt = rc6_to_gt(rc6);
+	struct intel_uncore *uncore = gt->uncore;
 	struct intel_engine_cs *engine;
 	enum intel_engine_id id;
+	u32 pg_enable;
+	int i;
 
 	/* 2b: Program RC6 thresholds.*/
 	set(uncore, GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
@@ -102,10 +105,19 @@ static void gen11_rc6_enable(struct inte
 		GEN6_RC_CTL_RC6_ENABLE |
 		GEN6_RC_CTL_EI_MODE(1);
 
-	set(uncore, GEN9_PG_ENABLE,
-	    GEN9_RENDER_PG_ENABLE |
-	    GEN9_MEDIA_PG_ENABLE |
-	    GEN11_MEDIA_SAMPLER_PG_ENABLE);
+	pg_enable =
+		GEN9_RENDER_PG_ENABLE |
+		GEN9_MEDIA_PG_ENABLE |
+		GEN11_MEDIA_SAMPLER_PG_ENABLE;
+
+	if (INTEL_GEN(gt->i915) >= 12) {
+		for (i = 0; i < I915_MAX_VCS; i++)
+			if (HAS_ENGINE(gt, _VCS(i)))
+				pg_enable |= (VDN_HCP_POWERGATE_ENABLE(i) |
+					      VDN_MFX_POWERGATE_ENABLE(i));
+	}
+
+	set(uncore, GEN9_PG_ENABLE, pg_enable);
 }
 
 static void gen9_rc6_enable(struct intel_rc6 *rc6)
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -8974,10 +8974,6 @@ enum {
 #define   GEN9_PWRGT_MEDIA_STATUS_MASK		(1 << 0)
 #define   GEN9_PWRGT_RENDER_STATUS_MASK		(1 << 1)
 
-#define POWERGATE_ENABLE			_MMIO(0xa210)
-#define    VDN_HCP_POWERGATE_ENABLE(n)		BIT(((n) * 2) + 3)
-#define    VDN_MFX_POWERGATE_ENABLE(n)		BIT(((n) * 2) + 4)
-
 #define  GTFIFODBG				_MMIO(0x120000)
 #define    GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV	(0x1f << 20)
 #define    GT_FIFO_FREE_ENTRIES_CHV		(0x7f << 13)
@@ -9117,9 +9113,11 @@ enum {
 #define GEN9_MEDIA_PG_IDLE_HYSTERESIS		_MMIO(0xA0C4)
 #define GEN9_RENDER_PG_IDLE_HYSTERESIS		_MMIO(0xA0C8)
 #define GEN9_PG_ENABLE				_MMIO(0xA210)
-#define GEN9_RENDER_PG_ENABLE			REG_BIT(0)
-#define GEN9_MEDIA_PG_ENABLE			REG_BIT(1)
-#define GEN11_MEDIA_SAMPLER_PG_ENABLE		REG_BIT(2)
+#define   GEN9_RENDER_PG_ENABLE			REG_BIT(0)
+#define   GEN9_MEDIA_PG_ENABLE			REG_BIT(1)
+#define   GEN11_MEDIA_SAMPLER_PG_ENABLE		REG_BIT(2)
+#define   VDN_HCP_POWERGATE_ENABLE(n)		REG_BIT(3 + 2 * (n))
+#define   VDN_MFX_POWERGATE_ENABLE(n)		REG_BIT(4 + 2 * (n))
 #define GEN8_PUSHBUS_CONTROL			_MMIO(0xA248)
 #define GEN8_PUSHBUS_ENABLE			_MMIO(0xA250)
 #define GEN8_PUSHBUS_SHIFT			_MMIO(0xA25C)
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -7124,23 +7124,10 @@ static void icl_init_clock_gating(struct
 
 static void tgl_init_clock_gating(struct drm_i915_private *dev_priv)
 {
-	u32 vd_pg_enable = 0;
-	unsigned int i;
-
 	/* Wa_1409120013:tgl */
 	I915_WRITE(ILK_DPFC_CHICKEN,
 		   ILK_DPFC_CHICKEN_COMP_DUMMY_PIXEL);
 
-	/* This is not a WA. Enable VD HCP & MFX_ENC powergate */
-	for (i = 0; i < I915_MAX_VCS; i++) {
-		if (HAS_ENGINE(&dev_priv->gt, _VCS(i)))
-			vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) |
-					VDN_MFX_POWERGATE_ENABLE(i);
-	}
-
-	I915_WRITE(POWERGATE_ENABLE,
-		   I915_READ(POWERGATE_ENABLE) | vd_pg_enable);
-
 	/* Wa_1409825376:tgl (pre-prod)*/
 	if (IS_TGL_REVID(dev_priv, TGL_REVID_A0, TGL_REVID_A0))
 		I915_WRITE(GEN9_CLKGATE_DIS_3, I915_READ(GEN9_CLKGATE_DIS_3) |



  parent reply	other threads:[~2020-11-23 13:50 UTC|newest]

Thread overview: 259+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-23 12:19 [PATCH 5.9 000/252] 5.9.11-rc1 review Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 001/252] ah6: fix error return code in ah6_input() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 002/252] atm: nicstar: Unmap DMA on send error Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 003/252] bnxt_en: read EEPROM A2h address using page 0 Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 004/252] devlink: Add missing genlmsg_cancel() in devlink_nl_sb_port_pool_fill() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 005/252] enetc: Workaround for MDIO register access issue Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 006/252] Exempt multicast addresses from five-second neighbor lifetime Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 007/252] inet_diag: Fix error path to cancel the meseage in inet_req_diag_fill() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 008/252] ipv6: Fix error path to cancel the meseage Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 009/252] lan743x: fix issue causing intermittent kernel log warnings Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 010/252] lan743x: prevent entire kernel HANG on open, for some platforms Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 011/252] mlxsw: core: Use variable timeout for EMAD retries Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 012/252] net: b44: fix error return code in b44_init_one() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 013/252] net: bridge: add missing counters to ndo_get_stats64 callback Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 014/252] netdevsim: set .owner to THIS_MODULE Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 015/252] net: dsa: mv88e6xxx: Avoid VTU corruption on 6097 Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 016/252] net: ethernet: mtk-star-emac: fix error return code in mtk_star_enable() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 017/252] net: ethernet: mtk-star-emac: return ok when xmit drops Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 018/252] net: ethernet: ti: am65-cpts: update ret when ptp_clock is ERROR Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 019/252] net: ethernet: ti: cpsw: fix cpts irq after suspend Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 020/252] net: ethernet: ti: cpsw: fix error return code in cpsw_probe() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 021/252] net: ftgmac100: Fix crash when removing driver Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 022/252] net: Have netpoll bring-up DSA management interface Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 023/252] net: ipa: lock when freeing transaction Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 024/252] netlabel: fix our progress tracking in netlbl_unlabel_staticlist() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 025/252] netlabel: fix an uninitialized warning " Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 026/252] net: lantiq: Wait for the GPHY firmware to be ready Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 027/252] net/mlx4_core: Fix init_hca fields offset Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 028/252] net/mlx5e: Fix refcount leak on kTLS RX resync Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 029/252] net/ncsi: Fix netlink registration Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 030/252] net: phy: mscc: remove non-MACSec compatible phy Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 031/252] net: qualcomm: rmnet: Fix incorrect receive packet handling during cleanup Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 032/252] net/smc: fix direct access to ib_gid_addr->ndev in smc_ib_determine_gid() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 033/252] net: stmmac: Use rtnl_lock/unlock on netif_set_real_num_rx_queues() call Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 034/252] net/tls: fix corrupted data in recvmsg Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 035/252] net: x25: Increase refcnt of "struct x25_neigh" in x25_rx_call_request Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 036/252] page_frag: Recover from memory pressure Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 037/252] qed: fix error return code in qed_iwarp_ll2_start() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 038/252] qed: fix ILT configuration of SRC block Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 039/252] qlcnic: fix error return code in qlcnic_83xx_restart_hw() Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 040/252] sctp: change to hold/put transport for proto_unreach_timer Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 041/252] tcp: only postpone PROBE_RTT if RTT is < current min_rtt estimate Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 042/252] vsock: forward all packets to the host when no H2G is registered Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 043/252] net/mlx5e: Fix check if netdev is bond slave Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 044/252] net/mlx5: Add handling of port type in rule deletion Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 045/252] net/mlx5: Clear bw_share upon VF disable Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 046/252] net/mlx5: Disable QoS when min_rates on all VFs are zero Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 047/252] PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 048/252] net: fec: Fix reference count leak in fec series ops Greg Kroah-Hartman
2020-11-23 12:19 ` [PATCH 5.9 049/252] bnxt_en: Fix counter overflow logic Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 050/252] bnxt_en: Free port stats during firmware reset Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 051/252] net: mvneta: fix possible memory leak in mvneta_swbm_add_rx_fragment Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 052/252] net/tls: Fix wrong record sn in async mode of device resync Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 053/252] net: usb: qmi_wwan: Set DTR quirk for MR400 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 054/252] Revert "Revert "gpio: omap: Fix lost edge wake-up interrupts"" Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 055/252] tools, bpftool: Avoid array index warnings Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 056/252] habanalabs/gaudi: mask WDT error in QMAN Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 057/252] pinctrl: rockchip: enable gpio pclk for rockchip_gpio_to_irq Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 058/252] scsi: ufs: Fix unbalanced scsi_block_reqs_cnt caused by ufshcd_hold() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 059/252] scsi: ufs: Try to save power mode change and UIC cmd completion timeout Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 060/252] pinctrl: mcp23s08: Print error message when regmap init fails Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 061/252] selftests: kvm: Fix the segment descriptor layout to match the actual layout Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 062/252] ACPI: button: Add DMI quirk for Medion Akoya E2228T Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 063/252] arm64: errata: Fix handling of 1418040 with late CPU onlining Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 064/252] arm64: psci: Avoid printing in cpu_psci_cpu_die() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 065/252] arm64: smp: Tell RCU about CPUs that fail to come online Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 066/252] um: Call pgtable_pmd_page_dtor() in __pmd_free_tlb() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 067/252] vfs: remove lockdep bogosity in __sb_start_write Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 068/252] gfs2: fix possible reference leak in gfs2_check_blk_type Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 069/252] hwmon: (pwm-fan) Fix RPM calculation Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 070/252] gfs2: Fix case in which ail writes are done to jdata holes Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 071/252] arm64: Add MIDR value for KRYO2XX gold/silver CPU cores Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 072/252] arm64: kpti: Add KRYO2XX gold/silver CPU cores to kpti safelist Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 073/252] arm64: cpu_errata: Apply Erratum 845719 to KRYO2XX Silver Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 074/252] usb: dwc2: Avoid leaving the error_debugfs label unused Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 075/252] arm64: dts: allwinner: beelink-gs1: Enable both RGMII RX/TX delay Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 076/252] arm64: dts: allwinner: Pine H64: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 077/252] arm64: dts: allwinner: a64: OrangePi Win: Fix ethernet node Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 078/252] arm64: dts: allwinner: a64: Pine64 Plus: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 079/252] arm64: dts: allwinner: h5: OrangePi PC2: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 080/252] ARM: dts: sun8i: r40: bananapi-m2-ultra: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 081/252] Revert "arm: sun8i: orangepi-pc-plus: Set EMAC activity LEDs to active high" Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 082/252] ARM: dts: sun6i: a31-hummingbird: Enable RGMII RX/TX delay on Ethernet PHY Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 083/252] ARM: dts: sun7i: cubietruck: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 084/252] ARM: dts: sun7i: bananapi-m1-plus: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 085/252] ARM: dts: sun8i: h3: orangepi-plus2e: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 086/252] ARM: dts: sun8i: a83t: Enable both " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 087/252] ARM: dts: sun9i: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 088/252] ARM: dts: sunxi: bananapi-m2-plus: Enable " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 089/252] arm64: dts: allwinner: h5: libretech-all-h5-cc: Enable RGMII RX/TX delay on PHY Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 090/252] arm64: dts: allwinner: a64: bananapi-m64: " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 091/252] Input: adxl34x - clean up a data type in adxl34x_probe() Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 092/252] MIPS: export has_transparent_hugepage() for modules Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 093/252] dmaengine: idxd: fix wq config registers offset programming Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 094/252] arm64: dts: allwinner: h5: OrangePi Prime: Fix ethernet node Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 095/252] arm64: dts: fsl: fix endianness issue of rcpm Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 096/252] arm64: dts: imx8mm-beacon-som: Fix Choppy BT audio Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 097/252] arm64: dts imx8mn: Remove non-existent USB OTG2 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 098/252] arm: dts: imx6qdl-udoo: fix rgmii phy-mode for ksz9031 phy Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 099/252] ARM: dts: vf610-zii-dev-rev-b: Fix MDIO over clocking Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 100/252] ARM: dts: imx6q-prti6q: fix PHY address Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 101/252] swiotlb: using SIZE_MAX needs limits.h included Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 102/252] tee: amdtee: fix memory leak due to reset of global shm list Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 103/252] tee: amdtee: synchronize access to " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 104/252] dmaengine: xilinx_dma: Fix usage of xilinx_aximcdma_tx_segment Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 105/252] dmaengine: xilinx_dma: Fix SG capability check for MCDMA Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 106/252] ARM: dts: stm32: Fix TA3-GPIO-C key on STM32MP1 DHCOM PDK2 Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 107/252] ARM: dts: stm32: Fix LED5 " Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 108/252] ARM: dts: stm32: Define VIO regulator supply on DHCOM Greg Kroah-Hartman
2020-11-23 12:20 ` [PATCH 5.9 109/252] ARM: dts: stm32: Enable thermal sensor support on stm32mp15xx-dhcor Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 110/252] ARM: dts: stm32: Keep VDDA LDO1 always on on DHCOM Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 111/252] arm64: dts: imx8mm: fix voltage for 1.6GHz CPU operating point Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 112/252] ARM: dts: imx50-evk: Fix the chip select 1 IOMUX Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 113/252] dmaengine: ti: omap-dma: Block PM if SDMA is busy to fix audio Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 114/252] kunit: tool: unmark test_data as binary blobs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 115/252] rcu: Dont invoke try_invoke_on_locked_down_task() with irqs disabled Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 116/252] spi: fix client driver breakages when using GPIO descriptors Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 117/252] Input: resistive-adc-touch - fix kconfig dependency on IIO_BUFFER Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 118/252] Input: elan_i2c - fix firmware update on newer ICs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 119/252] rfkill: Fix use-after-free in rfkill_resume() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 120/252] RDMA/pvrdma: Fix missing kfree() in pvrdma_register_device() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 121/252] RMDA/sw: Dont allow drivers using dma_virt_ops on highmem configs Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 122/252] perf lock: Correct field name "flags" Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 123/252] perf lock: Dont free "lock_seq_stat" if read_count isnt zero Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 124/252] SUNRPC: Fix oops in the rpc_xdr_buf event class Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 125/252] drm: bridge: dw-hdmi: Avoid resetting force in the detect function Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 126/252] tools, bpftool: Add missing close before bpftool net attach exit Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 127/252] IB/hfi1: Fix error return code in hfi1_init_dd() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 128/252] ip_tunnels: Set tunnel option flag when tunnel metadata is present Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 129/252] can: af_can: prevent potential access of uninitialized member in can_rcv() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 130/252] can: af_can: prevent potential access of uninitialized member in canfd_rcv() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 131/252] can: dev: can_restart(): post buffer from the right context Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 132/252] can: ti_hecc: Fix memleak in ti_hecc_probe Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 133/252] can: mcba_usb: mcba_usb_start_xmit(): first fill skb, then pass to can_put_echo_skb() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 134/252] can: peak_usb: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 135/252] can: flexcan: fix failure handling of pm_runtime_get_sync() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 136/252] can: tcan4x5x: replace depends on REGMAP_SPI with depends on SPI Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 137/252] can: tcan4x5x: tcan4x5x_can_probe(): add missing error checking for devm_regmap_init() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 138/252] can: tcan4x5x: tcan4x5x_can_remove(): fix order of deregistration Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 139/252] can: m_can: m_can_handle_state_change(): fix state change Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 140/252] can: m_can: m_can_class_free_dev(): introduce new function Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 141/252] can: m_can: Fix freeing of can device from peripherials Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 142/252] can: m_can: m_can_stop(): set device to software init mode before closing Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 143/252] dmaengine: idxd: fix mapping of portal size Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 144/252] ASoC: Intel: KMB: Fix S24_LE configuration Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 145/252] ASoC: qcom: lpass-platform: Fix memory leak Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 146/252] spi: cadence-quadspi: Fix error return code in cqspi_probe Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 147/252] selftests/bpf: Fix error return code in run_getsockopt_test() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 148/252] MIPS: Alchemy: Fix memleak in alchemy_clk_setup_cpu Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 149/252] drm/sun4i: dw-hdmi: fix error return code in sun8i_dw_hdmi_bind() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 150/252] net/mlx5: E-Switch, Fail mlx5_esw_modify_vport_rate if qos disabled Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 151/252] bpf, sockmap: Fix partial copy_page_to_iter so progress can still be made Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 152/252] bpf, sockmap: Ensure SO_RCVBUF memory is observed on ingress redirect Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 153/252] can: kvaser_pciefd: Fix KCAN bittiming limits Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 154/252] can: kvaser_usb: kvaser_usb_hydra: " Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 155/252] dmaengine: fix error codes in channel_register() Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 156/252] iommu/vt-d: Move intel_iommu_gfx_mapped to Intel IOMMU header Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 157/252] iommu/vt-d: Avoid panic if iommu init fails in tboot system Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 158/252] can: flexcan: flexcan_chip_start(): fix erroneous flexcan_transceiver_enable() during bus-off recovery Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 159/252] can: m_can: process interrupt only when not runtime suspended Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 160/252] xfs: fix the minrecs logic when dealing with inode root child blocks Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 161/252] xfs: strengthen rmap record flags checking Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 162/252] xfs: directory scrub should check the null bestfree entries too Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 163/252] xfs: ensure inobt record walks always make forward progress Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 164/252] xfs: return corresponding errcode if xfs_initialize_perag() fail Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 165/252] ASOC: Intel: kbl_rt5663_rt5514_max98927: Do not try to disable disabled clock Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 166/252] regulator: ti-abb: Fix array out of bound read access on the first transition Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 167/252] libbpf: Fix VERSIONED_SYM_COUNT number parsing Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 168/252] lib/strncpy_from_user.c: Mask out bytes after NUL terminator Greg Kroah-Hartman
2020-11-23 12:21 ` [PATCH 5.9 169/252] fail_function: Remove a redundant mutex unlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 170/252] xfs: revert "xfs: fix rmap key and record comparison functions" Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 171/252] selftests/seccomp: powerpc: Fix typo in macro variable name Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 172/252] selftests/seccomp: sh: Fix register names Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 173/252] bpf, sockmap: Skb verdict SK_PASS to self already checked rmem limits Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 174/252] bpf, sockmap: On receive programs try to fast track SK_PASS ingress Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 175/252] bpf, sockmap: Use truesize with sk_rmem_schedule() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 176/252] bpf, sockmap: Avoid returning unneeded EAGAIN when redirecting to self Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 177/252] efi/arm: set HSCTLR Thumb2 bit correctly for HVC calls from HYP Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 178/252] counter/ti-eqep: Fix regmap max_register Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 179/252] efi/x86: Free efi_pgd with free_pages() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 180/252] sched/fair: Fix overutilized update in enqueue_task_fair() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 181/252] sched: Fix data-race in wakeup Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 182/252] sched: Fix rq->nr_iowait ordering Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 183/252] libfs: fix error cast of negative value in simple_attr_write() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 184/252] afs: Fix speculative status fetch going out of order wrt to modifications Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 185/252] HID: logitech-hidpp: Add PID for MX Anywhere 2 Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 186/252] HID: mcp2221: Fix GPIO output handling Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 187/252] HID: logitech-dj: Handle quad/bluetooth keyboards with a builtin trackpad Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 188/252] HID: logitech-dj: Fix Dinovo Mini when paired with a MX5x00 receiver Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 189/252] speakup: Do not let the line discipline be used several times Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 190/252] ALSA: firewire: Clean up a locking issue in copy_resp_to_buf() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 191/252] ALSA: usb-audio: Add delay quirk for all Logitech USB devices Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 192/252] ALSA: ctl: fix error path at adding user-defined element set Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 193/252] ALSA: mixart: Fix mutex deadlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 194/252] ALSA: hda/realtek - Add supported for Lenovo ThinkPad Headset Button Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 195/252] ALSA: hda/realtek - Add supported mute Led for HP Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 196/252] ALSA: hda/realtek: Add some Clove SSID in the ALC293(ALC1220) Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 197/252] ALSA: hda/realtek - HP Headset Mic cant detect after boot Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 198/252] tty: serial: imx: fix potential deadlock Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 199/252] tty: serial: imx: keep console clocks always on Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 200/252] HID: logitech-dj: Fix an error in mse_bluetooth_descriptor Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 201/252] efivarfs: fix memory leak in efivarfs_create() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 202/252] staging: rtl8723bs: Add 024c:0627 to the list of SDIO device-ids Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 203/252] staging: mt7621-pci: avoid to request pci bus resources Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 204/252] iio: light: fix kconfig dependency bug for VCNL4035 Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 205/252] ext4: fix bogus warning in ext4_update_dx_flag() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 206/252] xfs: fix forkoff miscalculation related to XFS_LITINO(mp) Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 207/252] ACPI: fan: Initialize performance state sysfs attribute Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 208/252] iio: accel: kxcjk1013: Replace is_smo8500_device with an acpi_type enum Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 209/252] iio: accel: kxcjk1013: Add support for KIOX010A ACPI DSM for setting tablet-mode Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 210/252] iio: adc: mediatek: fix unset field Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 211/252] iio: cros_ec: Use default frequencies when EC returns invalid information Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 212/252] iio: imu: st_lsm6dsx: set 10ms as min shub slave timeout Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 213/252] iio/adc: ingenic: Fix AUX/VBAT readings when touchscreen is used Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 214/252] iio/adc: ingenic: Fix battery VREF for JZ4770 SoC Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 215/252] iio: adc: stm32-adc: fix a regression when using dma and irq Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 216/252] serial: ar933x_uart: disable clk on error handling path in probe Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 217/252] arm64: dts: agilex/stratix10: Fix qspi node compatible Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 218/252] spi: lpspi: Fix use-after-free on unbind Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 219/252] spi: Introduce device-managed SPI controller allocation Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 220/252] spi: npcm-fiu: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 221/252] spi: bcm2835aux: Fix use-after-free on unbind Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 222/252] regulator: pfuze100: limit pfuze-support-disable-sw to pfuze{100,200} Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 223/252] regulator: fix memory leak with repeated set_machine_constraints() Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 224/252] regulator: avoid resolve_supply() infinite recursion Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 225/252] regulator: workaround self-referent regulators Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 226/252] gfs2: Fix regression in freeze_go_sync Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 227/252] xtensa: fix TLBTEMP area placement Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 228/252] xtensa: disable preemption around cache alias management calls Greg Kroah-Hartman
2020-11-23 12:22 ` [PATCH 5.9 229/252] mac80211: minstrel: remove deferred sampling code Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 230/252] mac80211: minstrel: fix tx status processing corner case Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 231/252] mac80211: free sta in sta_info_insert_finish() on errors Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 232/252] s390: fix system call exit path Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 233/252] s390/cpum_sf.c: fix file permission for cpum_sfb_size Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 234/252] s390/dasd: fix null pointer dereference for ERP requests Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 235/252] Drivers: hv: vmbus: Allow cleanup of VMBUS_CONNECT_CPU if disconnected Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 236/252] drm/amd/display: Add missing pflip irq for dcn2.0 Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 237/252] drm/i915: Handle max_bpc==16 Greg Kroah-Hartman
2020-11-23 12:23 ` Greg Kroah-Hartman [this message]
2020-11-23 12:23 ` [PATCH 5.9 239/252] io_uring: dont double complete failed reissue request Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 240/252] mmc: sdhci-pci: Prefer SDR25 timing for High Speed mode for BYT-based Intel controllers Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 241/252] mmc: sdhci-of-arasan: Allow configuring zero tap values Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 242/252] mmc: sdhci-of-arasan: Use Mask writes for Tap delays Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 243/252] mmc: sdhci-of-arasan: Issue DLL reset explicitly Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 244/252] blk-cgroup: fix a hd_struct leak in blkcg_fill_root_iostats Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 245/252] ptrace: Set PF_SUPERPRIV when checking capability Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 246/252] seccomp: " Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 247/252] fanotify: fix logic of reporting name info with watched parent Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 248/252] x86/microcode/intel: Check patch signature before saving microcode for early loading Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 249/252] mm: never attempt async page lock if weve transferred data already Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 250/252] mm: fix readahead_page_batch for retry entries Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 251/252] mm: memcg/slab: fix root memcg vmstats Greg Kroah-Hartman
2020-11-23 12:23 ` [PATCH 5.9 252/252] mm/userfaultfd: do not access vma->vm_mm after calling handle_userfault() Greg Kroah-Hartman
2020-11-23 22:36 ` [PATCH 5.9 000/252] 5.9.11-rc1 review Guenter Roeck
2020-11-24 20:28   ` Greg Kroah-Hartman
2020-11-24  0:31 ` Shuah Khan
2020-11-24 20:28   ` Greg Kroah-Hartman
2020-11-24  6:11 ` Naresh Kamboju
2020-11-24 20:28   ` Greg Kroah-Hartman

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=20201123121847.066523510@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=chris@chris-wilson.co.uk \
    --cc=dale.b.stimson@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lucas.demarchi@intel.com \
    --cc=rodrigo.vivi@intel.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).