netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 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; 6+ 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] 6+ messages in thread

* 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; 6+ 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] 6+ messages in thread

* [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt.
  2009-03-30  9:02 [PATCH 0/3] Trivial doc fixes for RCU (v3) Jesper Dangaard Brouer
@ 2009-03-30  9:03 ` Jesper Dangaard Brouer
  2009-03-30 16:59   ` Jarek Poplawski
  0 siblings, 1 reply; 6+ messages in thread
From: Jesper Dangaard Brouer @ 2009-03-30  9:03 UTC (permalink / raw)
  To: David S. Miller; +Cc: Paul E. McKenney, netdev

Trival spelling fixes in RCU/rculist_nulls.txt.

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 related	[flat|nested] 6+ messages in thread

* Re: [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt.
  2009-03-30  9:03 ` [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt Jesper Dangaard Brouer
@ 2009-03-30 16:59   ` Jarek Poplawski
  2009-03-30 19:59     ` Jesper Dangaard Brouer
  0 siblings, 1 reply; 6+ messages in thread
From: Jarek Poplawski @ 2009-03-30 16:59 UTC (permalink / raw)
  To: Jesper Dangaard Brouer; +Cc: David S. Miller, Paul E. McKenney, netdev

Jesper Dangaard Brouer wrote, On 03/30/2009 11:03 AM:

> Trival spelling fixes in RCU/rculist_nulls.txt.
> 
> 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,


"by way":)
 +the beginning. If the object was moved to the same chain,

Jarek P.

>  then the reader doesnt care : It might eventually
>  scan the list again without harm.
>  
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 



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

* Re: [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt.
  2009-03-30 16:59   ` Jarek Poplawski
@ 2009-03-30 19:59     ` Jesper Dangaard Brouer
  2009-03-30 20:10       ` Eric Dumazet
  0 siblings, 1 reply; 6+ messages in thread
From: Jesper Dangaard Brouer @ 2009-03-30 19:59 UTC (permalink / raw)
  To: Jarek Poplawski
  Cc: Jesper Dangaard Brouer, David S. Miller, Paul E. McKenney, netdev

On Mon, 30 Mar 2009, Jarek Poplawski wrote:

> Jesper Dangaard Brouer wrote, On 03/30/2009 11:03 AM:
>
>> Trival spelling fixes in RCU/rculist_nulls.txt.
>>
>>  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,
>
>
> "by way":)
> +the beginning. If the object was moved to the same chain,

*LOL* this was suppose to be a simple trivial insignificant fix, but you 
are right there is _also_ missing a "the" in the sentence ;-).

Cheers,
   Jesper Brouer

--
-------------------------------------------------------------------
MSc. Master of Computer Science
Dept. of Computer Science, University of Copenhagen
Author of http://www.adsl-optimizer.dk
-------------------------------------------------------------------

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

* Re: [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt.
  2009-03-30 19:59     ` Jesper Dangaard Brouer
@ 2009-03-30 20:10       ` Eric Dumazet
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Dumazet @ 2009-03-30 20:10 UTC (permalink / raw)
  To: Jesper Dangaard Brouer
  Cc: Jarek Poplawski, Jesper Dangaard Brouer, David S. Miller,
	Paul E. McKenney, netdev

Jesper Dangaard Brouer a écrit :
> On Mon, 30 Mar 2009, Jarek Poplawski wrote:
> 
>> Jesper Dangaard Brouer wrote, On 03/30/2009 11:03 AM:
>>
>>> Trival spelling fixes in RCU/rculist_nulls.txt.
>>>
>>>  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,
>>
>>
>> "by way":)
>> +the beginning. If the object was moved to the same chain,
> 
> *LOL* this was suppose to be a simple trivial insignificant fix, but you
> are right there is _also_ missing a "the" in the sentence ;-).
> 


RCU is complex, and english too, at last for me ...

I am very surprised you found so few errors in this file, that mixes these two parts :)



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

end of thread, other threads:[~2009-03-30 20:10 UTC | newest]

Thread overview: 6+ 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:03 ` [PATCH 3/3] Doc: Fix spelling in RCU/rculist_nulls.txt Jesper Dangaard Brouer
2009-03-30 16:59   ` Jarek Poplawski
2009-03-30 19:59     ` Jesper Dangaard Brouer
2009-03-30 20:10       ` Eric Dumazet

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