lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Thu, 28 Sep 2023 10:48:22 +0800 (GMT+08:00)
From:   "KaiLong Wang" <wangkailong@...i.cn>
To:     chuck.lever@...cle.com, jlayton@...nel.org, kolga@...app.com,
        neilb@...e.de, Dai.Ngo@...cle.com, tom@...pey.com
Cc:     linux-nfs@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] NFSD: Clean up errors in xdr.h

Fix the following errors reported by checkpatch:

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

Signed-off-by: KaiLong Wang <wangkailong@...i.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ