Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72bce5078d124a8b13fb167aea028b6e8d91873e
Commit:     72bce5078d124a8b13fb167aea028b6e8d91873e
Parent:     a8b3485287731978899ced11f24628c927890e78
Author:     Mark Fasheh <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 3 17:25:40 2007 -0800
Committer:  Mark Fasheh <[EMAIL PROTECTED]>
CommitDate: Sun Jan 21 16:18:14 2007 -0800

    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 <[EMAIL PROTECTED]>
---
 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 957d687..03b0191 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to