The patch titled fix typo in memory barrier docs has been added to the -mm tree. Its filename is fix-typo-in-memory-barrier-docs.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fix typo in memory barrier docs From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> 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 <blaisorblade@xxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- Documentation/memory-barriers.txt | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN Documentation/memory-barriers.txt~fix-typo-in-memory-barrier-docs Documentation/memory-barriers.txt --- a/Documentation/memory-barriers.txt~fix-typo-in-memory-barrier-docs +++ a/Documentation/memory-barriers.txt @@ -1898,7 +1898,7 @@ queue before processing any further requ smp_wmb(); <A:modify v=2> <C:busy> <C:queue v=2> - p = &b; q = p; + p = &v; q = p; <D:request p> <B:modify p=&v> <D:commit p=&v> <D:read p> _ Patches currently in -mm which might be from blaisorblade@xxxxxxxx are uml-mode_tt-is-bust.patch fix-typo-in-memory-barrier-docs.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html