Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116455
b: refs/heads/master
c: ffd5aae
h: refs/heads/master
i:
  116453: eefa787
  116451: efa6698
  116447: 6fb2ca3
v: v3
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Oct 16, 2008
1 parent a091c71 commit d28a934
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: 29ccbbf232c035b8c7ff0c5060fbe30a66ed9b99
refs/heads/master: ffd5aae7817fba22c5c3e304a31c44fa0a4e9a97
7 changes: 6 additions & 1 deletion trunk/arch/x86/kernel/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,12 @@ __apicdebuginit(void) print_local_APIC(void *dummy)

__apicdebuginit(void) print_all_local_APICs(void)
{
on_each_cpu(print_local_APIC, NULL, 1);
int cpu;

preempt_disable();
for_each_online_cpu(cpu)
smp_call_function_single(cpu, print_local_APIC, NULL, 1);
preempt_enable();
}

__apicdebuginit(void) print_PIC(void)
Expand Down

0 comments on commit d28a934

Please sign in to comment.