Make shrink_dcache_for_umount_subtree() use the core assertion code rather than doing printk() then BUG() so that the annotation appears _after_ the "cut here" line instead of before it. Signed-off-by: David Howells <dhowells@xxxxxxxxxx> --- fs/dcache.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/fs/dcache.c b/fs/dcache.c index a88948b..29f9e44 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -36,6 +36,7 @@ #include <linux/bit_spinlock.h> #include <linux/rculist_bl.h> #include <linux/prefetch.h> +#include <linux/assert.h> #include "internal.h" /* @@ -858,9 +859,9 @@ static void shrink_dcache_for_umount_subtree(struct dentry *dentry) dentry_lru_del(dentry); __d_shrink(dentry); - if (dentry->d_count != 0) { - printk(KERN_ERR - "BUG: Dentry %p{i=%lx,n=%s}" + if (unlikely(dentry->d_count != 0)) + assertion_failed( + "Dentry %p{i=%lx,n=%s}" " still in use (%d)" " [unmount of %s %s]\n", dentry, @@ -870,8 +871,6 @@ static void shrink_dcache_for_umount_subtree(struct dentry *dentry) dentry->d_count, dentry->d_sb->s_type->name, dentry->d_sb->s_id); - BUG(); - } if (IS_ROOT(dentry)) { parent = NULL; -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html