mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 18:52:25 +07:00
x86: unify pud_none
Impact: cleanup Unify and demacro pud_none. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
This commit is contained in:
parent
cc290ca38c
commit
deb79cfb36
@ -18,11 +18,6 @@
|
|||||||
printk("%s:%d: bad pgd %p(%016Lx).\n", \
|
printk("%s:%d: bad pgd %p(%016Lx).\n", \
|
||||||
__FILE__, __LINE__, &(e), pgd_val(e))
|
__FILE__, __LINE__, &(e), pgd_val(e))
|
||||||
|
|
||||||
static inline int pud_none(pud_t pud)
|
|
||||||
{
|
|
||||||
return pud_val(pud) == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Rules for using set_pte: the pte being assigned *must* be
|
/* Rules for using set_pte: the pte being assigned *must* be
|
||||||
* either not present or in a state where the hardware will
|
* either not present or in a state where the hardware will
|
||||||
* not attempt to update the pte. In places where this is
|
* not attempt to update the pte. In places where this is
|
||||||
|
@ -525,6 +525,11 @@ static inline unsigned long pages_to_mb(unsigned long npg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if PAGETABLE_LEVELS > 2
|
#if PAGETABLE_LEVELS > 2
|
||||||
|
static inline int pud_none(pud_t pud)
|
||||||
|
{
|
||||||
|
return pud_val(pud) == 0;
|
||||||
|
}
|
||||||
|
|
||||||
static inline int pud_present(pud_t pud)
|
static inline int pud_present(pud_t pud)
|
||||||
{
|
{
|
||||||
return pud_val(pud) & _PAGE_PRESENT;
|
return pud_val(pud) & _PAGE_PRESENT;
|
||||||
|
@ -68,7 +68,6 @@ extern void paging_init(void);
|
|||||||
__FILE__, __LINE__, &(e), pgd_val(e))
|
__FILE__, __LINE__, &(e), pgd_val(e))
|
||||||
|
|
||||||
#define pgd_none(x) (!pgd_val(x))
|
#define pgd_none(x) (!pgd_val(x))
|
||||||
#define pud_none(x) (!pud_val(x))
|
|
||||||
|
|
||||||
struct mm_struct;
|
struct mm_struct;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user