drm/panthor: Don't declare a queue blocked if deferred operations are pending
[drm/drm-misc.git] / fs / smb / client / compress / lz77.h
blobcdcb191b48a23b0795dd400daa709ed804d226d6
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2024, SUSE LLC
5 * Authors: Enzo Matsumiya <ematsumiya@suse.de>
7 * Implementation of the LZ77 "plain" compression algorithm, as per MS-XCA spec.
8 */
9 #ifndef _SMB_COMPRESS_LZ77_H
10 #define _SMB_COMPRESS_LZ77_H
12 #include <linux/kernel.h>
14 int lz77_compress(const void *src, u32 slen, void *dst, u32 *dlen);
15 #endif /* _SMB_COMPRESS_LZ77_H */