dect
/
linux-2.6
Archived
13
0
Fork 0

[PARISC] Export clear_user_page to modules

Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
Matthew Wilcox 2006-09-20 21:44:09 -06:00 committed by Matthew Wilcox
parent 99b6e9be71
commit 8d0b7d1055
1 changed files with 2 additions and 2 deletions

View File

@ -372,8 +372,7 @@ void parisc_setup_cache_timing(void)
extern void purge_kernel_dcache_page(unsigned long);
extern void clear_user_page_asm(void *page, unsigned long vaddr);
void
clear_user_page(void *page, unsigned long vaddr, struct page *pg)
void clear_user_page(void *page, unsigned long vaddr, struct page *pg)
{
purge_kernel_dcache_page((unsigned long)page);
purge_tlb_start();
@ -381,6 +380,7 @@ clear_user_page(void *page, unsigned long vaddr, struct page *pg)
purge_tlb_end();
clear_user_page_asm(page, vaddr);
}
EXPORT_SYMBOL(clear_user_page);
void flush_kernel_dcache_page_addr(void *addr)
{