Re: [xz-devel] [PATCH v3] liblzma: Add multi-threaded decoder

2021-11-29 Thread Lasse Collin
Hello! On 2021-02-05 Sebastian Andrzej Siewior wrote: > - Added enum `lzma_memlimit_opt' to lzma_stream_decoder_mt() as an > init parameter. The idea is to specify how to obey the memory limit > so the user can keep using one API and not worry to fail due to the > memory limit. Lets assume

Re: [xz-devel] [PATCH] xz: Multithreaded mode now always uses stream_encoder_mt to ensure reproducible builds

2021-11-29 Thread Lasse Collin
On 2021-11-29 Jia Tan wrote: > This patch addresses the issues with reproducible builds when using > multithreaded xz. Previously, specifying --threads=1 instead of > --threads=[n>1] creates different output. Now, setting any number of > threads forces multithreading mode, even if there is only

[xz-devel] [PATCH] xz: Multithreaded mode now always uses stream_encoder_mt to ensure reproducible builds

2021-11-29 Thread Jia Tan
This patch addresses the issues with reproducible builds when using multithreaded xz. Previously, specifying --threads=1 instead of --threads=[n>1] creates different output. Now, setting any number of threads forces multithreading mode, even if there is only 1 worker thread. ---