]>
git.ipfire.org Git - thirdparty/zstd.git/log
Yann Collet [Sat, 19 Aug 2017 08:23:49 +0000 (01:23 -0700)]
fixed unused variables warnings
Yann Collet [Sat, 19 Aug 2017 08:14:36 +0000 (01:14 -0700)]
updated doc on compilation variables
Yann Collet [Sat, 19 Aug 2017 08:01:53 +0000 (01:01 -0700)]
fixed zstd-nolegacy
and added it to allVariants for CI testings
Yann Collet [Sat, 19 Aug 2017 07:48:29 +0000 (00:48 -0700)]
fixed zstd-small
and added it to shortest for CI tests
Yann Collet [Sat, 19 Aug 2017 07:37:06 +0000 (00:37 -0700)]
Merge branch 'dev' into variants
Yann Collet [Sat, 19 Aug 2017 07:36:37 +0000 (00:36 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Sat, 19 Aug 2017 07:34:34 +0000 (00:34 -0700)]
Merge pull request #801 from facebook/newLicense
New license
Yann Collet [Sat, 19 Aug 2017 01:39:39 +0000 (18:39 -0700)]
added zstd-decompress to the list of variants tested
Yann Collet [Sat, 19 Aug 2017 01:30:41 +0000 (18:30 -0700)]
fixed zstd-compress
file-information is dependent on decompression functions.
it should only be enabled when ZSTD_NODECOMPRESS is not set.
also : added zstd-compress compilation test into `make shortest`
Yann Collet [Sat, 19 Aug 2017 00:06:12 +0000 (17:06 -0700)]
blindfix for Windows conversion warning
long type is 32-bits on Windows 64,
while it's 64-bits on Unix.
64-to-32 shortening conversion for long is a specific Windows issue.
Yann Collet [Fri, 18 Aug 2017 23:52:05 +0000 (16:52 -0700)]
updated a bunch of headers
for the new license
Yann Collet [Fri, 18 Aug 2017 23:32:08 +0000 (16:32 -0700)]
added GPLv2 license
and removed PATENTS clause
Yann Collet [Fri, 18 Aug 2017 23:18:20 +0000 (16:18 -0700)]
fixed --list command in presence of special blocks
block type RLE is special, compressed size is always 1.
block type 3 is "reserved", aka not supported.
Yann Collet [Fri, 18 Aug 2017 22:57:53 +0000 (15:57 -0700)]
improved and fixed --list command, original patches by @ib (#772)
accepts all skippable frame identifiers.
display in MB or KB, depending on frame size.
fixed combination of skippable and zstd frames.
Yann Collet [Fri, 18 Aug 2017 22:15:31 +0000 (15:15 -0700)]
removed --list from cli help (-h), reported by Agostino Sarubbo (@asarubbo) (#800)
redundant with shorter -l.
both -l and --list do the same thing, and are documented in man page.
Yann Collet [Fri, 18 Aug 2017 22:12:30 +0000 (15:12 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Wed, 16 Aug 2017 23:06:05 +0000 (16:06 -0700)]
Merge pull request #789 from paulcruz74/educational-decoder-2
Educational decoder 2
Paul Cruz [Wed, 16 Aug 2017 18:11:52 +0000 (11:11 -0700)]
const vars, change copy_literals() to only take size_t literal_length
Yann Collet [Wed, 16 Aug 2017 07:37:55 +0000 (00:37 -0700)]
Merge pull request #797 from paulcruz74/documentation
Updating README.md
Paul Cruz [Tue, 15 Aug 2017 17:14:38 +0000 (10:14 -0700)]
Updating README.md
Yann Collet [Tue, 15 Aug 2017 19:37:28 +0000 (12:37 -0700)]
Merge pull request #796 from terrelln/is-error
[FSE][HUF] Inline error checks
Yann Collet [Tue, 15 Aug 2017 19:03:44 +0000 (12:03 -0700)]
Merge pull request #794 from terrelln/force-inline
[libzstd] Fix FORCE_INLINE macro
Yann Collet [Tue, 15 Aug 2017 18:59:41 +0000 (11:59 -0700)]
Merge pull request #795 from terrelln/squashfs-tools2
[kernel] Update squashfs-tools patch
Nick Terrell [Tue, 15 Aug 2017 18:23:28 +0000 (11:23 -0700)]
[FSE][HUF] Inline error checks
Caught by Clang's optimization remarks.
Nick Terrell [Tue, 15 Aug 2017 05:43:36 +0000 (22:43 -0700)]
[kernel] Update squashfs-tools patch
Nick Terrell [Tue, 15 Aug 2017 00:20:50 +0000 (17:20 -0700)]
[libzstd] Fix FORCE_INLINE macro
Paul Cruz [Tue, 15 Aug 2017 00:51:51 +0000 (17:51 -0700)]
renamed IO functions for clarity
Paul Cruz [Mon, 14 Aug 2017 22:11:01 +0000 (15:11 -0700)]
added comments for new functions
Paul Cruz [Mon, 14 Aug 2017 22:06:03 +0000 (15:06 -0700)]
added separate function for executing match copy command
Paul Cruz [Mon, 14 Aug 2017 21:20:12 +0000 (14:20 -0700)]
created separate function for offset computation
Paul Cruz [Mon, 14 Aug 2017 21:05:16 +0000 (14:05 -0700)]
created separate function for copying literals during sequence execution
Paul Cruz [Mon, 14 Aug 2017 20:08:30 +0000 (13:08 -0700)]
added free to free_dictionary()
Yann Collet [Mon, 14 Aug 2017 16:55:12 +0000 (09:55 -0700)]
Merge pull request #791 from romange/dev
Fix ZSTD_estimateDStreamSize function - Fixes #45
Yann Collet [Mon, 14 Aug 2017 16:54:00 +0000 (09:54 -0700)]
Merge pull request #793 from codicodi/fix-lz4-support
fix typo in lz4 support code
Paul Cruz [Mon, 14 Aug 2017 16:41:04 +0000 (09:41 -0700)]
added error checking for dictionary initialized with null src
codicodi [Mon, 14 Aug 2017 12:03:46 +0000 (14:03 +0200)]
fix typo in lz4 support code
Roman Gershman [Sun, 13 Aug 2017 10:29:42 +0000 (13:29 +0300)]
Fix ZSTD_estimateDStreamSize function after ZSTD_DStream and ZSTD_DCtx were merged
Paul Cruz [Sat, 12 Aug 2017 01:40:19 +0000 (18:40 -0700)]
made separate API for dictionary management
Paul Cruz [Sat, 12 Aug 2017 00:53:37 +0000 (17:53 -0700)]
exposed dictionary functions/types
Paul Cruz [Fri, 11 Aug 2017 21:42:15 +0000 (14:42 -0700)]
remove debug symbols when cleaning, added a simple test
Paul Cruz [Fri, 11 Aug 2017 21:41:44 +0000 (14:41 -0700)]
fixed warnings shown by compiler
Paul Cruz [Fri, 11 Aug 2017 21:35:13 +0000 (14:35 -0700)]
add makefile
Paul Cruz [Fri, 11 Aug 2017 21:34:49 +0000 (14:34 -0700)]
reduce educational decoder to single frame decompression
Yann Collet [Fri, 11 Aug 2017 17:17:49 +0000 (10:17 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Fri, 11 Aug 2017 00:39:17 +0000 (17:39 -0700)]
Merge pull request #787 from paulcruz74/dev
Bugfixes for Valgrind and TSAN
Paul Cruz [Thu, 10 Aug 2017 23:11:59 +0000 (16:11 -0700)]
updated program name print statement
Paul Cruz [Thu, 10 Aug 2017 21:46:31 +0000 (14:46 -0700)]
Merge remote-tracking branch 'upstream/dev' into dev
Yann Collet [Wed, 9 Aug 2017 23:00:11 +0000 (16:00 -0700)]
Merge pull request #786 from terrelln/squashfs-tools
[linux-kernel] Update patches for v4 and v5
Nick Terrell [Tue, 8 Aug 2017 23:27:10 +0000 (16:27 -0700)]
[linux-kernel] Update patches for v5
Yann Collet [Tue, 8 Aug 2017 21:21:45 +0000 (14:21 -0700)]
Merge pull request #785 from terrelln/dev
[CI] Add gcc7build test
Nick Terrell [Tue, 8 Aug 2017 19:32:26 +0000 (12:32 -0700)]
[CI] Add gcc7build test
Yann Collet [Mon, 7 Aug 2017 21:52:02 +0000 (14:52 -0700)]
Merge pull request #782 from terrelln/dstSizeTooSmall
Fix compression failure on incompressible data
Yann Collet [Mon, 7 Aug 2017 21:50:38 +0000 (14:50 -0700)]
Merge pull request #779 from paulcruz74/adapt-approach-4
Patching warnings, adding ability to bound compression variation
Yann Collet [Mon, 7 Aug 2017 21:05:58 +0000 (14:05 -0700)]
Merge pull request #778 from terrelln/bad-huff
[libzstd] Fix bug in Huffman decompresser
Yann Collet [Mon, 7 Aug 2017 20:55:19 +0000 (13:55 -0700)]
Merge pull request #781 from stellamplau/qSize
Allow queueSize=0 in pool.c
Paul Cruz [Mon, 7 Aug 2017 20:18:53 +0000 (13:18 -0700)]
Merge branch 'adapt-approach-4' into bug-fixes
Paul Cruz [Mon, 7 Aug 2017 20:11:07 +0000 (13:11 -0700)]
removed direct assignment of 22, used ZSTD_maxCLevel() instead
Nick Terrell [Fri, 28 Jul 2017 18:54:28 +0000 (11:54 -0700)]
[libzstd] Fix bug in Huffman decompresser
The zstd format specification doesn't enforce that Huffman compressed
literals (including the table) have to be smaller than the uncompressed
literals. The compressor will never Huffman compress literals if the
compressed size is larger than the uncompressed size. The decompresser
doesn't accept Huffman compressed literals with 4 streams whose compressed
size is at least as large as the uncompressed size.
* Make the decompresser accept Huffman compressed literals whose size
increases.
* Add a test case that exposes the bug. The compressed file has to be
statically generated, since the compressor won't normally produce files
that expose the bug.
Stella Lau [Mon, 7 Aug 2017 18:43:37 +0000 (11:43 -0700)]
Switch the sleep function to UTIL_sleepMilli
Nick Terrell [Thu, 3 Aug 2017 21:05:01 +0000 (14:05 -0700)]
Fix compression failure on incompressible data
If the destination buffer is the minimum allowed size in
`ZSTD_compressSequences()` (2^17), then if the block isn't compressible
compression might fail with `dstSize_tooSmall`, when it should instead emit
a raw uncompressed block.
Additionally, `ZSTD_compressLiterals()` implicitly called
`ZSTD_noCompressLiterals()` if Huffman compression failed. Make that
explicit.
Nick Terrell [Fri, 4 Aug 2017 23:57:03 +0000 (16:57 -0700)]
[linux-kernel] Update patches for v4
Paul Cruz [Thu, 3 Aug 2017 22:13:49 +0000 (15:13 -0700)]
changed multi to zstd-adaptive in the help menu
Stella Lau [Wed, 2 Aug 2017 18:27:50 +0000 (11:27 -0700)]
Add test for deadlock
Paul Cruz [Wed, 2 Aug 2017 17:27:33 +0000 (10:27 -0700)]
added mutex for compression level to avoid data race
Stella Lau [Wed, 2 Aug 2017 03:12:06 +0000 (20:12 -0700)]
Signal after finishing job when queueSize=0
Paul Cruz [Wed, 2 Aug 2017 00:36:13 +0000 (17:36 -0700)]
added detach statements to prevent resource leak
Stella Lau [Tue, 1 Aug 2017 19:24:55 +0000 (12:24 -0700)]
Replace marker with queueEmpty variable and update pool.h comment
Paul Cruz [Mon, 31 Jul 2017 22:42:57 +0000 (15:42 -0700)]
Merge branch 'adapt-approach-4' into dev
Paul Cruz [Mon, 31 Jul 2017 20:43:03 +0000 (13:43 -0700)]
change signal to broadcast for jobCompressed condition varaible since multiple threads waiting
Paul Cruz [Mon, 31 Jul 2017 18:43:40 +0000 (11:43 -0700)]
Merge remote-tracking branch 'upstream/dev' into dev
Paul Cruz [Mon, 31 Jul 2017 18:43:01 +0000 (11:43 -0700)]
Merge branch 'adapt-approach-4' into dev
Paul Cruz [Mon, 31 Jul 2017 18:04:17 +0000 (11:04 -0700)]
add install target in makefile
Stella Lau [Mon, 31 Jul 2017 17:10:16 +0000 (10:10 -0700)]
Allow queueSize=0 in pool.c and update poolTests
Paul Cruz [Mon, 31 Jul 2017 16:47:09 +0000 (09:47 -0700)]
print defaults and range, remove EXT
Paul Cruz [Sat, 29 Jul 2017 00:46:51 +0000 (17:46 -0700)]
removed ternary operation, added assert statement, check to make sure initial compression level is within bounds
Paul Cruz [Sat, 29 Jul 2017 00:28:25 +0000 (17:28 -0700)]
delete empty line
Paul Cruz [Sat, 29 Jul 2017 00:27:36 +0000 (17:27 -0700)]
remove exe extension from makefile, reinclude pthread flag
Yann Collet [Sat, 29 Jul 2017 00:07:21 +0000 (17:07 -0700)]
Merge pull request #758 from stellamplau/ldm
Add working prototype of a long distance matcher
Paul Cruz [Fri, 28 Jul 2017 23:12:58 +0000 (16:12 -0700)]
add flags for multithreading
Paul Cruz [Fri, 28 Jul 2017 22:55:02 +0000 (15:55 -0700)]
add tests for compression bounds, fix another warning
Paul Cruz [Fri, 28 Jul 2017 22:30:46 +0000 (15:30 -0700)]
patched style errors, add ability to bound compression level variation
Stella Lau [Fri, 28 Jul 2017 00:14:05 +0000 (17:14 -0700)]
Return error code in verify() and minor code cleanup
Stella Lau [Thu, 27 Jul 2017 22:49:46 +0000 (15:49 -0700)]
Fix typo
Stella Lau [Thu, 27 Jul 2017 22:37:37 +0000 (15:37 -0700)]
Add checks in initialization code
Yann Collet [Thu, 27 Jul 2017 20:49:46 +0000 (13:49 -0700)]
Merge branch 'dev' of github.com:facebook/zstd into dev
Stella Lau [Thu, 27 Jul 2017 18:11:35 +0000 (11:11 -0700)]
Update README
Yann Collet [Thu, 27 Jul 2017 17:00:10 +0000 (10:00 -0700)]
Merge pull request #753 from paulcruz74/adapt-approach-3
adaptive compression v1
Paul Cruz [Thu, 27 Jul 2017 00:02:47 +0000 (17:02 -0700)]
remove unused variable, add documentation for context fields
Stella Lau [Wed, 26 Jul 2017 23:43:25 +0000 (16:43 -0700)]
Allow HASH_ONLY_EVERY_LOG to be configured in ldm.h
Paul Cruz [Wed, 26 Jul 2017 23:40:05 +0000 (16:40 -0700)]
fix leaky abstraction regarding measuring completion
Paul Cruz [Wed, 26 Jul 2017 22:52:15 +0000 (15:52 -0700)]
added definitions for conversion constants, moved forced compression check to top of adaptCompressionLevel, used ZSTD_BLOCKSIZE_MAX
Paul Cruz [Wed, 26 Jul 2017 21:29:59 +0000 (14:29 -0700)]
set the window log value before performing compression
Stella Lau [Wed, 26 Jul 2017 20:18:53 +0000 (13:18 -0700)]
Add README and clean up code
Paul Cruz [Wed, 26 Jul 2017 17:34:48 +0000 (10:34 -0700)]
moved reset of completion to right after wait
Paul Cruz [Wed, 26 Jul 2017 17:20:29 +0000 (10:20 -0700)]
change to >= convergence counter
Paul Cruz [Wed, 26 Jul 2017 17:05:10 +0000 (10:05 -0700)]
decrease completion requirements for change, move create thread wait, merge cases where compression thread should wait
Stella Lau [Wed, 26 Jul 2017 01:13:27 +0000 (18:13 -0700)]
Allow parameters to be modified from a separate file
Paul Cruz [Wed, 26 Jul 2017 00:47:02 +0000 (17:47 -0700)]
building on readme, added another help tip in the menu
Paul Cruz [Tue, 25 Jul 2017 23:55:16 +0000 (16:55 -0700)]
adding more to readme
Paul Cruz [Tue, 25 Jul 2017 23:03:43 +0000 (16:03 -0700)]
updated progress bar with better representation of time, added const