diff options
| author | Joerg Roedel <jroedel@suse.de> | 2023-10-26 18:05:58 +0300 | 
|---|---|---|
| committer | Joerg Roedel <jroedel@suse.de> | 2023-10-26 18:05:58 +0300 | 
| commit | 3613047280ec42a4e1350fdc1a6dd161ff4008cc (patch) | |
| tree | 6cf2f03f518537f3229e6066a8b2638755f0bb48 /include/linux/interrupt.h | |
| parent | bbc70e0aec287e164344b1a071bd46466a4f29b3 (diff) | |
| parent | 05d3ef8bba77c1b5f98d941d8b2d4aeab8118ef1 (diff) | |
| download | linux-3613047280ec42a4e1350fdc1a6dd161ff4008cc.tar.xz | |
Merge tag 'v6.6-rc7' into core
Linux 6.6-rc7
Diffstat (limited to 'include/linux/interrupt.h')
| -rw-r--r-- | include/linux/interrupt.h | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index a92bce40b04b..4a1dc88ddbff 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -569,8 +569,12 @@ enum   * 	2) rcu_report_dead() reports the final quiescent states.   *   * _ IRQ_POLL: irq_poll_cpu_dead() migrates the queue + * + * _ (HR)TIMER_SOFTIRQ: (hr)timers_dead_cpu() migrates the queue   */ -#define SOFTIRQ_HOTPLUG_SAFE_MASK (BIT(RCU_SOFTIRQ) | BIT(IRQ_POLL_SOFTIRQ)) +#define SOFTIRQ_HOTPLUG_SAFE_MASK (BIT(TIMER_SOFTIRQ) | BIT(IRQ_POLL_SOFTIRQ) |\ +				   BIT(HRTIMER_SOFTIRQ) | BIT(RCU_SOFTIRQ)) +  /* map softirq index to softirq name. update 'softirq_to_name' in   * kernel/softirq.c when adding a new softirq.  | 
