[201911] DellEMC: Skip thermalctld and thermal platform API changes (#4752)

**- Why I did it**

- Skip thermalctld in DellEMC S6000, S6100, Z9100 and Z9264 platforms.
- Change the return type of thermal Platform APIs in DellEMC S6000, S6100 and Z9100 platforms to 'float'.

**- How I did it**

- Add 'skip_thermalctld:true' in pmon_daemon_control.json for DellEMC S6000, S6100, Z9100 and Z9264 platforms.
- Made changes in thermal.py, for 'get_temperature', 'get_high_threshold' and 'get_low_threshold' to return 'float' value.

**- How to verify it**

- Check thermalctld is not running in 'pmon'.
- Wrote a python script to load Chassis class and then call the APIs accordingly and verify the return type.
This commit is contained in:
Arun Saravanan Balachandran 2020-06-11 23:18:27 +05:30 committed by GitHub
parent 0a70571011
commit 093d7731ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 26 additions and 22 deletions

View File

@ -1,3 +1,4 @@
{
"skip_ledd": true
"skip_ledd": true,
"skip_thermalctld": true
}

View File

@ -1,3 +1,4 @@
{
"skip_ledd": true
"skip_ledd": true,
"skip_thermalctld": true
}

View File

@ -1,3 +1,4 @@
{
"skip_ledd": true
"skip_ledd": true,
"skip_thermalctld": true
}

View File

@ -1,3 +1,4 @@
{
"skip_ledd": true
"skip_ledd": true,
"skip_thermalctld": true
}

View File

@ -179,11 +179,11 @@ class Thermal(ThermalBase):
thermal_temperature = self._read_sysfs_file(
self.thermal_temperature_file)
if (thermal_temperature != 'ERR'):
thermal_temperature = float(thermal_temperature) / 1000
thermal_temperature = float(thermal_temperature)
else:
thermal_temperature = 0
return "{:.3f}".format(thermal_temperature)
return thermal_temperature / 1000.0
def get_high_threshold(self):
"""
@ -197,11 +197,11 @@ class Thermal(ThermalBase):
thermal_high_threshold = self._read_sysfs_file(
self.thermal_high_threshold_file)
if (thermal_high_threshold != 'ERR'):
thermal_high_threshold = float(thermal_high_threshold) / 1000
thermal_high_threshold = float(thermal_high_threshold)
else:
thermal_high_threshold = 0
return "{:.3f}".format(thermal_high_threshold)
return thermal_high_threshold / 1000.0
def get_low_threshold(self):
"""
@ -215,11 +215,11 @@ class Thermal(ThermalBase):
thermal_low_threshold = self._read_sysfs_file(
self.thermal_low_threshold_file)
if (thermal_low_threshold != 'ERR'):
thermal_low_threshold = float(thermal_low_threshold) / 1000
thermal_low_threshold = float(thermal_low_threshold)
else:
thermal_low_threshold = 0
return "{:.3f}".format(thermal_low_threshold)
return thermal_low_threshold / 1000.0
def set_high_threshold(self, temperature):
"""

View File

@ -138,11 +138,11 @@ class Thermal(ThermalBase):
thermal_temperature = self._read_sysfs_file(
self.thermal_temperature_file)
if (thermal_temperature != 'ERR'):
thermal_temperature = float(thermal_temperature) / 1000
thermal_temperature = float(thermal_temperature)
else:
thermal_temperature = 0
return "{:.3f}".format(thermal_temperature)
return thermal_temperature / 1000.0
def get_high_threshold(self):
"""
@ -156,11 +156,11 @@ class Thermal(ThermalBase):
thermal_high_threshold = self._read_sysfs_file(
self.thermal_high_threshold_file)
if (thermal_high_threshold != 'ERR'):
thermal_high_threshold = float(thermal_high_threshold) / 1000
thermal_high_threshold = float(thermal_high_threshold)
else:
thermal_high_threshold = 0
return "{:.3f}".format(thermal_high_threshold)
return thermal_high_threshold / 1000.0
def get_low_threshold(self):
"""
@ -174,11 +174,11 @@ class Thermal(ThermalBase):
thermal_low_threshold = self._read_sysfs_file(
self.thermal_low_threshold_file)
if (thermal_low_threshold != 'ERR'):
thermal_low_threshold = float(thermal_low_threshold) / 1000
thermal_low_threshold = float(thermal_low_threshold)
else:
thermal_low_threshold = 0
return "{:.3f}".format(thermal_low_threshold)
return thermal_low_threshold / 1000.0
def set_high_threshold(self, temperature):
"""

View File

@ -134,11 +134,11 @@ class Thermal(ThermalBase):
thermal_temperature = self._read_sysfs_file(
self.thermal_temperature_file)
if (thermal_temperature != 'ERR'):
thermal_temperature = float(thermal_temperature) / 1000
thermal_temperature = float(thermal_temperature)
else:
thermal_temperature = 0
return "{:.3f}".format(thermal_temperature)
return thermal_temperature / 1000.0
def get_high_threshold(self):
"""
@ -152,11 +152,11 @@ class Thermal(ThermalBase):
thermal_high_threshold = self._read_sysfs_file(
self.thermal_high_threshold_file)
if (thermal_high_threshold != 'ERR'):
thermal_high_threshold = float(thermal_high_threshold) / 1000
thermal_high_threshold = float(thermal_high_threshold)
else:
thermal_high_threshold = 0
return "{:.3f}".format(thermal_high_threshold)
return thermal_high_threshold / 1000.0
def get_low_threshold(self):
"""
@ -170,11 +170,11 @@ class Thermal(ThermalBase):
thermal_low_threshold = self._read_sysfs_file(
self.thermal_low_threshold_file)
if (thermal_low_threshold != 'ERR'):
thermal_low_threshold = float(thermal_low_threshold) / 1000
thermal_low_threshold = float(thermal_low_threshold)
else:
thermal_low_threshold = 0
return "{:.3f}".format(thermal_low_threshold)
return thermal_low_threshold / 1000.0
def set_high_threshold(self, temperature):
"""