All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kefeng Wang <wangkefeng.wang@huawei.com>
To: Andrew Morton <akpm@linux-foundation.org>,
	<linux-kernel@vger.kernel.org>
Cc: <linux-mm@kvack.org>, Kefeng Wang <wangkefeng.wang@huawei.com>
Subject: [PATCH v3 resend 00/15] init_mm: cleanup ARCH's text/data/brk setup code
Date: Tue, 8 Jun 2021 16:34:03 +0800	[thread overview]
Message-ID: <20210608083418.137226-1-wangkefeng.wang@huawei.com> (raw)

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

v3:
- resend all and fix x86 warning
- make helper declaration in mm.h, implemention in init-mm.c, suggested
  by Mike
- collect ACKs

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

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.h                 | 3 +++
 mm/init-mm.c                       | 9 +++++++++
 17 files changed, 27 insertions(+), 60 deletions(-)

-- 
2.26.2


             reply	other threads:[~2021-06-08  8:25 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-08  8:34 Kefeng Wang [this message]
2021-06-08  8:34 ` [PATCH v3 resend 01/15] mm: add setup_initial_init_mm() helper Kefeng Wang
2021-06-08  8:34   ` [OpenRISC] " Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08 14:53   ` Souptick Joarder
2021-06-08 14:53     ` [OpenRISC] " Souptick Joarder
2021-06-08 14:53     ` Souptick Joarder
2021-06-08 14:53     ` Souptick Joarder
2021-06-08 14:53     ` Souptick Joarder
2021-06-08 14:53     ` Souptick Joarder
2021-06-08 14:53     ` Souptick Joarder
2021-06-08 14:57     ` Christophe Leroy
2021-06-08 14:57       ` [OpenRISC] " Christophe Leroy
2021-06-08 14:57       ` Christophe Leroy
2021-06-08 14:57       ` Christophe Leroy
2021-06-08 14:57       ` Christophe Leroy
2021-06-08 15:14       ` Souptick Joarder
2021-06-08 15:14         ` [OpenRISC] " Souptick Joarder
2021-06-08 15:14         ` Souptick Joarder
2021-06-08 15:14         ` Souptick Joarder
2021-06-08 15:14         ` Souptick Joarder
2021-06-08 15:14         ` Souptick Joarder
2021-06-08 15:14         ` Souptick Joarder
2021-06-08  8:34 ` [PATCH v3 resend 02/15] arc: convert to setup_initial_init_mm() Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 03/15] arm: " Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 04/15] arm64: " Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 05/15] csky: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 06/15] h8300: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 07/15] m68k: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 08/15] nds32: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 09/15] nios2: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 10/15] openrisc: " Kefeng Wang
2021-06-08  8:34   ` [OpenRISC] " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 11/15] powerpc: " Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08 14:36   ` Souptick Joarder
2021-06-08 14:36     ` Souptick Joarder
2021-06-08 14:36     ` Souptick Joarder
2021-06-08 14:54     ` Christophe Leroy
2021-06-08 14:54       ` Christophe Leroy
2021-06-08 15:11       ` Souptick Joarder
2021-06-08 15:11         ` Souptick Joarder
2021-06-08 15:11         ` Souptick Joarder
2021-06-08  8:34 ` [PATCH v3 resend 12/15] riscv: " Kefeng Wang
2021-06-08  8:34   ` Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 13/15] s390: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 14/15] sh: " Kefeng Wang
2021-06-08  8:34 ` [PATCH v3 resend 15/15] x86: " Kefeng Wang

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=20210608083418.137226-1-wangkefeng.wang@huawei.com \
    --to=wangkefeng.wang@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.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.