From: J. Bruce Fields Date: Thu, 13 Oct 2005 20:54:27 +0000 (-0400) Subject: NFSv4: handle no acl attr X-Git-Tag: v2.6.15-rc1~733^2~54^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c233cf9c2ad6f49df753bdce84fddbf00bf6a75;p=platform%2Fkernel%2Flinux-exynos.git NFSv4: handle no acl attr Stop handing garbage to userspace in the case where a weird server clears the acl bit in the getattr return (despite the fact that they've already claimed acl support.) Signed-off-by: J. Bruce Fields Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index c5c7523..cd76264 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -3255,7 +3255,8 @@ static int decode_getacl(struct xdr_stream *xdr, struct rpc_rqst *req, if (attrlen <= *acl_len) xdr_read_pages(xdr, attrlen); *acl_len = attrlen; - } + } else + status = -EOPNOTSUPP; out: return status;