diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2007-01-04 04:25:40 +0300 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-01-22 03:18:14 +0300 |
commit | 72bce5078d124a8b13fb167aea028b6e8d91873e (patch) | |
tree | 619f89df1e0f12db3acf0c60d244ea2464731bb0 /fs/ocfs2 | |
parent | a8b3485287731978899ced11f24628c927890e78 (diff) | |
download | linux-72bce5078d124a8b13fb167aea028b6e8d91873e.tar.xz |
ocfs2: Don't print errors when following symlinks
We shouldn't print errors returned from vfs_follow_link(). This was causing
spurious errors to show up in the logs.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/symlink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ocfs2/symlink.c b/fs/ocfs2/symlink.c index 957d6878b03e..03b0191534d5 100644 --- a/fs/ocfs2/symlink.c +++ b/fs/ocfs2/symlink.c @@ -158,8 +158,7 @@ static void *ocfs2_follow_link(struct dentry *dentry, } status = vfs_follow_link(nd, link); - if (status && status != -ENOENT) - mlog_errno(status); + bail: if (page) { kunmap(page); |