diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-08-16 11:09:37 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-08-16 11:09:37 -0700 |
| commit | 7820dd4a127ae83b530e177faa8e213c2d5717e1 (patch) | |
| tree | e799beeb2700da6fe49cd0bedb119c6cdcb4e6f8 /include/linux | |
| parent | d6e7d57ed967def9c964a58328ffba409f7efb64 (diff) | |
| parent | ada54c2ba652348c590d1ace6a2f4ff77cbbf809 (diff) | |
Merge tag 'core_urgent_for_v7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull rseq fix from Borislav Petkov:
- Prevent a lockup when rseq grants a timeslice extension
* tag 'core_urgent_for_v7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
rseq: Prevent hard lockup on granted time slice extension
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/rseq_entry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/rseq_entry.h b/include/linux/rseq_entry.h index ed9da6e41a2a..31ce349ed42c 100644 --- a/include/linux/rseq_entry.h +++ b/include/linux/rseq_entry.h @@ -233,6 +233,7 @@ efault: static __always_inline bool rseq_grant_slice_extension(unsigned long ti_work, unsigned long mask) { if (unlikely(__rseq_grant_slice_extension(ti_work & mask))) { + guard(irq)(); hrtimer_rearm_deferred_tif(ti_work); return true; } |
