mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-12 22:23:49 +01:00
Drop the MaxMemInQueues lower limit down to 256 MB.
on #9686, gmorehose reports that the 500 MB lower limit is too high for raspberry pi users.
This commit is contained in:
parent
e572ec856d
commit
647248729f
3
changes/bug9686
Normal file
3
changes/bug9686
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
o Minor changes:
|
||||||
|
- Decrease the lower limit of MaxMemInQueues to 256 MBytes, to
|
||||||
|
appease raspberry pi users. Fixes bug 9686.
|
@ -3670,10 +3670,10 @@ options_validate(or_options_t *old_options, or_options_t *options,
|
|||||||
log_warn(LD_CONFIG, "EntryNodes is set, but UseEntryGuards is disabled. "
|
log_warn(LD_CONFIG, "EntryNodes is set, but UseEntryGuards is disabled. "
|
||||||
"EntryNodes will be ignored.");
|
"EntryNodes will be ignored.");
|
||||||
|
|
||||||
if (options->MaxMemInQueues < (500 << 20)) {
|
if (options->MaxMemInQueues < (256 << 20)) {
|
||||||
log_warn(LD_CONFIG, "MaxMemInQueues must be at least 500 MB for now. "
|
log_warn(LD_CONFIG, "MaxMemInQueues must be at least 256 MB for now. "
|
||||||
"Ideally, have it as large as you can afford.");
|
"Ideally, have it as large as you can afford.");
|
||||||
options->MaxMemInQueues = (500 << 20);
|
options->MaxMemInQueues = (256 << 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
options->_AllowInvalid = 0;
|
options->_AllowInvalid = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user