Re: [PATCH] Fixes hang in zstd compression test by changing the source of random data.

2019-08-23 Thread James Clark
Sorry about that, I will look into it. Thanks James On 22/08/2019 22:24, Arnaldo Carvalho de Melo wrote: > Em Thu, Aug 22, 2019 at 06:24:07PM -0300, Arnaldo Carvalho de Melo escreveu: >> Em Thu, Aug 22, 2019 at 01:55:15PM +, James Clark escreveu: >>> Running 'perf test' with zstd compression

Re: [PATCH] Fixes hang in zstd compression test by changing the source of random data.

2019-08-22 Thread Alexey Budankov
On 22.08.2019 16:55, James Clark wrote: > Running 'perf test' with zstd compression linked will hang at the test > 'Zstd perf.data compression/decompression' because /dev/random blocks > reads until there is enough entropy. This means that the test will > appear to never complete unless the mouse

Re: [PATCH] Fixes hang in zstd compression test by changing the source of random data.

2019-08-22 Thread Arnaldo Carvalho de Melo
Em Thu, Aug 22, 2019 at 06:24:07PM -0300, Arnaldo Carvalho de Melo escreveu: > Em Thu, Aug 22, 2019 at 01:55:15PM +, James Clark escreveu: > > Running 'perf test' with zstd compression linked will hang at the test > > 'Zstd perf.data compression/decompression' because /dev/random blocks > > rea

Re: [PATCH] Fixes hang in zstd compression test by changing the source of random data.

2019-08-22 Thread Arnaldo Carvalho de Melo
Em Thu, Aug 22, 2019 at 01:55:15PM +, James Clark escreveu: > Running 'perf test' with zstd compression linked will hang at the test > 'Zstd perf.data compression/decompression' because /dev/random blocks > reads until there is enough entropy. This means that the test will > appear to never com

[PATCH] Fixes hang in zstd compression test by changing the source of random data.

2019-08-22 Thread James Clark
Running 'perf test' with zstd compression linked will hang at the test 'Zstd perf.data compression/decompression' because /dev/random blocks reads until there is enough entropy. This means that the test will appear to never complete unless the mouse is continually moved while running it. Signed-of