mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use 'implementation' if 'brand' not available (Solaris 9). Add CPU socket/core counting.
This commit is contained in:
parent
9ca7165f88
commit
68959e7f92
1 changed files with 26 additions and 6 deletions
|
@ -655,6 +655,8 @@ class SunOSHardware(Hardware):
|
|||
return self.facts
|
||||
|
||||
def get_cpu_facts(self):
|
||||
physid = 0
|
||||
sockets = {}
|
||||
rc, out, err = module.run_command("/usr/bin/kstat cpu_info")
|
||||
self.facts['processor'] = []
|
||||
for line in out.split('\n'):
|
||||
|
@ -662,15 +664,33 @@ class SunOSHardware(Hardware):
|
|||
continue
|
||||
data = line.split(None, 1)
|
||||
key = data[0].strip()
|
||||
# key "brand" works on Solaris 10
|
||||
if key == 'brand':
|
||||
# "brand" works on Solaris 10 & 11. "implementation" for Solaris 9.
|
||||
if key == 'module':
|
||||
brand = ''
|
||||
elif key == 'brand':
|
||||
brand = data[1].strip()
|
||||
elif key == 'implementation':
|
||||
processor = brand or data[1].strip()
|
||||
if 'processor' not in self.facts:
|
||||
self.facts['processor'] = []
|
||||
self.facts['processor'].append(data[1].strip())
|
||||
# Counting cores on Solaris can be complicated. Leave as-is for now.
|
||||
self.facts['processor'].append(processor)
|
||||
elif key == 'chip_id':
|
||||
physid = data[1].strip()
|
||||
if physid not in sockets:
|
||||
sockets[physid] = 1
|
||||
else:
|
||||
sockets[physid] += 1
|
||||
# Counting cores on Solaris can be complicated.
|
||||
# https://blogs.oracle.com/mandalika/entry/solaris_show_me_the_cpu
|
||||
self.facts['processor_cores'] = 'NA'
|
||||
self.facts['processor_count'] = len(self.facts['processor'])
|
||||
# Treat 'processor_count' as physical sockets and 'processor_cores' as
|
||||
# virtual CPUs visisble to Solaris. Not a true count of cores for modern SPARC as
|
||||
# these processors have: sockets -> cores -> threads/virtual CPU.
|
||||
if len(sockets) > 0:
|
||||
self.facts['processor_count'] = len(sockets)
|
||||
self.facts['processor_cores'] = reduce(lambda x, y: x + y, sockets.values())
|
||||
else:
|
||||
self.facts['processor_cores'] = 'NA'
|
||||
self.facts['processor_count'] = len(self.facts['processor'])
|
||||
|
||||
def get_memory_facts(self):
|
||||
rc, out, err = module.run_command(["/usr/sbin/prtconf"])
|
||||
|
|
Loading…
Reference in a new issue