Commit a3ab0f06 authored by Max Filippov's avatar Max Filippov Committed by Greg Kroah-Hartman

xtensa: mm/cache: add missing EXPORT_SYMBOLs

commit bc652eb6 upstream.

Functions clear_user_highpage, copy_user_highpage, flush_dcache_page,
local_flush_cache_range and local_flush_cache_page may be used from
modules. Export them.
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03973c57
...@@ -103,6 +103,7 @@ void clear_user_highpage(struct page *page, unsigned long vaddr) ...@@ -103,6 +103,7 @@ void clear_user_highpage(struct page *page, unsigned long vaddr)
clear_page_alias(kvaddr, paddr); clear_page_alias(kvaddr, paddr);
preempt_enable(); preempt_enable();
} }
EXPORT_SYMBOL(clear_user_highpage);
void copy_user_highpage(struct page *dst, struct page *src, void copy_user_highpage(struct page *dst, struct page *src,
unsigned long vaddr, struct vm_area_struct *vma) unsigned long vaddr, struct vm_area_struct *vma)
...@@ -119,6 +120,7 @@ void copy_user_highpage(struct page *dst, struct page *src, ...@@ -119,6 +120,7 @@ void copy_user_highpage(struct page *dst, struct page *src,
copy_page_alias(dst_vaddr, src_vaddr, dst_paddr, src_paddr); copy_page_alias(dst_vaddr, src_vaddr, dst_paddr, src_paddr);
preempt_enable(); preempt_enable();
} }
EXPORT_SYMBOL(copy_user_highpage);
/* /*
* Any time the kernel writes to a user page cache page, or it is about to * Any time the kernel writes to a user page cache page, or it is about to
...@@ -172,7 +174,7 @@ void flush_dcache_page(struct page *page) ...@@ -172,7 +174,7 @@ void flush_dcache_page(struct page *page)
/* There shouldn't be an entry in the cache for this page anymore. */ /* There shouldn't be an entry in the cache for this page anymore. */
} }
EXPORT_SYMBOL(flush_dcache_page);
/* /*
* For now, flush the whole cache. FIXME?? * For now, flush the whole cache. FIXME??
...@@ -184,6 +186,7 @@ void local_flush_cache_range(struct vm_area_struct *vma, ...@@ -184,6 +186,7 @@ void local_flush_cache_range(struct vm_area_struct *vma,
__flush_invalidate_dcache_all(); __flush_invalidate_dcache_all();
__invalidate_icache_all(); __invalidate_icache_all();
} }
EXPORT_SYMBOL(local_flush_cache_range);
/* /*
* Remove any entry in the cache for this page. * Remove any entry in the cache for this page.
...@@ -203,6 +206,7 @@ void local_flush_cache_page(struct vm_area_struct *vma, unsigned long address, ...@@ -203,6 +206,7 @@ void local_flush_cache_page(struct vm_area_struct *vma, unsigned long address,
__flush_invalidate_dcache_page_alias(virt, phys); __flush_invalidate_dcache_page_alias(virt, phys);
__invalidate_icache_page_alias(virt, phys); __invalidate_icache_page_alias(virt, phys);
} }
EXPORT_SYMBOL(local_flush_cache_page);
#endif /* DCACHE_WAY_SIZE > PAGE_SIZE */ #endif /* DCACHE_WAY_SIZE > PAGE_SIZE */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment