aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2015-05-24 10:25:00 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-10 12:49:38 -0400
commit1eda16d166170124b56e4090075ce6997c3d43af (patch)
treec54aaa0df5f989bc12cbfd61ff8f4f57a8dd0d3a /fs
parent0da5a72210cbe177ab1043be058403ca49eb7a2b (diff)
vfs: Remove incorrect debugging WARN in prepend_path
commit 93e3bce6287e1fb3e60d3324ed08555b5bbafa89 upstream. 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. 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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 37b5afdaf698..50bb3c207621 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -2927,17 +2927,6 @@ restart:
2927 vfsmnt = &mnt->mnt; 2927 vfsmnt = &mnt->mnt;
2928 continue; 2928 continue;
2929 } 2929 }
2930 /*
2931 * Filesystems needing to implement special "root names"
2932 * should do so with ->d_dname()
2933 */
2934 if (IS_ROOT(dentry) &&
2935 (dentry->d_name.len != 1 ||
2936 dentry->d_name.name[0] != '/')) {
2937 WARN(1, "Root dentry has weird name <%.*s>\n",
2938 (int) dentry->d_name.len,
2939 dentry->d_name.name);
2940 }
2941 if (!error) 2930 if (!error)
2942 error = is_mounted(vfsmnt) ? 1 : 2; 2931 error = is_mounted(vfsmnt) ? 1 : 2;
2943 break; 2932 break;