aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@canonical.com>2011-01-21 14:41:48 +0000
committerJohn Rigby <john.rigby@linaro.org>2012-08-15 23:46:19 -0600
commitb4b48108e249a3c143c486ccbe1c5e1eada6d01f (patch)
tree07977154e8dcf2b6514c91f774dca4b42e27af6f
parent1ed05475aaf7d840595cb5cb282fa6fe8f494b9b (diff)
UBUNTU: ubuntu: AUFS -- suppress benign plink warning messages
We are getting a lot of bug reports for unexpectedly high plink counts. This message is benign and not worth reporting as a bug. Suppress. BugLink: http://bugs.launchpad.net/bugs/621195 Signed-off-by: Andy Whitcroft <apw@canonical.com>
-rw-r--r--ubuntu/aufs/plink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ubuntu/aufs/plink.c b/ubuntu/aufs/plink.c
index b1888f30c71..1824e6df635 100644
--- a/ubuntu/aufs/plink.c
+++ b/ubuntu/aufs/plink.c
@@ -414,8 +414,8 @@ void au_plink_append(struct inode *inode, aufs_bindex_t bindex,
spin_unlock(&sbinfo->si_plink.spin);
if (!found) {
cnt++;
- WARN_ONCE(cnt > AUFS_PLINK_WARN,
- "unexpectedly many pseudo links, %d\n", cnt);
+// WARN_ONCE(cnt > AUFS_PLINK_WARN,
+// "unexpectedly many pseudo links, %d\n", cnt);
err = whplink(h_dentry, inode, bindex, au_sbr(sb, bindex));
} else {
do_put_plink(tmp, 0);