public inbox for linux-kernel@vger.kernel.org
 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, Ionela Voinescu <ionela.voinescu@arm.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>, James Morse <james.morse@arm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.19 022/192] arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly
Date: Tue, 13 Sep 2022 16:02:08 +0200	[thread overview]
Message-ID: <20220913140411.017538565@linuxfoundation.org> (raw)
In-Reply-To: <20220913140410.043243217@linuxfoundation.org>

From: Ionela Voinescu <ionela.voinescu@arm.com>

[ Upstream commit e89d120c4b720e232cc6a94f0fcbd59c15d41489 ]

The AMU counter AMEVCNTR01 (constant counter) should increment at the same
rate as the system counter. On affected Cortex-A510 cores, AMEVCNTR01
increments incorrectly giving a significantly higher output value. This
results in inaccurate task scheduler utilization tracking and incorrect
feedback on CPU frequency.

Work around this problem by returning 0 when reading the affected counter
in key locations that results in disabling all users of this counter from
using it either for frequency invariance or as FFH reference counter. This
effect is the same to firmware disabling affected counters.

Details on how the two features are affected by this erratum:

 - AMU counters will not be used for frequency invariance for affected
   CPUs and CPUs in the same cpufreq policy. AMUs can still be used for
   frequency invariance for unaffected CPUs in the system. Although
   unlikely, if no alternative method can be found to support frequency
   invariance for affected CPUs (cpufreq based or solution based on
   platform counters) frequency invariance will be disabled. Please check
   the chapter on frequency invariance at
   Documentation/scheduler/sched-capacity.rst for details of its effect.

 - Given that FFH can be used to fetch either the core or constant counter
   values, restrictions are lifted regarding any of these counters
   returning a valid (!0) value. Therefore FFH is considered supported
   if there is a least one CPU that support AMUs, independent of any
   counters being disabled or affected by this erratum. Clarifying
   comments are now added to the cpc_ffh_supported(), cpu_read_constcnt()
   and cpu_read_corecnt() functions.

The above is achieved through adding a new erratum: ARM64_ERRATUM_2457168.

Signed-off-by: Ionela Voinescu <ionela.voinescu@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: James Morse <james.morse@arm.com>
Link: https://lore.kernel.org/r/20220819103050.24211-1-ionela.voinescu@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 Documentation/arm64/silicon-errata.rst |  2 ++
 arch/arm64/Kconfig                     | 17 ++++++++++++++
 arch/arm64/kernel/cpu_errata.c         | 10 ++++++++
 arch/arm64/kernel/cpufeature.c         |  5 +++-
 arch/arm64/kernel/topology.c           | 32 ++++++++++++++++++++++++--
 arch/arm64/tools/cpucaps               |  1 +
 6 files changed, 64 insertions(+), 3 deletions(-)

diff --git a/Documentation/arm64/silicon-errata.rst b/Documentation/arm64/silicon-errata.rst
index 33b04db8408f9..fda97b3fcf018 100644
--- a/Documentation/arm64/silicon-errata.rst
+++ b/Documentation/arm64/silicon-errata.rst
@@ -52,6 +52,8 @@ stable kernels.
 | Allwinner      | A64/R18         | UNKNOWN1        | SUN50I_ERRATUM_UNKNOWN1     |
 +----------------+-----------------+-----------------+-----------------------------+
 +----------------+-----------------+-----------------+-----------------------------+
+| ARM            | Cortex-A510     | #2457168        | ARM64_ERRATUM_2457168       |
++----------------+-----------------+-----------------+-----------------------------+
 | ARM            | Cortex-A510     | #2064142        | ARM64_ERRATUM_2064142       |
 +----------------+-----------------+-----------------+-----------------------------+
 | ARM            | Cortex-A510     | #2038923        | ARM64_ERRATUM_2038923       |
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 001eaba5a6b4b..21f33d8d66685 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -914,6 +914,23 @@ config ARM64_ERRATUM_1902691
 
 	  If unsure, say Y.
 
+config ARM64_ERRATUM_2457168
+	bool "Cortex-A510: 2457168: workaround for AMEVCNTR01 incrementing incorrectly"
+	depends on ARM64_AMU_EXTN
+	default y
+	help
+	  This option adds the workaround for ARM Cortex-A510 erratum 2457168.
+
+	  The AMU counter AMEVCNTR01 (constant counter) should increment at the same rate
+	  as the system counter. On affected Cortex-A510 cores AMEVCNTR01 increments
+	  incorrectly giving a significantly higher output value.
+
+	  Work around this problem by returning 0 when reading the affected counter in
+	  key locations that results in disabling all users of this counter. This effect
+	  is the same to firmware disabling affected counters.
+
+	  If unsure, say Y.
+
 config CAVIUM_ERRATUM_22375
 	bool "Cavium erratum 22375, 24313"
 	default y
diff --git a/arch/arm64/kernel/cpu_errata.c b/arch/arm64/kernel/cpu_errata.c
index 5f4117dae8888..af137f91607da 100644
--- a/arch/arm64/kernel/cpu_errata.c
+++ b/arch/arm64/kernel/cpu_errata.c
@@ -656,6 +656,16 @@ const struct arm64_cpu_capabilities arm64_errata[] = {
 		ERRATA_MIDR_REV_RANGE(MIDR_CORTEX_A510, 0, 0, 2)
 	},
 #endif
+#ifdef CONFIG_ARM64_ERRATUM_2457168
+	{
+		.desc = "ARM erratum 2457168",
+		.capability = ARM64_WORKAROUND_2457168,
+		.type = ARM64_CPUCAP_WEAK_LOCAL_CPU_FEATURE,
+
+		/* Cortex-A510 r0p0-r1p1 */
+		CAP_MIDR_RANGE(MIDR_CORTEX_A510, 0, 0, 1, 1)
+	},
+#endif
 #ifdef CONFIG_ARM64_ERRATUM_2038923
 	{
 		.desc = "ARM erratum 2038923",
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
index ebdfbd1cf207b..f34c9f8b9ee0a 100644
--- a/arch/arm64/kernel/cpufeature.c
+++ b/arch/arm64/kernel/cpufeature.c
@@ -1798,7 +1798,10 @@ static void cpu_amu_enable(struct arm64_cpu_capabilities const *cap)
 		pr_info("detected CPU%d: Activity Monitors Unit (AMU)\n",
 			smp_processor_id());
 		cpumask_set_cpu(smp_processor_id(), &amu_cpus);
-		update_freq_counters_refs();
+
+		/* 0 reference values signal broken/disabled counters */
+		if (!this_cpu_has_cap(ARM64_WORKAROUND_2457168))
+			update_freq_counters_refs();
 	}
 }
 
diff --git a/arch/arm64/kernel/topology.c b/arch/arm64/kernel/topology.c
index 9ab78ad826e2a..707b5451929d4 100644
--- a/arch/arm64/kernel/topology.c
+++ b/arch/arm64/kernel/topology.c
@@ -310,12 +310,25 @@ core_initcall(init_amu_fie);
 
 static void cpu_read_corecnt(void *val)
 {
+	/*
+	 * A value of 0 can be returned if the current CPU does not support AMUs
+	 * or if the counter is disabled for this CPU. A return value of 0 at
+	 * counter read is properly handled as an error case by the users of the
+	 * counter.
+	 */
 	*(u64 *)val = read_corecnt();
 }
 
 static void cpu_read_constcnt(void *val)
 {
-	*(u64 *)val = read_constcnt();
+	/*
+	 * Return 0 if the current CPU is affected by erratum 2457168. A value
+	 * of 0 is also returned if the current CPU does not support AMUs or if
+	 * the counter is disabled. A return value of 0 at counter read is
+	 * properly handled as an error case by the users of the counter.
+	 */
+	*(u64 *)val = this_cpu_has_cap(ARM64_WORKAROUND_2457168) ?
+		      0UL : read_constcnt();
 }
 
 static inline
@@ -342,7 +355,22 @@ int counters_read_on_cpu(int cpu, smp_call_func_t func, u64 *val)
  */
 bool cpc_ffh_supported(void)
 {
-	return freq_counters_valid(get_cpu_with_amu_feat());
+	int cpu = get_cpu_with_amu_feat();
+
+	/*
+	 * FFH is considered supported if there is at least one present CPU that
+	 * supports AMUs. Using FFH to read core and reference counters for CPUs
+	 * that do not support AMUs, have counters disabled or that are affected
+	 * by errata, will result in a return value of 0.
+	 *
+	 * This is done to allow any enabled and valid counters to be read
+	 * through FFH, knowing that potentially returning 0 as counter value is
+	 * properly handled by the users of these counters.
+	 */
+	if ((cpu >= nr_cpu_ids) || !cpumask_test_cpu(cpu, cpu_present_mask))
+		return false;
+
+	return true;
 }
 
 int cpc_read_ffh(int cpu, struct cpc_reg *reg, u64 *val)
diff --git a/arch/arm64/tools/cpucaps b/arch/arm64/tools/cpucaps
index 8809e14cf86a2..18999f46df19f 100644
--- a/arch/arm64/tools/cpucaps
+++ b/arch/arm64/tools/cpucaps
@@ -66,6 +66,7 @@ WORKAROUND_1902691
 WORKAROUND_2038923
 WORKAROUND_2064142
 WORKAROUND_2077057
+WORKAROUND_2457168
 WORKAROUND_TRBE_OVERWRITE_FILL_MODE
 WORKAROUND_TSB_FLUSH_FAILURE
 WORKAROUND_TRBE_WRITE_OUT_OF_RANGE
-- 
2.35.1




  parent reply	other threads:[~2022-09-13 14:13 UTC|newest]

Thread overview: 208+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-13 14:01 [PATCH 5.19 000/192] 5.19.9-rc1 review Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 001/192] efi: libstub: Disable struct randomization Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 002/192] efi: capsule-loader: Fix use-after-free in efi_capsule_write Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 003/192] wifi: mt76: mt7921e: fix crash in chip reset fail Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 004/192] wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in il4965_rs_fill_link_cmd() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 005/192] net: mvpp2: debugfs: fix memory leak when using debugfs_lookup() Greg Kroah-Hartman
2022-09-13 16:48   ` Russell King (Oracle)
2022-09-15  8:35     ` Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 006/192] fs: only do a memory barrier for the first set_buffer_uptodate() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 007/192] soc: fsl: select FSL_GUTS driver for DPIO Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 008/192] Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 009/192] scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 010/192] scsi: core: Allow the ALUA transitioning state enough time Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 011/192] scsi: megaraid_sas: Fix double kfree() Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 012/192] drm/gem: Fix GEM handle release errors Greg Kroah-Hartman
2022-09-13 14:01 ` [PATCH 5.19 013/192] drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to psp_hw_fini Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 014/192] drm/amdgpu: fix hive reference leak when adding xgmi device Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 015/192] drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 016/192] drm/amdgpu: Remove the additional kfd pre reset call for sriov Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 017/192] drm/radeon: add a force flush to delay work when radeon Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 018/192] scsi: ufs: core: Reduce the power mode change timeout Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 019/192] Revert "parisc: Show error if wrong 32/64-bit compiler is being used" Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 020/192] parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 021/192] parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines Greg Kroah-Hartman
2022-09-13 14:02 ` Greg Kroah-Hartman [this message]
2022-09-13 14:02 ` [PATCH 5.19 023/192] arm64/signal: Raise limit on stack frames Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 024/192] netfilter: conntrack: work around exceeded receive window Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 025/192] thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 026/192] cpufreq: check only freq_table in __resolve_freq() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 027/192] net/core/skbuff: Check the return value of skb_copy_bits() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 028/192] md: Flush workqueue md_rdev_misc_wq in md_alloc() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 029/192] fbdev: omapfb: Fix tests for platform_get_irq() failure Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 030/192] fbdev: fbcon: Destroy mutex on freeing struct fb_info Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 031/192] fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 032/192] x86/sev: Mark snp_abort() noreturn Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 033/192] drm/amdgpu: add sdma instance check for gfx11 CGCG Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 034/192] drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 035/192] ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 036/192] ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 037/192] ALSA: hda: Once again fix regression of page allocations with IOMMU Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 038/192] ALSA: aloop: Fix random zeros in capture data when using jiffies timer Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 039/192] ALSA: usb-audio: Split endpoint setups for hw_params and prepare Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 040/192] ALSA: usb-audio: Clear fixed clock rate at closing EP Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 041/192] ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 042/192] tracefs: Only clobber mode/uid/gid on remount if asked Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 043/192] tracing: hold caller_addr to hardirq_{enable,disable}_ip Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 044/192] tracing: Fix to check event_mutex is held while accessing trigger list Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 045/192] btrfs: zoned: set pseudo max append zone limit in zone emulation mode Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 046/192] btrfs: zoned: fix API misuse of zone finish waiting Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 047/192] vfio/type1: Unpin zero pages Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 048/192] kprobes: Prohibit probes in gate area Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 049/192] perf: RISC-V: fix access beyond allocated array Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 050/192] debugfs: add debugfs_lookup_and_remove() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 051/192] sched/debug: fix dentry leak in update_sched_domain_debugfs Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 052/192] drm/amd/display: fix memory leak when using debugfs_lookup() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 053/192] driver core: fix driver_set_override() issue with empty strings Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 054/192] nvmet: fix a use-after-free Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 055/192] drm/i915/bios: Copy the whole MIPI sequence block Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 056/192] drm/i915/slpc: Lets fix the PCODE min freq table setup for SLPC Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 057/192] drm/i915: Implement WaEdpLinkRateDataReload Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 058/192] scsi: mpt3sas: Fix use-after-free warning Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 059/192] scsi: lpfc: Add missing destroy_workqueue() in error path Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 060/192] cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty subtree Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 061/192] cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 062/192] cifs: remove useless parameter is_fsctl from SMB2_ioctl() Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 063/192] smb3: missing inode locks in zero range Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 064/192] spi: bitbang: Fix lsb-first Rx Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 065/192] ASoC: cs42l42: Only report button state if there was a button interrupt Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 066/192] Revert "soc: imx: imx8m-blk-ctrl: set power device name" Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 067/192] arm64: dts: imx8mm-verdin: update CAN clock to 40MHz Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 068/192] arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 069/192] ASoC: qcom: sm8250: add missing module owner Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 070/192] regmap: spi: Reserve space for register address/padding Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 071/192] arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 072/192] arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names Greg Kroah-Hartman
2022-09-13 14:02 ` [PATCH 5.19 073/192] RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 074/192] RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 075/192] ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 076/192] ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 077/192] ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 078/192] arm64: dts: ls1028a-qds-65bb: dont use in-band autoneg for 2500base-x Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 079/192] soc: imx: gpcv2: Assert reset before ungating clock Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 080/192] arm64: dts: verdin-imx8mm: add otg2 pd to usbphy Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 081/192] arm64: dts: imx8mm-venice-gw7901: fix port/phy validation Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 082/192] arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 083/192] arm64: dts: freescale: verdin-imx8mp: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 084/192] regulator: core: Clean up on enable failure Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 085/192] ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 086/192] ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 087/192] tee: fix compiler warning in tee_shm_register() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 088/192] RDMA/irdma: Fix drain SQ hang with no completion Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 089/192] arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 090/192] RDMA/cma: Fix arguments order in net device validation Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 091/192] soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 092/192] RDMA/hns: Fix supported page size Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 093/192] RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 094/192] RDMA/hns: Remove the num_qpc_timer variable Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 095/192] wifi: wilc1000: fix DMA on stack objects Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 096/192] ARM: at91: pm: fix self-refresh for sama7g5 Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 097/192] ARM: at91: pm: fix DDR recalibration when resuming from backup and self-refresh Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 098/192] ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 099/192] ARM: dts: at91: sama5d2_icp: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 100/192] ARM: dts: at91: sama7g5ek: " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 101/192] ARM: dts: at91: sama5d27_wlsom1: dont keep ldo2 enabled all the time Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 102/192] ARM: dts: at91: sama5d2_icp: dont keep vdd_other " Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 103/192] netfilter: br_netfilter: Drop dst references before setting Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 104/192] netfilter: nf_tables: clean up hook list when offload flags check fails Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 105/192] riscv: dts: microchip: use an mpfs specific l2 compatible Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 106/192] netfilter: nf_conntrack_irc: Fix forged IP logic Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 107/192] RDMA/srp: Set scmnd->result only when scmnd is not NULL Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 108/192] ALSA: usb-audio: Inform the delayed registration more properly Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 109/192] ALSA: usb-audio: Register card again for iface over delayed_register option Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 110/192] rxrpc: Fix ICMP/ICMP6 error handling Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 111/192] rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 112/192] afs: Use the operation issue time instead of the reply time for callbacks Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 113/192] kunit: fix assert_type for comparison macros Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 114/192] Revert "net: phy: meson-gxl: improve link-up behavior" Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 115/192] sch_sfb: Dont assume the skb is still around after enqueueing to child Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 116/192] tipc: fix shift wrapping bug in map_get() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 117/192] net: introduce __skb_fill_page_desc_noacc Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 118/192] tcp: TX zerocopy should not sense pfmemalloc status Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 119/192] ice: Fix DMA mappings leak Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 120/192] ice: use bitmap_free instead of devm_kfree Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 121/192] i40e: Fix kernel crash during module removal Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 122/192] iavf: Detach device during reset task Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 123/192] net: fec: Use a spinlock to guard `fep->ptp_clk_on` Greg Kroah-Hartman
2022-09-13 14:19   ` Marc Kleine-Budde
2022-09-13 16:13     ` Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 124/192] xen-netback: only remove hotplug-status when the vif is actually destroyed Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 125/192] block: dont add partitions if GD_SUPPRESS_PART_SCAN is set Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 126/192] RDMA/siw: Pass a pointer to virt_to_page() Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 127/192] bonding: use unspecified address if no available link local address Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 128/192] bonding: add all node mcast address when slave up Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 129/192] ipv6: sr: fix out-of-bounds read when setting HMAC data Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 130/192] IB/core: Fix a nested dead lock as part of ODP flow Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 131/192] RDMA/mlx5: Set local port to one when accessing counters Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 132/192] btrfs: zoned: fix mounting with conventional zones Greg Kroah-Hartman
2022-09-13 14:03 ` [PATCH 5.19 133/192] erofs: fix error return code in erofs_fscache_{meta_,}read_folio Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 134/192] erofs: fix pcluster use-after-free on UP platforms Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 135/192] nvme-tcp: fix UAF when detecting digest errors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 136/192] nvme-tcp: fix regression that causes sporadic requests to time out Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 137/192] tcp: fix early ETIMEDOUT after spurious non-SACK RTO Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 138/192] btrfs: fix the max chunk size and stripe length calculation Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 139/192] nvmet: fix mar and mor off-by-one errors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 140/192] RDMA/irdma: Report the correct max cqes from query device Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 141/192] RDMA/irdma: Return error on MR deregister CQP failure Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 142/192] RDMA/irdma: Return correct WC error for bind operation failure Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 143/192] RDMA/irdma: Report RNR NAK generation in device caps Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 144/192] net: dsa: felix: disable cut-through forwarding for frames oversized for tc-taprio Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 145/192] net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in vsc9959_sched_speed_set Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 146/192] net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 147/192] net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 148/192] net/smc: Fix possible access to freed memory in link clear Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 149/192] io_uring: recycle kbuf recycle on tw requeue Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 150/192] net: phy: lan87xx: change interrupt src of link_up to comm_ready Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 151/192] sch_sfb: Also store skb len before calling child enqueue Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 152/192] libperf evlist: Fix per-thread mmaps for multi-threaded targets Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 153/192] perf dlfilter dlfilter-show-cycles: Fix types for print format Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 154/192] perf script: Fix Cannot print iregs field for hybrid systems Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 155/192] perf record: Fix synthesis failure warnings Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 156/192] hwmon: (tps23861) fix byte order in resistance register Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 157/192] ASoC: mchp-spdiftx: remove references to mchp_i2s_caps Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 158/192] ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 159/192] lsm,io_uring: add LSM hooks for the new uring_cmd file op Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 160/192] selinux: implement the security_uring_cmd() LSM hook Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 161/192] Smack: Provide read control for io_uring_cmd Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 162/192] MIPS: loongson32: ls1c: Fix hang during startup Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 163/192] kbuild: disable header exports for UML in a straightforward way Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 164/192] i40e: Refactor tc mqprio checks Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 165/192] i40e: Fix ADQ rate limiting for PF Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 166/192] net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 167/192] bonding: accept unsolicited NA message Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 168/192] swiotlb: avoid potential left shift overflow Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 169/192] iommu/amd: use full 64-bit value in build_completion_wait() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 170/192] s390/boot: fix absolute zero lowcore corruption on boot Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 171/192] time64.h: consolidate uses of PSEC_PER_NSEC Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 172/192] net: dsa: felix: tc-taprio intervals smaller than MTU should send at least one packet Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 173/192] hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 174/192] hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 175/192] hwmon: (mr75203) fix voltage equation for negative source input Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 176/192] hwmon: (mr75203) fix multi-channel voltage reading Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 177/192] hwmon: (mr75203) enable polling for all VM channels Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 178/192] iommu/vt-d: Fix possible recursive locking in intel_iommu_init() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 179/192] perf evlist: Always use arch_evlist__add_default_attrs() Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 180/192] perf stat: Fix L2 Topdown metrics disappear for raw events Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 181/192] Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in page->flags"" Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 182/192] hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 183/192] hwmon: (asus-ec-sensors) add support for Maximus XI Hero Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 184/192] hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 185/192] hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 186/192] hwmon: (asus-ec-sensors) autoload module via DMI data Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 187/192] arm64/bti: Disable in kernel BTI when cross section thunks are broken Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 188/192] iommu/vt-d: Correctly calculate sagaw value of IOMMU Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 189/192] iommu/virtio: Fix interaction with VFIO Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 190/192] iommu: Fix false ownership failure on AMD systems with PASID activated Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 191/192] drm/amd/display: Add SMU logging code Greg Kroah-Hartman
2022-09-13 14:04 ` [PATCH 5.19 192/192] drm/amd/display: Removing assert statements for Linux Greg Kroah-Hartman
2022-09-14  9:12 ` [PATCH 5.19 000/192] 5.19.9-rc1 review Naresh Kamboju
2022-09-14  9:41 ` Sudip Mukherjee
2022-09-14 10:13 ` Bagas Sanjaya
2022-09-14 10:25 ` Ron Economos
2022-09-14 14:28 ` Guenter Roeck
2022-09-14 14:49   ` Greg Kroah-Hartman
2022-09-14 21:24 ` Florian Fainelli
2022-09-15  0:09 ` Guenter Roeck
2022-09-15  2:24   ` Florian Fainelli
2022-09-15  7:23     ` Greg Kroah-Hartman
2022-09-15  5:07 ` Jiri Slaby

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=20220913140411.017538565@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=catalin.marinas@arm.com \
    --cc=ionela.voinescu@arm.com \
    --cc=james.morse@arm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=will@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