diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-24 11:33:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-24 11:33:50 -0700 |
commit | 6fa6588e5964473356f0e2a02093ea42a5b3fd56 (patch) | |
tree | 01c8bbbcb4c5b074ab464f64da12f82b06c4fe9a /tools | |
parent | 3147a0689dd9793990ff954369ffcdf2de984b46 (diff) | |
parent | 431844b65f4c1b988ccd886f2ed29c138f7bb262 (diff) | |
download | lwn-6fa6588e5964473356f0e2a02093ea42a5b3fd56.tar.gz lwn-6fa6588e5964473356f0e2a02093ea42a5b3fd56.zip |
Merge tag 'sched_ext-for-6.12-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext
Pull sched_ext fixes from Tejun Heo:
- Three build fixes
- The fix for a stall bug introduced by a recent optimization in sched
core (SM_IDLE)
- Addition of /sys/kernel/sched_ext/enable_seq. While not a fix, it is
a simple addition that distro people want to be able to tell whether
an SCX scheduler has ever been loaded on the system
* tag 'sched_ext-for-6.12-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext:
sched_ext: Provide a sysfs enable_seq counter
sched_ext: Fix build when !CONFIG_STACKTRACE
sched, sched_ext: Disable SM_IDLE/rq empty path when scx_enabled()
sched: Put task_group::idle under CONFIG_GROUP_SCHED_WEIGHT
sched: Add dummy version of sched_group_set_idle()
Diffstat (limited to 'tools')
-rw-r--r-- | tools/sched_ext/scx_show_state.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/sched_ext/scx_show_state.py b/tools/sched_ext/scx_show_state.py index d457d2a74e1e..8bc626ede1c4 100644 --- a/tools/sched_ext/scx_show_state.py +++ b/tools/sched_ext/scx_show_state.py @@ -37,3 +37,4 @@ print(f'switched_all : {read_static_key("__scx_switched_all")}') print(f'enable_state : {ops_state_str(enable_state)} ({enable_state})') print(f'bypass_depth : {read_atomic("scx_ops_bypass_depth")}') print(f'nr_rejected : {read_atomic("scx_nr_rejected")}') +print(f'enable_seq : {read_atomic("scx_enable_seq")}') |