]> git.hungrycats.org Git - linux/commit
smb: move LZ77 compression into common code
authorNamjae Jeon <linkinjeon@kernel.org>
Wed, 10 Jun 2026 09:44:55 +0000 (18:44 +0900)
committerSteve French <stfrench@microsoft.com>
Tue, 16 Jun 2026 23:57:21 +0000 (18:57 -0500)
commit0121b154147f5affd1039ca4f8d9a0fc194142f6
tree2db7c206cbc729183a4da93bb7a1ff536948c7c1
parent13f3942f2bf45856bb751faed2f0c4618f41ca20
smb: move LZ77 compression into common code

Move the LZ77 codec in cifs.ko to smb/common/ so both the SMB
client and ksmbd can use it.

Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/Makefile
fs/smb/client/compress.c
fs/smb/client/compress.h
fs/smb/client/compress/lz77.c [deleted file]
fs/smb/client/compress/lz77.h [deleted file]
fs/smb/common/Makefile
fs/smb/common/compress/compress.h [new file with mode: 0644]
fs/smb/common/compress/lz77.c [new file with mode: 0644]
fs/smb/common/compress/lz77.h [new file with mode: 0644]