diff mbox series

[net-next] net/smc: Address spelling errors

Message ID 20241009-smc-starspell-v1-1-b8b395bbaf82@kernel.org (mailing list archive)
State Accepted
Commit cd959bf7c3bbaf64a29750c5e36776078a18a8fe
Delegated to: Netdev Maintainers
Headers show
Series [net-next] net/smc: Address spelling errors | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 6 this patch: 6
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 10 of 10 maintainers
netdev/build_clang success Errors and warnings before: 6 this patch: 6
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 5 this patch: 5
netdev/checkpatch warning WARNING: line length of 89 exceeds 80 columns WARNING: line length of 97 exceeds 80 columns
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest success net-next-2024-10-10--09-00 (tests: 775)

Commit Message

Simon Horman Oct. 9, 2024, 10:05 a.m. UTC
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(-)

Comments

D. Wythe Oct. 9, 2024, 10:47 a.m. UTC | #1
On 10/9/24 6:05 PM, 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: D. Wythe <alibuda@linux.alibaba.com>

D. Wythe
Guangguan Wang Oct. 9, 2024, 1:02 p.m. UTC | #2
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.
Randy Dunlap Oct. 9, 2024, 2:06 p.m. UTC | #3
On 10/9/24 3:05 AM, 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(-)
> 

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.
Wenjia Zhang Oct. 9, 2024, 2:57 p.m. UTC | #4
On 09.10.24 12: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>
> ---

Reviewed-by: Wenjia Zhang <wenjia@linux.ibm.com>

Thanks,
Wenjia
patchwork-bot+netdevbpf@kernel.org Oct. 10, 2024, 4:20 p.m. UTC | #5
Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 09 Oct 2024 11:05:21 +0100 you 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(-)

Here is the summary with links:
  - [net-next] net/smc: Address spelling errors
    https://git.kernel.org/netdev/net-next/c/cd959bf7c3bb

You are awesome, thank you!
diff mbox series

Patch

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.
 						 */