mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
lib: lz4hc: export LZ4_resetStreamHC symbol
This symbol is needed to enable lz4hc dictionary support. Link: https://lkml.kernel.org/r/20240902105656.1383858-3-senozhatsky@chromium.org Signed-off-by: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Nick Terrell <terrelln@fb.com> Cc: Minchan Kim <minchan@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
4fc4187984
commit
7518847430
1 changed files with 1 additions and 0 deletions
|
@ -621,6 +621,7 @@ void LZ4_resetStreamHC(LZ4_streamHC_t *LZ4_streamHCPtr, int compressionLevel)
|
|||
LZ4_streamHCPtr->internal_donotuse.base = NULL;
|
||||
LZ4_streamHCPtr->internal_donotuse.compressionLevel = (unsigned int)compressionLevel;
|
||||
}
|
||||
EXPORT_SYMBOL(LZ4_resetStreamHC);
|
||||
|
||||
int LZ4_loadDictHC(LZ4_streamHC_t *LZ4_streamHCPtr,
|
||||
const char *dictionary,
|
||||
|
|
Loading…
Reference in a new issue