2007-10-22 17:52:47 +07:00
|
|
|
/*
|
2009-06-12 15:26:33 +07:00
|
|
|
* Copyright IBM Corp. 2007,2009
|
2007-10-22 17:52:47 +07:00
|
|
|
* Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.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 15:04:11 +07:00
|
|
|
#include <linux/gfp.h>
|
2007-10-22 17:52:47 +07:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/highmem.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/quicklist.h>
|
2010-10-25 21:10:11 +07:00
|
|
|
#include <linux/rcupdate.h>
|
2007-10-22 17:52:47 +07:00
|
|
|
|
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/pgalloc.h>
|
|
|
|
#include <asm/tlb.h>
|
|
|
|
#include <asm/tlbflush.h>
|
2008-02-10 00:24:37 +07:00
|
|
|
#include <asm/mmu_context.h>
|
2007-10-22 17:52:47 +07:00
|
|
|
|
|
|
|
#ifndef CONFIG_64BIT
|
|
|
|
#define ALLOC_ORDER 1
|
2011-06-06 19:14:41 +07:00
|
|
|
#define FRAG_MASK 0x0f
|
2007-10-22 17:52:47 +07:00
|
|
|
#else
|
|
|
|
#define ALLOC_ORDER 2
|
2011-06-06 19:14:41 +07:00
|
|
|
#define FRAG_MASK 0x03
|
2007-10-22 17:52:47 +07:00
|
|
|
#endif
|
|
|
|
|
2009-06-12 15:26:33 +07:00
|
|
|
unsigned long VMALLOC_START = VMALLOC_END - VMALLOC_SIZE;
|
|
|
|
EXPORT_SYMBOL(VMALLOC_START);
|
|
|
|
|
|
|
|
static int __init parse_vmalloc(char *arg)
|
|
|
|
{
|
|
|
|
if (!arg)
|
|
|
|
return -EINVAL;
|
|
|
|
VMALLOC_START = (VMALLOC_END - memparse(arg, &arg)) & PAGE_MASK;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("vmalloc", parse_vmalloc);
|
|
|
|
|
2011-05-23 15:24:23 +07:00
|
|
|
unsigned long *crst_table_alloc(struct mm_struct *mm)
|
2007-10-22 17:52:47 +07:00
|
|
|
{
|
|
|
|
struct page *page = alloc_pages(GFP_KERNEL, ALLOC_ORDER);
|
|
|
|
|
|
|
|
if (!page)
|
|
|
|
return NULL;
|
|
|
|
return (unsigned long *) page_to_phys(page);
|
|
|
|
}
|
|
|
|
|
2010-10-25 21:10:11 +07:00
|
|
|
void crst_table_free(struct mm_struct *mm, unsigned long *table)
|
|
|
|
{
|
2011-05-23 15:24:23 +07:00
|
|
|
free_pages((unsigned long) table, ALLOC_ORDER);
|
2010-10-25 21:10:11 +07:00
|
|
|
}
|
|
|
|
|
2008-02-10 00:24:37 +07:00
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
int crst_table_upgrade(struct mm_struct *mm, unsigned long limit)
|
|
|
|
{
|
|
|
|
unsigned long *table, *pgd;
|
|
|
|
unsigned long entry;
|
|
|
|
|
|
|
|
BUG_ON(limit > (1UL << 53));
|
|
|
|
repeat:
|
2011-05-23 15:24:23 +07:00
|
|
|
table = crst_table_alloc(mm);
|
2008-02-10 00:24:37 +07:00
|
|
|
if (!table)
|
|
|
|
return -ENOMEM;
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_lock_bh(&mm->page_table_lock);
|
2008-02-10 00:24:37 +07:00
|
|
|
if (mm->context.asce_limit < limit) {
|
|
|
|
pgd = (unsigned long *) mm->pgd;
|
|
|
|
if (mm->context.asce_limit <= (1UL << 31)) {
|
|
|
|
entry = _REGION3_ENTRY_EMPTY;
|
|
|
|
mm->context.asce_limit = 1UL << 42;
|
|
|
|
mm->context.asce_bits = _ASCE_TABLE_LENGTH |
|
|
|
|
_ASCE_USER_BITS |
|
|
|
|
_ASCE_TYPE_REGION3;
|
|
|
|
} else {
|
|
|
|
entry = _REGION2_ENTRY_EMPTY;
|
|
|
|
mm->context.asce_limit = 1UL << 53;
|
|
|
|
mm->context.asce_bits = _ASCE_TABLE_LENGTH |
|
|
|
|
_ASCE_USER_BITS |
|
|
|
|
_ASCE_TYPE_REGION2;
|
|
|
|
}
|
|
|
|
crst_table_init(table, entry);
|
|
|
|
pgd_populate(mm, (pgd_t *) table, (pud_t *) pgd);
|
|
|
|
mm->pgd = (pgd_t *) table;
|
2009-03-18 19:27:36 +07:00
|
|
|
mm->task_size = mm->context.asce_limit;
|
2008-02-10 00:24:37 +07:00
|
|
|
table = NULL;
|
|
|
|
}
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_unlock_bh(&mm->page_table_lock);
|
2008-02-10 00:24:37 +07:00
|
|
|
if (table)
|
|
|
|
crst_table_free(mm, table);
|
|
|
|
if (mm->context.asce_limit < limit)
|
|
|
|
goto repeat;
|
|
|
|
update_mm(mm, current);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void crst_table_downgrade(struct mm_struct *mm, unsigned long limit)
|
|
|
|
{
|
|
|
|
pgd_t *pgd;
|
|
|
|
|
|
|
|
if (mm->context.asce_limit <= limit)
|
|
|
|
return;
|
|
|
|
__tlb_flush_mm(mm);
|
|
|
|
while (mm->context.asce_limit > limit) {
|
|
|
|
pgd = mm->pgd;
|
|
|
|
switch (pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) {
|
|
|
|
case _REGION_ENTRY_TYPE_R2:
|
|
|
|
mm->context.asce_limit = 1UL << 42;
|
|
|
|
mm->context.asce_bits = _ASCE_TABLE_LENGTH |
|
|
|
|
_ASCE_USER_BITS |
|
|
|
|
_ASCE_TYPE_REGION3;
|
|
|
|
break;
|
|
|
|
case _REGION_ENTRY_TYPE_R3:
|
|
|
|
mm->context.asce_limit = 1UL << 31;
|
|
|
|
mm->context.asce_bits = _ASCE_TABLE_LENGTH |
|
|
|
|
_ASCE_USER_BITS |
|
|
|
|
_ASCE_TYPE_SEGMENT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
mm->pgd = (pgd_t *) (pgd_val(*pgd) & _REGION_ENTRY_ORIGIN);
|
2009-03-18 19:27:36 +07:00
|
|
|
mm->task_size = mm->context.asce_limit;
|
2008-02-10 00:24:37 +07:00
|
|
|
crst_table_free(mm, (unsigned long *) pgd);
|
|
|
|
}
|
|
|
|
update_mm(mm, current);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
static inline unsigned int atomic_xor_bits(atomic_t *v, unsigned int bits)
|
|
|
|
{
|
|
|
|
unsigned int old, new;
|
|
|
|
|
|
|
|
do {
|
|
|
|
old = atomic_read(v);
|
|
|
|
new = old ^ bits;
|
|
|
|
} while (atomic_cmpxchg(v, old, new) != old);
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:52:47 +07:00
|
|
|
/*
|
|
|
|
* page table entry allocation/free routines.
|
|
|
|
*/
|
2011-06-06 19:14:41 +07:00
|
|
|
#ifdef CONFIG_PGSTE
|
|
|
|
static inline unsigned long *page_table_alloc_pgste(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
unsigned long *table;
|
|
|
|
|
|
|
|
page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
|
|
|
|
if (!page)
|
|
|
|
return NULL;
|
|
|
|
pgtable_page_ctor(page);
|
|
|
|
atomic_set(&page->_mapcount, 3);
|
|
|
|
table = (unsigned long *) page_to_phys(page);
|
|
|
|
clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE/2);
|
|
|
|
clear_table(table + PTRS_PER_PTE, 0, PAGE_SIZE/2);
|
|
|
|
return table;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void page_table_free_pgste(unsigned long *table)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
|
|
|
|
pgtable_page_ctor(page);
|
|
|
|
atomic_set(&page->_mapcount, -1);
|
|
|
|
__free_page(page);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-02-10 00:24:35 +07:00
|
|
|
unsigned long *page_table_alloc(struct mm_struct *mm)
|
2007-10-22 17:52:47 +07:00
|
|
|
{
|
2008-02-10 00:24:35 +07:00
|
|
|
struct page *page;
|
2007-10-22 17:52:47 +07:00
|
|
|
unsigned long *table;
|
2011-06-06 19:14:41 +07:00
|
|
|
unsigned int mask, bit;
|
2007-10-22 17:52:47 +07:00
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
#ifdef CONFIG_PGSTE
|
|
|
|
if (mm_has_pgste(mm))
|
|
|
|
return page_table_alloc_pgste(mm);
|
|
|
|
#endif
|
|
|
|
/* Allocate fragments of a 4K page as 1K/2K page table */
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_lock_bh(&mm->context.list_lock);
|
2011-06-06 19:14:41 +07:00
|
|
|
mask = FRAG_MASK;
|
2008-02-10 00:24:35 +07:00
|
|
|
if (!list_empty(&mm->context.pgtable_list)) {
|
|
|
|
page = list_first_entry(&mm->context.pgtable_list,
|
|
|
|
struct page, lru);
|
2011-06-06 19:14:41 +07:00
|
|
|
table = (unsigned long *) page_to_phys(page);
|
|
|
|
mask = atomic_read(&page->_mapcount);
|
|
|
|
mask = mask | (mask >> 4);
|
2008-02-10 00:24:35 +07:00
|
|
|
}
|
2011-06-06 19:14:41 +07:00
|
|
|
if ((mask & FRAG_MASK) == FRAG_MASK) {
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_unlock_bh(&mm->context.list_lock);
|
2008-02-10 00:24:35 +07:00
|
|
|
page = alloc_page(GFP_KERNEL|__GFP_REPEAT);
|
|
|
|
if (!page)
|
2007-10-22 17:52:47 +07:00
|
|
|
return NULL;
|
2008-02-10 00:24:35 +07:00
|
|
|
pgtable_page_ctor(page);
|
2011-06-06 19:14:41 +07:00
|
|
|
atomic_set(&page->_mapcount, 1);
|
2008-02-10 00:24:35 +07:00
|
|
|
table = (unsigned long *) page_to_phys(page);
|
2011-06-06 19:14:41 +07:00
|
|
|
clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_lock_bh(&mm->context.list_lock);
|
2008-02-10 00:24:35 +07:00
|
|
|
list_add(&page->lru, &mm->context.pgtable_list);
|
2011-06-06 19:14:41 +07:00
|
|
|
} else {
|
|
|
|
for (bit = 1; mask & bit; bit <<= 1)
|
|
|
|
table += PTRS_PER_PTE;
|
|
|
|
mask = atomic_xor_bits(&page->_mapcount, bit);
|
|
|
|
if ((mask & FRAG_MASK) == FRAG_MASK)
|
|
|
|
list_del(&page->lru);
|
2007-10-22 17:52:47 +07:00
|
|
|
}
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_unlock_bh(&mm->context.list_lock);
|
2007-10-22 17:52:47 +07:00
|
|
|
return table;
|
|
|
|
}
|
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
void page_table_free(struct mm_struct *mm, unsigned long *table)
|
2010-10-25 21:10:11 +07:00
|
|
|
{
|
|
|
|
struct page *page;
|
2011-06-06 19:14:41 +07:00
|
|
|
unsigned int bit, mask;
|
2010-10-25 21:10:11 +07:00
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
#ifdef CONFIG_PGSTE
|
|
|
|
if (mm_has_pgste(mm))
|
|
|
|
return page_table_free_pgste(table);
|
|
|
|
#endif
|
|
|
|
/* Free 1K/2K page table fragment of a 4K page */
|
2010-10-25 21:10:11 +07:00
|
|
|
page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
|
2011-06-06 19:14:41 +07:00
|
|
|
bit = 1 << ((__pa(table) & ~PAGE_MASK)/(PTRS_PER_PTE*sizeof(pte_t)));
|
|
|
|
spin_lock_bh(&mm->context.list_lock);
|
|
|
|
if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
|
|
|
|
list_del(&page->lru);
|
|
|
|
mask = atomic_xor_bits(&page->_mapcount, bit);
|
|
|
|
if (mask & FRAG_MASK)
|
|
|
|
list_add(&page->lru, &mm->context.pgtable_list);
|
|
|
|
spin_unlock_bh(&mm->context.list_lock);
|
|
|
|
if (mask == 0) {
|
2010-10-25 21:10:11 +07:00
|
|
|
pgtable_page_dtor(page);
|
2011-06-06 19:14:41 +07:00
|
|
|
atomic_set(&page->_mapcount, -1);
|
2010-10-25 21:10:11 +07:00
|
|
|
__free_page(page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
#ifdef CONFIG_HAVE_RCU_TABLE_FREE
|
|
|
|
|
|
|
|
static void __page_table_free_rcu(void *table, unsigned bit)
|
2007-10-22 17:52:47 +07:00
|
|
|
{
|
2008-02-10 00:24:35 +07:00
|
|
|
struct page *page;
|
2007-10-22 17:52:47 +07:00
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
#ifdef CONFIG_PGSTE
|
|
|
|
if (bit == FRAG_MASK)
|
|
|
|
return page_table_free_pgste(table);
|
|
|
|
#endif
|
|
|
|
/* Free 1K/2K page table fragment of a 4K page */
|
2008-02-10 00:24:35 +07:00
|
|
|
page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
|
2011-06-06 19:14:41 +07:00
|
|
|
if (atomic_xor_bits(&page->_mapcount, bit) == 0) {
|
2008-02-10 00:24:35 +07:00
|
|
|
pgtable_page_dtor(page);
|
2011-06-06 19:14:41 +07:00
|
|
|
atomic_set(&page->_mapcount, -1);
|
2008-02-10 00:24:35 +07:00
|
|
|
__free_page(page);
|
|
|
|
}
|
|
|
|
}
|
2007-10-22 17:52:47 +07:00
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
void page_table_free_rcu(struct mmu_gather *tlb, unsigned long *table)
|
2010-10-25 21:10:11 +07:00
|
|
|
{
|
2011-06-06 19:14:41 +07:00
|
|
|
struct mm_struct *mm;
|
2010-10-25 21:10:11 +07:00
|
|
|
struct page *page;
|
2011-06-06 19:14:41 +07:00
|
|
|
unsigned int bit, mask;
|
2010-10-25 21:10:11 +07:00
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
mm = tlb->mm;
|
|
|
|
#ifdef CONFIG_PGSTE
|
|
|
|
if (mm_has_pgste(mm)) {
|
|
|
|
table = (unsigned long *) (__pa(table) | FRAG_MASK);
|
|
|
|
tlb_remove_table(tlb, table);
|
|
|
|
return;
|
2010-10-25 21:10:11 +07:00
|
|
|
}
|
2011-06-06 19:14:41 +07:00
|
|
|
#endif
|
|
|
|
bit = 1 << ((__pa(table) & ~PAGE_MASK) / (PTRS_PER_PTE*sizeof(pte_t)));
|
2010-10-25 21:10:11 +07:00
|
|
|
page = pfn_to_page(__pa(table) >> PAGE_SHIFT);
|
|
|
|
spin_lock_bh(&mm->context.list_lock);
|
2011-06-06 19:14:41 +07:00
|
|
|
if ((atomic_read(&page->_mapcount) & FRAG_MASK) != FRAG_MASK)
|
|
|
|
list_del(&page->lru);
|
|
|
|
mask = atomic_xor_bits(&page->_mapcount, bit | (bit << 4));
|
|
|
|
if (mask & FRAG_MASK)
|
|
|
|
list_add_tail(&page->lru, &mm->context.pgtable_list);
|
2010-10-25 21:10:11 +07:00
|
|
|
spin_unlock_bh(&mm->context.list_lock);
|
2011-06-06 19:14:41 +07:00
|
|
|
table = (unsigned long *) (__pa(table) | (bit << 4));
|
|
|
|
tlb_remove_table(tlb, table);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __tlb_remove_table(void *_table)
|
|
|
|
{
|
|
|
|
void *table = (void *)((unsigned long) _table & PAGE_MASK);
|
|
|
|
unsigned type = (unsigned long) _table & ~PAGE_MASK;
|
|
|
|
|
|
|
|
if (type)
|
|
|
|
__page_table_free_rcu(table, type);
|
|
|
|
else
|
|
|
|
free_pages((unsigned long) table, ALLOC_ORDER);
|
2010-10-25 21:10:11 +07:00
|
|
|
}
|
|
|
|
|
2011-06-06 19:14:41 +07:00
|
|
|
#endif
|
|
|
|
|
2008-03-26 00:47:10 +07:00
|
|
|
/*
|
|
|
|
* switch on pgstes for its userspace process (for kvm)
|
|
|
|
*/
|
|
|
|
int s390_enable_sie(void)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk = current;
|
2008-05-21 18:37:29 +07:00
|
|
|
struct mm_struct *mm, *old_mm;
|
2008-03-26 00:47:10 +07:00
|
|
|
|
2009-03-26 21:23:57 +07:00
|
|
|
/* Do we have switched amode? If no, we cannot do sie */
|
2009-12-07 18:51:43 +07:00
|
|
|
if (user_mode == HOME_SPACE_MODE)
|
2009-03-26 21:23:57 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2008-05-21 18:37:29 +07:00
|
|
|
/* Do we have pgstes? if yes, we are done */
|
2011-06-06 19:14:41 +07:00
|
|
|
if (mm_has_pgste(tsk->mm))
|
2008-05-21 18:37:29 +07:00
|
|
|
return 0;
|
2008-03-26 00:47:10 +07:00
|
|
|
|
2008-05-21 18:37:29 +07:00
|
|
|
/* lets check if we are allowed to replace the mm */
|
|
|
|
task_lock(tsk);
|
2008-03-26 00:47:10 +07:00
|
|
|
if (!tsk->mm || atomic_read(&tsk->mm->mm_users) > 1 ||
|
2009-10-06 15:33:55 +07:00
|
|
|
#ifdef CONFIG_AIO
|
|
|
|
!hlist_empty(&tsk->mm->ioctx_list) ||
|
|
|
|
#endif
|
|
|
|
tsk->mm != tsk->active_mm) {
|
2008-05-21 18:37:29 +07:00
|
|
|
task_unlock(tsk);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
task_unlock(tsk);
|
2008-03-26 00:47:10 +07:00
|
|
|
|
2008-10-28 17:10:15 +07:00
|
|
|
/* we copy the mm and let dup_mm create the page tables with_pgstes */
|
|
|
|
tsk->mm->context.alloc_pgste = 1;
|
2008-03-26 00:47:10 +07:00
|
|
|
mm = dup_mm(tsk);
|
2008-10-28 17:10:15 +07:00
|
|
|
tsk->mm->context.alloc_pgste = 0;
|
2008-03-26 00:47:10 +07:00
|
|
|
if (!mm)
|
2008-05-21 18:37:29 +07:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2008-10-28 17:10:15 +07:00
|
|
|
/* Now lets check again if something happened */
|
2008-05-21 18:37:29 +07:00
|
|
|
task_lock(tsk);
|
|
|
|
if (!tsk->mm || atomic_read(&tsk->mm->mm_users) > 1 ||
|
2009-10-06 15:33:55 +07:00
|
|
|
#ifdef CONFIG_AIO
|
|
|
|
!hlist_empty(&tsk->mm->ioctx_list) ||
|
|
|
|
#endif
|
|
|
|
tsk->mm != tsk->active_mm) {
|
2008-05-21 18:37:29 +07:00
|
|
|
mmput(mm);
|
|
|
|
task_unlock(tsk);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ok, we are alone. No ptrace, no threads, etc. */
|
|
|
|
old_mm = tsk->mm;
|
2008-03-26 00:47:10 +07:00
|
|
|
tsk->mm = tsk->active_mm = mm;
|
|
|
|
preempt_disable();
|
|
|
|
update_mm(mm, tsk);
|
2010-10-25 21:10:45 +07:00
|
|
|
atomic_inc(&mm->context.attach_count);
|
|
|
|
atomic_dec(&old_mm->context.attach_count);
|
2009-03-26 21:25:01 +07:00
|
|
|
cpumask_set_cpu(smp_processor_id(), mm_cpumask(mm));
|
2008-03-26 00:47:10 +07:00
|
|
|
preempt_enable();
|
|
|
|
task_unlock(tsk);
|
2008-05-21 18:37:29 +07:00
|
|
|
mmput(old_mm);
|
|
|
|
return 0;
|
2008-03-26 00:47:10 +07:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(s390_enable_sie);
|
2009-06-16 15:30:26 +07:00
|
|
|
|
2009-09-23 03:58:46 +07:00
|
|
|
#if defined(CONFIG_DEBUG_PAGEALLOC) && defined(CONFIG_HIBERNATION)
|
2009-06-16 15:30:26 +07:00
|
|
|
bool kernel_page_present(struct page *page)
|
|
|
|
{
|
|
|
|
unsigned long addr;
|
|
|
|
int cc;
|
|
|
|
|
|
|
|
addr = page_to_phys(page);
|
2009-09-23 03:58:46 +07:00
|
|
|
asm volatile(
|
|
|
|
" lra %1,0(%1)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (cc), "+a" (addr) : : "cc");
|
2009-06-16 15:30:26 +07:00
|
|
|
return cc == 0;
|
|
|
|
}
|
2009-09-23 03:58:46 +07:00
|
|
|
#endif /* CONFIG_HIBERNATION && CONFIG_DEBUG_PAGEALLOC */
|