mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
[PARISC] unbreak pgalloc.h
Commit 2f569afd9c
broke the compile
rather spectacularly. Fix code errors.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
parent
d912e1dc8b
commit
9aa150b8d8
@ -138,10 +138,10 @@ static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
|
||||
free_page((unsigned long)pte);
|
||||
}
|
||||
|
||||
static inline void pte_free_kernel(struct mm_struct *mm, struct page *pte)
|
||||
static inline void pte_free(struct mm_struct *mm, struct page *pte)
|
||||
{
|
||||
pgtable_page_dtor(pte);
|
||||
pte_free_kernel(page_address((pte));
|
||||
pte_free_kernel(mm, page_address(pte));
|
||||
}
|
||||
|
||||
#define check_pgt_cache() do { } while (0)
|
||||
|
Loading…
Reference in New Issue
Block a user