diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-10 17:38:53 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2024-12-10 17:43:49 +0100 |
commit | 285f0862d86fe3cd39cbd815aa4d990d6f44546b (patch) | |
tree | 5c54c342532e03749fcec07e32fee34d3569bc1e /gnu/services | |
parent | 832ef198f7e423e0fdff7fe7c5558ff13d1f20c1 (diff) | |
download | guix-285f0862d86fe3cd39cbd815aa4d990d6f44546b.tar.gz guix-285f0862d86fe3cd39cbd815aa4d990d6f44546b.zip |
services: hurd-vm: Set overload-threshold to 1.8.
The uptime/ /proc/loadavg reporting in the Hurd is 1.0 for a machine without
load. This may have been caused by recent SMP work.
* gnu/services/virtualization.scm (hurd-vm-guix-extension): Set
overload-threshold to 1.8 to allow offloading to actually happen.
Change-Id: I2b5be4d8e8d884cba767702f9cdccf91717eb95d
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/virtualization.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm index d33dfa6ca7..53f79e367b 100644 --- a/gnu/services/virtualization.scm +++ b/gnu/services/virtualization.scm @@ -1841,6 +1841,7 @@ machines in /etc/guix/machines.scm." (@ (ice-9 textual-ports) get-string-all))) (user "offloading") + (overload-threshold 1.8) ;current load reporting is off by 1 (private-key #$host-ssh-key)))))) (guix-extension))) |