From: Zhao Liu <zhao1.liu@intel.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: qemu-devel@nongnu.org, Cameron Esfahani <dirty@apple.com>,
Roman Bolshakov <rbolshakov@ddn.com>
Subject: Re: [PATCH 3/3] target/i386/hvf: Rename 'X86CPU *x86_cpu' variable as 'cpu'
Date: Fri, 20 Oct 2023 23:15:49 +0800 [thread overview]
Message-ID: <ZTKZpZeiuKGIxUDT@intel.com> (raw)
In-Reply-To: <20231020111136.44401-4-philmd@linaro.org>
On Fri, Oct 20, 2023 at 01:11:36PM +0200, Philippe Mathieu-Daudé wrote:
> Date: Fri, 20 Oct 2023 13:11:36 +0200
> From: Philippe Mathieu-Daudé <philmd@linaro.org>
> Subject: [PATCH 3/3] target/i386/hvf: Rename 'X86CPU *x86_cpu' variable as
> 'cpu'
> X-Mailer: git-send-email 2.41.0
>
> Follow the naming used by other files in target/i386/.
>
> No functional changes.
>
> Suggested-by: Zhao Liu <zhao1.liu@intel.com>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> target/i386/hvf/x86_emu.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
Thanks!
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
>
> diff --git a/target/i386/hvf/x86_emu.c b/target/i386/hvf/x86_emu.c
> index 5b82e84778..3a3f0a50d0 100644
> --- a/target/i386/hvf/x86_emu.c
> +++ b/target/i386/hvf/x86_emu.c
> @@ -665,7 +665,7 @@ static void exec_lods(CPUX86State *env, struct x86_decode *decode)
>
> void simulate_rdmsr(CPUX86State *env)
> {
> - X86CPU *x86_cpu = env_archcpu(env);
> + X86CPU *cpu = env_archcpu(env);
> CPUState *cs = env_cpu(env);
> uint32_t msr = ECX(env);
> uint64_t val = 0;
> @@ -675,10 +675,10 @@ void simulate_rdmsr(CPUX86State *env)
> val = rdtscp() + rvmcs(cs->accel->fd, VMCS_TSC_OFFSET);
> break;
> case MSR_IA32_APICBASE:
> - val = cpu_get_apic_base(x86_cpu->apic_state);
> + val = cpu_get_apic_base(cpu->apic_state);
> break;
> case MSR_IA32_UCODE_REV:
> - val = x86_cpu->ucode_rev;
> + val = cpu->ucode_rev;
> break;
> case MSR_EFER:
> val = rvmcs(cs->accel->fd, VMCS_GUEST_IA32_EFER);
> @@ -766,7 +766,7 @@ static void exec_rdmsr(CPUX86State *env, struct x86_decode *decode)
>
> void simulate_wrmsr(CPUX86State *env)
> {
> - X86CPU *x86_cpu = env_archcpu(env);
> + X86CPU *cpu = env_archcpu(env);
> CPUState *cs = env_cpu(env);
> uint32_t msr = ECX(env);
> uint64_t data = ((uint64_t)EDX(env) << 32) | EAX(env);
> @@ -775,7 +775,7 @@ void simulate_wrmsr(CPUX86State *env)
> case MSR_IA32_TSC:
> break;
> case MSR_IA32_APICBASE:
> - cpu_set_apic_base(x86_cpu->apic_state, data);
> + cpu_set_apic_base(cpu->apic_state, data);
> break;
> case MSR_FSBASE:
> wvmcs(cs->accel->fd, VMCS_GUEST_FS_BASE, data);
> @@ -1419,8 +1419,8 @@ static void init_cmd_handler()
>
> void load_regs(CPUState *cs)
> {
> - X86CPU *x86_cpu = X86_CPU(cs);
> - CPUX86State *env = &x86_cpu->env;
> + X86CPU *cpu = X86_CPU(cs);
> + CPUX86State *env = &cpu->env;
>
> int i = 0;
> RRX(env, R_EAX) = rreg(cs->accel->fd, HV_X86_RAX);
> @@ -1442,8 +1442,8 @@ void load_regs(CPUState *cs)
>
> void store_regs(CPUState *cs)
> {
> - X86CPU *x86_cpu = X86_CPU(cs);
> - CPUX86State *env = &x86_cpu->env;
> + X86CPU *cpu = X86_CPU(cs);
> + CPUX86State *env = &cpu->env;
>
> int i = 0;
> wreg(cs->accel->fd, HV_X86_RAX, RAX(env));
> --
> 2.41.0
>
prev parent reply other threads:[~2023-10-20 15:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-20 11:11 [PATCH 0/3] target/i386/hvf: Style cleanup Philippe Mathieu-Daudé
2023-10-20 11:11 ` [PATCH 1/3] target/i386/hvf: Use CPUState typedef Philippe Mathieu-Daudé
2023-10-20 15:11 ` Zhao Liu
2023-10-20 11:11 ` [PATCH 2/3] target/i386/hvf: Rename 'CPUState *cpu' variable as 'cs' Philippe Mathieu-Daudé
2023-10-20 15:14 ` Zhao Liu
2023-10-20 11:11 ` [PATCH 3/3] target/i386/hvf: Rename 'X86CPU *x86_cpu' variable as 'cpu' Philippe Mathieu-Daudé
2023-10-20 15:15 ` Zhao Liu [this message]
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=ZTKZpZeiuKGIxUDT@intel.com \
--to=zhao1.liu@intel.com \
--cc=dirty@apple.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rbolshakov@ddn.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.