diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-05-24 13:52:28 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-08-21 00:51:06 -0400 |
commit | e3bb3556afb3a612a724095614fade0863a1a667 (patch) | |
tree | 354f3414ce3c913c6534b68898f9666820491a60 /conf.d/qemu.d | |
parent | 5016c1da15b3fadefb98f1fe18697b0cfe04187d (diff) |
Clean up
Diffstat (limited to 'conf.d/qemu.d')
-rw-r--r-- | conf.d/qemu.d/beefcake | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/conf.d/qemu.d/beefcake b/conf.d/qemu.d/beefcake index 195bbc7..6e671bd 100644 --- a/conf.d/qemu.d/beefcake +++ b/conf.d/qemu.d/beefcake @@ -7,10 +7,11 @@ args=( -no-reboot # let the systemd supervisor know we're restarting -machine accel=kvm - -m 32768 - -smp 16 + -m 32768 # 32 GiB RAM + # 1 socket / 8 cores-per-node / 2 threads-per-core = total of 16 CPUs + -smp sockets=1,cores=8,threads=2,cpus=16 + # TODO: Split that in to 2 NUMA nodes; 4 cores and 16 GiB RAM each - #-realtime mlock=off #-no-hpet -uuid 4c42bd65-6ad5-456d-8b76-758ecb795e21 |