]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sh: kgdb: Unset CACHE_FLUSH_IS_SAFE for SMP.
authorPaul Mundt <lethal@linux-sh.org>
Wed, 11 Apr 2012 01:48:24 +0000 (10:48 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 11 Apr 2012 01:48:24 +0000 (10:48 +0900)
Our SMP cache flush ops use CPU cross calls to deal with things
like I-cache accesses not being broadcast in hardware, so ensure that
the CACHE_FLUSH_IS_SAFE reflects this.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/include/asm/kgdb.h

index 00485198f598ad3f95816b59cf773a9fbf2b694a..9e7d2d1b03e0adc7dc7e6225bd072f5d8164e35a 100644 (file)
@@ -23,10 +23,15 @@ static inline void arch_kgdb_breakpoint(void)
        __asm__ __volatile__ ("trapa #0x3c\n");
 }
 
-#define BUFMAX                 2048
-
-#define CACHE_FLUSH_IS_SAFE    1
 #define BREAK_INSTR_SIZE       2
+#define BUFMAX                 2048
+
+#ifdef CONFIG_SMP
+# define CACHE_FLUSH_IS_SAFE   0
+#else
+# define CACHE_FLUSH_IS_SAFE   1
+#endif
+
 #define GDB_ADJUSTS_BREAK_OFFSET
 
 #endif /* __ASM_SH_KGDB_H */