Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version: 1.0.8 #1110

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('sched_ext schedulers', 'c',
version: '1.0.7',
version: '1.0.8',
license: 'GPL-2.0',
meson_version : '>= 1.2.0',)

Expand Down
2 changes: 1 addition & 1 deletion rust/scx_loader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_loader"
version = "1.0.7"
version = "1.0.8"
authors = ["Vladislav Nepogodin <vnepogodin@cachyos.org>"]
edition = "2021"
description = "DBUS on-demand loader of sched-ext schedulers"
Expand Down
6 changes: 3 additions & 3 deletions rust/scx_rustland_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_rustland_core"
version = "2.2.4"
version = "2.2.5"
edition = "2021"
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
license = "GPL-2.0-only"
Expand All @@ -12,12 +12,12 @@ anyhow = "1.0.65"
plain = "0.2.3"
libbpf-rs = "=0.24.8"
libc = "0.2.137"
scx_utils = { path = "../scx_utils", version = "1.0.8" }
scx_utils = { path = "../scx_utils", version = "1.0.9" }

[build-dependencies]
tar = "0.4"
walkdir = "2.4"
scx_utils = { path = "../scx_utils", version = "1.0.8" }
scx_utils = { path = "../scx_utils", version = "1.0.9" }

[lib]
name = "scx_rustland_core"
Expand Down
2 changes: 1 addition & 1 deletion rust/scx_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_stats"
version = "1.0.7"
version = "1.0.8"
edition = "2021"
authors = ["Tejun Heo <tj@kernel.org>"]
license = "GPL-2.0-only"
Expand Down
4 changes: 2 additions & 2 deletions rust/scx_stats/scx_stats_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_stats_derive"
version = "1.0.7"
version = "1.0.8"
edition = "2021"
authors = ["Tejun Heo <tj@kernel.org>"]
license = "GPL-2.0-only"
Expand All @@ -13,6 +13,6 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
scx_stats = { path = "..", version = "1.0.7" }
scx_stats = { path = "..", version = "1.0.8" }
serde_json = "1.0"
syn = { version = "2.0", features = ["extra-traits", "full"] }
4 changes: 2 additions & 2 deletions rust/scx_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_utils"
version = "1.0.8"
version = "1.0.9"
edition = "2021"
authors = ["Tejun Heo <tj@kernel.org>"]
license = "GPL-2.0-only"
Expand All @@ -21,7 +21,7 @@ log = "0.4.17"
nvml-wrapper = { version = "0.10.0", optional = true }
paste = "1.0"
regex = "1.10"
scx_stats = { path = "../scx_stats", version = "1.0.7" }
scx_stats = { path = "../scx_stats", version = "1.0.8" }
serde = { version = "1.0", features = ["derive"] }
sscanf = "0.4"
tar = "0.4"
Expand Down
10 changes: 5 additions & 5 deletions scheds/rust/scx_bpfland/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_bpfland"
version = "1.0.7"
version = "1.0.8"
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
edition = "2021"
description = "A vruntime-based sched_ext scheduler that prioritizes interactive workloads. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -13,14 +13,14 @@ clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
crossbeam = "0.8.4"
libbpf-rs = "=0.24.8"
log = "0.4.17"
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8", features = ["autopower"] }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9", features = ["autopower"] }
serde = { version = "1.0", features = ["derive"] }
simplelog = "0.12"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []
10 changes: 5 additions & 5 deletions scheds/rust/scx_flash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_flash"
version = "1.0.5"
version = "1.0.6"
authors = ["Andrea Righi <arighi@nvidia.com>"]
edition = "2021"
description = "A scheduler designed for multimedia and real-time audio processing workloads. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -13,14 +13,14 @@ clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
crossbeam = "0.8.4"
libbpf-rs = "=0.24.8"
log = "0.4.17"
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
serde = { version = "1.0", features = ["derive"] }
simplelog = "0.12"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []
10 changes: 5 additions & 5 deletions scheds/rust/scx_lavd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_lavd"
version = "1.0.7"
version = "1.0.8"
authors = ["Changwoo Min <changwoo@igalia.com>", "Igalia"]
edition = "2021"
description = "A Latency-criticality Aware Virtual Deadline (LAVD) scheduler based on sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -19,17 +19,17 @@ libbpf-rs = "=0.24.8"
libc = "0.2.137"
log = "0.4.17"
ordered-float = "3.4.0"
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8", features = ["autopower"] }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9", features = ["autopower"] }
serde = { version = "1.0", features = ["derive"] }
simplelog = "0.12"
static_assertions = "1.1.0"
plain = "0.2.3"
gpoint = "0.2"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []
10 changes: 5 additions & 5 deletions scheds/rust/scx_layered/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_layered"
version = "1.0.8"
version = "1.0.9"
authors = ["Tejun Heo <htejun@meta.com>", "Meta"]
edition = "2021"
description = "A highly configurable multi-layer BPF / user space hybrid scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -19,15 +19,15 @@ lazy_static = "1.4"
libbpf-rs = "=0.24.8"
libc = "0.2.137"
log = "0.4.17"
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.12"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []
4 changes: 2 additions & 2 deletions scheds/rust/scx_mitosis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ libbpf-rs = "=0.24.8"
libc = "0.2.137"
log = "0.4.17"
maplit = "1.0.2"
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simplelog = "0.12"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []
10 changes: 5 additions & 5 deletions scheds/rust/scx_rlfifo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_rlfifo"
version = "1.0.7"
version = "1.0.8"
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
edition = "2021"
description = "A simple FIFO scheduler in Rust that runs in user-space"
Expand All @@ -12,12 +12,12 @@ plain = "0.2.3"
ctrlc = { version = "3.1", features = ["termination"] }
libbpf-rs = "=0.24.8"
libc = "0.2.137"
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.4" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.5" }

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.4" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.5" }

[features]
enable_backtrace = []
14 changes: 7 additions & 7 deletions scheds/rust/scx_rustland/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_rustland"
version = "1.0.7"
version = "1.0.8"
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
edition = "2021"
description = "A BPF component (dispatcher) that implements the low level sched-ext functionalities and a user-space counterpart (scheduler), written in Rust, that implements the actual scheduling policy. This is used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -17,15 +17,15 @@ libc = "0.2.137"
log = "0.4.17"
ordered-float = "3.4.0"
serde = { version = "1.0", features = ["derive"] }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.4" }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.5" }
simplelog = "0.12"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.4" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.5" }

[features]
enable_backtrace = []
10 changes: 5 additions & 5 deletions scheds/rust/scx_rusty/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scx_rusty"
version = "1.0.7"
version = "1.0.8"
authors = ["Dan Schatzberg <dschatzberg@meta.com>", "Meta"]
edition = "2021"
description = "A multi-domain, BPF / user space hybrid scheduler used within sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
Expand All @@ -17,16 +17,16 @@ libbpf-rs = "=0.24.8"
libc = "0.2.137"
log = "0.4.17"
ordered-float = "3.4.0"
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.7" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.7" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.8" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }
serde = { version = "1.0", features = ["derive"] }
simplelog = "0.12"
sorted-vec = "0.8.3"
static_assertions = "1.1.0"

[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.8" }
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.9" }

[features]
enable_backtrace = []