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>

+1 -2
+1 -2
fs/ocfs2/symlink.c
··· 158 } 159 160 status = vfs_follow_link(nd, link); 161 - if (status && status != -ENOENT) 162 - mlog_errno(status); 163 bail: 164 if (page) { 165 kunmap(page);
··· 158 } 159 160 status = vfs_follow_link(nd, link); 161 + 162 bail: 163 if (page) { 164 kunmap(page);