/* * ARM specific SMP header, this contains our implementation * details. */ #ifndef __ASMARM_SMP_PLAT_H #define __ASMARM_SMP_PLAT_H #include <linux/cpumask.h> #include <linux/err.h> #include <asm/cpu.h> #include <asm/cputype.h> /* * Return true if we are running on a SMP platform */
static inline bool is_smp(void) { #ifndef CONFIG_SMP return false; #elif defined(CONFIG_SMP_ON_UP) extern unsigned int smp_on_up; return !!smp_on_up; #else return true; #endif }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tony Lindgren | 38 | 100.00% | 1 | 100.00% |
Total | 38 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Juri Lelli | 37 | 100.00% | 1 | 100.00% |
Total | 37 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 25 | 73.53% | 1 | 50.00% |
Tony Lindgren | 9 | 26.47% | 1 | 50.00% |
Total | 34 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 25 | 73.53% | 1 | 50.00% |
Tony Lindgren | 9 | 26.47% | 1 | 50.00% |
Total | 34 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 42 | 100.00% | 1 | 100.00% |
Total | 42 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Stephen Boyd | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 91 | 26.76% | 4 | 28.57% |
Russell King | 63 | 18.53% | 2 | 14.29% |
Tony Lindgren | 57 | 16.76% | 1 | 7.14% |
Juri Lelli | 41 | 12.06% | 1 | 7.14% |
Stephen Boyd | 30 | 8.82% | 1 | 7.14% |
Will Deacon | 24 | 7.06% | 2 | 14.29% |
Catalin Marinas | 20 | 5.88% | 1 | 7.14% |
Stephen Warren | 7 | 2.06% | 1 | 7.14% |
Geert Uytterhoeven | 7 | 2.06% | 1 | 7.14% |
Total | 340 | 100.00% | 14 | 100.00% |