Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53734
b: refs/heads/master
c: f76c392
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Fitzhardinge authored and Andi Kleen committed May 2, 2007
1 parent a55aafb commit d43f157
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9964cf7d776600724ef5f1b33303ceadc588b8ba
refs/heads/master: f76c392380a40008ee6ecaea4e5a51a3a10282c4
2 changes: 0 additions & 2 deletions trunk/arch/i386/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ obj-$(CONFIG_VMI) += vmi.o vmitime.o
obj-$(CONFIG_PARAVIRT) += paravirt.o
obj-y += pcspeaker.o

EXTRA_AFLAGS := -traditional

obj-$(CONFIG_SCx200) += scx200.o

# vsyscall.o contains the vsyscall DSO images as __initdata.
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/i386/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ ENTRY(name) \
SAVE_ALL; \
TRACE_IRQS_OFF \
movl %esp,%eax; \
call smp_/**/name; \
call smp_##name; \
jmp ret_from_intr; \
CFI_ENDPROC; \
ENDPROC(name)
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-i386/percpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#ifdef CONFIG_SMP
#define PER_CPU(var, cpu) \
movl __per_cpu_offset(,cpu,4), cpu; \
addl $per_cpu__/**/var, cpu;
addl $per_cpu__##var, cpu;
#else /* ! SMP */
#define PER_CPU(var, cpu) \
movl $per_cpu__/**/var, cpu;
movl $per_cpu__##var, cpu;
#endif /* SMP */

#endif /* !__ASSEMBLY__ */
Expand Down

0 comments on commit d43f157

Please sign in to comment.