linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] NFSD: Clean up errors in xdr.h
@ 2023-09-28  2:48 KaiLong Wang
  0 siblings, 0 replies; only message in thread
From: KaiLong Wang @ 2023-09-28  2:48 UTC (permalink / raw)
  To: chuck.lever, jlayton, kolga, neilb, Dai.Ngo, tom; +Cc: linux-nfs, linux-kernel

Fix the following errors reported by checkpatch:

ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
---
 fs/nfsd/xdr.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/fs/nfsd/xdr.h b/fs/nfsd/xdr.h
index 852f71580bd0..e2797eb2668d 100644
--- a/fs/nfsd/xdr.h
+++ b/fs/nfsd/xdr.h
@@ -19,7 +19,7 @@ struct nfsd_sattrargs {
 
 struct nfsd_diropargs {
 	struct svc_fh		fh;
-	char *			name;
+	char                   *name;
 	unsigned int		len;
 };
 
@@ -38,32 +38,32 @@ struct nfsd_writeargs {
 
 struct nfsd_createargs {
 	struct svc_fh		fh;
-	char *			name;
+	char                   *name;
 	unsigned int		len;
 	struct iattr		attrs;
 };
 
 struct nfsd_renameargs {
 	struct svc_fh		ffh;
-	char *			fname;
+	char 		       *fname;
 	unsigned int		flen;
 	struct svc_fh		tfh;
-	char *			tname;
+	char 		       *tname;
 	unsigned int		tlen;
 };
 
 struct nfsd_linkargs {
 	struct svc_fh		ffh;
 	struct svc_fh		tfh;
-	char *			tname;
+	char 		       *tname;
 	unsigned int		tlen;
 };
 
 struct nfsd_symlinkargs {
 	struct svc_fh		ffh;
-	char *			fname;
+	char  		       *fname;
 	unsigned int		flen;
-	char *			tname;
+	char 		       *tname;
 	unsigned int		tlen;
 	struct iattr		attrs;
 	struct kvec		first;
-- 
2.17.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-28  2:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-28  2:48 [PATCH] NFSD: Clean up errors in xdr.h KaiLong Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).