mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
Merge branch 'maint-0.2.9'
This commit is contained in:
commit
68a27dad43
2 changed files with 12 additions and 0 deletions
11
changes/bug19968
Normal file
11
changes/bug19968
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
o Minor bugfixes (relay):
|
||||||
|
- Do not try to parallelize workers more than 16x without the
|
||||||
|
user explicitly configuring us to do so, even if we do detect more than
|
||||||
|
16 CPU cores. Fixes bug 19968; bugfix on
|
||||||
|
0.2.3.1-alpha.
|
||||||
|
|
||||||
|
|
||||||
|
o Minor bugfixes (testing):
|
||||||
|
- Avoid a unit test failure on systems with over 16 detectable
|
||||||
|
CPU cores. Fixes bug 19968; bugfix on
|
||||||
|
0.2.3.1-alpha.
|
|
@ -2818,6 +2818,7 @@ compute_num_cpus(void)
|
||||||
"will not autodetect any more than %d, though. If you "
|
"will not autodetect any more than %d, though. If you "
|
||||||
"want to configure more, set NumCPUs in your torrc",
|
"want to configure more, set NumCPUs in your torrc",
|
||||||
num_cpus, MAX_DETECTABLE_CPUS);
|
num_cpus, MAX_DETECTABLE_CPUS);
|
||||||
|
num_cpus = MAX_DETECTABLE_CPUS;
|
||||||
/* LCOV_EXCL_STOP */
|
/* LCOV_EXCL_STOP */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue