Lines Matching refs:squashfs

4 Subject: [PATCH v5 4/5] squashfs: Add zstd support
18 `contrib/linux-kernel/squashfs-benchmark.sh` [2] for details.
41 [2] https://github.com/facebook/zstd/blob/dev/contrib/linux-kernel/squashfs-benchmark.sh
52 - Fix ZSTD_DStream initialization code in squashfs
55 fs/squashfs/Kconfig | 14 +++++
56 fs/squashfs/Makefile | 1 +
57 fs/squashfs/decompressor.c | 7 +++
58 fs/squashfs/decompressor.h | 4 ++
59 fs/squashfs/squashfs_fs.h | 1 +
60 fs/squashfs/zstd_wrapper.c | 151 +++++++++++++++++++++++++++++++++++++++++++++
62 create mode 100644 fs/squashfs/zstd_wrapper.c
64 diff --git a/fs/squashfs/Kconfig b/fs/squashfs/Kconfig
66 --- a/fs/squashfs/Kconfig
67 +++ b/fs/squashfs/Kconfig
89 diff --git a/fs/squashfs/Makefile b/fs/squashfs/Makefile
91 --- a/fs/squashfs/Makefile
92 +++ b/fs/squashfs/Makefile
93 @@ -15,3 +15,4 @@ squashfs-$(CONFIG_SQUASHFS_LZ4) += lz4_wrapper.o
94 squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
95 squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
96 squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o
97 +squashfs-$(CONFIG_SQUASHFS_ZSTD) += zstd_wrapper.o
98 diff --git a/fs/squashfs/decompressor.c b/fs/squashfs/decompressor.c
100 --- a/fs/squashfs/decompressor.c
101 +++ b/fs/squashfs/decompressor.c
123 diff --git a/fs/squashfs/decompressor.h b/fs/squashfs/decompressor.h
125 --- a/fs/squashfs/decompressor.h
126 +++ b/fs/squashfs/decompressor.h
136 diff --git a/fs/squashfs/squashfs_fs.h b/fs/squashfs/squashfs_fs.h
138 --- a/fs/squashfs/squashfs_fs.h
139 +++ b/fs/squashfs/squashfs_fs.h
148 diff --git a/fs/squashfs/zstd_wrapper.c b/fs/squashfs/zstd_wrapper.c
152 +++ b/fs/squashfs/zstd_wrapper.c
181 +#include "squashfs.h"