diff options
author | Gao Xiang <hsiangkao@linux.alibaba.com> | 2024-07-11 07:36:59 +0200 |
---|---|---|
committer | Gao Xiang <hsiangkao@linux.alibaba.com> | 2024-07-11 09:14:26 +0200 |
commit | 1001042e54ef324c0c665b60a012519be05ae022 (patch) | |
tree | 65742498ae8692f4ff4374a6d4cc672d24d1d75b /fs/coda | |
parent | erofs: get rid of z_erofs_map_blocks_iter_* tracepoints (diff) | |
download | linux-1001042e54ef324c0c665b60a012519be05ae022.tar.xz linux-1001042e54ef324c0c665b60a012519be05ae022.zip |
erofs: avoid refcounting short-lived pages
LZ4 always reuses the decompressed buffer as its LZ77 sliding window
(dynamic dictionary) for optimal performance. However, in specific
cases, the output buffer may not fully contain valid page cache pages,
resulting in the use of short-lived pages for temporary purposes.
Due to the limited sliding window size, LZ4 shortlived bounce pages can
also be reused in a sliding manner, so each bounce page can be vmapped
multiple times in different relative positions by design. In order to
avoiding double frees, currently, reuse counts are recorded via page
refcount, but it will no longer be used as-is in the future world of
Memdescs.
Just maintain a lookup table to check if a shortlived page is reused.
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240711053659.1364989-1-hsiangkao@linux.alibaba.com
Diffstat (limited to 'fs/coda')
0 files changed, 0 insertions, 0 deletions