Skip to content

Commit

Permalink
ocfs2: silence ENOENT during lookup of broken links
Browse files Browse the repository at this point in the history
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
  • Loading branch information
Sunil Mushran authored and Mark Fasheh committed Jun 29, 2006
1 parent 781ee3e commit d426721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ocfs2/symlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static void *ocfs2_follow_link(struct dentry *dentry,
}

status = vfs_follow_link(nd, link);
if (status)
if (status && status != -ENOENT)
mlog_errno(status);
bail:
if (page) {
Expand Down

0 comments on commit d426721

Please sign in to comment.