SILENT KILLERPanel

Current Path: > > usr > lib > python3.6 > site-packages > tuned > plugins >


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.8
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/lib/python3.6/site-packages/tuned/plugins/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
instance Directory - -
__init__.py File 49 bytes February 22 2024 12:23:28.
base.py File 22417 bytes February 22 2024 12:23:28.
decorators.py File 983 bytes February 22 2024 12:23:28.
exceptions.py File 99 bytes February 22 2024 12:23:28.
hotplug.py File 3928 bytes February 22 2024 12:23:28.
plugin_acpi.py File 2446 bytes February 22 2024 12:23:28.
plugin_audio.py File 3209 bytes February 22 2024 12:23:28.
plugin_bootloader.py File 25914 bytes February 22 2024 12:23:28.
plugin_cpu.py File 28218 bytes February 22 2024 12:23:28.
plugin_disk.py File 17049 bytes March 11 2025 07:42:24.
plugin_eeepc_she.py File 2947 bytes February 22 2024 12:23:28.
plugin_irqbalance.py File 3554 bytes February 22 2024 12:23:28.
plugin_modules.py File 4925 bytes February 22 2024 12:23:28.
plugin_mounts.py File 5580 bytes February 22 2024 12:23:28.
plugin_net.py File 23252 bytes February 22 2024 12:23:28.
plugin_rtentsk.py File 1109 bytes February 22 2024 12:23:28.
plugin_scheduler.py File 56255 bytes February 22 2024 12:23:28.
plugin_script.py File 3852 bytes February 22 2024 12:23:28.
plugin_scsi_host.py File 3153 bytes February 22 2024 12:23:28.
plugin_selinux.py File 2320 bytes February 22 2024 12:23:28.
plugin_service.py File 10721 bytes February 22 2024 12:23:28.
plugin_sysctl.py File 6906 bytes February 22 2024 12:23:28.
plugin_sysfs.py File 2694 bytes February 22 2024 12:23:28.
plugin_systemd.py File 5428 bytes February 22 2024 12:23:28.
plugin_uncore.py File 4723 bytes February 22 2024 12:23:28.
plugin_usb.py File 2015 bytes February 22 2024 12:23:28.
plugin_video.py File 3807 bytes February 22 2024 12:23:28.
plugin_vm.py File 3561 bytes February 22 2024 12:23:28.
repository.py File 1530 bytes February 22 2024 12:23:28.

Reading File: //usr/lib/python3.6/site-packages/tuned/plugins//plugin_audio.py

from . import hotplug
from .decorators import *
import tuned.logs
from tuned.utils.commands import commands

import os
import errno
import struct
import glob

log = tuned.logs.get()
cmd = commands()

class AudioPlugin(hotplug.Plugin):
	"""
	`audio`::
	
	Sets audio cards power saving options. The plug-in sets the auto suspend
	timeout for audio codecs to the value specified by the [option]`timeout`
	option.
	+
	Currently, the `snd_hda_intel` and `snd_ac97_codec` codecs are
	supported and the [option]`timeout` value is in seconds. To disable
	auto suspend for these codecs, set the [option]`timeout` value
	to `0`. To enforce the controller reset, set the option
	[option]`reset_controller` to `true`. Note that power management
	is supported per module. Hence, the kernel module names are used as
	device names.
	+
	.Set the timeout value to 10s and enforce the controller reset
	====
	----
	[audio]
	timeout=10
	reset_controller=true
	----
	====
	"""

	def _init_devices(self):
		self._devices_supported = True
		self._assigned_devices = set()
		self._free_devices = set()

		for device in self._hardware_inventory.get_devices("sound").match_sys_name("card*"):
			module_name = self._device_module_name(device)
			if module_name in ["snd_hda_intel", "snd_ac97_codec"]:
				self._free_devices.add(module_name)

	def _instance_init(self, instance):
		instance._has_static_tuning = True
		instance._has_dynamic_tuning = False

	def _instance_cleanup(self, instance):
		pass

	def _device_module_name(self, device):
		try:
			return device.parent.driver
		except:
			return None

	@classmethod
	def _get_config_options(cls):
		return {
			"timeout":          0,
			"reset_controller": False,
		}

	def _timeout_path(self, device):
		return "/sys/module/%s/parameters/power_save" % device

	def _reset_controller_path(self, device):
		return "/sys/module/%s/parameters/power_save_controller" % device

	@command_set("timeout", per_device = True)
	def _set_timeout(self, value, device, sim, remove):
		try:
			timeout = int(value)
		except ValueError:
			log.error("timeout value '%s' is not integer" % value)
			return None
		if timeout >= 0:
			sys_file = self._timeout_path(device)
			if not sim:
				cmd.write_to_file(sys_file, "%d" % timeout, \
					no_error = [errno.ENOENT] if remove else False)
			return timeout
		else:
			return None

	@command_get("timeout")
	def _get_timeout(self, device, ignore_missing=False):
		sys_file = self._timeout_path(device)
		value = cmd.read_file(sys_file, no_error=ignore_missing)
		if len(value) > 0:
			return value
		return None

	@command_set("reset_controller", per_device = True)
	def _set_reset_controller(self, value, device, sim, remove):
		v = cmd.get_bool(value)
		sys_file = self._reset_controller_path(device)
		if os.path.exists(sys_file):
			if not sim:
				cmd.write_to_file(sys_file, v, \
					no_error = [errno.ENOENT] if remove else False)
			return v
		return None

	@command_get("reset_controller")
	def _get_reset_controller(self, device, ignore_missing=False):
		sys_file = self._reset_controller_path(device)
		if os.path.exists(sys_file):
			value = cmd.read_file(sys_file)
			if len(value) > 0:
				return cmd.get_bool(value)
		return None

SILENT KILLER Tool