patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Joey Gouly <joey.gouly@arm.com>,
	Robin Murphy <robin.murphy@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>, John Hsu <John.Hsu@mediatek.com>
Subject: [PATCH 5.15 050/511] arm64: lib: Import latest version of Arm Optimized Routines strncmp
Date: Sun, 17 Sep 2023 21:07:57 +0200	[thread overview]
Message-ID: <20230917191115.084670917@linuxfoundation.org> (raw)
In-Reply-To: <20230917191113.831992765@linuxfoundation.org>

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

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

From: Joey Gouly <joey.gouly@arm.com>

commit 387d828adffcf1eb949f3141079c479793c59aac upstream.

Import the latest version of the Arm Optimized Routines strncmp function based
on the upstream code of string/aarch64/strncmp.S at commit 189dfefe37d5 from:
  https://github.com/ARM-software/optimized-routines

This latest version includes MTE support.

Note that for simplicity Arm have chosen to contribute this code to Linux under
GPLv2 rather than the original MIT OR Apache-2.0 WITH LLVM-exception license.
Arm is the sole copyright holder for this code.

Signed-off-by: Joey Gouly <joey.gouly@arm.com>
Cc: Robin Murphy <robin.murphy@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Link: https://lore.kernel.org/r/20220301101435.19327-3-joey.gouly@arm.com
Fixes: 020b199bc70d ("arm64: Import latest version of Cortex Strings' strncmp")
Reported-by: John Hsu <John.Hsu@mediatek.com>
Link: https://lore.kernel.org/all/e9f30f7d5b7d72a3521da31ab2002b49a26f542e.camel@mediatek.com/
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/arm64/lib/strncmp.S |  236 ++++++++++++++++++++++++++++-------------------
 1 file changed, 142 insertions(+), 94 deletions(-)

--- a/arch/arm64/lib/strncmp.S
+++ b/arch/arm64/lib/strncmp.S
@@ -1,9 +1,9 @@
 /* SPDX-License-Identifier: GPL-2.0-only */
 /*
- * Copyright (c) 2013-2021, Arm Limited.
+ * Copyright (c) 2013-2022, Arm Limited.
  *
  * Adapted from the original at:
- * https://github.com/ARM-software/optimized-routines/blob/e823e3abf5f89ecb/string/aarch64/strncmp.S
+ * https://github.com/ARM-software/optimized-routines/blob/189dfefe37d54c5b/string/aarch64/strncmp.S
  */
 
 #include <linux/linkage.h>
@@ -11,14 +11,14 @@
 
 /* Assumptions:
  *
- * ARMv8-a, AArch64
+ * ARMv8-a, AArch64.
+ * MTE compatible.
  */
 
 #define L(label) .L ## label
 
 #define REP8_01 0x0101010101010101
 #define REP8_7f 0x7f7f7f7f7f7f7f7f
-#define REP8_80 0x8080808080808080
 
 /* Parameters and result.  */
 #define src1		x0
@@ -39,10 +39,24 @@
 #define tmp3		x10
 #define zeroones	x11
 #define pos		x12
-#define limit_wd	x13
-#define mask		x14
-#define endloop		x15
+#define mask		x13
+#define endloop		x14
 #define count		mask
+#define offset		pos
+#define neg_offset	x15
+
+/* Define endian dependent shift operations.
+   On big-endian early bytes are at MSB and on little-endian LSB.
+   LS_FW means shifting towards early bytes.
+   LS_BK means shifting towards later bytes.
+   */
+#ifdef __AARCH64EB__
+#define LS_FW lsl
+#define LS_BK lsr
+#else
+#define LS_FW lsr
+#define LS_BK lsl
+#endif
 
 SYM_FUNC_START_WEAK_PI(strncmp)
 	cbz	limit, L(ret0)
@@ -52,9 +66,6 @@ SYM_FUNC_START_WEAK_PI(strncmp)
 	and	count, src1, #7
 	b.ne	L(misaligned8)
 	cbnz	count, L(mutual_align)
-	/* Calculate the number of full and partial words -1.  */
-	sub	limit_wd, limit, #1	/* limit != 0, so no underflow.  */
-	lsr	limit_wd, limit_wd, #3	/* Convert to Dwords.  */
 
 	/* NUL detection works on the principle that (X - 1) & (~X) & 0x80
 	   (=> (X - 1) & ~(X | 0x7f)) is non-zero iff a byte is zero, and
@@ -64,56 +75,52 @@ L(loop_aligned):
 	ldr	data1, [src1], #8
 	ldr	data2, [src2], #8
 L(start_realigned):
-	subs	limit_wd, limit_wd, #1
+	subs	limit, limit, #8
 	sub	tmp1, data1, zeroones
 	orr	tmp2, data1, #REP8_7f
 	eor	diff, data1, data2	/* Non-zero if differences found.  */
-	csinv	endloop, diff, xzr, pl	/* Last Dword or differences.  */
+	csinv	endloop, diff, xzr, hi	/* Last Dword or differences.  */
 	bics	has_nul, tmp1, tmp2	/* Non-zero if NUL terminator.  */
 	ccmp	endloop, #0, #0, eq
 	b.eq	L(loop_aligned)
 	/* End of main loop */
 
-	/* Not reached the limit, must have found the end or a diff.  */
-	tbz	limit_wd, #63, L(not_limit)
-
-	/* Limit % 8 == 0 => all bytes significant.  */
-	ands	limit, limit, #7
-	b.eq	L(not_limit)
-
-	lsl	limit, limit, #3	/* Bits -> bytes.  */
-	mov	mask, #~0
-#ifdef __AARCH64EB__
-	lsr	mask, mask, limit
-#else
-	lsl	mask, mask, limit
-#endif
-	bic	data1, data1, mask
-	bic	data2, data2, mask
-
-	/* Make sure that the NUL byte is marked in the syndrome.  */
-	orr	has_nul, has_nul, mask
-
-L(not_limit):
+L(full_check):
+#ifndef __AARCH64EB__
 	orr	syndrome, diff, has_nul
-
-#ifndef	__AARCH64EB__
+	add	limit, limit, 8	/* Rewind limit to before last subs. */
+L(syndrome_check):
+	/* Limit was reached. Check if the NUL byte or the difference
+	   is before the limit. */
 	rev	syndrome, syndrome
 	rev	data1, data1
-	/* The MS-non-zero bit of the syndrome marks either the first bit
-	   that is different, or the top bit of the first zero byte.
-	   Shifting left now will bring the critical information into the
-	   top bits.  */
 	clz	pos, syndrome
 	rev	data2, data2
 	lsl	data1, data1, pos
+	cmp	limit, pos, lsr #3
 	lsl	data2, data2, pos
 	/* But we need to zero-extend (char is unsigned) the value and then
 	   perform a signed 32-bit subtraction.  */
 	lsr	data1, data1, #56
 	sub	result, data1, data2, lsr #56
+	csel result, result, xzr, hi
 	ret
 #else
+	/* Not reached the limit, must have found the end or a diff.  */
+	tbz	limit, #63, L(not_limit)
+	add	tmp1, limit, 8
+	cbz	limit, L(not_limit)
+
+	lsl	limit, tmp1, #3	/* Bits -> bytes.  */
+	mov	mask, #~0
+	lsr	mask, mask, limit
+	bic	data1, data1, mask
+	bic	data2, data2, mask
+
+	/* Make sure that the NUL byte is marked in the syndrome.  */
+	orr	has_nul, has_nul, mask
+
+L(not_limit):
 	/* For big-endian we cannot use the trick with the syndrome value
 	   as carry-propagation can corrupt the upper bits if the trailing
 	   bytes in the string contain 0x01.  */
@@ -134,10 +141,11 @@ L(not_limit):
 	rev	has_nul, has_nul
 	orr	syndrome, diff, has_nul
 	clz	pos, syndrome
-	/* The MS-non-zero bit of the syndrome marks either the first bit
-	   that is different, or the top bit of the first zero byte.
+	/* The most-significant-non-zero bit of the syndrome marks either the
+	   first bit that is different, or the top bit of the first zero byte.
 	   Shifting left now will bring the critical information into the
 	   top bits.  */
+L(end_quick):
 	lsl	data1, data1, pos
 	lsl	data2, data2, pos
 	/* But we need to zero-extend (char is unsigned) the value and then
@@ -159,22 +167,12 @@ L(mutual_align):
 	neg	tmp3, count, lsl #3	/* 64 - bits(bytes beyond align). */
 	ldr	data2, [src2], #8
 	mov	tmp2, #~0
-	sub	limit_wd, limit, #1	/* limit != 0, so no underflow.  */
-#ifdef __AARCH64EB__
-	/* Big-endian.  Early bytes are at MSB.  */
-	lsl	tmp2, tmp2, tmp3	/* Shift (count & 63).  */
-#else
-	/* Little-endian.  Early bytes are at LSB.  */
-	lsr	tmp2, tmp2, tmp3	/* Shift (count & 63).  */
-#endif
-	and	tmp3, limit_wd, #7
-	lsr	limit_wd, limit_wd, #3
-	/* Adjust the limit. Only low 3 bits used, so overflow irrelevant.  */
-	add	limit, limit, count
-	add	tmp3, tmp3, count
+	LS_FW	tmp2, tmp2, tmp3	/* Shift (count & 63).  */
+	/* Adjust the limit and ensure it doesn't overflow.  */
+	adds	limit, limit, count
+	csinv	limit, limit, xzr, lo
 	orr	data1, data1, tmp2
 	orr	data2, data2, tmp2
-	add	limit_wd, limit_wd, tmp3, lsr #3
 	b	L(start_realigned)
 
 	.p2align 4
@@ -197,13 +195,11 @@ L(done):
 	/* Align the SRC1 to a dword by doing a bytewise compare and then do
 	   the dword loop.  */
 L(try_misaligned_words):
-	lsr	limit_wd, limit, #3
-	cbz	count, L(do_misaligned)
+	cbz	count, L(src1_aligned)
 
 	neg	count, count
 	and	count, count, #7
 	sub	limit, limit, count
-	lsr	limit_wd, limit, #3
 
 L(page_end_loop):
 	ldrb	data1w, [src1], #1
@@ -214,48 +210,100 @@ L(page_end_loop):
 	subs	count, count, #1
 	b.hi	L(page_end_loop)
 
-L(do_misaligned):
-	/* Prepare ourselves for the next page crossing.  Unlike the aligned
-	   loop, we fetch 1 less dword because we risk crossing bounds on
-	   SRC2.  */
-	mov	count, #8
-	subs	limit_wd, limit_wd, #1
-	b.lo	L(done_loop)
+	/* The following diagram explains the comparison of misaligned strings.
+	   The bytes are shown in natural order. For little-endian, it is
+	   reversed in the registers. The "x" bytes are before the string.
+	   The "|" separates data that is loaded at one time.
+	   src1     | a a a a a a a a | b b b c c c c c | . . .
+	   src2     | x x x x x a a a   a a a a a b b b | c c c c c . . .
+
+	   After shifting in each step, the data looks like this:
+	                STEP_A              STEP_B              STEP_C
+	   data1    a a a a a a a a     b b b c c c c c     b b b c c c c c
+	   data2    a a a a a a a a     b b b 0 0 0 0 0     0 0 0 c c c c c
+
+	   The bytes with "0" are eliminated from the syndrome via mask.
+
+	   Align SRC2 down to 16 bytes. This way we can read 16 bytes at a
+	   time from SRC2. The comparison happens in 3 steps. After each step
+	   the loop can exit, or read from SRC1 or SRC2. */
+L(src1_aligned):
+	/* Calculate offset from 8 byte alignment to string start in bits. No
+	   need to mask offset since shifts are ignoring upper bits. */
+	lsl	offset, src2, #3
+	bic	src2, src2, #0xf
+	mov	mask, -1
+	neg	neg_offset, offset
+	ldr	data1, [src1], #8
+	ldp	tmp1, tmp2, [src2], #16
+	LS_BK	mask, mask, neg_offset
+	and	neg_offset, neg_offset, #63	/* Need actual value for cmp later. */
+	/* Skip the first compare if data in tmp1 is irrelevant. */
+	tbnz	offset, 6, L(misaligned_mid_loop)
+
 L(loop_misaligned):
-	and	tmp2, src2, #0xff8
-	eor	tmp2, tmp2, #0xff8
-	cbz	tmp2, L(page_end_loop)
+	/* STEP_A: Compare full 8 bytes when there is enough data from SRC2.*/
+	LS_FW	data2, tmp1, offset
+	LS_BK	tmp1, tmp2, neg_offset
+	subs	limit, limit, #8
+	orr	data2, data2, tmp1	/* 8 bytes from SRC2 combined from two regs.*/
+	sub	has_nul, data1, zeroones
+	eor	diff, data1, data2	/* Non-zero if differences found.  */
+	orr	tmp3, data1, #REP8_7f
+	csinv	endloop, diff, xzr, hi	/* If limit, set to all ones. */
+	bic	has_nul, has_nul, tmp3	/* Non-zero if NUL byte found in SRC1. */
+	orr	tmp3, endloop, has_nul
+	cbnz	tmp3, L(full_check)
 
 	ldr	data1, [src1], #8
-	ldr	data2, [src2], #8
-	sub	tmp1, data1, zeroones
-	orr	tmp2, data1, #REP8_7f
-	eor	diff, data1, data2	/* Non-zero if differences found.  */
-	bics	has_nul, tmp1, tmp2	/* Non-zero if NUL terminator.  */
-	ccmp	diff, #0, #0, eq
-	b.ne	L(not_limit)
-	subs	limit_wd, limit_wd, #1
-	b.pl	L(loop_misaligned)
-
-L(done_loop):
-	/* We found a difference or a NULL before the limit was reached.  */
-	and	limit, limit, #7
-	cbz	limit, L(not_limit)
-	/* Read the last word.  */
-	sub	src1, src1, 8
-	sub	src2, src2, 8
-	ldr	data1, [src1, limit]
-	ldr	data2, [src2, limit]
-	sub	tmp1, data1, zeroones
-	orr	tmp2, data1, #REP8_7f
-	eor	diff, data1, data2	/* Non-zero if differences found.  */
-	bics	has_nul, tmp1, tmp2	/* Non-zero if NUL terminator.  */
-	ccmp	diff, #0, #0, eq
-	b.ne	L(not_limit)
+L(misaligned_mid_loop):
+	/* STEP_B: Compare first part of data1 to second part of tmp2. */
+	LS_FW	data2, tmp2, offset
+#ifdef __AARCH64EB__
+	/* For big-endian we do a byte reverse to avoid carry-propagation
+	problem described above. This way we can reuse the has_nul in the
+	next step and also use syndrome value trick at the end. */
+	rev	tmp3, data1
+	#define data1_fixed tmp3
+#else
+	#define data1_fixed data1
+#endif
+	sub	has_nul, data1_fixed, zeroones
+	orr	tmp3, data1_fixed, #REP8_7f
+	eor	diff, data2, data1	/* Non-zero if differences found.  */
+	bic	has_nul, has_nul, tmp3	/* Non-zero if NUL terminator.  */
+#ifdef __AARCH64EB__
+	rev	has_nul, has_nul
+#endif
+	cmp	limit, neg_offset, lsr #3
+	orr	syndrome, diff, has_nul
+	bic	syndrome, syndrome, mask	/* Ignore later bytes. */
+	csinv	tmp3, syndrome, xzr, hi	/* If limit, set to all ones. */
+	cbnz	tmp3, L(syndrome_check)
+
+	/* STEP_C: Compare second part of data1 to first part of tmp1. */
+	ldp	tmp1, tmp2, [src2], #16
+	cmp	limit, #8
+	LS_BK	data2, tmp1, neg_offset
+	eor	diff, data2, data1	/* Non-zero if differences found.  */
+	orr	syndrome, diff, has_nul
+	and	syndrome, syndrome, mask	/* Ignore earlier bytes. */
+	csinv	tmp3, syndrome, xzr, hi	/* If limit, set to all ones. */
+	cbnz	tmp3, L(syndrome_check)
+
+	ldr	data1, [src1], #8
+	sub	limit, limit, #8
+	b	L(loop_misaligned)
+
+#ifdef	__AARCH64EB__
+L(syndrome_check):
+	clz	pos, syndrome
+	cmp	pos, limit, lsl #3
+	b.lo	L(end_quick)
+#endif
 
 L(ret0):
 	mov	result, #0
 	ret
-
 SYM_FUNC_END_PI(strncmp)
 EXPORT_SYMBOL_NOHWKASAN(strncmp)



  parent reply	other threads:[~2023-09-17 20:10 UTC|newest]

Thread overview: 524+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-17 19:07 [PATCH 5.15 000/511] 5.15.132-rc1 review Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 001/511] ARM: dts: imx: update sdma node name format Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 002/511] ARM: dts: imx7s: Drop dma-apb interrupt-names Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 003/511] ARM: dts: imx: Adjust dma-apbh node name Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 004/511] ARM: dts: imx: Set default tuning step for imx7d usdhc Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 005/511] phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 006/511] media: pulse8-cec: handle possible ping error Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 007/511] media: pci: cx23885: fix error handling for cx23885 ATSC boards Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 008/511] 9p: virtio: make sure offs is initialized in zc_request Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 009/511] ksmbd: fix out of bounds in smb3_decrypt_req() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 010/511] ksmbd: no response from compound read Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 011/511] ASoC: da7219: Flush pending AAD IRQ when suspending Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 012/511] ASoC: da7219: Check for failure reading AAD IRQ events Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 013/511] ethernet: atheros: fix return value check in atl1c_tso_csum() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 014/511] vxlan: generalize vxlan_parse_gpe_hdr and remove unused args Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 015/511] m68k: Fix invalid .section syntax Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 016/511] s390/dasd: use correct number of retries for ERP requests Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 017/511] s390/dasd: fix hanging device after request requeue Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 018/511] fs/nls: make load_nls() take a const parameter Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 019/511] ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0 Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 020/511] ASoc: codecs: ES8316: Fix DMIC config Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 021/511] ASoC: rt711: fix for JD event handling in ClockStop Mode0 Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 022/511] ASoC: rt711-sdca: " Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 023/511] ASoC: atmel: Fix the 8K sample parameter in I2SC master Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 024/511] platform/x86: intel: hid: Always call BTNL ACPI method Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 025/511] platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 026/511] platform/x86: huawei-wmi: Silence ambient light sensor Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 027/511] drm/amd/display: Exit idle optimizations before attempt to access PHY Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 028/511] ovl: Always reevaluate the file signature for IMA Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 029/511] ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 030/511] security: keys: perform capable check only on privileged operations Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 031/511] kprobes: Prohibit probing on CFI preamble symbol Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 032/511] clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 033/511] vmbus_testing: fix wrong python syntax for integer value comparison Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 034/511] net: usb: qmi_wwan: add Quectel EM05GV2 Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 035/511] wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 036/511] idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 037/511] scsi: lpfc: Remove reftag check in DIF paths Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 038/511] scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 039/511] net: hns3: restore user pause configure when disable autoneg Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 040/511] drm/amdgpu: Match against exact bootloader status Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 041/511] netlabel: fix shift wrapping bug in netlbl_catmap_setlong() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 042/511] bnx2x: fix page fault following EEH recovery Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 043/511] sctp: handle invalid error codes without calling BUG() Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 044/511] scsi: storvsc: Always set no_report_opcodes Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 045/511] scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 046/511] ALSA: seq: oss: Fix racy open/close of MIDI devices Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 047/511] tracing: Introduce pipe_cpumask to avoid race on trace_pipes Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 048/511] platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 049/511] crypto: rsa-pkcs1pad - Use helper to set reqsize Greg Kroah-Hartman
2023-09-17 19:07 ` Greg Kroah-Hartman [this message]
2023-09-17 19:07 ` [PATCH 5.15 051/511] net: Avoid address overwrite in kernel_connect Greg Kroah-Hartman
2023-09-17 19:07 ` [PATCH 5.15 052/511] of: kexec: Mark ima_{free,stable}_kexec_buffer() as __init Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 053/511] udf: Check consistency of Space Bitmap Descriptor Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 054/511] udf: Handle error when adding extent to a file Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 055/511] Revert "net: macsec: preserve ingress frame ordering" Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 056/511] reiserfs: Check the return value from __getblk() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 057/511] eventfd: prevent underflow for eventfd semaphores Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 058/511] fs: Fix error checking for d_hash_and_lookup() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 059/511] tmpfs: verify {g,u}id mount options correctly Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 060/511] selftests/harness: Actually report SKIP for signal tests Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 061/511] ARM: ptrace: Restore syscall restart tracing Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 062/511] ARM: ptrace: Restore syscall skipping for tracers Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 063/511] refscale: Fix uninitalized use of wait_queue_head_t Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 064/511] OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 065/511] selftests/resctrl: Make resctrl_tests run using kselftest framework Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 066/511] selftests/resctrl: Add resctrl.h into build deps Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 067/511] selftests/resctrl: Dont leak buffer in fill_cache() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 068/511] selftests/resctrl: Unmount resctrl FS if child fails to run benchmark Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 069/511] selftests/resctrl: Close perf value read fd on errors Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 070/511] x86/decompressor: Dont rely on upper 32 bits of GPRs being preserved Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 071/511] perf/imx_ddr: dont enable counter0 if none of 4 counters are used Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 072/511] selftests/futex: Order calls to futex_lock_pi Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 073/511] s390/pkey: fix/harmonize internal keyblob headers Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 074/511] s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 075/511] ACPI: x86: s2idle: Post-increment variables when getting constraints Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 076/511] ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 077/511] x86/efistub: Fix PCI ROM preservation in mixed mode Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 078/511] cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 079/511] bpftool: Use a local bpf_perf_event_value to fix accessing its fields Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 080/511] bpf: Clear the probe_addr for uprobe Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 081/511] tcp: tcp_enter_quickack_mode() should be static Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 082/511] hwrng: nomadik - keep clock enabled while hwrng is registered Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 083/511] hwrng: pic32 - use devm_clk_get_enabled Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 084/511] regmap: rbtree: Use alloc_flags for memory allocations Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 085/511] udp: re-score reuseport groups when connected sockets are present Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 086/511] bpf: reject unhashed sockets in bpf_sk_assign Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 087/511] ipv6: Add reasons for skb drops to __udp6_lib_rcv Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 088/511] wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 089/511] spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 090/511] can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 091/511] wifi: mt76: mt7915: fix power-limits while chan_switch Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 092/511] wifi: mwifiex: Fix OOB and integer underflow when rx packets Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 093/511] wifi: mwifiex: fix error recovery in PCIE buffer descriptor management Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 094/511] selftests/bpf: fix static assert compilation issue for test_cls_*.c Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 095/511] crypto: stm32 - Properly handle pm_runtime_get failing Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 096/511] crypto: api - Use work queue in crypto_destroy_instance Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 097/511] Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 098/511] Bluetooth: Fix potential use-after-free when clear keys Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 099/511] net: tcp: fix unexcepted socket die when snd_wnd is 0 Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 100/511] selftests/bpf: Clean up fmod_ret in bench_rename test script Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 101/511] net-memcg: Fix scope of sockmem pressure indicators Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 102/511] ice: ice_aq_check_events: fix off-by-one check when filling buffer Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 103/511] crypto: caam - fix unchecked return value error Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 104/511] hwrng: iproc-rng200 - Implement suspend and resume calls Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 105/511] lwt: Fix return values of BPF xmit ops Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 106/511] lwt: Check LWTUNNEL_XMIT_CONTINUE strictly Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 107/511] fs: ocfs2: namei: check return value of ocfs2_add_entry() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 108/511] wifi: mwifiex: fix memory leak in mwifiex_histogram_read() Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 109/511] wifi: mwifiex: Fix missed return in oob checks failed path Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 110/511] samples/bpf: fix broken map lookup probe Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 111/511] wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-09-17 19:08 ` [PATCH 5.15 112/511] wifi: ath9k: protect WMI command response buffer replacement with a lock Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 113/511] wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 114/511] wifi: mwifiex: avoid possible NULL skb pointer dereference Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 115/511] Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 116/511] wifi: ath9k: use IS_ERR() with debugfs_create_dir() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 117/511] net: arcnet: Do not call kfree_skb() under local_irq_disable() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 118/511] mlxsw: i2c: Fix chunk size setting in output mailbox buffer Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 119/511] mlxsw: i2c: Limit single transaction buffer size Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 120/511] hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 121/511] net/sched: sch_hfsc: Ensure inner classes have fsc curve Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 122/511] netrom: Deny concurrent connect() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 123/511] drm/bridge: tc358764: Fix debug print parameter order Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 124/511] quota: factor out dquot_write_dquot() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 125/511] quota: rename dquot_active() to inode_quota_active() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 126/511] quota: add new helper dquot_active() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 127/511] quota: fix dqput() to follow the guarantees dquot_srcu should provide Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 128/511] ASoC: stac9766: fix build errors with REGMAP_AC97 Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 129/511] soc: qcom: ocmem: Add OCMEM hardware version print Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 130/511] soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 131/511] arm64: dts: qcom: sm8250: correct dynamic power coefficients Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 132/511] arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 133/511] arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 134/511] arm64: dts: qcom: sm8250-edo: Rectify gpio-keys Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 135/511] arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 136/511] arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 137/511] arm64: dts: qcom: sm8350: Use proper CPU compatibles Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 138/511] arm64: dts: qcom: pmk8350: fix ADC-TM compatible string Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 139/511] arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 140/511] drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 141/511] ARM: dts: BCM53573: Add cells sizes to PCIe node Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 142/511] ARM: dts: BCM53573: Use updated "spi-gpio" binding properties Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 143/511] arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 144/511] arm64: dts: qcom: pmi8998: Add node for WLED Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 145/511] arm64: dts: qcom: correct SPMI WLED register range encoding Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 146/511] arm64: dts: qcom: pm660l: Add missing short interrupt Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 147/511] arm64: dts: qcom: pmi8994: Remove hardcoded linear WLED enabled-strings Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 148/511] arm64: dts: qcom: Move WLED num-strings from pmi8994 to sony-xperia-tone Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 149/511] arm64: dts: qcom: pmi8994: Add missing OVP interrupt Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 150/511] drm/etnaviv: fix dumping of active MMU context Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 151/511] x86/mm: Fix PAT bit missing from page protection modify mask Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 152/511] ARM: dts: s3c64xx: align pinctrl with dtschema Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 153/511] ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 154/511] ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 155/511] ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 156/511] drm: adv7511: Fix low refresh rate register for ADV7533/5 Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 157/511] ARM: dts: BCM53573: Fix Ethernet info for Luxul devices Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 158/511] arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 159/511] arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 160/511] drm/amdgpu: Update min() to min_t() in amdgpu_info_ioctl Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 161/511] md/raid10: factor out dereference_rdev_and_rrdev() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 162/511] md/raid10: use dereference_rdev_and_rrdev() to get devices Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 163/511] md/bitmap: dont set max_write_behind if there is no write mostly device Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 164/511] md/md-bitmap: hold reconfig_mutex in backlog_store() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 165/511] drm/msm: Update dev core dump to not print backwards Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 166/511] drm/tegra: dpaux: Fix incorrect return value of platform_get_irq Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 167/511] of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 168/511] arm64: dts: qcom: sm8150: Fix the I2C7 interrupt Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 169/511] drm/armada: Fix off-by-one error in armada_overlay_get_property() Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 170/511] drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01 Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 171/511] ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig Greg Kroah-Hartman
2023-09-17 19:09 ` [PATCH 5.15 172/511] drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 173/511] drm/msm/mdp5: Dont leak some plane state Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 174/511] firmware: meson_sm: fix to avoid potential NULL pointer dereference Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 175/511] smackfs: Prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 176/511] drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 177/511] drm/msm/a2xx: Call adreno_gpu_init() earlier Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 178/511] audit: fix possible soft lockup in __audit_inode_child() Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 179/511] io_uring: fix drain stalls by invalid SQE Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 180/511] bus: ti-sysc: Fix build warning for 64-bit build Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 181/511] drm/mediatek: Remove freeing not dynamic allocated memory Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 182/511] drm/mediatek: Fix potential memory leak if vmap() fail Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 183/511] arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 184/511] bus: ti-sysc: Fix cast to enum warning Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 185/511] md: Set MD_BROKEN for RAID1 and RAID10 Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 186/511] md: add error_handlers for raid0 and linear Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 187/511] md/raid0: Factor out helper for mapping and submitting a bio Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 188/511] md/raid0: Fix performance regression for large sequential writes Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 189/511] md: raid0: account for split bio in iostat accounting Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 190/511] of: overlay: Call of_changeset_init() early Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 191/511] of: unittest: Fix overlay type in apply/revert check Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 192/511] ALSA: ac97: Fix possible error value of *rac97 Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 193/511] ipmi:ssif: Add check for kstrdup Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 194/511] ipmi:ssif: Fix a memory leak when scanning for an adapter Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 195/511] drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 196/511] clk: sunxi-ng: Modify mismatched function name Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 197/511] clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 198/511] EDAC/igen6: Fix the issue of no error events Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 199/511] ext4: correct grp validation in ext4_mb_good_group Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 200/511] ext4: avoid potential data overflow in next_linear_group Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 201/511] clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 202/511] clk: qcom: reset: Use the correct type of sleep/delay based on length Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 203/511] clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 204/511] PCI: microchip: Correct the DED and SEC interrupt bit offsets Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 205/511] PCI: Mark NVIDIA T4 GPUs to avoid bus reset Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 206/511] pinctrl: mcp23s08: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 207/511] PCI: pciehp: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 208/511] PCI/ASPM: " Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 209/511] clk: imx8mp: fix sai4 clock Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 210/511] clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 211/511] powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 212/511] vfio/type1: fix cap_migration information leak Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 213/511] powerpc/fadump: reset dump area size if fadump memory reserve fails Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 214/511] powerpc/perf: Convert fsl_emb notifier to state machine callbacks Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 215/511] drm/amdgpu: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 216/511] drm/radeon: " Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 217/511] net/mlx5: " Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 218/511] wifi: ath11k: " Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 219/511] wifi: ath10k: " Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 220/511] PCI: dwc: Add start_link/stop_link inlines Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 221/511] PCI: layerscape: Add the endpoint linkup notifier support Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 222/511] PCI: layerscape: Add workaround for lost link capabilities during reset Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 223/511] powerpc: Dont include lppaca.h in paca.h Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 224/511] powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 225/511] nfs/blocklayout: Use the passed in gfp flags Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 226/511] powerpc/iommu: Fix notifiers being shared by PCI and VIO buses Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 227/511] ext4: fix unttached inode after power cut with orphan file feature enabled Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 228/511] jfs: validate max amount of blocks before allocation Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 229/511] fs: lockd: avoid possible wrong NULL parameter Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 230/511] NFSD: da_addr_body field missing in some GETDEVICEINFO replies Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 231/511] NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN Greg Kroah-Hartman
2023-09-17 19:10 ` [PATCH 5.15 232/511] NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 233/511] pNFS: Fix assignment of xprtdata.cred Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 234/511] RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 235/511] media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 236/511] media: i2c: tvp5150: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 237/511] media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 238/511] iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid unbind Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 239/511] iommu: rockchip: Fix directory table address encoding Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 240/511] drivers: usb: smsusb: fix error handling code in smsusb_init_device Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 241/511] media: dib7000p: Fix potential division by zero Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 242/511] media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 243/511] media: cx24120: Add retval check for cx24120_message_send() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 244/511] scsi: hisi_sas: Modify v3 HW SSP underflow error processing Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 245/511] scsi: hisi_sas: Modify v3 HW SATA completion " Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 246/511] scsi: hisi_sas: Fix warnings detected by sparse Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 247/511] scsi: hisi_sas: Fix normally completed I/O analysed as failed Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 248/511] media: rkvdec: increase max supported height for H.264 Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 249/511] media: mediatek: vcodec: Return NULL if no vdec_fb is found Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 250/511] usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 251/511] scsi: RDMA/srp: Fix residual handling Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 252/511] scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 253/511] scsi: iscsi: Add length check for nlattr payload Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 254/511] scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 255/511] scsi: be2iscsi: Add length check when parsing nlattrs Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 256/511] scsi: qla4xxx: " Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 257/511] serial: sprd: Assign sprd_port after initialized to avoid wrong access Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 258/511] serial: sprd: Fix DMA buffer leak issue Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 259/511] x86/APM: drop the duplicate APM_MINOR_DEV macro Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 260/511] scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 261/511] scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 262/511] scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 263/511] RDMA/irdma: Replace one-element array with flexible-array member Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 264/511] coresight: tmc: Explicit type conversions to prevent integer overflow Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 265/511] dma-buf/sync_file: Fix docs syntax Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 266/511] driver core: test_async: fix an error code Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 267/511] iommu/sprd: Add missing force_aperture Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 268/511] RDMA/hns: Fix port active speed Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 269/511] RDMA/hns: Fix incorrect post-send with direct wqe of wr-list Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 270/511] RDMA/hns: Fix CQ and QP cache affinity Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 271/511] IB/uverbs: Fix an potential error pointer dereference Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 272/511] fsi: aspeed: Reset master errors after CFAM reset Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 273/511] iommu/qcom: Disable and reset context bank before programming Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 274/511] iommu/vt-d: Fix to flush cache of PASID directory table Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 275/511] platform/x86: dell-sysman: Fix reference leak Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 276/511] media: go7007: Remove redundant if statement Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 277/511] media: venus: hfi_venus: Only consider sys_idle_indicator on V1 Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 278/511] USB: gadget: f_mass_storage: Fix unused variable warning Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 279/511] media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 280/511] media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 281/511] media: ov2680: Remove auto-gain and auto-exposure controls Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 282/511] media: ov2680: Fix ov2680_bayer_order() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 283/511] media: ov2680: Fix vflip / hflip set functions Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 284/511] media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 285/511] media: ov2680: Dont take the lock for try_fmt calls Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 286/511] media: ov2680: Add ov2680_fill_format() helper function Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 287/511] media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not working Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 288/511] media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 289/511] media: i2c: rdacm21: Fix uninitialized value Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 290/511] cgroup:namespace: Remove unused cgroup_namespaces_init() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 291/511] scsi: core: Use 32-bit hostnum in scsi_host_lookup() Greg Kroah-Hartman
2023-09-17 19:11 ` [PATCH 5.15 292/511] scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 293/511] serial: tegra: handle clk prepare error in tegra_uart_hw_init() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 294/511] amba: bus: fix refcount leak Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 295/511] Revert "IB/isert: Fix incorrect release of isert connection" Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 296/511] HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 297/511] HID: multitouch: Correct devm device reference for hidinput input_dev name Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 298/511] x86/speculation: Mark all Skylake CPUs as vulnerable to GDS Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 299/511] tracing: Remove extra space at the end of hwlat_detector/mode Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 300/511] tracing: Fix race issue between cpu buffer write and swap Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 301/511] mtd: rawnand: brcmnand: Fix mtd oobsize Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 302/511] phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 303/511] phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 304/511] phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 305/511] rpmsg: glink: Add check for kstrdup Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 306/511] leds: pwm: Fix error code in led_pwm_create_fwnode() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 307/511] leds: multicolor: Use rounded division when calculating color components Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 308/511] leds: Fix BUG_ON check for LED_COLOR_ID_MULTI that is always false Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 309/511] leds: trigger: tty: Do not use LED_ON/OFF constants, use led_blink_set_oneshot instead Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 310/511] mtd: spi-nor: Check bus width while setting QE bit Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 311/511] mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 312/511] um: Fix hostaudio build errors Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 313/511] dmaengine: ste_dma40: Add missing IRQ check in d40_probe Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 314/511] cpufreq: Fix the race condition while updating the transition_task of policy Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 315/511] virtio_ring: fix avail_wrap_counter in virtqueue_add_packed Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 316/511] igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 317/511] netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 318/511] netfilter: xt_u32: validate user space input Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 319/511] netfilter: xt_sctp: validate the flag_info count Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 320/511] skbuff: skb_segment, Call zero copy functions before using skbuff frags Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 321/511] igb: set max size RX buffer when store bad packet is enabled Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 322/511] PM / devfreq: Fix leak in devfreq_dev_release() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 323/511] ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 324/511] rcu: dump vmalloc memory info safely Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 325/511] printk: ringbuffer: Fix truncating buffer size min_t cast Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 326/511] scsi: core: Fix the scsi_set_resid() documentation Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 327/511] mm/vmalloc: add a safer version of find_vm_area() for debug Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 328/511] media: i2c: ccs: Check rules is non-NULL Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 329/511] PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 330/511] ipmi_si: fix a memleak in try_smi_init() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 331/511] ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 332/511] backlight/gpio_backlight: Compare against struct fb_info.device Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 333/511] backlight/bd6107: " Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 334/511] backlight/lv5207lp: " Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 335/511] xtensa: PMU: fix base address for the newer hardware Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 336/511] i3c: master: svc: fix probe failure when no i3c device exist Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 337/511] arm64: csum: Fix OoB access in IP checksum code for negative lengths Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 338/511] media: dvb: symbol fixup for dvb_attach() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 339/511] media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 340/511] Revert "scsi: qla2xxx: Fix buffer overrun" Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 341/511] scsi: mpt3sas: Perform additional retries if doorbell read returns 0 Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 342/511] ntb: Drop packets when qp link is down Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 343/511] ntb: Clean up tx tail index on link down Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 344/511] ntb: Fix calculation ntb_transport_tx_free_entry() Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 345/511] Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 346/511] procfs: block chmod on /proc/thread-self/comm Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 347/511] parisc: Fix /proc/cpuinfo output for lscpu Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 348/511] bpf: Fix issue in verifying allow_ptr_leaks Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 349/511] dlm: fix plock lookup when using multiple lockspaces Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 350/511] dccp: Fix out of bounds access in DCCP error handler Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 351/511] X.509: if signature is unsupported skip validation Greg Kroah-Hartman
2023-09-17 19:12 ` [PATCH 5.15 352/511] net: handle ARPHRD_PPP in dev_is_mac_header_xmit() Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 353/511] fsverity: skip PKCS#7 parser when keyring is empty Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 354/511] mmc: renesas_sdhi: register irqs before registering controller Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 355/511] pstore/ram: Check start of empty przs during init Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 356/511] arm64: sdei: abort running SDEI handlers during crash Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 357/511] s390/ipl: add missing secure/has_secure file to ipl type unknown Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 358/511] crypto: stm32 - fix loop iterating through scatterlist for DMA Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 359/511] cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 360/511] usb: typec: tcpm: set initial svdm version based on pd revision Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 361/511] usb: typec: bus: verify partner exists in typec_altmode_attention Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 362/511] USB: core: Unite old scheme and new scheme descriptor reads Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 363/511] USB: core: Change usb_get_device_descriptor() API Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 364/511] USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 365/511] USB: core: Fix oversight in SuperSpeed initialization Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 366/511] x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 367/511] perf/x86/uncore: Correct the number of CHAs on EMR Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 368/511] tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 369/511] md/md-bitmap: remove unnecessary local variable in backlog_store() Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 370/511] Revert "drm/amdgpu: install stub fence into potential unused fence pointers" Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 371/511] udf: initialize newblock to 0 Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 372/511] net/ipv6: SKB symmetric hash should incorporate transport ports Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 373/511] io_uring: always lock in io_apoll_task_func Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 374/511] io_uring: break out of iowq iopoll on teardown Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 375/511] io_uring: break iopolling on signal Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 376/511] scsi: qla2xxx: Adjust IOCB resource on qpair create Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 377/511] scsi: qla2xxx: Limit TMF to 8 per function Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 378/511] scsi: qla2xxx: Fix deletion race condition Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 379/511] scsi: qla2xxx: fix inconsistent TMF timeout Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 380/511] scsi: qla2xxx: Fix command flush during TMF Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 381/511] scsi: qla2xxx: Fix erroneous link up failure Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 382/511] scsi: qla2xxx: Turn off noisy message log Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 383/511] scsi: qla2xxx: Fix session hang in gnl Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 384/511] scsi: qla2xxx: Fix TMF leak through Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 385/511] scsi: qla2xxx: Remove unsupported ql2xenabledif option Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 386/511] scsi: qla2xxx: Flush mailbox commands on chip reset Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 387/511] scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 388/511] scsi: qla2xxx: Error code did not return to upper layer Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 389/511] scsi: qla2xxx: Fix firmware resource tracking Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 390/511] fbdev/ep93xx-fb: Do not assign to struct fb_info.dev Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 391/511] clk: qcom: camcc-sc7180: fix async resume during probe Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 392/511] drm/ast: Fix DRAM init on AST2200 Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 393/511] clk: qcom: turingcc-qcs404: fix missing resume during probe Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 394/511] lib/test_meminit: allocate pages up to order MAX_ORDER Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 395/511] parisc: led: Fix LAN receive and transmit LEDs Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 396/511] parisc: led: Reduce CPU overhead for disk & lan LED computation Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 397/511] pinctrl: cherryview: fix address_space_handler() argument Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 398/511] dt-bindings: clock: xlnx,versal-clk: drop select:false Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 399/511] clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz Greg Kroah-Hartman
2023-09-29 19:57   ` Ahmad Fatoum
2023-09-17 19:13 ` [PATCH 5.15 400/511] clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 401/511] soc: qcom: qmi_encdec: Restrict string length in decode Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 402/511] clk: qcom: q6sstop-qcs404: fix missing resume during probe Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 403/511] clk: qcom: mss-sc7180: " Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 404/511] NFS: Fix a potential data corruption Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 405/511] NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 406/511] bus: mhi: host: Skip MHI reset if device is in RDDM Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 407/511] kbuild: do not run depmod for make modules_sign Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 408/511] gfs2: Switch to wait_event in gfs2_logd Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 409/511] gfs2: low-memory forced flush fixes Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 410/511] kconfig: fix possible buffer overflow Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 411/511] perf trace: Use zfree() to reduce chances of use after free Greg Kroah-Hartman
2023-09-17 19:13 ` [PATCH 5.15 412/511] perf trace: Really free the evsel->priv area Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 413/511] pwm: atmel-tcb: Convert to platform remove callback returning void Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 414/511] pwm: atmel-tcb: Harmonize resource allocation order Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 415/511] pwm: atmel-tcb: Fix resource freeing in error path and remove Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 416/511] backlight: gpio_backlight: Drop output GPIO direction check for initial power state Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 417/511] Input: tca6416-keypad - always expect proper IRQ number in i2c client Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 418/511] Input: tca6416-keypad - fix interrupt enable disbalance Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 419/511] perf annotate bpf: Dont enclose non-debug code with an assert() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 420/511] x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 421/511] perf vendor events: Update the JSON/events descriptions for power10 platform Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 422/511] perf vendor events: Drop some of the JSON/events " Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 423/511] perf top: Dont pass an ERR_PTR() directly to perf_session__delete() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 424/511] watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 425/511] pwm: lpc32xx: Remove handling of PWM channels Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 426/511] net/sched: fq_pie: avoid stalls in fq_pie_timer() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 427/511] sctp: annotate data-races around sk->sk_wmem_queued Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 428/511] ipv4: annotate data-races around fi->fib_dead Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 429/511] net: read sk->sk_family once in sk_mc_loop() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 430/511] net: fib: avoid warn splat in flow dissector Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 431/511] xsk: Fix xsk_diag use-after-free error during socket cleanup Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 432/511] ceph: make members in struct ceph_mds_request_args_ext a union Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 433/511] drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 434/511] ipv4: ignore dst hint for multipath routes Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 435/511] igb: disable virtualization features on 82580 Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 436/511] veth: Fixing transmit return status for dropped packets Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 437/511] net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 438/511] net: phy: micrel: Correct bit assignments for phy_device flags Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 439/511] af_unix: Fix data-races around user->unix_inflight Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 440/511] af_unix: Fix data-race around unix_tot_inflight Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 441/511] af_unix: Fix data-races around sk->sk_shutdown Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 442/511] af_unix: Fix data race around sk->sk_err Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 443/511] net: sched: sch_qfq: Fix UAF in qfq_dequeue() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 444/511] kcm: Destroy mutex in kcm_exit_net() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 445/511] octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 446/511] igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 447/511] igbvf: Change IGBVF_MIN " Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 448/511] igb: Change IGB_MIN " Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 449/511] s390/zcrypt: dont leak memory if dev_set_name() fails Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 450/511] idr: fix param name in idr_alloc_cyclic() doc Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 451/511] ip_tunnels: use DEV_STATS_INC() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 452/511] net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and offload Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 453/511] net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 454/511] net: dsa: sja1105: complete tc-cbs offload support on SJA1110 Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 455/511] netfilter: nftables: exthdr: fix 4-byte stack OOB write Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 456/511] netfilter: nfnetlink_osf: avoid OOB read Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 457/511] net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 458/511] net: hns3: fix debugfs concurrency issue between kfree buffer and read Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 459/511] net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 460/511] net: hns3: fix the port information display when sfp is absent Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 461/511] net: hns3: remove GSO partial feature bit Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 462/511] sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 463/511] net/mlx5: Free IRQ rmap and notifier on kernel shutdown Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 464/511] ARC: atomics: Add compiler barrier to atomic operations Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 465/511] dmaengine: sh: rz-dmac: Fix destination and source data size setting Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 466/511] jbd2: fix checkpoint cleanup performance regression Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 467/511] jbd2: check jh->b_transaction before removing it from checkpoint Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 468/511] ext4: add correct group descriptors and reserved GDT blocks to system zone Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 469/511] lib: test_scanf: Add explicit type cast to result initialization in test_number_prefix() Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 470/511] ata: pata_falcon: fix IO base selection for Q40 Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 471/511] ata: sata_gemini: Add missing MODULE_DESCRIPTION Greg Kroah-Hartman
2023-09-17 19:14 ` [PATCH 5.15 472/511] ata: pata_ftide010: " Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 473/511] fuse: nlookup missing decrement in fuse_direntplus_link Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 474/511] btrfs: free qgroup rsv on io failure Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 475/511] btrfs: dont start transaction when joining with TRANS_JOIN_NOSTART Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 476/511] btrfs: use the correct superblock to compare fsid in btrfs_validate_super Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 477/511] mtd: rawnand: brcmnand: Fix crash during the panic_write Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 478/511] mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 479/511] mtd: rawnand: brcmnand: Fix potential false time out warning Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 480/511] drm/amd/display: prevent potential division by zero errors Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 481/511] MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install regression Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 482/511] perf hists browser: Fix hierarchy mode header Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 483/511] perf tools: Handle old data in PERF_RECORD_ATTR Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 484/511] perf hists browser: Fix the number of entries for e key Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 485/511] pcd: move the identify buffer into pcd_identify Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 486/511] pcd: cleanup initialization Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 487/511] block: move GENHD_FL_NATIVE_CAPACITY to disk->state Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 488/511] block: move GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE to disk->event_flags Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 489/511] block: rename GENHD_FL_NO_PART_SCAN to GENHD_FL_NO_PART Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 490/511] block: dont add or resize partition on the disk with GENHD_FL_NO_PART Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 491/511] ARM: dts: samsung: exynos4210-i9100: Fix LCD screens physical size Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 492/511] ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 493/511] net: ipv4: fix one memleak in __inet_del_ifa() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 494/511] kselftest/runner.sh: Propagate SIGTERM to runner child Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 495/511] net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in smcr_port_add Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 496/511] net: ethernet: mvpp2_main: fix possible OOB write in mvpp2_ethtool_get_rxnfc() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 497/511] net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in mtk_hwlro_get_fdir_all() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 498/511] hsr: Fix uninit-value access in fill_frame_info() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 499/511] net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 500/511] r8152: check budget for r8152_poll() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 501/511] kcm: Fix memory leak in error path of kcm_sendmsg() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 502/511] platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 503/511] platform/mellanox: mlxbf-tmfifo: Drop jumbo frames Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 504/511] platform/mellanox: mlxbf-pmc: Fix potential buffer overflows Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 505/511] platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 506/511] net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 507/511] ipv6: fix ip6_sock_set_addr_preferences() typo Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 508/511] ixgbe: fix timestamp configuration code Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 509/511] kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg() Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 510/511] MIPS: Only fiddle with CHECKFLAGS if `need-compiler Greg Kroah-Hartman
2023-09-17 19:15 ` [PATCH 5.15 511/511] drm/amd/display: Fix a bug when searching for insert_above_mpcc Greg Kroah-Hartman
2023-09-17 20:46 ` [PATCH 5.15 000/511] 5.15.132-rc1 review SeongJae Park
2023-09-18 12:45 ` Ron Economos
2023-09-18 12:47 ` Jon Hunter
2023-09-18 17:03 ` Guenter Roeck
2023-09-18 18:10 ` Florian Fainelli
2023-09-18 18:40 ` Guenter Roeck
2023-09-19  7:52   ` Greg Kroah-Hartman
2023-09-18 20:42 ` Harshit Mogalapalli
2023-09-18 21:09 ` Naresh Kamboju
2023-09-18 22:24 ` Shuah Khan
2023-09-19 17:14 ` Allen Pais

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=20230917191115.084670917@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=John.Hsu@mediatek.com \
    --cc=catalin.marinas@arm.com \
    --cc=joey.gouly@arm.com \
    --cc=mark.rutland@arm.com \
    --cc=patches@lists.linux.dev \
    --cc=robin.murphy@arm.com \
    --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;
as well as URLs for NNTP newsgroup(s).