tuned
tuned copied to clipboard
Tuning Profile Delivery Mechanism for Linux
Resolves: rhbz#2095829 Signed-off-by: Jan Zerdik
Extends the runtime API by the two methods: instance_remove_device(instance_name, device_name) instance_add_device(instance_name, device_name) E.g. consider the following TuneD profile: [cpus_perf] type=cpu devices=cpu1, cpu2 governor=performance [cpus_idle] type=cpu devices=cpu3, cpu4 governor=ondemand After the...
Resolves: rhbz#2118786 Signed-off-by: Jan Zerdik
TuneD is listening on paths specified in config in option unix_socket_paths and send signals to paths in option unix_socket_signal_paths. Example call: ssock_file = "/tmp/tuned_socket" csock_file = "/tmp/tuned_socket_client" if os.path.exists(csock_file): os.remove(csock_file)...
Now it should allow duplicate options and sections in the INI files, the latest value is taken, the previous values are ignored, e.g.: [selinux] avc_cache_threshold=4096 avc_cache_threshold=8192 The avc_cache_threshold will be...
Signed-off-by: lilinjie fix duplicate profile set The same profile file can be written up to /etc/tuned/active_profile, fix it
Helpful if you have an arch-prefixed pkg-config, e.g. when cross compiling. Signed-off-by: Heiko Becker
Fix spell error.
Fix tuned/gtk/gui_profile_loader.py spell error.
Signed-off-by: lilinjie add 'tuned-adm delete' command Convenient for users to delete their own generated profile. (dir: /etc/tuned/)