summaryrefslogtreecommitdiff
path: root/vendor/github.com/klauspost
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-27 13:20:07 -0400
committerGitHub <noreply@github.com>2020-10-27 13:20:07 -0400
commiteda5a6d069855c30fafe01c5226b9110c5691d91 (patch)
treefb03285809ad13abd56bb20801e75446a5a75396 /vendor/github.com/klauspost
parentcef85763e5f5453c622608eb714f5206fe5b5b9d (diff)
parent2099c86f3321c44906c0db476f6d0fee10beb265 (diff)
downloadpodman-eda5a6d069855c30fafe01c5226b9110c5691d91.tar.gz
podman-eda5a6d069855c30fafe01c5226b9110c5691d91.tar.bz2
podman-eda5a6d069855c30fafe01c5226b9110c5691d91.zip
Merge pull request #8145 from containers/dependabot/go_modules/github.com/containers/common-0.26.2
Bump github.com/containers/common from 0.26.0 to 0.26.3
Diffstat (limited to 'vendor/github.com/klauspost')
-rw-r--r--vendor/github.com/klauspost/compress/zstd/encoder_options.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/vendor/github.com/klauspost/compress/zstd/encoder_options.go b/vendor/github.com/klauspost/compress/zstd/encoder_options.go
index 579206163..1209915bc 100644
--- a/vendor/github.com/klauspost/compress/zstd/encoder_options.go
+++ b/vendor/github.com/klauspost/compress/zstd/encoder_options.go
@@ -30,12 +30,13 @@ type encoderOptions struct {
func (o *encoderOptions) setDefault() {
*o = encoderOptions{
// use less ram: true for now, but may change.
- concurrent: runtime.GOMAXPROCS(0),
- crc: true,
- single: nil,
- blockSize: 1 << 16,
- windowSize: 8 << 20,
- level: SpeedDefault,
+ concurrent: runtime.GOMAXPROCS(0),
+ crc: true,
+ single: nil,
+ blockSize: 1 << 16,
+ windowSize: 8 << 20,
+ level: SpeedDefault,
+ allLitEntropy: true,
}
}