From patchwork Thu Sep 28 02:48:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: KaiLong Wang X-Patchwork-Id: 13401911 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CBCD8CE7AF1 for ; Thu, 28 Sep 2023 02:49:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229445AbjI1Cts (ORCPT ); Wed, 27 Sep 2023 22:49:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbjI1Cts (ORCPT ); Wed, 27 Sep 2023 22:49:48 -0400 Received: from jari.cn (unknown [218.92.28.115]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 0BEA794; Wed, 27 Sep 2023 19:49:44 -0700 (PDT) Received: from wangkailong$jari.cn ( [182.148.12.64] ) by ajax-webmail-localhost.localdomain (Coremail) ; Thu, 28 Sep 2023 10:48:22 +0800 (GMT+08:00) X-Originating-IP: [182.148.12.64] Date: Thu, 28 Sep 2023 10:48:22 +0800 (GMT+08:00) X-CM-HeaderCharset: UTF-8 From: "KaiLong Wang" 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 X-Priority: 3 X-Mailer: Coremail Webmail Server Version 2023.1-cmXT6 build 20230419(ff23bf83) Copyright (c) 2002-2023 www.mailtech.cn mispb-4e503810-ca60-4ec8-a188-7102c18937cf-zhkzyfz.cn MIME-Version: 1.0 Message-ID: <1d65e344.8a6.18ad9aff80a.Coremail.wangkailong@jari.cn> X-Coremail-Locale: zh_CN X-CM-TRANSID: AQAAfwDHZD926RRlgX6+AA--.635W X-CM-SenderInfo: 5zdqwypdlo00nj6mt2flof0/1tbiAQAJB2T8PZMAAQAssU X-Coremail-Antispam: 1Ur529EdanIXcx71UUUUU7IcSsGvfJ3iIAIbVAYjsxI4VWxJw CS07vEb4IE77IF4wCS07vE1I0E4x80FVAKz4kxMIAIbVAFxVCaYxvI4VCIwcAKzIAtYxBI daVFxhVjvjDU= Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org Fix the following errors reported by checkpatch: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: KaiLong Wang --- 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;