Where is the function list_cpusetstr() defined? It is called in sysreport/src/cpulist.py but it is not defined in this codebase or in pyperf.
% ruff check --output-format=concise # https://docs.astral.sh/ruff/linter
src/cpulist.py:371:39: F405 `list_cpusetstr` may be undefined, or defined from star imports
src/cpulist.py:372:39: F405 `list_cpusetstr` may be undefined, or defined from star imports
|
print(" package: %s" % list_cpusetstr(CPUlist_to_cpulist(self.system.cpus_by_package[p]))) |
|
print(" self.cpus: %s" % list_cpusetstr(self.cpus)) |
Where is the function
list_cpusetstr()defined? It is called insysreport/src/cpulist.pybut it is not defined in this codebase or inpyperf.%
ruff check --output-format=concise# https://docs.astral.sh/ruff/lintersysreport/src/cpulist.py
Lines 371 to 372 in ea35556