Merge "Relax inode usage estimate."

This commit is contained in:
David Anderson 2021-04-07 02:15:39 +00:00 committed by Gerrit Code Review
commit 5ebe28c1d4
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ def GetInodeUsage(path):
"""
cmd = ["find", path, "-print"]
output = common.RunAndCheckOutput(cmd, verbose=False)
# increase by > 4% as number of files and directories is not whole picture.
# increase by > 6% as number of files and directories is not whole picture.
inodes = output.count('\n')
spare_inodes = inodes * 4 // 100
spare_inodes = inodes * 6 // 100
min_spare_inodes = 12
if spare_inodes < min_spare_inodes:
spare_inodes = min_spare_inodes