| .. | .. |
|---|
| 119 | 119 | |
|---|
| 120 | 120 | #define task_is_stopped_or_traced(task) ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0) |
|---|
| 121 | 121 | |
|---|
| 122 | +#ifdef CONFIG_DOVETAIL |
|---|
| 123 | +#define task_is_off_stage(task) test_ti_local_flags(task_thread_info(task), _TLF_OFFSTAGE) |
|---|
| 124 | +#else |
|---|
| 125 | +#define task_is_off_stage(task) 0 |
|---|
| 126 | +#endif |
|---|
| 127 | + |
|---|
| 122 | 128 | #ifdef CONFIG_DEBUG_ATOMIC_SLEEP |
|---|
| 123 | 129 | |
|---|
| 124 | 130 | /* |
|---|
| .. | .. |
|---|
| 1052 | 1058 | int irq_config; |
|---|
| 1053 | 1059 | #endif |
|---|
| 1054 | 1060 | |
|---|
| 1061 | +#ifdef CONFIG_IRQ_PIPELINE |
|---|
| 1062 | + unsigned long stall_bits; |
|---|
| 1063 | +#endif |
|---|
| 1064 | + |
|---|
| 1055 | 1065 | #ifdef CONFIG_LOCKDEP |
|---|
| 1056 | 1066 | # define MAX_LOCK_DEPTH 48UL |
|---|
| 1057 | 1067 | u64 curr_chain_key; |
|---|