Skip to content

Commit

Permalink
x86, apbt: Setup affinity for apb timers acting as per-cpu timer
Browse files Browse the repository at this point in the history
Commit a5ef2e7 "x86: Sanitize apb timer interrupt handling" forgot
the affinity setup when cleaning up the code, this patch just
adds the forgotten part

Signed-off-by: Feng Tang <feng.tang@intel.com>
Cc: Jacob Pan <jacob.jun.pan@intel.com>
Cc: Alan Cox <alan@linux.intel.com>
LKML-Reference: <1291348298-21263-2-git-send-email-feng.tang@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Feng Tang authored and Thomas Gleixner committed Dec 6, 2010
1 parent 5ec6960 commit e4d2ebc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arch/x86/kernel/apb_timer.c
Original file line number Diff line number Diff line change
@@ -315,6 +315,7 @@ static void apbt_setup_irq(struct apbt_dev *adev)

if (system_state == SYSTEM_BOOTING) {
irq_modify_status(adev->irq, 0, IRQ_MOVE_PCNTXT);
irq_set_affinity(adev->irq, cpumask_of(adev->cpu));
/* APB timer irqs are set up as mp_irqs, timer is edge type */
__set_irq_handler(adev->irq, handle_edge_irq, 0, "edge");
if (request_irq(adev->irq, apbt_interrupt_handler,

0 comments on commit e4d2ebc

Please sign in to comment.