mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
73e7d81abb
Add s/w zstd compression. Link: https://lkml.kernel.org/r/20240902105656.1383858-9-senozhatsky@chromium.org Signed-off-by: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Minchan Kim <minchan@kernel.org> Cc: Nick Terrell <terrelln@fb.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
11 lines
198 B
C
11 lines
198 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef __BACKEND_ZSTD_H__
|
|
#define __BACKEND_ZSTD_H__
|
|
|
|
#include "zcomp.h"
|
|
|
|
extern const struct zcomp_ops backend_zstd;
|
|
|
|
#endif /* __BACKEND_ZSTD_H__ */
|