aboutsummaryrefslogtreecommitdiffstats
path: root/lib/zstd/compress.c
diff options
context:
space:
mode:
authorNick Desaulniers <[email protected]>2020-11-16 04:35:31 +0000
committerGustavo A. R. Silva <[email protected]>2020-11-18 20:15:17 +0000
commit4c1ca831adb1010e473a18eb01b3fbef7595f230 (patch)
treeb1384a54e1a94b1f4f8943d5a81216efeaf9a579 /lib/zstd/compress.c
parentpowerpc: boot: include compiler_attributes.h (diff)
downloadkernel-4c1ca831adb1010e473a18eb01b3fbef7595f230.tar.gz
kernel-4c1ca831adb1010e473a18eb01b3fbef7595f230.zip
Revert "lib: Revert use of fallthrough pseudo-keyword in lib/"
This reverts commit 6a9dc5fd6170 ("lib: Revert use of fallthrough pseudo-keyword in lib/") Now that we can build arch/powerpc/boot/ free of -Wimplicit-fallthrough, re-enable these fixes for lib/. Signed-off-by: Nick Desaulniers <[email protected]> Tested-by: Nathan Chancellor <[email protected]> Reviewed-by: Nathan Chancellor <[email protected]> Reviewed-by: Gustavo A. R. Silva <[email protected]> Reviewed-by: Miguel Ojeda <[email protected]> Link: https://github.com/ClangBuiltLinux/linux/issues/236 Signed-off-by: Gustavo A. R. Silva <[email protected]>
Diffstat (limited to 'lib/zstd/compress.c')
-rw-r--r--lib/zstd/compress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zstd/compress.c b/lib/zstd/compress.c
index 5e0b67003e55..b080264ed3ad 100644
--- a/lib/zstd/compress.c
+++ b/lib/zstd/compress.c
@@ -3182,7 +3182,7 @@ static size_t ZSTD_compressStream_generic(ZSTD_CStream *zcs, void *dst, size_t *
zcs->outBuffFlushedSize = 0;
zcs->stage = zcss_flush; /* pass-through to flush stage */
}
- /* fall through */
+ fallthrough;
case zcss_flush: {
size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize;