]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
NFSv3: Don't open code stream position calculation in decode_getacl3resok
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Thu, 21 Jun 2012 15:41:29 +0000 (11:41 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Thu, 28 Jun 2012 21:20:45 +0000 (17:20 -0400)
Use the new xdr_stream_pos() helper instead.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs3xdr.c

index d64a00ff5a162037045882d82afd00fef290cf2f..5013bdd85ab935eab620f3822de32bc473ccaa06 100644 (file)
@@ -2341,7 +2341,7 @@ static inline int decode_getacl3resok(struct xdr_stream *xdr,
        if (result->mask & ~(NFS_ACL|NFS_ACLCNT|NFS_DFACL|NFS_DFACLCNT))
                goto out;
 
-       hdrlen = (u8 *)xdr->p - (u8 *)xdr->iov->iov_base;
+       hdrlen = xdr_stream_pos(xdr);
 
        acl = NULL;
        if (result->mask & NFS_ACL)