diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2006-12-14 23:29:25 (GMT) |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-12-29 00:37:20 (GMT) |
commit | 0333394bff439c3fb09264303de42e7038b3e709 (patch) | |
tree | c42710ccdbfa6e218fdf1bd880471682b2ed19d3 /fs | |
parent | 3bf8ba38f38d3647368e4edcf7d019f9f8d9184a (diff) | |
download | linux-0333394bff439c3fb09264303de42e7038b3e709.tar.xz |
ocfs2: don't print error in ocfs2_permission()
Errors from generic_permission() can happen in valid cases and shouldn't be
reported.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 9fd590b..a50447d 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -966,8 +966,6 @@ int ocfs2_permission(struct inode *inode, int mask, struct nameidata *nd) } ret = generic_permission(inode, mask, NULL); - if (ret) - mlog_errno(ret); ocfs2_meta_unlock(inode, 0); out: |