mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-10 19:47:12 +00:00
assert(x) should emit a warning if x is false. WARN_ON(x) emits a warning if x is true. Thus, assert(x) should be defined as WARN_ON(!x) rather than WARN_ON(x). Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Signed-off-by: Nick Terrell <terrelln@fb.com> |
||
|---|---|---|
| .. | ||
| common | ||
| compress | ||
| decompress | ||
| decompress_sources.h | ||
| Makefile | ||
| zstd_common_module.c | ||
| zstd_compress_module.c | ||
| zstd_decompress_module.c | ||