On 10-07-26 18:36, Jiaju Zhang wrote:
> Oh, this is a slight change of the patch I just posted, since the
> original one may have wrongly processing of error return code. So
> please review this one instead;)
> 
> Thanks a lot,
> Jiaju
> 
> Signed-off-by: Jiaju Zhang <[email protected]>
> ---
>  fs/ocfs2/acl.c |   20 ++++++++++++++++++--
>  1 files changed, 18 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ocfs2/acl.c b/fs/ocfs2/acl.c
> index da70229..28a25b8 100644
> --- a/fs/ocfs2/acl.c
> +++ b/fs/ocfs2/acl.c
> @@ -290,12 +290,28 @@ static int ocfs2_set_acl(handle_t *handle,
>  
>  int ocfs2_check_acl(struct inode *inode, int mask)
>  {
> -     struct posix_acl *acl = ocfs2_get_acl(inode, ACL_TYPE_ACCESS);
> +     struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
> +     struct buffer_head *di_bh = NULL;
> +     struct posix_acl *acl;
> +     int ret = -EAGAIN;
> +
> +     if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
> +             return ret;
> +
> +     ret = ocfs2_read_inode_block(inode, &di_bh);
> +     if (ret < 0) {
> +             mlog_errno(ret);
> +             return ret;
> +     }
> +
> +     acl = ocfs2_get_acl_nolock(inode, ACL_TYPE_ACCESS, di_bh);
> +
> +     brelse(di_bh);
>  
>       if (IS_ERR(acl))

Could you log this error? though it's not part of the fix.
Otherwise, ack.

regards,
wengang.
>               return PTR_ERR(acl);
>       if (acl) {
> -             int ret = posix_acl_permission(inode, acl, mask);
> +             ret = posix_acl_permission(inode, acl, mask);
>               posix_acl_release(acl);
>               return ret;
>       }

_______________________________________________
Ocfs2-devel mailing list
[email protected]
http://oss.oracle.com/mailman/listinfo/ocfs2-devel

Reply via email to