瀏覽代碼

docs: fix references to docs/devel/atomics.rst

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>
Stefano Garzarella 4 年之前
父節點
當前提交
29f2316761
共有 4 個文件被更改,包括 5 次插入5 次删除
  1. 1 1
      docs/devel/lockcnt.txt
  2. 2 2
      include/qemu/atomic.h
  3. 1 1
      include/qemu/atomic128.h
  4. 1 1
      tcg/README

+ 1 - 1
docs/devel/lockcnt.txt

@@ -145,7 +145,7 @@ can also be more efficient in two ways:
 - on some platforms, one can implement QemuLockCnt to hold the lock
 - 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
   and the mutex in a single word, making the fast path no more expensive
   than simply managing a counter using atomic operations (see
   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.
   the data structure is expected to be rare.
 
 
 
 

+ 2 - 2
include/qemu/atomic.h

@@ -8,7 +8,7 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * 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 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.
  * atomic primitive is meant to provide.
  */
  */
 
 
@@ -432,7 +432,7 @@
  * sequentially consistent operations.
  * sequentially consistent operations.
  *
  *
  * As long as they are used as paired operations they are safe to
  * 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
 #ifndef qatomic_mb_read

+ 1 - 1
include/qemu/atomic128.h

@@ -6,7 +6,7 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * 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 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.
  * atomic primitive is meant to provide.
  */
  */
 
 

+ 1 - 1
tcg/README

@@ -461,7 +461,7 @@ when MTTCG is enabled.
 The guest translators should generate this opcode for all guest instructions
 The guest translators should generate this opcode for all guest instructions
 which have ordering side effects.
 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
 ********* 64-bit guest on 32-bit host support