diff options
Diffstat (limited to 'fs/nfsd/nfs2acl.c')
| -rw-r--r-- | fs/nfsd/nfs2acl.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/nfsd/nfs2acl.c b/fs/nfsd/nfs2acl.c index 6aa5590c367..9170861c804 100644 --- a/fs/nfsd/nfs2acl.c +++ b/fs/nfsd/nfs2acl.c @@ -218,8 +218,7 @@ static int nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p,   * There must be an encoding function for void results so svc_process   * will work properly.   */ -int -nfsaclsvc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy) +static int nfsaclsvc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)  {  	return xdr_ressize_check(rqstp, p);  } @@ -254,7 +253,7 @@ static int nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, __be32 *p,  		(resp->mask & NFS_ACL)   ? resp->acl_access  : NULL,  		(resp->mask & NFS_DFACL) ? resp->acl_default : NULL);  	while (w > 0) { -		if (!rqstp->rq_respages[rqstp->rq_resused++]) +		if (!*(rqstp->rq_next_page++))  			return 0;  		w -= PAGE_SIZE;  	}  |