2.に関して、zswapは書き戻し時にページを圧縮解除し、@ Cbhiheのコメントを確認しているようです。
mm / zswap.c、行828:
/*
* Attempts to free an entry by adding a page to the swap cache,
* decompressing the entry data into the page, and issuing a
* bio write to write the page back to the swap device.
* ...
*/
static int zswap_writeback_entry(struct zpool *pool, unsigned long handle)
{
...
case ZSWAP_SWAPCACHE_NEW: /* page is locked */
/* decompress */
...
ret = crypto_comp_decompress(tfm, src, entry->length,
dst, &dlen);
...
kunmap_atomic(dst);
$ git show
commit 1573d2caf713874cfe0d1336c823d0fb548d8bed
Merge: 4cdf8db 0a86248
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Tue Oct 11 23:59:07 2016 -0700
したがって、zswapは、圧縮されたインラムキャッシュがディスクに書き戻される直前に忘れられる可能性が高い状況で役立ちます。最終的に実際のスワップデバイスによってバックアップされる必要がある、長くて長いヒープを持つアプリケーション用ではありません。