diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2007-04-26 11:43:43 -0700 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-04-26 13:39:08 -0700 |
commit | a9f5f70739363ccca2e771c274c4f015c5fb7a88 (patch) | |
tree | 243c6d9f7ba7151b6a7afc65a53682d0c5eb6b9a /fs/ocfs2/file.c | |
parent | bebe6f120b036349f7212205eeaf8248d4820c4b (diff) | |
download | kernel_samsung_espresso10-a9f5f70739363ccca2e771c274c4f015c5fb7a88.zip kernel_samsung_espresso10-a9f5f70739363ccca2e771c274c4f015c5fb7a88.tar.gz kernel_samsung_espresso10-a9f5f70739363ccca2e771c274c4f015c5fb7a88.tar.bz2 |
ocfs2: filter more error prints
We don't want to print anything at all in ocfs2_lookup() when getting an
error from ocfs2_iget() - it could be something as innocuous as a signal
being detected in the dlm.
ocfs2_permission() should filter on -ENOENT which ocfs2_meta_lock() can
return if the inode was deleted on another node.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index f2cd3bf..25e36fb 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -972,7 +972,8 @@ int ocfs2_permission(struct inode *inode, int mask, struct nameidata *nd) ret = ocfs2_meta_lock(inode, NULL, 0); if (ret) { - mlog_errno(ret); + if (ret != -ENOENT) + mlog_errno(ret); goto out; } |