Commit edd4070f5d943b35e3e1a2e5e95e4a2eebb11d53

Authored by Jesper Dangaard Brouer
Committed by David S. Miller
1 parent 3943ac5d99

Doc: Fix spelling in RCU/rculist_nulls.txt.

Doc: Fix spelling in RCU/rculist_nulls.txt.

Trival spelling fixes in RCU/rculist_nulls.txt.

Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
Tested-by: Jarek Poplawski <jarkao2@gmail.com;->
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

Documentation/RCU/rculist_nulls.txt
... ... @@ -21,7 +21,7 @@
21 21 /*
22 22 * Because a writer could delete object, and a writer could
23 23 * reuse these object before the RCU grace period, we
24   - * must check key after geting the reference on object
  24 + * must check key after getting the reference on object
25 25 */
26 26 if (obj->key != key) { // not the object we expected
27 27 put_ref(obj);
... ... @@ -117,7 +117,7 @@
117 117 to another chain) checking the final 'nulls' value if
118 118 the lookup met the end of chain. If final 'nulls' value
119 119 is not the slot number, then we must restart the lookup at
120   -the begining. If the object was moved to same chain,
  120 +the beginning. If the object was moved to the same chain,
121 121 then the reader doesnt care : It might eventually
122 122 scan the list again without harm.
123 123