mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
522e010b58
This patch adds different types of NTFS-applicable compressions: - lznt - lzx - xpress Latter two (lzx, xpress) implement Windows Compact OS feature and were taken from ntfs-3g system comression plugin authored by Eric Biggers (https://github.com/ebiggers/ntfs-3g-system-compression) which were ported to ntfs3 and adapted to Linux Kernel environment. Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
27 lines
967 B
C
27 lines
967 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Adapted for linux kernel by Alexander Mamaev:
|
|
* - remove implementations of get_unaligned_
|
|
* - assume GCC is always defined
|
|
* - ISO C90
|
|
* - linux kernel code style
|
|
*/
|
|
|
|
|
|
/* globals from xpress_decompress.c */
|
|
struct xpress_decompressor *xpress_allocate_decompressor(void);
|
|
void xpress_free_decompressor(struct xpress_decompressor *d);
|
|
int xpress_decompress(struct xpress_decompressor *__restrict d,
|
|
const void *__restrict compressed_data,
|
|
size_t compressed_size,
|
|
void *__restrict uncompressed_data,
|
|
size_t uncompressed_size);
|
|
|
|
/* globals from lzx_decompress.c */
|
|
struct lzx_decompressor *lzx_allocate_decompressor(void);
|
|
void lzx_free_decompressor(struct lzx_decompressor *d);
|
|
int lzx_decompress(struct lzx_decompressor *__restrict d,
|
|
const void *__restrict compressed_data,
|
|
size_t compressed_size, void *__restrict uncompressed_data,
|
|
size_t uncompressed_size);
|