diff options
Diffstat (limited to 'include/linux/sched.h')
| -rw-r--r-- | include/linux/sched.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 7d379a6bfd8..07f537a371c 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1319,6 +1319,11 @@ struct task_struct {  	unsigned sched_reset_on_fork:1;  	unsigned sched_contributes_to_load:1; +#ifdef CONFIG_GENERIC_HARDIRQS +	/* IRQ handler threads */ +	unsigned irq_thread:1; +#endif +  	pid_t pid;  	pid_t tgid; @@ -1427,11 +1432,6 @@ struct task_struct {   * mempolicy */  	spinlock_t alloc_lock; -#ifdef CONFIG_GENERIC_HARDIRQS -	/* IRQ handler threads */ -	struct irqaction *irqaction; -#endif -  	/* Protection of the PI data structures: */  	raw_spinlock_t pi_lock;  |