Merge "Relax inode usage estimation slack for DAP right sizing"

This commit is contained in:
TreeHugger Robot 2018-12-13 08:55:37 +00:00 committed by Android (Google) Code Review
commit 868c81ccc3

View file

@ -75,8 +75,8 @@ 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.
return output.count('\n') * 25 // 24
# increase by 25 % as number of files and directories is not whole picture.
return output.count('\n') * 30 // 24
def GetFilesystemCharacteristics(sparse_image_path):