docs: fix references to docs/devel/atomics.rst
authorStefano Garzarella <sgarzare@redhat.com>
Mon, 17 May 2021 15:16:59 +0000 (17:16 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 2 Jun 2021 04:51:09 +0000 (06:51 +0200)
Commit 15e8699f00 ("atomics: convert to reStructuredText") converted
docs/devel/atomics.txt to docs/devel/atomics.rst.

We still have several references to the old file, so let's fix them
with the following command:

  sed -i s/atomics.txt/atomics.rst/ $(git grep -l docs/devel/atomics.txt)

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210517151702.109066-3-sgarzare@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
docs/devel/lockcnt.txt
include/qemu/atomic.h
include/qemu/atomic128.h
tcg/README

index 2d85462fe3749e802ef7473d485604bd8059272c..a3fb3bc5d8dadfdb0853a1c4dac1d3e9fc452d90 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/devel/atomics.txt).  This can be very helpful if concurrent access to
+  docs/devel/atomics.rst).  This can be very helpful if concurrent access to
   the data structure is expected to be rare.
 
 
index 8f4b3a80fbd7304b310640c09fdd88fb14c2554e..3ccf84fd46d51a1365783c86b965f566741f8a88 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/devel/atomics.txt for discussion about the guarantees each
+ * See docs/devel/atomics.rst 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/devel/atomics.txt for more discussion.
+ * use. See docs/devel/atomics.rst for more discussion.
  */
 
 #ifndef qatomic_mb_read
index ad2bcf45b4f8c7c1ed18ae9b5f858c6861dc6454..adb9a1a260b68bd6b0154f06ce27b67232cac0c3 100644 (file)
@@ -6,7 +6,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/devel/atomics.txt for discussion about the guarantees each
+ * See docs/devel/atomics.rst for discussion about the guarantees each
  * atomic primitive is meant to provide.
  */
 
index 0cf9e2727c174f1312e67bfe44b395d9a92c9493..8510d823e35502c57c45be51f36a9dcad4431776 100644 (file)
@@ -461,7 +461,7 @@ when MTTCG is enabled.
 The guest translators should generate this opcode for all guest instructions
 which have ordering side effects.
 
-Please see docs/devel/atomics.txt for more information on memory barriers.
+Please see docs/devel/atomics.rst for more information on memory barriers.
 
 ********* 64-bit guest on 32-bit host support