linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Fix the compatibility of zsmalloc and zswap
@ 2021-02-13  7:58 Barry Song
  2021-02-13  7:58 ` [PATCH v2 1/2] mm/zswap: add a flag to indicate if zpool can do sleep map Barry Song
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Barry Song @ 2021-02-13  7:58 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, Barry Song

The compatibility of zsmalloc and zswap was broken by commit 1ec3b5fe6eec
("mm/zswap: move to use crypto_acomp API for hardware acceleration").

patch #1 add a flag to zpool, then zswap used it to determine if zpool
drivers such as zbud/z3fold/zsmalloc will enter an atomic context after
mapping. the difference between zbud/z3fold and zsmalloc is that zsmalloc
requires an atomic context since its map function holds a
preempt-disabled lock, but zbud/z3fold don't require an atomic context.
so patch #2 set flag sleep_mapped to true indicates that zbud/z3fold can
sleep after mapping. zsmalloc didn't support sleep after mapping, so not
set that flag to true.

-v2:
  * folded-merged sanitizer check patches into tiantao's patch1(done by
  Andrew);
  * added fixes tag in changelog and refined commit log(done by Barry)

Tian Tao (2):
  mm/zswap: add a flag to indicate if zpool can do sleep map
  mm: set the sleep_mapped to true for zbud and z3fold

 include/linux/zpool.h |  3 +++
 mm/z3fold.c           |  1 +
 mm/zbud.c             |  1 +
 mm/zpool.c            | 13 +++++++++++
 mm/zswap.c            | 51 ++++++++++++++++++++++++++++++++++++++-----
 5 files changed, 64 insertions(+), 5 deletions(-)

-- 
2.25.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-13 22:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-13  7:58 [PATCH v2 0/2] Fix the compatibility of zsmalloc and zswap Barry Song
2021-02-13  7:58 ` [PATCH v2 1/2] mm/zswap: add a flag to indicate if zpool can do sleep map Barry Song
2021-02-13  7:58 ` [PATCH v2 2/2] mm: set the sleep_mapped to true for zbud and z3fold Barry Song
2021-02-13 22:33 ` [PATCH v2 0/2] Fix the compatibility of zsmalloc and zswap Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox