summaryrefslogtreecommitdiffstats
path: root/bitbake/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:16 +0100
commit8707c39a10b83b905d08a6512d107d4d1234f575 (patch)
tree9a203348d1a6c1aec65db1b5eeca0f5b9c739b95 /bitbake/lib/bb/monitordisk.py
parenta8b06e6f0cad42a6012388e70f830572b935c896 (diff)
downloadpoky-8707c39a10b83b905d08a6512d107d4d1234f575.tar.gz
bitbake: 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. (Bitbake rev: f3ac2d3678f48c68a250a0a20c08cf8687322d38) Signed-off-by: Olof Johansson <olof.johansson@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/monitordisk.py')
-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 3e6ecbd4e2..fca43eefd0 100644
--- a/bitbake/lib/bb/monitordisk.py
+++ b/bitbake/lib/bb/monitordisk.py
@@ -243,7 +243,7 @@ class diskMonitor:
243 # zero, this is a feature of the fs, we disable the inode 243 # zero, this is a feature of the fs, we disable the inode
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.info("Inode check for %s is unavaliable, will remove it from disk monitor" % path)
247 self.devDict[k][2] = 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