* Re: [PATCH 1/3] Doc: Fix missing whitespaces in RCU documentation.
[not found] ` <20090329215247.27553.67635.stgit@localhost.localdomain>
@ 2009-03-29 22:48 ` Paul E. McKenney
0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2009-03-29 22:48 UTC (permalink / raw)
To: Jesper Dangaard Brouer; +Cc: David Miller, netdev
On Sun, Mar 29, 2009 at 11:52:47PM +0200, Jesper Dangaard Brouer wrote:
> Trivial fix while reading through the RCU docs.
>
> Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
I could have sworn that this was somewhere in the process, but cannot
find it. So...
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
> ---
>
> Documentation/RCU/rcu.txt | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/Documentation/RCU/rcu.txt b/Documentation/RCU/rcu.txt
> index 95821a2..7aa2002 100644
> --- a/Documentation/RCU/rcu.txt
> +++ b/Documentation/RCU/rcu.txt
> @@ -81,7 +81,7 @@ o I hear that RCU needs work in order to support realtime kernels?
> This work is largely completed. Realtime-friendly RCU can be
> enabled via the CONFIG_PREEMPT_RCU kernel configuration parameter.
> However, work is in progress for enabling priority boosting of
> - preempted RCU read-side critical sections.This is needed if you
> + preempted RCU read-side critical sections. This is needed if you
> have CPU-bound realtime threads.
>
> o Where can I find more information on RCU?
>
^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20090329215257.27553.43721.stgit@localhost.localdomain>]
* Re: [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt.
[not found] ` <20090329215257.27553.43721.stgit@localhost.localdomain>
@ 2009-03-29 22:48 ` Paul E. McKenney
0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2009-03-29 22:48 UTC (permalink / raw)
To: Jesper Dangaard Brouer; +Cc: David Miller, netdev
On Sun, Mar 29, 2009 at 11:52:57PM +0200, Jesper Dangaard Brouer wrote:
> Trival spelling fixes in RCU/rculist_nulls.txt.
Good eyes!
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
> ---
>
> Documentation/RCU/rculist_nulls.txt | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/RCU/rculist_nulls.txt b/Documentation/RCU/rculist_nulls.txt
> index 239f542..ba075b2 100644
> --- a/Documentation/RCU/rculist_nulls.txt
> +++ b/Documentation/RCU/rculist_nulls.txt
> @@ -21,7 +21,7 @@ if (obj) {
> /*
> * Because a writer could delete object, and a writer could
> * reuse these object before the RCU grace period, we
> - * must check key after geting the reference on object
> + * must check key after getting the reference on object
> */
> if (obj->key != key) { // not the object we expected
> put_ref(obj);
> @@ -117,7 +117,7 @@ a race (some writer did a delete and/or a move of an object
> to another chain) checking the final 'nulls' value if
> the lookup met the end of chain. If final 'nulls' value
> is not the slot number, then we must restart the lookup at
> -the begining. If the object was moved to same chain,
> +the beginning. If the object was moved to same chain,
> then the reader doesnt care : It might eventually
> scan the list again without harm.
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 0/3] Trivial doc fixes for RCU (v3)
@ 2009-03-30 9:02 Jesper Dangaard Brouer
2009-03-30 9:02 ` [PATCH 1/3] Doc: Fix missing whitespaces in RCU documentation Jesper Dangaard Brouer
0 siblings, 1 reply; 3+ messages in thread
From: Jesper Dangaard Brouer @ 2009-03-30 9:02 UTC (permalink / raw)
To: David S. Miller; +Cc: Paul E. McKenney, netdev
Trivial RCU documentation fixes.
It seems that majordomo eate my mail to the netdev list, as stgit
didn't quote the email adresses correctly. As names which have
characters such as "." in them must be fully surrounded by
double quotes when they appear in email headers. For this
to work with .gitconfig mail aliases the quotes needs to
be escaped.
So let hope the third time is the last, for these trivial patches.
---
Jesper Dangaard Brouer (3):
Doc: Fix spelling in RCU/rculist_nulls.txt.
Doc: Fix wrong API example usage of call_rcu().
Doc: Fix missing whitespaces in RCU documentation.
Documentation/RCU/listRCU.txt | 6 +++---
Documentation/RCU/rcu.txt | 2 +-
Documentation/RCU/rculist_nulls.txt | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
--
Med venlig hilsen / Best regards
Jesper Brouer
ComX Networks A/S
Linux Network developer
Cand. Scient Datalog / MSc.
Author of http://adsl-optimizer.dk
LinkedIn: http://www.linkedin.com/in/brouer
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/3] Doc: Fix missing whitespaces in RCU documentation.
2009-03-30 9:02 [PATCH 0/3] Trivial doc fixes for RCU (v3) Jesper Dangaard Brouer
@ 2009-03-30 9:02 ` Jesper Dangaard Brouer
0 siblings, 0 replies; 3+ messages in thread
From: Jesper Dangaard Brouer @ 2009-03-30 9:02 UTC (permalink / raw)
To: David S. Miller; +Cc: Paul E. McKenney, netdev
Trivial fix while reading through the RCU docs.
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
---
Documentation/RCU/rcu.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation/RCU/rcu.txt b/Documentation/RCU/rcu.txt
index 95821a2..7aa2002 100644
--- a/Documentation/RCU/rcu.txt
+++ b/Documentation/RCU/rcu.txt
@@ -81,7 +81,7 @@ o I hear that RCU needs work in order to support realtime kernels?
This work is largely completed. Realtime-friendly RCU can be
enabled via the CONFIG_PREEMPT_RCU kernel configuration parameter.
However, work is in progress for enabling priority boosting of
- preempted RCU read-side critical sections.This is needed if you
+ preempted RCU read-side critical sections. This is needed if you
have CPU-bound realtime threads.
o Where can I find more information on RCU?
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-03-30 9:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20090329215103.27553.29216.stgit@localhost.localdomain>
[not found] ` <20090329215247.27553.67635.stgit@localhost.localdomain>
2009-03-29 22:48 ` [PATCH 1/3] Doc: Fix missing whitespaces in RCU documentation Paul E. McKenney
[not found] ` <20090329215257.27553.43721.stgit@localhost.localdomain>
2009-03-29 22:48 ` [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt Paul E. McKenney
2009-03-30 9:02 [PATCH 0/3] Trivial doc fixes for RCU (v3) Jesper Dangaard Brouer
2009-03-30 9:02 ` [PATCH 1/3] Doc: Fix missing whitespaces in RCU documentation Jesper Dangaard Brouer
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).