]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
parisc: Reduce overhead of parisc_requires_coherency()
authorHelge Deller <deller@gmx.de>
Sat, 12 Dec 2015 17:22:03 +0000 (18:22 +0100)
committerHelge Deller <deller@gmx.de>
Tue, 12 Jan 2016 21:03:36 +0000 (22:03 +0100)
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/include/asm/processor.h
arch/parisc/kernel/processor.c

index 7e759ecb1343692a11a16526aaff04c5eb607cec..2e674e13e005420b15beb9b945e2d88c850937f0 100644 (file)
@@ -311,18 +311,17 @@ extern unsigned long get_wchan(struct task_struct *p);
 #define cpu_relax()    barrier()
 #define cpu_relax_lowlatency() cpu_relax()
 
-/* Used as a macro to identify the combined VIPT/PIPT cached
- * CPUs which require a guarantee of coherency (no inequivalent
- * aliases with different data, whether clean or not) to operate */
-static inline int parisc_requires_coherency(void)
-{
+/*
+ * parisc_requires_coherency() is used to identify the combined VIPT/PIPT
+ * cached CPUs which require a guarantee of coherency (no inequivalent aliases
+ * with different data, whether clean or not) to operate
+ */
 #ifdef CONFIG_PA8X00
-       return (boot_cpu_data.cpu_type == mako) ||
-               (boot_cpu_data.cpu_type == mako2);
+extern int _parisc_requires_coherency;
+#define parisc_requires_coherency()    _parisc_requires_coherency
 #else
-       return 0;
+#define parisc_requires_coherency()    (0)
 #endif
-}
 
 #endif /* __ASSEMBLY__ */
 
index b68d977ce30fbf80e90497da5363bac01a7115a9..e81ccf1716e913e21af99a6c7ff24f8a7148b38b 100644 (file)
 
 struct system_cpuinfo_parisc boot_cpu_data __read_mostly;
 EXPORT_SYMBOL(boot_cpu_data);
+#ifdef CONFIG_PA8X00
+int _parisc_requires_coherency __read_mostly;
+EXPORT_SYMBOL(_parisc_requires_coherency);
+#endif
 
 DEFINE_PER_CPU(struct cpuinfo_parisc, cpu_data);
 
@@ -277,8 +281,12 @@ void __init collect_boot_cpu_data(void)
        boot_cpu_data.cpu_type = parisc_get_cpu_type(boot_cpu_data.hversion);
        boot_cpu_data.cpu_name = cpu_name_version[boot_cpu_data.cpu_type][0];
        boot_cpu_data.family_name = cpu_name_version[boot_cpu_data.cpu_type][1];
-}
 
+#ifdef CONFIG_PA8X00
+       _parisc_requires_coherency = (boot_cpu_data.cpu_type == mako) ||
+                               (boot_cpu_data.cpu_type == mako2);
+#endif
+}
 
 
 /**