#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 | ivan kokshaysky | 43 | 91.49% | 1 | 33.33% |
andrew morton | andrew morton | 4 | 8.51% | 2 | 66.67% |
Total | 47 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
rusty russell | rusty russell | 56 | 84.85% | 1 | 50.00% |
anton blanchard | anton blanchard | 10 | 15.15% | 1 | 50.00% |
Total | 66 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
rusty russell | rusty russell | 70 | 45.45% | 1 | 12.50% |
ivan kokshaysky | ivan kokshaysky | 55 | 35.71% | 1 | 12.50% |
andrew morton | andrew morton | 16 | 10.39% | 4 | 50.00% |
anton blanchard | anton blanchard | 10 | 6.49% | 1 | 12.50% |
mike travis | mike travis | 3 | 1.95% | 1 | 12.50% |
Total | 154 | 100.00% | 8 | 100.00% |