/* * 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 | tony lindgren | 38 | 100.00% | 1 | 100.00% |
Total | 38 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
juri lelli | juri lelli | 37 | 100.00% | 1 | 100.00% |
Total | 37 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
russell king | russell king | 25 | 73.53% | 1 | 50.00% |
tony lindgren | tony lindgren | 9 | 26.47% | 1 | 50.00% |
Total | 34 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
russell king | russell king | 25 | 73.53% | 1 | 50.00% |
tony lindgren | tony lindgren | 9 | 26.47% | 1 | 50.00% |
Total | 34 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
lorenzo pieralisi | lorenzo pieralisi | 42 | 100.00% | 1 | 100.00% |
Total | 42 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
lorenzo pieralisi | lorenzo pieralisi | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
stephen boyd | stephen boyd | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
lorenzo pieralisi | lorenzo pieralisi | 91 | 26.76% | 4 | 28.57% |
russell king | russell king | 63 | 18.53% | 2 | 14.29% |
tony lindgren | tony lindgren | 57 | 16.76% | 1 | 7.14% |
juri lelli | juri lelli | 41 | 12.06% | 1 | 7.14% |
stephen boyd | stephen boyd | 30 | 8.82% | 1 | 7.14% |
will deacon | will deacon | 24 | 7.06% | 2 | 14.29% |
catalin marinas | catalin marinas | 20 | 5.88% | 1 | 7.14% |
geert uytterhoeven | geert uytterhoeven | 7 | 2.06% | 1 | 7.14% |
stephen warren | stephen warren | 7 | 2.06% | 1 | 7.14% |
Total | 340 | 100.00% | 14 | 100.00% |