diff options
Diffstat (limited to 'include/asm-x86_64/pgalloc.h')
| -rw-r--r-- | include/asm-x86_64/pgalloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-x86_64/pgalloc.h b/include/asm-x86_64/pgalloc.h index deadd146978b..08cad2482bcb 100644 --- a/include/asm-x86_64/pgalloc.h +++ b/include/asm-x86_64/pgalloc.h | |||
| @@ -18,12 +18,12 @@ static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, struct page *p | |||
| 18 | set_pmd(pmd, __pmd(_PAGE_TABLE | (page_to_pfn(pte) << PAGE_SHIFT))); | 18 | set_pmd(pmd, __pmd(_PAGE_TABLE | (page_to_pfn(pte) << PAGE_SHIFT))); |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | extern __inline__ pmd_t *get_pmd(void) | 21 | static inline pmd_t *get_pmd(void) |
| 22 | { | 22 | { |
| 23 | return (pmd_t *)get_zeroed_page(GFP_KERNEL); | 23 | return (pmd_t *)get_zeroed_page(GFP_KERNEL); |
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | extern __inline__ void pmd_free(pmd_t *pmd) | 26 | static inline void pmd_free(pmd_t *pmd) |
| 27 | { | 27 | { |
| 28 | BUG_ON((unsigned long)pmd & (PAGE_SIZE-1)); | 28 | BUG_ON((unsigned long)pmd & (PAGE_SIZE-1)); |
| 29 | free_page((unsigned long)pmd); | 29 | free_page((unsigned long)pmd); |
| @@ -86,13 +86,13 @@ static inline struct page *pte_alloc_one(struct mm_struct *mm, unsigned long add | |||
| 86 | /* Should really implement gc for free page table pages. This could be | 86 | /* Should really implement gc for free page table pages. This could be |
| 87 | done with a reference count in struct page. */ | 87 | done with a reference count in struct page. */ |
| 88 | 88 | ||
| 89 | extern __inline__ void pte_free_kernel(pte_t *pte) | 89 | static inline void pte_free_kernel(pte_t *pte) |
| 90 | { | 90 | { |
| 91 | BUG_ON((unsigned long)pte & (PAGE_SIZE-1)); | 91 | BUG_ON((unsigned long)pte & (PAGE_SIZE-1)); |
| 92 | free_page((unsigned long)pte); | 92 | free_page((unsigned long)pte); |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | extern inline void pte_free(struct page *pte) | 95 | static inline void pte_free(struct page *pte) |
| 96 | { | 96 | { |
| 97 | __free_page(pte); | 97 | __free_page(pte); |
| 98 | } | 98 | } |
