/* * SMP Support * * Copyright (C) 1999 VA Linux Systems * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> * (c) Copyright 2001-2003, 2005 Hewlett-Packard Development Company, L.P. * David Mosberger-Tang <davidm@hpl.hp.com> * Bjorn Helgaas <bjorn.helgaas@hp.com> */ #ifndef _ASM_IA64_SMP_H #define _ASM_IA64_SMP_H #include <linux/init.h> #include <linux/threads.h> #include <linux/kernel.h> #include <linux/cpumask.h> #include <linux/bitops.h> #include <linux/irqreturn.h> #include <asm/io.h> #include <asm/param.h> #include <asm/processor.h> #include <asm/ptrace.h>
static inline unsigned int ia64_get_lid (void) { union { struct { unsigned long reserved : 16; unsigned long eid : 8; unsigned long id : 8; unsigned long ignored : 32; } f; unsigned long bits; } lid; lid.bits = ia64_getreg(_IA64_REG_CR_LID); return lid.f.id << 8 | lid.f.eid; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
bjorn helgaas | bjorn helgaas | 72 | 100.00% | 1 | 100.00% |
Total | 72 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pre-git | pre-git | 37 | 94.87% | 1 | 33.33% |
rusty russell | rusty russell | 1 | 2.56% | 1 | 33.33% |
linus torvalds | linus torvalds | 1 | 2.56% | 1 | 33.33% |
Total | 39 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pre-git | pre-git | 24 | 96.00% | 3 | 75.00% |
david mosberger | david mosberger | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pre-git | pre-git | 24 | 96.00% | 3 | 75.00% |
david mosberger | david mosberger | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pre-git | pre-git | 24 | 96.00% | 3 | 75.00% |
david mosberger | david mosberger | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pre-git | pre-git | 199 | 44.22% | 5 | 17.24% |
bjorn helgaas | bjorn helgaas | 92 | 20.44% | 2 | 6.90% |
rusty russell | rusty russell | 29 | 6.44% | 2 | 6.90% |
andrew morton | andrew morton | 25 | 5.56% | 3 | 10.34% |
linus torvalds | linus torvalds | 20 | 4.44% | 3 | 10.34% |
suresh siddha | suresh siddha | 17 | 3.78% | 1 | 3.45% |
david mosberger | david mosberger | 17 | 3.78% | 3 | 10.34% |
isaku yamahata | isaku yamahata | 15 | 3.33% | 1 | 3.45% |
jens axboe | jens axboe | 11 | 2.44% | 1 | 3.45% |
kimio suganuma | kimio suganuma | 8 | 1.78% | 1 | 3.45% |
fernando luis vazquez cao | fernando luis vazquez cao | 6 | 1.33% | 2 | 6.90% |
stephane eranian | stephane eranian | 4 | 0.89% | 1 | 3.45% |
mike travis | mike travis | 4 | 0.89% | 1 | 3.45% |
jiri slaby | jiri slaby | 1 | 0.22% | 1 | 3.45% |
ingo molnar | ingo molnar | 1 | 0.22% | 1 | 3.45% |
david howells | david howells | 1 | 0.22% | 1 | 3.45% |
Total | 450 | 100.00% | 29 | 100.00% |