All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/15] init_mm: cleanup ARCH's text/data/brk setup code
@ 2021-06-04  7:06 ` Kefeng Wang
  0 siblings, 0 replies; 90+ messages in thread
From: Kefeng Wang @ 2021-06-04  7:06 UTC (permalink / raw)
  To: Andrew Morton, linux-kernel
  Cc: linux-mm, Kefeng Wang, linux-snps-arc, linux-arm-kernel,
	linux-csky, uclinux-h8-devel, linux-m68k, openrisc, linuxppc-dev,
	linux-riscv, linux-sh, linux-s390

Add setup_initial_init_mm() helper, then use it
to cleanup the text, data and brk setup code.

v2:
- change argument from "char *" to "void *" setup_initial_init_mm()
  suggested by Geert Uytterhoeven
- use NULL instead of (void *)0 on h8300 and m68k
- collect ACKs

Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-csky@vger.kernel.org
Cc: uclinux-h8-devel@lists.sourceforge.jp
Cc: linux-m68k@lists.linux-m68k.org
Cc: openrisc@lists.librecores.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-riscv@lists.infradead.org
Cc: linux-sh@vger.kernel.org
Cc: linux-s390@vger.kernel.org
Kefeng Wang (15):
  mm: add setup_initial_init_mm() helper
  arc: convert to setup_initial_init_mm()
  arm: convert to setup_initial_init_mm()
  arm64: convert to setup_initial_init_mm()
  csky: convert to setup_initial_init_mm()
  h8300: convert to setup_initial_init_mm()
  m68k: convert to setup_initial_init_mm()
  nds32: convert to setup_initial_init_mm()
  nios2: convert to setup_initial_init_mm()
  openrisc: convert to setup_initial_init_mm()
  powerpc: convert to setup_initial_init_mm()
  riscv: convert to setup_initial_init_mm()
  s390: convert to setup_initial_init_mm()
  sh: convert to setup_initial_init_mm()
  x86: convert to setup_initial_init_mm()

 arch/arc/mm/init.c                 | 5 +----
 arch/arm/kernel/setup.c            | 5 +----
 arch/arm64/kernel/setup.c          | 5 +----
 arch/csky/kernel/setup.c           | 5 +----
 arch/h8300/kernel/setup.c          | 5 +----
 arch/m68k/kernel/setup_mm.c        | 5 +----
 arch/m68k/kernel/setup_no.c        | 5 +----
 arch/nds32/kernel/setup.c          | 5 +----
 arch/nios2/kernel/setup.c          | 5 +----
 arch/openrisc/kernel/setup.c       | 5 +----
 arch/powerpc/kernel/setup-common.c | 5 +----
 arch/riscv/kernel/setup.c          | 5 +----
 arch/s390/kernel/setup.c           | 5 +----
 arch/sh/kernel/setup.c             | 5 +----
 arch/x86/kernel/setup.c            | 5 +----
 include/linux/mm_types.h           | 8 ++++++++
 16 files changed, 23 insertions(+), 60 deletions(-)

-- 
2.26.2


^ permalink raw reply	[flat|nested] 90+ messages in thread

end of thread, other threads:[~2021-06-12  4:00 UTC | newest]

Thread overview: 90+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-04  7:06 [PATCH v2 00/15] init_mm: cleanup ARCH's text/data/brk setup code Kefeng Wang
2021-06-04  7:06 ` [OpenRISC] " Kefeng Wang
2021-06-04  7:06 ` Kefeng Wang
2021-06-04  7:06 ` Kefeng Wang
2021-06-04  7:06 ` Kefeng Wang
2021-06-04  7:06 ` Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 01/15] mm: add setup_initial_init_mm() helper Kefeng Wang
2021-06-04  7:06   ` [OpenRISC] " Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-06 21:31   ` Mike Rapoport
2021-06-06 21:31     ` [OpenRISC] " Mike Rapoport
2021-06-06 21:31     ` Mike Rapoport
2021-06-06 21:31     ` Mike Rapoport
2021-06-06 21:31     ` Mike Rapoport
2021-06-06 21:31     ` Mike Rapoport
2021-06-07  1:50     ` Kefeng Wang
2021-06-07  1:50       ` [OpenRISC] " Kefeng Wang
2021-06-07  1:50       ` Kefeng Wang
2021-06-07  1:50       ` Kefeng Wang
2021-06-07  1:50       ` Kefeng Wang
2021-06-07  1:50       ` Kefeng Wang
2021-06-07  2:36     ` [PATCH v3] " Kefeng Wang
2021-06-07  2:36       ` [OpenRISC] " Kefeng Wang
2021-06-07  2:36       ` Kefeng Wang
2021-06-07  2:36       ` Kefeng Wang
2021-06-07  2:36       ` Kefeng Wang
2021-06-07  2:36       ` Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 02/15] arc: convert to setup_initial_init_mm() Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04 14:03   ` Vineet Gupta
2021-06-04 14:03     ` Vineet Gupta
2021-06-04 14:03     ` Vineet Gupta
2021-06-04  7:06 ` [PATCH v2 03/15] arm: " Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-07  9:25   ` Russell King (Oracle)
2021-06-07  9:25     ` Russell King (Oracle)
2021-06-04  7:06 ` [PATCH v2 04/15] arm64: " Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04  9:19   ` Catalin Marinas
2021-06-04  9:19     ` Catalin Marinas
2021-06-04  7:06 ` [PATCH v2 05/15] csky: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 06/15] h8300: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 07/15] m68k: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 08/15] nds32: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 09/15] nios2: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 10/15] openrisc: " Kefeng Wang
2021-06-04  7:06   ` [OpenRISC] " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 11/15] powerpc: " Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 12/15] riscv: " Kefeng Wang
2021-06-04  7:06   ` Kefeng Wang
2021-06-12  3:55   ` Palmer Dabbelt
2021-06-12  3:55     ` Palmer Dabbelt
2021-06-04  7:06 ` [PATCH v2 13/15] s390: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 14/15] sh: " Kefeng Wang
2021-06-04  7:06 ` [PATCH v2 15/15] x86: " Kefeng Wang
2021-06-08  0:26   ` Andrew Morton
2021-06-08  1:39     ` Kefeng Wang
2021-06-06 21:29 ` [PATCH v2 00/15] init_mm: cleanup ARCH's text/data/brk setup code Mike Rapoport
2021-06-06 21:29   ` [OpenRISC] " Mike Rapoport
2021-06-06 21:29   ` Mike Rapoport
2021-06-06 21:29   ` Mike Rapoport
2021-06-06 21:29   ` Mike Rapoport
2021-06-06 21:29   ` Mike Rapoport
2021-06-07  0:55   ` Kefeng Wang
2021-06-07  0:55     ` [OpenRISC] " Kefeng Wang
2021-06-07  0:55     ` Kefeng Wang
2021-06-07  0:55     ` Kefeng Wang
2021-06-07  0:55     ` Kefeng Wang
2021-06-07  0:55     ` Kefeng Wang
2021-06-07  5:48     ` Christophe Leroy
2021-06-07  5:48       ` [OpenRISC] " Christophe Leroy
2021-06-07  5:48       ` Christophe Leroy
2021-06-07  5:48       ` Christophe Leroy
2021-06-07  5:48       ` Christophe Leroy
2021-06-07  8:30       ` Kefeng Wang
2021-06-07  8:30         ` [OpenRISC] " Kefeng Wang
2021-06-07  8:30         ` Kefeng Wang
2021-06-07  8:30         ` Kefeng Wang
2021-06-07  8:30         ` Kefeng Wang
2021-06-07  8:30         ` Kefeng Wang
2021-06-07  9:31       ` Russell King (Oracle)
2021-06-07  9:31         ` [OpenRISC] " Russell King
2021-06-07  9:31         ` Russell King (Oracle)
2021-06-07  9:31         ` Russell King (Oracle)
2021-06-07  9:31         ` Russell King (Oracle)
2021-06-07  9:31         ` Russell King (Oracle)

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.