summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/monitordisk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py
index a71dd9f4d5..c6d0767324 100644
--- a/bitbake/lib/bb/monitordisk.py
+++ b/bitbake/lib/bb/monitordisk.py
@@ -244,7 +244,7 @@ class diskMonitor:
244 # checking for such a fs. 244 # checking for such a fs.
245 if st.f_files == 0: 245 if st.f_files == 0:
246 logger.warn("Inode check for %s is unavaliable, will remove it from disk monitor" % path) 246 logger.warn("Inode check for %s is unavaliable, will remove it from disk monitor" % path)
247 minInode = None 247 self.devDict[k][2] = None
248 continue 248 continue
249 # Always show warning, the self.checked would always be False if the action is WARN 249 # Always show warning, the self.checked would always be False if the action is WARN
250 if self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]: 250 if self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]: