|
@@ -325,27 +325,27 @@ static inline void pgd_clear(pgd_t *pgd) {
|
|
* setup: the pgd is never bad, and a pmd always exists (as it's folded
|
|
* setup: the pgd is never bad, and a pmd always exists (as it's folded
|
|
* into the pgd entry)
|
|
* into the pgd entry)
|
|
*/
|
|
*/
|
|
-extern inline int pgd_none(pgd_t pgd) { return 0; }
|
|
|
|
-extern inline int pgd_bad(pgd_t pgd) { return 0; }
|
|
|
|
-extern inline int pgd_present(pgd_t pgd) { return 1; }
|
|
|
|
-extern inline void pgd_clear(pgd_t * pgdp) { }
|
|
|
|
|
|
+static inline int pgd_none(pgd_t pgd) { return 0; }
|
|
|
|
+static inline int pgd_bad(pgd_t pgd) { return 0; }
|
|
|
|
+static inline int pgd_present(pgd_t pgd) { return 1; }
|
|
|
|
+static inline void pgd_clear(pgd_t * pgdp) { }
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/*
|
|
/*
|
|
* The following only work if pte_present() is true.
|
|
* The following only work if pte_present() is true.
|
|
* Undefined behaviour if not..
|
|
* Undefined behaviour if not..
|
|
*/
|
|
*/
|
|
-extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
|
|
|
|
-extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
|
|
|
|
-extern inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
|
|
|
|
-extern inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
|
|
|
|
-
|
|
|
|
-extern inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~_PAGE_DIRTY; return pte; }
|
|
|
|
-extern inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
|
|
|
|
-extern inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_WRITE; return pte; }
|
|
|
|
-extern inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= _PAGE_DIRTY; return pte; }
|
|
|
|
-extern inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
|
|
|
|
-extern inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) |= _PAGE_WRITE; return pte; }
|
|
|
|
|
|
+static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
|
|
|
|
+static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
|
|
|
|
+static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
|
|
|
|
+static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
|
|
|
|
+
|
|
|
|
+static inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~_PAGE_DIRTY; return pte; }
|
|
|
|
+static inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
|
|
|
|
+static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_WRITE; return pte; }
|
|
|
|
+static inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= _PAGE_DIRTY; return pte; }
|
|
|
|
+static inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
|
|
|
|
+static inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) |= _PAGE_WRITE; return pte; }
|
|
|
|
|
|
/*
|
|
/*
|
|
* Conversion functions: convert a page and protection to a page entry,
|
|
* Conversion functions: convert a page and protection to a page entry,
|
|
@@ -369,7 +369,7 @@ static inline pte_t pfn_pte(unsigned long pfn, pgprot_t pgprot)
|
|
return pte;
|
|
return pte;
|
|
}
|
|
}
|
|
|
|
|
|
-extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
|
|
|
|
|
+static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
|
{ pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
|
|
{ pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot); return pte; }
|
|
|
|
|
|
/* Permanent address of a page. On parisc we don't have highmem. */
|
|
/* Permanent address of a page. On parisc we don't have highmem. */
|