mm/zswap.c | 144 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 97 insertions(+), 47 deletions(-)
Every stored page has a struct zswap_entry, so its size is pure per-page
overhead. On 64-bit it is currently 56 bytes, of which 8 bytes are a
pointer to the owning zswap_pool.
Only a handful of pools are ever live: a new pool is created only when
the compressor is (re)set, and pools are reused across compressor
switches. That makes a per-entry pool pointer more expensive than it
needs to be, and the RCU list that currently tracks pools is more
machinery than this needs once each pool already has a stable id.
This series:
1. Releases retired pools with queue_rcu_work() instead of a worker
calling synchronize_rcu(), so the release worker no longer blocks
on an RCU grace period.
2. Replaces the zswap_pools list with an allocating xarray
(XA_FLAGS_ALLOC1 | XA_FLAGS_LOCK_BH) and a separate RCU-protected
current-pool pointer, giving each pool a stable small id. Ids
start at 1. The reserved id 0 is never allocated, so looking it
up resolves to NULL. The table grows as needed up to 255 live
pools (u8 pool_idx), not a fixed slot array.
3. Stores that u8 pool id in each zswap_entry instead of the pool
pointer. The u8 fits in padding after the bool referenced field,
so the entry shrinks from 56 to 48 bytes on 64-bit (~2MiB of
metadata saved per 1GiB of data held in zswap).
Runtime compressor switching is preserved. Pool ids are bounded to
1..255 because struct zswap_entry stores the id in a u8. The cap
counts every id still in the xarray, including a killed pool that still
has entries. Ids are reused when a pool is erased. Switching back to
a compressor that still has a pool in the xarray resurrects it rather
than allocating a new id. If all usable ids are full, creating a pool
for another compressor fails and the compressor switch is rejected.
On 64-bit, struct zswap_entry is 56 -> 48 bytes, which fits 73 -> 85
objects in a 4K slab.
Benchmark (x86_64, compressor=lzo, MADV_PAGEOUT store + fault-in load):
- e2e store+load median latency: no measurable regression vs baseline
at matched stored_delta
Each store, free, and decompress looks up the pool with xa_load()
instead of following a pointer. With only a handful of live pools the
xarray walk is short.
Testing
=======
- Boot with DEBUG_ATOMIC_SLEEP + lockdep/PROVE_RCU + KASAN:
zswap store/load, shrinker writeback, and compressor switch
(retire, then switch back to resurrect) pass
This series is based on akpm/mm-unstable as of 2026-09-04
(20cab322c95c).
To: Johannes Weiner <hannes@cmpxchg.org>
To: Yosry Ahmed <yosry@kernel.org>
To: Nhat Pham <nphamcs@gmail.com>
To: Chengming Zhou <chengming.zhou@linux.dev>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Li <chrisl@kernel.org>
Cc: linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Jianyue Wu <wujianyue000@gmail.com>
Changes since RFC v4:
- Replace the RCU pool list with an allocating xarray
(XA_FLAGS_ALLOC1 | XA_FLAGS_LOCK_BH) and a separate RCU-protected
current-pool pointer.
- Resolve entry->pool_idx with xa_load() under rcu_read_lock().
- Write pool_idx before the entry is stored in the swap tree, so a
lookup cannot see a stale pool_idx left over from slab reuse.
- Retire pools with queue_rcu_work() on system_percpu_wq.
- Drop the RFC tag.
Link: https://lore.kernel.org/all/20260830114731.8322-1-wujianyue000@gmail.com/
Link: https://lore.kernel.org/all/20260815-shrink_zswap_entry_0815_v2-v3-3-0171bd86a667@gmail.com/
Link: https://lore.kernel.org/all/20260731-shrink_zswap_entry_v2-0-0-v2-0-e72083aa8734@gmail.com/
Link: https://lore.kernel.org/all/20260726-shrink_zswap_entry_v1-0-0-v1-1-30957e4d0cb6@gmail.com/
---
Jianyue Wu (3):
mm/zswap: release retired pools via queue_rcu_work() instead of
synchronize_rcu()
mm/zswap: replace the zswap_pools list with an allocating xarray
mm/zswap: reference the pool by id to shrink struct zswap_entry
mm/zswap.c | 144 ++++++++++++++++++++++++++++++++++++-----------------
1 file changed, 97 insertions(+), 47 deletions(-)
base-commit: 20cab322c95cea0327215bb81a05df69336032dd
--
2.43.0
Every stored page has a struct zswap_entry, so its size is pure per-page
overhead. On 64-bit it is currently 56 bytes, of which 8 bytes are a
pointer to the owning zswap_pool.
Only a handful of pools are ever live: a new pool is created only when
the compressor is (re)set, and pools are reused across compressor
switches. A list cannot look a pool up by id. An allocating xarray
can, which lets each zswap_entry store a u8 instead of a pointer.
This series:
1. Releases retired pools with queue_rcu_work() instead of a worker
calling synchronize_rcu(), so the release worker no longer blocks
on an RCU grace period.
2. Replaces the zswap_pools list with an allocating xarray
(XA_FLAGS_ALLOC1 | XA_FLAGS_LOCK_BH) and a separate RCU-protected
current-pool pointer, giving each pool a stable small id. Ids
start at 1. The reserved id 0 is never allocated, so looking it
up resolves to NULL. The table grows as needed up to 255 live
pools (u8 pool_idx), not a fixed slot array.
3. Stores that u8 pool id in each zswap_entry instead of the pool
pointer. The u8 fits in padding after the bool referenced field.
On 64-bit that shrinks the entry from 56 to 48 bytes, which fits 73 to
85 objects in a 4K slab (~2MiB of metadata saved per 1GiB of data held
in zswap).
The 255-id cap counts every pool still in the xarray. Switching
compressor kills the old pool, but that pool stays in the table until
its last entry drops the pool's ref, so a draining pool still occupies
an id. The id is reused only after xa_erase. Switching back to a
compressor whose pool is still in the table resurrects it instead of
allocating a new id. If every id is occupied, creating a pool for
another compressor fails and the switch is rejected.
Pool table locking: xa_for_each() walks and the current-pool pointer
use an explicit rcu_read_lock(), because xa_for_each()'s own RCU does
not span the loop body. xa_load() takes RCU around the lookup itself,
so zswap_entry_pool() needs no extra rcu_read_lock(). The returned
pool stays valid because a live entry pins it via percpu_ref, so the
id cannot be reused under it. xa_lock is taken only in xa_alloc_bh()
and xa_erase_bh().
Benchmark (x86_64, compressor=lzo, MADV_PAGEOUT store + fault-in load):
- e2e store+load median latency: no measurable regression vs baseline
at matched stored_delta
Each store, free, and decompress looks up the pool with xa_load()
instead of following a pointer. With only a handful of live pools the
xarray walk is short.
Testing
=======
- Boot with DEBUG_ATOMIC_SLEEP + lockdep/PROVE_RCU + KASAN:
zswap store/load, shrinker writeback, and compressor switch
(retire, then switch back to resurrect) pass
This series is based on akpm/mm-unstable as of 2026-09-05
(d118502628f8).
To: Johannes Weiner <hannes@cmpxchg.org>
To: Yosry Ahmed <yosry@kernel.org>
To: Nhat Pham <nphamcs@gmail.com>
To: Chengming Zhou <chengming.zhou@linux.dev>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Li <chrisl@kernel.org>
Cc: linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Jianyue Wu <wujianyue000@gmail.com>
Changes since v5:
- Use xa_erase_bh() and move queue_rcu_work() out of xa_lock() in
__zswap_pool_empty().
- Drop the redundant rcu_read_lock() around zswap_entry_pool(). xa_load()
already takes RCU and a live entry pins its pool via percpu_ref.
- Replace xa_lock() protected pool walks with RCU. xa_lock() is now only for
xa_alloc_bh() and xa_erase_bh().
- Drop zswap_pool_current(), it only read the current pool under xa_lock(),
which this path no longer takes.
- Add a comment in zswap_total_pages() on why the outer rcu_read_lock()
remains (xa_for_each()'s RCU does not span the loop body).
- Rebase onto akpm/mm-unstable d118502628f8.
Link: https://lore.kernel.org/all/cover.1788528216.git.wujianyue000@gmail.com/
Link: https://lore.kernel.org/all/20260830114731.8322-1-wujianyue000@gmail.com/
Link: https://lore.kernel.org/all/20260815-shrink_zswap_entry_0815_v2-v3-3-0171bd86a667@gmail.com/
Link: https://lore.kernel.org/all/20260731-shrink_zswap_entry_v2-0-0-v2-0-e72083aa8734@gmail.com/
Link: https://lore.kernel.org/all/20260726-shrink_zswap_entry_v1-0-0-v1-1-30957e4d0cb6@gmail.com/
---
Jianyue Wu (3):
mm/zswap: release retired pools via queue_rcu_work() instead of synchronize_rcu()
mm/zswap: replace the zswap_pools list with an allocating xarray
mm/zswap: reference the pool by id to shrink struct zswap_entry
mm/zswap.c | 171 ++++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 101 insertions(+), 70 deletions(-)
---
base-commit: d118502628f8b673be9023db8bdf878f64a7ed45
change-id: 20260906-shrink_zswap_entry_v6-ed3d14c9001f
Best regards,
--
Jianyue Wu <wujianyue000@gmail.com>
When a pool's last reference is dropped, __zswap_pool_empty() removes it
from the pool list and schedules __zswap_pool_release(), which calls
synchronize_rcu() to wait for readers before tearing the pool down.
synchronize_rcu() is a synchronous, potentially long wait. Replace it
with queue_rcu_work(): __zswap_pool_empty() hands the pool to
queue_rcu_work(), which waits for a grace period asynchronously and then
runs __zswap_pool_release() from a worker for the sleepable teardown
(__zswap_pool_empty() can run in atomic context and must not block).
The grace-period guarantee is unchanged; the retirement path just no
longer blocks on it.
Suggested-by: Yosry Ahmed <yosry@kernel.org>
Signed-off-by: Jianyue Wu <wujianyue000@gmail.com>
Acked-by: Yosry Ahmed <yosry@kernel.org>
---
mm/zswap.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/mm/zswap.c b/mm/zswap.c
index f3ae3c81e48e..e456e5080531 100644
--- a/mm/zswap.c
+++ b/mm/zswap.c
@@ -155,7 +155,7 @@ struct zswap_pool {
struct crypto_acomp_ctx __percpu *acomp_ctx;
struct percpu_ref ref;
struct list_head list;
- struct work_struct release_work;
+ struct rcu_work release_rwork;
struct hlist_node node;
char tfm_name[CRYPTO_MAX_ALG_NAME];
};
@@ -379,10 +379,8 @@ static void zswap_pool_destroy(struct zswap_pool *pool)
static void __zswap_pool_release(struct work_struct *work)
{
- struct zswap_pool *pool = container_of(work, typeof(*pool),
- release_work);
-
- synchronize_rcu();
+ struct zswap_pool *pool = container_of(to_rcu_work(work),
+ typeof(*pool), release_rwork);
/* nobody should have been able to get a ref... */
WARN_ON(!percpu_ref_is_zero(&pool->ref));
@@ -406,8 +404,8 @@ static void __zswap_pool_empty(struct percpu_ref *ref)
list_del_rcu(&pool->list);
- INIT_WORK(&pool->release_work, __zswap_pool_release);
- schedule_work(&pool->release_work);
+ INIT_RCU_WORK(&pool->release_rwork, __zswap_pool_release);
+ queue_rcu_work(system_percpu_wq, &pool->release_rwork);
spin_unlock_bh(&zswap_pools_lock);
}
--
2.43.0
Originally zswap kept its pools on an RCU list whose head also served
as the current pool. Convert the pool table to an allocating xarray
keyed by a small integer id, and track the current pool with a separate
RCU-protected pointer.
The xarray gives each pool a stable id for a later zswap_entry shrink.
XA_FLAGS_ALLOC1 starts ids at 1, so id 0 remains reserved. The id range
is bounded by ZSWAP_MAX_POOL_ID because the later entry field is a u8.
Keep compressor switching close to the previous flow: look up an
existing pool with xa_for_each(), resurrect it if reused, or create a
new one. zswap_pool_create() allocates the pool's id and publishes it
into the xarray as its final step, so the create call either fully
publishes or fully unwinds on failure. Publishing makes the pool live,
so a caller that later fails (e.g. param_set_charp()) must still kill
the pool to erase it from the xarray.
Compressor switches update zswap_current_pool with rcu_assign_pointer(),
serialized by the module parameter lock, so no xa_lock is needed for
that update. The pool walk above is lockless under RCU. xa_lock is taken
only to allocate (xa_alloc_bh()) and erase (xa_erase_bh()) xarray
entries.
Suggested-by: Nhat Pham <nphamcs@gmail.com>
Suggested-by: Yosry Ahmed <yosry@kernel.org>
Suggested-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Jianyue Wu <wujianyue000@gmail.com>
---
mm/zswap.c | 122 +++++++++++++++++++++++++++++++++----------------------------
1 file changed, 66 insertions(+), 56 deletions(-)
diff --git a/mm/zswap.c b/mm/zswap.c
index e456e5080531..86db023d63ed 100644
--- a/mm/zswap.c
+++ b/mm/zswap.c
@@ -34,6 +34,7 @@
#include <linux/writeback.h>
#include <linux/pagemap.h>
#include <linux/workqueue.h>
+#include <linux/xarray.h>
#include <linux/list_lru.h>
#include <linux/zsmalloc.h>
@@ -154,12 +155,23 @@ struct zswap_pool {
struct zs_pool *zs_pool;
struct crypto_acomp_ctx __percpu *acomp_ctx;
struct percpu_ref ref;
- struct list_head list;
struct rcu_work release_rwork;
struct hlist_node node;
+ u8 idx;
char tfm_name[CRYPTO_MAX_ALG_NAME];
};
+/*
+ * Live pools keyed by id (1..ZSWAP_MAX_POOL_ID). XA_FLAGS_ALLOC1 keeps id 0
+ * reserved so it is never handed to a live pool. XA_FLAGS_LOCK_BH makes the
+ * xa_lock softirq-safe: it is taken from __zswap_pool_empty(), which runs from
+ * a percpu_ref release callback in softirq context.
+ */
+#define ZSWAP_FIRST_POOL_ID 1
+#define ZSWAP_MAX_POOL_ID U8_MAX
+static DEFINE_XARRAY_FLAGS(zswap_pools, XA_FLAGS_ALLOC1 | XA_FLAGS_LOCK_BH);
+static struct zswap_pool __rcu *zswap_current_pool;
+
/* Global LRU lists shared by all zswap pools. */
static struct list_lru zswap_list_lru;
@@ -200,10 +212,6 @@ struct zswap_entry {
static struct xarray *zswap_trees[MAX_SWAPFILES];
static unsigned int nr_zswap_trees[MAX_SWAPFILES];
-/* RCU-protected iteration */
-static LIST_HEAD(zswap_pools);
-/* protects zswap_pools list modification */
-static DEFINE_SPINLOCK(zswap_pools_lock);
/* pool counter to provide unique names to zsmalloc */
static atomic_t zswap_pools_count = ATOMIC_INIT(0);
@@ -275,6 +283,7 @@ static struct zswap_pool *zswap_pool_create(char *compressor)
struct zswap_pool *pool;
char name[38]; /* 'zswap' + 32 char (max) num + \0 */
int ret, cpu;
+ u32 id;
if (!zswap_has_pool && !strcmp(compressor, ZSWAP_PARAM_UNSET))
return NULL;
@@ -320,12 +329,29 @@ static struct zswap_pool *zswap_pool_create(char *compressor)
PERCPU_REF_ALLOW_REINIT, GFP_KERNEL);
if (ret)
goto ref_fail;
- INIT_LIST_HEAD(&pool->list);
+
+ /*
+ * Publish only after the pool is fully built, so lockless walkers
+ * never see a half-initialized pool. The _bh variant pairs with the
+ * softirq-context xa_lock taken in __zswap_pool_empty().
+ */
+ ret = xa_alloc_bh(&zswap_pools, &id, pool,
+ XA_LIMIT(ZSWAP_FIRST_POOL_ID, ZSWAP_MAX_POOL_ID),
+ GFP_KERNEL);
+ if (ret) {
+ if (ret == -EBUSY)
+ pr_err("cannot allocate pool id (max %d live pools)\n",
+ ZSWAP_MAX_POOL_ID - ZSWAP_FIRST_POOL_ID + 1);
+ goto xa_fail;
+ }
+ pool->idx = id;
zswap_pool_debug("created", pool);
return pool;
+xa_fail:
+ percpu_ref_exit(&pool->ref);
ref_fail:
cpuhp_state_remove_instance(CPUHP_MM_ZSWP_POOL_PREPARE, &pool->node);
@@ -386,28 +412,22 @@ static void __zswap_pool_release(struct work_struct *work)
WARN_ON(!percpu_ref_is_zero(&pool->ref));
percpu_ref_exit(&pool->ref);
- /* pool is now off zswap_pools list and has no references. */
+ /* The pool is no longer in zswap_pools and has no references. */
zswap_pool_destroy(pool);
}
-static struct zswap_pool *zswap_pool_current(void);
-
static void __zswap_pool_empty(struct percpu_ref *ref)
{
struct zswap_pool *pool;
pool = container_of(ref, typeof(*pool), ref);
- spin_lock_bh(&zswap_pools_lock);
-
- WARN_ON(pool == zswap_pool_current());
+ WARN_ON(pool == rcu_access_pointer(zswap_current_pool));
- list_del_rcu(&pool->list);
+ xa_erase_bh(&zswap_pools, pool->idx);
INIT_RCU_WORK(&pool->release_rwork, __zswap_pool_release);
queue_rcu_work(system_percpu_wq, &pool->release_rwork);
-
- spin_unlock_bh(&zswap_pools_lock);
}
static int __must_check zswap_pool_tryget(struct zswap_pool *pool)
@@ -433,20 +453,13 @@ static struct zswap_pool *__zswap_pool_current(void)
{
struct zswap_pool *pool;
- pool = list_first_or_null_rcu(&zswap_pools, typeof(*pool), list);
+ pool = rcu_dereference(zswap_current_pool);
WARN_ONCE(!pool && zswap_has_pool,
"%s: no page storage pool!\n", __func__);
return pool;
}
-static struct zswap_pool *zswap_pool_current(void)
-{
- assert_spin_locked(&zswap_pools_lock);
-
- return __zswap_pool_current();
-}
-
static struct zswap_pool *zswap_pool_current_get(void)
{
struct zswap_pool *pool;
@@ -462,23 +475,28 @@ static struct zswap_pool *zswap_pool_current_get(void)
return pool;
}
-/* type and compressor must be null-terminated */
+/* compressor must be null-terminated */
static struct zswap_pool *zswap_pool_find_get(char *compressor)
{
struct zswap_pool *pool;
+ unsigned long id;
- assert_spin_locked(&zswap_pools_lock);
-
- list_for_each_entry_rcu(pool, &zswap_pools, list) {
+ /*
+ * __zswap_pool_empty() can erase from zswap_pools in softirq while we
+ * walk. rcu_read_lock() keeps the walk consistent and each pool alive
+ * across tryget(). xa_for_each()'s own RCU does not span the loop body.
+ */
+ rcu_read_lock();
+ xa_for_each(&zswap_pools, id, pool) {
if (strcmp(pool->tfm_name, compressor))
continue;
/* if we can't get it, it's about to be destroyed */
- if (!zswap_pool_tryget(pool))
- continue;
- return pool;
+ if (zswap_pool_tryget(pool))
+ break;
}
+ rcu_read_unlock();
- return NULL;
+ return pool;
}
static unsigned long zswap_max_pages(void)
@@ -495,9 +513,14 @@ unsigned long zswap_total_pages(void)
{
struct zswap_pool *pool;
unsigned long total = 0;
+ unsigned long id;
+ /*
+ * rcu_read_lock() keeps each pool alive across zs_get_total_pages().
+ * xa_for_each()'s own RCU does not span the loop body.
+ */
rcu_read_lock();
- list_for_each_entry_rcu(pool, &zswap_pools, list)
+ xa_for_each(&zswap_pools, id, pool)
total += zs_get_total_pages(pool->zs_pool);
rcu_read_unlock();
@@ -554,20 +577,13 @@ static int zswap_compressor_param_set(const char *val, const struct kernel_param
return -ENOENT;
}
- spin_lock_bh(&zswap_pools_lock);
-
pool = zswap_pool_find_get(s);
- if (pool) {
+ if (!pool) {
+ pool = zswap_pool_create(s);
+ } else {
zswap_pool_debug("using existing", pool);
- WARN_ON(pool == zswap_pool_current());
- list_del_rcu(&pool->list);
- }
-
- spin_unlock_bh(&zswap_pools_lock);
+ WARN_ON(pool == rcu_access_pointer(zswap_current_pool));
- if (!pool)
- pool = zswap_pool_create(s);
- else {
/*
* Restore the initial ref dropped by percpu_ref_kill()
* when the pool was decommissioned and switch it again
@@ -584,24 +600,18 @@ static int zswap_compressor_param_set(const char *val, const struct kernel_param
else
ret = -EINVAL;
- spin_lock_bh(&zswap_pools_lock);
-
+ /*
+ * Compressor switches are serialized by the kernel param lock, so this
+ * is the only writer of zswap_current_pool: no xa_lock needed.
+ */
if (!ret) {
- put_pool = zswap_pool_current();
- list_add_rcu(&pool->list, &zswap_pools);
+ put_pool = rcu_access_pointer(zswap_current_pool);
+ rcu_assign_pointer(zswap_current_pool, pool);
zswap_has_pool = true;
} else if (pool) {
- /*
- * Add the possibly pre-existing pool to the end of the pools
- * list; if it's new (and empty) then it'll be removed and
- * destroyed by the put after we drop the lock
- */
- list_add_tail_rcu(&pool->list, &zswap_pools);
put_pool = pool;
}
- spin_unlock_bh(&zswap_pools_lock);
-
/*
* Drop the ref from either the old current pool,
* or the new pool we failed to add
@@ -1788,7 +1798,7 @@ static int zswap_setup(void)
pool = __zswap_pool_create_fallback();
if (pool) {
pr_info("loaded using pool %s\n", pool->tfm_name);
- list_add(&pool->list, &zswap_pools);
+ rcu_assign_pointer(zswap_current_pool, pool);
zswap_has_pool = true;
static_branch_enable(&zswap_ever_enabled);
} else {
--
2.43.0
On Sun, Sep 6, 2026 at 12:47 AM Jianyue Wu <wujianyue000@gmail.com> wrote: > > Originally zswap kept its pools on an RCU list whose head also served > as the current pool. Convert the pool table to an allocating xarray > keyed by a small integer id, and track the current pool with a separate > RCU-protected pointer. > > The xarray gives each pool a stable id for a later zswap_entry shrink. > XA_FLAGS_ALLOC1 starts ids at 1, so id 0 remains reserved. The id range > is bounded by ZSWAP_MAX_POOL_ID because the later entry field is a u8. > > Keep compressor switching close to the previous flow: look up an > existing pool with xa_for_each(), resurrect it if reused, or create a > new one. zswap_pool_create() allocates the pool's id and publishes it > into the xarray as its final step, so the create call either fully > publishes or fully unwinds on failure. Publishing makes the pool live, > so a caller that later fails (e.g. param_set_charp()) must still kill > the pool to erase it from the xarray. > > Compressor switches update zswap_current_pool with rcu_assign_pointer(), > serialized by the module parameter lock, so no xa_lock is needed for > that update. The pool walk above is lockless under RCU. xa_lock is taken > only to allocate (xa_alloc_bh()) and erase (xa_erase_bh()) xarray > entries. > > Suggested-by: Nhat Pham <nphamcs@gmail.com> > Suggested-by: Yosry Ahmed <yosry@kernel.org> > Suggested-by: Johannes Weiner <hannes@cmpxchg.org> > Signed-off-by: Jianyue Wu <wujianyue000@gmail.com> Acked-by: Yosry Ahmed <yosry@kernel.org>
struct zswap_entry is one allocation per stored page, so its size is
pure overhead. It currently embeds an 8-byte pool pointer, even though
the live pools now sit in an allocating xarray keyed by a small integer
id that fits in a u8.
Replace the per-entry pool pointer with that u8 id and resolve it
through the xarray with xa_load(). xa_load() does its own RCU-protected
lookup, so the caller needs no rcu_read_lock() section of its own. The
resolved pool stays valid because a live entry pins it via percpu_ref
(taken in zswap_store_page()), so its id cannot be reused. A live entry
never uses the reserved id 0, so a zeroed id resolves to NULL and trips
a WARN rather than aliasing a live pool.
The u8 fits in the padding after the bool referenced field, shrinking
the entry from 56 to 48 bytes on 64-bit. This raises objs_per_slab from
73 to 85 and saves about 2MiB of metadata per 1GiB of data held in
zswap.
Suggested-by: Chris Li <chrisl@kernel.org>
Signed-off-by: Jianyue Wu <wujianyue000@gmail.com>
---
mm/zswap.c | 37 ++++++++++++++++++++++++++++++-------
1 file changed, 30 insertions(+), 7 deletions(-)
diff --git a/mm/zswap.c b/mm/zswap.c
index 86db023d63ed..253eebb971b9 100644
--- a/mm/zswap.c
+++ b/mm/zswap.c
@@ -194,7 +194,7 @@ static struct shrinker *zswap_shrinker;
* writeback logic. The entry is only reclaimed by the writeback
* logic if referenced is unset. See comments in the shrinker
* section for context.
- * pool - the zswap_pool the entry's data is in
+ * pool_idx - id of the zswap_pool that the entry's data is in.
* handle - zsmalloc allocation handle that stores the compressed page data
* objcg - the obj_cgroup that the compressed memory is charged to
* lru - handle to the pool's lru used to evict pages.
@@ -203,12 +203,22 @@ struct zswap_entry {
swp_entry_t swpentry;
unsigned int length;
bool referenced;
- struct zswap_pool *pool;
+ u8 pool_idx;
unsigned long handle;
struct obj_cgroup *objcg;
struct list_head lru;
};
+/*
+ * No RCU section is needed around the returned pointer: a stored entry pins
+ * its pool via percpu_ref (taken in zswap_store_page()), so the id cannot be
+ * reused under us. Callers WARN and handle a NULL from a corrupt pool_idx.
+ */
+static struct zswap_pool *zswap_entry_pool(struct zswap_entry *entry)
+{
+ return xa_load(&zswap_pools, entry->pool_idx);
+}
+
static struct xarray *zswap_trees[MAX_SWAPFILES];
static unsigned int nr_zswap_trees[MAX_SWAPFILES];
@@ -759,9 +769,13 @@ static void zswap_entry_cache_free(struct zswap_entry *entry)
*/
static void zswap_entry_free(struct zswap_entry *entry)
{
+ struct zswap_pool *pool = zswap_entry_pool(entry);
+
zswap_lru_del(entry);
- zs_free(entry->pool->zs_pool, entry->handle);
- zswap_pool_put(entry->pool);
+ if (!WARN_ON_ONCE(!pool)) {
+ zs_free(pool->zs_pool, entry->handle);
+ zswap_pool_put(pool);
+ }
if (entry->objcg) {
obj_cgroup_uncharge_zswap(entry->objcg, entry->length);
obj_cgroup_put(entry->objcg);
@@ -918,12 +932,15 @@ static bool zswap_compress(struct page *page, struct zswap_entry *entry,
static bool zswap_decompress(struct zswap_entry *entry, struct folio *folio)
{
- struct zswap_pool *pool = entry->pool;
+ struct zswap_pool *pool = zswap_entry_pool(entry);
struct scatterlist input[2]; /* zsmalloc returns an SG list 1-2 entries */
struct scatterlist output;
struct crypto_acomp_ctx *acomp_ctx;
int ret = 0, dlen;
+ if (WARN_ON_ONCE(!pool))
+ return false;
+
acomp_ctx = raw_cpu_ptr(pool->acomp_ctx);
mutex_lock(&acomp_ctx->mutex);
zs_obj_read_sg_begin(pool->zs_pool, entry->handle, input, entry->length);
@@ -959,7 +976,7 @@ static bool zswap_decompress(struct zswap_entry *entry, struct folio *folio)
pr_alert_ratelimited("Decompression error from zswap (%d:%lu %s %u->%d)\n",
swp_type(entry->swpentry),
swp_offset(entry->swpentry),
- entry->pool->tfm_name,
+ pool->tfm_name,
entry->length, dlen);
return false;
}
@@ -1417,6 +1434,13 @@ static bool zswap_store_page(struct page *page,
if (!zswap_compress(page, entry, pool))
goto compress_failed;
+ /*
+ * Set pool_idx before the xa_store() below publishes the entry, or a
+ * concurrent reader could resolve a stale pool_idx left by slab reuse
+ * to an unrelated live pool.
+ */
+ entry->pool_idx = pool->idx;
+
old = xa_store(swap_zswap_tree(page_swpentry),
swp_offset(page_swpentry),
entry, GFP_KERNEL);
@@ -1462,7 +1486,6 @@ static bool zswap_store_page(struct page *page,
* The publishing order matters to prevent writeback from seeing
* an incoherent entry.
*/
- entry->pool = pool;
entry->swpentry = page_swpentry;
entry->objcg = objcg;
entry->referenced = true;
--
2.43.0
On Sun, Sep 6, 2026 at 12:47 AM Jianyue Wu <wujianyue000@gmail.com> wrote: > > struct zswap_entry is one allocation per stored page, so its size is > pure overhead. It currently embeds an 8-byte pool pointer, even though > the live pools now sit in an allocating xarray keyed by a small integer > id that fits in a u8. > > Replace the per-entry pool pointer with that u8 id and resolve it > through the xarray with xa_load(). xa_load() does its own RCU-protected > lookup, so the caller needs no rcu_read_lock() section of its own. The > resolved pool stays valid because a live entry pins it via percpu_ref > (taken in zswap_store_page()), so its id cannot be reused. A live entry > never uses the reserved id 0, so a zeroed id resolves to NULL and trips > a WARN rather than aliasing a live pool. > > The u8 fits in the padding after the bool referenced field, shrinking > the entry from 56 to 48 bytes on 64-bit. This raises objs_per_slab from > 73 to 85 and saves about 2MiB of metadata per 1GiB of data held in > zswap. > > Suggested-by: Chris Li <chrisl@kernel.org> > Signed-off-by: Jianyue Wu <wujianyue000@gmail.com> Acked-by: Yosry Ahmed <yosry@kernel.org>
© 2016 - 2026 Red Hat, Inc.