version 1.13

This commit is contained in:
Clark Williams 2021-07-07 11:08:44 -05:00
parent d2e48d71c0
commit f83b550972
3 changed files with 28 additions and 4 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
/stalld-1.9.tar.xz
/stalld-1.10.tar.xz
/stalld-1.11.tar.xz
/stalld-1.13.tar.bz2

View File

@ -1 +1 @@
SHA512 (stalld-1.11.tar.xz) = e7ebbadff29a4ba907b4440aa59d345b018bd0c37fc9361346485d7e60958b3ef41bc6f0cb6c0b69a92120a0630d98934d4f424a5708f96d0b0e94e1833ccd27
SHA512 (stalld-1.13.tar.bz2) = e067d3bffdffcd0f42ebf1b881fcc842b4a90d67099075bc8ccfaf9ce5503efcddb1eaa301dd19b6c678e0423bb8fbdc7a6503a4b5e733f5111c1cafc5af8bca

View File

@ -1,11 +1,11 @@
Name: stalld
Version: 1.11
Version: 1.13
Release: 1%{?dist}
Summary: Daemon that finds starving tasks and gives them a temporary boost
License: GPLv2
URL: https://git.kernel.org/pub/scm/utils/stalld/stalld.git
Source0: https://jcwillia.fedorapeople.org/%{name}-%{version}.tar.xz
URL: https://gitlab.com/rt-linux-tools/%{name}/%{name}.git
Source0: https://gitlab.com/rt-linux-tools/%{name}/-/archive/v%{version}/%{name}-%{version}.tar.bz2
BuildRequires: glibc-devel
BuildRequires: gcc
@ -51,6 +51,29 @@ allow 10 microseconds of runtime for 1 second of clock time.
%systemd_postun_with_restart %{name}.service
%changelog
* Fri Jul 02 2021 Fernando Pacheco <fpacheco@redhat.com> - 1.13-1
- stalld: Fix log message on boost_cpu_starving_vector()
- stalld: Add the overload control to the single-threaded mode
- stalld: Add the adaptive mode option
- stalld: Use the last mode set in the cmdline
- stalld: Fallback to the adaptive mode if force_fifo is selected
- stalld: Make single-threaded mode the default one
- stalld.service: Always restart stalld on exit
- utils.c: Fail if user is not root
- utils.c: Make the path to sched_debug path dynamic
* Tue Jun 29 2021 Fernando Pacheco <fpacheco@redhat.com> - 1.12-1
- stalld.8: fix diff cruft left in manpage source
- stalld.c: clean up handling of nr_running
- stalld.c: remove duplicate parameter to fill_waiting_task()
- stalld: Add error handling in get_cpu_idle_time()
- stalld.service: Run stalld as sched_fifo via systemd
- packaging: clean up Makefiles and rpm specfile
- stalld: Always print current function for info messages
- stalld: Always print current function for warn messages
- stalld: Always print current function for die messages
- utils: change PATHMAX to 4096
* Thu May 13 2021 Clark Williams <williams@redhat.com> - 1.11-1
- redhat/stalld.spec: pick up gating test version for changelog
- utils.c: set daemon umask to restrict global write/execute (1934586)