From d8ba6e71da87b731259e4d0a09b79d3d556d5e74 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen Date: Fri, 28 May 2021 09:34:11 +0300 Subject: [PATCH] Add comment about cpu type --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index 041d0c7..5012602 100644 --- a/main.c +++ b/main.c @@ -385,6 +385,8 @@ int main(int argc, char **argv) { if (ioctl(vcpu, KVM_GET_SREGS, &sregs) == -1) abort(); + // It defaults to host cpu on POWER5+, which is what we want. + // http://pearpc.sourceforge.net/pvr.html if (ioctl(vcpu, KVM_SET_SREGS, &sregs) == -1) abort(); -- 2.30.2