mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-23 09:47:44 +00:00
HV: rename split-lock emulation APIs
Because the emulation code is for both split-lock and uc-lock, Changed these API names: vcpu_kick_splitlock_emulation() -> vcpu_kick_lock_instr_emulation() vcpu_complete_splitlock_emulation() -> vcpu_complete_lock_instr_emulation() emulate_splitlock() -> emulate_lock_instr() Tracked-On: #6299 Signed-off-by: Tao Yuhong <yuhong.tao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
#ifndef SPLITLOCK_H_
|
||||
#define SPLITLOCK_H_
|
||||
|
||||
void vcpu_kick_splitlock_emulation(struct acrn_vcpu *cur_vcpu);
|
||||
void vcpu_complete_splitlock_emulation(struct acrn_vcpu *cur_vcpu);
|
||||
int32_t emulate_splitlock(struct acrn_vcpu *vcpu, uint32_t exception_vector, bool *queue_exception);
|
||||
void vcpu_kick_lock_instr_emulation(struct acrn_vcpu *cur_vcpu);
|
||||
void vcpu_complete_lock_instr_emulation(struct acrn_vcpu *cur_vcpu);
|
||||
int32_t emulate_lock_instr(struct acrn_vcpu *vcpu, uint32_t exception_vector, bool *queue_exception);
|
||||
|
||||
#endif /* SPLITLOCK_H_ */
|
||||
|
Reference in New Issue
Block a user