From: Michael Ellerman <mpe@ellerman.id.au>
To: kernel test robot <lkp@intel.com>,
Arnd Bergmann <arnd@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org,
Masahiro Yamada <masahiroy@kernel.org>,
linux-kbuild@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev,
Linux Memory Management List <linux-mm@kvack.org>,
Arnd Bergmann <arnd@arndb.de>, Matt Turner <mattst88@gmail.com>,
Vineet Gupta <vgupta@kernel.org>,
Russell King <linux@armlinux.org.uk>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Mark Rutland <mark.rutland@arm.com>, Guo Ren <guoren@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Ard Biesheuvel <ardb@kernel.org>,
Huacai Chen <chenhuacai@kernel.org>,
Greg Ungerer <gerg@linux-m68k.org>,
Michal Simek <monstr@monstr.eu>,
Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
Dinh Nguyen <dinguyen@kernel.org>,
Nicholas Piggin <npiggin@gmail.com>,
Christophe Leroy <christophe.leroy@csgroup.eu>,
Geoff Levand <geoff@infradead.org>,
Palmer Dabbelt <palmer@dabbelt.com>,
Heiko Carstens <hca@linux.ibm.com>,
John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>,
Andy Lutomirski <luto@kernel.org>
Subject: Re: [PATCH 17/22] powerpc: ps3: move udbg_shutdown_ps3gelic prototype
Date: Fri, 10 Nov 2023 14:40:51 +1100 [thread overview]
Message-ID: <87h6lu8ed8.fsf@mail.lhotse> (raw)
In-Reply-To: <202311090843.b8ISrsV1-lkp@intel.com>
kernel test robot <lkp@intel.com> writes:
> Hi Arnd,
>
> kernel test robot noticed the following build errors:
>
> [auto build test ERROR on linus/master]
> [also build test ERROR on next-20231108]
> [cannot apply to v6.6]
> [If your patch is applied to the wrong git tree, kindly drop us a note.
> And when submitting patch, we suggest to use '--base' as documented in
> https://git-scm.com/docs/git-format-patch#_base_tree_information]
>
> url: https://github.com/intel-lab-lkp/linux/commits/Arnd-Bergmann/ida-make-ida_dump-static/20231109-005742
> base: linus/master
> patch link: https://lore.kernel.org/r/20231108125843.3806765-18-arnd%40kernel.org
> patch subject: [PATCH 17/22] powerpc: ps3: move udbg_shutdown_ps3gelic prototype
> config: powerpc64-randconfig-001-20231109 (https://download.01.org/0day-ci/archive/20231109/202311090843.b8ISrsV1-lkp@intel.com/config)
> compiler: powerpc64-linux-gcc (GCC) 13.2.0
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231109/202311090843.b8ISrsV1-lkp@intel.com/reproduce)
>
> If you fix the issue in a separate patch/commit (i.e. not just a new version of
> the same patch/commit), kindly add following tags
> | Reported-by: kernel test robot <lkp@intel.com>
> | Closes: https://lore.kernel.org/oe-kbuild-all/202311090843.b8ISrsV1-lkp@intel.com/
>
> All errors (new ones prefixed by >>):
>
> arch/powerpc/platforms/ps3/gelic_udbg.c:59:1: warning: alignment 1 of 'struct debug_block' is less than 32 [-Wpacked-not-aligned]
> 59 | } __packed;
> | ^
>>> arch/powerpc/platforms/ps3/gelic_udbg.c:240:6: error: redefinition of 'udbg_shutdown_ps3gelic'
> 240 | void udbg_shutdown_ps3gelic(void)
> | ^~~~~~~~~~~~~~~~~~~~~~
> In file included from arch/powerpc/platforms/ps3/gelic_udbg.c:17:
> arch/powerpc/include/asm/ps3.h:520:20: note: previous definition of 'udbg_shutdown_ps3gelic' with type 'void(void)'
> 520 | static inline void udbg_shutdown_ps3gelic(void) {}
> | ^~~~~~~~~~~~~~~~~~~~~~
As pointed out by Arnd this is due to there being two symbols that
control the gelic_udbg.c code.
I don't see the need for PS3GELIC_UDBG, without PPC_EARLY_DEBUG_PS3GELIC
it just causes gelic_udbg.c to be built, but never called.
The diff below fixes the error AFAICS.
I can just fold it in if you're happy with that Arnd.
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug
index ea4033abc07d..8c80b154e814 100644
--- a/arch/powerpc/Kconfig.debug
+++ b/arch/powerpc/Kconfig.debug
@@ -271,7 +271,6 @@ config PPC_EARLY_DEBUG_USBGECKO
config PPC_EARLY_DEBUG_PS3GELIC
bool "Early debugging through the PS3 Ethernet port"
depends on PPC_PS3
- select PS3GELIC_UDBG
help
Select this to enable early debugging for the PlayStation3 via
UDP broadcasts sent out through the Ethernet port.
diff --git a/arch/powerpc/platforms/ps3/Kconfig b/arch/powerpc/platforms/ps3/Kconfig
index a44869e5ea70..e9c1087dd42e 100644
--- a/arch/powerpc/platforms/ps3/Kconfig
+++ b/arch/powerpc/platforms/ps3/Kconfig
@@ -167,16 +167,4 @@ config PS3_LPM
profiling support of the Cell processor with programs like
perfmon2, then say Y or M, otherwise say N.
-config PS3GELIC_UDBG
- bool "PS3 udbg output via UDP broadcasts on Ethernet"
- depends on PPC_PS3
- help
- Enables udbg early debugging output by sending broadcast UDP
- via the Ethernet port (UDP port number 18194).
-
- This driver uses a trivial implementation and is independent
- from the main PS3 gelic network driver.
-
- If in doubt, say N here.
-
endmenu
diff --git a/arch/powerpc/platforms/ps3/Makefile b/arch/powerpc/platforms/ps3/Makefile
index 86bf2967a8d4..bc79bb124d1e 100644
--- a/arch/powerpc/platforms/ps3/Makefile
+++ b/arch/powerpc/platforms/ps3/Makefile
@@ -3,7 +3,7 @@ obj-y += setup.o mm.o time.o hvcall.o htab.o repository.o
obj-y += interrupt.o exports.o os-area.o
obj-y += system-bus.o
-obj-$(CONFIG_PS3GELIC_UDBG) += gelic_udbg.o
+obj-$(CONFIG_PPC_EARLY_DEBUG_PS3GELIC) += gelic_udbg.o
obj-$(CONFIG_SMP) += smp.o
obj-$(CONFIG_SPU_BASE) += spu.o
obj-y += device-init.o
cheers
next prev parent reply other threads:[~2023-11-10 3:41 UTC|newest]
Thread overview: 280+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-08 12:58 [PATCH 00/22] -Wmissing-prototype warning fixes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 01/22] [RESEND^2] ida: make 'ida_dump' static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 02/22] [RESEND^2] jffs2: mark __jffs2_dbg_superblock_counts() static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-09 1:07 ` Zhihao Cheng
2023-11-09 1:07 ` Zhihao Cheng
2023-11-09 1:07 ` Zhihao Cheng
2023-11-09 1:07 ` Zhihao Cheng
2023-11-09 1:07 ` Zhihao Cheng
2023-11-09 1:07 ` Zhihao Cheng
2023-11-08 12:58 ` [PATCH 03/22] [RESEND] kprobes: unify kprobes_exceptions_nofify() prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 23:20 ` Masami Hiramatsu
2023-11-08 12:58 ` [PATCH 04/22] [RESEND] time: make sysfs_get_uname() function visible in header Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-10 12:41 ` Uwe Kleine-König
2023-11-22 13:19 ` [tip: timers/core] time: Make " tip-bot2 for Arnd Bergmann
2023-11-08 12:58 ` [PATCH 05/22] [RESEND] parport: gsc: mark init function static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-10 7:47 ` Helge Deller
2023-11-08 12:58 ` [PATCH 06/22] [RESEND] stackleak: add declarations for global functions Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 19:07 ` (subset) " Kees Cook
2023-11-08 12:58 ` [PATCH 07/22] [RESEND] sched: fair: move unused stub functions to header Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 08/22] [v2] arch: consolidate arch_irq_work_raise prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 9:03 ` Geert Uytterhoeven
2024-01-10 10:20 ` Arnd Bergmann
2024-01-10 10:20 ` Arnd Bergmann
2024-01-10 10:20 ` Arnd Bergmann
2024-01-10 10:20 ` Arnd Bergmann
2024-01-10 10:20 ` Arnd Bergmann
2024-01-10 10:20 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 09/22] [v2] arch: fix asm-offsets.c building with -Wmissing-prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 19:10 ` Sam Ravnborg
2023-11-08 12:58 ` [PATCH 10/22] microblaze: include linux/cpu.h for trap_init() prototype Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 20:42 ` Geert Uytterhoeven
2023-11-08 20:42 ` Geert Uytterhoeven
2023-11-08 20:42 ` Geert Uytterhoeven
2023-11-08 20:42 ` Geert Uytterhoeven
2023-11-08 20:42 ` Geert Uytterhoeven
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:07 ` Arnd Bergmann
2023-11-08 21:10 ` Geert Uytterhoeven
2023-11-08 21:10 ` Geert Uytterhoeven
2023-11-08 21:10 ` Geert Uytterhoeven
2023-11-08 21:10 ` Geert Uytterhoeven
2023-11-08 21:10 ` Geert Uytterhoeven
2023-11-08 12:58 ` [PATCH 11/22] x86: sta2x11: include header for sta2x11_get_instance() prototype Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 12/22] csky: fix arch_jump_label_transform_static override Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-12 4:21 ` Guo Ren
2023-11-12 4:21 ` Guo Ren
2023-11-12 4:21 ` Guo Ren
2023-11-12 4:21 ` Guo Ren
2023-11-12 4:21 ` Guo Ren
2023-11-12 4:21 ` Guo Ren
2023-11-08 12:58 ` [PATCH 13/22] arch: add do_page_fault prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 14/22] arch: add missing prepare_ftrace_return() prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 15/22] arch: vdso: consolidate gettime prototypes Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 18:31 ` Christophe Leroy
2023-11-08 19:37 ` Arnd Bergmann
2023-11-08 19:37 ` Arnd Bergmann
2023-11-08 19:37 ` Arnd Bergmann
2023-11-08 19:37 ` Arnd Bergmann
2023-11-08 19:37 ` Arnd Bergmann
2023-11-08 19:37 ` Arnd Bergmann
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 7:50 ` Christophe Leroy
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:18 ` Michael Ellerman
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 10:49 ` Christophe Leroy
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 12:23 ` Michael Ellerman
2023-11-09 9:25 ` kernel test robot
2023-11-09 9:46 ` kernel test robot
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-10 10:16 ` Vincenzo Frascino
2023-11-24 12:04 ` Mark Brown
2023-11-24 12:04 ` Mark Brown
2023-11-24 12:04 ` Mark Brown
2023-11-24 12:04 ` Mark Brown
2023-11-24 12:04 ` Mark Brown
2023-11-24 12:04 ` Mark Brown
2023-11-08 12:58 ` [PATCH 16/22] bcachefs: mark bch2_target_to_text_sb() static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 20:19 ` Kent Overstreet
2023-11-08 20:19 ` Kent Overstreet
2023-11-08 20:19 ` Kent Overstreet
2023-11-08 20:19 ` Kent Overstreet
2023-11-08 20:19 ` Kent Overstreet
2023-11-08 12:58 ` [PATCH 17/22] powerpc: ps3: move udbg_shutdown_ps3gelic prototype Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 14:18 ` Geoff Levand
2023-11-08 14:18 ` Geoff Levand
2023-11-08 14:18 ` Geoff Levand
2023-11-08 14:18 ` Geoff Levand
2023-11-08 14:18 ` Geoff Levand
2023-11-08 14:18 ` Geoff Levand
2023-11-08 15:10 ` Jakub Kicinski
2023-11-08 15:10 ` Jakub Kicinski
2023-11-08 15:10 ` Jakub Kicinski
2023-11-08 15:10 ` Jakub Kicinski
2023-11-08 15:10 ` Jakub Kicinski
2023-11-08 15:10 ` Jakub Kicinski
2023-11-09 0:44 ` kernel test robot
2023-11-10 3:40 ` Michael Ellerman [this message]
2023-11-10 6:30 ` Arnd Bergmann
2023-11-13 9:46 ` Geert Uytterhoeven
2023-11-08 12:58 ` [PATCH 18/22] powerpc: pasemi: mark pas_shutdown() static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 19/22] powerpc: powermac: mark smp_psurge_{give,take}_timebase static Arnd Bergmann
2023-11-08 12:58 ` [PATCH 19/22] powerpc: powermac: mark smp_psurge_{give, take}_timebase static Arnd Bergmann
2023-11-08 12:58 ` [PATCH 19/22] powerpc: powermac: mark smp_psurge_{give,take}_timebase static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` [PATCH 20/22] usb: fsl-mph-dr-of: mark fsl_usb2_mpc5121_init() static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-21 14:12 ` Greg Kroah-Hartman
2023-11-08 12:58 ` [PATCH 21/22] fbdev/fsl-diu-fb: mark wr_reg_wa() static Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-10 7:06 ` Helge Deller
2023-11-08 12:58 ` [PATCH 22/22] Makefile.extrawarn: turn on missing-prototypes globally Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-11-08 12:58 ` Arnd Bergmann
2023-12-07 12:38 ` (subset) [PATCH 00/22] -Wmissing-prototype warning fixes Michael Ellerman
2023-12-07 12:38 ` Michael Ellerman
2023-12-07 12:38 ` Michael Ellerman
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=87h6lu8ed8.fsf@mail.lhotse \
--to=mpe@ellerman.id.au \
--cc=akpm@linux-foundation.org \
--cc=ardb@kernel.org \
--cc=arnd@arndb.de \
--cc=arnd@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=chenhuacai@kernel.org \
--cc=christophe.leroy@csgroup.eu \
--cc=dinguyen@kernel.org \
--cc=geoff@infradead.org \
--cc=gerg@linux-m68k.org \
--cc=glaubitz@physik.fu-berlin.de \
--cc=guoren@kernel.org \
--cc=hca@linux.ibm.com \
--cc=linux-kbuild@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux@armlinux.org.uk \
--cc=lkp@intel.com \
--cc=luto@kernel.org \
--cc=mark.rutland@arm.com \
--cc=masahiroy@kernel.org \
--cc=mattst88@gmail.com \
--cc=mhiramat@kernel.org \
--cc=monstr@monstr.eu \
--cc=npiggin@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=palmer@dabbelt.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tsbogend@alpha.franken.de \
--cc=vgupta@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.