-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jaroslav Škarvada <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
2 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 |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
|
||
Summary: A dynamic adaptive system tuning daemon | ||
Name: tuned | ||
Version: 2.22.0 | ||
Version: 2.22.1 | ||
Release: 1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist} | ||
License: GPL-2.0-or-later AND CC-BY-SA-3.0 | ||
Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz | ||
|
@@ -574,6 +574,14 @@ fi | |
%config(noreplace) %{_sysconfdir}/tuned/ppd.conf | ||
|
||
%changelog | ||
* Thu Feb 22 2024 Jaroslav Škarvada <[email protected]> - 2.22.1-1 | ||
- new release | ||
- rebased tuned to latest upstream | ||
related: RHEL-17121 | ||
- renamed intel_uncore plugin to uncore | ||
- network-throughput: increased net.ipv4.tcp_rmem default value | ||
resolves: RHEL-25847 | ||
|
||
* Fri Feb 16 2024 Jaroslav Škarvada <[email protected]> - 2.22.0-1 | ||
- new release | ||
- rebased tuned to latest upstream | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
TUNED_VERSION_MAJOR = 2 | ||
TUNED_VERSION_MINOR = 22 | ||
TUNED_VERSION_PATCH = 0 | ||
TUNED_VERSION_PATCH = 1 | ||
|
||
TUNED_VERSION_STR = "%d.%d.%d" % (TUNED_VERSION_MAJOR, TUNED_VERSION_MINOR, TUNED_VERSION_PATCH) |