Fix print error of numbers of blocks
The total number of blocks to pack as new data was printed incorrectly. Fix printing. Change-Id: I6a6bb8dd6682d9c57943ceb1a728995f9529e2fd
This commit is contained in:
@@ -613,12 +613,15 @@ class BlockImageDiff(object):
|
|||||||
def_cmd = stashes[idx][1]
|
def_cmd = stashes[idx][1]
|
||||||
assert (idx, sr) in def_cmd.stash_before
|
assert (idx, sr) in def_cmd.stash_before
|
||||||
def_cmd.stash_before.remove((idx, sr))
|
def_cmd.stash_before.remove((idx, sr))
|
||||||
new_blocks += sr.size()
|
|
||||||
|
|
||||||
|
# Add up blocks that violates space limit and print total number to
|
||||||
|
# screen later.
|
||||||
|
new_blocks += cmd.tgt_ranges.size()
|
||||||
cmd.ConvertToNew()
|
cmd.ConvertToNew()
|
||||||
|
|
||||||
print(" Total %d blocks are packed as new blocks due to insufficient "
|
num_of_bytes = new_blocks * self.tgt.blocksize
|
||||||
"cache size." % (new_blocks,))
|
print(" Total %d blocks (%d bytes) are packed as new blocks due to "
|
||||||
|
"insufficient cache size." % (new_blocks, num_of_bytes))
|
||||||
|
|
||||||
def ComputePatches(self, prefix):
|
def ComputePatches(self, prefix):
|
||||||
print("Reticulating splines...")
|
print("Reticulating splines...")
|
||||||
|
Reference in New Issue
Block a user