All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests/rseq: Fix spelling of accommodate
@ 2026-07-01 12:43 Old-Ding
  0 siblings, 0 replies; 6+ messages in thread
From: Old-Ding @ 2026-07-01 12:43 UTC (permalink / raw)
  To: mathieu.desnoyers, peterz, paulmck, boqun
  Cc: shuah, skhan, linux-kernel, linux-kselftest, Old-Ding

The comment contains a spelling error listed in scripts/spelling.txt.

Fix it.

Signed-off-by: Old-Ding <1746193727@qq.com>
---
 tools/testing/selftests/rseq/rseq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c
index be0d0a97031e..1cd633923b1d 100644
--- a/tools/testing/selftests/rseq/rseq.c
+++ b/tools/testing/selftests/rseq/rseq.c
@@ -73,7 +73,7 @@ static int rseq_ownership;
 #define ORIG_RSEQ_ALLOC_SIZE		32
 
 /*
- * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an
+ * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an
  * rseq registration that is larger than the current rseq ABI.
  */
 union rseq_tls {
-- 
2.50.1.windows.1


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

* [PATCH] selftests/rseq: Fix spelling of accommodate
@ 2026-07-02  8:23 Old-Ding
  2026-07-02 22:12 ` Thomas Gleixner
  2026-07-05 15:47 ` [PATCH v2] " Ding Junlin
  0 siblings, 2 replies; 6+ messages in thread
From: Old-Ding @ 2026-07-02  8:23 UTC (permalink / raw)
  To: mathieu.desnoyers, peterz, paulmck, boqun
  Cc: shuah, skhan, linux-kernel, linux-kselftest, Old-Ding

The comment contains a spelling error listed in scripts/spelling.txt.

Fix it.

Signed-off-by: Old-Ding <1746193727@qq.com>
---
 tools/testing/selftests/rseq/rseq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c
index be0d0a97031e..1cd633923b1d 100644
--- a/tools/testing/selftests/rseq/rseq.c
+++ b/tools/testing/selftests/rseq/rseq.c
@@ -73,7 +73,7 @@ static int rseq_ownership;
 #define ORIG_RSEQ_ALLOC_SIZE		32
 
 /*
- * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an
+ * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an
  * rseq registration that is larger than the current rseq ABI.
  */
 union rseq_tls {
-- 
2.50.1.windows.1


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

* Re: [PATCH] selftests/rseq: Fix spelling of accommodate
  2026-07-02  8:23 [PATCH] selftests/rseq: Fix spelling of accommodate Old-Ding
@ 2026-07-02 22:12 ` Thomas Gleixner
  2026-07-05 15:47 ` [PATCH v2] " Ding Junlin
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Gleixner @ 2026-07-02 22:12 UTC (permalink / raw)
  To: Old-Ding, mathieu.desnoyers, peterz, paulmck, boqun
  Cc: shuah, skhan, linux-kernel, linux-kselftest, Old-Ding

On Thu, Jul 02 2026 at 16:23, Old-Ding wrote:

Please don't resend the same patch within 24 hours. 

See Documentation/process/

> The comment contains a spelling error listed in scripts/spelling.txt.
>
> Fix it.
>
> Signed-off-by: Old-Ding <1746193727@qq.com>

You have to provide a real name and not some made up nickname.

See Documentation/process/


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

* [PATCH v2] selftests/rseq: Fix spelling of accommodate
  2026-07-02  8:23 [PATCH] selftests/rseq: Fix spelling of accommodate Old-Ding
  2026-07-02 22:12 ` Thomas Gleixner
@ 2026-07-05 15:47 ` Ding Junlin
  2026-07-05 16:39   ` Paul E. McKenney
  2026-07-05 20:21   ` [tip: core/rseq] " tip-bot2 for Ding Junlin
  1 sibling, 2 replies; 6+ messages in thread
From: Ding Junlin @ 2026-07-05 15:47 UTC (permalink / raw)
  To: mathieu.desnoyers, peterz, paulmck, boqun, shuah
  Cc: tglx, linux-kernel, linux-kselftest, Ding Junlin

The comment contains a spelling error listed in scripts/spelling.txt.

Fix it.

Signed-off-by: Ding Junlin <1746193727@qq.com>
---
v2:
- Use real name for authorship and Signed-off-by. No code changes.

 tools/testing/selftests/rseq/rseq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c
index be0d0a97031e..1cd633923b1d 100644
--- a/tools/testing/selftests/rseq/rseq.c
+++ b/tools/testing/selftests/rseq/rseq.c
@@ -73,7 +73,7 @@ static int rseq_ownership;
 #define ORIG_RSEQ_ALLOC_SIZE		32
 
 /*
- * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an
+ * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an
  * rseq registration that is larger than the current rseq ABI.
  */
 union rseq_tls {
-- 
2.50.1.windows.1


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

* Re: [PATCH v2] selftests/rseq: Fix spelling of accommodate
  2026-07-05 15:47 ` [PATCH v2] " Ding Junlin
@ 2026-07-05 16:39   ` Paul E. McKenney
  2026-07-05 20:21   ` [tip: core/rseq] " tip-bot2 for Ding Junlin
  1 sibling, 0 replies; 6+ messages in thread
From: Paul E. McKenney @ 2026-07-05 16:39 UTC (permalink / raw)
  To: Ding Junlin
  Cc: mathieu.desnoyers, peterz, boqun, shuah, tglx, linux-kernel,
	linux-kselftest

On Sun, Jul 05, 2026 at 11:47:46PM +0800, Ding Junlin wrote:
> The comment contains a spelling error listed in scripts/spelling.txt.
> 
> Fix it.
> 
> Signed-off-by: Ding Junlin <1746193727@qq.com>

Reviewed-by: Paul E. McKenney <paulmck@kernel.org>

> ---
> v2:
> - Use real name for authorship and Signed-off-by. No code changes.
> 
>  tools/testing/selftests/rseq/rseq.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c
> index be0d0a97031e..1cd633923b1d 100644
> --- a/tools/testing/selftests/rseq/rseq.c
> +++ b/tools/testing/selftests/rseq/rseq.c
> @@ -73,7 +73,7 @@ static int rseq_ownership;
>  #define ORIG_RSEQ_ALLOC_SIZE		32
>  
>  /*
> - * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an
> + * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an
>   * rseq registration that is larger than the current rseq ABI.
>   */
>  union rseq_tls {
> -- 
> 2.50.1.windows.1
> 

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

* [tip: core/rseq] selftests/rseq: Fix spelling of accommodate
  2026-07-05 15:47 ` [PATCH v2] " Ding Junlin
  2026-07-05 16:39   ` Paul E. McKenney
@ 2026-07-05 20:21   ` tip-bot2 for Ding Junlin
  1 sibling, 0 replies; 6+ messages in thread
From: tip-bot2 for Ding Junlin @ 2026-07-05 20:21 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Ding Junlin, Thomas Gleixner, Paul E. McKenney, x86, linux-kernel

The following commit has been merged into the core/rseq branch of tip:

Commit-ID:     7148c0a02e09994cfede32bf0b63f3ef9724f6f5
Gitweb:        https://git.kernel.org/tip/7148c0a02e09994cfede32bf0b63f3ef9724f6f5
Author:        Ding Junlin <1746193727@qq.com>
AuthorDate:    Sun, 05 Jul 2026 23:47:46 +08:00
Committer:     Thomas Gleixner <tglx@kernel.org>
CommitterDate: Sun, 05 Jul 2026 22:13:53 +02:00

selftests/rseq: Fix spelling of accommodate

It's spelled with two 'm'.

Signed-off-by: Ding Junlin <1746193727@qq.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Reviewed-by: Paul E. McKenney <paulmck@kernel.org>
Link: https://patch.msgid.link/tencent_BAB26179A92C5CE28657C0451540E6EE4B05@qq.com
---
 tools/testing/selftests/rseq/rseq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c
index be0d0a9..1cd6339 100644
--- a/tools/testing/selftests/rseq/rseq.c
+++ b/tools/testing/selftests/rseq/rseq.c
@@ -73,7 +73,7 @@ static int rseq_ownership;
 #define ORIG_RSEQ_ALLOC_SIZE		32
 
 /*
- * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an
+ * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an
  * rseq registration that is larger than the current rseq ABI.
  */
 union rseq_tls {

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

end of thread, other threads:[~2026-07-05 20:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-02  8:23 [PATCH] selftests/rseq: Fix spelling of accommodate Old-Ding
2026-07-02 22:12 ` Thomas Gleixner
2026-07-05 15:47 ` [PATCH v2] " Ding Junlin
2026-07-05 16:39   ` Paul E. McKenney
2026-07-05 20:21   ` [tip: core/rseq] " tip-bot2 for Ding Junlin
  -- strict thread matches above, loose matches on Subject: below --
2026-07-01 12:43 [PATCH] " Old-Ding

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.