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>,
	"Russell King" <linux@armlinux.org.uk>,
	<linux-arm-kernel@lists.infradead.org>
Subject: [PATCH v2 03/15] arm: convert to setup_initial_init_mm()
Date: Fri, 4 Jun 2021 15:06:21 +0800	[thread overview]
Message-ID: <20210604070633.32363-4-wangkefeng.wang@huawei.com> (raw)
In-Reply-To: <20210604070633.32363-1-wangkefeng.wang@huawei.com>

Use setup_initial_init_mm() helper to simplify code.

Cc: Russell King <linux@armlinux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
---
 arch/arm/kernel/setup.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index 1a5edf562e85..81de1bf07ba6 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -1114,10 +1114,7 @@ void __init setup_arch(char **cmdline_p)
 	if (mdesc->reboot_mode != REBOOT_HARD)
 		reboot_mode = mdesc->reboot_mode;
 
-	init_mm.start_code = (unsigned long) _text;
-	init_mm.end_code   = (unsigned long) _etext;
-	init_mm.end_data   = (unsigned long) _edata;
-	init_mm.brk	   = (unsigned long) _end;
+	setup_initial_init_mm(_text, _etext, _edata, _end);
 
 	/* populate cmd_line too for later use, preserving boot_command_line */
 	strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE);
-- 
2.26.2


WARNING: multiple messages have this Message-ID (diff)
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>,
	"Russell King" <linux@armlinux.org.uk>,
	<linux-arm-kernel@lists.infradead.org>
Subject: [PATCH v2 03/15] arm: convert to setup_initial_init_mm()
Date: Fri, 4 Jun 2021 15:06:21 +0800	[thread overview]
Message-ID: <20210604070633.32363-4-wangkefeng.wang@huawei.com> (raw)
In-Reply-To: <20210604070633.32363-1-wangkefeng.wang@huawei.com>

Use setup_initial_init_mm() helper to simplify code.

Cc: Russell King <linux@armlinux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
---
 arch/arm/kernel/setup.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index 1a5edf562e85..81de1bf07ba6 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -1114,10 +1114,7 @@ void __init setup_arch(char **cmdline_p)
 	if (mdesc->reboot_mode != REBOOT_HARD)
 		reboot_mode = mdesc->reboot_mode;
 
-	init_mm.start_code = (unsigned long) _text;
-	init_mm.end_code   = (unsigned long) _etext;
-	init_mm.end_data   = (unsigned long) _edata;
-	init_mm.brk	   = (unsigned long) _end;
+	setup_initial_init_mm(_text, _etext, _edata, _end);
 
 	/* populate cmd_line too for later use, preserving boot_command_line */
 	strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE);
-- 
2.26.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2021-06-04  6:58 UTC|newest]

Thread overview: 90+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Kefeng Wang [this message]
2021-06-04  7:06   ` [PATCH v2 03/15] arm: " 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)

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=20210604070633.32363-4-wangkefeng.wang@huawei.com \
    --to=wangkefeng.wang@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux@armlinux.org.uk \
    /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.