[PATCH] remove set_wmb - doc update

This patch removes the reference to set_wmb from memory-barriers.txt
since it shouldn't be used.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Steven Rostedt and committed by Linus Torvalds f92213ba bb129994

+2 -3
+2 -3
Documentation/memory-barriers.txt
··· 1015 There are some more advanced barrier functions: 1016 1017 (*) set_mb(var, value) 1018 - (*) set_wmb(var, value) 1019 1020 - These assign the value to the variable and then insert at least a write 1021 - barrier after it, depending on the function. They aren't guaranteed to 1022 insert anything more than a compiler barrier in a UP compilation. 1023 1024
··· 1015 There are some more advanced barrier functions: 1016 1017 (*) set_mb(var, value) 1018 1019 + This assigns the value to the variable and then inserts at least a write 1020 + barrier after it, depending on the function. It isn't guaranteed to 1021 insert anything more than a compiler barrier in a UP compilation. 1022 1023