Skip to content

Commit

Permalink
[PATCH] genirq: cleanup: reduce irq_desc_t use, mark it obsolete
Browse files Browse the repository at this point in the history
Cleanup: remove irq_desc_t use from the generic IRQ code, and mark it
obsolete.

Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Jun 29, 2006
1 parent 06fcb0c commit 34ffdb7
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 19 deletions.
18 changes: 13 additions & 5 deletions include/linux/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ typedef struct hw_interrupt_type hw_irq_controller;
*
* Pad this out to 32 bytes for cache and indexing reasons.
*/
typedef struct irq_desc {
struct irq_desc {
hw_irq_controller *chip;
void *chip_data;
struct irqaction *action; /* IRQ action list */
Expand All @@ -83,11 +83,19 @@ typedef struct irq_desc {
#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
unsigned int move_irq; /* Flag need to re-target intr dest*/
#endif
} ____cacheline_aligned irq_desc_t;
} ____cacheline_aligned;

extern irq_desc_t irq_desc [NR_IRQS];
extern struct irq_desc irq_desc[NR_IRQS];

#include <asm/hw_irq.h> /* the arch dependent stuff */
/*
* Migration helpers for obsolete names, they will go away:
*/
typedef struct irq_desc irq_desc_t;

/*
* Pick up the arch-dependent methods:
*/
#include <asm/hw_irq.h>

extern int setup_irq(unsigned int irq, struct irqaction *new);

Expand Down Expand Up @@ -188,7 +196,7 @@ extern irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
*/
extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);

extern void note_interrupt(unsigned int irq, irq_desc_t *desc,
extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
int action_ret, struct pt_regs *regs);
extern int can_request_irq(unsigned int irq, unsigned long irqflags);

Expand Down
6 changes: 3 additions & 3 deletions kernel/irq/autoprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ static DEFINE_MUTEX(probing_active);
*/
unsigned long probe_irq_on(void)
{
struct irq_desc *desc;
unsigned long mask;
irq_desc_t *desc;
unsigned int i;

mutex_lock(&probing_active);
Expand Down Expand Up @@ -116,7 +116,7 @@ unsigned int probe_irq_mask(unsigned long val)

mask = 0;
for (i = 0; i < NR_IRQS; i++) {
irq_desc_t *desc = irq_desc + i;
struct irq_desc *desc = irq_desc + i;
unsigned int status;

spin_lock_irq(&desc->lock);
Expand Down Expand Up @@ -159,7 +159,7 @@ int probe_irq_off(unsigned long val)
int i, irq_found = 0, nr_irqs = 0;

for (i = 0; i < NR_IRQS; i++) {
irq_desc_t *desc = irq_desc + i;
struct irq_desc *desc = irq_desc + i;
unsigned int status;

spin_lock_irq(&desc->lock);
Expand Down
4 changes: 2 additions & 2 deletions kernel/irq/handle.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* Controller mappings for all interrupt sources:
*/
irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = {
struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = {
[0 ... NR_IRQS-1] = {
.status = IRQ_DISABLED,
.chip = &no_irq_type,
Expand Down Expand Up @@ -110,7 +110,7 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
*/
fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;
struct irqaction *action;
unsigned int status;

Expand Down
6 changes: 3 additions & 3 deletions kernel/irq/manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ EXPORT_SYMBOL(synchronize_irq);
*/
void disable_irq_nosync(unsigned int irq)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;
unsigned long flags;

if (irq >= NR_IRQS)
Expand Down Expand Up @@ -86,7 +86,7 @@ EXPORT_SYMBOL(disable_irq_nosync);
*/
void disable_irq(unsigned int irq)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;

if (irq >= NR_IRQS)
return;
Expand All @@ -109,7 +109,7 @@ EXPORT_SYMBOL(disable_irq);
*/
void enable_irq(unsigned int irq)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;
unsigned long flags;

if (irq >= NR_IRQS)
Expand Down
4 changes: 2 additions & 2 deletions kernel/irq/migration.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

void set_pending_irq(unsigned int irq, cpumask_t mask)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;
unsigned long flags;

spin_lock_irqsave(&desc->lock, flags);
Expand All @@ -14,8 +14,8 @@ void set_pending_irq(unsigned int irq, cpumask_t mask)

void move_native_irq(int irq)
{
struct irq_desc *desc = irq_desc + irq;
cpumask_t tmp;
irq_desc_t *desc = irq_desc + irq;

if (likely(!desc->move_irq))
return;
Expand Down
9 changes: 5 additions & 4 deletions kernel/irq/spurious.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ static int misrouted_irq(int irq, struct pt_regs *regs)
*/

static void
__report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
__report_bad_irq(unsigned int irq, struct irq_desc *desc,
irqreturn_t action_ret)
{
struct irqaction *action;

Expand All @@ -124,7 +125,7 @@ __report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
}

static void
report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
report_bad_irq(unsigned int irq, struct irq_desc *desc, irqreturn_t action_ret)
{
static int count = 100;

Expand All @@ -134,8 +135,8 @@ report_bad_irq(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret)
}
}

void note_interrupt(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret,
struct pt_regs *regs)
void note_interrupt(unsigned int irq, struct irq_desc *desc,
irqreturn_t action_ret, struct pt_regs *regs)
{
if (unlikely(action_ret != IRQ_HANDLED)) {
desc->irqs_unhandled++;
Expand Down

0 comments on commit 34ffdb7

Please sign in to comment.