Merge "Run mlock_report under python3"
This commit is contained in:
commit
ee71ae03f6
@ -14,6 +14,8 @@
|
||||
|
||||
set -o errexit
|
||||
|
||||
PYTHON=${PYTHON:-python}
|
||||
|
||||
# time to sleep between checks
|
||||
SLEEP_TIME=20
|
||||
|
||||
@ -86,7 +88,7 @@ function tracker {
|
||||
# list processes that lock memory from swap
|
||||
if [[ $unevictable -ne $unevictable_point ]]; then
|
||||
unevictable_point=$unevictable
|
||||
./tools/mlock_report.py
|
||||
${PYTHON} ./tools/mlock_report.py
|
||||
fi
|
||||
|
||||
echo "]]]"
|
||||
|
@ -8,14 +8,15 @@ import subprocess
|
||||
import psutil
|
||||
|
||||
|
||||
SUMMARY_REGEX = re.compile(r".*\s+(?P<locked>[\d]+)\s+KB")
|
||||
SUMMARY_REGEX = re.compile(b".*\s+(?P<locked>[\d]+)\s+KB")
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
print _get_report()
|
||||
print(_get_report())
|
||||
except Exception as e:
|
||||
print "Failure listing processes locking memory: %s" % str(e)
|
||||
print("Failure listing processes locking memory: %s" % str(e))
|
||||
raise
|
||||
|
||||
|
||||
def _get_report():
|
||||
|
Loading…
Reference in New Issue
Block a user