feat: 가상화 문서들 추가
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
# 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"
|
||||
Reference in New Issue
Block a user