Commit 3735313ad2e1515140683f0aee6e74aec103391d
Committed by
Kyle McMartin
1 parent
959f4f13a3
Exists in
master
and in
7 other branches
[PARISC] Add prototypes for flush_user_dcache_range and flush_user_icache_range
They're called from signal.c, so need to be prototyped Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff
include/asm-parisc/cacheflush.h
... | ... | @@ -27,6 +27,8 @@ |
27 | 27 | void flush_kernel_icache_page(void *); |
28 | 28 | void flush_user_dcache_page(unsigned long); |
29 | 29 | void flush_user_icache_page(unsigned long); |
30 | +void flush_user_dcache_range(unsigned long, unsigned long); | |
31 | +void flush_user_icache_range(unsigned long, unsigned long); | |
30 | 32 | |
31 | 33 | /* Cache flush operations */ |
32 | 34 |