mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
Introduce non-resident Windows System Compression (WOF) decompression support. Add wof.c containing parse_wof_chunk_table() and ntfs_read_wof_compressed_block(), and routing them via transparent codec ops table with dynamic scratch memory allocation. Hook up ntfs_readpage/read_folio paths in aops.c to delegate to the WOF block reader when NInoWofCompressed is set. Signed-off-by: Hyunchul Lee <hyc.lee@gmail.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
14 lines
481 B
Makefile
14 lines
481 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_NTFS_FS) += ntfs.o
|
|
|
|
ntfs-y := aops.o attrib.o collate.o dir.o file.o index.o inode.o \
|
|
mft.o mst.o namei.o runlist.o super.o unistr.o attrlist.o ea.o \
|
|
upcase.o bitmap.o lcnalloc.o logfile.o reparse.o compress.o \
|
|
iomap.o debug.o sysctl.o object_id.o bdev-io.o
|
|
|
|
ntfs-$(CONFIG_NTFS_FS_WOF_COMPRESSION) += wof.o \
|
|
lib/decompress_common.o lib/lzx_decompress.o lib/xpress_decompress.o
|
|
|
|
ccflags-$(CONFIG_NTFS_DEBUG) += -DDEBUG
|