-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from metaspace/october
Block subsystem update for October (v6.11, v6.12-rc2)
- Loading branch information
Showing
9 changed files
with
18,539 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
{ | ||
description = "Shell for building rust-for-linux.com"; | ||
inputs.nixpkgs.url = "nixpkgs/nixos-24.05"; | ||
inputs.systems.url = "github:nix-systems/default"; | ||
inputs.flake-utils = { | ||
url = "github:numtide/flake-utils"; | ||
inputs.systems.follows = "systems"; | ||
}; | ||
|
||
outputs = | ||
{ nixpkgs, flake-utils, ... }: | ||
flake-utils.lib.eachDefaultSystem ( | ||
system: | ||
let | ||
pkgs = nixpkgs.legacyPackages.${system}; | ||
in | ||
{ | ||
devShells.default = pkgs.mkShell { packages = with pkgs; [ | ||
python3 | ||
mdbook | ||
]; }; | ||
} | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,54 @@ in this work: | |
- [Mailing List Post](https://lore.kernel.org/all/[email protected]/) | ||
- [Subset merged in v6.11-rc1](https://lore.kernel.org/all/[email protected]/) | ||
|
||
## 6.12-rc2 Rebase ([`rnull-v6.12-rc2`](https://git.kernel.org/pub/scm/linux/kernel/git/a.hindborg/linux.git/log/?h=rnull-v6.12-rc2)) | ||
|
||
Changes from `rnull-v6.10`: | ||
|
||
- Make `QueueData` references pinned. | ||
|
||
### Performance | ||
|
||
#### Setup | ||
|
||
- AMD Ryzen 5 7600 | ||
- 32 GB 4800 MT/s DDR5 on one channel | ||
- 1x Samsung 990 Pro 1TB (PCIe 4.0 x4 16 GT/S) | ||
- NixOS 24.05 | ||
|
||
#### Results | ||
|
||
- Plot shows `(mean_iops_r - mean_iops_c) / mean_iops_c` | ||
- 40 samples for each configuration | ||
- Difference of means modeled with t-distribution | ||
- P95 confidence intervals | ||
|
||
![](rnull/rnull-v6.12-rc2.svg) | ||
|
||
## 6.11 Rebase ([`rnull-v6.11`](https://git.kernel.org/pub/scm/linux/kernel/git/a.hindborg/linux.git/log/?h=rnull-v6.11)) | ||
|
||
Changes from `rnull-v6.10`: | ||
|
||
- None. | ||
|
||
### Performance | ||
|
||
#### Setup | ||
|
||
- AMD Ryzen 5 7600 | ||
- 32 GB 4800 MT/s DDR5 on one channel | ||
- 1x Samsung 990 Pro 1TB (PCIe 4.0 x4 16 GT/S) | ||
- NixOS 24.05 | ||
|
||
#### Results | ||
|
||
- Plot shows `(mean_iops_r - mean_iops_c) / mean_iops_c` | ||
- 40 samples for each configuration | ||
- Difference of means modeled with t-distribution | ||
- P95 confidence intervals | ||
|
||
![](rnull/rnull-v6.11.svg) | ||
|
||
## 6.11-rc2 Rebase ([`rnull-v6.11-rc2`](https://git.kernel.org/pub/scm/linux/kernel/git/a.hindborg/linux.git/log/?h=rnull-v6.11-rc2)) | ||
|
||
Changes from `rnull-v6.10`: | ||
|
Oops, something went wrong.