aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/monitordisk.py
diff options
context:
space:
mode:
authorOlof Johansson <olof.johansson@axis.com>2013-10-18 12:21:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-18 16:02:10 +0100
commitf3ac2d3678f48c68a250a0a20c08cf8687322d38 (patch)
treec20c8ef7a21d40f928c9f7812ef28ca2ed64ad82 /lib/bb/monitordisk.py
parent62200ff6694b21fbd5abf009a6f47ad93adf5309 (diff)
downloadbitbake-f3ac2d3678f48c68a250a0a20c08cf8687322d38.tar.gz
monitordisk: lower inode check warning to note
Filesystems like btrfs and reiserfs sets the inode count to 0, since they don't have an inode concept. This is expected, and having a warning show up every time you run bitbake can cause undue concern. Signed-off-by: Olof Johansson <olof.johansson@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/monitordisk.py')
-rw-r--r--lib/bb/monitordisk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/monitordisk.py b/lib/bb/monitordisk.py
index 3e6ecbd4e..fca43eefd 100644
--- a/lib/bb/monitordisk.py
+++ b/lib/bb/monitordisk.py
@@ -243,7 +243,7 @@ class diskMonitor:
# zero, this is a feature of the fs, we disable the inode
# checking for such a fs.
if st.f_files == 0:
- logger.warn("Inode check for %s is unavaliable, will remove it from disk monitor" % path)
+ logger.info("Inode check for %s is unavaliable, will remove it from disk monitor" % path)
self.devDict[k][2] = None
continue
# Always show warning, the self.checked would always be False if the action is WARN