]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
docs: fix broken paths to docs/devel/atomics.txt
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Fri, 28 Jul 2017 22:46:04 +0000 (19:46 -0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 31 Jul 2017 10:12:47 +0000 (13:12 +0300)
With the move of some docs/ to docs/devel/ on ac06724a71,
a couple of references were not updated.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
docs/devel/lockcnt.txt
include/qemu/atomic.h
tcg/README

index 2a79b3205b47eb43175e5d3169e2b07259441787..7c099bc6c8b5b473c2feff25532d28c97ae06d81 100644 (file)
@@ -145,7 +145,7 @@ can also be more efficient in two ways:
 - on some platforms, one can implement QemuLockCnt to hold the lock
   and the mutex in a single word, making the fast path no more expensive
   than simply managing a counter using atomic operations (see
-  docs/atomics.txt).  This can be very helpful if concurrent access to
+  docs/devel/atomics.txt).  This can be very helpful if concurrent access to
   the data structure is expected to be rare.
 
 
index e07c7972aba43ec6272812f52a991d1d85888adf..b6b62fb7710979297596624278816e9af0d9f40c 100644 (file)
@@ -8,7 +8,7 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  *
- * See docs/atomics.txt for discussion about the guarantees each
+ * See docs/devel/atomics.txt for discussion about the guarantees each
  * atomic primitive is meant to provide.
  */
 
  * sequentially consistent operations.
  *
  * As long as they are used as paired operations they are safe to
- * use. See docs/atomic.txt for more discussion.
+ * use. See docs/devel/atomics.txt for more discussion.
  */
 
 #ifndef atomic_mb_read
index bf49e8242b541443d98ec1124446ce8f14ac003a..03bfb6acd41be8e9f7a74059a678494ffd2fffc6 100644 (file)
@@ -446,7 +446,7 @@ when MTTCG is enabled.
 The guest translators should generate this opcode for all guest instructions
 which have ordering side effects.
 
-Please see docs/atomics.txt for more information on memory barriers.
+Please see docs/devel/atomics.txt for more information on memory barriers.
 
 ********* 64-bit guest on 32-bit host support