scx/rust/scx_utils
Jose Fernandez a63bf77d68
scx_utils: Display the tag value for nested counters in log_recorder
The log_recorder was incorrectly displaying the tag name instead of the
value for nested counters.

Signed-off-by: Jose Fernandez <josef@netflix.com>
2024-07-15 15:20:44 -06:00
..
src scx_utils: Display the tag value for nested counters in log_recorder 2024-07-15 15:20:44 -06:00
.gitignore scx_utils: Add log_recorder module for metrics-rs 2024-06-24 18:45:02 -06:00
bindings.h rust/scx_utils: Add user_exit_info support 2024-01-31 10:54:15 -10:00
bpf_h scx_utils: Add mod bpf_h 2023-11-28 15:20:01 -10:00
build.rs utils: Export build ID values from rust scx_utils 2024-06-25 11:44:19 -05:00
Cargo.toml Bump most versions to 1.0.0 2024-07-12 11:34:14 -10:00
LICENSE rust: clarify license and include text 2023-12-12 13:02:13 -08:00
meson.build Fetch and build bpftool by default 2024-03-11 10:00:01 -07:00
README.md scx_utils: Fix typos 2024-06-18 00:35:43 +08:00

Utility collection for sched_ext schedulers

sched_ext is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them.

This crate is a collection of utilities for sched_ext scheduler implementations which use Rust for userspace component. This enables implementing hot paths in BPF while offloading colder and more complex operations to userspace Rust code which can be significantly more convenient and powerful.

Please see documentation for more details.