From: Yinghai Lu <yinghai@kernel.org>
To: Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>,
"H. Peter Anvin" <hpa@zytor.com>,
Andrew Morton <akpm@linux-foundation.org>
Cc: David Miller <davem@davemloft.net>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
Johannes Weiner <hannes@cmpxchg.org>,
linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org,
Yinghai Lu <yinghai@kernel.org>
Subject: [PATCH 03/35] lmb: Add ARCH_DISCARD_LMB to put lmb code to .init
Date: Thu, 13 May 2010 17:19:24 -0700 [thread overview]
Message-ID: <1273796396-29649-4-git-send-email-yinghai@kernel.org> (raw)
In-Reply-To: <1273796396-29649-1-git-send-email-yinghai@kernel.org>
So those lmb bits could be released after kernel is booted up.
Arch code could define ARCH_DISCARD_LMB in asm/lmb.h,
__init_lmb will become __init, __initdata_lmb will becom __initdata
x86 code will use that.
-v2: use ARCH_DISCARD_LMB according to Michael Ellerman
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
---
include/linux/lmb.h | 8 ++++++++
lib/lmb.c | 46 +++++++++++++++++++++++-----------------------
2 files changed, 31 insertions(+), 23 deletions(-)
diff --git a/include/linux/lmb.h b/include/linux/lmb.h
index 2b87641..0b073a3 100644
--- a/include/linux/lmb.h
+++ b/include/linux/lmb.h
@@ -145,6 +145,14 @@ static inline unsigned long lmb_region_pages(const struct lmb_region *reg)
region++)
+#ifdef ARCH_DISCARD_LMB
+#define __init_lmb __init
+#define __initdata_lmb __initdata
+#else
+#define __init_lmb
+#define __initdata_lmb
+#endif
+
#endif /* CONFIG_HAVE_LMB */
#endif /* __KERNEL__ */
diff --git a/lib/lmb.c b/lib/lmb.c
index fddd72c..6d49a17 100644
--- a/lib/lmb.c
+++ b/lib/lmb.c
@@ -20,11 +20,11 @@
#include <linux/seq_file.h>
#include <linux/lmb.h>
-struct lmb lmb;
+struct lmb lmb __initdata_lmb;
-int lmb_debug;
-static struct lmb_region lmb_memory_init_regions[INIT_LMB_REGIONS + 1];
-struct lmb_region lmb_reserved_init_regions[INIT_LMB_REGIONS + 1];
+int lmb_debug __initdata_lmb;
+static struct lmb_region lmb_memory_init_regions[INIT_LMB_REGIONS + 1] __initdata_lmb;
+struct lmb_region lmb_reserved_init_regions[INIT_LMB_REGIONS + 1] __initdata_lmb;
/* inline so we don't get a warning when pr_debug is compiled out */
static inline const char *lmb_type_name(struct lmb_type *type)
@@ -41,23 +41,23 @@ static inline const char *lmb_type_name(struct lmb_type *type)
* Address comparison utilities
*/
-static phys_addr_t lmb_align_down(phys_addr_t addr, phys_addr_t size)
+static phys_addr_t __init_lmb lmb_align_down(phys_addr_t addr, phys_addr_t size)
{
return addr & ~(size - 1);
}
-static phys_addr_t lmb_align_up(phys_addr_t addr, phys_addr_t size)
+static phys_addr_t __init_lmb lmb_align_up(phys_addr_t addr, phys_addr_t size)
{
return (addr + (size - 1)) & ~(size - 1);
}
-static unsigned long lmb_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
+static unsigned long __init_lmb lmb_addrs_overlap(phys_addr_t base1, phys_addr_t size1,
phys_addr_t base2, phys_addr_t size2)
{
return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
}
-static long lmb_addrs_adjacent(phys_addr_t base1, phys_addr_t size1,
+static long __init_lmb lmb_addrs_adjacent(phys_addr_t base1, phys_addr_t size1,
phys_addr_t base2, phys_addr_t size2)
{
if (base2 == base1 + size1)
@@ -68,7 +68,7 @@ static long lmb_addrs_adjacent(phys_addr_t base1, phys_addr_t size1,
return 0;
}
-static long lmb_regions_adjacent(struct lmb_type *type,
+static long __init_lmb lmb_regions_adjacent(struct lmb_type *type,
unsigned long r1, unsigned long r2)
{
phys_addr_t base1 = type->regions[r1].base;
@@ -79,7 +79,7 @@ static long lmb_regions_adjacent(struct lmb_type *type,
return lmb_addrs_adjacent(base1, size1, base2, size2);
}
-long lmb_overlaps_region(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
+long __init_lmb lmb_overlaps_region(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
{
unsigned long i;
@@ -155,7 +155,7 @@ static phys_addr_t __init lmb_find_base(phys_addr_t size, phys_addr_t align,
return LMB_ERROR;
}
-static void lmb_remove_region(struct lmb_type *type, unsigned long r)
+static void __init_lmb lmb_remove_region(struct lmb_type *type, unsigned long r)
{
unsigned long i;
@@ -167,14 +167,14 @@ static void lmb_remove_region(struct lmb_type *type, unsigned long r)
}
/* Assumption: base addr of region 1 < base addr of region 2 */
-static void lmb_coalesce_regions(struct lmb_type *type,
+static void __init_lmb lmb_coalesce_regions(struct lmb_type *type,
unsigned long r1, unsigned long r2)
{
type->regions[r1].size += type->regions[r2].size;
lmb_remove_region(type, r2);
}
-static int lmb_double_array(struct lmb_type *type)
+static int __init_lmb lmb_double_array(struct lmb_type *type)
{
struct lmb_region *new_array, *old_array;
phys_addr_t old_size, new_size, addr;
@@ -240,13 +240,13 @@ static int lmb_double_array(struct lmb_type *type)
return 0;
}
-extern int __weak lmb_memory_can_coalesce(phys_addr_t addr1, phys_addr_t size1,
+extern int __init_lmb __weak lmb_memory_can_coalesce(phys_addr_t addr1, phys_addr_t size1,
phys_addr_t addr2, phys_addr_t size2)
{
return 1;
}
-long lmb_add_region(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
+long __init_lmb lmb_add_region(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
{
unsigned long coalesced = 0;
long adjacent, i;
@@ -333,13 +333,13 @@ long lmb_add_region(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
return 0;
}
-long lmb_add(phys_addr_t base, phys_addr_t size)
+long __init_lmb lmb_add(phys_addr_t base, phys_addr_t size)
{
return lmb_add_region(&lmb.memory, base, size);
}
-static long __lmb_remove(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
+static long __init_lmb __lmb_remove(struct lmb_type *type, phys_addr_t base, phys_addr_t size)
{
phys_addr_t rgnbegin, rgnend;
phys_addr_t end = base + size;
@@ -387,7 +387,7 @@ static long __lmb_remove(struct lmb_type *type, phys_addr_t base, phys_addr_t si
return lmb_add_region(type, end, rgnend - end);
}
-long lmb_remove(phys_addr_t base, phys_addr_t size)
+long __init_lmb lmb_remove(phys_addr_t base, phys_addr_t size)
{
return __lmb_remove(&lmb.memory, base, size);
}
@@ -544,7 +544,7 @@ phys_addr_t __init lmb_phys_mem_size(void)
return lmb.memory_size;
}
-phys_addr_t lmb_end_of_DRAM(void)
+phys_addr_t __init_lmb lmb_end_of_DRAM(void)
{
int idx = lmb.memory.cnt - 1;
@@ -605,7 +605,7 @@ int __init lmb_is_reserved(phys_addr_t addr)
return 0;
}
-int lmb_is_region_reserved(phys_addr_t base, phys_addr_t size)
+int __init_lmb lmb_is_region_reserved(phys_addr_t base, phys_addr_t size)
{
return lmb_overlaps_region(&lmb.reserved, base, size);
}
@@ -616,7 +616,7 @@ void __init lmb_set_current_limit(phys_addr_t limit)
lmb.current_limit = limit;
}
-static void lmb_dump(struct lmb_type *region, char *name)
+static void __init_lmb lmb_dump(struct lmb_type *region, char *name)
{
unsigned long long base, size;
int i;
@@ -632,7 +632,7 @@ static void lmb_dump(struct lmb_type *region, char *name)
}
}
-void lmb_dump_all(void)
+void __init_lmb lmb_dump_all(void)
{
if (!lmb_debug)
return;
@@ -695,7 +695,7 @@ static int __init early_lmb(char *p)
}
early_param("lmb", early_lmb);
-#ifdef CONFIG_DEBUG_FS
+#if defined(CONFIG_DEBUG_FS) && !defined(ARCH_DISCARD_LMB)
static int lmb_debug_show(struct seq_file *m, void *private)
{
--
1.6.4.2
next prev parent reply other threads:[~2010-05-14 0:19 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-14 0:19 [PATCH -v16 00/35] Use lmb with x86 Yinghai Lu
2010-05-14 0:19 ` [PATCH 01/35] lmb: prepare x86 to use lmb to replace early_res Yinghai Lu
2010-05-14 2:12 ` Benjamin Herrenschmidt
2010-05-14 6:19 ` Yinghai
2010-05-14 8:09 ` Benjamin Herrenschmidt
2010-05-14 16:23 ` Yinghai Lu
2010-05-17 18:03 ` H. Peter Anvin
2010-05-17 22:02 ` Benjamin Herrenschmidt
2010-05-17 22:12 ` H. Peter Anvin
2010-05-14 7:03 ` Yinghai
2010-05-14 0:19 ` [PATCH 02/35] lmb: Prepare to include linux/lmb.h in core file Yinghai Lu
2010-05-14 0:19 ` Yinghai Lu [this message]
2010-05-14 2:14 ` [PATCH 03/35] lmb: Add ARCH_DISCARD_LMB to put lmb code to .init Benjamin Herrenschmidt
2010-05-14 6:21 ` Yinghai
2010-05-14 8:10 ` Benjamin Herrenschmidt
2010-05-14 16:24 ` Yinghai Lu
2010-05-14 0:19 ` [PATCH 04/35] lmb: Add lmb_find_area() Yinghai Lu
2010-05-14 2:16 ` Benjamin Herrenschmidt
2010-05-14 6:25 ` Yinghai
2010-05-14 8:12 ` Benjamin Herrenschmidt
2010-05-14 16:28 ` Yinghai Lu
2010-05-14 0:19 ` [PATCH 05/35] x86, lmb: Add lmb_find_area_size() Yinghai Lu
2010-05-14 2:20 ` Benjamin Herrenschmidt
2010-05-14 6:28 ` Yinghai
2010-05-14 8:13 ` Benjamin Herrenschmidt
2010-05-14 16:33 ` Yinghai Lu
2010-05-14 22:20 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 06/35] bootmem, x86: Add weak version of reserve_bootmem_generic Yinghai Lu
2010-05-14 0:19 ` [PATCH 07/35] x86, lmb: Add lmb_to_bootmem() Yinghai Lu
2010-05-14 0:19 ` [PATCH 08/35] x86,lmb: Add lmb_reserve_area/lmb_free_area Yinghai Lu
2010-05-14 2:26 ` Benjamin Herrenschmidt
2010-05-14 6:30 ` Yinghai
2010-05-14 8:15 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 09/35] x86, lmb: Add get_free_all_memory_range() Yinghai Lu
2010-05-14 0:19 ` [PATCH 10/35] x86, lmb: Add lmb_register_active_regions() and lmb_hole_size() Yinghai Lu
2010-05-14 0:19 ` [PATCH 11/35] lmb: Add find_memory_core_early() Yinghai Lu
2010-05-14 2:29 ` Benjamin Herrenschmidt
2010-05-14 6:34 ` Yinghai
2010-05-14 8:16 ` Benjamin Herrenschmidt
2010-05-14 2:30 ` Benjamin Herrenschmidt
2010-05-14 6:39 ` Yinghai
2010-05-14 8:19 ` Benjamin Herrenschmidt
2010-05-14 8:30 ` David Miller
2010-05-14 16:44 ` Yinghai Lu
2010-05-14 22:34 ` Benjamin Herrenschmidt
2010-05-14 23:51 ` lmb type features Yinghai
2010-05-17 0:46 ` Benjamin Herrenschmidt
2010-05-17 6:06 ` Yinghai
2010-05-14 0:19 ` [PATCH 12/35] x86, lmb: Add lmb_find_area_node() Yinghai Lu
2010-05-14 0:19 ` [PATCH 13/35] x86, lmb: Add lmb_free_memory_size() Yinghai Lu
2010-05-14 2:31 ` Benjamin Herrenschmidt
2010-05-14 6:42 ` Yinghai
2010-05-14 8:21 ` Benjamin Herrenschmidt
2010-05-14 16:37 ` Yinghai Lu
2010-05-14 22:20 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 14/35] x86, lmb: Add lmb_memory_size() Yinghai Lu
2010-05-14 2:31 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 15/35] x86, lmb: Add lmb_reserve_area_overlap_ok() Yinghai Lu
2010-05-14 2:32 ` Benjamin Herrenschmidt
2010-05-14 6:44 ` Yinghai
2010-05-14 8:30 ` Benjamin Herrenschmidt
2010-05-14 16:40 ` Yinghai Lu
2010-05-14 22:30 ` Benjamin Herrenschmidt
2010-05-15 7:32 ` Ingo Molnar
2010-05-17 0:39 ` Benjamin Herrenschmidt
2010-05-17 6:11 ` Yinghai
2010-05-17 6:40 ` H. Peter Anvin
2010-05-17 7:24 ` Benjamin Herrenschmidt
2010-05-17 17:18 ` Yinghai
2010-05-17 18:53 ` H. Peter Anvin
2010-05-17 22:01 ` Benjamin Herrenschmidt
2010-05-17 22:19 ` Yinghai
2010-05-17 22:26 ` H. Peter Anvin
[not found] ` <4C09A9EA.6060005@oracle.com>
[not found] ` <1275702466.1931.1425.camel@pasglop>
[not found] ` <4C16C928.2000406@kernel.org>
2010-06-15 6:55 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 16/35] x86, lmb: Use lmb_debug to control debug message print out Yinghai Lu
2010-05-14 0:19 ` [PATCH 17/35] x86, lmb: Add x86 version of __lmb_find_area() Yinghai Lu
2010-05-14 2:34 ` Benjamin Herrenschmidt
2010-05-14 6:47 ` Yinghai
2010-05-14 8:31 ` Benjamin Herrenschmidt
2010-05-14 16:41 ` Yinghai Lu
2010-05-14 0:19 ` [PATCH 18/35] x86: Use lmb to replace early_res Yinghai Lu
2010-05-14 0:19 ` [PATCH 19/35] x86: Replace e820_/_early string with lmb_ Yinghai Lu
2010-05-14 0:19 ` [PATCH 20/35] x86: Remove not used early_res code Yinghai Lu
2010-05-14 0:19 ` [PATCH 21/35] x86, lmb: Use lmb_memory_size()/lmb_free_memory_size() to get correct dma_reserve Yinghai Lu
2010-05-14 0:19 ` [PATCH 22/35] bootmem: Add nobootmem.c to reduce the #ifdef Yinghai Lu
2010-05-14 0:19 ` [PATCH 23/35] mm: move contig_page_data define to bootmem.c/nobootmem.c Yinghai Lu
2010-05-14 0:19 ` [PATCH 24/35] lmb: Move __alloc_memory_core_early() to nobootmem.c Yinghai Lu
2010-05-14 2:36 ` Benjamin Herrenschmidt
2010-05-14 0:19 ` [PATCH 25/35] x86: Have nobootmem version setup_bootmem_allocator() Yinghai Lu
2010-05-14 0:19 ` [PATCH 26/35] x86: Put 64 bit numa node memmap above 16M Yinghai Lu
2010-05-14 0:19 ` [PATCH 27/35] swiotlb: Use page alignment for early buffer allocation Yinghai Lu
2010-05-14 0:19 ` [PATCH 28/35] x86: Add sanitize_e820_map() Yinghai Lu
2010-05-14 0:19 ` [PATCH 29/35] x86: Change e820_saved to __initdata Yinghai Lu
2010-05-14 0:19 ` [PATCH 30/35] x86: Align e820 ram range to page Yinghai Lu
2010-05-14 0:19 ` [PATCH 31/35] x86: Use wake_system_ram_range() instead of e820_any_mapped() in agp path Yinghai Lu
2010-05-14 0:19 ` [PATCH 32/35] x86: Add get_centaur_ram_top() Yinghai Lu
2010-05-14 0:19 ` [PATCH 33/35] x86: Change e820_any_mapped() to __init Yinghai Lu
2010-05-14 0:19 ` [PATCH 34/35] x86: Use walk_system_ream_range() instead of referring e820.map directly for tboot Yinghai Lu
2010-05-14 0:19 ` [PATCH 35/35] x86: make e820 to be __initdata Yinghai Lu
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=1273796396-29649-4-git-send-email-yinghai@kernel.org \
--to=yinghai@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=benh@kernel.crashing.org \
--cc=davem@davemloft.net \
--cc=hannes@cmpxchg.org \
--cc=hpa@zytor.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.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.