Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234723
b: refs/heads/master
c: dbec07b
h: refs/heads/master
i:
  234721: a2781f6
  234719: a051864
v: v3
  • Loading branch information
Thomas Gleixner committed Feb 19, 2011
1 parent efd8621 commit 32ac201
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 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: 35e857cbeb24e75c6f9a9312ac30454eee8c5950
refs/heads/master: dbec07bac614a61e3392c1e7c08cc6a49ad43f7a
3 changes: 2 additions & 1 deletion trunk/include/linux/irqdesc.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ struct timer_rand_state;
* @handle_irq: highlevel irq-events handler [if NULL, __do_IRQ()]
* @action: the irq action chain
* @status: status information
* @core_internal_state__do_not_mess_with_it: core internal status information
* @depth: disable-depth, for nested irq_disable() calls
* @wake_depth: enable depth, for multiple set_irq_wake() callers
* @irq_count: stats field to detect stalled irqs
Expand Down Expand Up @@ -63,7 +64,7 @@ struct irq_desc {
irq_flow_handler_t handle_irq;
struct irqaction *action; /* IRQ action list */
unsigned int status; /* IRQ status */

unsigned int core_internal_state__do_not_mess_with_it;
unsigned int depth; /* nested irq disables */
unsigned int wake_depth; /* nested wake enables */
unsigned int irq_count; /* For detecting broken IRQs */
Expand Down
6 changes: 6 additions & 0 deletions trunk/kernel/irq/internals.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
/*
* IRQ subsystem internal functions and variables:
*
* Do not ever include this file from anything else than
* kernel/irq/. Do not even think about using any information outside
* of this file for your non core code.
*/
#include <linux/irqdesc.h>

Expand All @@ -9,6 +13,8 @@
# define IRQ_BITMAP_BITS NR_IRQS
#endif

#define istate core_internal_state__do_not_mess_with_it

extern int noirqdebug;

/*
Expand Down

0 comments on commit 32ac201

Please sign in to comment.