2019-05-19 14:08:55 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/x86_64/mm/init.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995 Linus Torvalds
|
2010-07-18 14:27:13 +02:00
|
|
|
* Copyright (C) 2000 Pavel Machek <pavel@ucw.cz>
|
2005-04-17 00:20:36 +02: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 15:43:36 +02:00
|
|
|
#include <linux/initrd.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/pagemap.h>
|
2010-08-25 22:39:17 +02:00
|
|
|
#include <linux/memblock.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/proc_fs.h>
|
2005-11-05 17:25:53 +01: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-02 19:27:10 +02:00
|
|
|
#include <linux/pfn.h>
|
2006-06-27 11:53:52 +02:00
|
|
|
#include <linux/poison.h>
|
2006-01-11 22:44:42 +01:00
|
|
|
#include <linux/dma-mapping.h>
|
2011-06-14 02:57:50 +02:00
|
|
|
#include <linux/memory.h>
|
2006-01-17 07:03:41 +01:00
|
|
|
#include <linux/memory_hotplug.h>
|
2016-01-16 01:56:22 +01:00
|
|
|
#include <linux/memremap.h>
|
2007-05-02 19:27:11 +02: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 09:04:11 +01:00
|
|
|
#include <linux/gfp.h>
|
2013-04-12 01:10:25 +02:00
|
|
|
#include <linux/kcore.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
2008-10-12 15:06:29 +02:00
|
|
|
#include <asm/bios_ebda.h>
|
2016-12-24 20:46:01 +01:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/pgalloc.h>
|
|
|
|
#include <asm/dma.h>
|
|
|
|
#include <asm/fixmap.h>
|
2017-01-27 10:27:10 +01:00
|
|
|
#include <asm/e820/api.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/apic.h>
|
|
|
|
#include <asm/tlb.h>
|
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <asm/proto.h>
|
|
|
|
#include <asm/smp.h>
|
2005-11-05 17:25:53 +01:00
|
|
|
#include <asm/sections.h>
|
2008-01-30 13:30:17 +01:00
|
|
|
#include <asm/kdebug.h>
|
2008-01-30 13:30:17 +01:00
|
|
|
#include <asm/numa.h>
|
2017-05-09 00:58:11 +02:00
|
|
|
#include <asm/set_memory.h>
|
2009-03-05 13:55:08 +01:00
|
|
|
#include <asm/init.h>
|
2015-11-30 17:47:43 +01:00
|
|
|
#include <asm/uv/uv.h>
|
2011-02-18 12:30:30 +01:00
|
|
|
#include <asm/setup.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-11-17 04:39:01 +01:00
|
|
|
#include "mm_internal.h"
|
|
|
|
|
2016-05-07 00:01:34 +02:00
|
|
|
#include "ident_map.c"
|
2013-01-24 21:19:48 +01:00
|
|
|
|
2019-04-17 17:41:17 +02: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 00:20:36 +02: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-06 22:55:06 +02:00
|
|
|
/* Bits supported by the hardware: */
|
2014-01-07 18:03:06 +01:00
|
|
|
pteval_t __supported_pte_mask __read_mostly = ~0;
|
2018-04-06 22:55:06 +02:00
|
|
|
/* Bits allowed in normal kernel mappings: */
|
|
|
|
pteval_t __default_kernel_pte_mask __read_mostly = ~0;
|
2008-09-05 09:58:28 +02:00
|
|
|
EXPORT_SYMBOL_GPL(__supported_pte_mask);
|
2018-04-06 22:55:06 +02:00
|
|
|
/* Used in PAGE_KERNEL_* macros which are reasonably used out-of-tree: */
|
|
|
|
EXPORT_SYMBOL(__default_kernel_pte_mask);
|
2008-09-05 09:58:28 +02:00
|
|
|
|
|
|
|
int force_personality32;
|
|
|
|
|
2008-09-05 10:23:26 +02: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 09:58:28 +02: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-14 19:25:41 +01:00
|
|
|
static void sync_global_pgds_l5(unsigned long start, unsigned long end)
|
2017-06-06 13:31:29 +02: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-14 19:25:41 +01:00
|
|
|
|
|
|
|
static void sync_global_pgds_l4(unsigned long start, unsigned long end)
|
2010-05-19 11:42:14 +02: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 04:25:47 +02:00
|
|
|
unsigned long addr;
|
2010-10-15 02:04:59 +02: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 04:25:47 +02:00
|
|
|
for (addr = start; addr <= end; addr = ALIGN(addr + 1, PGDIR_SIZE)) {
|
|
|
|
pgd_t *pgd_ref = pgd_offset_k(addr);
|
2017-03-17 19:55:15 +01:00
|
|
|
const p4d_t *p4d_ref;
|
2010-10-15 02:04:59 +02:00
|
|
|
struct page *page;
|
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
/*
|
|
|
|
* With folded p4d, pgd_none() is always false, we need to
|
|
|
|
* handle synchonization on p4d level.
|
|
|
|
*/
|
2018-02-14 12:16:53 +01: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 04:25:47 +02:00
|
|
|
p4d_ref = p4d_offset(pgd_ref, addr);
|
2017-03-17 19:55:15 +01:00
|
|
|
|
|
|
|
if (p4d_none(*p4d_ref))
|
2010-10-15 02:04:59 +02:00
|
|
|
continue;
|
|
|
|
|
2011-02-17 00:45:22 +01:00
|
|
|
spin_lock(&pgd_lock);
|
2010-10-15 02:04:59 +02:00
|
|
|
list_for_each_entry(page, &pgd_list, lru) {
|
2012-12-15 21:29:54 +01:00
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2010-09-21 21:01:51 +02: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 04:25:47 +02:00
|
|
|
pgd = (pgd_t *)page_address(page) + pgd_index(addr);
|
|
|
|
p4d = p4d_offset(pgd, addr);
|
2011-02-17 00:45:22 +01:00
|
|
|
/* the pgt_lock only for Xen */
|
2010-09-21 21:01:51 +02:00
|
|
|
pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
|
|
|
|
spin_lock(pgt_lock);
|
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
if (!p4d_none(*p4d_ref) && !p4d_none(*p4d))
|
|
|
|
BUG_ON(p4d_page_vaddr(*p4d)
|
|
|
|
!= p4d_page_vaddr(*p4d_ref));
|
2010-09-21 21:01:51 +02:00
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
if (p4d_none(*p4d))
|
|
|
|
set_p4d(p4d, *p4d_ref);
|
2014-08-22 22:27:34 +02:00
|
|
|
|
2010-09-21 21:01:51 +02:00
|
|
|
spin_unlock(pgt_lock);
|
2010-10-15 02:04:59 +02:00
|
|
|
}
|
2011-02-17 00:45:22 +01:00
|
|
|
spin_unlock(&pgd_lock);
|
2010-10-15 02:04:59 +02:00
|
|
|
}
|
2010-05-19 11:42:14 +02:00
|
|
|
}
|
2018-02-14 19:25:41 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When memory was added make sure all the processes MM have
|
|
|
|
* suitable PGD entries in the local PGD level page.
|
|
|
|
*/
|
|
|
|
void sync_global_pgds(unsigned long start, unsigned long end)
|
|
|
|
{
|
2018-05-18 12:35:24 +02:00
|
|
|
if (pgtable_l5_enabled())
|
2018-02-14 19:25:41 +01:00
|
|
|
sync_global_pgds_l5(start, end);
|
|
|
|
else
|
|
|
|
sync_global_pgds_l4(start, end);
|
|
|
|
}
|
2010-05-19 11:42:14 +02:00
|
|
|
|
2008-08-15 18:32:24 +02: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 13:34:10 +01:00
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
void *ptr;
|
2008-01-30 13:34:10 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (after_bootmem)
|
2017-11-16 02:35:54 +01:00
|
|
|
ptr = (void *) get_zeroed_page(GFP_ATOMIC);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2018-10-30 23:08:58 +01:00
|
|
|
ptr = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
|
2008-01-30 13:34:10 +01: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 00:20:36 +02:00
|
|
|
|
2008-01-30 13:34:10 +01:00
|
|
|
pr_debug("spp_getpage %p\n", ptr);
|
2008-01-30 13:34:10 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return ptr;
|
2008-01-30 13:34:10 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
static p4d_t *fill_p4d(pgd_t *pgd, unsigned long vaddr)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2009-02-24 03:57:21 +01:00
|
|
|
if (pgd_none(*pgd)) {
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d = (p4d_t *)spp_getpage();
|
|
|
|
pgd_populate(&init_mm, pgd, p4d);
|
|
|
|
if (p4d != p4d_offset(pgd, 0))
|
2009-02-24 03:57:21 +01:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
|
2017-03-17 19:55:15 +01: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 03:57:21 +01:00
|
|
|
}
|
2017-03-17 19:55:15 +01:00
|
|
|
return pud_offset(p4d, vaddr);
|
2009-02-24 03:57:21 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-03-03 21:02:57 +01:00
|
|
|
static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
|
2009-02-24 03:57:21 +01:00
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pud_none(*pud)) {
|
2009-02-24 03:57:21 +01:00
|
|
|
pmd_t *pmd = (pmd_t *) spp_getpage();
|
2008-06-25 06:19:02 +02:00
|
|
|
pud_populate(&init_mm, pud, pmd);
|
2009-02-24 03:57:21 +01:00
|
|
|
if (pmd != pmd_offset(pud, 0))
|
2017-03-17 19:55:15 +01:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #02! %p <-> %p\n",
|
2009-02-24 03:57:21 +01:00
|
|
|
pmd, pmd_offset(pud, 0));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2009-02-24 03:57:21 +01:00
|
|
|
return pmd_offset(pud, vaddr);
|
|
|
|
}
|
|
|
|
|
2009-03-03 21:02:57 +01:00
|
|
|
static pte_t *fill_pte(pmd_t *pmd, unsigned long vaddr)
|
2009-02-24 03:57:21 +01:00
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pmd_none(*pmd)) {
|
2009-02-24 03:57:21 +01:00
|
|
|
pte_t *pte = (pte_t *) spp_getpage();
|
2008-06-25 06:19:02 +02:00
|
|
|
pmd_populate_kernel(&init_mm, pmd, pte);
|
2009-02-24 03:57:21 +01:00
|
|
|
if (pte != pte_offset_kernel(pmd, 0))
|
2017-03-17 19:55:15 +01:00
|
|
|
printk(KERN_ERR "PAGETABLE BUG #03!\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2009-02-24 03:57:21 +01:00
|
|
|
return pte_offset_kernel(pmd, vaddr);
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
static void __set_pte_vaddr(pud_t *pud, unsigned long vaddr, pte_t new_pte)
|
2009-02-24 03:57:21 +01:00
|
|
|
{
|
2017-03-17 19:55:15 +01:00
|
|
|
pmd_t *pmd = fill_pmd(pud, vaddr);
|
|
|
|
pte_t *pte = fill_pte(pmd, vaddr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
set_pte(pte, new_pte);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's enough to flush this one mapping.
|
|
|
|
* (PGE mappings get flushed as well)
|
|
|
|
*/
|
2018-01-31 17:03:10 +01:00
|
|
|
__flush_tlb_one_kernel(vaddr);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2017-03-17 19:55:15 +01: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 03:57:21 +01:00
|
|
|
void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
|
2008-06-25 06:19:22 +02:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d_page;
|
2008-06-25 06:19:22 +02: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-17 19:55:15 +01:00
|
|
|
|
|
|
|
p4d_page = p4d_offset(pgd, 0);
|
|
|
|
set_pte_vaddr_p4d(p4d_page, vaddr, pteval);
|
2008-06-25 06:19:22 +02:00
|
|
|
}
|
|
|
|
|
2009-02-24 03:57:21 +01:00
|
|
|
pmd_t * __init populate_extra_pmd(unsigned long vaddr)
|
2009-02-20 08:29:09 +01:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2009-02-20 08:29:09 +01:00
|
|
|
pud_t *pud;
|
|
|
|
|
|
|
|
pgd = pgd_offset_k(vaddr);
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d = fill_p4d(pgd, vaddr);
|
|
|
|
pud = fill_pud(p4d, vaddr);
|
2009-02-24 03:57:21 +01:00
|
|
|
return fill_pmd(pud, vaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
pte_t * __init populate_extra_pte(unsigned long vaddr)
|
|
|
|
{
|
|
|
|
pmd_t *pmd;
|
2009-02-20 08:29:09 +01:00
|
|
|
|
2009-02-24 03:57:21 +01:00
|
|
|
pmd = populate_extra_pmd(vaddr);
|
|
|
|
return fill_pte(pmd, vaddr);
|
2009-02-20 08:29:09 +01:00
|
|
|
}
|
|
|
|
|
2008-07-01 21:45:32 +02: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 14:01:52 +01:00
|
|
|
enum page_cache_mode cache)
|
2008-07-01 21:45:32 +02:00
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2008-07-01 21:45:32 +02:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
2014-11-03 14:01:52 +01:00
|
|
|
pgprot_t prot;
|
2008-07-01 21:45:32 +02:00
|
|
|
|
2014-11-03 14:01:52 +01:00
|
|
|
pgprot_val(prot) = pgprot_val(PAGE_KERNEL_LARGE) |
|
|
|
|
pgprot_val(pgprot_4k_2_large(cachemode2pgprot(cache)));
|
2008-07-01 21:45:32 +02: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-17 19:55:15 +01: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-01 21:45:32 +02:00
|
|
|
pud = (pud_t *) spp_getpage();
|
2017-03-17 19:55:15 +01:00
|
|
|
set_p4d(p4d, __p4d(__pa(pud) | _KERNPG_TABLE |
|
2008-07-01 21:45:32 +02:00
|
|
|
_PAGE_USER));
|
|
|
|
}
|
2017-03-17 19:55:15 +01:00
|
|
|
pud = pud_offset(p4d, (unsigned long)__va(phys));
|
2008-07-01 21:45:32 +02: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 14:01:52 +01:00
|
|
|
__init_extra_mapping(phys, size, _PAGE_CACHE_MODE_WB);
|
2008-07-01 21:45:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init init_extra_mapping_uc(unsigned long phys, unsigned long size)
|
|
|
|
{
|
2014-11-03 14:01:52 +01:00
|
|
|
__init_extra_mapping(phys, size, _PAGE_CACHE_MODE_UC);
|
2008-07-01 21:45:32 +02:00
|
|
|
}
|
|
|
|
|
2008-02-15 17:29:12 +01:00
|
|
|
/*
|
2008-02-21 11:04:11 +01:00
|
|
|
* The head.S code sets up the kernel high mapping:
|
|
|
|
*
|
|
|
|
* from __START_KERNEL_map to __START_KERNEL_map + size (== _end-_text)
|
2008-02-15 17:29:12 +01:00
|
|
|
*
|
2013-05-15 04:58:07 +02:00
|
|
|
* phys_base holds the negative offset to the kernel, which is added
|
2008-02-15 17:29:12 +01: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 12:30:30 +01: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-15 17:29:12 +01:00
|
|
|
* well, as they are located before _text:
|
|
|
|
*/
|
|
|
|
void __init cleanup_highmap(void)
|
|
|
|
{
|
|
|
|
unsigned long vaddr = __START_KERNEL_map;
|
2013-01-24 21:19:54 +01:00
|
|
|
unsigned long vaddr_end = __START_KERNEL_map + KERNEL_IMAGE_SIZE;
|
2011-02-18 12:30:30 +01:00
|
|
|
unsigned long end = roundup((unsigned long)_brk_end, PMD_SIZE) - 1;
|
2008-02-15 17:29:12 +01:00
|
|
|
pmd_t *pmd = level2_kernel_pgt;
|
|
|
|
|
2013-01-24 21:19:54 +01: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 12:30:30 +01:00
|
|
|
for (; vaddr + PMD_SIZE - 1 < vaddr_end; pmd++, vaddr += PMD_SIZE) {
|
2008-05-28 20:36:07 +02:00
|
|
|
if (pmd_none(*pmd))
|
2008-02-15 17:29:12 +01:00
|
|
|
continue;
|
|
|
|
if (vaddr < (unsigned long) _text || vaddr > end)
|
|
|
|
set_pmd(pmd, __pmd(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
/*
|
|
|
|
* Create PTE level page table mapping for physical addresses.
|
|
|
|
* It returns the last physical address mapped.
|
|
|
|
*/
|
2008-07-10 05:15:02 +02:00
|
|
|
static unsigned long __meminit
|
2016-06-22 02:46:59 +02:00
|
|
|
phys_pte_init(pte_t *pte_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 17:41:17 +02:00
|
|
|
pgprot_t prot, bool init)
|
2008-06-25 06:19:19 +02:00
|
|
|
{
|
2016-06-22 02:46:59 +02:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
|
|
|
pte_t *pte;
|
2008-06-25 06:19:19 +02:00
|
|
|
int i;
|
2008-07-10 05:15:02 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
pte = pte_page + pte_index(paddr);
|
|
|
|
i = pte_index(paddr);
|
2008-06-25 06:19:19 +02:00
|
|
|
|
2016-06-22 02:46:59 +02: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 04:38:56 +01:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PAGE_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PAGE_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pte_init(pte, __pte(0), init);
|
2012-11-17 04:38:56 +01:00
|
|
|
continue;
|
2008-06-25 06:19:19 +02:00
|
|
|
}
|
|
|
|
|
2008-10-07 22:58:46 +02: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 02:19:15 +02:00
|
|
|
if (!pte_none(*pte)) {
|
2012-10-04 15:48:10 +02:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2008-06-25 06:19:19 +02:00
|
|
|
continue;
|
2008-10-26 06:58:21 +01:00
|
|
|
}
|
2008-06-25 06:19:19 +02:00
|
|
|
|
|
|
|
if (0)
|
2016-06-22 02:46:59 +02:00
|
|
|
pr_info(" pte=%p addr=%lx pte=%016lx\n", pte, paddr,
|
|
|
|
pfn_pte(paddr >> PAGE_SHIFT, PAGE_KERNEL).pte);
|
2008-06-25 06:19:19 +02:00
|
|
|
pages++;
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pte_init(pte, pfn_pte(paddr >> PAGE_SHIFT, prot), init);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = (paddr & PAGE_MASK) + PAGE_SIZE;
|
2008-06-25 06:19:19 +02:00
|
|
|
}
|
2008-09-23 23:00:38 +02:00
|
|
|
|
2008-06-25 06:19:19 +02:00
|
|
|
update_page_count(PG_LEVEL_4K, pages);
|
2008-07-10 05:15:02 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
return paddr_last;
|
2008-06-25 06:19:19 +02:00
|
|
|
}
|
|
|
|
|
2016-06-22 02:46:59 +02: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 03:53:28 +01:00
|
|
|
static unsigned long __meminit
|
2016-06-22 02:46:59 +02:00
|
|
|
phys_pmd_init(pmd_t *pmd_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 17:41:17 +02:00
|
|
|
unsigned long page_size_mask, pgprot_t prot, bool init)
|
2006-01-17 07:03:41 +01:00
|
|
|
{
|
2016-06-22 02:46:59 +02:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
2008-05-02 11:46:49 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
int i = pmd_index(paddr);
|
2006-01-17 07:03:41 +01:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
for (; i < PTRS_PER_PMD; i++, paddr = paddr_next) {
|
|
|
|
pmd_t *pmd = pmd_page + pmd_index(paddr);
|
2008-06-25 06:19:19 +02:00
|
|
|
pte_t *pte;
|
2008-10-07 22:58:46 +02:00
|
|
|
pgprot_t new_prot = prot;
|
2006-01-17 07:03:41 +01:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_next = (paddr & PMD_MASK) + PMD_SIZE;
|
|
|
|
if (paddr >= paddr_end) {
|
2012-11-17 04:38:56 +01:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PMD_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PMD_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pmd_init(pmd, __pmd(0), init);
|
2012-11-17 04:38:56 +01:00
|
|
|
continue;
|
2006-01-17 07:03:41 +01:00
|
|
|
}
|
2006-09-26 10:52:36 +02:00
|
|
|
|
2016-07-08 02:19:15 +02:00
|
|
|
if (!pmd_none(*pmd)) {
|
2008-08-21 15:27:22 +02:00
|
|
|
if (!pmd_large(*pmd)) {
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2012-11-17 04:38:59 +01:00
|
|
|
pte = (pte_t *)pmd_page_vaddr(*pmd);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = phys_pte_init(pte, paddr,
|
2019-04-17 17:41:17 +02:00
|
|
|
paddr_end, prot,
|
|
|
|
init);
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2008-09-23 23:00:38 +02:00
|
|
|
continue;
|
2008-08-21 15:27:22 +02:00
|
|
|
}
|
2008-10-07 22:58:46 +02: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 06:58:21 +01:00
|
|
|
if (page_size_mask & (1 << PG_LEVEL_2M)) {
|
2012-10-04 15:48:10 +02:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = paddr_next;
|
2008-10-07 22:58:46 +02:00
|
|
|
continue;
|
2008-10-26 06:58:21 +01:00
|
|
|
}
|
2008-10-07 22:58:46 +02:00
|
|
|
new_prot = pte_pgprot(pte_clrhuge(*(pte_t *)pmd));
|
2008-06-25 06:19:19 +02:00
|
|
|
}
|
|
|
|
|
2008-07-08 10:41:05 +02:00
|
|
|
if (page_size_mask & (1<<PG_LEVEL_2M)) {
|
2008-06-25 06:19:19 +02:00
|
|
|
pages++;
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pte_init((pte_t *)pmd,
|
|
|
|
pfn_pte((paddr & PMD_MASK) >> PAGE_SHIFT,
|
|
|
|
__pgprot(pgprot_val(prot) | _PAGE_PSE)),
|
|
|
|
init);
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = paddr_next;
|
2006-09-26 10:52:36 +02:00
|
|
|
continue;
|
2008-06-25 06:19:19 +02:00
|
|
|
}
|
2006-09-26 10:52:36 +02:00
|
|
|
|
2012-11-17 04:39:00 +01:00
|
|
|
pte = alloc_low_page();
|
2019-04-17 17:41:17 +02:00
|
|
|
paddr_last = phys_pte_init(pte, paddr, paddr_end, new_prot, init);
|
2008-06-25 06:19:19 +02:00
|
|
|
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 17:41:17 +02:00
|
|
|
pmd_populate_kernel_init(&init_mm, pmd, pte, init);
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2006-01-17 07:03:41 +01:00
|
|
|
}
|
2008-05-02 11:46:49 +02:00
|
|
|
update_page_count(PG_LEVEL_2M, pages);
|
2016-06-22 02:46:59 +02:00
|
|
|
return paddr_last;
|
2006-01-17 07:03:41 +01:00
|
|
|
}
|
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
/*
|
|
|
|
* Create PUD level page table mapping for physical addresses. The virtual
|
2016-06-22 02:47:00 +02: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 02:46:59 +02:00
|
|
|
* It returns the last physical address mapped.
|
|
|
|
*/
|
2008-03-12 03:53:28 +01:00
|
|
|
static unsigned long __meminit
|
2016-06-22 02:46:59 +02:00
|
|
|
phys_pud_init(pud_t *pud_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 17:41:17 +02:00
|
|
|
unsigned long page_size_mask, bool init)
|
2008-01-30 13:34:10 +01:00
|
|
|
{
|
2016-06-22 02:46:59 +02:00
|
|
|
unsigned long pages = 0, paddr_next;
|
|
|
|
unsigned long paddr_last = paddr_end;
|
2016-06-22 02:47:00 +02:00
|
|
|
unsigned long vaddr = (unsigned long)__va(paddr);
|
|
|
|
int i = pud_index(vaddr);
|
2006-01-17 07:03:41 +01:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
for (; i < PTRS_PER_PUD; i++, paddr = paddr_next) {
|
2016-06-22 02:47:00 +02:00
|
|
|
pud_t *pud;
|
2005-04-17 00:20:36 +02:00
|
|
|
pmd_t *pmd;
|
2008-10-07 22:58:46 +02:00
|
|
|
pgprot_t prot = PAGE_KERNEL;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2016-06-22 02:47:00 +02:00
|
|
|
vaddr = (unsigned long)__va(paddr);
|
|
|
|
pud = pud_page + pud_index(vaddr);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_next = (paddr & PUD_MASK) + PUD_SIZE;
|
2016-06-22 02:47:00 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
if (paddr >= paddr_end) {
|
2012-11-17 04:38:56 +01:00
|
|
|
if (!after_bootmem &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PUD_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RAM) &&
|
2017-01-28 14:14:25 +01:00
|
|
|
!e820__mapped_any(paddr & PUD_MASK, paddr_next,
|
2017-01-28 17:09:33 +01:00
|
|
|
E820_TYPE_RESERVED_KERN))
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pud_init(pud, __pud(0), init);
|
2005-04-17 00:20:36 +02:00
|
|
|
continue;
|
2008-01-30 13:34:10 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2016-07-08 02:19:15 +02:00
|
|
|
if (!pud_none(*pud)) {
|
2008-09-23 23:00:38 +02:00
|
|
|
if (!pud_large(*pud)) {
|
2012-11-17 04:38:59 +01:00
|
|
|
pmd = pmd_offset(pud, 0);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = phys_pmd_init(pmd, paddr,
|
|
|
|
paddr_end,
|
|
|
|
page_size_mask,
|
2019-04-17 17:41:17 +02:00
|
|
|
prot, init);
|
2008-09-23 23:00:38 +02:00
|
|
|
continue;
|
|
|
|
}
|
2008-10-07 22:58:46 +02: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 06:58:21 +01:00
|
|
|
if (page_size_mask & (1 << PG_LEVEL_1G)) {
|
2012-10-04 15:48:10 +02:00
|
|
|
if (!after_bootmem)
|
|
|
|
pages++;
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = paddr_next;
|
2008-10-07 22:58:46 +02:00
|
|
|
continue;
|
2008-10-26 06:58:21 +01:00
|
|
|
}
|
2008-10-07 22:58:46 +02:00
|
|
|
prot = pte_pgprot(pte_clrhuge(*(pte_t *)pud));
|
2008-04-17 17:40:45 +02:00
|
|
|
}
|
|
|
|
|
2008-07-08 10:41:05 +02:00
|
|
|
if (page_size_mask & (1<<PG_LEVEL_1G)) {
|
2008-05-02 11:46:49 +02:00
|
|
|
pages++;
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 17:41:17 +02:00
|
|
|
set_pte_init((pte_t *)pud,
|
|
|
|
pfn_pte((paddr & PUD_MASK) >> PAGE_SHIFT,
|
|
|
|
PAGE_KERNEL_LARGE),
|
|
|
|
init);
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = paddr_next;
|
2006-09-26 10:52:36 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-11-17 04:39:00 +01:00
|
|
|
pmd = alloc_low_page();
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = phys_pmd_init(pmd, paddr, paddr_end,
|
2019-04-17 17:41:17 +02:00
|
|
|
page_size_mask, prot, init);
|
2008-08-21 15:27:22 +02:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 17:41:17 +02:00
|
|
|
pud_populate_init(&init_mm, pud, pmd, init);
|
2006-01-17 07:03:41 +01:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2008-09-23 23:00:38 +02:00
|
|
|
|
2008-05-02 11:46:49 +02:00
|
|
|
update_page_count(PG_LEVEL_1G, pages);
|
2008-03-12 03:53:28 +01:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
return paddr_last;
|
2008-01-30 13:34:10 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2017-06-06 13:31:30 +02:00
|
|
|
static unsigned long __meminit
|
|
|
|
phys_p4d_init(p4d_t *p4d_page, unsigned long paddr, unsigned long paddr_end,
|
2019-04-17 17:41:17 +02:00
|
|
|
unsigned long page_size_mask, bool init)
|
2017-06-06 13:31:30 +02:00
|
|
|
{
|
2019-06-24 14:31:50 +02: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 13:31:30 +02:00
|
|
|
|
2018-05-18 12:35:24 +02:00
|
|
|
if (!pgtable_l5_enabled())
|
2019-04-17 17:41:17 +02:00
|
|
|
return phys_pud_init((pud_t *) p4d_page, paddr, paddr_end,
|
|
|
|
page_size_mask, init);
|
2017-06-06 13:31:30 +02:00
|
|
|
|
2019-06-24 14:31:50 +02:00
|
|
|
for (; vaddr < vaddr_end; vaddr = vaddr_next) {
|
|
|
|
p4d_t *p4d = p4d_page + p4d_index(vaddr);
|
2017-06-06 13:31:30 +02:00
|
|
|
pud_t *pud;
|
|
|
|
|
2019-06-24 14:31:50 +02:00
|
|
|
vaddr_next = (vaddr & P4D_MASK) + P4D_SIZE;
|
|
|
|
paddr = __pa(vaddr);
|
2017-06-06 13:31:30 +02:00
|
|
|
|
|
|
|
if (paddr >= paddr_end) {
|
2019-06-24 14:31:50 +02:00
|
|
|
paddr_next = __pa(vaddr_next);
|
2017-06-06 13:31:30 +02: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 17:41:17 +02:00
|
|
|
set_p4d_init(p4d, __p4d(0), init);
|
2017-06-06 13:31:30 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!p4d_none(*p4d)) {
|
|
|
|
pud = pud_offset(p4d, 0);
|
2019-06-24 14:31:50 +02:00
|
|
|
paddr_last = phys_pud_init(pud, paddr, __pa(vaddr_end),
|
|
|
|
page_size_mask, init);
|
2017-06-06 13:31:30 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pud = alloc_low_page();
|
2019-06-24 14:31:50 +02:00
|
|
|
paddr_last = phys_pud_init(pud, paddr, __pa(vaddr_end),
|
2019-04-17 17:41:17 +02:00
|
|
|
page_size_mask, init);
|
2017-06-06 13:31:30 +02:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2019-04-17 17:41:17 +02:00
|
|
|
p4d_populate_init(&init_mm, p4d, pud, init);
|
2017-06-06 13:31:30 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
return paddr_last;
|
|
|
|
}
|
|
|
|
|
2019-04-17 17:41:17 +02:00
|
|
|
static unsigned long __meminit
|
|
|
|
__kernel_physical_mapping_init(unsigned long paddr_start,
|
|
|
|
unsigned long paddr_end,
|
|
|
|
unsigned long page_size_mask,
|
|
|
|
bool init)
|
2008-01-30 13:34:10 +01:00
|
|
|
{
|
2010-08-20 11:50:16 +02:00
|
|
|
bool pgd_changed = false;
|
2016-06-22 02:46:59 +02:00
|
|
|
unsigned long vaddr, vaddr_start, vaddr_end, vaddr_next, paddr_last;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
paddr_last = paddr_end;
|
|
|
|
vaddr = (unsigned long)__va(paddr_start);
|
|
|
|
vaddr_end = (unsigned long)__va(paddr_end);
|
|
|
|
vaddr_start = vaddr;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
for (; vaddr < vaddr_end; vaddr = vaddr_next) {
|
|
|
|
pgd_t *pgd = pgd_offset_k(vaddr);
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2006-01-17 07:03:41 +01:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
vaddr_next = (vaddr & PGDIR_MASK) + PGDIR_SIZE;
|
2008-06-25 06:19:19 +02:00
|
|
|
|
2017-06-06 13:31:30 +02:00
|
|
|
if (pgd_val(*pgd)) {
|
|
|
|
p4d = (p4d_t *)pgd_page_vaddr(*pgd);
|
|
|
|
paddr_last = phys_p4d_init(p4d, __pa(vaddr),
|
2016-06-22 02:46:59 +02:00
|
|
|
__pa(vaddr_end),
|
2019-04-17 17:41:17 +02:00
|
|
|
page_size_mask,
|
|
|
|
init);
|
2008-06-25 06:19:19 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-06 13:31:30 +02:00
|
|
|
p4d = alloc_low_page();
|
|
|
|
paddr_last = phys_p4d_init(p4d, __pa(vaddr), __pa(vaddr_end),
|
2019-04-17 17:41:17 +02:00
|
|
|
page_size_mask, init);
|
2008-08-21 15:27:22 +02:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
2018-05-18 12:35:24 +02:00
|
|
|
if (pgtable_l5_enabled())
|
2019-04-17 17:41:17 +02:00
|
|
|
pgd_populate_init(&init_mm, pgd, p4d, init);
|
2017-06-06 13:31:30 +02:00
|
|
|
else
|
2019-04-17 17:41:17 +02:00
|
|
|
p4d_populate_init(&init_mm, p4d_offset(pgd, vaddr),
|
|
|
|
(pud_t *) p4d, init);
|
|
|
|
|
2008-08-21 15:27:22 +02:00
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
2010-08-20 11:50:16 +02:00
|
|
|
pgd_changed = true;
|
2008-01-30 13:34:10 +01:00
|
|
|
}
|
2010-08-20 11:50:16 +02:00
|
|
|
|
|
|
|
if (pgd_changed)
|
2016-12-15 00:44:03 +01:00
|
|
|
sync_global_pgds(vaddr_start, vaddr_end - 1);
|
2010-08-20 11:50:16 +02:00
|
|
|
|
2016-06-22 02:46:59 +02:00
|
|
|
return paddr_last;
|
2008-07-08 10:41:05 +02:00
|
|
|
}
|
2008-07-10 05:15:02 +02:00
|
|
|
|
2019-04-17 17:41:17 +02: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,
|
|
|
|
unsigned long page_size_mask)
|
|
|
|
{
|
|
|
|
return __kernel_physical_mapping_init(paddr_start, paddr_end,
|
|
|
|
page_size_mask, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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,
|
|
|
|
page_size_mask, false);
|
|
|
|
}
|
|
|
|
|
2005-06-23 09:08:06 +02:00
|
|
|
#ifndef CONFIG_NUMA
|
2011-02-16 12:13:06 +01:00
|
|
|
void __init initmem_init(void)
|
2008-06-22 11:44:49 +02:00
|
|
|
{
|
2018-06-15 00:28:02 +02:00
|
|
|
memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0);
|
2008-06-22 11:44:49 +02:00
|
|
|
}
|
2009-05-07 14:35:41 +02:00
|
|
|
#endif
|
2008-06-22 11:44:49 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void __init paging_init(void)
|
|
|
|
{
|
2009-05-07 14:35:41 +02:00
|
|
|
sparse_memory_present_with_active_regions(MAX_NUMNODES);
|
2006-01-17 07:03:41 +01:00
|
|
|
sparse_init();
|
2009-07-08 18:50:19 +02: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-12 22:51:46 +01:00
|
|
|
node_clear_state(0, N_MEMORY);
|
|
|
|
if (N_MEMORY != N_NORMAL_MEMORY)
|
|
|
|
node_clear_state(0, N_NORMAL_MEMORY);
|
2009-07-08 18:50:19 +02:00
|
|
|
|
2011-11-01 14:58:17 +01:00
|
|
|
zone_sizes_init();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-01-17 07:03:41 +01:00
|
|
|
/*
|
|
|
|
* Memory hotplug specific functions
|
|
|
|
*/
|
2006-06-27 11:53:30 +02:00
|
|
|
#ifdef CONFIG_MEMORY_HOTPLUG
|
2010-02-02 22:44:16 +01:00
|
|
|
/*
|
|
|
|
* After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
|
|
|
|
* updating.
|
|
|
|
*/
|
2017-09-09 01:11:39 +02:00
|
|
|
static void update_end_of_memory_vars(u64 start, u64 size)
|
2010-02-02 22:44:16 +01: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 08:53:53 +01:00
|
|
|
int add_pages(int nid, unsigned long start_pfn, unsigned long nr_pages,
|
2019-05-14 02:21:26 +02:00
|
|
|
struct mhp_restrictions *restrictions)
|
2006-01-17 07:03:41 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2019-05-14 02:21:26 +02:00
|
|
|
ret = __add_pages(nid, start_pfn, nr_pages, restrictions);
|
2008-10-29 00:43:14 +01:00
|
|
|
WARN_ON_ONCE(ret);
|
2006-01-17 07:03:41 +01:00
|
|
|
|
2010-02-02 22:44:16 +01:00
|
|
|
/* update max_pfn, max_low_pfn and high_memory */
|
2017-09-09 01:11:39 +02:00
|
|
|
update_end_of_memory_vars(start_pfn << PAGE_SHIFT,
|
|
|
|
nr_pages << PAGE_SHIFT);
|
2010-02-02 22:44:16 +01:00
|
|
|
|
2006-01-17 07:03:41 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2017-09-09 01:11:39 +02:00
|
|
|
|
2019-05-14 02:21:26 +02:00
|
|
|
int arch_add_memory(int nid, u64 start, u64 size,
|
|
|
|
struct mhp_restrictions *restrictions)
|
2017-09-09 01:11:39 +02:00
|
|
|
{
|
|
|
|
unsigned long start_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long nr_pages = size >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
init_memory_mapping(start, start + size);
|
|
|
|
|
2019-05-14 02:21:26 +02:00
|
|
|
return add_pages(nid, start_pfn, nr_pages, restrictions);
|
2017-09-09 01:11:39 +02:00
|
|
|
}
|
2006-01-17 07:03:41 +01: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 01:33:04 +01:00
|
|
|
#define PAGE_INUSE 0xFD
|
|
|
|
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
{
|
|
|
|
unsigned long magic;
|
|
|
|
unsigned int nr_pages = 1 << order;
|
2016-01-16 01:56:22 +01: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 01:33:04 +01:00
|
|
|
/* bootmem page has reserved flag */
|
|
|
|
if (PageReserved(page)) {
|
|
|
|
__ClearPageReserved(page);
|
|
|
|
|
2017-02-23 00:45:13 +01: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 01:33:04 +01:00
|
|
|
if (magic == SECTION_INFO || magic == MIX_SECTION_INFO) {
|
|
|
|
while (nr_pages--)
|
|
|
|
put_page_bootmem(page++);
|
|
|
|
} else
|
2013-07-04 00:03:17 +02: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 01:33:04 +01:00
|
|
|
} else
|
|
|
|
free_pages((unsigned long)page_address(page), order);
|
|
|
|
}
|
|
|
|
|
2018-03-14 05:36:22 +01:00
|
|
|
static void __meminit free_hugepage_table(struct page *page,
|
2017-12-29 08:53:56 +01:00
|
|
|
struct vmem_altmap *altmap)
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
{
|
|
|
|
pte_t *pte;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PTRS_PER_PTE; i++) {
|
|
|
|
pte = pte_start + i;
|
2016-07-08 02:19:15 +02: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 01:33:04 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pte talbe */
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pmd_clear(pmd);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
{
|
|
|
|
pmd_t *pmd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < PTRS_PER_PMD; i++) {
|
|
|
|
pmd = pmd_start + i;
|
2016-07-08 02:19:15 +02: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 01:33:04 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free a pmd talbe */
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pud_clear(pud);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
|
2018-03-14 05:36:22 +01:00
|
|
|
static void __meminit free_pud_table(pud_t *pud_start, p4d_t *p4d)
|
2017-03-17 19:55:15 +01: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 05:36:22 +01:00
|
|
|
free_pagetable(p4d_page(*p4d), 0);
|
2017-03-17 19:55:15 +01: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 01:33:04 +01:00
|
|
|
static void __meminit
|
|
|
|
remove_pte_table(pte_t *pte_start, unsigned long addr, unsigned long end,
|
2018-03-14 05:36:22 +01: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 01:33:04 +01: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 03:19:30 +01: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 01:33:04 +01:00
|
|
|
/*
|
|
|
|
* Do not free direct mapping pages since they were
|
|
|
|
* freed when offlining, or simplely not in use.
|
|
|
|
*/
|
|
|
|
if (!direct)
|
2018-03-14 05:36:22 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01: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 08:53:56 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01: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 08:53:56 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01: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 05:36:22 +01: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 01:33:04 +01:00
|
|
|
|
|
|
|
spin_lock(&init_mm.page_table_lock);
|
|
|
|
pud_clear(pud);
|
|
|
|
spin_unlock(&init_mm.page_table_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:25:57 +02:00
|
|
|
pmd_base = pmd_offset(pud, 0);
|
2017-12-29 08:53:56 +01:00
|
|
|
remove_pmd_table(pmd_base, addr, next, direct, altmap);
|
2018-03-14 05:36:22 +01: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 01:33:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (direct)
|
|
|
|
update_page_count(PG_LEVEL_1G, -pages);
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
static void __meminit
|
|
|
|
remove_p4d_table(p4d_t *p4d_start, unsigned long addr, unsigned long end,
|
2017-12-29 08:53:56 +01:00
|
|
|
struct vmem_altmap *altmap, bool direct)
|
2017-03-17 19:55:15 +01: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 11:25:57 +02:00
|
|
|
pud_base = pud_offset(p4d, 0);
|
2017-12-29 08:53:56 +01:00
|
|
|
remove_pud_table(pud_base, addr, next, altmap, direct);
|
2017-06-24 20:05:14 +02: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 12:35:24 +02:00
|
|
|
if (pgtable_l5_enabled())
|
2018-03-14 05:36:22 +01:00
|
|
|
free_pud_table(pud_base, p4d);
|
2017-03-17 19:55:15 +01: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 01:33:04 +01:00
|
|
|
/* start and end are both virtual address. */
|
|
|
|
static void __meminit
|
2017-12-29 08:53:56 +01: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 01:33:04 +01:00
|
|
|
{
|
|
|
|
unsigned long next;
|
2014-08-22 22:27:31 +02: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 01:33:04 +01:00
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01: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 01:33:04 +01:00
|
|
|
|
2014-08-22 22:27:31 +02: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 01:33:04 +01:00
|
|
|
|
2014-08-22 22:27:31 +02: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 01:33:04 +01:00
|
|
|
if (!pgd_present(*pgd))
|
|
|
|
continue;
|
|
|
|
|
2017-04-25 11:25:57 +02:00
|
|
|
p4d = p4d_offset(pgd, 0);
|
2017-12-29 08:53:56 +01: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 01:33:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
flush_tlb_all();
|
|
|
|
}
|
|
|
|
|
2017-12-29 08:53:56 +01:00
|
|
|
void __ref vmemmap_free(unsigned long start, unsigned long end,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-02-23 01:33:08 +01:00
|
|
|
{
|
2017-12-29 08:53:56 +01:00
|
|
|
remove_pagetable(start, end, false, altmap);
|
2013-02-23 01:33:08 +01:00
|
|
|
}
|
|
|
|
|
2013-02-23 01:33:06 +01: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 08:53:56 +01:00
|
|
|
remove_pagetable(start, end, true, NULL);
|
2013-02-23 01:33:06 +01:00
|
|
|
}
|
|
|
|
|
2019-05-14 02:21:46 +02:00
|
|
|
void __ref arch_remove_memory(int nid, u64 start, u64 size,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-02-23 01:32:58 +01:00
|
|
|
{
|
|
|
|
unsigned long start_pfn = start >> PAGE_SHIFT;
|
|
|
|
unsigned long nr_pages = size >> PAGE_SHIFT;
|
|
|
|
|
2020-01-04 21:59:33 +01:00
|
|
|
__remove_pages(start_pfn, nr_pages, altmap);
|
2016-01-16 01:56:22 +01:00
|
|
|
kernel_physical_mapping_remove(start, start + size);
|
2013-02-23 01:32:58 +01:00
|
|
|
}
|
2006-10-01 08:27:09 +02:00
|
|
|
#endif /* CONFIG_MEMORY_HOTPLUG */
|
|
|
|
|
2009-09-23 01:45:49 +02:00
|
|
|
static struct kcore_list kcore_vsyscall;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-11-17 04:39:19 +01: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
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void __init mem_init(void)
|
|
|
|
{
|
2006-06-26 13:58:11 +02:00
|
|
|
pci_iommu_alloc();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-30 13:32:36 +01:00
|
|
|
/* clear_bss() already clear the empty_zero_page */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-04-30 00:06:53 +02:00
|
|
|
/* this will put all memory onto the freelists */
|
2018-10-30 23:09:30 +01:00
|
|
|
memblock_free_all();
|
2005-04-17 00:20:36 +02:00
|
|
|
after_bootmem = 1;
|
2018-04-11 01:36:10 +02:00
|
|
|
x86_init.hyper.init_after_bootmem();
|
2005-04-17 00:20:36 +02: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 02:36:14 +01: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-30 23:09:30 +01: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 02:36:14 +01:00
|
|
|
* deferred pages for us.
|
|
|
|
*/
|
|
|
|
register_page_bootmem_info();
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Register memory areas for /proc/kcore */
|
2018-02-12 15:44:54 +01:00
|
|
|
if (get_gate_vma(&init_mm))
|
|
|
|
kclist_add(&kcore_vsyscall, (void *)VSYSCALL_ADDR, PAGE_SIZE, KCORE_USER);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-07-04 00:04:19 +02:00
|
|
|
mem_init_print_info(NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2009-10-29 03:46:56 +01:00
|
|
|
int kernel_set_to_readonly;
|
2009-02-17 23:57:30 +01:00
|
|
|
|
2006-01-06 09:12:04 +01:00
|
|
|
void mark_rodata_ro(void)
|
|
|
|
{
|
2009-10-14 23:46:56 +02:00
|
|
|
unsigned long start = PFN_ALIGN(_text);
|
2012-11-16 22:57:13 +01:00
|
|
|
unsigned long rodata_start = PFN_ALIGN(__start_rodata);
|
2019-10-29 22:13:48 +01: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-14 20:47:37 +01:00
|
|
|
unsigned long all_end;
|
2008-05-12 21:20:56 +02: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-02 19:27:10 +02: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 17:44:24 +02:00
|
|
|
(end - start) >> 10);
|
2008-02-06 22:39:45 +01:00
|
|
|
set_memory_ro(start, (end - start) >> PAGE_SHIFT);
|
|
|
|
|
2009-02-17 23:57:30 +01:00
|
|
|
kernel_set_to_readonly = 1;
|
|
|
|
|
2008-02-06 22:39:45 +01:00
|
|
|
/*
|
2013-01-24 21:20:13 +01:00
|
|
|
* The rodata/data/bss/brk section (but not the kernel text!)
|
|
|
|
* should also be not-executable.
|
2014-11-14 20:47:37 +01: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-06 22:39:45 +01:00
|
|
|
*/
|
2014-11-14 20:47:37 +01:00
|
|
|
all_end = roundup((unsigned long)_brk_end, PMD_SIZE);
|
2015-10-01 15:04:22 +02:00
|
|
|
set_memory_nx(text_end, (all_end - text_end) >> PAGE_SHIFT);
|
2006-01-06 09:12:04 +01:00
|
|
|
|
2008-01-30 13:33:42 +01:00
|
|
|
#ifdef CONFIG_CPA_DEBUG
|
2008-01-30 13:34:10 +01:00
|
|
|
printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
|
2008-01-30 13:34:06 +01:00
|
|
|
set_memory_rw(start, (end-start) >> PAGE_SHIFT);
|
2008-01-30 13:33:42 +01:00
|
|
|
|
2008-01-30 13:34:10 +01:00
|
|
|
printk(KERN_INFO "Testing CPA: again\n");
|
2008-01-30 13:34:06 +01:00
|
|
|
set_memory_ro(start, (end-start) >> PAGE_SHIFT);
|
2008-01-30 13:33:42 +01:00
|
|
|
#endif
|
2009-10-14 23:46:56 +02:00
|
|
|
|
2019-10-29 22:13:49 +01: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-05 18:55:20 +02:00
|
|
|
|
|
|
|
debug_checkwx();
|
2006-01-06 09:12:04 +01:00
|
|
|
}
|
2008-02-02 21:42:20 +01:00
|
|
|
|
2008-01-30 13:34:10 +01:00
|
|
|
int kern_addr_valid(unsigned long addr)
|
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
|
2008-01-30 13:34:10 +01:00
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2008-01-30 13:34:10 +01:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (above != 0 && above != -1UL)
|
2008-01-30 13:34:10 +01:00
|
|
|
return 0;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
pgd = pgd_offset_k(addr);
|
|
|
|
if (pgd_none(*pgd))
|
|
|
|
return 0;
|
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d = p4d_offset(pgd, addr);
|
|
|
|
if (p4d_none(*p4d))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pud = pud_offset(p4d, addr);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pud_none(*pud))
|
2008-01-30 13:34:10 +01:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-02-11 15:52:36 +01:00
|
|
|
if (pud_large(*pud))
|
|
|
|
return pfn_valid(pud_pfn(*pud));
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd))
|
|
|
|
return 0;
|
2008-01-30 13:34:10 +01:00
|
|
|
|
2005-04-17 00:20:36 +02: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 13:34:10 +01:00
|
|
|
|
2005-04-17 00:20:36 +02: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 01:22:43 +02: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-24 22:17:12 +02: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 01:06:32 +02:00
|
|
|
static unsigned long probe_memory_block_size(void)
|
2011-01-20 17:46:15 +01: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 01:22:43 +02: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 01:06:32 +02:00
|
|
|
|
2018-05-24 22:17:12 +02: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 01:22:43 +02: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 01:06:32 +02: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 01:22:43 +02: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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-11-30 17:47:43 +01: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 01:06:32 +02: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 10:24:15 +02:00
|
|
|
#ifdef CONFIG_SPARSEMEM_VMEMMAP
|
|
|
|
/*
|
|
|
|
* Initialise the sparsemem vmemmap using huge-pages at the PMD level.
|
|
|
|
*/
|
2008-04-12 10:19:24 +02:00
|
|
|
static long __meminitdata addr_start, addr_end;
|
|
|
|
static void __meminitdata *p_start, *p_end;
|
|
|
|
static int __meminitdata node_start;
|
|
|
|
|
2013-04-30 00:07:54 +02:00
|
|
|
static int __meminit vmemmap_populate_hugepages(unsigned long start,
|
2016-01-16 01:56:22 +01:00
|
|
|
unsigned long end, int node, struct vmem_altmap *altmap)
|
2007-10-16 10:24:15 +02:00
|
|
|
{
|
2013-04-30 00:07:50 +02:00
|
|
|
unsigned long addr;
|
2007-10-16 10:24:15 +02:00
|
|
|
unsigned long next;
|
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2007-10-16 10:24:15 +02:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
|
2013-04-30 00:07:50 +02:00
|
|
|
for (addr = start; addr < end; addr = next) {
|
2013-04-30 00:07:54 +02:00
|
|
|
next = pmd_addr_end(addr, end);
|
2007-10-16 10:24:15 +02:00
|
|
|
|
|
|
|
pgd = vmemmap_pgd_populate(addr, node);
|
|
|
|
if (!pgd)
|
|
|
|
return -ENOMEM;
|
2008-01-30 13:34:10 +01:00
|
|
|
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d = vmemmap_p4d_populate(pgd, addr, node);
|
|
|
|
if (!p4d)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
pud = vmemmap_pud_populate(p4d, addr, node);
|
2007-10-16 10:24:15 +02:00
|
|
|
if (!pud)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2013-04-30 00:07:54 +02:00
|
|
|
pmd = pmd_offset(pud, addr);
|
|
|
|
if (pmd_none(*pmd)) {
|
|
|
|
void *p;
|
2008-01-30 13:34:10 +01:00
|
|
|
|
2017-12-29 08:53:58 +01:00
|
|
|
if (altmap)
|
|
|
|
p = altmap_alloc_block_buf(PMD_SIZE, altmap);
|
|
|
|
else
|
|
|
|
p = vmemmap_alloc_block_buf(PMD_SIZE, node);
|
2013-04-30 00:07:56 +02: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-17 22:27:57 +02:00
|
|
|
pr_debug(" [%lx-%lx] PMD -> [%p-%p] on node %d\n",
|
2013-04-30 00:07:56 +02: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 06:19:20 +02:00
|
|
|
|
2013-04-30 00:07:56 +02:00
|
|
|
addr_end = addr + PMD_SIZE;
|
|
|
|
p_end = p + PMD_SIZE;
|
|
|
|
continue;
|
2016-01-16 01:56:22 +01:00
|
|
|
} else if (altmap)
|
|
|
|
return -ENOMEM; /* no fallback */
|
2013-04-30 00:07:56 +02:00
|
|
|
} else if (pmd_large(*pmd)) {
|
2013-04-30 00:07:54 +02:00
|
|
|
vmemmap_verify((pte_t *)pmd, node, addr, next);
|
2013-04-30 00:07:56 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (vmemmap_populate_basepages(addr, next, node))
|
|
|
|
return -ENOMEM;
|
2007-10-16 10:24:15 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-12 10:19:24 +02:00
|
|
|
|
2017-12-29 08:53:54 +01:00
|
|
|
int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
|
|
|
|
struct vmem_altmap *altmap)
|
2013-04-30 00:07:54 +02:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2019-07-19 00:58:11 +02:00
|
|
|
if (end - start < PAGES_PER_SECTION * sizeof(struct page))
|
|
|
|
err = vmemmap_populate_basepages(start, end, node);
|
|
|
|
else if (boot_cpu_has(X86_FEATURE_PSE))
|
2016-01-16 01:56:22 +01: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
|
2013-04-30 00:07:54 +02:00
|
|
|
err = vmemmap_populate_basepages(start, end, node);
|
|
|
|
if (!err)
|
2016-12-15 00:44:03 +01:00
|
|
|
sync_global_pgds(start, end - 1);
|
2013-04-30 00:07:54 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2013-02-23 01:33:00 +01: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 03:30:38 +02:00
|
|
|
struct page *start_page, unsigned long nr_pages)
|
2013-02-23 01:33:00 +01:00
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)start_page;
|
2017-10-28 03:30:38 +02:00
|
|
|
unsigned long end = (unsigned long)(start_page + nr_pages);
|
2013-02-23 01:33:00 +01:00
|
|
|
unsigned long next;
|
|
|
|
pgd_t *pgd;
|
2017-03-17 19:55:15 +01:00
|
|
|
p4d_t *p4d;
|
2013-02-23 01:33:00 +01:00
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
2017-10-28 03:30:38 +02:00
|
|
|
unsigned int nr_pmd_pages;
|
2013-02-23 01:33:00 +01: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-17 19:55:15 +01: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 01:33:00 +01: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 17:42:03 +02:00
|
|
|
if (!boot_cpu_has(X86_FEATURE_PSE)) {
|
2013-02-23 01:33:00 +01: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 03:30:38 +02:00
|
|
|
nr_pmd_pages = 1 << get_order(PMD_SIZE);
|
2013-02-23 01:33:00 +01:00
|
|
|
page = pmd_page(*pmd);
|
2017-10-28 03:30:38 +02:00
|
|
|
while (nr_pmd_pages--)
|
2013-02-23 01:33:00 +01:00
|
|
|
get_page_bootmem(section_nr, page++,
|
|
|
|
SECTION_INFO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-04-12 10:19:24 +02:00
|
|
|
void __meminit vmemmap_populate_print_last(void)
|
|
|
|
{
|
|
|
|
if (p_start) {
|
2015-09-17 22:27:57 +02:00
|
|
|
pr_debug(" [%lx-%lx] PMD -> [%p-%p] on node %d\n",
|
2008-04-12 10:19:24 +02: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 10:24:15 +02:00
|
|
|
#endif
|