lib: zstd: Add kernel-specific API
authorNick Terrell <terrelln@fb.com>
Fri, 11 Sep 2020 23:49:00 +0000 (16:49 -0700)
committerNick Terrell <terrelln@fb.com>
Tue, 9 Nov 2021 00:55:21 +0000 (16:55 -0800)
commitcf30f6a5f0c60ec98a637b836bef6915f602c6ab
treeadcf2375d3069e173cdb1c1e1961ac168fd03d52
parentd2f38a3c6507b2520101f9a3807ed98f1bdc545a
lib: zstd: Add kernel-specific API

This patch:
- Moves `include/linux/zstd.h` -> `include/linux/zstd_lib.h`
- Updates modified zstd headers to yearless copyright
- Adds a new API in `include/linux/zstd.h` that is functionally
  equivalent to the in-use subset of the current API. Functions are
  renamed to avoid symbol collisions with zstd, to make it clear it is
  not the upstream zstd API, and to follow the kernel style guide.
- Updates all callers to use the new API.

There are no functional changes in this patch. Since there are no
functional change, I felt it was okay to update all the callers in a
single patch. Once the API is approved, the callers are mechanically
changed.

This patch is preparing for the 3rd patch in this series, which updates
zstd to version 1.4.10. Since the upstream zstd API is no longer exposed
to callers, the update can happen transparently.

Signed-off-by: Nick Terrell <terrelln@fb.com>
Tested By: Paul Jones <paul@pauljones.id.au>
Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com> # LLVM/Clang v13.0.0 on x86-64
Tested-by: Jean-Denis Girard <jd.girard@sysnux.pf>
crypto/zstd.c
fs/btrfs/zstd.c
fs/f2fs/compress.c
fs/f2fs/super.c
fs/pstore/platform.c
fs/squashfs/zstd_wrapper.c
include/linux/zstd.h
include/linux/zstd_lib.h [new file with mode: 0644]
lib/decompress_unzstd.c
lib/zstd/compress.c
lib/zstd/decompress.c