From: "KaiLong Wang" <wangkailong@jari.cn>
To: chuck.lever@oracle.com, jlayton@kernel.org, kolga@netapp.com,
neilb@suse.de, Dai.Ngo@oracle.com, tom@talpey.com
Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH] NFSD: Clean up errors in xdr.h
Date: Thu, 28 Sep 2023 10:48:22 +0800 (GMT+08:00) [thread overview]
Message-ID: <1d65e344.8a6.18ad9aff80a.Coremail.wangkailong@jari.cn> (raw)
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
reply other threads:[~2023-09-28 2:49 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1d65e344.8a6.18ad9aff80a.Coremail.wangkailong@jari.cn \
--to=wangkailong@jari.cn \
--cc=Dai.Ngo@oracle.com \
--cc=chuck.lever@oracle.com \
--cc=jlayton@kernel.org \
--cc=kolga@netapp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
--cc=tom@talpey.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).