diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/monitordisk.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py index 6b03682584..466523c6e4 100644 --- a/bitbake/lib/bb/monitordisk.py +++ b/bitbake/lib/bb/monitordisk.py | |||
@@ -239,11 +239,9 @@ class diskMonitor: | |||
239 | freeInode = st.f_favail | 239 | freeInode = st.f_favail |
240 | 240 | ||
241 | if minInode and freeInode < minInode: | 241 | if minInode and freeInode < minInode: |
242 | # Some fs formats' (e.g., btrfs) statvfs.f_files (inodes) is | 242 | # Some filesystems use dynamic inodes so can't run out |
243 | # zero, this is a feature of the fs, we disable the inode | 243 | # (e.g. btrfs). This is reported by the inode count being 0. |
244 | # checking for such a fs. | ||
245 | if st.f_files == 0: | 244 | if st.f_files == 0: |
246 | logger.info("Inode check for %s is unavaliable, will remove it from disk monitor" % path) | ||
247 | self.devDict[k][2] = None | 245 | self.devDict[k][2] = None |
248 | continue | 246 | continue |
249 | # Always show warning, the self.checked would always be False if the action is WARN | 247 | # Always show warning, the self.checked would always be False if the action is WARN |