target-i386: Change do_smm_enter() argument to X86CPU
Prepares for log_cpu_state_mask() changing argument to CPUState. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
ca4c810aab
commit
518e9d7d48
@ -331,7 +331,7 @@ int cpu_exec(CPUArchState *env)
|
|||||||
cpu_svm_check_intercept_param(env, SVM_EXIT_SMI,
|
cpu_svm_check_intercept_param(env, SVM_EXIT_SMI,
|
||||||
0);
|
0);
|
||||||
cpu->interrupt_request &= ~CPU_INTERRUPT_SMI;
|
cpu->interrupt_request &= ~CPU_INTERRUPT_SMI;
|
||||||
do_smm_enter(env);
|
do_smm_enter(x86_env_get_cpu(env));
|
||||||
next_tb = 0;
|
next_tb = 0;
|
||||||
} else if ((interrupt_request & CPU_INTERRUPT_NMI) &&
|
} else if ((interrupt_request & CPU_INTERRUPT_NMI) &&
|
||||||
!(env->hflags2 & HF2_NMI_MASK)) {
|
!(env->hflags2 & HF2_NMI_MASK)) {
|
||||||
|
@ -1220,7 +1220,7 @@ void cpu_vmexit(CPUX86State *nenv, uint32_t exit_code, uint64_t exit_info_1);
|
|||||||
/* seg_helper.c */
|
/* seg_helper.c */
|
||||||
void do_interrupt_x86_hardirq(CPUX86State *env, int intno, int is_hw);
|
void do_interrupt_x86_hardirq(CPUX86State *env, int intno, int is_hw);
|
||||||
|
|
||||||
void do_smm_enter(CPUX86State *env1);
|
void do_smm_enter(X86CPU *cpu);
|
||||||
|
|
||||||
void cpu_report_tpr_access(CPUX86State *env, TPRAccess access);
|
void cpu_report_tpr_access(CPUX86State *env, TPRAccess access);
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#if defined(CONFIG_USER_ONLY)
|
#if defined(CONFIG_USER_ONLY)
|
||||||
|
|
||||||
void do_smm_enter(CPUX86State *env)
|
void do_smm_enter(X86CPU *cpu)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,8 +40,9 @@ void helper_rsm(CPUX86State *env)
|
|||||||
#define SMM_REVISION_ID 0x00020000
|
#define SMM_REVISION_ID 0x00020000
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void do_smm_enter(CPUX86State *env)
|
void do_smm_enter(X86CPU *cpu)
|
||||||
{
|
{
|
||||||
|
CPUX86State *env = &cpu->env;
|
||||||
target_ulong sm_state;
|
target_ulong sm_state;
|
||||||
SegmentCache *dt;
|
SegmentCache *dt;
|
||||||
int i, offset;
|
int i, offset;
|
||||||
|
Loading…
Reference in New Issue
Block a user