2 * LZ4 - Fast LZ compression algorithm
4 * Copyright (C) 2011-2013, Yann Collet.
5 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following disclaimer
15 * in the documentation and/or other materials provided with the
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * You can contact the author at :
31 * - LZ4 homepage : http://fastcompression.blogspot.com/p/lz4.html
32 * - LZ4 source repository : http://code.google.com/p/lz4/
36 * N.B. - This file seems to be based on LZ4 r85, dated Dec 10, 2012
39 #include <sys/zfs_context.h>
40 #include <sys/zio_compress.h>
42 static int real_LZ4_compress(const char *source
, char *dest
, int isize
,
44 static int LZ4_compressCtx(void *ctx
, const char *source
, char *dest
,
45 int isize
, int osize
);
46 static int LZ4_compress64kCtx(void *ctx
, const char *source
, char *dest
,
47 int isize
, int osize
);
50 int LZ4_uncompress_unknownOutputSize(const char *source
, char *dest
,
51 int isize
, int maxOutputSize
);
53 static kmem_cache_t
*lz4_cache
;
56 lz4_compress_zfs(void *s_start
, void *d_start
, size_t s_len
,
63 ASSERT(d_len
>= sizeof (bufsiz
));
65 bufsiz
= real_LZ4_compress(s_start
, &dest
[sizeof (bufsiz
)], s_len
,
66 d_len
- sizeof (bufsiz
));
68 /* Signal an error if the compression routine returned zero. */
73 * The exact compressed size is needed by the decompression routine,
74 * so it is stored at the start of the buffer. Note that this may be
75 * less than the compressed block size, which is rounded up to a
76 * multiple of 1<<ashift.
78 *(uint32_t *)dest
= BE_32(bufsiz
);
80 return (bufsiz
+ sizeof (bufsiz
));
84 lz4_decompress_zfs(void *s_start
, void *d_start
, size_t s_len
,
88 const char *src
= s_start
;
89 uint32_t bufsiz
= BE_IN32(src
);
91 /* invalid compressed buffer size encoded at start */
92 if (bufsiz
+ sizeof (bufsiz
) > s_len
)
96 * Returns 0 on success (decompression function returned non-negative)
97 * and non-zero on failure (decompression function returned negative).
99 return (LZ4_uncompress_unknownOutputSize(&src
[sizeof (bufsiz
)],
100 d_start
, bufsiz
, d_len
) < 0);
104 * LZ4 API Description:
107 * real_LZ4_compress() :
108 * isize : is the input size. Max supported value is ~1.9GB
109 * return : the number of bytes written in buffer dest
110 * or 0 if the compression fails (if LZ4_COMPRESSMIN is set).
111 * note : destination buffer must be already allocated.
112 * destination buffer must be sized to handle worst cases
113 * situations (input data not compressible) worst case size
114 * evaluation is provided by function LZ4_compressBound().
116 * real_LZ4_uncompress() :
117 * osize : is the output size, therefore the original size
118 * return : the number of bytes read in the source buffer.
119 * If the source stream is malformed, the function will stop
120 * decoding and return a negative result, indicating the byte
121 * position of the faulty instruction. This function never
122 * writes beyond dest + osize, and is therefore protected
123 * against malicious data packets.
124 * note : destination buffer must be already allocated
125 * note : real_LZ4_uncompress() is not used in ZFS so its code
126 * is not present here.
130 * LZ4_compressBound() :
131 * Provides the maximum size that LZ4 may output in a "worst case"
132 * scenario (input data not compressible) primarily useful for memory
133 * allocation of output buffer.
135 * isize : is the input size. Max supported value is ~1.9GB
136 * return : maximum output size in a "worst case" scenario
137 * note : this function is limited by "int" range (2^31-1)
139 * LZ4_uncompress_unknownOutputSize() :
140 * isize : is the input size, therefore the compressed size
141 * maxOutputSize : is the size of the destination buffer (which must be
143 * return : the number of bytes decoded in the destination buffer
144 * (necessarily <= maxOutputSize). If the source stream is
145 * malformed, the function will stop decoding and return a
146 * negative result, indicating the byte position of the faulty
147 * instruction. This function never writes beyond dest +
148 * maxOutputSize, and is therefore protected against malicious
150 * note : Destination buffer must be already allocated.
151 * This version is slightly slower than real_LZ4_uncompress()
153 * LZ4_compressCtx() :
154 * This function explicitly handles the CTX memory structure.
156 * ILLUMOS CHANGES: the CTX memory structure must be explicitly allocated
157 * by the caller (either on the stack or using kmem_cache_alloc). Passing
160 * LZ4_compress64kCtx() :
161 * Same as LZ4_compressCtx(), but specific to small inputs (<64KB).
162 * isize *Must* be <64KB, otherwise the output will be corrupted.
164 * ILLUMOS CHANGES: the CTX memory structure must be explicitly allocated
165 * by the caller (either on the stack or using kmem_cache_alloc). Passing
174 * COMPRESSIONLEVEL: Increasing this value improves compression ratio
175 * Lowering this value reduces memory usage. Reduced memory usage
176 * typically improves speed, due to cache effect (ex: L1 32KB for Intel,
177 * L1 64KB for AMD). Memory usage formula : N->2^(N+2) Bytes
178 * (examples : 12 -> 16KB ; 17 -> 512KB)
180 #define COMPRESSIONLEVEL 12
183 * NOTCOMPRESSIBLE_CONFIRMATION: Decreasing this value will make the
184 * algorithm skip faster data segments considered "incompressible".
185 * This may decrease compression ratio dramatically, but will be
186 * faster on incompressible data. Increasing this value will make
187 * the algorithm search more before declaring a segment "incompressible".
188 * This could improve compression a bit, but will be slower on
189 * incompressible data. The default value (6) is recommended.
191 #define NOTCOMPRESSIBLE_CONFIRMATION 6
194 * BIG_ENDIAN_NATIVE_BUT_INCOMPATIBLE: This will provide a boost to
195 * performance for big endian cpu, but the resulting compressed stream
196 * will be incompatible with little-endian CPU. You can set this option
197 * to 1 in situations where data will stay within closed environment.
198 * This option is useless on Little_Endian CPU (such as x86).
200 /* #define BIG_ENDIAN_NATIVE_BUT_INCOMPATIBLE 1 */
203 * CPU Feature Detection
206 /* 32 or 64 bits ? */
214 * Little Endian or Big Endian?
215 * Note: overwrite the below #define if you know your architecture endianness.
217 #if defined(_ZFS_BIG_ENDIAN)
218 #define LZ4_BIG_ENDIAN 1
221 * Little Endian assumed. PDP Endian and other very rare endian format
224 #undef LZ4_BIG_ENDIAN
228 * Unaligned memory access is automatically enabled for "common" CPU,
229 * such as x86. For others CPU, the compiler will be more cautious, and
230 * insert extra code to ensure aligned access is respected. If you know
231 * your target CPU supports unaligned memory access, you may want to
232 * force this option manually to improve performance
234 #if defined(__ARM_FEATURE_UNALIGNED)
235 #define LZ4_FORCE_UNALIGNED_ACCESS 1
239 * Illumos : we can't use GCC's __builtin_ctz family of builtins in the
241 * Linux : we can use GCC's __builtin_ctz family of builtins in the
244 #undef LZ4_FORCE_SW_BITCOUNT
246 #define LZ4_FORCE_SW_BITCOUNT
252 /* Disable restrict */
256 * Linux : GCC_VERSION is defined as of 3.9-rc1, so undefine it.
257 * torvalds/linux@3f3f8d2f48acfd8ed3b8e6b7377935da57b27b16
263 #define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
265 #if (GCC_VERSION >= 302) || (__INTEL_COMPILER >= 800) || defined(__clang__)
266 #define expect(expr, value) (__builtin_expect((expr), (value)))
268 #define expect(expr, value) (expr)
272 #define likely(expr) expect((expr) != 0, 1)
276 #define unlikely(expr) expect((expr) != 0, 0)
279 #define lz4_bswap16(x) ((unsigned short int) ((((x) >> 8) & 0xffu) | \
280 (((x) & 0xffu) << 8)))
289 #ifndef LZ4_FORCE_UNALIGNED_ACCESS
293 typedef struct _U16_S
{
296 typedef struct _U32_S
{
299 typedef struct _U64_S
{
303 #ifndef LZ4_FORCE_UNALIGNED_ACCESS
307 #define A64(x) (((U64_S *)(x))->v)
308 #define A32(x) (((U32_S *)(x))->v)
309 #define A16(x) (((U16_S *)(x))->v)
316 #define HASH_LOG COMPRESSIONLEVEL
317 #define HASHTABLESIZE (1 << HASH_LOG)
318 #define HASH_MASK (HASHTABLESIZE - 1)
320 #define SKIPSTRENGTH (NOTCOMPRESSIBLE_CONFIRMATION > 2 ? \
321 NOTCOMPRESSIBLE_CONFIRMATION : 2)
324 #define LASTLITERALS 5
325 #define MFLIMIT (COPYLENGTH + MINMATCH)
326 #define MINLENGTH (MFLIMIT + 1)
329 #define MAX_DISTANCE ((1 << MAXD_LOG) - 1)
332 #define ML_MASK ((1U<<ML_BITS)-1)
333 #define RUN_BITS (8-ML_BITS)
334 #define RUN_MASK ((1U<<RUN_BITS)-1)
338 * Architecture-specific macros
344 #define LZ4_COPYSTEP(s, d) A64(d) = A64(s); d += 8; s += 8;
345 #define LZ4_COPYPACKET(s, d) LZ4_COPYSTEP(s, d)
346 #define LZ4_SECURECOPY(s, d, e) if (d < e) LZ4_WILDCOPY(s, d, e)
348 #define INITBASE(base) const BYTE* const base = ip
349 #else /* !LZ4_ARCH64 */
353 #define LZ4_COPYSTEP(s, d) A32(d) = A32(s); d += 4; s += 4;
354 #define LZ4_COPYPACKET(s, d) LZ4_COPYSTEP(s, d); LZ4_COPYSTEP(s, d);
355 #define LZ4_SECURECOPY LZ4_WILDCOPY
356 #define HTYPE const BYTE *
357 #define INITBASE(base) const int base = 0
358 #endif /* !LZ4_ARCH64 */
360 #if (defined(LZ4_BIG_ENDIAN) && !defined(BIG_ENDIAN_NATIVE_BUT_INCOMPATIBLE))
361 #define LZ4_READ_LITTLEENDIAN_16(d, s, p) \
362 { U16 v = A16(p); v = lz4_bswap16(v); d = (s) - v; }
363 #define LZ4_WRITE_LITTLEENDIAN_16(p, i) \
364 { U16 v = (U16)(i); v = lz4_bswap16(v); A16(p) = v; p += 2; }
366 #define LZ4_READ_LITTLEENDIAN_16(d, s, p) { d = (s) - A16(p); }
367 #define LZ4_WRITE_LITTLEENDIAN_16(p, v) { A16(p) = v; p += 2; }
371 /* Local structures */
373 HTYPE hashTable
[HASHTABLESIZE
];
378 #define LZ4_HASH_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH * 8) - \
380 #define LZ4_HASH_VALUE(p) LZ4_HASH_FUNCTION(A32(p))
381 #define LZ4_WILDCOPY(s, d, e) do { LZ4_COPYPACKET(s, d) } while (d < e);
382 #define LZ4_BLINDCOPY(s, d, l) { BYTE* e = (d) + l; LZ4_WILDCOPY(s, d, e); \
386 /* Private functions */
390 LZ4_NbCommonBytes(register U64 val
)
392 #if defined(LZ4_BIG_ENDIAN)
393 #if ((defined(__GNUC__) && (GCC_VERSION >= 304)) || defined(__clang__)) && \
394 !defined(LZ4_FORCE_SW_BITCOUNT)
395 return (__builtin_clzll(val
) >> 3);
414 #if ((defined(__GNUC__) && (GCC_VERSION >= 304)) || defined(__clang__)) && \
415 !defined(LZ4_FORCE_SW_BITCOUNT)
416 return (__builtin_ctzll(val
) >> 3);
418 static const int DeBruijnBytePos
[64] =
419 { 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1, 3, 1, 4, 2, 7, 0, 2, 3, 6, 1, 5,
420 3, 5, 1, 3, 4, 4, 2, 5, 6, 7, 7, 0, 1, 2, 3, 3, 4, 6, 2, 6, 5,
421 5, 3, 4, 5, 6, 7, 1, 2, 4, 6, 4,
422 4, 5, 7, 2, 6, 5, 7, 6, 7, 7
424 return DeBruijnBytePos
[((U64
) ((val
& -val
) * 0x0218A392CDABBD3F)) >>
433 LZ4_NbCommonBytes(register U32 val
)
435 #if defined(LZ4_BIG_ENDIAN)
436 #if ((defined(__GNUC__) && (GCC_VERSION >= 304)) || defined(__clang__)) && \
437 !defined(LZ4_FORCE_SW_BITCOUNT)
438 return (__builtin_clz(val
) >> 3);
452 #if defined(__GNUC__) && (GCC_VERSION >= 304) && \
453 !defined(LZ4_FORCE_SW_BITCOUNT)
454 return (__builtin_ctz(val
) >> 3);
456 static const int DeBruijnBytePos
[32] = {
457 0, 0, 3, 0, 3, 1, 3, 0,
458 3, 2, 2, 1, 3, 2, 0, 1,
459 3, 3, 1, 2, 2, 2, 2, 0,
460 3, 1, 2, 0, 1, 0, 1, 1
462 return DeBruijnBytePos
[((U32
) ((val
& -(S32
) val
) * 0x077CB531U
)) >>
470 /* Compression functions */
473 LZ4_compressCtx(void *ctx
, const char *source
, char *dest
, int isize
,
476 struct refTables
*srt
= (struct refTables
*)ctx
;
477 HTYPE
*HashTable
= (HTYPE
*) (srt
->hashTable
);
479 const BYTE
*ip
= (BYTE
*) source
;
481 const BYTE
*anchor
= ip
;
482 const BYTE
*const iend
= ip
+ isize
;
483 const BYTE
*const oend
= (BYTE
*) dest
+ osize
;
484 const BYTE
*const mflimit
= iend
- MFLIMIT
;
485 #define matchlimit (iend - LASTLITERALS)
487 BYTE
*op
= (BYTE
*) dest
;
490 const int skipStrength
= SKIPSTRENGTH
;
495 if (isize
< MINLENGTH
)
499 HashTable
[LZ4_HASH_VALUE(ip
)] = ip
- base
;
501 forwardH
= LZ4_HASH_VALUE(ip
);
505 int findMatchAttempts
= (1U << skipStrength
) + 3;
506 const BYTE
*forwardIp
= ip
;
513 int step
= findMatchAttempts
++ >> skipStrength
;
515 forwardIp
= ip
+ step
;
517 if (unlikely(forwardIp
> mflimit
)) {
521 forwardH
= LZ4_HASH_VALUE(forwardIp
);
522 ref
= base
+ HashTable
[h
];
523 HashTable
[h
] = ip
- base
;
525 } while ((ref
< ip
- MAX_DISTANCE
) || (A32(ref
) != A32(ip
)));
528 while ((ip
> anchor
) && (ref
> (BYTE
*) source
) &&
529 unlikely(ip
[-1] == ref
[-1])) {
534 /* Encode Literal length */
535 length
= ip
- anchor
;
538 /* Check output limit */
539 if (unlikely(op
+ length
+ (2 + 1 + LASTLITERALS
) +
540 (length
>> 8) > oend
))
543 if (length
>= (int)RUN_MASK
) {
544 *token
= (RUN_MASK
<< ML_BITS
);
545 len
= length
- RUN_MASK
;
546 for (; len
> 254; len
-= 255)
550 *token
= (length
<< ML_BITS
);
553 LZ4_BLINDCOPY(anchor
, op
, length
);
557 LZ4_WRITE_LITTLEENDIAN_16(op
, ip
- ref
);
561 ref
+= MINMATCH
; /* MinMatch verified */
563 while (likely(ip
< matchlimit
- (STEPSIZE
- 1))) {
564 UARCH diff
= AARCH(ref
) ^ AARCH(ip
);
570 ip
+= LZ4_NbCommonBytes(diff
);
574 if ((ip
< (matchlimit
- 3)) && (A32(ref
) == A32(ip
))) {
579 if ((ip
< (matchlimit
- 1)) && (A16(ref
) == A16(ip
))) {
583 if ((ip
< matchlimit
) && (*ref
== *ip
))
587 /* Encode MatchLength */
589 /* Check output limit */
590 if (unlikely(op
+ (1 + LASTLITERALS
) + (len
>> 8) > oend
))
592 if (len
>= (int)ML_MASK
) {
595 for (; len
> 509; len
-= 510) {
607 /* Test end of chunk */
613 HashTable
[LZ4_HASH_VALUE(ip
- 2)] = ip
- 2 - base
;
615 /* Test next position */
616 ref
= base
+ HashTable
[LZ4_HASH_VALUE(ip
)];
617 HashTable
[LZ4_HASH_VALUE(ip
)] = ip
- base
;
618 if ((ref
> ip
- (MAX_DISTANCE
+ 1)) && (A32(ref
) == A32(ip
))) {
623 /* Prepare next loop */
625 forwardH
= LZ4_HASH_VALUE(ip
);
629 /* Encode Last Literals */
631 int lastRun
= iend
- anchor
;
632 if (op
+ lastRun
+ 1 + ((lastRun
+ 255 - RUN_MASK
) / 255) >
635 if (lastRun
>= (int)RUN_MASK
) {
636 *op
++ = (RUN_MASK
<< ML_BITS
);
638 for (; lastRun
> 254; lastRun
-= 255) {
641 *op
++ = (BYTE
)lastRun
;
643 *op
++ = (lastRun
<< ML_BITS
);
644 (void) memcpy(op
, anchor
, iend
- anchor
);
649 return (int)(((char *)op
) - dest
);
654 /* Note : this function is valid only if isize < LZ4_64KLIMIT */
655 #define LZ4_64KLIMIT ((1 << 16) + (MFLIMIT - 1))
656 #define HASHLOG64K (HASH_LOG + 1)
657 #define HASH64KTABLESIZE (1U << HASHLOG64K)
658 #define LZ4_HASH64K_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH*8) - \
660 #define LZ4_HASH64K_VALUE(p) LZ4_HASH64K_FUNCTION(A32(p))
663 LZ4_compress64kCtx(void *ctx
, const char *source
, char *dest
, int isize
,
666 struct refTables
*srt
= (struct refTables
*)ctx
;
667 U16
*HashTable
= (U16
*) (srt
->hashTable
);
669 const BYTE
*ip
= (BYTE
*) source
;
670 const BYTE
*anchor
= ip
;
671 const BYTE
*const base
= ip
;
672 const BYTE
*const iend
= ip
+ isize
;
673 const BYTE
*const oend
= (BYTE
*) dest
+ osize
;
674 const BYTE
*const mflimit
= iend
- MFLIMIT
;
675 #define matchlimit (iend - LASTLITERALS)
677 BYTE
*op
= (BYTE
*) dest
;
680 const int skipStrength
= SKIPSTRENGTH
;
684 if (isize
< MINLENGTH
)
689 forwardH
= LZ4_HASH64K_VALUE(ip
);
693 int findMatchAttempts
= (1U << skipStrength
) + 3;
694 const BYTE
*forwardIp
= ip
;
701 int step
= findMatchAttempts
++ >> skipStrength
;
703 forwardIp
= ip
+ step
;
705 if (forwardIp
> mflimit
) {
709 forwardH
= LZ4_HASH64K_VALUE(forwardIp
);
710 ref
= base
+ HashTable
[h
];
711 HashTable
[h
] = ip
- base
;
713 } while (A32(ref
) != A32(ip
));
716 while ((ip
> anchor
) && (ref
> (BYTE
*) source
) &&
717 (ip
[-1] == ref
[-1])) {
722 /* Encode Literal length */
723 length
= ip
- anchor
;
726 /* Check output limit */
727 if (unlikely(op
+ length
+ (2 + 1 + LASTLITERALS
) +
728 (length
>> 8) > oend
))
731 if (length
>= (int)RUN_MASK
) {
732 *token
= (RUN_MASK
<< ML_BITS
);
733 len
= length
- RUN_MASK
;
734 for (; len
> 254; len
-= 255)
738 *token
= (length
<< ML_BITS
);
741 LZ4_BLINDCOPY(anchor
, op
, length
);
745 LZ4_WRITE_LITTLEENDIAN_16(op
, ip
- ref
);
749 ref
+= MINMATCH
; /* MinMatch verified */
751 while (ip
< matchlimit
- (STEPSIZE
- 1)) {
752 UARCH diff
= AARCH(ref
) ^ AARCH(ip
);
758 ip
+= LZ4_NbCommonBytes(diff
);
762 if ((ip
< (matchlimit
- 3)) && (A32(ref
) == A32(ip
))) {
767 if ((ip
< (matchlimit
- 1)) && (A16(ref
) == A16(ip
))) {
771 if ((ip
< matchlimit
) && (*ref
== *ip
))
775 /* Encode MatchLength */
777 /* Check output limit */
778 if (unlikely(op
+ (1 + LASTLITERALS
) + (len
>> 8) > oend
))
780 if (len
>= (int)ML_MASK
) {
783 for (; len
> 509; len
-= 510) {
795 /* Test end of chunk */
801 HashTable
[LZ4_HASH64K_VALUE(ip
- 2)] = ip
- 2 - base
;
803 /* Test next position */
804 ref
= base
+ HashTable
[LZ4_HASH64K_VALUE(ip
)];
805 HashTable
[LZ4_HASH64K_VALUE(ip
)] = ip
- base
;
806 if (A32(ref
) == A32(ip
)) {
811 /* Prepare next loop */
813 forwardH
= LZ4_HASH64K_VALUE(ip
);
817 /* Encode Last Literals */
819 int lastRun
= iend
- anchor
;
820 if (op
+ lastRun
+ 1 + ((lastRun
+ 255 - RUN_MASK
) / 255) >
823 if (lastRun
>= (int)RUN_MASK
) {
824 *op
++ = (RUN_MASK
<< ML_BITS
);
826 for (; lastRun
> 254; lastRun
-= 255)
828 *op
++ = (BYTE
)lastRun
;
830 *op
++ = (lastRun
<< ML_BITS
);
831 (void) memcpy(op
, anchor
, iend
- anchor
);
836 return (int)(((char *)op
) - dest
);
840 real_LZ4_compress(const char *source
, char *dest
, int isize
, int osize
)
845 ASSERT(lz4_cache
!= NULL
);
846 ctx
= kmem_cache_alloc(lz4_cache
, KM_SLEEP
);
849 * out of kernel memory, gently fall through - this will disable
850 * compression in zio_compress_data
855 memset(ctx
, 0, sizeof (struct refTables
));
857 if (isize
< LZ4_64KLIMIT
)
858 result
= LZ4_compress64kCtx(ctx
, source
, dest
, isize
, osize
);
860 result
= LZ4_compressCtx(ctx
, source
, dest
, isize
, osize
);
862 kmem_cache_free(lz4_cache
, ctx
);
869 lz4_cache
= kmem_cache_create("lz4_cache",
870 sizeof (struct refTables
), 0, NULL
, NULL
, NULL
, NULL
, NULL
, 0);
877 kmem_cache_destroy(lz4_cache
);