erofs: avoid allocating DEFLATE streams before mounting
authorGao Xiang <hsiangkao@linux.alibaba.com>
Mon, 20 May 2024 09:01:06 +0000 (17:01 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Mon, 20 May 2024 19:07:39 +0000 (03:07 +0800)
commit80eb4f62056d6ae709bdd0636ab96ce660f494b2
treeddb69c50fddeeae29ad275e3f0b08abc043daaa2
parent5587a8172eb6040e388c3fc9fa6553b99510da9e
erofs: avoid allocating DEFLATE streams before mounting

Currently, each DEFLATE stream takes one 32 KiB permanent internal
window buffer even if there is no running instance which uses DEFLATE
algorithm.

It's unexpected and wasteful on embedded devices with limited resources
and servers with hundreds of CPU cores if DEFLATE is enabled but unused.

Fixes: ffa09b3bd024 ("erofs: DEFLATE compression support")
Cc: <stable@vger.kernel.org> # 6.6+
Reviewed-by: Sandeep Dhavale <dhavale@google.com>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240520090106.2898681-1-hsiangkao@linux.alibaba.com
fs/erofs/decompressor_deflate.c