GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / x86 / vdso / vgetcpu.c
blob9fbc6b20026b5ac4f23f9704e2cac9b1daaaf3a6
1 /*
2 * Copyright 2006 Andi Kleen, SUSE Labs.
3 * Subject to the GNU Public License, v.2
5 * Fast user context implementation of getcpu()
6 */
8 #include <linux/kernel.h>
9 #include <linux/getcpu.h>
10 #include <linux/jiffies.h>
11 #include <linux/time.h>
12 #include <asm/vsyscall.h>
13 #include <asm/vgtod.h>
14 #include "vextern.h"
16 notrace long
17 __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused)
19 unsigned int p;
21 if (*vdso_vgetcpu_mode == VGETCPU_RDTSCP) {
22 /* Load per CPU data from RDTSCP */
23 native_read_tscp(&p);
24 } else {
25 /* Load per CPU data from GDT */
26 asm("lsl %1,%0" : "=r" (p) : "r" (__PER_CPU_SEG));
28 if (cpu)
29 *cpu = p & 0xfff;
30 if (node)
31 *node = p >> 12;
32 return 0;
35 long getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache)
36 __attribute__((weak, alias("__vdso_getcpu")));