[device/accton]: As7816-64x, fix memory leakage on accton fan monitor. (#6168)
It's been reported that accton fan monitor process keeps consuming memory after few days. The amount of memory occupied increases in linear and never leased. Signed-off-by: roy_lee <roy_lee@edge-core.com>
This commit is contained in:
parent
ffcef27eb1
commit
c9d3e25115
@ -54,6 +54,9 @@ class accton_as7816_monitor(object):
|
|||||||
|
|
||||||
def __init__(self, log_file, log_level):
|
def __init__(self, log_file, log_level):
|
||||||
"""Needs a logger and a logger level."""
|
"""Needs a logger and a logger level."""
|
||||||
|
|
||||||
|
self.thermal = ThermalUtil()
|
||||||
|
self.fan = FanUtil()
|
||||||
# set up logging to file
|
# set up logging to file
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
filename=log_file,
|
filename=log_file,
|
||||||
@ -83,8 +86,8 @@ class accton_as7816_monitor(object):
|
|||||||
4: [max_duty, 57000, sys.maxsize],
|
4: [max_duty, 57000, sys.maxsize],
|
||||||
}
|
}
|
||||||
|
|
||||||
thermal = ThermalUtil()
|
thermal = self.thermal
|
||||||
fan = FanUtil()
|
fan = self.fan
|
||||||
for x in range(fan.get_idx_fan_start(), fan.get_num_fans()+1):
|
for x in range(fan.get_idx_fan_start(), fan.get_num_fans()+1):
|
||||||
fan_status = fan.get_fan_status(x)
|
fan_status = fan.get_fan_status(x)
|
||||||
if fan_status is None:
|
if fan_status is None:
|
||||||
|
Reference in New Issue
Block a user