2019-06-04 08:11:33 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-02 09:55:55 +00:00
|
|
|
* arch/arm/include/asm/pgalloc.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2001 Russell King
|
|
|
|
*/
|
|
|
|
#ifndef _ASMARM_PGALLOC_H
|
|
|
|
#define _ASMARM_PGALLOC_H
|
|
|
|
|
2011-02-22 22:29:37 +00:00
|
|
|
#include <linux/pagemap.h>
|
|
|
|
|
2006-03-16 14:44:36 +00:00
|
|
|
#include <asm/domain.h>
|
|
|
|
#include <asm/pgtable-hwdef.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
#include <asm/tlbflush.h>
|
|
|
|
|
2006-06-20 19:46:52 +00:00
|
|
|
#ifdef CONFIG_MMU
|
|
|
|
|
2006-03-16 14:44:36 +00:00
|
|
|
#define _PAGE_USER_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_USER))
|
|
|
|
#define _PAGE_KERNEL_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_KERNEL))
|
|
|
|
|
2011-11-22 17:30:29 +00:00
|
|
|
#ifdef CONFIG_ARM_LPAE
|
|
|
|
|
|
|
|
static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
|
|
|
|
{
|
2016-06-24 21:48:47 +00:00
|
|
|
return (pmd_t *)get_zeroed_page(GFP_KERNEL);
|
2011-11-22 17:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
|
|
|
|
{
|
|
|
|
BUG_ON((unsigned long)pmd & (PAGE_SIZE-1));
|
|
|
|
free_page((unsigned long)pmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
|
|
|
|
{
|
|
|
|
set_pud(pud, __pud(__pa(pmd) | PMD_TYPE_TABLE));
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_ARM_LPAE */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Since we have only two-level page tables, these are trivial
|
|
|
|
*/
|
|
|
|
#define pmd_alloc_one(mm,addr) ({ BUG(); ((pmd_t *)2); })
|
2008-02-05 06:29:14 +00:00
|
|
|
#define pmd_free(mm, pmd) do { } while (0)
|
2011-11-22 17:30:28 +00:00
|
|
|
#define pud_populate(mm,pmd,pte) BUG()
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-11-22 17:30:29 +00:00
|
|
|
#endif /* CONFIG_ARM_LPAE */
|
|
|
|
|
2010-11-21 11:00:56 +00:00
|
|
|
extern pgd_t *pgd_alloc(struct mm_struct *mm);
|
|
|
|
extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-11-16 00:16:01 +00:00
|
|
|
static inline void clean_pte_table(pte_t *pte)
|
|
|
|
{
|
|
|
|
clean_dcache_area(pte + PTE_HWTABLE_PTRS, PTE_HWTABLE_SIZE);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Allocate one PTE table.
|
|
|
|
*
|
|
|
|
* This actually allocates two hardware PTE tables, but we wrap this up
|
|
|
|
* into one table thus:
|
|
|
|
*
|
|
|
|
* +------------+
|
|
|
|
* | Linux pt 0 |
|
|
|
|
* +------------+
|
|
|
|
* | Linux pt 1 |
|
|
|
|
* +------------+
|
2010-11-16 00:16:01 +00:00
|
|
|
* | h/w pt 0 |
|
|
|
|
* +------------+
|
|
|
|
* | h/w pt 1 |
|
|
|
|
* +------------+
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2019-07-12 03:57:57 +00:00
|
|
|
|
|
|
|
#define __HAVE_ARCH_PTE_ALLOC_ONE_KERNEL
|
|
|
|
#define __HAVE_ARCH_PTE_ALLOC_ONE
|
|
|
|
#include <asm-generic/pgalloc.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static inline pte_t *
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-03 23:28:34 +00:00
|
|
|
pte_alloc_one_kernel(struct mm_struct *mm)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2019-07-12 03:57:57 +00:00
|
|
|
pte_t *pte = __pte_alloc_one_kernel(mm);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-11-16 00:16:01 +00:00
|
|
|
if (pte)
|
|
|
|
clean_pte_table(pte);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return pte;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:57:57 +00:00
|
|
|
#ifdef CONFIG_HIGHPTE
|
|
|
|
#define PGTABLE_HIGHMEM __GFP_HIGHMEM
|
|
|
|
#else
|
|
|
|
#define PGTABLE_HIGHMEM 0
|
|
|
|
#endif
|
|
|
|
|
2008-02-08 12:22:04 +00:00
|
|
|
static inline pgtable_t
|
mm: treewide: remove unused address argument from pte_alloc functions
Patch series "Add support for fast mremap".
This series speeds up the mremap(2) syscall by copying page tables at
the PMD level even for non-THP systems. There is concern that the extra
'address' argument that mremap passes to pte_alloc may do something
subtle architecture related in the future that may make the scheme not
work. Also we find that there is no point in passing the 'address' to
pte_alloc since its unused. This patch therefore removes this argument
tree-wide resulting in a nice negative diff as well. Also ensuring
along the way that the enabled architectures do not do anything funky
with the 'address' argument that goes unnoticed by the optimization.
Build and boot tested on x86-64. Build tested on arm64. The config
enablement patch for arm64 will be posted in the future after more
testing.
The changes were obtained by applying the following Coccinelle script.
(thanks Julia for answering all Coccinelle questions!).
Following fix ups were done manually:
* Removal of address argument from pte_fragment_alloc
* Removal of pte_alloc_one_fast definitions from m68k and microblaze.
// Options: --include-headers --no-includes
// Note: I split the 'identifier fn' line, so if you are manually
// running it, please unsplit it so it runs for you.
virtual patch
@pte_alloc_func_def depends on patch exists@
identifier E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
type T2;
@@
fn(...
- , T2 E2
)
{ ... }
@pte_alloc_func_proto_noarg depends on patch exists@
type T1, T2, T3, T4;
identifier fn =~ "^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1, T2);
+ T3 fn(T1);
|
- T3 fn(T1, T2, T4);
+ T3 fn(T1, T2);
)
@pte_alloc_func_proto depends on patch exists@
identifier E1, E2, E4;
type T1, T2, T3, T4;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
(
- T3 fn(T1 E1, T2 E2);
+ T3 fn(T1 E1);
|
- T3 fn(T1 E1, T2 E2, T4 E4);
+ T3 fn(T1 E1, T2 E2);
)
@pte_alloc_func_call depends on patch exists@
expression E2;
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
@@
fn(...
-, E2
)
@pte_alloc_macro depends on patch exists@
identifier fn =~
"^(__pte_alloc|pte_alloc_one|pte_alloc|__pte_alloc_kernel|pte_alloc_one_kernel)$";
identifier a, b, c;
expression e;
position p;
@@
(
- #define fn(a, b, c) e
+ #define fn(a, b) e
|
- #define fn(a, b) e
+ #define fn(a) e
)
Link: http://lkml.kernel.org/r/20181108181201.88826-2-joelaf@google.com
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Suggested-by: Kirill A. Shutemov <kirill@shutemov.name>
Acked-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Kirill A. Shutemov <kirill@shutemov.name>
Cc: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-03 23:28:34 +00:00
|
|
|
pte_alloc_one(struct mm_struct *mm)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct page *pte;
|
|
|
|
|
2019-07-12 03:57:57 +00:00
|
|
|
pte = __pte_alloc_one(mm, GFP_PGTABLE_USER | PGTABLE_HIGHMEM);
|
2013-11-14 22:31:26 +00:00
|
|
|
if (!pte)
|
|
|
|
return NULL;
|
|
|
|
if (!PageHighMem(pte))
|
|
|
|
clean_pte_table(page_address(pte));
|
2005-04-16 22:20:36 +00:00
|
|
|
return pte;
|
|
|
|
}
|
|
|
|
|
2010-11-16 00:16:01 +00:00
|
|
|
static inline void __pmd_populate(pmd_t *pmdp, phys_addr_t pte,
|
2011-09-05 16:51:56 +00:00
|
|
|
pmdval_t prot)
|
2005-06-22 19:58:29 +00:00
|
|
|
{
|
2011-09-05 16:51:56 +00:00
|
|
|
pmdval_t pmdval = (pte + PTE_HWTABLE_OFF) | prot;
|
2005-06-22 19:58:29 +00:00
|
|
|
pmdp[0] = __pmd(pmdval);
|
2011-11-22 17:30:29 +00:00
|
|
|
#ifndef CONFIG_ARM_LPAE
|
2005-06-22 19:58:29 +00:00
|
|
|
pmdp[1] = __pmd(pmdval + 256 * sizeof(pte_t));
|
2011-11-22 17:30:29 +00:00
|
|
|
#endif
|
2005-06-22 19:58:29 +00:00
|
|
|
flush_pmd_entry(pmdp);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Populate the pmdp entry with a pointer to the pte. This pmd is part
|
|
|
|
* of the mm address space.
|
|
|
|
*
|
|
|
|
* Ensure that we always set both PMD entries.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep)
|
|
|
|
{
|
|
|
|
/*
|
2010-11-16 00:16:01 +00:00
|
|
|
* The pmd must be loaded with the physical address of the PTE table
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2010-11-16 00:16:01 +00:00
|
|
|
__pmd_populate(pmdp, __pa(ptep), _PAGE_KERNEL_TABLE);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2008-02-08 12:22:04 +00:00
|
|
|
pmd_populate(struct mm_struct *mm, pmd_t *pmdp, pgtable_t ptep)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-11-29 01:33:30 +00:00
|
|
|
extern pmdval_t user_pmd_table;
|
|
|
|
pmdval_t prot;
|
|
|
|
|
|
|
|
if (__LINUX_ARM_ARCH__ >= 6 && !IS_ENABLED(CONFIG_ARM_LPAE))
|
|
|
|
prot = user_pmd_table;
|
|
|
|
else
|
|
|
|
prot = _PAGE_USER_TABLE;
|
|
|
|
|
|
|
|
__pmd_populate(pmdp, page_to_phys(ptep), prot);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-02-08 12:22:04 +00:00
|
|
|
#define pmd_pgtable(pmd) pmd_page(pmd)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-20 19:46:52 +00:00
|
|
|
#endif /* CONFIG_MMU */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|