From: Guangguan Wang <guangguan.wang@linux.alibaba.com>
To: Simon Horman <horms@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Wenjia Zhang <wenjia@linux.ibm.com>,
Jan Karcher <jaka@linux.ibm.com>,
"D. Wythe" <alibuda@linux.alibaba.com>,
Tony Lu <tonylu@linux.alibaba.com>,
Wen Gu <guwen@linux.alibaba.com>
Cc: Randy Dunlap <rdunlap@infradead.org>,
linux-s390@vger.kernel.org, netdev@vger.kernel.org
Subject: Re: [PATCH net-next] net/smc: Address spelling errors
Date: Wed, 9 Oct 2024 21:02:19 +0800 [thread overview]
Message-ID: <e1abb0e5-2da1-49e6-8af0-2cd2531eb6ec@linux.alibaba.com> (raw)
In-Reply-To: <20241009-smc-starspell-v1-1-b8b395bbaf82@kernel.org>
On 2024/10/9 18:05, Simon Horman wrote:
> Address spelling errors flagged by codespell.
>
> This patch is intended to cover all files under drivers/smc
>
> Signed-off-by: Simon Horman <horms@kernel.org>
> ---
> net/smc/smc.h | 2 +-
> net/smc/smc_clc.h | 2 +-
> net/smc/smc_core.c | 2 +-
> net/smc/smc_core.h | 4 ++--
> 4 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/net/smc/smc.h b/net/smc/smc.h
> index ad77d6b6b8d3..78ae10d06ed2 100644
> --- a/net/smc/smc.h
> +++ b/net/smc/smc.h
> @@ -278,7 +278,7 @@ struct smc_connection {
> */
> u64 peer_token; /* SMC-D token of peer */
> u8 killed : 1; /* abnormal termination */
> - u8 freed : 1; /* normal termiation */
> + u8 freed : 1; /* normal termination */
> u8 out_of_sync : 1; /* out of sync with peer */
> };
>
> diff --git a/net/smc/smc_clc.h b/net/smc/smc_clc.h
> index 5625fda2960b..5fd6f5b8ef03 100644
> --- a/net/smc/smc_clc.h
> +++ b/net/smc/smc_clc.h
> @@ -156,7 +156,7 @@ struct smc_clc_msg_proposal_prefix { /* prefix part of clc proposal message*/
> } __aligned(4);
>
> struct smc_clc_msg_smcd { /* SMC-D GID information */
> - struct smc_clc_smcd_gid_chid ism; /* ISM native GID+CHID of requestor */
> + struct smc_clc_smcd_gid_chid ism; /* ISM native GID+CHID of requester */
> __be16 v2_ext_offset; /* SMC Version 2 Extension Offset */
> u8 vendor_oui[3]; /* vendor organizationally unique identifier */
> u8 vendor_exp_options[5];
> diff --git a/net/smc/smc_core.c b/net/smc/smc_core.c
> index 4e694860ece4..500952c2e67b 100644
> --- a/net/smc/smc_core.c
> +++ b/net/smc/smc_core.c
> @@ -2321,7 +2321,7 @@ static struct smc_buf_desc *smcr_new_buf_create(struct smc_link_group *lgr,
> }
> if (lgr->buf_type == SMCR_PHYS_CONT_BUFS)
> goto out;
> - fallthrough; // try virtually continguous buf
> + fallthrough; // try virtually contiguous buf
> case SMCR_VIRT_CONT_BUFS:
> buf_desc->order = get_order(bufsize);
> buf_desc->cpu_addr = vzalloc(PAGE_SIZE << buf_desc->order);
> diff --git a/net/smc/smc_core.h b/net/smc/smc_core.h
> index 0db4e5f79ac4..69b54ecd6503 100644
> --- a/net/smc/smc_core.h
> +++ b/net/smc/smc_core.h
> @@ -30,7 +30,7 @@
> */
> #define SMC_CONN_PER_LGR_PREFER 255 /* Preferred connections per link group used for
> * SMC-R v2.1 and later negotiation, vendors or
> - * distrubutions may modify it to a value between
> + * distributions may modify it to a value between
> * 16-255 as needed.
> */
>
> @@ -181,7 +181,7 @@ struct smc_link {
> */
> #define SMC_LINKS_PER_LGR_MAX_PREFER 2 /* Preferred max links per link group used for
> * SMC-R v2.1 and later negotiation, vendors or
> - * distrubutions may modify it to a value between
> + * distributions may modify it to a value between
> * 1-2 as needed.
> */
>
>
LGTM.
Reviewed-by: Guangguan Wang <guangguan.wang@linux.alibaba.com>
Thanks,
Guangguan Wang.
next prev parent reply other threads:[~2024-10-09 13:02 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-09 10:05 [PATCH net-next] net/smc: Address spelling errors Simon Horman
2024-10-09 10:47 ` D. Wythe
2024-10-09 13:02 ` Guangguan Wang [this message]
2024-10-09 14:06 ` Randy Dunlap
2024-10-09 14:57 ` Wenjia Zhang
2024-10-10 16:20 ` patchwork-bot+netdevbpf
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=e1abb0e5-2da1-49e6-8af0-2cd2531eb6ec@linux.alibaba.com \
--to=guangguan.wang@linux.alibaba.com \
--cc=alibuda@linux.alibaba.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=guwen@linux.alibaba.com \
--cc=horms@kernel.org \
--cc=jaka@linux.ibm.com \
--cc=kuba@kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=rdunlap@infradead.org \
--cc=tonylu@linux.alibaba.com \
--cc=wenjia@linux.ibm.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