From: Paolo 'Blaisorblade' Giarrusso Date: Fri, 20 Oct 2006 06:28:19 +0000 (-0700) Subject: [PATCH] fix typo in memory barrier docs X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3fda982c501c6a8baa3fa79aaea1bfa7bb2a5def;p=linux-beck.git [PATCH] fix typo in memory barrier docs Fix cut'n'paste typo - &a and &b are used in other examples, in this one the doc uses &u and &v. Signed-off-by: Paolo 'Blaisorblade' Giarrusso Acked-by: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 994355b0cd19..7f790f66ec68 100644 --- a/Documentation/memory-barriers.txt +++ b/Documentation/memory-barriers.txt @@ -1898,7 +1898,7 @@ queue before processing any further requests: smp_wmb(); - p = &b; q = p; + p = &v; q = p;