#ifndef _ASM_ALPHA_TOPOLOGY_H #define _ASM_ALPHA_TOPOLOGY_H #include <linux/smp.h> #include <linux/threads.h> #include <asm/machvec.h> #ifdef CONFIG_NUMA
static inline int cpu_to_node(int cpu) { int node; if (!alpha_mv.cpuid_to_nid) return 0; node = alpha_mv.cpuid_to_nid(cpu); #ifdef DEBUG_NUMA BUG_ON(node < 0); #endif return node; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ivan Kokshaysky | 43 | 91.49% | 1 | 33.33% |
Andrew Morton | 4 | 8.51% | 2 | 66.67% |
Total | 47 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 56 | 84.85% | 1 | 50.00% |
Anton Blanchard | 10 | 15.15% | 1 | 50.00% |
Total | 66 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rusty Russell | 70 | 45.45% | 1 | 12.50% |
Ivan Kokshaysky | 55 | 35.71% | 1 | 12.50% |
Andrew Morton | 16 | 10.39% | 4 | 50.00% |
Anton Blanchard | 10 | 6.49% | 1 | 12.50% |
Mike Travis | 3 | 1.95% | 1 | 12.50% |
Total | 154 | 100.00% | 8 | 100.00% |