Linux Documentation
 help / color / mirror / Atom feed
* [PATCH v1] doc: RCU: Fix typo
@ 2026-08-27  9:05 Costa Shulyupin
  2026-08-27 16:37 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Costa Shulyupin @ 2026-08-27  9:05 UTC (permalink / raw)
  To: Paul E. McKenney, rcu, linux-doc, linux-kernel, Randy Dunlap,
	Jonathan Corbet

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=true, Size: 1019 bytes --]

strategem -> stratagem.

Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
---
 Documentation/RCU/Design/Requirements/Requirements.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/RCU/Design/Requirements/Requirements.rst b/Documentation/RCU/Design/Requirements/Requirements.rst
index 8101fe6229d5..b10e0484ae13 100644
--- a/Documentation/RCU/Design/Requirements/Requirements.rst
+++ b/Documentation/RCU/Design/Requirements/Requirements.rst
@@ -1442,7 +1442,7 @@ periods:
    corresponding CPU's next scheduling-clock.
 #. CPUs mentioned in the ``nohz_full`` kernel boot parameter can run
    indefinitely in the kernel without scheduling-clock interrupts, which
-   defeats the above need_resched() strategem. RCU will therefore
+   defeats the above need_resched() stratagem. RCU will therefore
    invoke resched_cpu() on any ``nohz_full`` CPUs still holding out
    after 109 milliseconds.
 #. In kernels built with ``CONFIG_RCU_BOOST=y``, if a given task that
-- 
2.55.0


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

* Re: [PATCH v1] doc: RCU: Fix typo
  2026-08-27  9:05 [PATCH v1] doc: RCU: Fix typo Costa Shulyupin
@ 2026-08-27 16:37 ` Randy Dunlap
  2026-08-27 18:06   ` Paul E. McKenney
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2026-08-27 16:37 UTC (permalink / raw)
  To: Costa Shulyupin, Paul E. McKenney, rcu, linux-doc, linux-kernel,
	Jonathan Corbet



On 8/27/26 2:05 AM, Costa Shulyupin wrote:
> strategem -> stratagem.
> 
> Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>

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

> ---
>  Documentation/RCU/Design/Requirements/Requirements.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/RCU/Design/Requirements/Requirements.rst b/Documentation/RCU/Design/Requirements/Requirements.rst
> index 8101fe6229d5..b10e0484ae13 100644
> --- a/Documentation/RCU/Design/Requirements/Requirements.rst
> +++ b/Documentation/RCU/Design/Requirements/Requirements.rst
> @@ -1442,7 +1442,7 @@ periods:
>     corresponding CPU's next scheduling-clock.
>  #. CPUs mentioned in the ``nohz_full`` kernel boot parameter can run
>     indefinitely in the kernel without scheduling-clock interrupts, which
> -   defeats the above need_resched() strategem. RCU will therefore
> +   defeats the above need_resched() stratagem. RCU will therefore
>     invoke resched_cpu() on any ``nohz_full`` CPUs still holding out
>     after 109 milliseconds.
>  #. In kernels built with ``CONFIG_RCU_BOOST=y``, if a given task that

-- 
~Randy

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

* Re: [PATCH v1] doc: RCU: Fix typo
  2026-08-27 16:37 ` Randy Dunlap
@ 2026-08-27 18:06   ` Paul E. McKenney
  0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2026-08-27 18:06 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Costa Shulyupin, rcu, linux-doc, linux-kernel, Jonathan Corbet

On Thu, Aug 27, 2026 at 09:37:11AM -0700, Randy Dunlap wrote:
> 
> 
> On 8/27/26 2:05 AM, Costa Shulyupin wrote:
> > strategem -> stratagem.
> > 
> > Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
> 
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> Thanks.

Hand-applied, thank you both!

Costa, your patch's headers say "Content-Type: text/plain; charset=true"
which "git am" does not like at all.  I hand-applied this one because
it is quite simple, but please fix your email setup.  If this patch had
been at all complex, I would not have risked hand-applying it.

This line is normally:  "Content-Type: text/plain; charset=utf-8"

							Thanx, Paul

> > ---
> >  Documentation/RCU/Design/Requirements/Requirements.rst | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/Documentation/RCU/Design/Requirements/Requirements.rst b/Documentation/RCU/Design/Requirements/Requirements.rst
> > index 8101fe6229d5..b10e0484ae13 100644
> > --- a/Documentation/RCU/Design/Requirements/Requirements.rst
> > +++ b/Documentation/RCU/Design/Requirements/Requirements.rst
> > @@ -1442,7 +1442,7 @@ periods:
> >     corresponding CPU's next scheduling-clock.
> >  #. CPUs mentioned in the ``nohz_full`` kernel boot parameter can run
> >     indefinitely in the kernel without scheduling-clock interrupts, which
> > -   defeats the above need_resched() strategem. RCU will therefore
> > +   defeats the above need_resched() stratagem. RCU will therefore
> >     invoke resched_cpu() on any ``nohz_full`` CPUs still holding out
> >     after 109 milliseconds.
> >  #. In kernels built with ``CONFIG_RCU_BOOST=y``, if a given task that
> 
> -- 
> ~Randy

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

end of thread, other threads:[~2026-08-27 18:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-27  9:05 [PATCH v1] doc: RCU: Fix typo Costa Shulyupin
2026-08-27 16:37 ` Randy Dunlap
2026-08-27 18:06   ` Paul E. McKenney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox