[PATCH] target/i386/tcg/helper-tcg: fix file references in comments

Fiona Ebner posted 1 patch 5 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20250526114447.1243840-1-f.ebner@proxmox.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <eduardo@habkost.net>
target/i386/tcg/helper-tcg.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] target/i386/tcg/helper-tcg: fix file references in comments
Posted by Fiona Ebner 5 months, 3 weeks ago
Commit 32cad1ffb8 ("include: Rename sysemu/ -> system/") renamed
target/i386/tcg/sysemu => target/i386/tcg/system.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
---
 target/i386/tcg/helper-tcg.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/target/i386/tcg/helper-tcg.h b/target/i386/tcg/helper-tcg.h
index 6b3f19855f..be011b06b7 100644
--- a/target/i386/tcg/helper-tcg.h
+++ b/target/i386/tcg/helper-tcg.h
@@ -97,7 +97,7 @@ static inline unsigned int compute_pf(uint8_t x)
 /* misc_helper.c */
 void cpu_load_eflags(CPUX86State *env, int eflags, int update_mask);
 
-/* sysemu/svm_helper.c */
+/* system/svm_helper.c */
 #ifndef CONFIG_USER_ONLY
 G_NORETURN void cpu_vmexit(CPUX86State *nenv, uint32_t exit_code,
                            uint64_t exit_info_1, uintptr_t retaddr);
@@ -115,7 +115,7 @@ int exception_has_error_code(int intno);
 /* smm_helper.c */
 void do_smm_enter(X86CPU *cpu);
 
-/* sysemu/bpt_helper.c */
+/* system/bpt_helper.c */
 bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update);
 
 /*
-- 
2.39.5
Re: [PATCH] target/i386/tcg/helper-tcg: fix file references in comments
Posted by Paolo Bonzini 5 months, 3 weeks ago
Queued, thanks.

Paolo
Re: [PATCH] target/i386/tcg/helper-tcg: fix file references in comments
Posted by Philippe Mathieu-Daudé 5 months, 3 weeks ago
On 26/5/25 13:44, Fiona Ebner wrote:
> Commit 32cad1ffb8 ("include: Rename sysemu/ -> system/") renamed
> target/i386/tcg/sysemu => target/i386/tcg/system.
> 
> Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
> ---
>   target/i386/tcg/helper-tcg.h | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)

Thanks!

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>