mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-18 03:06:43 +00:00
2152247c55
Add s/w lzo/lzorle compression support. Link: https://lkml.kernel.org/r/20240902105656.1383858-6-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
194 B
C
11 lines
194 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef __BACKEND_LZO_H__
|
|
#define __BACKEND_LZO_H__
|
|
|
|
#include "zcomp.h"
|
|
|
|
extern const struct zcomp_ops backend_lzo;
|
|
|
|
#endif /* __BACKEND_LZO_H__ */
|