summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2015-05-24 09:25:00 -0500
committerSasha Levin <sasha.levin@oracle.com>2015-07-13 08:50:08 -0400
commit1bbf6a5be19ef725e3887a45ec86a133f13a4426 (patch)
treea8177453de580e5ad2ad1d1073b8084e00e0d202 /fs
parent26f6fb3b8eaaca7f35a7b8d86ed5e6eb7592b306 (diff)
vfs: Remove incorrect debugging WARN in prepend_path
[ Upstream commit 93e3bce6287e1fb3e60d3324ed08555b5bbafa89 ] The warning message in prepend_path is unclear and outdated. It was added as a warning that the mechanism for generating names of pseudo files had been removed from prepend_path and d_dname should be used instead. Unfortunately the warning reads like a general warning, making it unclear what to do with it. Remove the warning. The transition it was added to warn about is long over, and I added code several years ago which in rare cases causes the warning to fire on legitimate code, and the warning is now firing and scaring people for no good reason. Cc: stable@vger.kernel.org Reported-by: Ivan Delalande <colona@arista.com> Reported-by: Omar Sandoval <osandov@osandov.com> Fixes: f48cfddc6729e ("vfs: In d_path don't call d_dname on a mount point") Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/dcache.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index e0750b8f51aa..d0539a4a1ab1 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -2893,17 +2893,6 @@ restart:
vfsmnt = &mnt->mnt;
continue;
}
- /*
- * Filesystems needing to implement special "root names"
- * should do so with ->d_dname()
- */
- if (IS_ROOT(dentry) &&
- (dentry->d_name.len != 1 ||
- dentry->d_name.name[0] != '/')) {
- WARN(1, "Root dentry has weird name <%.*s>\n",
- (int) dentry->d_name.len,
- dentry->d_name.name);
- }
if (!error)
error = is_mounted(vfsmnt) ? 1 : 2;
break;