Commit d426721c authored by Sunil Mushran's avatar Sunil Mushran Committed by Mark Fasheh

ocfs2: silence ENOENT during lookup of broken links

Signed-off-by: default avatarSunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: default avatarMark Fasheh <mark.fasheh@oracle.com>
parent 781ee3e2
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment