All of lore.kernel.org
 help / color / mirror / Atom feed
From: Logan Gunthorpe <logang@deltatee.com>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 5/6] sh: mm: make use of new memblocks_present() helper
Date: Mon, 15 Oct 2018 17:57:01 +0000	[thread overview]
Message-ID: <20181015175702.9036-6-logang@deltatee.com> (raw)
In-Reply-To: <20181015175702.9036-1-logang@deltatee.com>

Cleanup the open coded for_each_memblock() loop that is equivalent
to the new memblocks_present() helper.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rob Herring <robh@kernel.org>
---
 arch/sh/mm/init.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c
index 7713c084d040..f601f96408ee 100644
--- a/arch/sh/mm/init.c
+++ b/arch/sh/mm/init.c
@@ -235,12 +235,7 @@ static void __init do_init_bootmem(void)
 
 	plat_mem_setup();
 
-	for_each_memblock(memory, reg) {
-		int nid = memblock_get_region_node(reg);
-
-		memory_present(nid, memblock_region_memory_base_pfn(reg),
-			memblock_region_memory_end_pfn(reg));
-	}
+	memblocks_present();
 	sparse_init();
 }
 
-- 
2.19.0

WARNING: multiple messages have this Message-ID (diff)
From: Logan Gunthorpe <logang@deltatee.com>
To: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-riscv@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org
Cc: Stephen Bates <sbates@raithlin.com>,
	Palmer Dabbelt <palmer@sifive.com>,
	Albert Ou <aou@eecs.berkeley.edu>, Christoph Hellwig <hch@lst.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	Arnd Bergmann <arnd@arndb.de>,
	Logan Gunthorpe <logang@deltatee.com>,
	Yoshinori Sato <ysato@users.sourceforge.jp>,
	Rich Felker <dalias@libc.org>,
	Dan Williams <dan.j.williams@intel.com>,
	Rob Herring <robh@kernel.org>
Subject: [PATCH v2 5/6] sh: mm: make use of new memblocks_present() helper
Date: Mon, 15 Oct 2018 11:57:01 -0600	[thread overview]
Message-ID: <20181015175702.9036-6-logang@deltatee.com> (raw)
In-Reply-To: <20181015175702.9036-1-logang@deltatee.com>

Cleanup the open coded for_each_memblock() loop that is equivalent
to the new memblocks_present() helper.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rob Herring <robh@kernel.org>
---
 arch/sh/mm/init.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c
index 7713c084d040..f601f96408ee 100644
--- a/arch/sh/mm/init.c
+++ b/arch/sh/mm/init.c
@@ -235,12 +235,7 @@ static void __init do_init_bootmem(void)
 
 	plat_mem_setup();
 
-	for_each_memblock(memory, reg) {
-		int nid = memblock_get_region_node(reg);
-
-		memory_present(nid, memblock_region_memory_base_pfn(reg),
-			memblock_region_memory_end_pfn(reg));
-	}
+	memblocks_present();
 	sparse_init();
 }
 
-- 
2.19.0


WARNING: multiple messages have this Message-ID (diff)
From: logang@deltatee.com (Logan Gunthorpe)
To: linux-riscv@lists.infradead.org
Subject: [PATCH v2 5/6] sh: mm: make use of new memblocks_present() helper
Date: Mon, 15 Oct 2018 11:57:01 -0600	[thread overview]
Message-ID: <20181015175702.9036-6-logang@deltatee.com> (raw)
In-Reply-To: <20181015175702.9036-1-logang@deltatee.com>

Cleanup the open coded for_each_memblock() loop that is equivalent
to the new memblocks_present() helper.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rob Herring <robh@kernel.org>
---
 arch/sh/mm/init.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c
index 7713c084d040..f601f96408ee 100644
--- a/arch/sh/mm/init.c
+++ b/arch/sh/mm/init.c
@@ -235,12 +235,7 @@ static void __init do_init_bootmem(void)
 
 	plat_mem_setup();
 
-	for_each_memblock(memory, reg) {
-		int nid = memblock_get_region_node(reg);
-
-		memory_present(nid, memblock_region_memory_base_pfn(reg),
-			memblock_region_memory_end_pfn(reg));
-	}
+	memblocks_present();
 	sparse_init();
 }
 
-- 
2.19.0

WARNING: multiple messages have this Message-ID (diff)
From: Logan Gunthorpe <logang@deltatee.com>
To: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-riscv@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org
Cc: Rob Herring <robh@kernel.org>, Albert Ou <aou@eecs.berkeley.edu>,
	Yoshinori Sato <ysato@users.sourceforge.jp>,
	Arnd Bergmann <arnd@arndb.de>, Palmer Dabbelt <palmer@sifive.com>,
	Dan Williams <dan.j.williams@intel.com>,
	Stephen Bates <sbates@raithlin.com>,
	Rich Felker <dalias@libc.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Logan Gunthorpe <logang@deltatee.com>,
	Christoph Hellwig <hch@lst.de>
Subject: [PATCH v2 5/6] sh: mm: make use of new memblocks_present() helper
Date: Mon, 15 Oct 2018 11:57:01 -0600	[thread overview]
Message-ID: <20181015175702.9036-6-logang@deltatee.com> (raw)
Message-ID: <20181015175701.GJ_THgEdh3W4iqr2D9zNkBi6g4qcKBTslUBEGRP4TmE@z> (raw)
In-Reply-To: <20181015175702.9036-1-logang@deltatee.com>

Cleanup the open coded for_each_memblock() loop that is equivalent
to the new memblocks_present() helper.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rob Herring <robh@kernel.org>
---
 arch/sh/mm/init.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c
index 7713c084d040..f601f96408ee 100644
--- a/arch/sh/mm/init.c
+++ b/arch/sh/mm/init.c
@@ -235,12 +235,7 @@ static void __init do_init_bootmem(void)
 
 	plat_mem_setup();
 
-	for_each_memblock(memory, reg) {
-		int nid = memblock_get_region_node(reg);
-
-		memory_present(nid, memblock_region_memory_base_pfn(reg),
-			memblock_region_memory_end_pfn(reg));
-	}
+	memblocks_present();
 	sparse_init();
 }
 
-- 
2.19.0


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

WARNING: multiple messages have this Message-ID (diff)
From: logang@deltatee.com (Logan Gunthorpe)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 5/6] sh: mm: make use of new memblocks_present() helper
Date: Mon, 15 Oct 2018 11:57:01 -0600	[thread overview]
Message-ID: <20181015175702.9036-6-logang@deltatee.com> (raw)
In-Reply-To: <20181015175702.9036-1-logang@deltatee.com>

Cleanup the open coded for_each_memblock() loop that is equivalent
to the new memblocks_present() helper.

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rob Herring <robh@kernel.org>
---
 arch/sh/mm/init.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c
index 7713c084d040..f601f96408ee 100644
--- a/arch/sh/mm/init.c
+++ b/arch/sh/mm/init.c
@@ -235,12 +235,7 @@ static void __init do_init_bootmem(void)
 
 	plat_mem_setup();
 
-	for_each_memblock(memory, reg) {
-		int nid = memblock_get_region_node(reg);
-
-		memory_present(nid, memblock_region_memory_base_pfn(reg),
-			memblock_region_memory_end_pfn(reg));
-	}
+	memblocks_present();
 	sparse_init();
 }
 
-- 
2.19.0

  parent reply	other threads:[~2018-10-15 17:57 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-15 17:56 [PATCH v2 0/6] sparsemem support for RISC-V Logan Gunthorpe
2018-10-15 17:56 ` Logan Gunthorpe
2018-10-15 17:56 ` Logan Gunthorpe
2018-10-15 17:56 ` Logan Gunthorpe
2018-10-15 17:56 ` Logan Gunthorpe
2018-10-15 17:56 ` [PATCH v2 1/6] mm: Introduce common STRUCT_PAGE_MAX_SHIFT define Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-29 17:53   ` Will Deacon
2018-10-29 17:53     ` Will Deacon
2018-10-29 17:53     ` Will Deacon
2018-10-29 17:53     ` Will Deacon
2018-10-29 17:53     ` Will Deacon
2018-10-15 17:56 ` [PATCH v2 2/6] mm/sparse: add common helper to mark all memblocks present Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56 ` [PATCH v2 3/6] ARM: mm: make use of new memblocks_present() helper Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:56   ` Logan Gunthorpe
2018-10-15 17:57 ` [PATCH v2 4/6] arm64: " Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57 ` Logan Gunthorpe [this message]
2018-10-15 17:57   ` [PATCH v2 5/6] sh: " Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57 ` [PATCH v2 6/6] RISC-V: Implement sparsemem Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-10-15 17:57   ` Logan Gunthorpe
2018-12-17 14:59   ` Nick Kossifidis
2018-12-17 14:59     ` Nick Kossifidis
2018-12-17 14:59     ` Nick Kossifidis
2018-12-17 14:59     ` Nick Kossifidis
2018-12-17 16:50     ` Logan Gunthorpe
2018-12-17 16:50       ` Logan Gunthorpe
2018-12-17 16:50       ` Logan Gunthorpe
2018-12-17 16:50       ` Logan Gunthorpe
2018-10-16  0:04 ` [PATCH v2 0/6] sparsemem support for RISC-V Palmer Dabbelt
2018-10-16  0:04   ` Palmer Dabbelt
2018-10-16  0:04   ` Palmer Dabbelt
2018-10-16  0:04   ` Palmer Dabbelt
2018-10-16  0:04   ` Palmer Dabbelt
2018-10-16  0:04   ` Palmer Dabbelt

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=20181015175702.9036-6-logang@deltatee.com \
    --to=logang@deltatee.com \
    --cc=linux-arm-kernel@lists.infradead.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.