Commit 8369b2e97d80 for kernel

commit 8369b2e97d806537dcdba1d6b3bb46fb1407dab0
Merge: 8040dc41d272 2fcfe5951eb2
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Fri Mar 13 14:54:56 2026 -0700

    Merge tag 'sched_ext-for-7.0-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext

    Pull sched_ext fixes from Tejun Heo:

     - Fix data races flagged by KCSAN: add missing READ_ONCE()/WRITE_ONCE()
       annotations for lock-free accesses to module parameters and dsq->seq

     - Fix silent truncation of upper 32 enqueue flags (SCX_ENQ_PREEMPT and
       above) when passed through the int sched_class interface

     - Documentation updates: scheduling class precedence, task ownership
       state machine, example scheduler descriptions, config list cleanup

     - Selftest fix for format specifier and buffer length in
       file_write_long()

    * tag 'sched_ext-for-7.0-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext:
      sched_ext: Use WRITE_ONCE() for the write side of scx_enable helper pointer
      sched_ext: Fix enqueue_task_scx() truncation of upper enqueue flags
      sched_ext: Documentation: Update sched-ext.rst
      sched_ext: Use READ_ONCE() for scx_slice_bypass_us in scx_bypass()
      sched_ext: Documentation: Mention scheduling class precedence
      sched_ext: Document task ownership state machine
      sched_ext: Use READ_ONCE() for lock-free reads of module param variables
      sched_ext/selftests: Fix format specifier and buffer length in file_write_long()
      sched_ext: Use WRITE_ONCE() for the write side of dsq->seq update