Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116421
b: refs/heads/master
c: 46b8214
h: refs/heads/master
i:
  116419: 870775f
v: v3
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Oct 16, 2008
1 parent 9c61026 commit 2c58e78
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 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: c7fb03a475bd80c642c1345d85c7c550f63514b8
refs/heads/master: 46b8214d12c274bd4265aae482ab7ffe69d94818
24 changes: 12 additions & 12 deletions trunk/arch/x86/kernel/io_apic_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ static void __init init_work(void *data)
cfg[i-1].next = &cfg[i];
}

#define for_each_irq_cfg(cfg) \
for (cfg = irq_cfgx; cfg && cfg->irq != -1U; cfg = cfg->next)

static struct irq_cfg *irq_cfgx;
DEFINE_DYN_ARRAY(irq_cfgx, sizeof(struct irq_cfg), nr_irq_cfg, PAGE_SIZE, init_work);

Expand Down Expand Up @@ -1097,20 +1100,18 @@ void __setup_vector_irq(int cpu)
/* Initialize vector_irq on a new cpu */
/* This function must be called with vector_lock held */
int irq, vector;
struct irq_cfg *cfg;

/* Mark the inuse vectors */
for (irq = 0; irq < nr_irqs; ++irq) {
struct irq_cfg *cfg = irq_cfg(irq);

for_each_irq_cfg(cfg) {
if (!cpu_isset(cpu, cfg->domain))
continue;
vector = cfg->vector;
irq = cfg->irq;
per_cpu(vector_irq, cpu)[vector] = irq;
}
/* Mark the free vectors */
for (vector = 0; vector < NR_VECTORS; ++vector) {
struct irq_cfg *cfg;

irq = per_cpu(vector_irq, cpu)[vector];
if (irq < 0)
continue;
Expand Down Expand Up @@ -1340,6 +1341,7 @@ __apicdebuginit(void) print_IO_APIC(void)
union IO_APIC_reg_01 reg_01;
union IO_APIC_reg_02 reg_02;
unsigned long flags;
struct irq_cfg *cfg;

if (apic_verbosity == APIC_QUIET)
return;
Expand Down Expand Up @@ -1408,12 +1410,11 @@ __apicdebuginit(void) print_IO_APIC(void)
}
}
printk(KERN_DEBUG "IRQ to pin mappings:\n");
for (i = 0; i < nr_irqs; i++) {
struct irq_cfg *cfg = irq_cfg(i);
for_each_irq_cfg(cfg) {
struct irq_pin_list *entry = cfg->irq_2_pin;
if (!entry)
continue;
printk(KERN_DEBUG "IRQ%d ", i);
printk(KERN_DEBUG "IRQ%d ", cfg->irq);
for (;;) {
printk("-> %d:%d", entry->apic, entry->pin);
if (!entry->next)
Expand Down Expand Up @@ -2070,6 +2071,7 @@ static inline void init_IO_APIC_traps(void)
{
int irq;
struct irq_desc *desc;
struct irq_cfg *cfg;

/*
* NOTE! The local APIC isn't very good at handling
Expand All @@ -2082,10 +2084,8 @@ static inline void init_IO_APIC_traps(void)
* Also, we've got to be careful not to trash gate
* 0x80, because int 0x80 is hm, kind of importantish. ;)
*/
for (irq = 0; irq < nr_irqs ; irq++) {
struct irq_cfg *cfg;

cfg = irq_cfg(irq);
for_each_irq_cfg(cfg) {
irq = cfg->irq;
if (IO_APIC_IRQ(irq) && !cfg->vector) {
/*
* Hmm.. We don't have an entry for this,
Expand Down

0 comments on commit 2c58e78

Please sign in to comment.