diff options
| author | Nikhil Gurudasani <nikhilgurudasani314@gmail.com> | 2026-08-30 16:11:09 +0530 |
|---|---|---|
| committer | Gao Xiang <xiang@kernel.org> | 2026-09-02 10:32:01 +0800 |
| commit | 617d0d8d199ba1790c94310fd75a22d01c97a8d6 (patch) | |
| tree | fb1684156f321a7aa9ddffbdba1ba053b5e82026 /scripts/basic | |
| parent | 839f075aabdf5c21048f9801b87c0b841dd3d064 (diff) | |
| download | linux-617d0d8d199ba1790c94310fd75a22d01c97a8d6.tar.gz linux-617d0d8d199ba1790c94310fd75a22d01c97a8d6.zip | |
erofs: preserve LZMA decoders on resize failure
The pool-resize path frees each stream's old decoder before allocating
its replacement. If an allocation fails after some streams have already
been replaced, the failed stream is put back on the list with state ==
NULL. z_erofs_lzma_max_dictsize is still advanced as if the whole
pool had been resized.
An existing LZMA mount can select the broken stream and pass
NULL to xz_dec_microlzma_reset(). A retry at the same size also
skip another resize attempt. Since the global maximum was advanced,
thus, the invalid state is left unrepaired.
Allocate each replacement before freeing the old decoder, temporarily
retaining one old decoder during allocation. Stop at the first failure
and advance z_erofs_lzma_max_dictsize only after all streams satisfy
the request.
Record each stream's dictionary capacity so retries can skip streams
already enlarged before a partial failure.
Fixes: 622ceaddb764 ("erofs: lzma compression support")
Cc: stable@vger.kernel.org
Signed-off-by: Nikhil Gurudasani <nikhilgurudasani314@gmail.com>
Reviewed-by: Gao Xiang <xiang@kernel.org>
Signed-off-by: Gao Xiang <xiang@kernel.org>
Diffstat (limited to 'scripts/basic')
0 files changed, 0 insertions, 0 deletions
