From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org
Cc: Stefan Hajnoczi <stefanha@redhat.com>, Sean Wei <me@sean.taipei>
Subject: [PULL 5/9] treewide: fix paths for relocated files in comments
Date: Wed, 2 Jul 2025 19:02:00 +0200 [thread overview]
Message-ID: <20250702170206.212303-6-thuth@redhat.com> (raw)
In-Reply-To: <20250702170206.212303-1-thuth@redhat.com>
From: Sean Wei <me@sean.taipei>
After the docs directory restructuring, several comments
refer to paths that no longer exist.
Replace these references to the current file locations
so readers can find the correct files.
Related commits
---------------
189c099f75f (Jul 2021)
docs: collect the disparate device emulation docs into one section
Rename docs/system/{ => devices}/nvme.rst
5f4c96b779f (Feb 2023)
docs/system/loongarch: update loongson3.rst and rename it to virt.rst
Rename docs/system/loongarch/{loongson3.rst => virt.rst}
fe0007f3c1d (Sep 2023)
exec: Rename cpu.c -> cpu-target.c
Rename cpus-common.c => cpu-common.c
42fa9665e59 (Apr 2025)
exec: Restrict 'cpu_ldst.h' to accel/tcg/
Rename include/{exec/cpu_ldst.h => accel/tcg/cpu-ldst.h}
Signed-off-by: Sean Wei <me@sean.taipei>
Message-ID: <20250616.qemu.relocated.06@sean.taipei>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
docs/spin/tcg-exclusive.promela | 4 ++--
hw/nvme/ctrl.c | 2 +-
target/arm/cpu.c | 2 +-
target/loongarch/README | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/spin/tcg-exclusive.promela b/docs/spin/tcg-exclusive.promela
index c91cfca9f73..1d03af850b7 100644
--- a/docs/spin/tcg-exclusive.promela
+++ b/docs/spin/tcg-exclusive.promela
@@ -1,6 +1,6 @@
/*
* This model describes the implementation of exclusive sections in
- * cpus-common.c (start_exclusive, end_exclusive, cpu_exec_start,
+ * cpu-common.c (start_exclusive, end_exclusive, cpu_exec_start,
* cpu_exec_end).
*
* Author: Paolo Bonzini <pbonzini@redhat.com>
@@ -65,7 +65,7 @@
}
#define COND_BROADCAST(c) c++
-// this is the logic from cpus-common.c
+// this is the logic from cpu-common.c
mutex_t mutex;
cond_t exclusive_cond;
diff --git a/hw/nvme/ctrl.c b/hw/nvme/ctrl.c
index 220002830de..e764ec7683a 100644
--- a/hw/nvme/ctrl.c
+++ b/hw/nvme/ctrl.c
@@ -22,7 +22,7 @@
*
* Usage
* -----
- * See docs/system/nvme.rst for extensive documentation.
+ * See docs/system/devices/nvme.rst for extensive documentation.
*
* Add options:
* -drive file=<file>,if=none,id=<drive_id>
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index a59a5b57af6..ebac86f70d3 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -2644,7 +2644,7 @@ static const char *arm_gdb_get_core_xml_file(CPUState *cs)
* linux syscall TIF_TAGGED_ADDR setting, not TBI in general.
*
* There should be a better place to put this, but we need this in
- * include/exec/cpu_ldst.h, and not some place linux-user specific.
+ * include/accel/tcg/cpu-ldst.h, and not some place linux-user specific.
*
* Note that arm-*-user will never set tagged_addr_enable.
*/
diff --git a/target/loongarch/README b/target/loongarch/README
index 0b9dc0d40a0..1ffd3422d22 100644
--- a/target/loongarch/README
+++ b/target/loongarch/README
@@ -11,7 +11,7 @@
- System emulation
- You can reference docs/system/loongarch/loongson3.rst to get the information about system emulation of LoongArch.
+ You can reference docs/system/loongarch/virt.rst to get the information about system emulation of LoongArch.
- Linux-user emulation
--
2.50.0
next prev parent reply other threads:[~2025-07-02 17:05 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-02 17:01 [PULL 0/9] Various fixes for MAINTAINERS, s390x and tests Thomas Huth
2025-07-02 17:01 ` [PULL 1/9] MAINTAINERS: update docs file extensions (.txt -> .rst) Thomas Huth
2025-07-02 17:01 ` [PULL 2/9] MAINTAINERS: fix vendor capitalization (Vmware -> VMware) Thomas Huth
2025-07-02 17:01 ` [PULL 3/9] MAINTAINERS: fix VMware filename typo (vwm -> vmw) Thomas Huth
2025-07-02 17:01 ` [PULL 4/9] treewide: update docs file extensions (.txt -> .rst) in comments Thomas Huth
2025-07-02 17:02 ` Thomas Huth [this message]
2025-07-02 17:02 ` [PULL 6/9] MAINTAINERS: fix paths for relocated files Thomas Huth
2025-07-02 17:02 ` [PULL 7/9] target/s390x: set has_deprecated_props flag Thomas Huth
2025-07-02 17:02 ` [PULL 8/9] target/s390x: A fix for the trouble with tribles Thomas Huth
2025-07-02 17:02 ` [PULL 9/9] tests/functional/test_aarch64_sbsaref_freebsd: Fix the URL of the ISO image Thomas Huth
2025-07-03 13:37 ` [PULL 0/9] Various fixes for MAINTAINERS, s390x and tests Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250702170206.212303-6-thuth@redhat.com \
--to=thuth@redhat.com \
--cc=me@sean.taipei \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).