feat: 가상화 문서들 추가

This commit is contained in:
DongHyeonka
2026-09-10 08:54:05 +09:00
parent e9f6a93327
commit 43e1aadef0
695 changed files with 153404 additions and 12754 deletions
@@ -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"