stable.vger.kernel.org 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, Max Filippov <jcmvbkbc@gmail.com>
Subject: [PATCH 6.0 056/177] xtensa: add __umulsidi3 helper
Date: Wed,  4 Jan 2023 17:05:47 +0100	[thread overview]
Message-ID: <20230104160509.342441728@linuxfoundation.org> (raw)
In-Reply-To: <20230104160507.635888536@linuxfoundation.org>

From: Max Filippov <jcmvbkbc@gmail.com>

commit 8939c58d68f97ce530f02d46c9f2b56c3ec88399 upstream.

xtensa gcc-13 has changed multiplication handling and may now use
__umulsidi3 helper where it used to use __muldi3. As a result building
the kernel with the new gcc may fail with the following error:

    linux/init/main.c:1287: undefined reference to `__umulsidi3'

Fix the build by providing __umulsidi3 implementation for xtensa.

Cc: stable@vger.kernel.org # 5.18+
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/xtensa/kernel/xtensa_ksyms.c |   2 +
 arch/xtensa/lib/Makefile          |   2 +-
 arch/xtensa/lib/umulsidi3.S       | 230 ++++++++++++++++++++++++++++++
 3 files changed, 233 insertions(+), 1 deletion(-)
 create mode 100644 arch/xtensa/lib/umulsidi3.S

diff --git a/arch/xtensa/kernel/xtensa_ksyms.c b/arch/xtensa/kernel/xtensa_ksyms.c
index b0bc8897c924..2a31b1ab0c9f 100644
--- a/arch/xtensa/kernel/xtensa_ksyms.c
+++ b/arch/xtensa/kernel/xtensa_ksyms.c
@@ -62,6 +62,7 @@ extern int __modsi3(int, int);
 extern int __mulsi3(int, int);
 extern unsigned int __udivsi3(unsigned int, unsigned int);
 extern unsigned int __umodsi3(unsigned int, unsigned int);
+extern unsigned long long __umulsidi3(unsigned int, unsigned int);
 
 EXPORT_SYMBOL(__ashldi3);
 EXPORT_SYMBOL(__ashrdi3);
@@ -71,6 +72,7 @@ EXPORT_SYMBOL(__modsi3);
 EXPORT_SYMBOL(__mulsi3);
 EXPORT_SYMBOL(__udivsi3);
 EXPORT_SYMBOL(__umodsi3);
+EXPORT_SYMBOL(__umulsidi3);
 
 unsigned int __sync_fetch_and_and_4(volatile void *p, unsigned int v)
 {
diff --git a/arch/xtensa/lib/Makefile b/arch/xtensa/lib/Makefile
index d4e9c397e3fd..7ecef0519a27 100644
--- a/arch/xtensa/lib/Makefile
+++ b/arch/xtensa/lib/Makefile
@@ -5,7 +5,7 @@
 
 lib-y	+= memcopy.o memset.o checksum.o \
 	   ashldi3.o ashrdi3.o lshrdi3.o \
-	   divsi3.o udivsi3.o modsi3.o umodsi3.o mulsi3.o \
+	   divsi3.o udivsi3.o modsi3.o umodsi3.o mulsi3.o umulsidi3.o \
 	   usercopy.o strncpy_user.o strnlen_user.o
 lib-$(CONFIG_PCI) += pci-auto.o
 lib-$(CONFIG_KCSAN) += kcsan-stubs.o
diff --git a/arch/xtensa/lib/umulsidi3.S b/arch/xtensa/lib/umulsidi3.S
new file mode 100644
index 000000000000..136081647942
--- /dev/null
+++ b/arch/xtensa/lib/umulsidi3.S
@@ -0,0 +1,230 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */
+#include <linux/linkage.h>
+#include <asm/asmmacro.h>
+#include <asm/core.h>
+
+#if !XCHAL_HAVE_MUL16 && !XCHAL_HAVE_MUL32 && !XCHAL_HAVE_MAC16
+#define XCHAL_NO_MUL 1
+#endif
+
+ENTRY(__umulsidi3)
+
+#ifdef __XTENSA_CALL0_ABI__
+	abi_entry(32)
+	s32i	a12, sp, 16
+	s32i	a13, sp, 20
+	s32i	a14, sp, 24
+	s32i	a15, sp, 28
+#elif XCHAL_NO_MUL
+	/* This is not really a leaf function; allocate enough stack space
+	   to allow CALL12s to a helper function.  */
+	abi_entry(32)
+#else
+	abi_entry_default
+#endif
+
+#ifdef __XTENSA_EB__
+#define wh a2
+#define wl a3
+#else
+#define wh a3
+#define wl a2
+#endif /* __XTENSA_EB__ */
+
+	/* This code is taken from the mulsf3 routine in ieee754-sf.S.
+	   See more comments there.  */
+
+#if XCHAL_HAVE_MUL32_HIGH
+	mull	a6, a2, a3
+	muluh	wh, a2, a3
+	mov	wl, a6
+
+#else /* ! MUL32_HIGH */
+
+#if defined(__XTENSA_CALL0_ABI__) && XCHAL_NO_MUL
+	/* a0 and a8 will be clobbered by calling the multiply function
+	   but a8 is not used here and need not be saved.  */
+	s32i	a0, sp, 0
+#endif
+
+#if XCHAL_HAVE_MUL16 || XCHAL_HAVE_MUL32
+
+#define a2h a4
+#define a3h a5
+
+	/* Get the high halves of the inputs into registers.  */
+	srli	a2h, a2, 16
+	srli	a3h, a3, 16
+
+#define a2l a2
+#define a3l a3
+
+#if XCHAL_HAVE_MUL32 && !XCHAL_HAVE_MUL16
+	/* Clear the high halves of the inputs.  This does not matter
+	   for MUL16 because the high bits are ignored.  */
+	extui	a2, a2, 0, 16
+	extui	a3, a3, 0, 16
+#endif
+#endif /* MUL16 || MUL32 */
+
+
+#if XCHAL_HAVE_MUL16
+
+#define do_mul(dst, xreg, xhalf, yreg, yhalf) \
+	mul16u	dst, xreg ## xhalf, yreg ## yhalf
+
+#elif XCHAL_HAVE_MUL32
+
+#define do_mul(dst, xreg, xhalf, yreg, yhalf) \
+	mull	dst, xreg ## xhalf, yreg ## yhalf
+
+#elif XCHAL_HAVE_MAC16
+
+/* The preprocessor insists on inserting a space when concatenating after
+   a period in the definition of do_mul below.  These macros are a workaround
+   using underscores instead of periods when doing the concatenation.  */
+#define umul_aa_ll umul.aa.ll
+#define umul_aa_lh umul.aa.lh
+#define umul_aa_hl umul.aa.hl
+#define umul_aa_hh umul.aa.hh
+
+#define do_mul(dst, xreg, xhalf, yreg, yhalf) \
+	umul_aa_ ## xhalf ## yhalf	xreg, yreg; \
+	rsr	dst, ACCLO
+
+#else /* no multiply hardware */
+
+#define set_arg_l(dst, src) \
+	extui	dst, src, 0, 16
+#define set_arg_h(dst, src) \
+	srli	dst, src, 16
+
+#ifdef __XTENSA_CALL0_ABI__
+#define do_mul(dst, xreg, xhalf, yreg, yhalf) \
+	set_arg_ ## xhalf (a13, xreg); \
+	set_arg_ ## yhalf (a14, yreg); \
+	call0	.Lmul_mulsi3; \
+	mov	dst, a12
+#else
+#define do_mul(dst, xreg, xhalf, yreg, yhalf) \
+	set_arg_ ## xhalf (a14, xreg); \
+	set_arg_ ## yhalf (a15, yreg); \
+	call12	.Lmul_mulsi3; \
+	mov	dst, a14
+#endif /* __XTENSA_CALL0_ABI__ */
+
+#endif /* no multiply hardware */
+
+	/* Add pp1 and pp2 into a6 with carry-out in a9.  */
+	do_mul(a6, a2, l, a3, h)	/* pp 1 */
+	do_mul(a11, a2, h, a3, l)	/* pp 2 */
+	movi	a9, 0
+	add	a6, a6, a11
+	bgeu	a6, a11, 1f
+	addi	a9, a9, 1
+1:
+	/* Shift the high half of a9/a6 into position in a9.  Note that
+	   this value can be safely incremented without any carry-outs.  */
+	ssai	16
+	src	a9, a9, a6
+
+	/* Compute the low word into a6.  */
+	do_mul(a11, a2, l, a3, l)	/* pp 0 */
+	sll	a6, a6
+	add	a6, a6, a11
+	bgeu	a6, a11, 1f
+	addi	a9, a9, 1
+1:
+	/* Compute the high word into wh.  */
+	do_mul(wh, a2, h, a3, h)	/* pp 3 */
+	add	wh, wh, a9
+	mov	wl, a6
+
+#endif /* !MUL32_HIGH */
+
+#if defined(__XTENSA_CALL0_ABI__) && XCHAL_NO_MUL
+	/* Restore the original return address.  */
+	l32i	a0, sp, 0
+#endif
+#ifdef __XTENSA_CALL0_ABI__
+	l32i	a12, sp, 16
+	l32i	a13, sp, 20
+	l32i	a14, sp, 24
+	l32i	a15, sp, 28
+	abi_ret(32)
+#else
+	abi_ret_default
+#endif
+
+#if XCHAL_NO_MUL
+
+	.macro	do_addx2 dst, as, at, tmp
+#if XCHAL_HAVE_ADDX
+	addx2	\dst, \as, \at
+#else
+	slli	\tmp, \as, 1
+	add	\dst, \tmp, \at
+#endif
+	.endm
+
+	.macro	do_addx4 dst, as, at, tmp
+#if XCHAL_HAVE_ADDX
+	addx4	\dst, \as, \at
+#else
+	slli	\tmp, \as, 2
+	add	\dst, \tmp, \at
+#endif
+	.endm
+
+	.macro	do_addx8 dst, as, at, tmp
+#if XCHAL_HAVE_ADDX
+	addx8	\dst, \as, \at
+#else
+	slli	\tmp, \as, 3
+	add	\dst, \tmp, \at
+#endif
+	.endm
+
+	/* For Xtensa processors with no multiply hardware, this simplified
+	   version of _mulsi3 is used for multiplying 16-bit chunks of
+	   the floating-point mantissas.  When using CALL0, this function
+	   uses a custom ABI: the inputs are passed in a13 and a14, the
+	   result is returned in a12, and a8 and a15 are clobbered.  */
+	.align	4
+.Lmul_mulsi3:
+	abi_entry_default
+
+	.macro mul_mulsi3_body dst, src1, src2, tmp1, tmp2
+	movi	\dst, 0
+1:	add	\tmp1, \src2, \dst
+	extui	\tmp2, \src1, 0, 1
+	movnez	\dst, \tmp1, \tmp2
+
+	do_addx2 \tmp1, \src2, \dst, \tmp1
+	extui	\tmp2, \src1, 1, 1
+	movnez	\dst, \tmp1, \tmp2
+
+	do_addx4 \tmp1, \src2, \dst, \tmp1
+	extui	\tmp2, \src1, 2, 1
+	movnez	\dst, \tmp1, \tmp2
+
+	do_addx8 \tmp1, \src2, \dst, \tmp1
+	extui	\tmp2, \src1, 3, 1
+	movnez	\dst, \tmp1, \tmp2
+
+	srli	\src1, \src1, 4
+	slli	\src2, \src2, 4
+	bnez	\src1, 1b
+	.endm
+
+#ifdef __XTENSA_CALL0_ABI__
+	mul_mulsi3_body a12, a13, a14, a15, a8
+#else
+	/* The result will be written into a2, so save that argument in a4.  */
+	mov	a4, a2
+	mul_mulsi3_body a2, a4, a3, a5, a6
+#endif
+	abi_ret_default
+#endif /* XCHAL_NO_MUL */
+
+ENDPROC(__umulsidi3)
-- 
2.39.0




  parent reply	other threads:[~2023-01-04 16:17 UTC|newest]

Thread overview: 190+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-04 16:04 [PATCH 6.0 000/177] 6.0.18-rc1 review Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 001/177] drm/amdgpu: skip MES for S0ix as well since its part of GFX Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 002/177] media: stv0288: use explicitly signed char Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 003/177] cxl/region: Fix memdev reuse check Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 004/177] arm64: dts: qcom: sc8280xp: fix UFS DMA coherency Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 005/177] arm64: Prohibit instrumentation on arch_stack_walk() Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 006/177] soc: qcom: Select REMAP_MMIO for LLCC driver Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 007/177] soc: qcom: Select REMAP_MMIO for ICC_BWMON driver Greg Kroah-Hartman
2023-01-04 16:04 ` [PATCH 6.0 008/177] kest.pl: Fix grub2 menu handling for rebooting Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 009/177] ktest.pl minconfig: Unset configs instead of just removing them Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 010/177] jbd2: use the correct print format Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 011/177] perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 012/177] perf/x86/intel/uncore: Clear attr_update properly Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 013/177] arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 014/177] arm64: dts: qcom: sc8280xp: fix UFS reference clocks Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 015/177] mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 016/177] phy: qcom-qmp-combo: fix out-of-bounds clock access Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 017/177] drm/amd/pm: update SMU13.0.0 reported maximum shader clock Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 018/177] drm/amd/pm: correct SMU13.0.0 pstate profiling clock settings Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 019/177] btrfs: fix extent map use-after-free when handling missing device in read_one_chunk Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 020/177] btrfs: fix resolving backrefs for inline extent followed by prealloc Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 021/177] ARM: ux500: do not directly dereference __iomem Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 022/177] arm64: dts: qcom: sdm850-samsung-w737: correct I2C12 pins drive strength Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 023/177] x86/fpu/xstate: Fix XSTATE_WARN_ON() to emit relevant diagnostics Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 024/177] arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 025/177] cxl/region: Fix missing probe failure Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 026/177] EDAC/mc_sysfs: Increase legacy channel support to 12 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 027/177] selftests: Use optional USERCFLAGS and USERLDFLAGS Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 028/177] x86/MCE/AMD: Clear DFR errors found in THR handler Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 029/177] PM/devfreq: governor: Add a private governor_data for governor Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 030/177] cpufreq: Init completion before kobject_init_and_add() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 031/177] ext2: unbugger ext2_empty_dir() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 032/177] media: s5p-mfc: Fix to handle reference queue during finishing Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 033/177] media: s5p-mfc: Clear workbit to handle error condition Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 034/177] media: s5p-mfc: Fix in register read and write for H264 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 035/177] bpf: Resolve fext program type when checking map compatibility Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 036/177] ALSA: patch_realtek: Fix Dell Inspiron Plus 16 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 037/177] ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 038/177] fs: dlm: fix sock release if listen fails Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 039/177] fs: dlm: retry accept() until -EAGAIN or error returns Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 040/177] mptcp: netlink: fix some error return code Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 041/177] mptcp: remove MPTCP ifdef in TCP SYN cookies Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 042/177] mptcp: dedicated request sock for subflow in v6 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 043/177] mptcp: use proper req destructor for IPv6 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 044/177] dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 045/177] dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 046/177] dm thin: Use last transactions pmd->root when commit failed Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 047/177] dm thin: resume even if in FAIL mode Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 048/177] dm thin: Fix UAF in run_timer_softirq() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 049/177] dm integrity: Fix UAF in dm_integrity_dtr() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 050/177] dm clone: Fix UAF in clone_dtr() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 051/177] dm cache: Fix UAF in destroy() Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 052/177] dm cache: set needs_check flag after aborting metadata Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 053/177] PCI/DOE: Fix maximum data object length miscalculation Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 054/177] tracing/hist: Fix out-of-bound write on action_data.var_ref_idx Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 055/177] perf/core: Call LSM hook after copying perf_event_attr Greg Kroah-Hartman
2023-01-04 16:05 ` Greg Kroah-Hartman [this message]
2023-01-04 16:05 ` [PATCH 6.0 057/177] of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 058/177] ima: Fix hash dependency to correct algorithm Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 059/177] KVM: VMX: Resume guest immediately when injecting #GP on ECREATE Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 060/177] KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 061/177] KVM: x86: fix APICv/x2AVIC disabled when vm reboot by itself Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 062/177] KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 063/177] x86/microcode/intel: Do not retry microcode reloading on the APs Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 064/177] ftrace/x86: Add back ftrace_expected for ftrace bug reports Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 065/177] x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 066/177] x86/kprobes: Fix optprobe optimization " Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 067/177] tracing: Fix race where eprobes can be called before the event Greg Kroah-Hartman
2023-01-04 16:05 ` [PATCH 6.0 068/177] powerpc/ftrace: fix syscall tracing on PPC64_ELF_ABI_V1 Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 069/177] tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 070/177] tracing/hist: Fix wrong return value in parse_action_params() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 071/177] tracing/probes: Handle system names with hyphens Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 072/177] tracing: Fix issue of missing one synthetic field Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 073/177] tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 074/177] staging: media: tegra-video: fix chan->mipi value on error Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 075/177] staging: media: tegra-video: fix device_node use after free Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 076/177] arm64: dts: mediatek: mt8195-demo: fix the memory size of node secmon Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 077/177] ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 078/177] media: dvb-core: Fix double free in dvb_register_device() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 079/177] media: dvb-core: Fix UAF due to refcount races at releasing Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 080/177] cifs: fix confusing debug message Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 081/177] cifs: fix missing display of three mount options Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 082/177] cifs: set correct tcon status after initial tree connect Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 083/177] cifs: set correct ipc " Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 084/177] cifs: set correct status of tcon ipc when reconnecting Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 085/177] ravb: Fix "failed to switch device to config mode" message during unbind Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 086/177] rtc: ds1347: fix value written to century register Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 087/177] drm/amdgpu: fix mmhub register base coding error Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 088/177] block: mq-deadline: Fix dd_finish_request() for zoned devices Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 089/177] block: mq-deadline: Do not break sequential write streams to zoned HDDs Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 090/177] md/bitmap: Fix bitmap chunk size overflow issues Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 091/177] efi: Add iMac Pro 2017 to uefi skip cert quirk Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 092/177] wifi: wilc1000: sdio: fix module autoloading Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 093/177] ASoC: jz4740-i2s: Handle independent FIFO flush bits Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 094/177] ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 095/177] ipmi: fix long wait in unload when IPMI disconnect Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 096/177] mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 097/177] ima: Fix a potential NULL pointer access in ima_restore_measurement_list Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 098/177] ipmi: fix use after free in _ipmi_destroy_user() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 099/177] mtd: spi-nor: gigadevice: gd25q256: replace gd25q256_default_init with gd25q256_post_bfpt Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 100/177] ima: Fix memory leak in __ima_inode_hash() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 101/177] crypto: ccree,hisilicon - Fix dependencies to correct algorithm Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 102/177] PCI: Fix pci_device_is_present() for VFs by checking PF Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 103/177] PCI/sysfs: Fix double free in error path Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 104/177] RISC-V: kexec: Fix memory leak of fdt buffer Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 105/177] riscv: Fixup compile error with !MMU Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 106/177] RISC-V: kexec: Fix memory leak of elf header buffer Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 107/177] riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 108/177] riscv: mm: notify remote harts about mmu cache updates Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 109/177] crypto: n2 - add missing hash statesize Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 110/177] crypto: ccp - Add support for TEE for PCI ID 0x14CA Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 111/177] driver core: Fix bus_type.match() error handling in __driver_attach() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 112/177] bus: mhi: host: Fix race between channel preparation and M0 event Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 113/177] phy: qcom-qmp-combo: fix sc8180x reset Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 114/177] iommu/amd: Fix ivrs_acpihid cmdline parsing code Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 115/177] iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 116/177] test_kprobes: Fix implicit declaration error of test_kprobes Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 117/177] remoteproc: imx_dsp_rproc: Add mutex protection for workqueue Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 118/177] remoteproc: core: Do pm_relax when in RPROC_OFFLINE state Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 119/177] remoteproc: imx_rproc: Correct i.MX93 DRAM mapping Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 120/177] parisc: led: Fix potential null-ptr-deref in start_task() Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 121/177] parisc: Fix locking in pdc_iodc_print() firmware call Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 122/177] parisc: Add missing FORCE prerequisites in Makefile Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 123/177] parisc: Drop PMD_SHIFT from calculation in pgtable.h Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 124/177] device_cgroup: Roll back to original exceptions after copy failure Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 125/177] drm/connector: send hotplug uevent on connector cleanup Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 126/177] drm/vmwgfx: Validate the box size for the snooped cursor Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 127/177] drm/etnaviv: move idle mapping reaping into separate function Greg Kroah-Hartman
2023-01-04 16:06 ` [PATCH 6.0 128/177] drm/i915/dsi: fix VBT send packet port selection for dual link DSI Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 129/177] drm/ingenic: Fix missing platform_driver_unregister() call in ingenic_drm_init() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 130/177] drm/etnaviv: reap idle mapping if it doesnt match the softpin address Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 131/177] arm64: efi: Execute runtime services from a dedicated stack Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 132/177] ext4: silence the warning when evicting inode with dioread_nolock Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 133/177] ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 134/177] ext4: remove trailing newline from ext4_msg() message Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 135/177] fs: ext4: initialize fsdata in pagecache_write() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 136/177] ext4: fix use-after-free in ext4_orphan_cleanup Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 137/177] ext4: fix undefined behavior in bit shift for ext4_check_flag_values Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 138/177] ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 139/177] ext4: add helper to check quota inums Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 140/177] ext4: fix bug_on in __es_tree_search caused by bad quota inode Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 141/177] ext4: fix reserved cluster accounting in __es_remove_extent() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 142/177] ext4: journal_path mount options should follow links Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 143/177] ext4: check and assert if marking an no_delete evicting inode dirty Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 144/177] ext4: fix bug_on in __es_tree_search caused by bad boot loader inode Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 145/177] ext4: dont allow journal inode to have encrypt flag Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 146/177] ext4: disable fast-commit of encrypted dir operations Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 147/177] ext4: fix leaking uninitialized memory in fast-commit journal Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 148/177] ext4: dont set up encryption key during jbd2 transaction Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 149/177] ext4: add missing validation of fast-commit record lengths Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 150/177] ext4: fix unaligned memory access in ext4_fc_reserve_space() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 151/177] ext4: fix off-by-one errors in fast-commit block filling Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 152/177] ext4: fix uninititialized value in ext4_evict_inode Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 153/177] ext4: init quota for old.inode in ext4_rename Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 154/177] ext4: dont fail GETFSUUID when the caller provides a long buffer Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 155/177] ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 156/177] ext4: fix corruption when online resizing a 1K bigalloc fs Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 157/177] ext4: fix error code return to user-space in ext4_get_branch() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 158/177] ext4: fix bad checksum after online resize Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 159/177] ext4: dont return EINVAL from GETFSUUID when reporting UUID length Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 160/177] ext4: fix corrupt backup group descriptors after online resize Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 161/177] ext4: avoid BUG_ON when creating xattrs Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 162/177] ext4: fix deadlock due to mbcache entry corruption Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 163/177] ext4: fix kernel BUG in ext4_write_inline_data_end() Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 164/177] ext4: fix inode leak in ext4_xattr_inode_create() on an error path Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 165/177] ext4: initialize quota before expanding inode in setproject ioctl Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 166/177] ext4: avoid unaccounted block allocation when expanding inode Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 167/177] ext4: allocate extended attribute value in vmalloc area Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 168/177] drm/i915/ttm: consider CCS for backup objects Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 169/177] drm/amd/display: Add DCN314 display SG Support Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 170/177] drm/amdgpu: handle polaris10/11 overlap asics (v2) Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 171/177] drm/amdgpu: make display pinning more flexible (v2) Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 172/177] drm/i915: improve the catch-all evict to handle lock contention Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 173/177] drm/i915/migrate: Account for the reserved_space Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 174/177] drm/amd/pm: add missing SMU13.0.0 mm_dpm feature mapping Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 175/177] drm/amd/pm: add missing SMU13.0.7 " Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 176/177] drm/amd/pm: bump SMU13.0.0 driver_if header to version 0x34 Greg Kroah-Hartman
2023-01-04 16:07 ` [PATCH 6.0 177/177] drm/amd/pm: correct the fan speed retrieving in PWM for some SMU13 asics Greg Kroah-Hartman
2023-01-04 20:08 ` [PATCH 6.0 000/177] 6.0.18-rc1 review Florian Fainelli
2023-01-04 21:48 ` Allen Pais
2023-01-04 22:18 ` Shuah Khan
2023-01-04 22:33 ` Guenter Roeck
2023-01-05  7:20 ` Bagas Sanjaya
2023-01-05  9:03 ` Naresh Kamboju
2023-01-05 11:14 ` Sudip Mukherjee (Codethink)
2023-01-05 14:44 ` Justin Forbes
2023-01-05 22:33 ` Ron Economos
2023-01-06 14:27 ` Georg Müller
2023-01-06 14:34   ` Greg Kroah-Hartman
2023-01-07  9:25     ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230104160509.342441728@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jcmvbkbc@gmail.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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