Files

14 lines
580 B
Plaintext

%% vCPU 를 Node 0 에 묶어도 backing 이 Node 1 에 있으면 접근은 remote 로 남는다
%% question: vCPU pinning 만 한 배치와 memory binding 까지 맞춘 배치에서 같은 memory 접근은 각각 어느 node 의 RAM 에 닿는가
sequenceDiagram
participant n0 as QEMU vCPU Thread
participant n1 as VM1 Memory Backing
participant n2 as Node 0 CPU
participant n3 as Node 0 RAM
participant n4 as Node 1 RAM
n0->>n2: vCPU Pinning
n1->>n4: Memory Placement
n2->>n4: Remote Access
n1->>n3: Memory Binding
n2->>n3: Local Access