From cc61ae7ce83441eb3447531c4c6a0a48ed2462fb Mon Sep 17 00:00:00 2001 From: Jason Chen CJ Date: Tue, 5 Nov 2019 18:24:49 +0800 Subject: [PATCH] doc: schedule_vcpu was removed schedule_vcpu should be replaced by launch_vcpu Tracked-On: #3963 Signed-off-by: Jason Chen CJ --- doc/developer-guides/hld/hv-cpu-virt.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/developer-guides/hld/hv-cpu-virt.rst b/doc/developer-guides/hld/hv-cpu-virt.rst index f4d9cd9c5..2995080fe 100644 --- a/doc/developer-guides/hld/hv-cpu-virt.rst +++ b/doc/developer-guides/hld/hv-cpu-virt.rst @@ -219,8 +219,8 @@ Some example scenario flows are shown here: ACRN vCPU scheduling scenarios -- **During starting a VM**: after create a vCPU, BSP calls *schedule_vcpu* - through *start_vm*, AP calls *schedule_vcpu* through vlapic +- **During starting a VM**: after create a vCPU, BSP calls *launch_vcpu* + through *start_vm*, AP calls *launch_vcpu* through vlapic INIT-SIPI emulation, finally this vCPU runs in a *vcpu_thread* loop.