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

Commit 48b4ba3f authored by Chuck Lever's avatar Chuck Lever Committed by J. Bruce Fields
Browse files

NFSD: Path name length signage in nfsd request argument structures



Clean up: For consistency, store the length of path name strings in nfsd
argument structures as unsigned integers.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Acked-By: default avatarNeilBrown <neilb@suse.de>
Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
parent a628f667
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ struct nfsd_symlinkargs {
	char *			fname;
	unsigned int		flen;
	char *			tname;
	int			tlen;
	unsigned int		tlen;
	struct iattr		attrs;
};

+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ struct nfsd3_symlinkargs {
	char *			fname;
	unsigned int		flen;
	char *			tname;
	int			tlen;
	unsigned int		tlen;
	struct iattr		attrs;
};