2019-05-19 20:08:55 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/arch/x86_64/mm/init.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995 Linus Torvalds
|
2010-07-18 20:27:13 +08:00
|
|
|
* Copyright (C) 2000 Pavel Machek <pavel@ucw.cz>
|
2005-04-17 06:20:36 +08:00
|
|
|
* Copyright (C) 2002,2003 Andi Kleen <ak@suse.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/mman.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/init.h>
|
2008-05-12 21:43:36 +08:00
|
|
|
#include <linux/initrd.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/pagemap.h>
|
2010-08-26 04:39:17 +08:00
|
|
|
#include <linux/memblock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/proc_fs.h>
|
2005-11-06 00:25:53 +08:00
|
|
|
#include <linux/pci.h>
|
[PATCH] x86: tighten kernel image page access rights
On x86-64, kernel memory freed after init can be entirely unmapped instead
of just getting 'poisoned' by overwriting with a debug pattern.
On i386 and x86-64 (under CONFIG_DEBUG_RODATA), kernel text and bug table
can also be write-protected.
Compared to the first version, this one prevents re-creating deleted
mappings in the kernel image range on x86-64, if those got removed
previously. This, together with the original changes, prevents temporarily
having inconsistent mappings when cacheability attributes are being
changed on such pages (e.g. from AGP code). While on i386 such duplicate
mappings don't exist, the same change is done there, too, both for
consistency and because checking pte_present() before using various other
pte_XXX functions is a requirement anyway. At once, i386 code gets
adjusted to use pte_huge() instead of open coding this.
AK: split out cpa() changes
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
2007-05-03 01:27:10 +08:00
|
|
|
#include <linux/pfn.h>
|
2006-06-27 17:53:52 +08:00
|
|
|
#include <linux/poison.h>
|
2006-01-12 05:44:42 +08:00
|
|
|
#include <linux/dma-mapping.h>
|
2011-06-14 08:57:50 +08:00
|
|
|
#include <linux/memory.h>
|
2006-01-17 14:03:41 +08:00
|
|
|
#include <linux/memory_hotplug.h>
|
2016-01-16 08:56:22 +08:00
|
|
|
#include <linux/memremap.h>
|
2007-05-03 01:27:11 +08:00
|
|
|
#include <linux/nmi.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/gfp.h>
|
2013-04-12 07:10:25 +08:00
|
|
|
#include <linux/kcore.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
2008-10-12 21:06:29 +08:00
|
|
|
#include <asm/bios_ebda.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/pgalloc.h>
|
|
|
|
#include <asm/dma.h>
|
|
|
|
#include <asm/fixmap.h>
|
2017-01-27 17:27:10 +08:00
|
|
|
#include <asm/e820/api.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/apic.h>
|
|
|
|
#include <asm/tlb.h>
|
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <asm/proto.h>
|
|
|
|
#include <asm/smp.h>
|
2005-11-06 00:25:53 +08:00
|
|
|
#include <asm/sections.h>
|
2008-01-30 20:30:17 +08:00
|
|
|
#include <asm/kdebug.h>
|
2008-01-30 20:30:17 +08:00
|
|
|
#include <asm/numa.h>
|
2017-05-09 06:58:11 +08:00
|
|
|
#include <asm/set_memory.h>
|
2009-03-05 20:55:08 +08:00
|
|
|
#include <asm/init.h>
|
2015-12-01 00:47:43 +08:00
|
|
|
#include <asm/uv/uv.h>
|
2011-02-18 19:30:30 +08:00
|
|
|
#include <asm/setup.h>
|
x86/ftrace: Have ftrace trampolines turn read-only at the end of system boot up
Booting one of my machines, it triggered the following crash:
Kernel/User page tables isolation: enabled
ftrace: allocating 36577 entries in 143 pages
Starting tracer 'function'
BUG: unable to handle page fault for address: ffffffffa000005c
#PF: supervisor write access in kernel mode
#PF: error_code(0x0003) - permissions violation
PGD 2014067 P4D 2014067 PUD 2015063 PMD 7b253067 PTE 7b252061
Oops: 0003 [#1] PREEMPT SMP PTI
CPU: 0 PID: 0 Comm: swapper Not tainted 5.4.0-test+ #24
Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./To be filled by O.E.M., BIOS SDBLI944.86P 05/08/2007
RIP: 0010:text_poke_early+0x4a/0x58
Code: 34 24 48 89 54 24 08 e8 bf 72 0b 00 48 8b 34 24 48 8b 4c 24 08 84 c0 74 0b 48 89 df f3 a4 48 83 c4 10 5b c3 9c 58 fa 48 89 df <f3> a4 50 9d 48 83 c4 10 5b e9 d6 f9 ff ff
0 41 57 49
RSP: 0000:ffffffff82003d38 EFLAGS: 00010046
RAX: 0000000000000046 RBX: ffffffffa000005c RCX: 0000000000000005
RDX: 0000000000000005 RSI: ffffffff825b9a90 RDI: ffffffffa000005c
RBP: ffffffffa000005c R08: 0000000000000000 R09: ffffffff8206e6e0
R10: ffff88807b01f4c0 R11: ffffffff8176c106 R12: ffffffff8206e6e0
R13: ffffffff824f2440 R14: 0000000000000000 R15: ffffffff8206eac0
FS: 0000000000000000(0000) GS:ffff88807d400000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: ffffffffa000005c CR3: 0000000002012000 CR4: 00000000000006b0
Call Trace:
text_poke_bp+0x27/0x64
? mutex_lock+0x36/0x5d
arch_ftrace_update_trampoline+0x287/0x2d5
? ftrace_replace_code+0x14b/0x160
? ftrace_update_ftrace_func+0x65/0x6c
__register_ftrace_function+0x6d/0x81
ftrace_startup+0x23/0xc1
register_ftrace_function+0x20/0x37
func_set_flag+0x59/0x77
__set_tracer_option.isra.19+0x20/0x3e
trace_set_options+0xd6/0x13e
apply_trace_boot_options+0x44/0x6d
register_tracer+0x19e/0x1ac
early_trace_init+0x21b/0x2c9
start_kernel+0x241/0x518
? load_ucode_intel_bsp+0x21/0x52
secondary_startup_64+0xa4/0xb0
I was able to trigger it on other machines, when I added to the kernel
command line of both "ftrace=function" and "trace_options=func_stack_trace".
The cause is the "ftrace=function" would register the function tracer
and create a trampoline, and it will set it as executable and
read-only. Then the "trace_options=func_stack_trace" would then update
the same trampoline to include the stack tracer version of the function
tracer. But since the trampoline already exists, it updates it with
text_poke_bp(). The problem is that text_poke_bp() called while
system_state == SYSTEM_BOOTING, it will simply do a memcpy() and not
the page mapping, as it would think that the text is still read-write.
But in this case it is not, and we take a fault and crash.
Instead, lets keep the ftrace trampolines read-write during boot up,
and then when the kernel executable text is set to read-only, the
ftrace trampolines get set to read-only as well.
Link: https://lkml.kernel.org/r/20200430202147.4dc6e2de@oasis.local.home
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: stable@vger.kernel.org
Fixes: 768ae4406a5c ("x86/ftrace: Use text_poke()")
Acked-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
2020-05-01 08:21:47 +08:00
|
|
|
#include <asm/ftrace.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-17 11:39:01 +08:00
|
|
|
#include "mm_internal.h"
|
|
|
|
|
2016-05-07 06:01:34 +08:00
|
|
|
#include "ident_map.c"
|
2013-01-25 04:19:48 +08:00
|
|
|
|
2019-04-17 23:41:17 +08:00
|
|
|
#define DEFINE_POPULATE(fname, type1, type2, init) \
|
|
|
|
static inline void fname##_init(struct mm_struct *mm, \
|
|
|
|
type1##_t *arg1, type2##_t *arg2, bool init) \
|
|
|
|
{ \
|
|
|
|
if (init) \
|
|
|
|
fname##_safe(mm, arg1, arg2); \
|
|
|
|
else \
|
|
|
|
fname(mm, arg1, arg2); \
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_POPULATE(p4d_populate, p4d, pud, init)
|
|
|
|
DEFINE_POPULATE(pgd_populate, pgd, p4d, init)
|
|
|
|
DEFINE_POPULATE(pud_populate, pud, pmd, init)
|
|
|
|
DEFINE_POPULATE(pmd_populate_kernel, pmd, pte, init)
|
|
|
|
|
|
|
|
#define DEFINE_ENTRY(type1, type2, init) \
|
|
|
|
static inline void set_##type1##_init(type1##_t *arg1, \
|
|
|
|
type2##_t arg2, bool init) \
|
|
|
|
{ \
|
|
|
|
if (init) \
|
|
|
|
set_##type1##_safe(arg1, arg2); \
|
|
|
|
else \
|
|
|
|
set_##type1(arg1, arg2); \
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_ENTRY(p4d, p4d, init)
|
|
|
|
DEFINE_ENTRY(pud, pud, init)
|
|
|
|
DEFINE_ENTRY(pmd, pmd, init)
|
|
|
|
DEFINE_ENTRY(pte, pte, init)
|
|
|
|
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
|
|
|
|
* physical space so we can cache the place of the first one and move
|
|
|
|
* around without checking the pgd every time.
|
|
|
|
*/
|
|
|
|
|
2018-04-07 04:55:06 +08:00
|
|
|
/* Bits supported by the hardware: */
|
2014-01-08 01:03:06 +08:00
|
|
|
pteval_t __supported_pte_mask __read_mostly = ~0;
|
2018-04-07 04:55:06 +08:00
|
|
|
/* Bits allowed in normal kernel mappings: */
|
|
|
|
pteval_t __default_kernel_pte_mask __read_mostly = ~0;
|
2008-09-05 15:58:28 +08:00
|
|
|
EXPORT_SYMBOL_GPL(__supported_pte_mask);
|
2018-04-07 04:55:06 +08:00
|
|
|
/* Used in PAGE_KERNEL_* macros which are reasonably used out-of-tree: */
|
|
|
|
EXPORT_SYMBOL(__default_kernel_pte_mask);
|
2008-09-05 15:58:28 +08:00
|
|
|
|
|
|
|
int force_personality32;
|
|
|
|
|
2008-09-05 16:23:26 +08:00
|
|
|
/*
|
|
|
|
* noexec32=on|off
|
|
|
|
* Control non executable heap for 32bit processes.
|
|
|
|
* To control the stack too use noexec=off
|
|
|
|
*
|
|
|
|
* on PROT_READ does not imply PROT_EXEC for 32-bit processes (default)
|
|
|
|
* off PROT_READ implies PROT_EXEC
|
|
|
|
*/
|
2008-09-05 15:58:28 +08:00
|
|
|
static int __init nonx32_setup(char *str)
|
|
|
|
{
|
|
|
|
if (!strcmp(str, "on"))
|
|
|
|
force_personality32 &= ~READ_IMPLIES_EXEC;
|
|
|
|
else if (!strcmp(str, "off"))
|
|
|
|
force_personality32 |= READ_IMPLIES_EXEC;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("noexec32=", nonx32_setup);
|
|
|
|
|
2018-02-15 02:25:41 +08:00
|
|
|
static void sync_global_pgds_l5(unsigned long start, unsigned long end)
|
2017-06-06 19:31:29 +08:00
|
|
|
{
|
|
|
|
unsigned long addr;
|
|
|
|
|
|
|
|
for (addr = start; addr <= end; addr = ALIGN(addr + 1, PGDIR_SIZE)) {
|
|
|
|
const pgd_t *pgd_ref = pgd_offset_k(addr);
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
/* Check for overflow */
|
|
|
|
if (addr < start)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (pgd_none(*pgd_ref))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
spin_lock(&pgd_lock);
|
|
|
|
list_for_each_entry(page, &pgd_list, lru) {
|
|
|
|
pgd_t *pgd;
|
|
|
|
spinlock_t *pgt_lock;
|
|
|
|
|
|
|
|
pgd = (pgd_t *)page_address(page) + pgd_index(addr);
|
|
|
|
/* the pgt_lock only for Xen */
|
|
|
|
pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
|
|
|
|
spin_lock(pgt_lock);
|
|
|
|
|
|
|
|
if (!pgd_none(*pgd_ref) && !pgd_none(*pgd))
|
|
|
|
BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
|
|
|
|
|
|
|
|
if (pgd_none(*pgd))
|
|
|
|
set_pgd(pgd, *pgd_ref);
|
|
|
|
|
|
|
|
spin_unlock(pgt_lock);
|
|
|
|
}
|
|
|
|
spin_unlock(&pgd_lock);
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 02:25:41 +08:00
|
|
|
|
|
|
|
static void sync_global_pgds_l4(unsigned long start, unsigned long end)
|
2010-05-19 17:42:14 +08:00
|
|
|
{
|
x86/mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds()
Jeff Moyer reported that on his system with two memory regions 0~64G and
1T~1T+192G, and kernel option "memmap=192G!1024G" added, enabling KASLR
will make the system hang intermittently during boot. While adding 'nokaslr'
won't.
The back trace is:
Oops: 0000 [#1] SMP
RIP: memcpy_erms()
[ .... ]
Call Trace:
pmem_rw_page()
bdev_read_page()
do_mpage_readpage()
mpage_readpages()
blkdev_readpages()
__do_page_cache_readahead()
force_page_cache_readahead()
page_cache_sync_readahead()
generic_file_read_iter()
blkdev_read_iter()
__vfs_read()
vfs_read()
SyS_read()
entry_SYSCALL_64_fastpath()
This crash happens because the for loop count calculation in sync_global_pgds()
is not correct. When a mapping area crosses PGD entries, we should
calculate the starting address of region which next PGD covers and assign
it to next for loop count, but not add PGDIR_SIZE directly. The old
code works right only if the mapping area is an exact multiple of PGDIR_SIZE,
otherwize the end region could be skipped so that it can't be synchronized
to all other processes from kernel PGD init_mm.pgd.
In Jeff's system, emulated pmem area [1024G, 1216G) is smaller than
PGDIR_SIZE. While 'nokaslr' works because PAGE_OFFSET is 1T aligned, it
makes this area be mapped inside one PGD entry. With KASLR enabled,
this area could cross two PGD entries, then the next PGD entry won't
be synced to all other processes. That is why we saw empty PGD.
Fix it.
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jinbum Park <jinb.park7@gmail.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Garnier <thgarnie@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yasuaki Ishimatsu <yasu.isimatu@gmail.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1493864747-8506-1-git-send-email-bhe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-05-04 10:25:47 +08:00
|
|
|
unsigned long addr;
|
2010-10-15 08:04:59 +08:00
|
|
|
|
x86/mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds()
Jeff Moyer reported that on his system with two memory regions 0~64G and
1T~1T+192G, and kernel option "memmap=192G!1024G" added, enabling KASLR
will make the system hang intermittently during boot. While adding 'nokaslr'
won't.
The back trace is:
Oops: 0000 [#1] SMP
RIP: memcpy_erms()
[ .... ]
Call Trace:
pmem_rw_page()
bdev_read_page()
do_mpage_readpage()
mpage_readpages()
blkdev_readpages()
__do_page_cache_readahead()
force_page_cache_readahead()
page_cache_sync_readahead()
generic_file_read_iter()
blkdev_read_iter()
__vfs_read()
vfs_read()
SyS_read()
entry_SYSCALL_64_fastpath()
This crash happens because the for loop count calculation in sync_global_pgds()
is not correct. When a mapping area crosses PGD entries, we should
calculate the starting address of region which next PGD covers and assign
it to next for loop count, but not add PGDIR_SIZE directly. The old
code works right only if the mapping area is an exact multiple of PGDIR_SIZE,
otherwize the end region could be skipped so that it can't be synchronized
to all other processes from kernel PGD init_mm.pgd.
In Jeff's system, emulated pmem area [1024G, 1216G) is smaller than
PGDIR_SIZE. While 'nokaslr' works because PAGE_OFFSET is 1T aligned, it
makes this area be mapped inside one PGD entry. With KASLR enabled,
this area could cross two PGD entries, then the next PGD entry won't
be synced to all other processes. That is why we saw empty PGD.
Fix it.
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jinbum Park <jinb.park7@gmail.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Garnier <thgarnie@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yasuaki Ishimatsu <yasu.isimatu@gmail.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1493864747-8506-1-git-send-email-bhe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-05-04 10:25:47 +08:00
|
|
|
for (addr = start; addr <= end; addr = ALIGN(addr + 1, PGDIR_SIZE)) {
|
|
|
|
pgd_t *pgd_ref = pgd_offset_k(addr);
|
2017-03-18 02:55:15 +08:00
|
|
|
const p4d_t *p4d_ref;
|
2010-10-15 08:04:59 +08:00
|
|
|
struct page *page;
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
/*
|
|
|
|
* With folded p4d, pgd_none() is always false, we need to
|
|
|
|
* handle synchonization on p4d level.
|
|
|
|
*/
|
2018-02-14 19:16:53 +08:00
|
|
|
MAYBE_BUILD_BUG_ON(pgd_none(*pgd_ref));
|
x86/mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds()
Jeff Moyer reported that on his system with two memory regions 0~64G and
1T~1T+192G, and kernel option "memmap=192G!1024G" added, enabling KASLR
will make the system hang intermittently during boot. While adding 'nokaslr'
won't.
The back trace is:
Oops: 0000 [#1] SMP
RIP: memcpy_erms()
[ .... ]
Call Trace:
pmem_rw_page()
bdev_read_page()
do_mpage_readpage()
mpage_readpages()
blkdev_readpages()
__do_page_cache_readahead()
force_page_cache_readahead()
page_cache_sync_readahead()
generic_file_read_iter()
blkdev_read_iter()
__vfs_read()
vfs_read()
SyS_read()
entry_SYSCALL_64_fastpath()
This crash happens because the for loop count calculation in sync_global_pgds()
is not correct. When a mapping area crosses PGD entries, we should
calculate the starting address of region which next PGD covers and assign
it to next for loop count, but not add PGDIR_SIZE directly. The old
code works right only if the mapping area is an exact multiple of PGDIR_SIZE,
otherwize the end region could be skipped so that it can't be synchronized
to all other processes from kernel PGD init_mm.pgd.
In Jeff's system, emulated pmem area [1024G, 1216G) is smaller than
PGDIR_SIZE. While 'nokaslr' works because PAGE_OFFSET is 1T aligned, it
makes this area be mapped inside one PGD entry. With KASLR enabled,
this area could cross two PGD entries, then the next PGD entry won't
be synced to all other processes. That is why we saw empty PGD.
Fix it.
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jinbum Park <jinb.park7@gmail.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Garnier <thgarnie@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yasuaki Ishimatsu <yasu.isimatu@gmail.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1493864747-8506-1-git-send-email-bhe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-05-04 10:25:47 +08:00
|
|
|
p4d_ref = p4d_offset(pgd_ref, addr);
|
2017-03-18 02:55:15 +08:00
|
|
|
|
|
|
|
if (p4d_none(*p4d_ref))
|
2010-10-15 08:04:59 +08:00
|
|
|
continue;
|
|
|
|
|
2011-02-17 07:45:22 +08:00
|
|
|
spin_lock(&pgd_lock);
|
2010-10-15 08:04:59 +08:00
|
|
|
list_for_each_entry(page, &pgd_list, lru) {
|
2012-12-16 04:29:54 +08:00
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2010-09-22 03:01:51 +08:00
|
|
|
spinlock_t *pgt_lock;
|
|
|
|
|
x86/mm: Fix boot crash caused by incorrect loop count calculation in sync_global_pgds()
Jeff Moyer reported that on his system with two memory regions 0~64G and
1T~1T+192G, and kernel option "memmap=192G!1024G" added, enabling KASLR
will make the system hang intermittently during boot. While adding 'nokaslr'
won't.
The back trace is:
Oops: 0000 [#1] SMP
RIP: memcpy_erms()
[ .... ]
Call Trace:
pmem_rw_page()
bdev_read_page()
do_mpage_readpage()
mpage_readpages()
blkdev_readpages()
__do_page_cache_readahead()
force_page_cache_readahead()
page_cache_sync_readahead()
generic_file_read_iter()
blkdev_read_iter()
__vfs_read()
vfs_read()
SyS_read()
entry_SYSCALL_64_fastpath()
This crash happens because the for loop count calculation in sync_global_pgds()
is not correct. When a mapping area crosses PGD entries, we should
calculate the starting address of region which next PGD covers and assign
it to next for loop count, but not add PGDIR_SIZE directly. The old
code works right only if the mapping area is an exact multiple of PGDIR_SIZE,
otherwize the end region could be skipped so that it can't be synchronized
to all other processes from kernel PGD init_mm.pgd.
In Jeff's system, emulated pmem area [1024G, 1216G) is smaller than
PGDIR_SIZE. While 'nokaslr' works because PAGE_OFFSET is 1T aligned, it
makes this area be mapped inside one PGD entry. With KASLR enabled,
this area could cross two PGD entries, then the next PGD entry won't
be synced to all other processes. That is why we saw empty PGD.
Fix it.
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jinbum Park <jinb.park7@gmail.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Garnier <thgarnie@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yasuaki Ishimatsu <yasu.isimatu@gmail.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1493864747-8506-1-git-send-email-bhe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-05-04 10:25:47 +08:00
|
|
|
pgd = (pgd_t *)page_address(page) + pgd_index(addr);
|
|
|
|
p4d = p4d_offset(pgd, addr);
|
2011-02-17 07:45:22 +08:00
|
|
|
/* the pgt_lock only for Xen */
|
2010-09-22 03:01:51 +08:00
|
|
|
pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
|
|
|
|
spin_lock(pgt_lock);
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
if (!p4d_none(*p4d_ref) && !p4d_none(*p4d))
|
|
|
|
BUG_ON(p4d_page_vaddr(*p4d)
|
|
|
|
!= p4d_page_vaddr(*p4d_ref));
|
2010-09-22 03:01:51 +08:00
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
if (p4d_none(*p4d))
|
|
|
|
set_p4d(p4d, *p4d_ref);
|
2014-08-23 04:27:34 +08:00
|
|
|
|
2010-09-22 03:01:51 +08:00
|
|
|
spin_unlock(pgt_lock);
|
2010-10-15 08:04:59 +08:00
|
|
|
}
|
2011-02-17 07:45:22 +08:00
|
|
|
spin_unlock(&pgd_lock);
|
2010-10-15 08:04:59 +08:00
|
|
|
}
|
2010-05-19 17:42:14 +08:00
|
|
|
}
|
2018-02-15 02:25:41 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When memory was added make sure all the processes MM have
|
|
|
|
* suitable PGD entries in the local PGD level page.
|
|
|
|
*/
|
2020-07-21 17:59:53 +08:00
|
|
|
static void sync_global_pgds(unsigned long start, unsigned long end)
|
2018-02-15 02:25:41 +08:00
|
|
|
{
|
2018-05-18 18:35:24 +08:00
|
|
|
if (pgtable_l5_enabled())
|
2018-02-15 02:25:41 +08:00
|
|
|
sync_global_pgds_l5(start, end);
|
|
|
|
else
|
|
|
|
sync_global_pgds_l4(start, end);
|
|
|
|
}
|
2010-05-19 17:42:14 +08:00
|
|
|
|
2008-08-16 00:32:24 +08:00
|
|
|
/*
|
|
|
|
* NOTE: This function is marked __ref because it calls __init function
|
|
|
|
* (alloc_bootmem_pages). It's safe to do it ONLY when after_bootmem == 0.
|
|
|
|
*/
|
|
|
|
static __ref void *spp_getpage(void)
|
2008-01-30 20:34:10 +08:00
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
void *ptr;
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (after_bootmem)
|
2017-11-16 09:35:54 +08:00
|
|
|
ptr = (void *) get_zeroed_page(GFP_ATOMIC);
|
2005-04-17 06:20:36 +08:00
|
|
|
else
|
2018-10-31 06:08:58 +08:00
|
|
|
ptr = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
|
2008-01-30 20:34:10 +08:00
|
|
|
|
|
|
|
if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
|
|
|
|
panic("set_pte_phys: cannot allocate page data %s\n",
|
|
|
|
after_bootmem ? "after bootmem" : "");
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-30 20:34:10 +08:00
|
|
|
pr_debug("spp_getpage %p\n", ptr);
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return ptr;
|
2008-01-30 20:34:10 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
static p4d_t *fill_p4d(pgd_t *pgd, unsigned long vaddr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2009-02-24 10:57:21 +08:00
|
|
|
if (pgd_none(*pgd)) {
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d = (p4d_t *)spp_getpage();
|
|
|
|
pgd_populate(&init_mm, pgd, p4d);
|
|
|
|
if (p4d != p4d_offset(pgd, 0))
|
2009-02-24 10:57:21 +08:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d, p4d_offset(pgd, 0));
|
|
|
|
}
|
|
|
|
return p4d_offset(pgd, vaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static pud_t *fill_pud(p4d_t *p4d, unsigned long vaddr)
|
|
|
|
{
|
|
|
|
if (p4d_none(*p4d)) {
|
|
|
|
pud_t *pud = (pud_t *)spp_getpage();
|
|
|
|
p4d_populate(&init_mm, p4d, pud);
|
|
|
|
if (pud != pud_offset(p4d, 0))
|
|
|
|
printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
|
|
|
|
pud, pud_offset(p4d, 0));
|
2009-02-24 10:57:21 +08:00
|
|
|
}
|
2017-03-18 02:55:15 +08:00
|
|
|
return pud_offset(p4d, vaddr);
|
2009-02-24 10:57:21 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-03-04 04:02:57 +08:00
|
|
|
static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
|
2009-02-24 10:57:21 +08:00
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
if (pud_none(*pud)) {
|
2009-02-24 10:57:21 +08:00
|
|
|
pmd_t *pmd = (pmd_t *) spp_getpage();
|
2008-06-25 12:19:02 +08:00
|
|
|
pud_populate(&init_mm, pud, pmd);
|
2009-02-24 10:57:21 +08:00
|
|
|
if (pmd != pmd_offset(pud, 0))
|
2017-03-18 02:55:15 +08:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #02! %p <-> %p\n",
|
2009-02-24 10:57:21 +08:00
|
|
|
pmd, pmd_offset(pud, 0));
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2009-02-24 10:57:21 +08:00
|
|
|
return pmd_offset(pud, vaddr);
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:02:57 +08:00
|
|
|
static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
|
2009-02-24 10:57:21 +08:00
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
if (pmd_none(*pmd)) {
|
2009-02-24 10:57:21 +08:00
|
|
|
pte_t *pte = (pte_t *) spp_getpage();
|
2008-06-25 12:19:02 +08:00
|
|
|
pmd_populate_kernel(&init_mm, pmd, pte);
|
2009-02-24 10:57:21 +08:00
|
|
|
if (pte != pte_offset_kernel(pmd, 0))
|
2017-03-18 02:55:15 +08:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #03!\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2009-02-24 10:57:21 +08:00
|
|
|
return pte_offset_kernel(pmd, vaddr);
|
|
|
|
}
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
static void __set_pte_vaddr(pud_t *pud, unsigned long vaddr, pte_t new_pte)
|
2009-02-24 10:57:21 +08:00
|
|
|
{
|
2017-03-18 02:55:15 +08:00
|
|
|
pmd_t *pmd = fill_pmd(pud, vaddr);
|
|
|
|
pte_t *pte = fill_pte(pmd, vaddr);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
set_pte(pte, new_pte);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's enough to flush this one mapping.
|
|
|
|
* (PGE mappings get flushed as well)
|
|
|
|
*/
|
2020-04-21 17:20:35 +08:00
|
|
|
flush_tlb_one_kernel(vaddr);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
void set_pte_vaddr_p4d(p4d_t *p4d_page, unsigned long vaddr, pte_t new_pte)
|
|
|
|
{
|
|
|
|
p4d_t *p4d = p4d_page + p4d_index(vaddr);
|
|
|
|
pud_t *pud = fill_pud(p4d, vaddr);
|
|
|
|
|
|
|
|
__set_pte_vaddr(pud, vaddr, new_pte);
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
|
|
|
|
{
|
|
|
|
pud_t *pud = pud_page + pud_index(vaddr);
|
|
|
|
|
|
|
|
__set_pte_vaddr(pud, vaddr, new_pte);
|
|
|
|
}
|
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
|
2008-06-25 12:19:22 +08:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d_page;
|
2008-06-25 12:19:22 +08:00
|
|
|
|
|
|
|
pr_debug("set_pte_vaddr %lx to %lx\n", vaddr, native_pte_val(pteval));
|
|
|
|
|
|
|
|
pgd = pgd_offset_k(vaddr);
|
|
|
|
if (pgd_none(*pgd)) {
|
|
|
|
printk(KERN_ERR
|
|
|
|
"PGD FIXMAP MISSING, it should be setup in head.S!\n");
|
|
|
|
return;
|
|
|
|
}
|
2017-03-18 02:55:15 +08:00
|
|
|
|
|
|
|
p4d_page = p4d_offset(pgd, 0);
|
|
|
|
set_pte_vaddr_p4d(p4d_page, vaddr, pteval);
|
2008-06-25 12:19:22 +08:00
|
|
|
}
|
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
pmd_t * __init populate_extra_pmd(unsigned long vaddr)
|
2009-02-20 15:29:09 +08:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2009-02-20 15:29:09 +08:00
|
|
|
pud_t *pud;
|
|
|
|
|
|
|
|
pgd = pgd_offset_k(vaddr);
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d = fill_p4d(pgd, vaddr);
|
|
|
|
pud = fill_pud(p4d, vaddr);
|
2009-02-24 10:57:21 +08:00
|
|
|
return fill_pmd(pud, vaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
pte_t * __init populate_extra_pte(unsigned long vaddr)
|
|
|
|
{
|
|
|
|
pmd_t *pmd;
|
2009-02-20 15:29:09 +08:00
|
|
|
|
2009-02-24 10:57:21 +08:00
|
|
|
pmd = populate_extra_pmd(vaddr);
|
|
|
|
return fill_pte(pmd, vaddr);
|
2009-02-20 15:29:09 +08:00
|
|
|
}
|
|
|
|
|
2008-07-02 03:45:32 +08:00
|
|
|
/*
|
|
|
|
* Create large page table mappings for a range of physical addresses.
|
|
|
|
*/
|
|
|
|
static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
|
2014-11-03 21:01:52 +08:00
|
|
|
enum page_cache_mode cache)
|
2008-07-02 03:45:32 +08:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2008-07-02 03:45:32 +08:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
2014-11-03 21:01:52 +08:00
|
|
|
pgprot_t prot;
|
2008-07-02 03:45:32 +08:00
|
|
|
|
2014-11-03 21:01:52 +08:00
|
|
|
pgprot_val(prot) = pgprot_val(PAGE_KERNEL_LARGE) |
|
2020-04-08 23:27:44 +08:00
|
|
|
protval_4k_2_large(cachemode2protval(cache));
|
2008-07-02 03:45:32 +08:00
|
|
|
BUG_ON((phys & ~PMD_MASK) || (size & ~PMD_MASK));
|
|
|
|
for (; size; phys += PMD_SIZE, size -= PMD_SIZE) {
|
|
|
|
pgd = pgd_offset_k((unsigned long)__va(phys));
|
|
|
|
if (pgd_none(*pgd)) {
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d = (p4d_t *) spp_getpage();
|
|
|
|
set_pgd(pgd, __pgd(__pa(p4d) | _KERNPG_TABLE |
|
|
|
|
_PAGE_USER));
|
|
|
|
}
|
|
|
|
p4d = p4d_offset(pgd, (unsigned long)__va(phys));
|
|
|
|
if (p4d_none(*p4d)) {
|
2008-07-02 03:45:32 +08:00
|
|
|
pud = (pud_t *) spp_getpage();
|
2017-03-18 02:55:15 +08:00
|
|
|
set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE |
|
2008-07-02 03:45:32 +08:00
|
|
|
_PAGE_USER));
|
|
|
|
}
|
2017-03-18 02:55:15 +08:00
|
|
|
pud = pud_offset(p4d, (unsigned long)__va(phys));
|
2008-07-02 03:45:32 +08:00
|
|
|
if (pud_none(*pud)) {
|
|
|
|
pmd = (pmd_t *) spp_getpage();
|
|
|
|
set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE |
|
|
|
|
_PAGE_USER));
|
|
|
|
}
|
|
|
|
pmd = pmd_offset(pud, phys);
|
|
|
|
BUG_ON(!pmd_none(*pmd));
|
|
|
|
set_pmd(pmd, __pmd(phys | pgprot_val(prot)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init init_extra_mapping_wb(unsigned long phys, unsigned long size)
|
|
|
|
{
|
2014-11-03 21:01:52 +08:00
|
|
|
__init_extra_mapping(phys, size, _PAGE_CACHE_MODE_WB);
|
2008-07-02 03:45:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
|
|
|
|
{
|
2014-11-03 21:01:52 +08:00
|
|
|
__init_extra_mapping(phys, size, _PAGE_CACHE_MODE_UC);
|
2008-07-02 03:45:32 +08:00
|
|
|
}
|
|
|
|
|
2008-02-16 00:29:12 +08:00
|
|
|
/*
|
2008-02-21 18:04:11 +08:00
|
|
|
* The head.S code sets up the kernel high mapping:
|
|
|
|
*
|
|
|
|
* from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
|
2008-02-16 00:29:12 +08:00
|
|
|
*
|
2013-05-15 10:58:07 +08:00
|
|
|
* phys_base holds the negative offset to the kernel, which is added
|
2008-02-16 00:29:12 +08:00
|
|
|
* to the compile time generated pmds. This results in invalid pmds up
|
|
|
|
* to the point where we hit the physaddr 0 mapping.
|
|
|
|
*
|
2011-02-18 19:30:30 +08:00
|
|
|
* We limit the mappings to the region from _text to _brk_end. _brk_end
|
|
|
|
* is rounded up to the 2MB boundary. This catches the invalid pmds as
|
2008-02-16 00:29:12 +08:00
|
|
|
* well, as they are located before _text:
|
|
|
|
*/
|
|
|
|
void __init cleanup_highmap(void)
|
|
|
|
{
|
|
|
|
unsigned long vaddr = __START_KERNEL_map;
|
2013-01-25 04:19:54 +08:00
|
|
|
unsigned long vaddr_end = __START_KERNEL_map + KERNEL_IMAGE_SIZE;
|
2011-02-18 19:30:30 +08:00
|
|
|
unsigned long end = roundup((unsigned long)_brk_end, PMD_SIZE) - 1;
|
2008-02-16 00:29:12 +08:00
|
|
|
pmd_t *pmd = level2_kernel_pgt;
|
|
|
|
|
2013-01-25 04:19:54 +08:00
|
|
|
/*
|
|
|
|
* Native path, max_pfn_mapped is not set yet.
|
|
|
|
* Xen has valid max_pfn_mapped set in
|
|
|
|
* arch/x86/xen/mmu.c:xen_setup_kernel_pagetable().
|
|
|
|
*/
|
|
|
|
if (max_pfn_mapped)
|
|
|
|
vaddr_end = __START_KERNEL_map + (max_pfn_mapped << PAGE_SHIFT);
|
|
|
|
|
2011-02-18 19:30:30 +08:00
|
|
|
for (; vaddr + PMD_SIZE - 1 < vaddr_end; pmd++, vaddr += PMD_SIZE) {
|
2008-05-29 02:36:07 +08:00
|
|
|
if (pmd_none(*pmd))
|
2008-02-16 00:29:12 +08:00
|
|
|
continue;
|
|
|
|
if (vaddr < (unsigned long) _text || vaddr > end)
|
|
|
|
set_pmd(pmd, __pmd(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
/*
|
|
|
|
* Create PTE level page table mapping for physical addresses.
|
|
|
|
* It returns the last physical address mapped.
|
|
|
|
*/
|
2008-07-10 11:15:02 +08:00
|
|
|
static unsigned long __meminit
|
2016-06-22 08:46:59 +08:00
|
|
|
phys_pte_init(pte_t *pte_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 23:41:17 +08:00
|
|
|
pgprot_t prot, bool init)
|
2008-06-25 12:19:19 +08:00
|
|
|
{
|
2016-06-22 08:46:59 +08:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
|
|
|
pte_t *pte;
|
2008-06-25 12:19:19 +08:00
|
|
|
int i;
|
2008-07-10 11:15:02 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
pte = pte_page + pte_index(paddr);
|
|
|
|
i = pte_index(paddr);
|
2008-06-25 12:19:19 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
for (; i < PTRS_PER_PTE; i++, paddr = paddr_next, pte++) {
|
|
|
|
paddr_next = (paddr & PAGE_MASK) + PAGE_SIZE;
|
|
|
|
if (paddr >= paddr_end) {
|
2012-11-17 11:38:56 +08:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PAGE_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PAGE_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pte_init(pte, __pte(0), init);
|
2012-11-17 11:38:56 +08:00
|
|
|
continue;
|
2008-06-25 12:19:19 +08:00
|
|
|
}
|
|
|
|
|
2008-10-08 04:58:46 +08:00
|
|
|
/*
|
|
|
|
* We will re-use the existing mapping.
|
|
|
|
* Xen for example has some special requirements, like mapping
|
|
|
|
* pagetable pages as RO. So assume someone who pre-setup
|
|
|
|
* these mappings are more intelligent.
|
|
|
|
*/
|
2016-07-08 08:19:15 +08:00
|
|
|
if (!pte_none(*pte)) {
|
2012-10-04 21:48:10 +08:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2008-06-25 12:19:19 +08:00
|
|
|
continue;
|
2008-10-26 13:58:21 +08:00
|
|
|
}
|
2008-06-25 12:19:19 +08:00
|
|
|
|
|
|
|
if (0)
|
2016-06-22 08:46:59 +08:00
|
|
|
pr_info(" pte=%p addr=%lx pte=%016lx\n", pte, paddr,
|
|
|
|
pfn_pte(paddr >> PAGE_SHIFT, PAGE_KERNEL).pte);
|
2008-06-25 12:19:19 +08:00
|
|
|
pages++;
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pte_init(pte, pfn_pte(paddr >> PAGE_SHIFT, prot), init);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = (paddr & PAGE_MASK) + PAGE_SIZE;
|
2008-06-25 12:19:19 +08:00
|
|
|
}
|
2008-09-24 05:00:38 +08:00
|
|
|
|
2008-06-25 12:19:19 +08:00
|
|
|
update_page_count(PG_LEVEL_4K, pages);
|
2008-07-10 11:15:02 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
return paddr_last;
|
2008-06-25 12:19:19 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
/*
|
|
|
|
* Create PMD level page table mapping for physical addresses. The virtual
|
|
|
|
* and physical address have to be aligned at this level.
|
|
|
|
* It returns the last physical address mapped.
|
|
|
|
*/
|
2008-03-12 10:53:28 +08:00
|
|
|
static unsigned long __meminit
|
2016-06-22 08:46:59 +08:00
|
|
|
phys_pmd_init(pmd_t *pmd_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 23:41:17 +08:00
|
|
|
unsigned long page_size_mask, pgprot_t prot, bool init)
|
2006-01-17 14:03:41 +08:00
|
|
|
{
|
2016-06-22 08:46:59 +08:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
2008-05-02 17:46:49 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
int i = pmd_index(paddr);
|
2006-01-17 14:03:41 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
for (; i < PTRS_PER_PMD; i++, paddr = paddr_next) {
|
|
|
|
pmd_t *pmd = pmd_page + pmd_index(paddr);
|
2008-06-25 12:19:19 +08:00
|
|
|
pte_t *pte;
|
2008-10-08 04:58:46 +08:00
|
|
|
pgprot_t new_prot = prot;
|
2006-01-17 14:03:41 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_next = (paddr & PMD_MASK) + PMD_SIZE;
|
|
|
|
if (paddr >= paddr_end) {
|
2012-11-17 11:38:56 +08:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PMD_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PMD_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pmd_init(pmd, __pmd(0), init);
|
2012-11-17 11:38:56 +08:00
|
|
|
continue;
|
2006-01-17 14:03:41 +08:00
|
|
|
}
|
2006-09-26 16:52:36 +08:00
|
|
|
|
2016-07-08 08:19:15 +08:00
|
|
|
if (!pmd_none(*pmd)) {
|
2008-08-21 21:27:22 +08:00
|
|
|
if (!pmd_large(*pmd)) {
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2012-11-17 11:38:59 +08:00
|
|
|
pte = (pte_t *)pmd_page_vaddr(*pmd);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = phys_pte_init(pte, paddr,
|
2019-04-17 23:41:17 +08:00
|
|
|
paddr_end, prot,
|
|
|
|
init);
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2008-09-24 05:00:38 +08:00
|
|
|
continue;
|
2008-08-21 21:27:22 +08:00
|
|
|
}
|
2008-10-08 04:58:46 +08:00
|
|
|
/*
|
|
|
|
* If we are ok with PG_LEVEL_2M mapping, then we will
|
|
|
|
* use the existing mapping,
|
|
|
|
*
|
|
|
|
* Otherwise, we will split the large page mapping but
|
|
|
|
* use the same existing protection bits except for
|
|
|
|
* large page, so that we don't violate Intel's TLB
|
|
|
|
* Application note (317080) which says, while changing
|
|
|
|
* the page sizes, new and old translations should
|
|
|
|
* not differ with respect to page frame and
|
|
|
|
* attributes.
|
|
|
|
*/
|
2008-10-26 13:58:21 +08:00
|
|
|
if (page_size_mask & (1 << PG_LEVEL_2M)) {
|
2012-10-04 21:48:10 +08:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = paddr_next;
|
2008-10-08 04:58:46 +08:00
|
|
|
continue;
|
2008-10-26 13:58:21 +08:00
|
|
|
}
|
2008-10-08 04:58:46 +08:00
|
|
|
new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
|
2008-06-25 12:19:19 +08:00
|
|
|
}
|
|
|
|
|
2008-07-08 16:41:05 +08:00
|
|
|
if (page_size_mask & (1<<PG_LEVEL_2M)) {
|
2008-06-25 12:19:19 +08:00
|
|
|
pages++;
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pte_init((pte_t *)pmd,
|
|
|
|
pfn_pte((paddr & PMD_MASK) >> PAGE_SHIFT,
|
|
|
|
__pgprot(pgprot_val(prot) | _PAGE_PSE)),
|
|
|
|
init);
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = paddr_next;
|
2006-09-26 16:52:36 +08:00
|
|
|
continue;
|
2008-06-25 12:19:19 +08:00
|
|
|
}
|
2006-09-26 16:52:36 +08:00
|
|
|
|
2012-11-17 11:39:00 +08:00
|
|
|
pte = alloc_low_page();
|
2019-04-17 23:41:17 +08:00
|
|
|
paddr_last = phys_pte_init(pte, paddr, paddr_end, new_prot, init);
|
2008-06-25 12:19:19 +08:00
|
|
|
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 23:41:17 +08:00
|
|
|
pmd_populate_kernel_init(&init_mm, pmd, pte, init);
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2006-01-17 14:03:41 +08:00
|
|
|
}
|
2008-05-02 17:46:49 +08:00
|
|
|
update_page_count(PG_LEVEL_2M, pages);
|
2016-06-22 08:46:59 +08:00
|
|
|
return paddr_last;
|
2006-01-17 14:03:41 +08:00
|
|
|
}
|
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
/*
|
|
|
|
* Create PUD level page table mapping for physical addresses. The virtual
|
2016-06-22 08:47:00 +08:00
|
|
|
* and physical address do not have to be aligned at this level. KASLR can
|
|
|
|
* randomize virtual addresses up to this level.
|
2016-06-22 08:46:59 +08:00
|
|
|
* It returns the last physical address mapped.
|
|
|
|
*/
|
2008-03-12 10:53:28 +08:00
|
|
|
static unsigned long __meminit
|
2016-06-22 08:46:59 +08:00
|
|
|
phys_pud_init(pud_t *pud_page, unsigned long paddr, unsigned long paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
unsigned long page_size_mask, pgprot_t _prot, bool init)
|
2008-01-30 20:34:10 +08:00
|
|
|
{
|
2016-06-22 08:46:59 +08:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
2016-06-22 08:47:00 +08:00
|
|
|
unsigned long vaddr = (unsigned long)__va(paddr);
|
|
|
|
int i = pud_index(vaddr);
|
2006-01-17 14:03:41 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
for (; i < PTRS_PER_PUD; i++, paddr = paddr_next) {
|
2016-06-22 08:47:00 +08:00
|
|
|
pud_t *pud;
|
2005-04-17 06:20:36 +08:00
|
|
|
pmd_t *pmd;
|
2020-04-11 05:33:24 +08:00
|
|
|
pgprot_t prot = _prot;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-22 08:47:00 +08:00
|
|
|
vaddr = (unsigned long)__va(paddr);
|
|
|
|
pud = pud_page + pud_index(vaddr);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_next = (paddr & PUD_MASK) + PUD_SIZE;
|
2016-06-22 08:47:00 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
if (paddr >= paddr_end) {
|
2012-11-17 11:38:56 +08:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PUD_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 21:14:25 +08:00
|
|
|
!e820__mapped_any(paddr & PUD_MASK, paddr_next,
|
2017-01-29 00:09:33 +08:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pud_init(pud, __pud(0), init);
|
2005-04-17 06:20:36 +08:00
|
|
|
continue;
|
2008-01-30 20:34:10 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-07-08 08:19:15 +08:00
|
|
|
if (!pud_none(*pud)) {
|
2008-09-24 05:00:38 +08:00
|
|
|
if (!pud_large(*pud)) {
|
2012-11-17 11:38:59 +08:00
|
|
|
pmd = pmd_offset(pud, 0);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = phys_pmd_init(pmd, paddr,
|
|
|
|
paddr_end,
|
|
|
|
page_size_mask,
|
2019-04-17 23:41:17 +08:00
|
|
|
prot, init);
|
2008-09-24 05:00:38 +08:00
|
|
|
continue;
|
|
|
|
}
|
2008-10-08 04:58:46 +08:00
|
|
|
/*
|
|
|
|
* If we are ok with PG_LEVEL_1G mapping, then we will
|
|
|
|
* use the existing mapping.
|
|
|
|
*
|
|
|
|
* Otherwise, we will split the gbpage mapping but use
|
|
|
|
* the same existing protection bits except for large
|
|
|
|
* page, so that we don't violate Intel's TLB
|
|
|
|
* Application note (317080) which says, while changing
|
|
|
|
* the page sizes, new and old translations should
|
|
|
|
* not differ with respect to page frame and
|
|
|
|
* attributes.
|
|
|
|
*/
|
2008-10-26 13:58:21 +08:00
|
|
|
if (page_size_mask & (1 << PG_LEVEL_1G)) {
|
2012-10-04 21:48:10 +08:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = paddr_next;
|
2008-10-08 04:58:46 +08:00
|
|
|
continue;
|
2008-10-26 13:58:21 +08:00
|
|
|
}
|
2008-10-08 04:58:46 +08:00
|
|
|
prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
|
2008-04-17 23:40:45 +08:00
|
|
|
}
|
|
|
|
|
2008-07-08 16:41:05 +08:00
|
|
|
if (page_size_mask & (1<<PG_LEVEL_1G)) {
|
2008-05-02 17:46:49 +08:00
|
|
|
pages++;
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2020-04-11 05:33:24 +08:00
|
|
|
|
|
|
|
prot = __pgprot(pgprot_val(prot) | __PAGE_KERNEL_LARGE);
|
|
|
|
|
2019-04-17 23:41:17 +08:00
|
|
|
set_pte_init((pte_t *)pud,
|
|
|
|
pfn_pte((paddr & PUD_MASK) >> PAGE_SHIFT,
|
2020-04-11 05:33:24 +08:00
|
|
|
prot),
|
2019-04-17 23:41:17 +08:00
|
|
|
init);
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = paddr_next;
|
2006-09-26 16:52:36 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-11-17 11:39:00 +08:00
|
|
|
pmd = alloc_low_page();
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = phys_pmd_init(pmd, paddr, paddr_end,
|
2019-04-17 23:41:17 +08:00
|
|
|
page_size_mask, prot, init);
|
2008-08-21 21:27:22 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 23:41:17 +08:00
|
|
|
pud_populate_init(&init_mm, pud, pmd, init);
|
2006-01-17 14:03:41 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2008-09-24 05:00:38 +08:00
|
|
|
|
2008-05-02 17:46:49 +08:00
|
|
|
update_page_count(PG_LEVEL_1G, pages);
|
2008-03-12 10:53:28 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
return paddr_last;
|
2008-01-30 20:34:10 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-06-06 19:31:30 +08:00
|
|
|
static unsigned long __meminit
|
|
|
|
phys_p4d_init(p4d_t *p4d_page, unsigned long paddr, unsigned long paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
unsigned long page_size_mask, pgprot_t prot, bool init)
|
2017-06-06 19:31:30 +08:00
|
|
|
{
|
2019-06-24 20:31:50 +08:00
|
|
|
unsigned long vaddr, vaddr_end, vaddr_next, paddr_next, paddr_last;
|
|
|
|
|
|
|
|
paddr_last = paddr_end;
|
|
|
|
vaddr = (unsigned long)__va(paddr);
|
|
|
|
vaddr_end = (unsigned long)__va(paddr_end);
|
2017-06-06 19:31:30 +08:00
|
|
|
|
2018-05-18 18:35:24 +08:00
|
|
|
if (!pgtable_l5_enabled())
|
2019-04-17 23:41:17 +08:00
|
|
|
return phys_pud_init((pud_t *) p4d_page, paddr, paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, prot, init);
|
2017-06-06 19:31:30 +08:00
|
|
|
|
2019-06-24 20:31:50 +08:00
|
|
|
for (; vaddr < vaddr_end; vaddr = vaddr_next) {
|
|
|
|
p4d_t *p4d = p4d_page + p4d_index(vaddr);
|
2017-06-06 19:31:30 +08:00
|
|
|
pud_t *pud;
|
|
|
|
|
2019-06-24 20:31:50 +08:00
|
|
|
vaddr_next = (vaddr & P4D_MASK) + P4D_SIZE;
|
|
|
|
paddr = __pa(vaddr);
|
2017-06-06 19:31:30 +08:00
|
|
|
|
|
|
|
if (paddr >= paddr_end) {
|
2019-06-24 20:31:50 +08:00
|
|
|
paddr_next = __pa(vaddr_next);
|
2017-06-06 19:31:30 +08:00
|
|
|
if (!after_bootmem &&
|
|
|
|
!e820__mapped_any(paddr & P4D_MASK, paddr_next,
|
|
|
|
E820_TYPE_RAM) &&
|
|
|
|
!e820__mapped_any(paddr & P4D_MASK, paddr_next,
|
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 23:41:17 +08:00
|
|
|
set_p4d_init(p4d, __p4d(0), init);
|
2017-06-06 19:31:30 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!p4d_none(*p4d)) {
|
|
|
|
pud = pud_offset(p4d, 0);
|
2019-06-24 20:31:50 +08:00
|
|
|
paddr_last = phys_pud_init(pud, paddr, __pa(vaddr_end),
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, prot, init);
|
2017-06-06 19:31:30 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pud = alloc_low_page();
|
2019-06-24 20:31:50 +08:00
|
|
|
paddr_last = phys_pud_init(pud, paddr, __pa(vaddr_end),
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, prot, init);
|
2017-06-06 19:31:30 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 23:41:17 +08:00
|
|
|
p4d_populate_init(&init_mm, p4d, pud, init);
|
2017-06-06 19:31:30 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
return paddr_last;
|
|
|
|
}
|
|
|
|
|
2019-04-17 23:41:17 +08:00
|
|
|
static unsigned long __meminit
|
|
|
|
__kernel_physical_mapping_init(unsigned long paddr_start,
|
|
|
|
unsigned long paddr_end,
|
|
|
|
unsigned long page_size_mask,
|
2020-04-11 05:33:24 +08:00
|
|
|
pgprot_t prot, bool init)
|
2008-01-30 20:34:10 +08:00
|
|
|
{
|
2010-08-20 17:50:16 +08:00
|
|
|
bool pgd_changed = false;
|
2016-06-22 08:46:59 +08:00
|
|
|
unsigned long vaddr, vaddr_start, vaddr_end, vaddr_next, paddr_last;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
paddr_last = paddr_end;
|
|
|
|
vaddr = (unsigned long)__va(paddr_start);
|
|
|
|
vaddr_end = (unsigned long)__va(paddr_end);
|
|
|
|
vaddr_start = vaddr;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
for (; vaddr < vaddr_end; vaddr = vaddr_next) {
|
|
|
|
pgd_t *pgd = pgd_offset_k(vaddr);
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2006-01-17 14:03:41 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
vaddr_next = (vaddr & PGDIR_MASK) + PGDIR_SIZE;
|
2008-06-25 12:19:19 +08:00
|
|
|
|
2017-06-06 19:31:30 +08:00
|
|
|
if (pgd_val(*pgd)) {
|
|
|
|
p4d = (p4d_t *)pgd_page_vaddr(*pgd);
|
|
|
|
paddr_last = phys_p4d_init(p4d, __pa(vaddr),
|
2016-06-22 08:46:59 +08:00
|
|
|
__pa(vaddr_end),
|
2019-04-17 23:41:17 +08:00
|
|
|
page_size_mask,
|
2020-04-11 05:33:24 +08:00
|
|
|
prot, init);
|
2008-06-25 12:19:19 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-06 19:31:30 +08:00
|
|
|
p4d = alloc_low_page();
|
|
|
|
paddr_last = phys_p4d_init(p4d, __pa(vaddr), __pa(vaddr_end),
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, prot, init);
|
2008-08-21 21:27:22 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2018-05-18 18:35:24 +08:00
|
|
|
if (pgtable_l5_enabled())
|
2019-04-17 23:41:17 +08:00
|
|
|
pgd_populate_init(&init_mm, pgd, p4d, init);
|
2017-06-06 19:31:30 +08:00
|
|
|
else
|
2019-04-17 23:41:17 +08:00
|
|
|
p4d_populate_init(&init_mm, p4d_offset(pgd, vaddr),
|
|
|
|
(pud_t *) p4d, init);
|
|
|
|
|
2008-08-21 21:27:22 +08:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2010-08-20 17:50:16 +08:00
|
|
|
pgd_changed = true;
|
2008-01-30 20:34:10 +08:00
|
|
|
}
|
2010-08-20 17:50:16 +08:00
|
|
|
|
|
|
|
if (pgd_changed)
|
2016-12-15 07:44:03 +08:00
|
|
|
sync_global_pgds(vaddr_start, vaddr_end - 1);
|
2010-08-20 17:50:16 +08:00
|
|
|
|
2016-06-22 08:46:59 +08:00
|
|
|
return paddr_last;
|
2008-07-08 16:41:05 +08:00
|
|
|
}
|
2008-07-10 11:15:02 +08:00
|
|
|
|
2019-04-17 23:41:17 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create page table mapping for the physical memory for specific physical
|
|
|
|
* addresses. Note that it can only be used to populate non-present entries.
|
|
|
|
* The virtual and physical addresses have to be aligned on PMD level
|
|
|
|
* down. It returns the last physical address mapped.
|
|
|
|
*/
|
|
|
|
unsigned long __meminit
|
|
|
|
kernel_physical_mapping_init(unsigned long paddr_start,
|
|
|
|
unsigned long paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
unsigned long page_size_mask, pgprot_t prot)
|
2019-04-17 23:41:17 +08:00
|
|
|
{
|
|
|
|
return __kernel_physical_mapping_init(paddr_start, paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, prot, true);
|
2019-04-17 23:41:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is similar to kernel_physical_mapping_init() above with the
|
|
|
|
* exception that it uses set_{pud,pmd}() instead of the set_{pud,pte}_safe()
|
|
|
|
* when updating the mapping. The caller is responsible to flush the TLBs after
|
|
|
|
* the function returns.
|
|
|
|
*/
|
|
|
|
unsigned long __meminit
|
|
|
|
kernel_physical_mapping_change(unsigned long paddr_start,
|
|
|
|
unsigned long paddr_end,
|
|
|
|
unsigned long page_size_mask)
|
|
|
|
{
|
|
|
|
return __kernel_physical_mapping_init(paddr_start, paddr_end,
|
2020-04-11 05:33:24 +08:00
|
|
|
page_size_mask, PAGE_KERNEL,
|
|
|
|
false);
|
2019-04-17 23:41:17 +08:00
|
|
|
}
|
|
|
|
|
2005-06-23 15:08:06 +08:00
|
|
|
#ifndef CONFIG_NUMA
|
2011-02-16 19:13:06 +08:00
|
|
|
void __init initmem_init(void)
|
2008-06-22 17:44:49 +08:00
|
|
|
{
|
2018-06-15 06:28:02 +08:00
|
|
|
memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0);
|
2008-06-22 17:44:49 +08:00
|
|
|
}
|
2009-05-07 20:35:41 +08:00
|
|
|
#endif
|
2008-06-22 17:44:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void __init paging_init(void)
|
|
|
|
{
|
2006-01-17 14:03:41 +08:00
|
|
|
sparse_init();
|
2009-07-09 00:50:19 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* clear the default setting with node 0
|
|
|
|
* note: don't use nodes_clear here, that is really clearing when
|
|
|
|
* numa support is not compiled in, and later node_set_state
|
|
|
|
* will not set it back.
|
|
|
|
*/
|
2012-12-13 05:51:46 +08:00
|
|
|
node_clear_state(0, N_MEMORY);
|
2020-03-11 09:18:23 +08:00
|
|
|
node_clear_state(0, N_NORMAL_MEMORY);
|
2009-07-09 00:50:19 +08:00
|
|
|
|
2011-11-01 21:58:17 +08:00
|
|
|
zone_sizes_init();
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-01-17 14:03:41 +08:00
|
|
|
/*
|
|
|
|
* Memory hotplug specific functions
|
|
|
|
*/
|
2006-06-27 17:53:30 +08:00
|
|
|
#ifdef CONFIG_MEMORY_HOTPLUG
|
2010-02-03 05:44:16 +08:00
|
|
|
/*
|
|
|
|
* After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
|
|
|
|
* updating.
|
|
|
|
*/
|
2017-09-09 07:11:39 +08:00
|
|
|
static void update_end_of_memory_vars(u64 start, u64 size)
|
2010-02-03 05:44:16 +08:00
|
|
|
{
|
|
|
|
unsigned long end_pfn = PFN_UP(start + size);
|
|
|
|
|
|
|
|
if (end_pfn > max_pfn) {
|
|
|
|
max_pfn = end_pfn;
|
|
|
|
max_low_pfn = end_pfn;
|
|
|
|
high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-29 15:53:53 +08:00
|
|
|
int add_pages(int nid, unsigned long start_pfn, unsigned long nr_pages,
|
2020-04-11 05:33:21 +08:00
|
|
|
struct mhp_params *params)
|
2006-01-17 14:03:41 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2020-04-11 05:33:21 +08:00
|
|
|
ret = __add_pages(nid, start_pfn, nr_pages, params);
|
2008-10-29 07:43:14 +08:00
|
|
|
WARN_ON_ONCE(ret);
|
2006-01-17 14:03:41 +08:00
|
|
|
|
2010-02-03 05:44:16 +08:00
|
|
|
/* update max_pfn, max_low_pfn and high_memory */
|
2017-09-09 07:11:39 +08:00
|
|
|
update_end_of_memory_vars(start_pfn << PAGE_SHIFT,
|
|
|
|
nr_pages << PAGE_SHIFT);
|
2010-02-03 05:44:16 +08:00
|
|
|
|
2006-01-17 14:03:41 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2017-09-09 07:11:39 +08:00
|
|
|
|
2019-05-14 08:21:26 +08:00
|
|
|
int arch_add_memory(int nid, u64 start, u64 size,
|
2020-04-11 05:33:21 +08:00
|
|
|
struct mhp_params *params)
|
2017-09-09 07:11:39 +08:00
|
|
|
{
|
|
|
|
unsigned long start_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long nr_pages = size >> PAGE_SHIFT;
|
|
|
|
|
mm/memory_hotplug: add pgprot_t to mhp_params
devm_memremap_pages() is currently used by the PCI P2PDMA code to create
struct page mappings for IO memory. At present, these mappings are
created with PAGE_KERNEL which implies setting the PAT bits to be WB.
However, on x86, an mtrr register will typically override this and force
the cache type to be UC-. In the case firmware doesn't set this
register it is effectively WB and will typically result in a machine
check exception when it's accessed.
Other arches are not currently likely to function correctly seeing they
don't have any MTRR registers to fall back on.
To solve this, provide a way to specify the pgprot value explicitly to
arch_add_memory().
Of the arches that support MEMORY_HOTPLUG: x86_64, and arm64 need a
simple change to pass the pgprot_t down to their respective functions
which set up the page tables. For x86_32, set the page tables
explicitly using _set_memory_prot() (seeing they are already mapped).
For ia64, s390 and sh, reject anything but PAGE_KERNEL settings -- this
should be fine, for now, seeing these architectures don't support
ZONE_DEVICE.
A check in __add_pages() is also added to ensure the pgprot parameter
was set for all arches.
Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: David Hildenbrand <david@redhat.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: Dan Williams <dan.j.williams@intel.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Eric Badger <ebadger@gigaio.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jason Gunthorpe <jgg@ziepe.ca>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will@kernel.org>
Link: http://lkml.kernel.org/r/20200306170846.9333-7-logang@deltatee.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2020-04-11 05:33:36 +08:00
|
|
|
init_memory_mapping(start, start + size, params->pgprot);
|
2017-09-09 07:11:39 +08:00
|
|
|
|
2020-04-11 05:33:21 +08:00
|
|
|
return add_pages(nid, start_pfn, nr_pages, params);
|
2017-09-09 07:11:39 +08:00
|
|
|
}
|
2006-01-17 14:03:41 +08:00
|
|
|
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
#define PAGE_INUSE 0xFD
|
|
|
|
|
2018-03-14 12:36:22 +08:00
|
|
|
static void __meminit free_pagetable(struct page *page, int order)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
unsigned long magic;
|
|
|
|
unsigned int nr_pages = 1 << order;
|
2016-01-16 08:56:22 +08:00
|
|
|
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
/* bootmem page has reserved flag */
|
|
|
|
if (PageReserved(page)) {
|
|
|
|
__ClearPageReserved(page);
|
|
|
|
|
2017-02-23 07:45:13 +08:00
|
|
|
magic = (unsigned long)page->freelist;
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
if (magic == SECTION_INFO || magic == MIX_SECTION_INFO) {
|
|
|
|
while (nr_pages--)
|
|
|
|
put_page_bootmem(page++);
|
|
|
|
} else
|
2013-07-04 06:03:17 +08:00
|
|
|
while (nr_pages--)
|
|
|
|
free_reserved_page(page++);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
} else
|
|
|
|
free_pages((unsigned long)page_address(page), order);
|
|
|
|
}
|
|
|
|
|
2018-03-14 12:36:22 +08:00
|
|
|
static void __meminit free_hugepage_table(struct page *page,
|
2017-12-29 15:53:56 +08:00
|
|
|
struct vmem_altmap *altmap)
|
2018-03-14 12:36:22 +08:00
|
|
|
{
|
|
|
|
if (altmap)
|
|
|
|
vmem_altmap_free(altmap, PMD_SIZE / PAGE_SIZE);
|
|
|
|
else
|
|
|
|
free_pagetable(page, get_order(PMD_SIZE));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __meminit free_pte_table(pte_t *pte_start, pmd_t *pmd)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
pte_t *pte;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PTRS_PER_PTE; i++) {
|
|
|
|
pte = pte_start + i;
|
2016-07-08 08:19:15 +08:00
|
|
|
if (!pte_none(*pte))
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pte talbe */
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pagetable(pmd_page(*pmd), 0);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pmd_clear(pmd);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
2018-03-14 12:36:22 +08:00
|
|
|
static void __meminit free_pmd_table(pmd_t *pmd_start, pud_t *pud)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
pmd_t *pmd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PTRS_PER_PMD; i++) {
|
|
|
|
pmd = pmd_start + i;
|
2016-07-08 08:19:15 +08:00
|
|
|
if (!pmd_none(*pmd))
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pmd talbe */
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pagetable(pud_page(*pud), 0);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pud_clear(pud);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
2018-03-14 12:36:22 +08:00
|
|
|
static void __meminit free_pud_table(pud_t *pud_start, p4d_t *p4d)
|
2017-03-18 02:55:15 +08:00
|
|
|
{
|
|
|
|
pud_t *pud;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PTRS_PER_PUD; i++) {
|
|
|
|
pud = pud_start + i;
|
|
|
|
if (!pud_none(*pud))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pud talbe */
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pagetable(p4d_page(*p4d), 0);
|
2017-03-18 02:55:15 +08:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
p4d_clear(p4d);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
static void __meminit
|
|
|
|
remove_pte_table(pte_t *pte_start, unsigned long addr, unsigned long end,
|
2018-03-14 12:36:22 +08:00
|
|
|
bool direct)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
unsigned long next, pages = 0;
|
|
|
|
pte_t *pte;
|
|
|
|
void *page_addr;
|
|
|
|
phys_addr_t phys_addr;
|
|
|
|
|
|
|
|
pte = pte_start + pte_index(addr);
|
|
|
|
for (; addr < end; addr = next, pte++) {
|
|
|
|
next = (addr + PAGE_SIZE) & PAGE_MASK;
|
|
|
|
if (next > end)
|
|
|
|
next = end;
|
|
|
|
|
|
|
|
if (!pte_present(*pte))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We mapped [0,1G) memory as identity mapping when
|
|
|
|
* initializing, in arch/x86/kernel/head_64.S. These
|
|
|
|
* pagetables cannot be removed.
|
|
|
|
*/
|
|
|
|
phys_addr = pte_val(*pte) + (addr & PAGE_MASK);
|
|
|
|
if (phys_addr < (phys_addr_t)0x40000000)
|
|
|
|
return;
|
|
|
|
|
2016-01-12 10:19:30 +08:00
|
|
|
if (PAGE_ALIGNED(addr) && PAGE_ALIGNED(next)) {
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
/*
|
|
|
|
* Do not free direct mapping pages since they were
|
|
|
|
* freed when offlining, or simplely not in use.
|
|
|
|
*/
|
|
|
|
if (!direct)
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pagetable(pte_page(*pte), 0);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pte_clear(&init_mm, addr, pte);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
|
|
|
|
/* For non-direct mapping, pages means nothing. */
|
|
|
|
pages++;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If we are here, we are freeing vmemmap pages since
|
|
|
|
* direct mapped memory ranges to be freed are aligned.
|
|
|
|
*
|
|
|
|
* If we are not removing the whole page, it means
|
|
|
|
* other page structs in this page are being used and
|
|
|
|
* we canot remove them. So fill the unused page_structs
|
|
|
|
* with 0xFD, and remove the page when it is wholly
|
|
|
|
* filled with 0xFD.
|
|
|
|
*/
|
|
|
|
memset((void *)addr, PAGE_INUSE, next - addr);
|
|
|
|
|
|
|
|
page_addr = page_address(pte_page(*pte));
|
|
|
|
if (!memchr_inv(page_addr, PAGE_INUSE, PAGE_SIZE)) {
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pagetable(pte_page(*pte), 0);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pte_clear(&init_mm, addr, pte);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call free_pte_table() in remove_pmd_table(). */
|
|
|
|
flush_tlb_all();
|
|
|
|
if (direct)
|
|
|
|
update_page_count(PG_LEVEL_4K, -pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __meminit
|
|
|
|
remove_pmd_table(pmd_t *pmd_start, unsigned long addr, unsigned long end,
|
2017-12-29 15:53:56 +08:00
|
|
|
bool direct, struct vmem_altmap *altmap)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
unsigned long next, pages = 0;
|
|
|
|
pte_t *pte_base;
|
|
|
|
pmd_t *pmd;
|
|
|
|
void *page_addr;
|
|
|
|
|
|
|
|
pmd = pmd_start + pmd_index(addr);
|
|
|
|
for (; addr < end; addr = next, pmd++) {
|
|
|
|
next = pmd_addr_end(addr, end);
|
|
|
|
|
|
|
|
if (!pmd_present(*pmd))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (pmd_large(*pmd)) {
|
|
|
|
if (IS_ALIGNED(addr, PMD_SIZE) &&
|
|
|
|
IS_ALIGNED(next, PMD_SIZE)) {
|
|
|
|
if (!direct)
|
2018-03-14 12:36:22 +08:00
|
|
|
free_hugepage_table(pmd_page(*pmd),
|
|
|
|
altmap);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pmd_clear(pmd);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
pages++;
|
|
|
|
} else {
|
|
|
|
/* If here, we are freeing vmemmap pages. */
|
|
|
|
memset((void *)addr, PAGE_INUSE, next - addr);
|
|
|
|
|
|
|
|
page_addr = page_address(pmd_page(*pmd));
|
|
|
|
if (!memchr_inv(page_addr, PAGE_INUSE,
|
|
|
|
PMD_SIZE)) {
|
2018-03-14 12:36:22 +08:00
|
|
|
free_hugepage_table(pmd_page(*pmd),
|
|
|
|
altmap);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pmd_clear(pmd);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pte_base = (pte_t *)pmd_page_vaddr(*pmd);
|
2018-03-14 12:36:22 +08:00
|
|
|
remove_pte_table(pte_base, addr, next, direct);
|
|
|
|
free_pte_table(pte_base, pmd);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Call free_pmd_table() in remove_pud_table(). */
|
|
|
|
if (direct)
|
|
|
|
update_page_count(PG_LEVEL_2M, -pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __meminit
|
|
|
|
remove_pud_table(pud_t *pud_start, unsigned long addr, unsigned long end,
|
2017-12-29 15:53:56 +08:00
|
|
|
struct vmem_altmap *altmap, bool direct)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
unsigned long next, pages = 0;
|
|
|
|
pmd_t *pmd_base;
|
|
|
|
pud_t *pud;
|
|
|
|
void *page_addr;
|
|
|
|
|
|
|
|
pud = pud_start + pud_index(addr);
|
|
|
|
for (; addr < end; addr = next, pud++) {
|
|
|
|
next = pud_addr_end(addr, end);
|
|
|
|
|
|
|
|
if (!pud_present(*pud))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (pud_large(*pud)) {
|
|
|
|
if (IS_ALIGNED(addr, PUD_SIZE) &&
|
|
|
|
IS_ALIGNED(next, PUD_SIZE)) {
|
|
|
|
if (!direct)
|
|
|
|
free_pagetable(pud_page(*pud),
|
2018-03-14 12:36:22 +08:00
|
|
|
get_order(PUD_SIZE));
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pud_clear(pud);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
pages++;
|
|
|
|
} else {
|
|
|
|
/* If here, we are freeing vmemmap pages. */
|
|
|
|
memset((void *)addr, PAGE_INUSE, next - addr);
|
|
|
|
|
|
|
|
page_addr = page_address(pud_page(*pud));
|
|
|
|
if (!memchr_inv(page_addr, PAGE_INUSE,
|
|
|
|
PUD_SIZE)) {
|
|
|
|
free_pagetable(pud_page(*pud),
|
2018-03-14 12:36:22 +08:00
|
|
|
get_order(PUD_SIZE));
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pud_clear(pud);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-04-25 17:25:57 +08:00
|
|
|
pmd_base = pmd_offset(pud, 0);
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_pmd_table(pmd_base, addr, next, direct, altmap);
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pmd_table(pmd_base, pud);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (direct)
|
|
|
|
update_page_count(PG_LEVEL_1G, -pages);
|
|
|
|
}
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
static void __meminit
|
|
|
|
remove_p4d_table(p4d_t *p4d_start, unsigned long addr, unsigned long end,
|
2017-12-29 15:53:56 +08:00
|
|
|
struct vmem_altmap *altmap, bool direct)
|
2017-03-18 02:55:15 +08:00
|
|
|
{
|
|
|
|
unsigned long next, pages = 0;
|
|
|
|
pud_t *pud_base;
|
|
|
|
p4d_t *p4d;
|
|
|
|
|
|
|
|
p4d = p4d_start + p4d_index(addr);
|
|
|
|
for (; addr < end; addr = next, p4d++) {
|
|
|
|
next = p4d_addr_end(addr, end);
|
|
|
|
|
|
|
|
if (!p4d_present(*p4d))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
BUILD_BUG_ON(p4d_large(*p4d));
|
|
|
|
|
2017-04-25 17:25:57 +08:00
|
|
|
pud_base = pud_offset(p4d, 0);
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_pud_table(pud_base, addr, next, altmap, direct);
|
2017-06-25 02:05:14 +08:00
|
|
|
/*
|
|
|
|
* For 4-level page tables we do not want to free PUDs, but in the
|
|
|
|
* 5-level case we should free them. This code will have to change
|
|
|
|
* to adapt for boot-time switching between 4 and 5 level page tables.
|
|
|
|
*/
|
2018-05-18 18:35:24 +08:00
|
|
|
if (pgtable_l5_enabled())
|
2018-03-14 12:36:22 +08:00
|
|
|
free_pud_table(pud_base, p4d);
|
2017-03-18 02:55:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (direct)
|
|
|
|
update_page_count(PG_LEVEL_512G, -pages);
|
|
|
|
}
|
|
|
|
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
/* start and end are both virtual address. */
|
|
|
|
static void __meminit
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_pagetable(unsigned long start, unsigned long end, bool direct,
|
|
|
|
struct vmem_altmap *altmap)
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
{
|
|
|
|
unsigned long next;
|
2014-08-23 04:27:31 +08:00
|
|
|
unsigned long addr;
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
2014-08-23 04:27:31 +08:00
|
|
|
for (addr = start; addr < end; addr = next) {
|
|
|
|
next = pgd_addr_end(addr, end);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
|
2014-08-23 04:27:31 +08:00
|
|
|
pgd = pgd_offset_k(addr);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
if (!pgd_present(*pgd))
|
|
|
|
continue;
|
|
|
|
|
2017-04-25 17:25:57 +08:00
|
|
|
p4d = p4d_offset(pgd, 0);
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_p4d_table(p4d, addr, next, altmap, direct);
|
memory-hotplug: common APIs to support page tables hot-remove
When memory is removed, the corresponding pagetables should alse be
removed. This patch introduces some common APIs to support vmemmap
pagetable and x86_64 architecture direct mapping pagetable removing.
All pages of virtual mapping in removed memory cannot be freed if some
pages used as PGD/PUD include not only removed memory but also other
memory. So this patch uses the following way to check whether a page
can be freed or not.
1) When removing memory, the page structs of the removed memory are
filled with 0FD.
2) All page structs are filled with 0xFD on PT/PMD, PT/PMD can be
cleared. In this case, the page used as PT/PMD can be freed.
For direct mapping pages, update direct_pages_count[level] when we freed
their pagetables. And do not free the pages again because they were
freed when offlining.
For vmemmap pages, free the pages and their pagetables.
For larger pages, do not split them into smaller ones because there is
no way to know if the larger page has been split. As a result, there is
no way to decide when to split. We deal the larger pages in the
following way:
1) For direct mapped pages, all the pages were freed when they were
offlined. And since menmory offline is done section by section, all
the memory ranges being removed are aligned to PAGE_SIZE. So only need
to deal with unaligned pages when freeing vmemmap pages.
2) For vmemmap pages being used to store page_struct, if part of the
larger page is still in use, just fill the unused part with 0xFD. And
when the whole page is fulfilled with 0xFD, then free the larger page.
[akpm@linux-foundation.org: fix typo in comment]
[tangchen@cn.fujitsu.com: do not calculate direct mapping pages when freeing vmemmap pagetables]
[tangchen@cn.fujitsu.com: do not free direct mapping pages twice]
[tangchen@cn.fujitsu.com: do not free page split from hugepage one by one]
[tangchen@cn.fujitsu.com: do not split pages when freeing pagetable pages]
[akpm@linux-foundation.org: use pmd_page_vaddr()]
[akpm@linux-foundation.org: fix used-uninitialised bug]
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Jianguo Wu <wujianguo@huawei.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Jiang Liu <jiang.liu@huawei.com>
Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Wu Jianguo <wujianguo@huawei.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-23 08:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
flush_tlb_all();
|
|
|
|
}
|
|
|
|
|
2017-12-29 15:53:56 +08:00
|
|
|
void __ref vmemmap_free(unsigned long start, unsigned long end,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-02-23 08:33:08 +08:00
|
|
|
{
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_pagetable(start, end, false, altmap);
|
2013-02-23 08:33:08 +08:00
|
|
|
}
|
|
|
|
|
2013-02-23 08:33:06 +08:00
|
|
|
static void __meminit
|
|
|
|
kernel_physical_mapping_remove(unsigned long start, unsigned long end)
|
|
|
|
{
|
|
|
|
start = (unsigned long)__va(start);
|
|
|
|
end = (unsigned long)__va(end);
|
|
|
|
|
2017-12-29 15:53:56 +08:00
|
|
|
remove_pagetable(start, end, true, NULL);
|
2013-02-23 08:33:06 +08:00
|
|
|
}
|
|
|
|
|
2019-05-14 08:21:46 +08:00
|
|
|
void __ref arch_remove_memory(int nid, u64 start, u64 size,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-02-23 08:32:58 +08:00
|
|
|
{
|
|
|
|
unsigned long start_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long nr_pages = size >> PAGE_SHIFT;
|
|
|
|
|
2020-01-05 04:59:33 +08:00
|
|
|
__remove_pages(start_pfn, nr_pages, altmap);
|
2016-01-16 08:56:22 +08:00
|
|
|
kernel_physical_mapping_remove(start, start + size);
|
2013-02-23 08:32:58 +08:00
|
|
|
}
|
2006-10-01 14:27:09 +08:00
|
|
|
#endif /* CONFIG_MEMORY_HOTPLUG */
|
|
|
|
|
2009-09-23 07:45:49 +08:00
|
|
|
static struct kcore_list kcore_vsyscall;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-17 11:39:19 +08:00
|
|
|
static void __init register_page_bootmem_info(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_NUMA
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_online_node(i)
|
|
|
|
register_page_bootmem_info_node(NODE_DATA(i));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-07-21 17:59:51 +08:00
|
|
|
/*
|
|
|
|
* Pre-allocates page-table pages for the vmalloc area in the kernel page-table.
|
|
|
|
* Only the level which needs to be synchronized between all page-tables is
|
|
|
|
* allocated because the synchronization can be expensive.
|
|
|
|
*/
|
|
|
|
static void __init preallocate_vmalloc_pages(void)
|
|
|
|
{
|
|
|
|
unsigned long addr;
|
|
|
|
const char *lvl;
|
|
|
|
|
|
|
|
for (addr = VMALLOC_START; addr <= VMALLOC_END; addr = ALIGN(addr + 1, PGDIR_SIZE)) {
|
|
|
|
pgd_t *pgd = pgd_offset_k(addr);
|
|
|
|
p4d_t *p4d;
|
|
|
|
pud_t *pud;
|
|
|
|
|
2020-08-07 16:40:13 +08:00
|
|
|
lvl = "p4d";
|
|
|
|
p4d = p4d_alloc(&init_mm, pgd, addr);
|
|
|
|
if (!p4d)
|
|
|
|
goto failed;
|
2020-07-21 17:59:51 +08:00
|
|
|
|
|
|
|
if (pgtable_l5_enabled())
|
|
|
|
continue;
|
|
|
|
|
2020-08-14 23:19:47 +08:00
|
|
|
/*
|
|
|
|
* The goal here is to allocate all possibly required
|
|
|
|
* hardware page tables pointed to by the top hardware
|
|
|
|
* level.
|
|
|
|
*
|
|
|
|
* On 4-level systems, the P4D layer is folded away and
|
|
|
|
* the above code does no preallocation. Below, go down
|
|
|
|
* to the pud _software_ level to ensure the second
|
|
|
|
* hardware level is allocated on 4-level systems too.
|
|
|
|
*/
|
2020-08-07 16:40:13 +08:00
|
|
|
lvl = "pud";
|
|
|
|
pud = pud_alloc(&init_mm, p4d, addr);
|
|
|
|
if (!pud)
|
|
|
|
goto failed;
|
2020-07-21 17:59:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The pages have to be there now or they will be missing in
|
|
|
|
* process page-tables later.
|
|
|
|
*/
|
|
|
|
panic("Failed to pre-allocate %s pages for vmalloc area\n", lvl);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void __init mem_init(void)
|
|
|
|
{
|
2006-06-26 19:58:11 +08:00
|
|
|
pci_iommu_alloc();
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-01-30 20:32:36 +08:00
|
|
|
/* clear_bss() already clear the empty_zero_page */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-04-30 06:06:53 +08:00
|
|
|
/* this will put all memory onto the freelists */
|
2018-10-31 06:09:30 +08:00
|
|
|
memblock_free_all();
|
2005-04-17 06:20:36 +08:00
|
|
|
after_bootmem = 1;
|
2018-04-11 07:36:10 +08:00
|
|
|
x86_init.hyper.init_after_bootmem();
|
2005-04-17 06:20:36 +08:00
|
|
|
|
x86/mm: set fields in deferred pages
Without deferred struct page feature (CONFIG_DEFERRED_STRUCT_PAGE_INIT),
flags and other fields in "struct page"es are never changed prior to
first initializing struct pages by going through __init_single_page().
With deferred struct page feature enabled, however, we set fields in
register_page_bootmem_info that are subsequently clobbered right after
in free_all_bootmem:
mem_init() {
register_page_bootmem_info();
free_all_bootmem();
...
}
When register_page_bootmem_info() is called only non-deferred struct
pages are initialized. But, this function goes through some reserved
pages which might be part of the deferred, and thus are not yet
initialized.
mem_init
register_page_bootmem_info
register_page_bootmem_info_node
get_page_bootmem
.. setting fields here ..
such as: page->freelist = (void *)type;
free_all_bootmem()
free_low_memory_core_early()
for_each_reserved_mem_region()
reserve_bootmem_region()
init_reserved_page() <- Only if this is deferred reserved page
__init_single_pfn()
__init_single_page()
memset(0) <-- Loose the set fields here
We end up with issue where, currently we do not observe problem as
memory is explicitly zeroed. But, if flag asserts are changed we can
start hitting issues.
Also, because in this patch series we will stop zeroing struct page
memory during allocation, we must make sure that struct pages are
properly initialized prior to using them.
The deferred-reserved pages are initialized in free_all_bootmem().
Therefore, the fix is to switch the above calls.
Link: http://lkml.kernel.org/r/20171013173214.27300-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Steven Sistare <steven.sistare@oracle.com>
Reviewed-by: Daniel Jordan <daniel.m.jordan@oracle.com>
Reviewed-by: Bob Picco <bob.picco@oracle.com>
Tested-by: Bob Picco <bob.picco@oracle.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-11-16 09:36:14 +08:00
|
|
|
/*
|
|
|
|
* Must be done after boot memory is put on freelist, because here we
|
|
|
|
* might set fields in deferred struct pages that have not yet been
|
2018-10-31 06:09:30 +08:00
|
|
|
* initialized, and memblock_free_all() initializes all the reserved
|
x86/mm: set fields in deferred pages
Without deferred struct page feature (CONFIG_DEFERRED_STRUCT_PAGE_INIT),
flags and other fields in "struct page"es are never changed prior to
first initializing struct pages by going through __init_single_page().
With deferred struct page feature enabled, however, we set fields in
register_page_bootmem_info that are subsequently clobbered right after
in free_all_bootmem:
mem_init() {
register_page_bootmem_info();
free_all_bootmem();
...
}
When register_page_bootmem_info() is called only non-deferred struct
pages are initialized. But, this function goes through some reserved
pages which might be part of the deferred, and thus are not yet
initialized.
mem_init
register_page_bootmem_info
register_page_bootmem_info_node
get_page_bootmem
.. setting fields here ..
such as: page->freelist = (void *)type;
free_all_bootmem()
free_low_memory_core_early()
for_each_reserved_mem_region()
reserve_bootmem_region()
init_reserved_page() <- Only if this is deferred reserved page
__init_single_pfn()
__init_single_page()
memset(0) <-- Loose the set fields here
We end up with issue where, currently we do not observe problem as
memory is explicitly zeroed. But, if flag asserts are changed we can
start hitting issues.
Also, because in this patch series we will stop zeroing struct page
memory during allocation, we must make sure that struct pages are
properly initialized prior to using them.
The deferred-reserved pages are initialized in free_all_bootmem().
Therefore, the fix is to switch the above calls.
Link: http://lkml.kernel.org/r/20171013173214.27300-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Steven Sistare <steven.sistare@oracle.com>
Reviewed-by: Daniel Jordan <daniel.m.jordan@oracle.com>
Reviewed-by: Bob Picco <bob.picco@oracle.com>
Tested-by: Bob Picco <bob.picco@oracle.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-11-16 09:36:14 +08:00
|
|
|
* deferred pages for us.
|
|
|
|
*/
|
|
|
|
register_page_bootmem_info();
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Register memory areas for /proc/kcore */
|
2018-02-12 22:44:54 +08:00
|
|
|
if (get_gate_vma(&init_mm))
|
|
|
|
kclist_add(&kcore_vsyscall, (void *)VSYSCALL_ADDR, PAGE_SIZE, KCORE_USER);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2020-07-21 17:59:51 +08:00
|
|
|
preallocate_vmalloc_pages();
|
|
|
|
|
2013-07-04 06:04:19 +08:00
|
|
|
mem_init_print_info(NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2020-06-04 06:59:55 +08:00
|
|
|
#ifdef CONFIG_DEFERRED_STRUCT_PAGE_INIT
|
|
|
|
int __init deferred_page_init_max_threads(const struct cpumask *node_cpumask)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* More CPUs always led to greater speedups on tested systems, up to
|
|
|
|
* all the nodes' CPUs. Use all since the system is otherwise idle
|
|
|
|
* now.
|
|
|
|
*/
|
|
|
|
return max_t(int, cpumask_weight(node_cpumask), 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-29 10:46:56 +08:00
|
|
|
int kernel_set_to_readonly;
|
2009-02-18 06:57:30 +08:00
|
|
|
|
2006-01-06 16:12:04 +08:00
|
|
|
void mark_rodata_ro(void)
|
|
|
|
{
|
2009-10-15 05:46:56 +08:00
|
|
|
unsigned long start = PFN_ALIGN(_text);
|
2012-11-17 05:57:13 +08:00
|
|
|
unsigned long rodata_start = PFN_ALIGN(__start_rodata);
|
2019-10-30 05:13:48 +08:00
|
|
|
unsigned long end = (unsigned long)__end_rodata_hpage_align;
|
|
|
|
unsigned long text_end = PFN_ALIGN(_etext);
|
|
|
|
unsigned long rodata_end = PFN_ALIGN(__end_rodata);
|
2014-11-15 03:47:37 +08:00
|
|
|
unsigned long all_end;
|
2008-05-13 03:20:56 +08:00
|
|
|
|
[PATCH] x86: tighten kernel image page access rights
On x86-64, kernel memory freed after init can be entirely unmapped instead
of just getting 'poisoned' by overwriting with a debug pattern.
On i386 and x86-64 (under CONFIG_DEBUG_RODATA), kernel text and bug table
can also be write-protected.
Compared to the first version, this one prevents re-creating deleted
mappings in the kernel image range on x86-64, if those got removed
previously. This, together with the original changes, prevents temporarily
having inconsistent mappings when cacheability attributes are being
changed on such pages (e.g. from AGP code). While on i386 such duplicate
mappings don't exist, the same change is done there, too, both for
consistency and because checking pte_present() before using various other
pte_XXX functions is a requirement anyway. At once, i386 code gets
adjusted to use pte_huge() instead of open coding this.
AK: split out cpa() changes
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
2007-05-03 01:27:10 +08:00
|
|
|
printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 23:44:24 +08:00
|
|
|
(end - start) >> 10);
|
2008-02-07 05:39:45 +08:00
|
|
|
set_memory_ro(start, (end - start) >> PAGE_SHIFT);
|
|
|
|
|
2009-02-18 06:57:30 +08:00
|
|
|
kernel_set_to_readonly = 1;
|
|
|
|
|
2008-02-07 05:39:45 +08:00
|
|
|
/*
|
2013-01-25 04:20:13 +08:00
|
|
|
* The rodata/data/bss/brk section (but not the kernel text!)
|
|
|
|
* should also be not-executable.
|
2014-11-15 03:47:37 +08:00
|
|
|
*
|
|
|
|
* We align all_end to PMD_SIZE because the existing mapping
|
|
|
|
* is a full PMD. If we would align _brk_end to PAGE_SIZE we
|
|
|
|
* split the PMD and the reminder between _brk_end and the end
|
|
|
|
* of the PMD will remain mapped executable.
|
|
|
|
*
|
|
|
|
* Any PMD which was setup after the one which covers _brk_end
|
|
|
|
* has been zapped already via cleanup_highmem().
|
2008-02-07 05:39:45 +08:00
|
|
|
*/
|
2014-11-15 03:47:37 +08:00
|
|
|
all_end = roundup((unsigned long)_brk_end, PMD_SIZE);
|
2015-10-01 21:04:22 +08:00
|
|
|
set_memory_nx(text_end, (all_end - text_end) >> PAGE_SHIFT);
|
2006-01-06 16:12:04 +08:00
|
|
|
|
x86/ftrace: Have ftrace trampolines turn read-only at the end of system boot up
Booting one of my machines, it triggered the following crash:
Kernel/User page tables isolation: enabled
ftrace: allocating 36577 entries in 143 pages
Starting tracer 'function'
BUG: unable to handle page fault for address: ffffffffa000005c
#PF: supervisor write access in kernel mode
#PF: error_code(0x0003) - permissions violation
PGD 2014067 P4D 2014067 PUD 2015063 PMD 7b253067 PTE 7b252061
Oops: 0003 [#1] PREEMPT SMP PTI
CPU: 0 PID: 0 Comm: swapper Not tainted 5.4.0-test+ #24
Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./To be filled by O.E.M., BIOS SDBLI944.86P 05/08/2007
RIP: 0010:text_poke_early+0x4a/0x58
Code: 34 24 48 89 54 24 08 e8 bf 72 0b 00 48 8b 34 24 48 8b 4c 24 08 84 c0 74 0b 48 89 df f3 a4 48 83 c4 10 5b c3 9c 58 fa 48 89 df <f3> a4 50 9d 48 83 c4 10 5b e9 d6 f9 ff ff
0 41 57 49
RSP: 0000:ffffffff82003d38 EFLAGS: 00010046
RAX: 0000000000000046 RBX: ffffffffa000005c RCX: 0000000000000005
RDX: 0000000000000005 RSI: ffffffff825b9a90 RDI: ffffffffa000005c
RBP: ffffffffa000005c R08: 0000000000000000 R09: ffffffff8206e6e0
R10: ffff88807b01f4c0 R11: ffffffff8176c106 R12: ffffffff8206e6e0
R13: ffffffff824f2440 R14: 0000000000000000 R15: ffffffff8206eac0
FS: 0000000000000000(0000) GS:ffff88807d400000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: ffffffffa000005c CR3: 0000000002012000 CR4: 00000000000006b0
Call Trace:
text_poke_bp+0x27/0x64
? mutex_lock+0x36/0x5d
arch_ftrace_update_trampoline+0x287/0x2d5
? ftrace_replace_code+0x14b/0x160
? ftrace_update_ftrace_func+0x65/0x6c
__register_ftrace_function+0x6d/0x81
ftrace_startup+0x23/0xc1
register_ftrace_function+0x20/0x37
func_set_flag+0x59/0x77
__set_tracer_option.isra.19+0x20/0x3e
trace_set_options+0xd6/0x13e
apply_trace_boot_options+0x44/0x6d
register_tracer+0x19e/0x1ac
early_trace_init+0x21b/0x2c9
start_kernel+0x241/0x518
? load_ucode_intel_bsp+0x21/0x52
secondary_startup_64+0xa4/0xb0
I was able to trigger it on other machines, when I added to the kernel
command line of both "ftrace=function" and "trace_options=func_stack_trace".
The cause is the "ftrace=function" would register the function tracer
and create a trampoline, and it will set it as executable and
read-only. Then the "trace_options=func_stack_trace" would then update
the same trampoline to include the stack tracer version of the function
tracer. But since the trampoline already exists, it updates it with
text_poke_bp(). The problem is that text_poke_bp() called while
system_state == SYSTEM_BOOTING, it will simply do a memcpy() and not
the page mapping, as it would think that the text is still read-write.
But in this case it is not, and we take a fault and crash.
Instead, lets keep the ftrace trampolines read-write during boot up,
and then when the kernel executable text is set to read-only, the
ftrace trampolines get set to read-only as well.
Link: https://lkml.kernel.org/r/20200430202147.4dc6e2de@oasis.local.home
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: stable@vger.kernel.org
Fixes: 768ae4406a5c ("x86/ftrace: Use text_poke()")
Acked-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
2020-05-01 08:21:47 +08:00
|
|
|
set_ftrace_ops_ro();
|
|
|
|
|
2008-01-30 20:33:42 +08:00
|
|
|
#ifdef CONFIG_CPA_DEBUG
|
2008-01-30 20:34:10 +08:00
|
|
|
printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
|
2008-01-30 20:34:06 +08:00
|
|
|
set_memory_rw(start, (end-start) >> PAGE_SHIFT);
|
2008-01-30 20:33:42 +08:00
|
|
|
|
2008-01-30 20:34:10 +08:00
|
|
|
printk(KERN_INFO "Testing CPA: again\n");
|
2008-01-30 20:34:06 +08:00
|
|
|
set_memory_ro(start, (end-start) >> PAGE_SHIFT);
|
2008-01-30 20:33:42 +08:00
|
|
|
#endif
|
2009-10-15 05:46:56 +08:00
|
|
|
|
2019-10-30 05:13:49 +08:00
|
|
|
free_kernel_image_pages("unused kernel image (text/rodata gap)",
|
|
|
|
(void *)text_end, (void *)rodata_start);
|
|
|
|
free_kernel_image_pages("unused kernel image (rodata/data gap)",
|
|
|
|
(void *)rodata_end, (void *)_sdata);
|
2015-10-06 00:55:20 +08:00
|
|
|
|
|
|
|
debug_checkwx();
|
2006-01-06 16:12:04 +08:00
|
|
|
}
|
2008-02-03 04:42:20 +08:00
|
|
|
|
2008-01-30 20:34:10 +08:00
|
|
|
int kern_addr_valid(unsigned long addr)
|
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
|
2008-01-30 20:34:10 +08:00
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2008-01-30 20:34:10 +08:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
if (above != 0 && above != -1UL)
|
2008-01-30 20:34:10 +08:00
|
|
|
return 0;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
pgd = pgd_offset_k(addr);
|
|
|
|
if (pgd_none(*pgd))
|
|
|
|
return 0;
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d = p4d_offset(pgd, addr);
|
|
|
|
if (p4d_none(*p4d))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pud = pud_offset(p4d, addr);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (pud_none(*pud))
|
2008-01-30 20:34:10 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-02-11 22:52:36 +08:00
|
|
|
if (pud_large(*pud))
|
|
|
|
return pfn_valid(pud_pfn(*pud));
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd))
|
|
|
|
return 0;
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
if (pmd_large(*pmd))
|
|
|
|
return pfn_valid(pmd_pfn(*pmd));
|
|
|
|
|
|
|
|
pte = pte_offset_kernel(pmd, addr);
|
|
|
|
if (pte_none(*pte))
|
|
|
|
return 0;
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return pfn_valid(pte_pfn(*pte));
|
|
|
|
}
|
|
|
|
|
x86/mm/memory_hotplug: determine block size based on the end of boot memory
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86, the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hot-plugging/hot-removing can be broken.
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86 the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hotplugging/hotremoving can be broken.
Currently, whenever machine is booted with more than 64G the block size
is unconditionally increased to 2G from the base 128M. This is done in
order to reduce number of memory device files in sysfs:
/sys/devices/system/memory/memoryXXX
We must use the largest allowed block size that aligns to the next
address to be able to hotplug the next block of memory.
So, when memory is larger or equal to 64G, we check the end address and
find the largest block size that is still power of two but smaller or
equal to 2G.
Before, the fix:
Run qemu with:
-m 64G,slots=2,maxmem=66G -object memory-backend-ram,id=mem1,size=2G
(qemu) device_add pc-dimm,id=dimm1,memdev=mem1
Block size [0x80000000] unaligned hotplug range: start 0x1040000000,
size 0x80000000
acpi PNP0C80:00: add_memory failed
acpi PNP0C80:00: acpi_memory_enable_device() error
acpi PNP0C80:00: Enumeration failure
With the fix memory is added successfully as the block size is set to
1G, and therefore aligns with start address 0x1040000000.
[pasha.tatashin@oracle.com: v4]
Link: http://lkml.kernel.org/r/20180215165920.8570-3-pasha.tatashin@oracle.com
Link: http://lkml.kernel.org/r/20180213193159.14606-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Sistare <steven.sistare@oracle.com>
Cc: Daniel Jordan <daniel.m.jordan@oracle.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-04-06 07:22:43 +08:00
|
|
|
/*
|
|
|
|
* Block size is the minimum amount of memory which can be hotplugged or
|
|
|
|
* hotremoved. It must be power of two and must be equal or larger than
|
|
|
|
* MIN_MEMORY_BLOCK_SIZE.
|
|
|
|
*/
|
|
|
|
#define MAX_BLOCK_SIZE (2UL << 30)
|
|
|
|
|
|
|
|
/* Amount of ram needed to start using large blocks */
|
|
|
|
#define MEM_SIZE_FOR_LARGE_BLOCK (64UL << 30)
|
|
|
|
|
2018-05-25 04:17:12 +08:00
|
|
|
/* Adjustable memory block size */
|
|
|
|
static unsigned long set_memory_block_size;
|
|
|
|
int __init set_memory_block_size_order(unsigned int order)
|
|
|
|
{
|
|
|
|
unsigned long size = 1UL << order;
|
|
|
|
|
|
|
|
if (size > MEM_SIZE_FOR_LARGE_BLOCK || size < MIN_MEMORY_BLOCK_SIZE)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
set_memory_block_size = size;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
x86, mm: probe memory block size for generic x86 64bit
On system with 2TiB ram, current x86_64 have 128M as section size, and
one memory_block only include one section. So will have 16400 entries
under /sys/devices/system/memory/.
Current code try to use block id to find block pointer in /sys for any
section, and reuse that block pointer. that finding will take some time
even after commit 7c243c7168dc ("mm: speedup in __early_pfn_to_nid")
that will skip the search in that case during booting up.
So solution could be increase block size just like SGI UV system did.
(harded code to 2g).
This patch is trying to probe the block size to make it match mmio remap
size. for example, Intel Nehalem later system will have memory range [0,
TOML), [4g, TOMH]. If the memory hole is 2g and total is 128g, TOM will
be 2g, and TOM2 will be 130g.
We could use 2g as block size instead of default 128M. That will reduce
number of entries in /sys/devices/system/memory/
On system 6TiB system will reduce boot time by 35 seconds.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2014-06-05 07:06:32 +08:00
|
|
|
static unsigned long probe_memory_block_size(void)
|
2011-01-21 00:46:15 +08:00
|
|
|
{
|
x86/mm/memory_hotplug: determine block size based on the end of boot memory
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86, the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hot-plugging/hot-removing can be broken.
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86 the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hotplugging/hotremoving can be broken.
Currently, whenever machine is booted with more than 64G the block size
is unconditionally increased to 2G from the base 128M. This is done in
order to reduce number of memory device files in sysfs:
/sys/devices/system/memory/memoryXXX
We must use the largest allowed block size that aligns to the next
address to be able to hotplug the next block of memory.
So, when memory is larger or equal to 64G, we check the end address and
find the largest block size that is still power of two but smaller or
equal to 2G.
Before, the fix:
Run qemu with:
-m 64G,slots=2,maxmem=66G -object memory-backend-ram,id=mem1,size=2G
(qemu) device_add pc-dimm,id=dimm1,memdev=mem1
Block size [0x80000000] unaligned hotplug range: start 0x1040000000,
size 0x80000000
acpi PNP0C80:00: add_memory failed
acpi PNP0C80:00: acpi_memory_enable_device() error
acpi PNP0C80:00: Enumeration failure
With the fix memory is added successfully as the block size is set to
1G, and therefore aligns with start address 0x1040000000.
[pasha.tatashin@oracle.com: v4]
Link: http://lkml.kernel.org/r/20180215165920.8570-3-pasha.tatashin@oracle.com
Link: http://lkml.kernel.org/r/20180213193159.14606-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Sistare <steven.sistare@oracle.com>
Cc: Daniel Jordan <daniel.m.jordan@oracle.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-04-06 07:22:43 +08:00
|
|
|
unsigned long boot_mem_end = max_pfn << PAGE_SHIFT;
|
|
|
|
unsigned long bz;
|
x86, mm: probe memory block size for generic x86 64bit
On system with 2TiB ram, current x86_64 have 128M as section size, and
one memory_block only include one section. So will have 16400 entries
under /sys/devices/system/memory/.
Current code try to use block id to find block pointer in /sys for any
section, and reuse that block pointer. that finding will take some time
even after commit 7c243c7168dc ("mm: speedup in __early_pfn_to_nid")
that will skip the search in that case during booting up.
So solution could be increase block size just like SGI UV system did.
(harded code to 2g).
This patch is trying to probe the block size to make it match mmio remap
size. for example, Intel Nehalem later system will have memory range [0,
TOML), [4g, TOMH]. If the memory hole is 2g and total is 128g, TOM will
be 2g, and TOM2 will be 130g.
We could use 2g as block size instead of default 128M. That will reduce
number of entries in /sys/devices/system/memory/
On system 6TiB system will reduce boot time by 35 seconds.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2014-06-05 07:06:32 +08:00
|
|
|
|
2018-05-25 04:17:12 +08:00
|
|
|
/* If memory block size has been set, then use it */
|
|
|
|
bz = set_memory_block_size;
|
|
|
|
if (bz)
|
x86/mm/memory_hotplug: determine block size based on the end of boot memory
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86, the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hot-plugging/hot-removing can be broken.
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86 the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hotplugging/hotremoving can be broken.
Currently, whenever machine is booted with more than 64G the block size
is unconditionally increased to 2G from the base 128M. This is done in
order to reduce number of memory device files in sysfs:
/sys/devices/system/memory/memoryXXX
We must use the largest allowed block size that aligns to the next
address to be able to hotplug the next block of memory.
So, when memory is larger or equal to 64G, we check the end address and
find the largest block size that is still power of two but smaller or
equal to 2G.
Before, the fix:
Run qemu with:
-m 64G,slots=2,maxmem=66G -object memory-backend-ram,id=mem1,size=2G
(qemu) device_add pc-dimm,id=dimm1,memdev=mem1
Block size [0x80000000] unaligned hotplug range: start 0x1040000000,
size 0x80000000
acpi PNP0C80:00: add_memory failed
acpi PNP0C80:00: acpi_memory_enable_device() error
acpi PNP0C80:00: Enumeration failure
With the fix memory is added successfully as the block size is set to
1G, and therefore aligns with start address 0x1040000000.
[pasha.tatashin@oracle.com: v4]
Link: http://lkml.kernel.org/r/20180215165920.8570-3-pasha.tatashin@oracle.com
Link: http://lkml.kernel.org/r/20180213193159.14606-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Sistare <steven.sistare@oracle.com>
Cc: Daniel Jordan <daniel.m.jordan@oracle.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-04-06 07:22:43 +08:00
|
|
|
goto done;
|
x86, mm: probe memory block size for generic x86 64bit
On system with 2TiB ram, current x86_64 have 128M as section size, and
one memory_block only include one section. So will have 16400 entries
under /sys/devices/system/memory/.
Current code try to use block id to find block pointer in /sys for any
section, and reuse that block pointer. that finding will take some time
even after commit 7c243c7168dc ("mm: speedup in __early_pfn_to_nid")
that will skip the search in that case during booting up.
So solution could be increase block size just like SGI UV system did.
(harded code to 2g).
This patch is trying to probe the block size to make it match mmio remap
size. for example, Intel Nehalem later system will have memory range [0,
TOML), [4g, TOMH]. If the memory hole is 2g and total is 128g, TOM will
be 2g, and TOM2 will be 130g.
We could use 2g as block size instead of default 128M. That will reduce
number of entries in /sys/devices/system/memory/
On system 6TiB system will reduce boot time by 35 seconds.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2014-06-05 07:06:32 +08:00
|
|
|
|
x86/mm/memory_hotplug: determine block size based on the end of boot memory
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86, the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hot-plugging/hot-removing can be broken.
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86 the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hotplugging/hotremoving can be broken.
Currently, whenever machine is booted with more than 64G the block size
is unconditionally increased to 2G from the base 128M. This is done in
order to reduce number of memory device files in sysfs:
/sys/devices/system/memory/memoryXXX
We must use the largest allowed block size that aligns to the next
address to be able to hotplug the next block of memory.
So, when memory is larger or equal to 64G, we check the end address and
find the largest block size that is still power of two but smaller or
equal to 2G.
Before, the fix:
Run qemu with:
-m 64G,slots=2,maxmem=66G -object memory-backend-ram,id=mem1,size=2G
(qemu) device_add pc-dimm,id=dimm1,memdev=mem1
Block size [0x80000000] unaligned hotplug range: start 0x1040000000,
size 0x80000000
acpi PNP0C80:00: add_memory failed
acpi PNP0C80:00: acpi_memory_enable_device() error
acpi PNP0C80:00: Enumeration failure
With the fix memory is added successfully as the block size is set to
1G, and therefore aligns with start address 0x1040000000.
[pasha.tatashin@oracle.com: v4]
Link: http://lkml.kernel.org/r/20180215165920.8570-3-pasha.tatashin@oracle.com
Link: http://lkml.kernel.org/r/20180213193159.14606-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Sistare <steven.sistare@oracle.com>
Cc: Daniel Jordan <daniel.m.jordan@oracle.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-04-06 07:22:43 +08:00
|
|
|
/* Use regular block if RAM is smaller than MEM_SIZE_FOR_LARGE_BLOCK */
|
|
|
|
if (boot_mem_end < MEM_SIZE_FOR_LARGE_BLOCK) {
|
|
|
|
bz = MIN_MEMORY_BLOCK_SIZE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2020-08-12 09:32:12 +08:00
|
|
|
/*
|
|
|
|
* Use max block size to minimize overhead on bare metal, where
|
|
|
|
* alignment for memory hotplug isn't a concern.
|
|
|
|
*/
|
|
|
|
if (!boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
|
|
|
|
bz = MAX_BLOCK_SIZE;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
x86/mm/memory_hotplug: determine block size based on the end of boot memory
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86, the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hot-plugging/hot-removing can be broken.
Memory sections are combined into "memory block" chunks. These chunks
are the units upon which memory can be added and removed.
On x86 the new memory may be added after the end of the boot memory,
therefore, if block size does not align with end of boot memory, memory
hotplugging/hotremoving can be broken.
Currently, whenever machine is booted with more than 64G the block size
is unconditionally increased to 2G from the base 128M. This is done in
order to reduce number of memory device files in sysfs:
/sys/devices/system/memory/memoryXXX
We must use the largest allowed block size that aligns to the next
address to be able to hotplug the next block of memory.
So, when memory is larger or equal to 64G, we check the end address and
find the largest block size that is still power of two but smaller or
equal to 2G.
Before, the fix:
Run qemu with:
-m 64G,slots=2,maxmem=66G -object memory-backend-ram,id=mem1,size=2G
(qemu) device_add pc-dimm,id=dimm1,memdev=mem1
Block size [0x80000000] unaligned hotplug range: start 0x1040000000,
size 0x80000000
acpi PNP0C80:00: add_memory failed
acpi PNP0C80:00: acpi_memory_enable_device() error
acpi PNP0C80:00: Enumeration failure
With the fix memory is added successfully as the block size is set to
1G, and therefore aligns with start address 0x1040000000.
[pasha.tatashin@oracle.com: v4]
Link: http://lkml.kernel.org/r/20180215165920.8570-3-pasha.tatashin@oracle.com
Link: http://lkml.kernel.org/r/20180213193159.14606-3-pasha.tatashin@oracle.com
Signed-off-by: Pavel Tatashin <pasha.tatashin@oracle.com>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Sistare <steven.sistare@oracle.com>
Cc: Daniel Jordan <daniel.m.jordan@oracle.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-04-06 07:22:43 +08:00
|
|
|
/* Find the largest allowed block size that aligns to memory end */
|
|
|
|
for (bz = MAX_BLOCK_SIZE; bz > MIN_MEMORY_BLOCK_SIZE; bz >>= 1) {
|
|
|
|
if (IS_ALIGNED(boot_mem_end, bz))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
done:
|
2015-12-01 00:47:43 +08:00
|
|
|
pr_info("x86/mm: Memory block size: %ldMB\n", bz >> 20);
|
x86, mm: probe memory block size for generic x86 64bit
On system with 2TiB ram, current x86_64 have 128M as section size, and
one memory_block only include one section. So will have 16400 entries
under /sys/devices/system/memory/.
Current code try to use block id to find block pointer in /sys for any
section, and reuse that block pointer. that finding will take some time
even after commit 7c243c7168dc ("mm: speedup in __early_pfn_to_nid")
that will skip the search in that case during booting up.
So solution could be increase block size just like SGI UV system did.
(harded code to 2g).
This patch is trying to probe the block size to make it match mmio remap
size. for example, Intel Nehalem later system will have memory range [0,
TOML), [4g, TOMH]. If the memory hole is 2g and total is 128g, TOM will
be 2g, and TOM2 will be 130g.
We could use 2g as block size instead of default 128M. That will reduce
number of entries in /sys/devices/system/memory/
On system 6TiB system will reduce boot time by 35 seconds.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2014-06-05 07:06:32 +08:00
|
|
|
|
|
|
|
return bz;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long memory_block_size_probed;
|
|
|
|
unsigned long memory_block_size_bytes(void)
|
|
|
|
{
|
|
|
|
if (!memory_block_size_probed)
|
|
|
|
memory_block_size_probed = probe_memory_block_size();
|
|
|
|
|
|
|
|
return memory_block_size_probed;
|
|
|
|
}
|
|
|
|
|
2007-10-16 16:24:15 +08:00
|
|
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
|
|
|
/*
|
|
|
|
* Initialise the sparsemem vmemmap using huge-pages at the PMD level.
|
|
|
|
*/
|
2008-04-12 16:19:24 +08:00
|
|
|
static long __meminitdata addr_start, addr_end;
|
|
|
|
static void __meminitdata *p_start, *p_end;
|
|
|
|
static int __meminitdata node_start;
|
|
|
|
|
2013-04-30 06:07:54 +08:00
|
|
|
static int __meminit vmemmap_populate_hugepages(unsigned long start,
|
2016-01-16 08:56:22 +08:00
|
|
|
unsigned long end, int node, struct vmem_altmap *altmap)
|
2007-10-16 16:24:15 +08:00
|
|
|
{
|
2013-04-30 06:07:50 +08:00
|
|
|
unsigned long addr;
|
2007-10-16 16:24:15 +08:00
|
|
|
unsigned long next;
|
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2007-10-16 16:24:15 +08:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
|
2013-04-30 06:07:50 +08:00
|
|
|
for (addr = start; addr < end; addr = next) {
|
2013-04-30 06:07:54 +08:00
|
|
|
next = pmd_addr_end(addr, end);
|
2007-10-16 16:24:15 +08:00
|
|
|
|
|
|
|
pgd = vmemmap_pgd_populate(addr, node);
|
|
|
|
if (!pgd)
|
|
|
|
return -ENOMEM;
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d = vmemmap_p4d_populate(pgd, addr, node);
|
|
|
|
if (!p4d)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
pud = vmemmap_pud_populate(p4d, addr, node);
|
2007-10-16 16:24:15 +08:00
|
|
|
if (!pud)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2013-04-30 06:07:54 +08:00
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd)) {
|
|
|
|
void *p;
|
2008-01-30 20:34:10 +08:00
|
|
|
|
2020-08-07 14:23:24 +08:00
|
|
|
p = vmemmap_alloc_block_buf(PMD_SIZE, node, altmap);
|
2013-04-30 06:07:56 +08:00
|
|
|
if (p) {
|
|
|
|
pte_t entry;
|
|
|
|
|
|
|
|
entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
|
|
|
|
PAGE_KERNEL_LARGE);
|
|
|
|
set_pmd(pmd, __pmd(pte_val(entry)));
|
|
|
|
|
|
|
|
/* check to see if we have contiguous blocks */
|
|
|
|
if (p_end != p || node_start != node) {
|
|
|
|
if (p_start)
|
2015-09-18 04:27:57 +08:00
|
|
|
pr_debug(" [%lx-%lx] PMD -> [%p-%p] on node %d\n",
|
2013-04-30 06:07:56 +08:00
|
|
|
addr_start, addr_end-1, p_start, p_end-1, node_start);
|
|
|
|
addr_start = addr;
|
|
|
|
node_start = node;
|
|
|
|
p_start = p;
|
|
|
|
}
|
2008-06-25 12:19:20 +08:00
|
|
|
|
2013-04-30 06:07:56 +08:00
|
|
|
addr_end = addr + PMD_SIZE;
|
|
|
|
p_end = p + PMD_SIZE;
|
|
|
|
continue;
|
2016-01-16 08:56:22 +08:00
|
|
|
} else if (altmap)
|
|
|
|
return -ENOMEM; /* no fallback */
|
2013-04-30 06:07:56 +08:00
|
|
|
} else if (pmd_large(*pmd)) {
|
2013-04-30 06:07:54 +08:00
|
|
|
vmemmap_verify((pte_t *)pmd, node, addr, next);
|
2013-04-30 06:07:56 +08:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-07 14:23:19 +08:00
|
|
|
if (vmemmap_populate_basepages(addr, next, node, NULL))
|
2013-04-30 06:07:56 +08:00
|
|
|
return -ENOMEM;
|
2007-10-16 16:24:15 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-12 16:19:24 +08:00
|
|
|
|
2017-12-29 15:53:54 +08:00
|
|
|
int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-04-30 06:07:54 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2019-07-19 06:58:11 +08:00
|
|
|
if (end - start < PAGES_PER_SECTION * sizeof(struct page))
|
2020-08-07 14:23:19 +08:00
|
|
|
err = vmemmap_populate_basepages(start, end, node, NULL);
|
2019-07-19 06:58:11 +08:00
|
|
|
else if (boot_cpu_has(X86_FEATURE_PSE))
|
2016-01-16 08:56:22 +08:00
|
|
|
err = vmemmap_populate_hugepages(start, end, node, altmap);
|
|
|
|
else if (altmap) {
|
|
|
|
pr_err_once("%s: no cpu support for altmap allocations\n",
|
|
|
|
__func__);
|
|
|
|
err = -ENOMEM;
|
|
|
|
} else
|
2020-08-07 14:23:19 +08:00
|
|
|
err = vmemmap_populate_basepages(start, end, node, NULL);
|
2013-04-30 06:07:54 +08:00
|
|
|
if (!err)
|
2016-12-15 07:44:03 +08:00
|
|
|
sync_global_pgds(start, end - 1);
|
2013-04-30 06:07:54 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2013-02-23 08:33:00 +08:00
|
|
|
#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HAVE_BOOTMEM_INFO_NODE)
|
|
|
|
void register_page_bootmem_memmap(unsigned long section_nr,
|
2017-10-28 09:30:38 +08:00
|
|
|
struct page *start_page, unsigned long nr_pages)
|
2013-02-23 08:33:00 +08:00
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)start_page;
|
2017-10-28 09:30:38 +08:00
|
|
|
unsigned long end = (unsigned long)(start_page + nr_pages);
|
2013-02-23 08:33:00 +08:00
|
|
|
unsigned long next;
|
|
|
|
pgd_t *pgd;
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d_t *p4d;
|
2013-02-23 08:33:00 +08:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
2017-10-28 09:30:38 +08:00
|
|
|
unsigned int nr_pmd_pages;
|
2013-02-23 08:33:00 +08:00
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
for (; addr < end; addr = next) {
|
|
|
|
pte_t *pte = NULL;
|
|
|
|
|
|
|
|
pgd = pgd_offset_k(addr);
|
|
|
|
if (pgd_none(*pgd)) {
|
|
|
|
next = (addr + PAGE_SIZE) & PAGE_MASK;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
get_page_bootmem(section_nr, pgd_page(*pgd), MIX_SECTION_INFO);
|
|
|
|
|
2017-03-18 02:55:15 +08:00
|
|
|
p4d = p4d_offset(pgd, addr);
|
|
|
|
if (p4d_none(*p4d)) {
|
|
|
|
next = (addr + PAGE_SIZE) & PAGE_MASK;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
get_page_bootmem(section_nr, p4d_page(*p4d), MIX_SECTION_INFO);
|
|
|
|
|
|
|
|
pud = pud_offset(p4d, addr);
|
2013-02-23 08:33:00 +08:00
|
|
|
if (pud_none(*pud)) {
|
|
|
|
next = (addr + PAGE_SIZE) & PAGE_MASK;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
get_page_bootmem(section_nr, pud_page(*pud), MIX_SECTION_INFO);
|
|
|
|
|
2016-03-29 23:42:03 +08:00
|
|
|
if (!boot_cpu_has(X86_FEATURE_PSE)) {
|
2013-02-23 08:33:00 +08:00
|
|
|
next = (addr + PAGE_SIZE) & PAGE_MASK;
|
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd))
|
|
|
|
continue;
|
|
|
|
get_page_bootmem(section_nr, pmd_page(*pmd),
|
|
|
|
MIX_SECTION_INFO);
|
|
|
|
|
|
|
|
pte = pte_offset_kernel(pmd, addr);
|
|
|
|
if (pte_none(*pte))
|
|
|
|
continue;
|
|
|
|
get_page_bootmem(section_nr, pte_page(*pte),
|
|
|
|
SECTION_INFO);
|
|
|
|
} else {
|
|
|
|
next = pmd_addr_end(addr, end);
|
|
|
|
|
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd))
|
|
|
|
continue;
|
|
|
|
|
2017-10-28 09:30:38 +08:00
|
|
|
nr_pmd_pages = 1 << get_order(PMD_SIZE);
|
2013-02-23 08:33:00 +08:00
|
|
|
page = pmd_page(*pmd);
|
2017-10-28 09:30:38 +08:00
|
|
|
while (nr_pmd_pages--)
|
2013-02-23 08:33:00 +08:00
|
|
|
get_page_bootmem(section_nr, page++,
|
|
|
|
SECTION_INFO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-04-12 16:19:24 +08:00
|
|
|
void __meminit vmemmap_populate_print_last(void)
|
|
|
|
{
|
|
|
|
if (p_start) {
|
2015-09-18 04:27:57 +08:00
|
|
|
pr_debug(" [%lx-%lx] PMD -> [%p-%p] on node %d\n",
|
2008-04-12 16:19:24 +08:00
|
|
|
addr_start, addr_end-1, p_start, p_end-1, node_start);
|
|
|
|
p_start = NULL;
|
|
|
|
p_end = NULL;
|
|
|
|
node_start = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-10-16 16:24:15 +08:00
|
|
|
#endif
|