]> git.ipfire.org Git - thirdparty/zstd.git/shortlog
thirdparty/zstd.git
2020-10-07  Martin LiskaAllow external creation of POOLs that can be shared. 2328/head
2020-09-24  Yann ColletMerge pull request #2315 from senhuang42/allow_zstd_suffix
2020-09-23  Nick TerrellMerge pull request #2324 from terrelln/kernel-test-fix
2020-09-23  Nick Terrell[CI][linux-kernel] Enable -Wunused-const-variable and... 2324/head
2020-09-23  Nick Terrell[lib] Silence -Wunused-const-variable warnings
2020-09-23  Nick Terrell[linux-kernel] Fix unused variable warnings with malloc...
2020-09-22  Nick TerrellMerge pull request #2320 from terrelln/test-fix
2020-09-22  Nick Terrell[tests] Don't write to stdout 2320/head
2020-09-18  Felix HandteMerge pull request #2311 from felixhandte/ddss-fix...
2020-09-18  senhuang42Add -f to .zstd decompression CLI test 2315/head
2020-09-18  senhuang42Support .zstd suffix only for decompression
2020-09-18  Felix HandteMerge pull request #2313 from felixhandte/fuzzer-separa...
2020-09-17  W. Felix HandteRun Long Tests in GitHub CI 2313/head
2020-09-17  W. Felix HandteMove Last Two Long Tests in fuzzer.c into Separate...
2020-09-17  W. Felix HandteUpdate Regression Test Results 2311/head
2020-09-17  W. Felix HandteUse ZSTD_CCtxParams_init() to Init CCtxParams, not...
2020-09-17  W. Felix HandteAvoid Redundancy in ZSTD_initCDict_internal() Args...
2020-09-15  W. Felix HandteFall Back if Derived CParams are Incompatible with...
2020-09-15  W. Felix HandteMake ZSTD_createCDict_advanced2() cctxParams Arg Const
2020-09-15  W. Felix HandteDo More Complete CParams Deduction in Non-DDSS Path...
2020-09-15  W. Felix HandtePull CParam Override Logic into Helper
2020-09-14  Nick TerrellMerge pull request #2308 from terrelln/zstd-kernel
2020-09-14  Yann ColletMerge pull request #2292 from senhuang42/multifile_stat...
2020-09-14  Yann ColletMerge pull request #2299 from senhuang42/env_var_num_th...
2020-09-14  Yann ColletMerge pull request #2306 from facebook/check_endDirective
2020-09-14  Nick Terrell[contrib][linux-kernel] Add decompress_sources.h 2308/head
2020-09-14  Yann Colletminor fix casting for Visual 2306/head
2020-09-14  Yann Colletcheck endDirective in ZSTD_compressStream2()
2020-09-11  Felix HandteMerge pull request #2295 from felixhandte/dedicated...
2020-09-11  W. Felix HandtePrint More During Fuzzer Test to Avoid CI Killing it... 2295/head
2020-09-11  W. Felix HandteTest Fewer Dictionary Sizes
2020-09-11  W. Felix HandteFix Debug Logging in 32-bit Build
2020-09-11  W. Felix HandteDocument searchFuncs Table
2020-09-11  W. Felix HandteFurther Consolidate Dict Mode Checks
2020-09-11  W. Felix HandteImprove Documentation Slightly
2020-09-11  W. Felix HandteMake DDSS Selection Override ForceCopy Directive
2020-09-11  W. Felix HandteTest DDSS A Little More Thoroughly
2020-09-11  W. Felix HandteAttempt to Fix MSVC Warnings
2020-09-11  W. Felix HandteSimplify Match Limit Checks
2020-09-11  W. Felix HandteUse All Available Space in the Hash Table to Extent...
2020-09-11  W. Felix HandteRewrite Table Fill to Retain Cache Entries Beyond Chain...
2020-09-11  W. Felix HandteAvoid Malloc in Table Fill; Pack Tmp Structure into...
2020-09-11  W. Felix HandteTruncate Chain at Last Possible Attempt
2020-09-11  W. Felix HandtePrefetch Chain Table Matches
2020-09-11  W. Felix HandteLay Out Chain Table Chains Contiguously
2020-09-11  W. Felix HandteOnly Insert Positions Inside the Chain Window
2020-09-11  W. Felix HandteOnly Allow Dedicated Dict Search for Dicts Loaded in...
2020-09-11  Felix HandteMerge pull request #2276 from felixhandte/dedicated...
2020-09-10  W. Felix HandteFix Bug: Only Use DDSS Insertion on CDict MatchStates 2276/head
2020-09-10  W. Felix HandteShorten Dict Mode Conditionals in Order to Improve...
2020-09-10  W. Felix HandteForce-Inline ZSTD_insertAndFindFirstIndex_internal()
2020-09-10  W. Felix HandteClean Up Search Function Selection
2020-09-10  W. Felix HandteFix `-Wshorten-64-to-32` Error
2020-09-10  W. Felix HandteAdjust Working Context Table Sizes Back Down
2020-09-10  W. Felix HandteAdd Warning Comment to ZSTD_createCDict_advanced2(...
2020-09-10  W. Felix HandtePermit Matching Against Lowest Valid Position
2020-09-10  W. Felix HandteMake ZSTD_dedicatedDictSearch_getCParams Wrap ZSTD_getC...
2020-09-10  W. Felix HandteEasy: Fix Test
2020-09-10  W. Felix HandteRemove Chain Limit on Hash Cache Entries; Slightly...
2020-09-10  W. Felix HandteSplit Lookups in Hash Cache and Chain Table into Two...
2020-09-10  W. Felix HandteSimplify DDS Hash Table Construction
2020-09-10  W. Felix HandteDocument the ZSTD_c_enableDedicatedDictSearch Parameter
2020-09-10  W. Felix HandteRename and Move DD_BLOG Constant to ZSTD_LAZY_DDSS_BUCK...
2020-09-10  W. Felix HandtePrefetch First Batch of Match Positions; +11% Speed...
2020-09-10  W. Felix HandteFix Off-By-One Error in Counting DDS Search Attempts
2020-09-10  W. Felix HandteEnable Dedicated Dict Search in the CLI
2020-09-10  W. Felix HandteInit CCtx's Local Dict with CCtxParams
2020-09-10  W. Felix HandteDecision for Whether to Attach Should be Based on CDict...
2020-09-10  W. Felix HandteMove Prefetch Before Insertion; Speed Up ~6%
2020-09-10  W. Felix HandteMisc Refactor of DDS Search Code
2020-09-10  W. Felix HandteRename enableDedicatedDictSearch to dedicatedDictSearch...
2020-09-10  W. Felix HandteAlways Init CDict's enableDedicatedDictSearch Field
2020-09-10  W. Felix HandteAdd a ZSTD_dedicatedDictSearch ZSTD_dictMode_e to Allow...
2020-09-10  W. Felix HandteFix ZSTD_c_forceAttachDict Bounds
2020-09-10  W. Felix HandteMake ZSTD_c_enableDedicatedDictSearch an Experimental...
2020-09-10  W. Felix HandteAdd Fuzzer Test for the Various Dict Attachment Strategies
2020-09-10  W. Felix HandteTODO: Comment
2020-09-10  W. Felix HandteFix Compilation Warnings
2020-09-10  Bimba Shresthaupdating cold benchmark
2020-09-10  Bimba Shresthacreating ZSTD_createCDict_advanced_internal
2020-09-10  Bimba Shresthachanging to int for consistency
2020-09-10  Bimba Shresthausing dict mls instead of src mls
2020-09-10  Bimba Shresthaadd hashtable head prefetching
2020-09-10  Bimba Shresthachange method name for consistency
2020-09-10  Bimba Shresthapass correct cparams
2020-09-10  Bimba Shrestharemoving wrong comment
2020-09-10  Bimba Shresthamaking cctxParams a pointer
2020-09-10  Bimba Shresthaloading dict using new algorithm
2020-09-10  Bimba Shresthaadding dedicatedDictSearch algorithm
2020-09-10  Bimba Shresthaadding enableDedicatedDictSearch to matchState_t
2020-09-10  Bimba Shresthaadding dedicated dict load method to lazy
2020-09-10  Bimba Shresthaadding ZSTD_createCDict_advanced2 to zstd.h
2020-09-10  Bimba Shresthaalways attach dict when using dedicatedDictSearch
2020-09-10  Bimba Shresthaadding dedicatedDictSearch cParams helper methods
2020-09-10  Bimba Shresthaadding ZSTD_dedicatedDictSearch_defaultCParameters...
2020-09-10  Bimba ShresthaAdd ZSTD_c_enableDedicatedDictSearch Param
2020-09-10  Nick TerrellMerge pull request #2301 from terrelln/prepare-for...
2020-09-10  Nick Terrell[lib] Bump version number to 1.4.6 2301/head
2020-09-10  Nick TerrellUpdate CHANGELOG for the next release
2020-09-10  Nick Terrell[doc] Document new build macros in lib/README.md
next