Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07e83be9 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm: zcache: do not wake up kswapd for zcache allocs"

parents 8b71fcd4 8b1f707d
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -74,7 +74,8 @@ static u64 zcache_pool_shrink_pages;
static atomic_t zcache_stored_pages = ATOMIC_INIT(0);
static atomic_t zcache_stored_pages = ATOMIC_INIT(0);


#define GFP_ZCACHE \
#define GFP_ZCACHE \
	(__GFP_FS | __GFP_NORETRY | __GFP_NOWARN | __GFP_NOMEMALLOC)
	(__GFP_FS | __GFP_NORETRY | __GFP_NOWARN | \
		__GFP_NOMEMALLOC | __GFP_NO_KSWAPD)
/*
/*
 * Zcache receives pages for compression through the Cleancache API and is able
 * Zcache receives pages for compression through the Cleancache API and is able
 * to evict pages from its own compressed pool on an LRU basis in the case that
 * to evict pages from its own compressed pool on an LRU basis in the case that