mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
mm: set the sleep_mapped to true for zbud and z3fold
zpool driver adds a flag to indicate whether the zpool driver can enter an atomic context after mapping. This patch sets it true for z3fold and zbud. Link: https://lkml.kernel.org/r/1611035683-12732-3-git-send-email-tiantao6@hisilicon.com Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Reviewed-by: Vitaly Wool <vitaly.wool@konsulko.com> Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reported-by: Mike Galbraith <efault@gmx.de> Cc: Seth Jennings <sjenning@redhat.com> Cc: Dan Streetman <ddstreet@ieee.org> Cc: Barry Song <song.bao.hua@hisilicon.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -1771,6 +1771,7 @@ static u64 z3fold_zpool_total_size(void *pool)
|
|||||||
|
|
||||||
static struct zpool_driver z3fold_zpool_driver = {
|
static struct zpool_driver z3fold_zpool_driver = {
|
||||||
.type = "z3fold",
|
.type = "z3fold",
|
||||||
|
.sleep_mapped = true,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.create = z3fold_zpool_create,
|
.create = z3fold_zpool_create,
|
||||||
.destroy = z3fold_zpool_destroy,
|
.destroy = z3fold_zpool_destroy,
|
||||||
|
@@ -203,6 +203,7 @@ static u64 zbud_zpool_total_size(void *pool)
|
|||||||
|
|
||||||
static struct zpool_driver zbud_zpool_driver = {
|
static struct zpool_driver zbud_zpool_driver = {
|
||||||
.type = "zbud",
|
.type = "zbud",
|
||||||
|
.sleep_mapped = true,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.create = zbud_zpool_create,
|
.create = zbud_zpool_create,
|
||||||
.destroy = zbud_zpool_destroy,
|
.destroy = zbud_zpool_destroy,
|
||||||
|
Reference in New Issue
Block a user