/* SPDX-License-Identifier: GPL-2.0 */ /* * 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 |
Björn Helgaas | 72 | 100.00% | 1 | 100.00% |
Total | 72 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 37 | 94.87% | 1 | 33.33% |
Linus Torvalds | 1 | 2.56% | 1 | 33.33% |
Rusty Russell | 1 | 2.56% | 1 | 33.33% |
Total | 39 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 24 | 96.00% | 3 | 75.00% |
David Mosberger-Tang | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 24 | 96.00% | 3 | 75.00% |
David Mosberger-Tang | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 24 | 96.00% | 3 | 75.00% |
David Mosberger-Tang | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 199 | 44.12% | 5 | 16.67% |
Björn Helgaas | 92 | 20.40% | 2 | 6.67% |
Rusty Russell | 29 | 6.43% | 2 | 6.67% |
Andrew Morton | 25 | 5.54% | 3 | 10.00% |
Linus Torvalds | 20 | 4.43% | 3 | 10.00% |
Suresh B. Siddha | 17 | 3.77% | 1 | 3.33% |
David Mosberger-Tang | 17 | 3.77% | 3 | 10.00% |
Isaku Yamahata | 15 | 3.33% | 1 | 3.33% |
Jens Axboe | 11 | 2.44% | 1 | 3.33% |
Kimio Suganuma | 8 | 1.77% | 1 | 3.33% |
Fernando Luis Vázquez Cao | 6 | 1.33% | 2 | 6.67% |
Mike Travis | 4 | 0.89% | 1 | 3.33% |
Stéphane Eranian | 4 | 0.89% | 1 | 3.33% |
Greg Kroah-Hartman | 1 | 0.22% | 1 | 3.33% |
David Howells | 1 | 0.22% | 1 | 3.33% |
Jiri Slaby | 1 | 0.22% | 1 | 3.33% |
Ingo Molnar | 1 | 0.22% | 1 | 3.33% |
Total | 451 | 100.00% | 30 | 100.00% |