projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b4214e4
)
sh: do not perform IPI-based cache flush except on boards that need it
author
Rich Felker
<dalias@libc.org>
Mon, 15 Feb 2016 18:36:33 +0000
(18:36 +0000)
committer
Rich Felker
<dalias@libc.org>
Fri, 5 Aug 2016 03:29:40 +0000
(
03:29
+0000)
Signed-off-by: Rich Felker <dalias@libc.org>
arch/sh/mm/cache.c
patch
|
blob
|
history
diff --git
a/arch/sh/mm/cache.c
b/arch/sh/mm/cache.c
index
70cc52f
..
36554a9
100644
(file)
--- a/
arch/sh/mm/cache.c
+++ b/
arch/sh/mm/cache.c
@@
-42,6
+42,8
@@
static inline void cacheop_on_each_cpu(void (*func) (void *info), void *info,
{
preempt_disable();
+ /* Needing IPI for cross-core flush is SHX3-specific. */
+#ifdef CONFIG_CPU_SHX3
/*
* It's possible that this gets called early on when IRQs are
* still disabled due to ioremapping by the boot CPU, so don't
@@
-49,6
+51,7
@@
static inline void cacheop_on_each_cpu(void (*func) (void *info), void *info,
*/
if (num_online_cpus() > 1)
smp_call_function(func, info, wait);
+#endif
func(info);