linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix spelling errors of words with stem "eliminat"
@ 2021-05-05  4:15 Sean Gloumeau
  2021-05-05  4:15 ` [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate" Sean Gloumeau
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05  4:15 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: kbingham, David Woodhouse, Richard Weinberger, linux-mtd,
	Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev,
	linux-kernel, Sean Gloumeau, Sean Gloumeau

I happened upon a spelling error in v5.5 of the kernel for "eleminating"
in miscdevice.h. After grepping in linux-next I realized that this
error was fixed in miscdevice.h, but found related errors for words
sharing the stem "eliminat". These patches aim to amend these spelling
mistakes, and add entries to scripts/spelling.txt to avoid adding
similar spelling mistakes to the remote in the future.

Sean Gloumeau (3):
  Fix spelling error from "eleminate" to "eliminate"
  Fix spelling error from "elemination" to "elimination"
  Add entries for words with stem "eleminat"

 drivers/net/ethernet/brocade/bna/bnad.c | 2 +-
 fs/jffs2/debug.c                        | 2 +-
 scripts/spelling.txt                    | 3 +++
 3 files changed, 5 insertions(+), 2 deletions(-)


base-commit: 9a9aa07ae18be3b77ba132a6eff3a92c9b83e016
-- 
2.31.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate"
  2021-05-05  4:15 [PATCH 0/3] Fix spelling errors of words with stem "eliminat" Sean Gloumeau
@ 2021-05-05  4:15 ` Sean Gloumeau
  2021-05-05  8:38   ` Kieran Bingham
  2021-05-05  4:16 ` [PATCH 2/3] Fix spelling error from "elemination" to "elimination" Sean Gloumeau
  2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
  2 siblings, 1 reply; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05  4:15 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: kbingham, David Woodhouse, Richard Weinberger, linux-mtd,
	Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev,
	linux-kernel, Sean Gloumeau, Sean Gloumeau

Spelling error "eleminate" amended to "eliminate".

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 drivers/net/ethernet/brocade/bna/bnad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/brocade/bna/bnad.c b/drivers/net/ethernet/brocade/bna/bnad.c
index 7e4e831d720f..ba47777d9cff 100644
--- a/drivers/net/ethernet/brocade/bna/bnad.c
+++ b/drivers/net/ethernet/brocade/bna/bnad.c
@@ -1764,7 +1764,7 @@ bnad_dim_timeout(struct timer_list *t)
 		}
 	}
 
-	/* Check for BNAD_CF_DIM_ENABLED, does not eleminate a race */
+	/* Check for BNAD_CF_DIM_ENABLED, does not eliminate a race */
 	if (test_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags))
 		mod_timer(&bnad->dim_timer,
 			  jiffies + msecs_to_jiffies(BNAD_DIM_TIMER_FREQ));
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/3] Fix spelling error from "elemination" to "elimination"
  2021-05-05  4:15 [PATCH 0/3] Fix spelling errors of words with stem "eliminat" Sean Gloumeau
  2021-05-05  4:15 ` [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate" Sean Gloumeau
@ 2021-05-05  4:16 ` Sean Gloumeau
  2021-05-05  8:42   ` Kieran Bingham
  2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
  2 siblings, 1 reply; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05  4:16 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: kbingham, David Woodhouse, Richard Weinberger, linux-mtd,
	Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev,
	linux-kernel, Sean Gloumeau, Sean Gloumeau

Spelling error "elemination" amended to "elimination".

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 fs/jffs2/debug.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/jffs2/debug.c b/fs/jffs2/debug.c
index 9d26b1b9fc01..027e4f84df28 100644
--- a/fs/jffs2/debug.c
+++ b/fs/jffs2/debug.c
@@ -354,7 +354,7 @@ __jffs2_dbg_acct_paranoia_check_nolock(struct jffs2_sb_info *c,
 	}
 
 #if 0
-	/* This should work when we implement ref->__totlen elemination */
+	/* This should work when we implement ref->__totlen elimination */
 	if (my_dirty_size != jeb->dirty_size + jeb->wasted_size) {
 		JFFS2_ERROR("Calculated dirty+wasted size %#08x != stored dirty + wasted size %#08x\n",
 			my_dirty_size, jeb->dirty_size + jeb->wasted_size);
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 3/3] Add entries for words with stem "eleminat"
  2021-05-05  4:15 [PATCH 0/3] Fix spelling errors of words with stem "eliminat" Sean Gloumeau
  2021-05-05  4:15 ` [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate" Sean Gloumeau
  2021-05-05  4:16 ` [PATCH 2/3] Fix spelling error from "elemination" to "elimination" Sean Gloumeau
@ 2021-05-05  4:17 ` Sean Gloumeau
  2021-05-05  8:44   ` Kieran Bingham
                     ` (2 more replies)
  2 siblings, 3 replies; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05  4:17 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: kbingham, David Woodhouse, Richard Weinberger, linux-mtd,
	Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev,
	linux-kernel, Sean Gloumeau, Sean Gloumeau

Entries are added to spelling.txt in order to prevent spelling mistakes
involving words with stem "eliminat" from occurring again.

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 scripts/spelling.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index 7b6a01291598..e657be5aa2a9 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -548,6 +548,9 @@ ehther||ether
 eigth||eight
 elementry||elementary
 eletronic||electronic
+eleminate||eliminate
+eleminating||eliminating
+elemination||elimination
 embeded||embedded
 enabledi||enabled
 enbale||enable
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate"
  2021-05-05  4:15 ` [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate" Sean Gloumeau
@ 2021-05-05  8:38   ` Kieran Bingham
  0 siblings, 0 replies; 10+ messages in thread
From: Kieran Bingham @ 2021-05-05  8:38 UTC (permalink / raw)
  To: Sean Gloumeau, Jiri Kosina
  Cc: David Woodhouse, Richard Weinberger, linux-mtd, Rasesh Mody,
	Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev, linux-kernel,
	Sean Gloumeau

Hi Sean,

Thank you for the patch,

On 05/05/2021 05:15, Sean Gloumeau wrote:
> Spelling error "eleminate" amended to "eliminate".

Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>

> Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
> ---
>  drivers/net/ethernet/brocade/bna/bnad.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/brocade/bna/bnad.c b/drivers/net/ethernet/brocade/bna/bnad.c
> index 7e4e831d720f..ba47777d9cff 100644
> --- a/drivers/net/ethernet/brocade/bna/bnad.c
> +++ b/drivers/net/ethernet/brocade/bna/bnad.c
> @@ -1764,7 +1764,7 @@ bnad_dim_timeout(struct timer_list *t)
>  		}
>  	}
>  
> -	/* Check for BNAD_CF_DIM_ENABLED, does not eleminate a race */
> +	/* Check for BNAD_CF_DIM_ENABLED, does not eliminate a race */
>  	if (test_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags))
>  		mod_timer(&bnad->dim_timer,
>  			  jiffies + msecs_to_jiffies(BNAD_DIM_TIMER_FREQ));>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] Fix spelling error from "elemination" to "elimination"
  2021-05-05  4:16 ` [PATCH 2/3] Fix spelling error from "elemination" to "elimination" Sean Gloumeau
@ 2021-05-05  8:42   ` Kieran Bingham
  0 siblings, 0 replies; 10+ messages in thread
From: Kieran Bingham @ 2021-05-05  8:42 UTC (permalink / raw)
  To: Sean Gloumeau, Jiri Kosina
  Cc: David Woodhouse, Richard Weinberger, linux-mtd, Rasesh Mody,
	Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev, linux-kernel,
	Sean Gloumeau

Hi Sean,

On 05/05/2021 05:16, Sean Gloumeau wrote:
> Spelling error "elemination" amended to "elimination".
> 
> Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>

Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>

> ---
>  fs/jffs2/debug.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/jffs2/debug.c b/fs/jffs2/debug.c
> index 9d26b1b9fc01..027e4f84df28 100644
> --- a/fs/jffs2/debug.c
> +++ b/fs/jffs2/debug.c
> @@ -354,7 +354,7 @@ __jffs2_dbg_acct_paranoia_check_nolock(struct jffs2_sb_info *c,
>  	}
>  
>  #if 0
> -	/* This should work when we implement ref->__totlen elemination */
> +	/* This should work when we implement ref->__totlen elimination */

I wonder if anyone has worked on or is working on eliminating that
ref->__totlen so that this code isn't left as dead-code.


>  	if (my_dirty_size != jeb->dirty_size + jeb->wasted_size) {
>  		JFFS2_ERROR("Calculated dirty+wasted size %#08x != stored dirty + wasted size %#08x\n",
>  			my_dirty_size, jeb->dirty_size + jeb->wasted_size);
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 3/3] Add entries for words with stem "eleminat"
  2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
@ 2021-05-05  8:44   ` Kieran Bingham
  2021-05-05 17:04   ` [PATCH v2] " Sean Gloumeau
  2021-05-05 17:12   ` [PATCH v2 3/3] " Sean Gloumeau
  2 siblings, 0 replies; 10+ messages in thread
From: Kieran Bingham @ 2021-05-05  8:44 UTC (permalink / raw)
  To: Sean Gloumeau, Jiri Kosina
  Cc: David Woodhouse, Richard Weinberger, linux-mtd, Rasesh Mody,
	Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev, linux-kernel,
	Sean Gloumeau

Hi Sean,

On 05/05/2021 05:17, Sean Gloumeau wrote:
> Entries are added to spelling.txt in order to prevent spelling mistakes
> involving words with stem "eliminat" from occurring again.
> 
> Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
> ---
>  scripts/spelling.txt | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/scripts/spelling.txt b/scripts/spelling.txt
> index 7b6a01291598..e657be5aa2a9 100644
> --- a/scripts/spelling.txt
> +++ b/scripts/spelling.txt
> @@ -548,6 +548,9 @@ ehther||ether
>  eigth||eight
>  elementry||elementary
>  eletronic||electronic
> +eleminate||eliminate
> +eleminating||eliminating
> +elemination||elimination

These should be kept in alphabetical order I believe.

>  embeded||embedded
>  enabledi||enabled
>  enbale||enable
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v2] Add entries for words with stem "eleminat"
  2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
  2021-05-05  8:44   ` Kieran Bingham
@ 2021-05-05 17:04   ` Sean Gloumeau
  2021-05-05 17:05     ` Sean Gloumeau
  2021-05-05 17:12   ` [PATCH v2 3/3] " Sean Gloumeau
  2 siblings, 1 reply; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05 17:04 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Sean Gloumeau, kbingham, David Woodhouse, Richard Weinberger,
	linux-mtd, Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev,
	netdev, linux-kernel, Sean Gloumeau

Entries are added to spelling.txt in order to prevent spelling mistakes
involving words with stem "eliminat" from occurring again.

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 scripts/spelling.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index 7b6a01291598..4400f71a100c 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -547,6 +547,9 @@ efficently||efficiently
 ehther||ether
 eigth||eight
 elementry||elementary
+eleminate||eliminate
+eleminating||eliminating
+elemination||elimination
 eletronic||electronic
 embeded||embedded
 enabledi||enabled
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] Add entries for words with stem "eleminat"
  2021-05-05 17:04   ` [PATCH v2] " Sean Gloumeau
@ 2021-05-05 17:05     ` Sean Gloumeau
  0 siblings, 0 replies; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05 17:05 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: kbingham, David Woodhouse, Richard Weinberger, linux-mtd,
	Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev, netdev,
	linux-kernel, Sean Gloumeau

Whoops, please ignore the last email. It should have sent with a new subject.

On Wed, May 5, 2021 at 1:04 PM Sean Gloumeau <sajgloumeau@gmail.com> wrote:
>
> Entries are added to spelling.txt in order to prevent spelling mistakes
> involving words with stem "eliminat" from occurring again.
>
> Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
> ---
>  scripts/spelling.txt | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/scripts/spelling.txt b/scripts/spelling.txt
> index 7b6a01291598..4400f71a100c 100644
> --- a/scripts/spelling.txt
> +++ b/scripts/spelling.txt
> @@ -547,6 +547,9 @@ efficently||efficiently
>  ehther||ether
>  eigth||eight
>  elementry||elementary
> +eleminate||eliminate
> +eleminating||eliminating
> +elemination||elimination
>  eletronic||electronic
>  embeded||embedded
>  enabledi||enabled
> --
> 2.31.1
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v2 3/3] Add entries for words with stem "eleminat"
  2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
  2021-05-05  8:44   ` Kieran Bingham
  2021-05-05 17:04   ` [PATCH v2] " Sean Gloumeau
@ 2021-05-05 17:12   ` Sean Gloumeau
  2 siblings, 0 replies; 10+ messages in thread
From: Sean Gloumeau @ 2021-05-05 17:12 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Sean Gloumeau, kbingham, David Woodhouse, Richard Weinberger,
	linux-mtd, Rasesh Mody, Sudarsana Kalluru, GR-Linux-NIC-Dev,
	netdev, linux-kernel, Sean Gloumeau

Entries are added to spelling.txt in order to prevent spelling mistakes
involving words with stem "eliminat" from occurring again.

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 scripts/spelling.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index 7b6a01291598..4400f71a100c 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -547,6 +547,9 @@ efficently||efficiently
 ehther||ether
 eigth||eight
 elementry||elementary
+eleminate||eliminate
+eleminating||eliminating
+elemination||elimination
 eletronic||electronic
 embeded||embedded
 enabledi||enabled
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-05-05 17:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-05  4:15 [PATCH 0/3] Fix spelling errors of words with stem "eliminat" Sean Gloumeau
2021-05-05  4:15 ` [PATCH 1/3] Fix spelling error from "eleminate" to "eliminate" Sean Gloumeau
2021-05-05  8:38   ` Kieran Bingham
2021-05-05  4:16 ` [PATCH 2/3] Fix spelling error from "elemination" to "elimination" Sean Gloumeau
2021-05-05  8:42   ` Kieran Bingham
2021-05-05  4:17 ` [PATCH 3/3] Add entries for words with stem "eleminat" Sean Gloumeau
2021-05-05  8:44   ` Kieran Bingham
2021-05-05 17:04   ` [PATCH v2] " Sean Gloumeau
2021-05-05 17:05     ` Sean Gloumeau
2021-05-05 17:12   ` [PATCH v2 3/3] " Sean Gloumeau

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).