Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8621
b: refs/heads/master
c: 5bf97e0
h: refs/heads/master
i:
  8619: 9e70fe9
v: v3
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Sep 12, 2005
1 parent 9d7faf0 commit 7b5aa8c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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: 27183ebd330a676fe29f7eb9b7ff582492246ec8
refs/heads/master: 5bf97e01192f0fcdff2f0e9eae063e7785f6f915
9 changes: 7 additions & 2 deletions trunk/arch/x86_64/kernel/genapic.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,14 @@ void __init clustered_apic_check(void)
* (We don't use lowest priority delivery + HW APIC IRQ steering, so
* can ignore the clustered logical case and go straight to physical.)
*/
if (clusters <= 1 && max_cluster <= 8 && cluster_cnt[0] == max_cluster)
if (clusters <= 1 && max_cluster <= 8 && cluster_cnt[0] == max_cluster) {
#ifdef CONFIG_HOTPLUG_CPU
/* Don't use APIC shortcuts in CPU hotplug to avoid races */
genapic = &apic_physflat;
#else
genapic = &apic_flat;
else
#endif
} else
genapic = &apic_cluster;

print:
Expand Down

0 comments on commit 7b5aa8c

Please sign in to comment.