mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
Merge branch 'maint-0.3.3'
This commit is contained in:
commit
56ae6d8766
2 changed files with 11 additions and 0 deletions
3
changes/bug25372
Normal file
3
changes/bug25372
Normal file
|
@ -0,0 +1,3 @@
|
|||
o Minor features (log messages):
|
||||
- Improve log message in the out of memory handler to include information
|
||||
about memory usage from the different compression backends. Closes ticket 25372.
|
|
@ -82,6 +82,9 @@
|
|||
#include "routerlist.h"
|
||||
#include "routerset.h"
|
||||
#include "channelpadding.h"
|
||||
#include "compress_lzma.h"
|
||||
#include "compress_zlib.h"
|
||||
#include "compress_zstd.h"
|
||||
|
||||
#include "ht.h"
|
||||
|
||||
|
@ -2471,12 +2474,17 @@ circuits_handle_oom(size_t current_allocation)
|
|||
log_notice(LD_GENERAL, "We're low on memory (cell queues total alloc:"
|
||||
" %"TOR_PRIuSZ" buffer total alloc: %" TOR_PRIuSZ ","
|
||||
" tor compress total alloc: %" TOR_PRIuSZ
|
||||
" (zlib: %" TOR_PRIuSZ ", zstd: %" TOR_PRIuSZ ","
|
||||
" lzma: %" TOR_PRIuSZ "),"
|
||||
" rendezvous cache total alloc: %" TOR_PRIuSZ "). Killing"
|
||||
" circuits withover-long queues. (This behavior is controlled by"
|
||||
" MaxMemInQueues.)",
|
||||
cell_queues_get_total_allocation(),
|
||||
buf_get_total_allocation(),
|
||||
tor_compress_get_total_allocation(),
|
||||
tor_zlib_get_total_allocation(),
|
||||
tor_zstd_get_total_allocation(),
|
||||
tor_lzma_get_total_allocation(),
|
||||
rend_cache_get_total_allocation());
|
||||
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue