[bitbake-devel] [PATCH] bb.cache: prevent division-by-zero in load_cahefile()

Markus Lehtonen markus.lehtonen at linux.intel.com
Mon Apr 10 10:50:41 UTC 2017


[YOCTO 11315]

Signed-off-by: Markus Lehtonen <markus.lehtonen at linux.intel.com>
---
 lib/bb/cache.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 28e8a874..e7eeb4f5 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -462,6 +462,10 @@ class Cache(NoCache):
                         self.depends_cache[key] = [value]
                     # only fire events on even percentage boundaries
                     current_progress = cachefile.tell() + previous_progress
+                    if current_progress > cachesize:
+                        # we might have calculated incorrect total size because a file
+                        # might've been written out just after we checked its size
+                        cachesize = current_progress
                     current_percent = 100 * current_progress / cachesize
                     if current_percent > previous_percent:
                         previous_percent = current_percent
-- 
2.12.0




More information about the bitbake-devel mailing list