Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1829b38 authored by J. Bruce Fields's avatar J. Bruce Fields
Browse files

nfsd4: fix free_stateid return endianness



Cc: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 57b7b43b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3362,7 +3362,7 @@ nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, __be32 nfserr,
}

static __be32
nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, int nfserr,
nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
			  struct nfsd4_free_stateid *free_stateid)
{
	__be32 *p;
@@ -3371,7 +3371,7 @@ nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, int nfserr,
		return nfserr;

	RESERVE_SPACE(4);
	WRITE32(nfserr);
	*p++ = nfserr;
	ADJUST_ARGS();
	return nfserr;
}