NFSD: Add nfsd4_encode_fattr4_fh_expire_type()
authorChuck Lever <chuck.lever@oracle.com>
Mon, 18 Sep 2023 13:57:45 +0000 (09:57 -0400)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 16 Oct 2023 16:44:13 +0000 (12:44 -0400)
Refactor the encoder for FATTR4_FH_EXPIRE_TYPE into a helper. In a
subsequent patch, this helper will be called from a bitmask loop.

Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfs4xdr.c

index 55fa9f69c1e6b04cf0990619bc88fea72923d979..622f74b36d5ea5112fee2b6e4aaab2c56273bb99 100644 (file)
@@ -2927,6 +2927,7 @@ out_resource:
 struct nfsd4_fattr_args {
        struct svc_rqst         *rqstp;
        struct svc_fh           *fhp;
+       struct svc_export       *exp;
        struct dentry           *dentry;
        struct kstat            stat;
        struct kstatfs          statfs;
@@ -3002,6 +3003,17 @@ static __be32 nfsd4_encode_fattr4_type(struct xdr_stream *xdr,
        return nfs_ok;
 }
 
+static __be32 nfsd4_encode_fattr4_fh_expire_type(struct xdr_stream *xdr,
+                                                const struct nfsd4_fattr_args *args)
+{
+       u32 mask;
+
+       mask = NFS4_FH_PERSISTENT;
+       if (!(args->exp->ex_flags & NFSEXP_NOSUBTREECHECK))
+               mask |= NFS4_FH_VOL_RENAME;
+       return nfsd4_encode_uint32_t(xdr, mask);
+}
+
 /*
  * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
  * ourselves.
@@ -3041,6 +3053,7 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
        BUG_ON(!nfsd_attrs_supported(minorversion, bmval));
 
        args.rqstp = rqstp;
+       args.exp = exp;
        args.dentry = dentry;
 
        args.rdattr_err = 0;
@@ -3141,14 +3154,9 @@ nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
                        goto out;
        }
        if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
-               p = xdr_reserve_space(xdr, 4);
-               if (!p)
-                       goto out_resource;
-               if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
-                       *p++ = cpu_to_be32(NFS4_FH_PERSISTENT);
-               else
-                       *p++ = cpu_to_be32(NFS4_FH_PERSISTENT|
-                                               NFS4_FH_VOL_RENAME);
+               status = nfsd4_encode_fattr4_fh_expire_type(xdr, &args);
+               if (status != nfs_ok)
+                       goto out;
        }
        if (bmval0 & FATTR4_WORD0_CHANGE) {
                p = xdr_reserve_space(xdr, 8);