From: Pranith Kumar Date: Tue, 18 Oct 2016 04:54:03 +0000 (-0400) Subject: Documentation/RCU: Fix minor typo X-Git-Tag: v4.10-rc1~195^2^2~1 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=8cf503d3378d641f8106c1803dc68cab88cd8fca;p=linux.git Documentation/RCU: Fix minor typo deference should actually be dereference. Signed-off-by: Pranith Kumar Reviewed-by: Josh Triplett Signed-off-by: Paul E. McKenney --- diff --git a/Documentation/RCU/whatisRCU.txt b/Documentation/RCU/whatisRCU.txt index 204422719197..5cbd8b2395b8 100644 --- a/Documentation/RCU/whatisRCU.txt +++ b/Documentation/RCU/whatisRCU.txt @@ -237,7 +237,7 @@ rcu_dereference() The reader uses rcu_dereference() to fetch an RCU-protected pointer, which returns a value that may then be safely - dereferenced. Note that rcu_deference() does not actually + dereferenced. Note that rcu_dereference() does not actually dereference the pointer, instead, it protects the pointer for later dereferencing. It also executes any needed memory-barrier instructions for a given CPU architecture. Currently, only Alpha