[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20211013092906.1434-1-zbestahu@gmail.com>
Date: Wed, 13 Oct 2021 17:29:05 +0800
From: Yue Hu <zbestahu@...il.com>
To: xiang@...nel.org, chao@...nel.org
Cc: linux-erofs@...ts.ozlabs.org, linux-kernel@...r.kernel.org,
huyue2@...ong.com, zhangwen@...ong.com, zbestahu@....com
Subject: [PATCH] erofs: fix the per-CPU buffer decompression for small output size
From: Yue Hu <huyue2@...ong.com>
Note that z_erofs_lz4_decompress() will return a positive value if
decompression succeeds. However, we do not copy_from_pcpubuf() due
to !ret. Let's fix it.
Signed-off-by: Yue Hu <huyue2@...ong.com>
---
fs/erofs/decompressor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/erofs/decompressor.c b/fs/erofs/decompressor.c
index a5bc4b1..e4cab4e 100644
--- a/fs/erofs/decompressor.c
+++ b/fs/erofs/decompressor.c
@@ -326,7 +326,7 @@ static int z_erofs_decompress_generic(struct z_erofs_decompress_req *rq,
rq->inplace_io = false;
ret = alg->decompress(rq, dst);
- if (!ret)
+ if (ret > 0)
copy_from_pcpubuf(rq->out, dst, rq->pageofs_out,
rq->outputsize);
--
1.9.1
Powered by blists - more mailing lists