Home
last modified time | relevance | path

Searched refs:kout (Results 1 – 5 of 5) sorted by relevance

/linux/fs/erofs/
H A Ddecompressor.c353 if (dctx->kout) in z_erofs_stream_switch_bufs()
354 kunmap_local(dctx->kout); in z_erofs_stream_switch_bufs()
361 dctx->kout = NULL; in z_erofs_stream_switch_bufs()
367 dctx->kout = kmap_local_page(*pgo); in z_erofs_stream_switch_bufs()
368 *dst = dctx->kout + rq->pageofs_out; in z_erofs_stream_switch_bufs()
370 *dst = dctx->kout = NULL; in z_erofs_stream_switch_bufs()
378 if (dctx->kout) /* unlike kmap(), take care of the orders */ in z_erofs_stream_switch_bufs()
379 kunmap_local(dctx->kout); in z_erofs_stream_switch_bufs()
387 if (dctx->kout) { in z_erofs_stream_switch_bufs()
388 j = (u8 *)*dst - dctx->kout; in z_erofs_stream_switch_bufs()
[all …]
H A Ddecompressor_deflate.c168 if (dctx.kout) in __z_erofs_deflate_decompress()
169 kunmap_local(dctx.kout); in __z_erofs_deflate_decompress()
H A Ddecompressor_lzma.c217 if (dctx.kout) in z_erofs_lzma_decompress()
218 kunmap_local(dctx.kout); in z_erofs_lzma_decompress()
H A Ddecompressor_zstd.c201 if (dctx.kout) in z_erofs_zstd_decompress()
202 kunmap_local(dctx.kout); in z_erofs_zstd_decompress()
H A Dcompress.h68 u8 *kin, *kout; /* buffer mapped pointers */ member