Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 212145
b: refs/heads/master
c: 0eda58b
h: refs/heads/master
i:
  212143: 569a1ea
v: v3
  • Loading branch information
Thomas Gleixner committed Oct 4, 2010
1 parent cb4e180 commit 53cda96
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 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: e2c0f8ff0fc26959952fbfa89f732fef928df77f
refs/heads/master: 0eda58b7f3a30c9a13d83db1cfaab00e1c452055
20 changes: 14 additions & 6 deletions trunk/kernel/irq/chip.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ static void default_enable(unsigned int irq)
{
struct irq_desc *desc = irq_to_desc(irq);

desc->irq_data.chip->unmask(irq);
desc->irq_data.chip->irq_unmask(&desc->irq_data);
desc->status &= ~IRQ_MASKED;
}

Expand Down Expand Up @@ -330,6 +330,11 @@ static void compat_irq_mask(struct irq_data *data)
data->chip->mask(data->irq);
}

static void compat_irq_unmask(struct irq_data *data)
{
data->chip->unmask(data->irq);
}

static void compat_bus_lock(struct irq_data *data)
{
data->chip->bus_lock(data->irq);
Expand Down Expand Up @@ -370,6 +375,9 @@ void irq_chip_set_defaults(struct irq_chip *chip)

if (chip->mask)
chip->irq_mask = compat_irq_mask;

if (chip->unmask)
chip->irq_unmask = compat_irq_unmask;
}

static inline void mask_ack_irq(struct irq_desc *desc, int irq)
Expand All @@ -392,10 +400,10 @@ static inline void mask_irq(struct irq_desc *desc)
}
}

static inline void unmask_irq(struct irq_desc *desc, int irq)
static inline void unmask_irq(struct irq_desc *desc)
{
if (desc->irq_data.chip->unmask) {
desc->irq_data.chip->unmask(irq);
if (desc->irq_data.chip->irq_unmask) {
desc->irq_data.chip->irq_unmask(&desc->irq_data);
desc->status &= ~IRQ_MASKED;
}
}
Expand Down Expand Up @@ -524,7 +532,7 @@ handle_level_irq(unsigned int irq, struct irq_desc *desc)
desc->status &= ~IRQ_INPROGRESS;

if (!(desc->status & (IRQ_DISABLED | IRQ_ONESHOT)))
unmask_irq(desc, irq);
unmask_irq(desc);
out_unlock:
raw_spin_unlock(&desc->lock);
}
Expand Down Expand Up @@ -641,7 +649,7 @@ handle_edge_irq(unsigned int irq, struct irq_desc *desc)
if (unlikely((desc->status &
(IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
(IRQ_PENDING | IRQ_MASKED))) {
unmask_irq(desc, irq);
unmask_irq(desc);
}

desc->status &= ~IRQ_PENDING;
Expand Down
1 change: 0 additions & 1 deletion trunk/kernel/irq/handle.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ struct irq_chip dummy_irq_chip = {
.enable = compat_noop,
.disable = compat_noop,
.ack = compat_noop,
.unmask = compat_noop,
.end = compat_noop,
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/irq/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ static void irq_finalize_oneshot(unsigned int irq, struct irq_desc *desc)

if (!(desc->status & IRQ_DISABLED) && (desc->status & IRQ_MASKED)) {
desc->status &= ~IRQ_MASKED;
desc->irq_data.chip->unmask(irq);
desc->irq_data.chip->irq_unmask(&desc->irq_data);
}
raw_spin_unlock_irq(&desc->lock);
chip_bus_sync_unlock(desc);
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/irq/migration.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ void move_native_irq(int irq)

desc->irq_data.chip->irq_mask(&desc->irq_data);
move_masked_irq(irq);
desc->irq_data.chip->unmask(irq);
desc->irq_data.chip->irq_unmask(&desc->irq_data);
}

0 comments on commit 53cda96

Please sign in to comment.