2008-01-30 12:33:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2002 Andi Kleen, SuSE Labs.
|
2005-04-16 22:20:36 +00:00
|
|
|
* Thanks to Ben LaHaise for precious feedback.
|
2008-01-30 12:33:41 +00:00
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/highmem.h>
|
2008-01-30 12:34:04 +00:00
|
|
|
#include <linux/bootmem.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/module.h>
|
2008-01-30 12:33:41 +00:00
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/mm.h>
|
2008-02-09 22:24:09 +00:00
|
|
|
#include <linux/interrupt.h>
|
2008-04-17 15:40:45 +00:00
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/debugfs.h>
|
2009-06-22 02:56:24 +00:00
|
|
|
#include <linux/pfn.h>
|
2009-07-03 23:10:59 +00:00
|
|
|
#include <linux/percpu.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 08:04:11 +00:00
|
|
|
#include <linux/gfp.h>
|
2010-11-16 21:31:26 +00:00
|
|
|
#include <linux/pci.h>
|
2008-01-30 12:33:41 +00:00
|
|
|
|
2008-01-30 12:34:06 +00:00
|
|
|
#include <asm/e820.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/tlbflush.h>
|
2006-01-06 08:12:10 +00:00
|
|
|
#include <asm/sections.h>
|
x86: add brk allocation for very, very early allocations
Impact: new interface
Add a brk()-like allocator which effectively extends the bss in order
to allow very early code to do dynamic allocations. This is better than
using statically allocated arrays for data in subsystems which may never
get used.
The space for brk allocations is in the bss ELF segment, so that the
space is mapped properly by the code which maps the kernel, and so
that bootloaders keep the space free rather than putting a ramdisk or
something into it.
The bss itself, delimited by __bss_stop, ends before the brk area
(__brk_base to __brk_limit). The kernel text, data and bss is reserved
up to __bss_stop.
Any brk-allocated data is reserved separately just before the kernel
pagetable is built, as that code allocates from unreserved spaces
in the e820 map, potentially allocating from any unused brk memory.
Ultimately any unused memory in the brk area is used in the general
kernel memory pool.
Initially the brk space is set to 1MB, which is probably much larger
than any user needs (the largest current user is i386 head_32.S's code
to build the pagetables to map the kernel, which can get fairly large
with a big kernel image and no PSE support). So long as the system
has sufficient memory for the bootloader to reserve the kernel+1MB brk,
there are no bad effects resulting from an over-large brk.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-02-27 01:35:44 +00:00
|
|
|
#include <asm/setup.h>
|
2008-01-30 12:33:41 +00:00
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <asm/pgalloc.h>
|
2008-02-18 19:54:14 +00:00
|
|
|
#include <asm/proto.h>
|
2008-03-19 00:00:18 +00:00
|
|
|
#include <asm/pat.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-02-04 15:48:09 +00:00
|
|
|
/*
|
|
|
|
* The current flushing context - we pass it instead of 5 arguments:
|
|
|
|
*/
|
2008-02-04 15:48:07 +00:00
|
|
|
struct cpa_data {
|
2008-08-21 02:46:06 +00:00
|
|
|
unsigned long *vaddr;
|
2008-02-04 15:48:07 +00:00
|
|
|
pgprot_t mask_set;
|
|
|
|
pgprot_t mask_clr;
|
2008-02-04 15:48:07 +00:00
|
|
|
int numpages;
|
2008-08-21 02:46:06 +00:00
|
|
|
int flags;
|
2008-02-18 19:54:14 +00:00
|
|
|
unsigned long pfn;
|
2008-03-12 02:53:29 +00:00
|
|
|
unsigned force_split : 1;
|
2008-08-21 02:46:06 +00:00
|
|
|
int curpage;
|
2009-03-19 21:51:14 +00:00
|
|
|
struct page **pages;
|
2008-02-04 15:48:07 +00:00
|
|
|
};
|
|
|
|
|
2008-09-23 21:00:42 +00:00
|
|
|
/*
|
|
|
|
* Serialize cpa() (for !DEBUG_PAGEALLOC which uses large identity mappings)
|
|
|
|
* using cpa_lock. So that we don't allow any other cpu, with stale large tlb
|
|
|
|
* entries change the page attribute in parallel to some other cpu
|
|
|
|
* splitting a large page entry along with changing the attribute.
|
|
|
|
*/
|
|
|
|
static DEFINE_SPINLOCK(cpa_lock);
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
#define CPA_FLUSHTLB 1
|
|
|
|
#define CPA_ARRAY 2
|
2009-03-19 21:51:14 +00:00
|
|
|
#define CPA_PAGES_ARRAY 4
|
2008-08-21 02:46:06 +00:00
|
|
|
|
2008-05-05 14:35:21 +00:00
|
|
|
#ifdef CONFIG_PROC_FS
|
2008-05-02 09:46:49 +00:00
|
|
|
static unsigned long direct_pages_count[PG_LEVEL_NUM];
|
|
|
|
|
2008-05-05 14:35:21 +00:00
|
|
|
void update_page_count(int level, unsigned long pages)
|
2008-05-02 09:46:49 +00:00
|
|
|
{
|
|
|
|
/* Protect against CPA */
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_lock(&pgd_lock);
|
2008-05-02 09:46:49 +00:00
|
|
|
direct_pages_count[level] += pages;
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_unlock(&pgd_lock);
|
2008-05-05 14:35:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void split_page_count(int level)
|
|
|
|
{
|
|
|
|
direct_pages_count[level]--;
|
|
|
|
direct_pages_count[level - 1] += PTRS_PER_PTE;
|
|
|
|
}
|
|
|
|
|
2008-10-15 19:50:22 +00:00
|
|
|
void arch_report_meminfo(struct seq_file *m)
|
2008-05-05 14:35:21 +00:00
|
|
|
{
|
2008-11-06 12:05:40 +00:00
|
|
|
seq_printf(m, "DirectMap4k: %8lu kB\n",
|
2008-08-15 12:58:32 +00:00
|
|
|
direct_pages_count[PG_LEVEL_4K] << 2);
|
|
|
|
#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
|
2008-11-06 12:05:40 +00:00
|
|
|
seq_printf(m, "DirectMap2M: %8lu kB\n",
|
2008-08-15 12:58:32 +00:00
|
|
|
direct_pages_count[PG_LEVEL_2M] << 11);
|
|
|
|
#else
|
2008-11-06 12:05:40 +00:00
|
|
|
seq_printf(m, "DirectMap4M: %8lu kB\n",
|
2008-08-15 12:58:32 +00:00
|
|
|
direct_pages_count[PG_LEVEL_2M] << 12);
|
|
|
|
#endif
|
2008-05-05 14:35:21 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
2008-08-15 12:58:32 +00:00
|
|
|
if (direct_gbpages)
|
2008-11-06 12:05:40 +00:00
|
|
|
seq_printf(m, "DirectMap1G: %8lu kB\n",
|
2008-08-15 12:58:32 +00:00
|
|
|
direct_pages_count[PG_LEVEL_1G] << 20);
|
2008-05-02 09:46:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
2008-05-05 14:35:21 +00:00
|
|
|
#else
|
|
|
|
static inline void split_page_count(int level) { }
|
|
|
|
#endif
|
2008-05-02 09:46:49 +00:00
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
|
|
|
|
static inline unsigned long highmap_start_pfn(void)
|
|
|
|
{
|
|
|
|
return __pa(_text) >> PAGE_SHIFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long highmap_end_pfn(void)
|
|
|
|
{
|
x86: add brk allocation for very, very early allocations
Impact: new interface
Add a brk()-like allocator which effectively extends the bss in order
to allow very early code to do dynamic allocations. This is better than
using statically allocated arrays for data in subsystems which may never
get used.
The space for brk allocations is in the bss ELF segment, so that the
space is mapped properly by the code which maps the kernel, and so
that bootloaders keep the space free rather than putting a ramdisk or
something into it.
The bss itself, delimited by __bss_stop, ends before the brk area
(__brk_base to __brk_limit). The kernel text, data and bss is reserved
up to __bss_stop.
Any brk-allocated data is reserved separately just before the kernel
pagetable is built, as that code allocates from unreserved spaces
in the e820 map, potentially allocating from any unused brk memory.
Ultimately any unused memory in the brk area is used in the general
kernel memory pool.
Initially the brk space is set to 1MB, which is probably much larger
than any user needs (the largest current user is i386 head_32.S's code
to build the pagetables to map the kernel, which can get fairly large
with a big kernel image and no PSE support). So long as the system
has sufficient memory for the bootloader to reserve the kernel+1MB brk,
there are no bad effects resulting from an over-large brk.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-02-27 01:35:44 +00:00
|
|
|
return __pa(roundup(_brk_end, PMD_SIZE)) >> PAGE_SHIFT;
|
2008-02-18 19:54:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-02-13 13:37:52 +00:00
|
|
|
#ifdef CONFIG_DEBUG_PAGEALLOC
|
|
|
|
# define debug_pagealloc 1
|
|
|
|
#else
|
|
|
|
# define debug_pagealloc 0
|
|
|
|
#endif
|
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
static inline int
|
|
|
|
within(unsigned long addr, unsigned long start, unsigned long end)
|
2008-01-30 12:34:04 +00:00
|
|
|
{
|
2008-01-30 12:34:04 +00:00
|
|
|
return addr >= start && addr < end;
|
|
|
|
}
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
/*
|
|
|
|
* Flushing functions
|
|
|
|
*/
|
2008-01-30 12:34:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clflush_cache_range - flush a cache range with clflush
|
|
|
|
* @addr: virtual start address
|
|
|
|
* @size: number of bytes to flush
|
|
|
|
*
|
|
|
|
* clflush is an unordered instruction which needs fencing with mfence
|
|
|
|
* to avoid ordering issues.
|
|
|
|
*/
|
2008-01-30 12:34:09 +00:00
|
|
|
void clflush_cache_range(void *vaddr, unsigned int size)
|
2008-01-30 12:34:07 +00:00
|
|
|
{
|
2008-01-30 12:34:09 +00:00
|
|
|
void *vend = vaddr + size - 1;
|
2008-01-30 12:34:07 +00:00
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
mb();
|
2008-01-30 12:34:09 +00:00
|
|
|
|
|
|
|
for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
|
|
|
|
clflush(vaddr);
|
|
|
|
/*
|
|
|
|
* Flush any possible final partial cacheline:
|
|
|
|
*/
|
|
|
|
clflush(vend);
|
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
mb();
|
2008-01-30 12:34:07 +00:00
|
|
|
}
|
2009-09-11 00:48:48 +00:00
|
|
|
EXPORT_SYMBOL_GPL(clflush_cache_range);
|
2008-01-30 12:34:07 +00:00
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
static void __cpa_flush_all(void *arg)
|
2008-01-30 12:34:07 +00:00
|
|
|
{
|
2008-02-04 15:48:06 +00:00
|
|
|
unsigned long cache = (unsigned long)arg;
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
/*
|
|
|
|
* Flush all to work around Errata in early athlons regarding
|
|
|
|
* large page flushing.
|
|
|
|
*/
|
|
|
|
__flush_tlb_all();
|
|
|
|
|
2009-05-22 20:23:37 +00:00
|
|
|
if (cache && boot_cpu_data.x86 >= 4)
|
2008-01-30 12:34:07 +00:00
|
|
|
wbinvd();
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:06 +00:00
|
|
|
static void cpa_flush_all(unsigned long cache)
|
2008-01-30 12:34:07 +00:00
|
|
|
{
|
|
|
|
BUG_ON(irqs_disabled());
|
|
|
|
|
2008-05-09 07:39:44 +00:00
|
|
|
on_each_cpu(__cpa_flush_all, (void *) cache, 1);
|
2008-01-30 12:34:07 +00:00
|
|
|
}
|
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
static void __cpa_flush_range(void *arg)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* We could optimize that further and do individual per page
|
|
|
|
* tlb invalidates for a low number of pages. Caveat: we must
|
|
|
|
* flush the high aliases on 64bit as well.
|
|
|
|
*/
|
|
|
|
__flush_tlb_all();
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:06 +00:00
|
|
|
static void cpa_flush_range(unsigned long start, int numpages, int cache)
|
2008-01-30 12:34:08 +00:00
|
|
|
{
|
2008-01-30 12:34:09 +00:00
|
|
|
unsigned int i, level;
|
|
|
|
unsigned long addr;
|
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
BUG_ON(irqs_disabled());
|
2008-01-30 12:34:09 +00:00
|
|
|
WARN_ON(PAGE_ALIGN(start) != start);
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-05-09 07:39:44 +00:00
|
|
|
on_each_cpu(__cpa_flush_range, NULL, 1);
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-02-04 15:48:06 +00:00
|
|
|
if (!cache)
|
|
|
|
return;
|
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
/*
|
|
|
|
* We only need to flush on one CPU,
|
|
|
|
* clflush is a MESI-coherent instruction that
|
|
|
|
* will cause all other CPUs to flush the same
|
|
|
|
* cachelines:
|
|
|
|
*/
|
2008-01-30 12:34:09 +00:00
|
|
|
for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
|
|
|
|
pte_t *pte = lookup_address(addr, &level);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only flush present addresses:
|
|
|
|
*/
|
2008-02-04 15:48:08 +00:00
|
|
|
if (pte && (pte_val(*pte) & _PAGE_PRESENT))
|
2008-01-30 12:34:09 +00:00
|
|
|
clflush_cache_range((void *) addr, PAGE_SIZE);
|
|
|
|
}
|
2008-01-30 12:34:08 +00:00
|
|
|
}
|
|
|
|
|
2009-03-19 21:51:14 +00:00
|
|
|
static void cpa_flush_array(unsigned long *start, int numpages, int cache,
|
|
|
|
int in_flags, struct page **pages)
|
2008-08-21 02:46:06 +00:00
|
|
|
{
|
|
|
|
unsigned int i, level;
|
2009-05-26 17:33:35 +00:00
|
|
|
unsigned long do_wbinvd = cache && numpages >= 1024; /* 4M threshold */
|
2008-08-21 02:46:06 +00:00
|
|
|
|
|
|
|
BUG_ON(irqs_disabled());
|
|
|
|
|
2009-05-26 17:33:35 +00:00
|
|
|
on_each_cpu(__cpa_flush_all, (void *) do_wbinvd, 1);
|
2008-08-21 02:46:06 +00:00
|
|
|
|
2009-05-26 17:33:35 +00:00
|
|
|
if (!cache || do_wbinvd)
|
2008-08-21 02:46:06 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We only need to flush on one CPU,
|
|
|
|
* clflush is a MESI-coherent instruction that
|
|
|
|
* will cause all other CPUs to flush the same
|
|
|
|
* cachelines:
|
|
|
|
*/
|
2009-03-19 21:51:14 +00:00
|
|
|
for (i = 0; i < numpages; i++) {
|
|
|
|
unsigned long addr;
|
|
|
|
pte_t *pte;
|
|
|
|
|
|
|
|
if (in_flags & CPA_PAGES_ARRAY)
|
|
|
|
addr = (unsigned long)page_address(pages[i]);
|
|
|
|
else
|
|
|
|
addr = start[i];
|
|
|
|
|
|
|
|
pte = lookup_address(addr, &level);
|
2008-08-21 02:46:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only flush present addresses:
|
|
|
|
*/
|
|
|
|
if (pte && (pte_val(*pte) & _PAGE_PRESENT))
|
2009-03-19 21:51:14 +00:00
|
|
|
clflush_cache_range((void *)addr, PAGE_SIZE);
|
2008-08-21 02:46:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
/*
|
|
|
|
* Certain areas of memory on x86 require very specific protection flags,
|
|
|
|
* for example the BIOS area or kernel text. Callers don't always get this
|
|
|
|
* right (again, ioremap() on BIOS memory is not uncommon) so this function
|
|
|
|
* checks and fixes these known static required protection bits.
|
|
|
|
*/
|
2008-02-18 19:54:14 +00:00
|
|
|
static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
|
|
|
|
unsigned long pfn)
|
2008-01-30 12:34:04 +00:00
|
|
|
{
|
|
|
|
pgprot_t forbidden = __pgprot(0);
|
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
/*
|
2008-01-30 12:34:04 +00:00
|
|
|
* The BIOS area between 640k and 1Mb needs to be executable for
|
|
|
|
* PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
|
2008-01-30 12:34:04 +00:00
|
|
|
*/
|
2010-11-16 21:31:26 +00:00
|
|
|
#ifdef CONFIG_PCI_BIOS
|
|
|
|
if (pcibios_enabled && within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
|
2008-01-30 12:34:04 +00:00
|
|
|
pgprot_val(forbidden) |= _PAGE_NX;
|
2010-11-16 21:31:26 +00:00
|
|
|
#endif
|
2008-01-30 12:34:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The kernel text needs to be executable for obvious reasons
|
2008-02-18 19:54:14 +00:00
|
|
|
* Does not cover __inittext since that is gone later on. On
|
|
|
|
* 64bit we do not enforce !NX on the low mapping
|
2008-01-30 12:34:04 +00:00
|
|
|
*/
|
|
|
|
if (within(address, (unsigned long)_text, (unsigned long)_etext))
|
|
|
|
pgprot_val(forbidden) |= _PAGE_NX;
|
2008-02-04 15:48:05 +00:00
|
|
|
|
|
|
|
/*
|
2008-02-18 19:54:14 +00:00
|
|
|
* The .rodata section needs to be read-only. Using the pfn
|
|
|
|
* catches all aliases.
|
2008-02-04 15:48:05 +00:00
|
|
|
*/
|
2008-02-18 19:54:14 +00:00
|
|
|
if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
|
|
|
|
__pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
|
2008-02-04 15:48:05 +00:00
|
|
|
pgprot_val(forbidden) |= _PAGE_RW;
|
2008-01-30 12:34:04 +00:00
|
|
|
|
2009-10-29 02:46:57 +00:00
|
|
|
#if defined(CONFIG_X86_64) && defined(CONFIG_DEBUG_RODATA)
|
2009-10-14 21:46:56 +00:00
|
|
|
/*
|
2009-10-29 02:46:56 +00:00
|
|
|
* Once the kernel maps the text as RO (kernel_set_to_readonly is set),
|
|
|
|
* kernel text mappings for the large page aligned text, rodata sections
|
|
|
|
* will be always read-only. For the kernel identity mappings covering
|
|
|
|
* the holes caused by this alignment can be anything that user asks.
|
2009-10-14 21:46:56 +00:00
|
|
|
*
|
|
|
|
* This will preserve the large page mappings for kernel text/data
|
|
|
|
* at no extra cost.
|
|
|
|
*/
|
2009-10-29 02:46:56 +00:00
|
|
|
if (kernel_set_to_readonly &&
|
|
|
|
within(address, (unsigned long)_text,
|
x86_64, cpa: Don't work hard in preserving kernel 2M mappings when using 4K already
We currently enforce the !RW mapping for the kernel mapping that maps
holes between different text, rodata and data sections. However, kernel
identity mappings will have different RWX permissions to the pages mapping to
text and to the pages padding (which are freed) the text, rodata sections.
Hence kernel identity mappings will be broken to smaller pages. For 64-bit,
kernel text and kernel identity mappings are different, so we can enable
protection checks that come with CONFIG_DEBUG_RODATA, as well as retain 2MB
large page mappings for kernel text.
Konrad reported a boot failure with the Linux Xen paravirt guest because of
this. In this paravirt guest case, the kernel text mapping and the kernel
identity mapping share the same page-table pages. Thus forcing the !RW mapping
for some of the kernel mappings also cause the kernel identity mappings to be
read-only resulting in the boot failure. Linux Xen paravirt guest also
uses 4k mappings and don't use 2M mapping.
Fix this issue and retain large page performance advantage for native kernels
by not working hard and not enforcing !RW for the kernel text mapping,
if the current mapping is already using small page mapping.
Reported-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
LKML-Reference: <1266522700.2909.34.camel@sbs-t61.sc.intel.com>
Tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: stable@kernel.org [2.6.32, 2.6.33]
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2010-02-18 19:51:40 +00:00
|
|
|
(unsigned long)__end_rodata_hpage_align)) {
|
|
|
|
unsigned int level;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't enforce the !RW mapping for the kernel text mapping,
|
|
|
|
* if the current mapping is already using small page mapping.
|
|
|
|
* No need to work hard to preserve large page mappings in this
|
|
|
|
* case.
|
|
|
|
*
|
|
|
|
* This also fixes the Linux Xen paravirt guest boot failure
|
|
|
|
* (because of unexpected read-only mappings for kernel identity
|
|
|
|
* mappings). In this paravirt guest case, the kernel text
|
|
|
|
* mapping and the kernel identity mapping share the same
|
|
|
|
* page-table pages. Thus we can't really use different
|
|
|
|
* protections for the kernel text and identity mappings. Also,
|
|
|
|
* these shared mappings are made of small page mappings.
|
|
|
|
* Thus this don't enforce !RW mapping for small page kernel
|
|
|
|
* text mapping logic will help Linux Xen parvirt guest boot
|
2011-03-17 19:24:16 +00:00
|
|
|
* as well.
|
x86_64, cpa: Don't work hard in preserving kernel 2M mappings when using 4K already
We currently enforce the !RW mapping for the kernel mapping that maps
holes between different text, rodata and data sections. However, kernel
identity mappings will have different RWX permissions to the pages mapping to
text and to the pages padding (which are freed) the text, rodata sections.
Hence kernel identity mappings will be broken to smaller pages. For 64-bit,
kernel text and kernel identity mappings are different, so we can enable
protection checks that come with CONFIG_DEBUG_RODATA, as well as retain 2MB
large page mappings for kernel text.
Konrad reported a boot failure with the Linux Xen paravirt guest because of
this. In this paravirt guest case, the kernel text mapping and the kernel
identity mapping share the same page-table pages. Thus forcing the !RW mapping
for some of the kernel mappings also cause the kernel identity mappings to be
read-only resulting in the boot failure. Linux Xen paravirt guest also
uses 4k mappings and don't use 2M mapping.
Fix this issue and retain large page performance advantage for native kernels
by not working hard and not enforcing !RW for the kernel text mapping,
if the current mapping is already using small page mapping.
Reported-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
LKML-Reference: <1266522700.2909.34.camel@sbs-t61.sc.intel.com>
Tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: stable@kernel.org [2.6.32, 2.6.33]
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2010-02-18 19:51:40 +00:00
|
|
|
*/
|
|
|
|
if (lookup_address(address, &level) && (level != PG_LEVEL_4K))
|
|
|
|
pgprot_val(forbidden) |= _PAGE_RW;
|
|
|
|
}
|
2009-10-14 21:46:56 +00:00
|
|
|
#endif
|
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
|
2008-01-30 12:34:04 +00:00
|
|
|
|
|
|
|
return prot;
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* Lookup the page table entry for a virtual address. Return a pointer
|
|
|
|
* to the entry and the level of the mapping.
|
|
|
|
*
|
|
|
|
* Note: We return pud and pmd either when the entry is marked large
|
|
|
|
* or when the present bit is not set. Otherwise we would return a
|
|
|
|
* pointer to a nonexisting mapping.
|
|
|
|
*/
|
2008-02-09 22:24:08 +00:00
|
|
|
pte_t *lookup_address(unsigned long address, unsigned int *level)
|
2008-01-30 12:33:41 +00:00
|
|
|
{
|
2005-04-16 22:20:36 +00:00
|
|
|
pgd_t *pgd = pgd_offset_k(address);
|
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
2008-01-30 12:33:41 +00:00
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
*level = PG_LEVEL_NONE;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (pgd_none(*pgd))
|
|
|
|
return NULL;
|
2008-02-04 15:48:09 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
pud = pud_offset(pgd, address);
|
|
|
|
if (pud_none(*pud))
|
|
|
|
return NULL;
|
2008-02-04 15:48:09 +00:00
|
|
|
|
|
|
|
*level = PG_LEVEL_1G;
|
|
|
|
if (pud_large(*pud) || !pud_present(*pud))
|
|
|
|
return (pte_t *)pud;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
pmd = pmd_offset(pud, address);
|
|
|
|
if (pmd_none(*pmd))
|
|
|
|
return NULL;
|
2008-01-30 12:34:04 +00:00
|
|
|
|
|
|
|
*level = PG_LEVEL_2M;
|
2008-02-04 15:48:07 +00:00
|
|
|
if (pmd_large(*pmd) || !pmd_present(*pmd))
|
2005-04-16 22:20:36 +00:00
|
|
|
return (pte_t *)pmd;
|
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
*level = PG_LEVEL_4K;
|
2008-02-04 15:48:09 +00:00
|
|
|
|
2008-01-30 12:33:41 +00:00
|
|
|
return pte_offset_kernel(pmd, address);
|
|
|
|
}
|
2008-05-12 19:20:56 +00:00
|
|
|
EXPORT_SYMBOL_GPL(lookup_address);
|
2008-01-30 12:33:41 +00:00
|
|
|
|
2008-02-04 15:48:09 +00:00
|
|
|
/*
|
|
|
|
* Set the new pmd in all the pgds we know about:
|
|
|
|
*/
|
2008-01-30 12:33:57 +00:00
|
|
|
static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
|
2008-01-30 12:33:41 +00:00
|
|
|
{
|
|
|
|
/* change init_mm */
|
|
|
|
set_pte_atomic(kpte, pte);
|
2008-01-30 12:34:03 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
2008-01-30 12:34:04 +00:00
|
|
|
if (!SHARED_KERNEL_PMD) {
|
2008-01-30 12:34:03 +00:00
|
|
|
struct page *page;
|
|
|
|
|
2008-01-30 12:34:11 +00:00
|
|
|
list_for_each_entry(page, &pgd_list, lru) {
|
2008-01-30 12:34:03 +00:00
|
|
|
pgd_t *pgd;
|
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
|
|
|
|
pgd = (pgd_t *)page_address(page) + pgd_index(address);
|
|
|
|
pud = pud_offset(pgd, address);
|
|
|
|
pmd = pmd_offset(pud, address);
|
|
|
|
set_pte_atomic((pte_t *)pmd, pte);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-01-30 12:34:03 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:09 +00:00
|
|
|
static int
|
|
|
|
try_preserve_large_page(pte_t *kpte, unsigned long address,
|
|
|
|
struct cpa_data *cpa)
|
2008-02-04 15:48:07 +00:00
|
|
|
{
|
2011-02-16 23:45:22 +00:00
|
|
|
unsigned long nextpage_addr, numpages, pmask, psize, addr, pfn;
|
2008-02-04 15:48:07 +00:00
|
|
|
pte_t new_pte, old_pte, *tmp;
|
2010-11-16 21:30:27 +00:00
|
|
|
pgprot_t old_prot, new_prot, req_prot;
|
2008-02-09 22:24:09 +00:00
|
|
|
int i, do_split = 1;
|
2008-02-09 22:24:08 +00:00
|
|
|
unsigned int level;
|
2008-02-04 15:48:07 +00:00
|
|
|
|
2008-03-12 02:53:29 +00:00
|
|
|
if (cpa->force_split)
|
|
|
|
return 1;
|
|
|
|
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_lock(&pgd_lock);
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* Check for races, another CPU might have split this page
|
|
|
|
* up already:
|
|
|
|
*/
|
|
|
|
tmp = lookup_address(address, &level);
|
|
|
|
if (tmp != kpte)
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
case PG_LEVEL_2M:
|
2008-02-04 15:48:08 +00:00
|
|
|
psize = PMD_PAGE_SIZE;
|
|
|
|
pmask = PMD_PAGE_MASK;
|
2008-02-04 15:48:07 +00:00
|
|
|
break;
|
2008-02-04 15:48:09 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
2008-02-04 15:48:07 +00:00
|
|
|
case PG_LEVEL_1G:
|
2008-02-13 15:20:35 +00:00
|
|
|
psize = PUD_PAGE_SIZE;
|
|
|
|
pmask = PUD_PAGE_MASK;
|
2008-02-04 15:48:09 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2008-02-04 15:48:07 +00:00
|
|
|
default:
|
2008-02-04 15:48:09 +00:00
|
|
|
do_split = -EINVAL;
|
2008-02-04 15:48:07 +00:00
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the number of pages, which fit into this large
|
|
|
|
* page starting at address:
|
|
|
|
*/
|
|
|
|
nextpage_addr = (address + psize) & pmask;
|
|
|
|
numpages = (nextpage_addr - address) >> PAGE_SHIFT;
|
2008-03-03 00:17:37 +00:00
|
|
|
if (numpages < cpa->numpages)
|
|
|
|
cpa->numpages = numpages;
|
2008-02-04 15:48:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We are safe now. Check whether the new pgprot is the same:
|
|
|
|
*/
|
|
|
|
old_pte = *kpte;
|
2010-11-16 21:30:27 +00:00
|
|
|
old_prot = new_prot = req_prot = pte_pgprot(old_pte);
|
2008-02-04 15:48:07 +00:00
|
|
|
|
2010-11-16 21:30:27 +00:00
|
|
|
pgprot_val(req_prot) &= ~pgprot_val(cpa->mask_clr);
|
|
|
|
pgprot_val(req_prot) |= pgprot_val(cpa->mask_set);
|
2008-02-18 19:54:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* old_pte points to the large page base address. So we need
|
|
|
|
* to add the offset of the virtual address:
|
|
|
|
*/
|
|
|
|
pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
|
|
|
|
cpa->pfn = pfn;
|
|
|
|
|
2010-11-16 21:30:27 +00:00
|
|
|
new_prot = static_protections(req_prot, address, pfn);
|
2008-02-04 15:48:07 +00:00
|
|
|
|
2008-02-09 22:24:09 +00:00
|
|
|
/*
|
|
|
|
* We need to check the full range, whether
|
|
|
|
* static_protection() requires a different pgprot for one of
|
|
|
|
* the pages in the range we try to preserve:
|
|
|
|
*/
|
2010-11-16 21:30:27 +00:00
|
|
|
addr = address & pmask;
|
|
|
|
pfn = pte_pfn(old_pte);
|
|
|
|
for (i = 0; i < (psize >> PAGE_SHIFT); i++, addr += PAGE_SIZE, pfn++) {
|
|
|
|
pgprot_t chk_prot = static_protections(req_prot, addr, pfn);
|
2008-02-09 22:24:09 +00:00
|
|
|
|
|
|
|
if (pgprot_val(chk_prot) != pgprot_val(new_prot))
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* If there are no changes, return. maxpages has been updated
|
|
|
|
* above:
|
|
|
|
*/
|
|
|
|
if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
|
2008-02-04 15:48:09 +00:00
|
|
|
do_split = 0;
|
2008-02-04 15:48:07 +00:00
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to change the attributes. Check, whether we can
|
|
|
|
* change the large page in one go. We request a split, when
|
|
|
|
* the address is not aligned and the number of pages is
|
|
|
|
* smaller than the number of pages in the large page. Note
|
|
|
|
* that we limited the number of possible pages already to
|
|
|
|
* the number of pages in the large page.
|
|
|
|
*/
|
2010-11-16 21:30:27 +00:00
|
|
|
if (address == (address & pmask) && cpa->numpages == (psize >> PAGE_SHIFT)) {
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* The address is aligned and the number of pages
|
|
|
|
* covers the full page.
|
|
|
|
*/
|
|
|
|
new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
|
|
|
|
__set_pmd_pte(kpte, address, new_pte);
|
2008-08-21 02:46:06 +00:00
|
|
|
cpa->flags |= CPA_FLUSHTLB;
|
2008-02-04 15:48:09 +00:00
|
|
|
do_split = 0;
|
2008-02-04 15:48:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
out_unlock:
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_unlock(&pgd_lock);
|
2008-02-04 15:48:09 +00:00
|
|
|
|
2008-02-04 15:48:09 +00:00
|
|
|
return do_split;
|
2008-02-04 15:48:07 +00:00
|
|
|
}
|
|
|
|
|
2008-01-30 12:33:57 +00:00
|
|
|
static int split_large_page(pte_t *kpte, unsigned long address)
|
2008-01-30 12:33:56 +00:00
|
|
|
{
|
2011-02-16 23:45:22 +00:00
|
|
|
unsigned long pfn, pfninc = 1;
|
2008-02-04 15:48:09 +00:00
|
|
|
unsigned int i, level;
|
2008-01-30 12:33:56 +00:00
|
|
|
pte_t *pbase, *tmp;
|
2008-02-04 15:48:09 +00:00
|
|
|
pgprot_t ref_prot;
|
2008-09-23 21:00:42 +00:00
|
|
|
struct page *base;
|
|
|
|
|
|
|
|
if (!debug_pagealloc)
|
|
|
|
spin_unlock(&cpa_lock);
|
2009-02-22 10:28:25 +00:00
|
|
|
base = alloc_pages(GFP_KERNEL | __GFP_NOTRACK, 0);
|
2008-09-23 21:00:42 +00:00
|
|
|
if (!debug_pagealloc)
|
|
|
|
spin_lock(&cpa_lock);
|
2008-09-23 21:00:41 +00:00
|
|
|
if (!base)
|
|
|
|
return -ENOMEM;
|
2008-01-30 12:33:56 +00:00
|
|
|
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_lock(&pgd_lock);
|
2008-01-30 12:33:56 +00:00
|
|
|
/*
|
|
|
|
* Check for races, another CPU might have split this page
|
|
|
|
* up for us already:
|
|
|
|
*/
|
|
|
|
tmp = lookup_address(address, &level);
|
2008-02-04 15:48:08 +00:00
|
|
|
if (tmp != kpte)
|
2008-01-30 12:33:56 +00:00
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
pbase = (pte_t *)page_address(base);
|
2008-03-17 23:37:01 +00:00
|
|
|
paravirt_alloc_pte(&init_mm, page_to_pfn(base));
|
2008-02-04 15:48:08 +00:00
|
|
|
ref_prot = pte_pgprot(pte_clrhuge(*kpte));
|
2009-02-20 16:44:21 +00:00
|
|
|
/*
|
|
|
|
* If we ever want to utilize the PAT bit, we need to
|
|
|
|
* update this function to make sure it's converted from
|
|
|
|
* bit 12 to bit 7 when we cross from the 2MB level to
|
|
|
|
* the 4K level:
|
|
|
|
*/
|
|
|
|
WARN_ON_ONCE(pgprot_val(ref_prot) & _PAGE_PAT_LARGE);
|
2008-01-30 12:33:56 +00:00
|
|
|
|
2008-02-04 15:48:09 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
if (level == PG_LEVEL_1G) {
|
|
|
|
pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
|
|
|
|
pgprot_val(ref_prot) |= _PAGE_PSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-02-04 15:48:05 +00:00
|
|
|
/*
|
|
|
|
* Get the target pfn from the original entry:
|
|
|
|
*/
|
|
|
|
pfn = pte_pfn(*kpte);
|
2008-02-04 15:48:09 +00:00
|
|
|
for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
|
2008-02-04 15:48:05 +00:00
|
|
|
set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
|
2008-01-30 12:33:56 +00:00
|
|
|
|
2008-05-02 09:46:49 +00:00
|
|
|
if (address >= (unsigned long)__va(0) &&
|
2008-07-11 03:38:26 +00:00
|
|
|
address < (unsigned long)__va(max_low_pfn_mapped << PAGE_SHIFT))
|
|
|
|
split_page_count(level);
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
if (address >= (unsigned long)__va(1UL<<32) &&
|
2008-05-05 14:35:21 +00:00
|
|
|
address < (unsigned long)__va(max_pfn_mapped << PAGE_SHIFT))
|
|
|
|
split_page_count(level);
|
2008-07-11 03:38:26 +00:00
|
|
|
#endif
|
2008-05-02 09:46:49 +00:00
|
|
|
|
2008-01-30 12:33:56 +00:00
|
|
|
/*
|
2009-02-20 07:04:13 +00:00
|
|
|
* Install the new, split up pagetable.
|
2008-01-30 12:34:04 +00:00
|
|
|
*
|
2009-02-20 07:04:13 +00:00
|
|
|
* We use the standard kernel pagetable protections for the new
|
|
|
|
* pagetable protections, the actual ptes set above control the
|
|
|
|
* primary protection behavior:
|
2008-01-30 12:33:56 +00:00
|
|
|
*/
|
2009-02-20 07:04:13 +00:00
|
|
|
__set_pmd_pte(kpte, address, mk_pte(base, __pgprot(_KERNPG_TABLE)));
|
2009-03-10 21:31:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Intel Atom errata AAH41 workaround.
|
|
|
|
*
|
|
|
|
* The real fix should be in hw or in a microcode update, but
|
|
|
|
* we also probabilistically try to reduce the window of having
|
|
|
|
* a large TLB mixed with 4K TLBs while instruction fetches are
|
|
|
|
* going on.
|
|
|
|
*/
|
|
|
|
__flush_tlb_all();
|
|
|
|
|
2008-01-30 12:33:56 +00:00
|
|
|
base = NULL;
|
|
|
|
|
|
|
|
out_unlock:
|
2008-02-09 22:24:09 +00:00
|
|
|
/*
|
|
|
|
* If we dropped out via the lookup_address check under
|
|
|
|
* pgd_lock then stick the page back into the pool:
|
|
|
|
*/
|
2008-09-23 21:00:41 +00:00
|
|
|
if (base)
|
|
|
|
__free_page(base);
|
2011-02-16 23:45:22 +00:00
|
|
|
spin_unlock(&pgd_lock);
|
2008-01-30 12:33:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:20:21 +00:00
|
|
|
static int __cpa_process_fault(struct cpa_data *cpa, unsigned long vaddr,
|
|
|
|
int primary)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Ignore all non primary paths.
|
|
|
|
*/
|
|
|
|
if (!primary)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ignore the NULL PTE for kernel identity mapping, as it is expected
|
|
|
|
* to have holes.
|
|
|
|
* Also set numpages to '1' indicating that we processed cpa req for
|
|
|
|
* one virtual address page and its pfn. TBD: numpages can be set based
|
|
|
|
* on the initial value and the level returned by lookup_address().
|
|
|
|
*/
|
|
|
|
if (within(vaddr, PAGE_OFFSET,
|
|
|
|
PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
|
|
|
|
cpa->numpages = 1;
|
|
|
|
cpa->pfn = __pa(vaddr) >> PAGE_SHIFT;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
WARN(1, KERN_WARNING "CPA: called for zero pte. "
|
|
|
|
"vaddr = %lx cpa->vaddr = %lx\n", vaddr,
|
|
|
|
*cpa->vaddr);
|
|
|
|
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
static int __change_page_attr(struct cpa_data *cpa, int primary)
|
2008-01-30 12:33:41 +00:00
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
unsigned long address;
|
2008-02-09 22:24:08 +00:00
|
|
|
int do_split, err;
|
|
|
|
unsigned int level;
|
2008-02-18 19:54:14 +00:00
|
|
|
pte_t *kpte, old_pte;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-08-03 07:25:45 +00:00
|
|
|
if (cpa->flags & CPA_PAGES_ARRAY) {
|
|
|
|
struct page *page = cpa->pages[cpa->curpage];
|
|
|
|
if (unlikely(PageHighMem(page)))
|
|
|
|
return 0;
|
|
|
|
address = (unsigned long)page_address(page);
|
|
|
|
} else if (cpa->flags & CPA_ARRAY)
|
2008-08-21 02:46:06 +00:00
|
|
|
address = cpa->vaddr[cpa->curpage];
|
|
|
|
else
|
|
|
|
address = *cpa->vaddr;
|
2008-01-30 12:33:55 +00:00
|
|
|
repeat:
|
2008-01-30 12:33:43 +00:00
|
|
|
kpte = lookup_address(address, &level);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!kpte)
|
2009-01-20 22:20:21 +00:00
|
|
|
return __cpa_process_fault(cpa, address, primary);
|
2008-02-18 19:54:14 +00:00
|
|
|
|
|
|
|
old_pte = *kpte;
|
2009-01-20 22:20:21 +00:00
|
|
|
if (!pte_val(old_pte))
|
|
|
|
return __cpa_process_fault(cpa, address, primary);
|
2008-01-30 12:33:41 +00:00
|
|
|
|
2008-01-30 12:34:04 +00:00
|
|
|
if (level == PG_LEVEL_4K) {
|
2008-02-18 19:54:14 +00:00
|
|
|
pte_t new_pte;
|
2008-02-04 15:48:05 +00:00
|
|
|
pgprot_t new_prot = pte_pgprot(old_pte);
|
2008-02-18 19:54:14 +00:00
|
|
|
unsigned long pfn = pte_pfn(old_pte);
|
2008-01-30 12:34:09 +00:00
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
|
|
|
|
pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
|
2008-01-30 12:34:09 +00:00
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
new_prot = static_protections(new_prot, address, pfn);
|
2008-01-30 12:34:09 +00:00
|
|
|
|
2008-02-04 15:48:05 +00:00
|
|
|
/*
|
|
|
|
* We need to keep the pfn from the existing PTE,
|
|
|
|
* after all we're only going to change it's attributes
|
|
|
|
* not the memory it points to
|
|
|
|
*/
|
2008-02-18 19:54:14 +00:00
|
|
|
new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
|
|
|
|
cpa->pfn = pfn;
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* Do we really change anything ?
|
|
|
|
*/
|
|
|
|
if (pte_val(old_pte) != pte_val(new_pte)) {
|
|
|
|
set_pte_atomic(kpte, new_pte);
|
2008-08-21 02:46:06 +00:00
|
|
|
cpa->flags |= CPA_FLUSHTLB;
|
2008-02-04 15:48:07 +00:00
|
|
|
}
|
2008-03-03 00:17:37 +00:00
|
|
|
cpa->numpages = 1;
|
2008-02-04 15:48:07 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-02-04 15:48:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check, whether we can keep the large page intact
|
|
|
|
* and just change the pte:
|
|
|
|
*/
|
2008-02-04 15:48:09 +00:00
|
|
|
do_split = try_preserve_large_page(kpte, address, cpa);
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* When the range fits into the existing large page,
|
2008-03-03 00:17:37 +00:00
|
|
|
* return. cp->numpages and cpa->tlbflush have been updated in
|
2008-02-04 15:48:07 +00:00
|
|
|
* try_large_page:
|
|
|
|
*/
|
2008-02-04 15:48:10 +00:00
|
|
|
if (do_split <= 0)
|
|
|
|
return do_split;
|
2008-02-04 15:48:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to split the large page:
|
|
|
|
*/
|
2008-02-04 15:48:10 +00:00
|
|
|
err = split_large_page(kpte, address);
|
|
|
|
if (!err) {
|
2008-09-23 21:00:42 +00:00
|
|
|
/*
|
|
|
|
* Do a global flush tlb after splitting the large page
|
|
|
|
* and before we do the actual change page attribute in the PTE.
|
|
|
|
*
|
|
|
|
* With out this, we violate the TLB application note, that says
|
|
|
|
* "The TLBs may contain both ordinary and large-page
|
|
|
|
* translations for a 4-KByte range of linear addresses. This
|
|
|
|
* may occur if software modifies the paging structures so that
|
|
|
|
* the page size used for the address range changes. If the two
|
|
|
|
* translations differ with respect to page frame or attributes
|
|
|
|
* (e.g., permissions), processor behavior is undefined and may
|
|
|
|
* be implementation-specific."
|
|
|
|
*
|
|
|
|
* We do this global tlb flush inside the cpa_lock, so that we
|
|
|
|
* don't allow any other cpu, with stale tlb entries change the
|
|
|
|
* page attribute in parallel, that also falls into the
|
|
|
|
* just split large page entry.
|
|
|
|
*/
|
|
|
|
flush_tlb_all();
|
2008-02-04 15:48:10 +00:00
|
|
|
goto repeat;
|
|
|
|
}
|
2008-02-04 15:48:09 +00:00
|
|
|
|
2008-02-04 15:48:10 +00:00
|
|
|
return err;
|
2008-01-30 12:33:41 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
|
|
|
|
|
|
|
|
static int cpa_process_alias(struct cpa_data *cpa)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-02-18 19:54:14 +00:00
|
|
|
struct cpa_data alias_cpa;
|
2009-06-22 02:56:24 +00:00
|
|
|
unsigned long laddr = (unsigned long)__va(cpa->pfn << PAGE_SHIFT);
|
2009-08-14 06:00:53 +00:00
|
|
|
unsigned long vaddr;
|
2009-06-22 02:56:24 +00:00
|
|
|
int ret;
|
2008-01-30 12:34:03 +00:00
|
|
|
|
2008-07-12 21:31:28 +00:00
|
|
|
if (cpa->pfn >= max_pfn_mapped)
|
2008-02-18 19:54:14 +00:00
|
|
|
return 0;
|
2008-02-04 15:48:05 +00:00
|
|
|
|
2008-07-11 03:38:26 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
2008-07-12 21:31:28 +00:00
|
|
|
if (cpa->pfn >= max_low_pfn_mapped && cpa->pfn < (1UL<<(32-PAGE_SHIFT)))
|
2008-07-11 03:38:26 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
2008-02-15 21:17:57 +00:00
|
|
|
/*
|
|
|
|
* No need to redo, when the primary call touched the direct
|
|
|
|
* mapping already:
|
|
|
|
*/
|
2009-08-03 07:25:45 +00:00
|
|
|
if (cpa->flags & CPA_PAGES_ARRAY) {
|
|
|
|
struct page *page = cpa->pages[cpa->curpage];
|
|
|
|
if (unlikely(PageHighMem(page)))
|
|
|
|
return 0;
|
|
|
|
vaddr = (unsigned long)page_address(page);
|
|
|
|
} else if (cpa->flags & CPA_ARRAY)
|
2008-08-21 02:46:06 +00:00
|
|
|
vaddr = cpa->vaddr[cpa->curpage];
|
|
|
|
else
|
|
|
|
vaddr = *cpa->vaddr;
|
|
|
|
|
|
|
|
if (!(within(vaddr, PAGE_OFFSET,
|
2009-01-20 22:20:21 +00:00
|
|
|
PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT)))) {
|
2008-01-30 12:34:03 +00:00
|
|
|
|
2008-02-15 21:17:57 +00:00
|
|
|
alias_cpa = *cpa;
|
2009-06-22 02:56:24 +00:00
|
|
|
alias_cpa.vaddr = &laddr;
|
2009-03-19 21:51:14 +00:00
|
|
|
alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
|
2008-08-21 02:46:06 +00:00
|
|
|
|
2008-02-15 21:17:57 +00:00
|
|
|
ret = __change_page_attr_set_clr(&alias_cpa, 0);
|
2009-06-22 02:56:24 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2008-02-15 21:17:57 +00:00
|
|
|
}
|
2008-01-30 12:34:03 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
2008-01-30 12:34:07 +00:00
|
|
|
/*
|
2009-06-22 02:56:24 +00:00
|
|
|
* If the primary call didn't touch the high mapping already
|
|
|
|
* and the physical address is inside the kernel map, we need
|
2008-01-30 12:34:09 +00:00
|
|
|
* to touch the high mapped kernel as well:
|
2008-01-30 12:34:07 +00:00
|
|
|
*/
|
2009-06-22 02:56:24 +00:00
|
|
|
if (!within(vaddr, (unsigned long)_text, _brk_end) &&
|
|
|
|
within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn())) {
|
|
|
|
unsigned long temp_cpa_vaddr = (cpa->pfn << PAGE_SHIFT) +
|
|
|
|
__START_KERNEL_map - phys_base;
|
|
|
|
alias_cpa = *cpa;
|
|
|
|
alias_cpa.vaddr = &temp_cpa_vaddr;
|
|
|
|
alias_cpa.flags &= ~(CPA_PAGES_ARRAY | CPA_ARRAY);
|
2008-02-18 19:54:14 +00:00
|
|
|
|
2009-06-22 02:56:24 +00:00
|
|
|
/*
|
|
|
|
* The high mapping range is imprecise, so ignore the
|
|
|
|
* return value.
|
|
|
|
*/
|
|
|
|
__change_page_attr_set_clr(&alias_cpa, 0);
|
|
|
|
}
|
2008-01-30 12:34:07 +00:00
|
|
|
#endif
|
2009-06-22 02:56:24 +00:00
|
|
|
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
|
2008-01-30 12:34:08 +00:00
|
|
|
{
|
2008-02-04 15:48:07 +00:00
|
|
|
int ret, numpages = cpa->numpages;
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
while (numpages) {
|
|
|
|
/*
|
|
|
|
* Store the remaining nr of pages for the large page
|
|
|
|
* preservation check.
|
|
|
|
*/
|
2008-03-03 00:17:37 +00:00
|
|
|
cpa->numpages = numpages;
|
2008-08-21 02:46:06 +00:00
|
|
|
/* for array changes, we can't use large page */
|
2009-03-19 21:51:14 +00:00
|
|
|
if (cpa->flags & (CPA_ARRAY | CPA_PAGES_ARRAY))
|
2008-08-21 02:46:06 +00:00
|
|
|
cpa->numpages = 1;
|
2008-02-18 19:54:14 +00:00
|
|
|
|
2008-09-23 21:00:42 +00:00
|
|
|
if (!debug_pagealloc)
|
|
|
|
spin_lock(&cpa_lock);
|
2008-02-18 19:54:14 +00:00
|
|
|
ret = __change_page_attr(cpa, checkalias);
|
2008-09-23 21:00:42 +00:00
|
|
|
if (!debug_pagealloc)
|
|
|
|
spin_unlock(&cpa_lock);
|
2008-01-30 12:34:08 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2008-02-18 19:54:14 +00:00
|
|
|
if (checkalias) {
|
|
|
|
ret = cpa_process_alias(cpa);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* Adjust the number of pages with the result of the
|
|
|
|
* CPA operation. Either a large page has been
|
|
|
|
* preserved or a single page update happened.
|
|
|
|
*/
|
2008-03-03 00:17:37 +00:00
|
|
|
BUG_ON(cpa->numpages > numpages);
|
|
|
|
numpages -= cpa->numpages;
|
2009-03-19 21:51:14 +00:00
|
|
|
if (cpa->flags & (CPA_PAGES_ARRAY | CPA_ARRAY))
|
2008-08-21 02:46:06 +00:00
|
|
|
cpa->curpage++;
|
|
|
|
else
|
|
|
|
*cpa->vaddr += cpa->numpages * PAGE_SIZE;
|
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
}
|
2008-01-30 12:34:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-04 15:48:06 +00:00
|
|
|
static inline int cache_attr(pgprot_t attr)
|
|
|
|
{
|
|
|
|
return pgprot_val(attr) &
|
|
|
|
(_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
|
|
|
|
}
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
static int change_page_attr_set_clr(unsigned long *addr, int numpages,
|
2008-03-12 02:53:29 +00:00
|
|
|
pgprot_t mask_set, pgprot_t mask_clr,
|
2009-03-19 21:51:14 +00:00
|
|
|
int force_split, int in_flag,
|
|
|
|
struct page **pages)
|
2008-01-30 12:34:08 +00:00
|
|
|
{
|
2008-02-04 15:48:07 +00:00
|
|
|
struct cpa_data cpa;
|
2008-08-21 11:46:33 +00:00
|
|
|
int ret, cache, checkalias;
|
2009-09-03 17:56:02 +00:00
|
|
|
unsigned long baddr = 0;
|
2008-02-04 15:48:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check, if we are requested to change a not supported
|
|
|
|
* feature:
|
|
|
|
*/
|
|
|
|
mask_set = canon_pgprot(mask_set);
|
|
|
|
mask_clr = canon_pgprot(mask_clr);
|
2008-03-12 02:53:29 +00:00
|
|
|
if (!pgprot_val(mask_set) && !pgprot_val(mask_clr) && !force_split)
|
2008-02-04 15:48:06 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-02-13 10:04:50 +00:00
|
|
|
/* Ensure we are PAGE_SIZE aligned */
|
2009-03-19 21:51:14 +00:00
|
|
|
if (in_flag & CPA_ARRAY) {
|
2008-08-21 02:46:06 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < numpages; i++) {
|
|
|
|
if (addr[i] & ~PAGE_MASK) {
|
|
|
|
addr[i] &= PAGE_MASK;
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
}
|
|
|
|
}
|
2009-03-19 21:51:14 +00:00
|
|
|
} else if (!(in_flag & CPA_PAGES_ARRAY)) {
|
|
|
|
/*
|
|
|
|
* in_flag of CPA_PAGES_ARRAY implies it is aligned.
|
|
|
|
* No need to cehck in that case
|
|
|
|
*/
|
|
|
|
if (*addr & ~PAGE_MASK) {
|
|
|
|
*addr &= PAGE_MASK;
|
|
|
|
/*
|
|
|
|
* People should not be passing in unaligned addresses:
|
|
|
|
*/
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
}
|
2009-09-03 17:56:02 +00:00
|
|
|
/*
|
|
|
|
* Save address for cache flush. *addr is modified in the call
|
|
|
|
* to __change_page_attr_set_clr() below.
|
|
|
|
*/
|
|
|
|
baddr = *addr;
|
2008-02-13 10:04:50 +00:00
|
|
|
}
|
|
|
|
|
2008-08-01 01:15:21 +00:00
|
|
|
/* Must avoid aliasing mappings in the highmem code */
|
|
|
|
kmap_flush_unused();
|
|
|
|
|
mm: rewrite vmap layer
Rewrite the vmap allocator to use rbtrees and lazy tlb flushing, and
provide a fast, scalable percpu frontend for small vmaps (requires a
slightly different API, though).
The biggest problem with vmap is actually vunmap. Presently this requires
a global kernel TLB flush, which on most architectures is a broadcast IPI
to all CPUs to flush the cache. This is all done under a global lock. As
the number of CPUs increases, so will the number of vunmaps a scaled
workload will want to perform, and so will the cost of a global TLB flush.
This gives terrible quadratic scalability characteristics.
Another problem is that the entire vmap subsystem works under a single
lock. It is a rwlock, but it is actually taken for write in all the fast
paths, and the read locking would likely never be run concurrently anyway,
so it's just pointless.
This is a rewrite of vmap subsystem to solve those problems. The existing
vmalloc API is implemented on top of the rewritten subsystem.
The TLB flushing problem is solved by using lazy TLB unmapping. vmap
addresses do not have to be flushed immediately when they are vunmapped,
because the kernel will not reuse them again (would be a use-after-free)
until they are reallocated. So the addresses aren't allocated again until
a subsequent TLB flush. A single TLB flush then can flush multiple
vunmaps from each CPU.
XEN and PAT and such do not like deferred TLB flushing because they can't
always handle multiple aliasing virtual addresses to a physical address.
They now call vm_unmap_aliases() in order to flush any deferred mappings.
That call is very expensive (well, actually not a lot more expensive than
a single vunmap under the old scheme), however it should be OK if not
called too often.
The virtual memory extent information is stored in an rbtree rather than a
linked list to improve the algorithmic scalability.
There is a per-CPU allocator for small vmaps, which amortizes or avoids
global locking.
To use the per-CPU interface, the vm_map_ram / vm_unmap_ram interfaces
must be used in place of vmap and vunmap. Vmalloc does not use these
interfaces at the moment, so it will not be quite so scalable (although it
will use lazy TLB flushing).
As a quick test of performance, I ran a test that loops in the kernel,
linearly mapping then touching then unmapping 4 pages. Different numbers
of tests were run in parallel on an 4 core, 2 socket opteron. Results are
in nanoseconds per map+touch+unmap.
threads vanilla vmap rewrite
1 14700 2900
2 33600 3000
4 49500 2800
8 70631 2900
So with a 8 cores, the rewritten version is already 25x faster.
In a slightly more realistic test (although with an older and less
scalable version of the patch), I ripped the not-very-good vunmap batching
code out of XFS, and implemented the large buffer mapping with vm_map_ram
and vm_unmap_ram... along with a couple of other tricks, I was able to
speed up a large directory workload by 20x on a 64 CPU system. I believe
vmap/vunmap is actually sped up a lot more than 20x on such a system, but
I'm running into other locks now. vmap is pretty well blown off the
profiles.
Before:
1352059 total 0.1401
798784 _write_lock 8320.6667 <- vmlist_lock
529313 default_idle 1181.5022
15242 smp_call_function 15.8771 <- vmap tlb flushing
2472 __get_vm_area_node 1.9312 <- vmap
1762 remove_vm_area 4.5885 <- vunmap
316 map_vm_area 0.2297 <- vmap
312 kfree 0.1950
300 _spin_lock 3.1250
252 sn_send_IPI_phys 0.4375 <- tlb flushing
238 vmap 0.8264 <- vmap
216 find_lock_page 0.5192
196 find_next_bit 0.3603
136 sn2_send_IPI 0.2024
130 pio_phys_write_mmr 2.0312
118 unmap_kernel_range 0.1229
After:
78406 total 0.0081
40053 default_idle 89.4040
33576 ia64_spinlock_contention 349.7500
1650 _spin_lock 17.1875
319 __reg_op 0.5538
281 _atomic_dec_and_lock 1.0977
153 mutex_unlock 1.5938
123 iget_locked 0.1671
117 xfs_dir_lookup 0.1662
117 dput 0.1406
114 xfs_iget_core 0.0268
92 xfs_da_hashname 0.1917
75 d_alloc 0.0670
68 vmap_page_range 0.0462 <- vmap
58 kmem_cache_alloc 0.0604
57 memset 0.0540
52 rb_next 0.1625
50 __copy_user 0.0208
49 bitmap_find_free_region 0.2188 <- vmap
46 ia64_sn_udelay 0.1106
45 find_inode_fast 0.1406
42 memcmp 0.2188
42 finish_task_switch 0.1094
42 __d_lookup 0.0410
40 radix_tree_lookup_slot 0.1250
37 _spin_unlock_irqrestore 0.3854
36 xfs_bmapi 0.0050
36 kmem_cache_free 0.0256
35 xfs_vn_getattr 0.0322
34 radix_tree_lookup 0.1062
33 __link_path_walk 0.0035
31 xfs_da_do_buf 0.0091
30 _xfs_buf_find 0.0204
28 find_get_page 0.0875
27 xfs_iread 0.0241
27 __strncpy_from_user 0.2812
26 _xfs_buf_initialize 0.0406
24 _xfs_buf_lookup_pages 0.0179
24 vunmap_page_range 0.0250 <- vunmap
23 find_lock_page 0.0799
22 vm_map_ram 0.0087 <- vmap
20 kfree 0.0125
19 put_page 0.0330
18 __kmalloc 0.0176
17 xfs_da_node_lookup_int 0.0086
17 _read_lock 0.0885
17 page_waitqueue 0.0664
vmap has gone from being the top 5 on the profiles and flushing the crap
out of all TLBs, to using less than 1% of kernel time.
[akpm@linux-foundation.org: cleanups, section fix]
[akpm@linux-foundation.org: fix build on alpha]
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-10-19 03:27:03 +00:00
|
|
|
vm_unmap_aliases();
|
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
cpa.vaddr = addr;
|
2009-03-19 21:51:14 +00:00
|
|
|
cpa.pages = pages;
|
2008-02-04 15:48:07 +00:00
|
|
|
cpa.numpages = numpages;
|
|
|
|
cpa.mask_set = mask_set;
|
|
|
|
cpa.mask_clr = mask_clr;
|
2008-08-21 02:46:06 +00:00
|
|
|
cpa.flags = 0;
|
|
|
|
cpa.curpage = 0;
|
2008-03-12 02:53:29 +00:00
|
|
|
cpa.force_split = force_split;
|
2008-02-04 15:48:07 +00:00
|
|
|
|
2009-03-19 21:51:14 +00:00
|
|
|
if (in_flag & (CPA_ARRAY | CPA_PAGES_ARRAY))
|
|
|
|
cpa.flags |= in_flag;
|
2008-08-21 02:46:06 +00:00
|
|
|
|
2008-02-15 20:49:46 +00:00
|
|
|
/* No alias checking for _NX bit modifications */
|
|
|
|
checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
|
|
|
|
|
|
|
|
ret = __change_page_attr_set_clr(&cpa, checkalias);
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-02-04 15:48:07 +00:00
|
|
|
/*
|
|
|
|
* Check whether we really changed something:
|
|
|
|
*/
|
2008-08-21 02:46:06 +00:00
|
|
|
if (!(cpa.flags & CPA_FLUSHTLB))
|
2008-08-04 06:51:24 +00:00
|
|
|
goto out;
|
2008-08-21 11:46:33 +00:00
|
|
|
|
2008-02-04 15:48:06 +00:00
|
|
|
/*
|
|
|
|
* No need to flush, when we did not set any of the caching
|
|
|
|
* attributes:
|
|
|
|
*/
|
|
|
|
cache = cache_attr(mask_set);
|
|
|
|
|
2008-01-30 12:34:08 +00:00
|
|
|
/*
|
|
|
|
* On success we use clflush, when the CPU supports it to
|
|
|
|
* avoid the wbindv. If the CPU does not support it and in the
|
2008-01-30 12:34:08 +00:00
|
|
|
* error case we fall back to cpa_flush_all (which uses
|
2008-01-30 12:34:08 +00:00
|
|
|
* wbindv):
|
|
|
|
*/
|
2008-08-21 02:46:06 +00:00
|
|
|
if (!ret && cpu_has_clflush) {
|
2009-03-19 21:51:14 +00:00
|
|
|
if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) {
|
|
|
|
cpa_flush_array(addr, numpages, cache,
|
|
|
|
cpa.flags, pages);
|
|
|
|
} else
|
2009-09-03 17:56:02 +00:00
|
|
|
cpa_flush_range(baddr, numpages, cache);
|
2008-08-21 02:46:06 +00:00
|
|
|
} else
|
2008-02-04 15:48:06 +00:00
|
|
|
cpa_flush_all(cache);
|
2008-08-21 11:46:33 +00:00
|
|
|
|
2008-02-09 22:24:09 +00:00
|
|
|
out:
|
2008-01-30 12:34:08 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
static inline int change_page_attr_set(unsigned long *addr, int numpages,
|
|
|
|
pgprot_t mask, int array)
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0), 0,
|
2009-03-19 21:51:14 +00:00
|
|
|
(array ? CPA_ARRAY : 0), NULL);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
static inline int change_page_attr_clear(unsigned long *addr, int numpages,
|
|
|
|
pgprot_t mask, int array)
|
2008-01-30 12:34:08 +00:00
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask, 0,
|
2009-03-19 21:51:14 +00:00
|
|
|
(array ? CPA_ARRAY : 0), NULL);
|
2008-01-30 12:34:08 +00:00
|
|
|
}
|
|
|
|
|
2009-03-19 21:51:15 +00:00
|
|
|
static inline int cpa_set_pages_array(struct page **pages, int numpages,
|
|
|
|
pgprot_t mask)
|
|
|
|
{
|
|
|
|
return change_page_attr_set_clr(NULL, numpages, mask, __pgprot(0), 0,
|
|
|
|
CPA_PAGES_ARRAY, pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int cpa_clear_pages_array(struct page **pages, int numpages,
|
|
|
|
pgprot_t mask)
|
|
|
|
{
|
|
|
|
return change_page_attr_set_clr(NULL, numpages, __pgprot(0), mask, 0,
|
|
|
|
CPA_PAGES_ARRAY, pages);
|
|
|
|
}
|
|
|
|
|
2008-03-19 00:00:18 +00:00
|
|
|
int _set_memory_uc(unsigned long addr, int numpages)
|
2008-01-30 12:34:08 +00:00
|
|
|
{
|
2008-04-26 00:07:22 +00:00
|
|
|
/*
|
|
|
|
* for now UC MINUS. see comments in ioremap_nocache()
|
|
|
|
*/
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set(&addr, numpages,
|
|
|
|
__pgprot(_PAGE_CACHE_UC_MINUS), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
2008-03-19 00:00:18 +00:00
|
|
|
|
|
|
|
int set_memory_uc(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-04-09 21:26:49 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-04-26 00:07:22 +00:00
|
|
|
/*
|
|
|
|
* for now UC MINUS. see comments in ioremap_nocache()
|
|
|
|
*/
|
2009-04-09 21:26:49 +00:00
|
|
|
ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
|
|
|
|
_PAGE_CACHE_UC_MINUS, NULL);
|
|
|
|
if (ret)
|
|
|
|
goto out_err;
|
|
|
|
|
|
|
|
ret = _set_memory_uc(addr, numpages);
|
|
|
|
if (ret)
|
|
|
|
goto out_free;
|
|
|
|
|
|
|
|
return 0;
|
2008-03-19 00:00:18 +00:00
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
out_free:
|
|
|
|
free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
|
|
|
|
out_err:
|
|
|
|
return ret;
|
2008-03-19 00:00:18 +00:00
|
|
|
}
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
EXPORT_SYMBOL(set_memory_uc);
|
|
|
|
|
2011-11-15 22:49:00 +00:00
|
|
|
static int _set_memory_array(unsigned long *addr, int addrinarray,
|
2010-04-01 12:45:01 +00:00
|
|
|
unsigned long new_type)
|
2008-08-21 02:46:06 +00:00
|
|
|
{
|
2009-04-09 21:26:49 +00:00
|
|
|
int i, j;
|
|
|
|
int ret;
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
/*
|
|
|
|
* for now UC MINUS. see comments in ioremap_nocache()
|
|
|
|
*/
|
|
|
|
for (i = 0; i < addrinarray; i++) {
|
2009-04-09 21:26:49 +00:00
|
|
|
ret = reserve_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE,
|
2010-04-01 12:45:01 +00:00
|
|
|
new_type, NULL);
|
2009-04-09 21:26:49 +00:00
|
|
|
if (ret)
|
|
|
|
goto out_free;
|
2008-08-21 02:46:06 +00:00
|
|
|
}
|
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
ret = change_page_attr_set(addr, addrinarray,
|
2008-08-21 02:46:06 +00:00
|
|
|
__pgprot(_PAGE_CACHE_UC_MINUS), 1);
|
2010-04-01 12:45:01 +00:00
|
|
|
|
|
|
|
if (!ret && new_type == _PAGE_CACHE_WC)
|
|
|
|
ret = change_page_attr_set_clr(addr, addrinarray,
|
|
|
|
__pgprot(_PAGE_CACHE_WC),
|
|
|
|
__pgprot(_PAGE_CACHE_MASK),
|
|
|
|
0, CPA_ARRAY, NULL);
|
2009-04-09 21:26:49 +00:00
|
|
|
if (ret)
|
|
|
|
goto out_free;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_free:
|
|
|
|
for (j = 0; j < i; j++)
|
|
|
|
free_memtype(__pa(addr[j]), __pa(addr[j]) + PAGE_SIZE);
|
|
|
|
|
|
|
|
return ret;
|
2008-08-21 02:46:06 +00:00
|
|
|
}
|
2010-04-01 12:45:01 +00:00
|
|
|
|
|
|
|
int set_memory_array_uc(unsigned long *addr, int addrinarray)
|
|
|
|
{
|
|
|
|
return _set_memory_array(addr, addrinarray, _PAGE_CACHE_UC_MINUS);
|
|
|
|
}
|
2008-08-21 02:46:06 +00:00
|
|
|
EXPORT_SYMBOL(set_memory_array_uc);
|
|
|
|
|
2010-04-01 12:45:01 +00:00
|
|
|
int set_memory_array_wc(unsigned long *addr, int addrinarray)
|
|
|
|
{
|
|
|
|
return _set_memory_array(addr, addrinarray, _PAGE_CACHE_WC);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_memory_array_wc);
|
|
|
|
|
2008-03-19 00:00:23 +00:00
|
|
|
int _set_memory_wc(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-04-09 21:26:50 +00:00
|
|
|
int ret;
|
x86, pat: Fix set_memory_wc related corruption
Changeset 3869c4aa18835c8c61b44bd0f3ace36e9d3b5bd0
that went in after 2.6.30-rc1 was a seemingly small change to _set_memory_wc()
to make it complaint with SDM requirements. But, introduced a nasty bug, which
can result in crash and/or strange corruptions when set_memory_wc is used.
One such crash reported here
http://lkml.org/lkml/2009/7/30/94
Actually, that changeset introduced two bugs.
* change_page_attr_set() takes &addr as first argument and can the addr value
might have changed on return, even for single page change_page_attr_set()
call. That will make the second change_page_attr_set() in this routine
operate on unrelated addr, that can eventually cause strange corruptions
and bad page state crash.
* The second change_page_attr_set() call, before setting _PAGE_CACHE_WC, should
clear the earlier _PAGE_CACHE_UC_MINUS, as otherwise cache attribute will not
be WC (will be UC instead).
The patch below fixes both these problems. Sending a single patch to fix both
the problems, as the change is to the same line of code. The change to have a
addr_copy is not very clean. But, it is simpler than making more changes
through various routines in pageattr.c.
A huge thanks to Jerome for reporting this problem and providing a simple test
case that helped us root cause the problem.
Reported-by: Jerome Glisse <glisse@freedesktop.org>
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
LKML-Reference: <20090730214319.GA1889@linux-os.sc.intel.com>
Acked-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-07-30 21:43:19 +00:00
|
|
|
unsigned long addr_copy = addr;
|
|
|
|
|
2009-04-09 21:26:50 +00:00
|
|
|
ret = change_page_attr_set(&addr, numpages,
|
|
|
|
__pgprot(_PAGE_CACHE_UC_MINUS), 0);
|
|
|
|
if (!ret) {
|
x86, pat: Fix set_memory_wc related corruption
Changeset 3869c4aa18835c8c61b44bd0f3ace36e9d3b5bd0
that went in after 2.6.30-rc1 was a seemingly small change to _set_memory_wc()
to make it complaint with SDM requirements. But, introduced a nasty bug, which
can result in crash and/or strange corruptions when set_memory_wc is used.
One such crash reported here
http://lkml.org/lkml/2009/7/30/94
Actually, that changeset introduced two bugs.
* change_page_attr_set() takes &addr as first argument and can the addr value
might have changed on return, even for single page change_page_attr_set()
call. That will make the second change_page_attr_set() in this routine
operate on unrelated addr, that can eventually cause strange corruptions
and bad page state crash.
* The second change_page_attr_set() call, before setting _PAGE_CACHE_WC, should
clear the earlier _PAGE_CACHE_UC_MINUS, as otherwise cache attribute will not
be WC (will be UC instead).
The patch below fixes both these problems. Sending a single patch to fix both
the problems, as the change is to the same line of code. The change to have a
addr_copy is not very clean. But, it is simpler than making more changes
through various routines in pageattr.c.
A huge thanks to Jerome for reporting this problem and providing a simple test
case that helped us root cause the problem.
Reported-by: Jerome Glisse <glisse@freedesktop.org>
Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
LKML-Reference: <20090730214319.GA1889@linux-os.sc.intel.com>
Acked-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-07-30 21:43:19 +00:00
|
|
|
ret = change_page_attr_set_clr(&addr_copy, numpages,
|
|
|
|
__pgprot(_PAGE_CACHE_WC),
|
|
|
|
__pgprot(_PAGE_CACHE_MASK),
|
|
|
|
0, 0, NULL);
|
2009-04-09 21:26:50 +00:00
|
|
|
}
|
|
|
|
return ret;
|
2008-03-19 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int set_memory_wc(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-04-09 21:26:49 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-06-10 14:06:21 +00:00
|
|
|
if (!pat_enabled)
|
2008-03-19 00:00:23 +00:00
|
|
|
return set_memory_uc(addr, numpages);
|
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
ret = reserve_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE,
|
|
|
|
_PAGE_CACHE_WC, NULL);
|
|
|
|
if (ret)
|
|
|
|
goto out_err;
|
2008-03-19 00:00:23 +00:00
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
ret = _set_memory_wc(addr, numpages);
|
|
|
|
if (ret)
|
|
|
|
goto out_free;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_free:
|
|
|
|
free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
|
|
|
|
out_err:
|
|
|
|
return ret;
|
2008-03-19 00:00:23 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_memory_wc);
|
|
|
|
|
2008-03-19 00:00:18 +00:00
|
|
|
int _set_memory_wb(unsigned long addr, int numpages)
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_clear(&addr, numpages,
|
|
|
|
__pgprot(_PAGE_CACHE_MASK), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
2008-03-19 00:00:18 +00:00
|
|
|
|
|
|
|
int set_memory_wb(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-04-09 21:26:49 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = _set_memory_wb(addr, numpages);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2008-08-20 23:45:51 +00:00
|
|
|
free_memtype(__pa(addr), __pa(addr) + numpages * PAGE_SIZE);
|
2009-04-09 21:26:49 +00:00
|
|
|
return 0;
|
2008-03-19 00:00:18 +00:00
|
|
|
}
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
EXPORT_SYMBOL(set_memory_wb);
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
int set_memory_array_wb(unsigned long *addr, int addrinarray)
|
|
|
|
{
|
|
|
|
int i;
|
2009-04-09 21:26:48 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = change_page_attr_clear(addr, addrinarray,
|
|
|
|
__pgprot(_PAGE_CACHE_MASK), 1);
|
2009-04-09 21:26:49 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2008-08-21 02:46:06 +00:00
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
for (i = 0; i < addrinarray; i++)
|
|
|
|
free_memtype(__pa(addr[i]), __pa(addr[i]) + PAGE_SIZE);
|
2008-08-21 23:02:20 +00:00
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
return 0;
|
2008-08-21 02:46:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_memory_array_wb);
|
|
|
|
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
int set_memory_x(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-11-13 23:28:15 +00:00
|
|
|
if (!(__supported_pte_mask & _PAGE_NX))
|
|
|
|
return 0;
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_NX), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_memory_x);
|
|
|
|
|
|
|
|
int set_memory_nx(unsigned long addr, int numpages)
|
|
|
|
{
|
2009-11-13 23:28:15 +00:00
|
|
|
if (!(__supported_pte_mask & _PAGE_NX))
|
|
|
|
return 0;
|
|
|
|
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_NX), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_memory_nx);
|
|
|
|
|
|
|
|
int set_memory_ro(unsigned long addr, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
2008-09-30 03:19:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(set_memory_ro);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
|
|
|
|
int set_memory_rw(unsigned long addr, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
2008-09-30 03:19:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(set_memory_rw);
|
2008-01-30 12:34:07 +00:00
|
|
|
|
|
|
|
int set_memory_np(unsigned long addr, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_PRESENT), 0);
|
2008-01-30 12:34:07 +00:00
|
|
|
}
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
|
2008-03-12 02:53:29 +00:00
|
|
|
int set_memory_4k(unsigned long addr, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
return change_page_attr_set_clr(&addr, numpages, __pgprot(0),
|
2009-03-19 21:51:14 +00:00
|
|
|
__pgprot(0), 1, 0, NULL);
|
2008-03-12 02:53:29 +00:00
|
|
|
}
|
|
|
|
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
int set_pages_uc(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_uc(addr, numpages);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_uc);
|
|
|
|
|
2010-04-01 12:45:01 +00:00
|
|
|
static int _set_pages_array(struct page **pages, int addrinarray,
|
|
|
|
unsigned long new_type)
|
2009-03-19 21:51:15 +00:00
|
|
|
{
|
|
|
|
unsigned long start;
|
|
|
|
unsigned long end;
|
|
|
|
int i;
|
|
|
|
int free_idx;
|
2010-04-01 12:45:01 +00:00
|
|
|
int ret;
|
2009-03-19 21:51:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < addrinarray; i++) {
|
2009-08-03 07:25:45 +00:00
|
|
|
if (PageHighMem(pages[i]))
|
|
|
|
continue;
|
|
|
|
start = page_to_pfn(pages[i]) << PAGE_SHIFT;
|
2009-03-19 21:51:15 +00:00
|
|
|
end = start + PAGE_SIZE;
|
2010-04-01 12:45:01 +00:00
|
|
|
if (reserve_memtype(start, end, new_type, NULL))
|
2009-03-19 21:51:15 +00:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
2010-04-01 12:45:01 +00:00
|
|
|
ret = cpa_set_pages_array(pages, addrinarray,
|
|
|
|
__pgprot(_PAGE_CACHE_UC_MINUS));
|
|
|
|
if (!ret && new_type == _PAGE_CACHE_WC)
|
|
|
|
ret = change_page_attr_set_clr(NULL, addrinarray,
|
|
|
|
__pgprot(_PAGE_CACHE_WC),
|
|
|
|
__pgprot(_PAGE_CACHE_MASK),
|
|
|
|
0, CPA_PAGES_ARRAY, pages);
|
|
|
|
if (ret)
|
|
|
|
goto err_out;
|
|
|
|
return 0; /* Success */
|
2009-03-19 21:51:15 +00:00
|
|
|
err_out:
|
|
|
|
free_idx = i;
|
|
|
|
for (i = 0; i < free_idx; i++) {
|
2009-08-03 07:25:45 +00:00
|
|
|
if (PageHighMem(pages[i]))
|
|
|
|
continue;
|
|
|
|
start = page_to_pfn(pages[i]) << PAGE_SHIFT;
|
2009-03-19 21:51:15 +00:00
|
|
|
end = start + PAGE_SIZE;
|
|
|
|
free_memtype(start, end);
|
|
|
|
}
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-04-01 12:45:01 +00:00
|
|
|
|
|
|
|
int set_pages_array_uc(struct page **pages, int addrinarray)
|
|
|
|
{
|
|
|
|
return _set_pages_array(pages, addrinarray, _PAGE_CACHE_UC_MINUS);
|
|
|
|
}
|
2009-03-19 21:51:15 +00:00
|
|
|
EXPORT_SYMBOL(set_pages_array_uc);
|
|
|
|
|
2010-04-01 12:45:01 +00:00
|
|
|
int set_pages_array_wc(struct page **pages, int addrinarray)
|
|
|
|
{
|
|
|
|
return _set_pages_array(pages, addrinarray, _PAGE_CACHE_WC);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_array_wc);
|
|
|
|
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
int set_pages_wb(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_wb(addr, numpages);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_wb);
|
|
|
|
|
2009-03-19 21:51:15 +00:00
|
|
|
int set_pages_array_wb(struct page **pages, int addrinarray)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
unsigned long start;
|
|
|
|
unsigned long end;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
retval = cpa_clear_pages_array(pages, addrinarray,
|
|
|
|
__pgprot(_PAGE_CACHE_MASK));
|
2009-04-09 21:26:49 +00:00
|
|
|
if (retval)
|
|
|
|
return retval;
|
2009-03-19 21:51:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < addrinarray; i++) {
|
2009-08-03 07:25:45 +00:00
|
|
|
if (PageHighMem(pages[i]))
|
|
|
|
continue;
|
|
|
|
start = page_to_pfn(pages[i]) << PAGE_SHIFT;
|
2009-03-19 21:51:15 +00:00
|
|
|
end = start + PAGE_SIZE;
|
|
|
|
free_memtype(start, end);
|
|
|
|
}
|
|
|
|
|
2009-04-09 21:26:49 +00:00
|
|
|
return 0;
|
2009-03-19 21:51:15 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_array_wb);
|
|
|
|
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
int set_pages_x(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_x(addr, numpages);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_x);
|
|
|
|
|
|
|
|
int set_pages_nx(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_nx(addr, numpages);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(set_pages_nx);
|
|
|
|
|
|
|
|
int set_pages_ro(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_ro(addr, numpages);
|
x86: a new API for drivers/etc to control cache and other page attributes
Right now, if drivers or other code want to change, say, a cache attribute of a
page, the only API they have is change_page_attr(). c-p-a is a really bad API
for this, because it forces the caller to know *ALL* the attributes he wants
for the page, not just the 1 thing he wants to change. So code that wants to
set a page uncachable, needs to be aware of the NX status as well etc etc etc.
This patch introduces a set of new APIs for this, set_pages_<attr> and
set_memory_<attr>, that offer a logical change to the user, and leave all
attributes not implied by the requested logical change alone.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2008-01-30 12:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int set_pages_rw(struct page *page, int numpages)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
2008-01-30 12:34:06 +00:00
|
|
|
|
2008-01-30 12:34:07 +00:00
|
|
|
return set_memory_rw(addr, numpages);
|
2008-01-30 12:33:55 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef CONFIG_DEBUG_PAGEALLOC
|
2008-01-30 12:34:07 +00:00
|
|
|
|
|
|
|
static int __set_pages_p(struct page *page, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
unsigned long tempaddr = (unsigned long) page_address(page);
|
|
|
|
struct cpa_data cpa = { .vaddr = &tempaddr,
|
2008-02-04 15:48:07 +00:00
|
|
|
.numpages = numpages,
|
|
|
|
.mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
|
2008-08-21 02:46:06 +00:00
|
|
|
.mask_clr = __pgprot(0),
|
|
|
|
.flags = 0};
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-09-23 21:00:40 +00:00
|
|
|
/*
|
|
|
|
* No alias checking needed for setting present flag. otherwise,
|
|
|
|
* we may need to break large pages for 64-bit kernel text
|
|
|
|
* mappings (this adds to complexity if we want to do this from
|
|
|
|
* atomic context especially). Let's keep it simple!
|
|
|
|
*/
|
|
|
|
return __change_page_attr_set_clr(&cpa, 0);
|
2008-01-30 12:34:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int __set_pages_np(struct page *page, int numpages)
|
|
|
|
{
|
2008-08-21 02:46:06 +00:00
|
|
|
unsigned long tempaddr = (unsigned long) page_address(page);
|
|
|
|
struct cpa_data cpa = { .vaddr = &tempaddr,
|
2008-02-04 15:48:07 +00:00
|
|
|
.numpages = numpages,
|
|
|
|
.mask_set = __pgprot(0),
|
2008-08-21 02:46:06 +00:00
|
|
|
.mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW),
|
|
|
|
.flags = 0};
|
2008-01-30 12:34:08 +00:00
|
|
|
|
2008-09-23 21:00:40 +00:00
|
|
|
/*
|
|
|
|
* No alias checking needed for setting not present flag. otherwise,
|
|
|
|
* we may need to break large pages for 64-bit kernel text
|
|
|
|
* mappings (this adds to complexity if we want to do this from
|
|
|
|
* atomic context especially). Let's keep it simple!
|
|
|
|
*/
|
|
|
|
return __change_page_attr_set_clr(&cpa, 0);
|
2008-01-30 12:34:07 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void kernel_map_pages(struct page *page, int numpages, int enable)
|
|
|
|
{
|
|
|
|
if (PageHighMem(page))
|
|
|
|
return;
|
2008-01-30 12:33:41 +00:00
|
|
|
if (!enable) {
|
2006-06-27 09:54:49 +00:00
|
|
|
debug_check_no_locks_freed(page_address(page),
|
|
|
|
numpages * PAGE_SIZE);
|
2008-01-30 12:33:41 +00:00
|
|
|
}
|
2006-01-09 23:59:21 +00:00
|
|
|
|
2008-01-30 12:33:41 +00:00
|
|
|
/*
|
2008-02-13 13:09:53 +00:00
|
|
|
* The return value is ignored as the calls cannot fail.
|
2008-09-23 21:00:40 +00:00
|
|
|
* Large pages for identity mappings are not used at boot time
|
|
|
|
* and hence no memory allocations during large page split.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2008-01-30 12:34:07 +00:00
|
|
|
if (enable)
|
|
|
|
__set_pages_p(page, numpages);
|
|
|
|
else
|
|
|
|
__set_pages_np(page, numpages);
|
2008-01-30 12:33:41 +00:00
|
|
|
|
|
|
|
/*
|
2008-01-30 12:34:04 +00:00
|
|
|
* We should perform an IPI and flush all tlbs,
|
|
|
|
* but that can deadlock->flush only current cpu:
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
__flush_tlb_all();
|
2008-04-17 15:40:45 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 00:47:44 +00:00
|
|
|
#ifdef CONFIG_HIBERNATION
|
|
|
|
|
|
|
|
bool kernel_page_present(struct page *page)
|
|
|
|
{
|
|
|
|
unsigned int level;
|
|
|
|
pte_t *pte;
|
|
|
|
|
|
|
|
if (PageHighMem(page))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
pte = lookup_address((unsigned long)page_address(page), &level);
|
|
|
|
return (pte_val(*pte) & _PAGE_PRESENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_HIBERNATION */
|
|
|
|
|
|
|
|
#endif /* CONFIG_DEBUG_PAGEALLOC */
|
2008-01-30 12:34:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The testcases use internal knowledge of the implementation that shouldn't
|
|
|
|
* be exposed to the rest of the kernel. Include these directly here.
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CPA_DEBUG
|
|
|
|
#include "pageattr-test.c"
|
|
|
|
#endif
|