]> git.ipfire.org Git - ipfire-2.x.git/commit
make.sh: Set parallelism to number of CPU cores
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 26 Feb 2021 18:17:03 +0000 (18:17 +0000)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 5 Jul 2021 05:42:39 +0000 (07:42 +0200)
commit72c39057b95a159c7e4c16647d2247df26e5f56b
treea94394f75d6cdebc70346b3419938724014b01db
parentd66e6fa806327b2195143b27040d4efa79123ba1
make.sh: Set parallelism to number of CPU cores

Setting it to something higher than the number of physical CPU cores was
a good idea when we used to have slow magnetic storage. That way, at
least there was always one process waiting for IO.

With modern fast flash-based storage, this does not hold any more since
it is fast enough that we don't need to have a couple of processes ready
to wait.

It will probably have made work for the scheduler more challenging since
more processes were ready and processes were moved around processors.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
make.sh