24 lines
531 B
Plaintext
24 lines
531 B
Plaintext
# VM Exit 은 KVM 에서 끝나기도 하고 QEMU userspace 까지 가기도 한다
|
|
# Question: VM Exit 이 난 뒤 제어권은 어디까지 올라갔다가 어떻게 Guest 로 돌아오는가
|
|
direction: right
|
|
n0: "Guest" {
|
|
shape: rectangle
|
|
}
|
|
n1: "KVM" {
|
|
shape: rectangle
|
|
}
|
|
n2: "KVM 커널 처리" {
|
|
shape: rectangle
|
|
}
|
|
n3: "QEMU" {
|
|
shape: rectangle
|
|
}
|
|
n4: "Guest 실행 재개" {
|
|
shape: rectangle
|
|
}
|
|
n0 -> n1: "VM Exit"
|
|
n1 -> n2: "커널 처리 가능"
|
|
n1 -> n3: "KVM_RUN return"
|
|
n2 -> n4: "VM Entry"
|
|
n3 -> n4: "VM Entry"
|