mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-23 01:37:44 +00:00
schedule: add full context switch support
this patch added full context switch support for scheduling, it make sure each VCPU has its own stack, and added host_sp field in struct sched_object to record host stack pointer for each switch out object. Arch related function arch_switch_to is added for context switch. To benefit debugging, a name[] field is also added into struct sched_object. Tracked-On: #2394 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com> Acked-by: Xu, Anthony <anthony.xu@intel.com>
This commit is contained in:
@@ -258,6 +258,8 @@ struct acrn_vcpu_arch {
|
||||
|
||||
struct acrn_vm;
|
||||
struct acrn_vcpu {
|
||||
uint8_t stack[CONFIG_STACK_SIZE] __aligned(16);
|
||||
|
||||
/* Architecture specific definitions for this VCPU */
|
||||
struct acrn_vcpu_arch arch;
|
||||
uint16_t pcpu_id; /* Physical CPU ID of this VCPU */
|
||||
|
@@ -14,7 +14,9 @@ struct sched_object;
|
||||
typedef void (*run_thread_t)(struct sched_object *obj);
|
||||
typedef void (*prepare_switch_t)(struct sched_object *obj);
|
||||
struct sched_object {
|
||||
char name[16];
|
||||
struct list_head run_list;
|
||||
uint64_t host_sp;
|
||||
run_thread_t thread;
|
||||
prepare_switch_t prepare_switch_out;
|
||||
prepare_switch_t prepare_switch_in;
|
||||
@@ -46,5 +48,8 @@ void make_pcpu_offline(uint16_t pcpu_id);
|
||||
int32_t need_offline(uint16_t pcpu_id);
|
||||
|
||||
void schedule(void);
|
||||
void run_sched_thread(struct sched_object *obj);
|
||||
|
||||
void arch_switch_to(struct sched_object *prev, struct sched_object *next);
|
||||
#endif /* SCHEDULE_H */
|
||||
|
||||
|
Reference in New Issue
Block a user