Re: Path forward for Virtualized Swap?
From: Chris Li
Date: Sat Sep 19 2026 - 04:45:32 EST
On Thu, Sep 10, 2026 at 12:03 PM Johannes Weiner <hannes@xxxxxxxxxxx> wrote:
>
> [This reply was not LLM-generated.]
Why does it matter?
>
> On Thu, Sep 10, 2026 at 03:09:59PM +0800, Baoquan He wrote:
> > Hi Nhat,
> >
> > On 09/04/26 at 02:14pm, Nhat Pham wrote:
> > .....snip...
> > > Now, on xswap. Baoquan's working on a series [15] that covers some of the
> > > same ground, and the VM_SPARSE cluster_info idea in it is genuinely good.
> > > I've been reviewing that lineage since July [16] and I'd like whatever
> > > lands to end up with the best parts of both. From my perspective the
> > > differences are:
> > >
> > > 1. Userspace knobs. xswap asks the admin for a size (a percent of RAM) plus
> > > a per-device limit to tune afterwards. I'm not aware of any use case
> > > that needs those, and I don't think users have a good way to answer the
> > > question anyway - sizing swap for compressed memory depends on memory
> > > size, workload, and compression ratio all at once. That's precisely the
> > > provisioning problem vswap exists to remove. The kernel should be as
> > > transparent and dynamic as possible here, and not add knobs unless
> > > there's a use case for them.
> > >
> > > 2. Writeback support. Writeback is core functionality for zswap, not an
> > > add-on, and a design needs to account for it from the start. This came
> > > up before, in the discussion around Chris' ghost swapfile RFC [17]: for
> > > a solution here to be acceptable, it has to work with the primary
> > > usecase and support disk writeback. Without it, whatever zswap won't
> > > take (incompressible pages especially) has nowhere to go, and cold
> > > compressed data can never leave RAM.
> > >
> > > 3. Cgroup charging behavior. vswap/xswap shouldn't be charged against the
> > > swap usage counter. It's fundamentally a different resource from
> > > physical swapfile space, and memory.swap.* should read 0 when nothing is
> > > on disk [18]. I made the longer argument for this in [19].
> > >
> > > 4. Data structure (xarray vs sparse vmalloc array). Even with xarray, vswap
> > > is already on par with or beating baseline. I like the sparse array
> > > idea, but why are we landing an optimization before the feature itself,
> > > without any A/B data showing the difference matters?
> >
> >
> > Thanks for laying this out, and for the honest push to converge. Let me
> > be equally direct about the ordering: I think the xswap base should land
> > first, and the things vswap demonstrates - writeback, rmap lookup, the
> > charging semantics, later THP -- should be built on top of it. Because
> > it is the foundation that keeps the swap core simpler, and the first thing
> > to merge should be the one that doesn't have to be redone.
> >
> > The VM_SPARSE array is not an optimization to bolt on later; it is a
> > structural choice, and the code reflects it. In vswap, the cluster
> > metadata lives in a dynamically-allocated xarray.
> >
> > struct swap_cluster_info_dynamic {
> > struct swap_cluster_info ci;
> > unsigned int index; /* for cluster_index() */
> > struct rcu_head rcu;
> > atomic_long_t *virtual_table; /* Backing pointers for vswap slots */
> > };
> >
> > To support dynamic growth and shrink, vswap stores its cluster metadata
> > in an xarray, and that forces two things the plain swap_cluster_info[]
> > array never needed:
> >
> > 1. Every cluster has to carry an extra index and an rcu_head —
> > 24 bytes per cluster — purely so the xarray can locate it and free
> > it safely.
> > 2. To keep that bookkeeping from leaking into the normal-swap code, the
> > cluster had to be wrapped in a container, swap_cluster_info_dynamic,
> > so the xarray holds a pointer to the wrapper instead of an inline
> > array element.
> >
> > So in vswap, every cluster access in the shared hot path has to answer
> > "is this a vswap device?" and take a separate branch:
> >
> > - swap_is_vswap() is checked in 36 places across page_io.c, swapfile.c,
> > zswap.c and swap.h;
> > - __swap_offset_to_cluster() branches into xa_load() for vswap vs the
> > flat array otherwise, and the xarray path can return NULL (a cluster
> > can be torn down);
> > - __swap_cluster_lock() branches into __vswap_cluster_lock(), which
> > wraps every access in rcu_read_lock() and a CLUSTER_FLAG_DEAD check,
> > plus kfree_rcu()/container_of()/rcu_head plumbing for node lifetime.
I dislike those code paths in vswap as well.
>
> Well to state the obvious: the reason it does all that is to make the
> compression space transparent to the user.
I found this new concept of "compression space" very confusing to me.
Can you explain the swap behavior and problem using only normal memory
usage reduction and latency without introducing a new term or new
metrics?
The normal user doesn't even know what compression space is, let alone
what makes it transparent.
>
> The user can answer a simple boolean question: whether they want
> compression or not. And it will work on tiny machines, on humongous
In my mind, swap trades RSS memory reduction for increased latency
when accessing the swapped-out data.
Whether the memory reduction is by compression or by writing to a hard
drive is an implementation detail. It has different characteristics.
When we have "compressed space" for zswap, should we also have "ssd
space" for data store in ssd and "hdd space" for data stored on HDD?
They has different IO accessing latencies.
> machines, and everything in between. That's a simple policy question
> with a clear answer.
>
> What you're doing, asking the user for a static size, is much more
> difficult and has usability issues.
>
> You're comparing implementations that don't accomplish the same thing.
>
> The problem we're trying to solve is implementing a clean compression
> space abstraction. I'm arguing that vswap does, and xswap does not.
I feel that you are arguing a conceptual construct you define. Can you
explain the difference using external measurable metrics? For example
in this workload, using vswap, the user sees workload latency as X,
throughput as Y, and memory usage as Z. Using xswap, the user sees a
different X1, Y1, Z1. Then we can reason why X, Y, Z is better or
worse than X1, Y1, Z1.
My simpler brain just doesn't see why this new compression space matters.
> While they're both using parts of the swap device code to implement a
> compression space, xswap actually PRESENTS IT TO THE USER as a swap
> device, and then makes optimizations BASED ON BAKED IN LIMITATIONS.
>
> But a conventional, statically sized swap device is a bad abstraction
> for the compression space. Here is why:
>
> In conventional swap space, one memory page translates to one swap
> page. Compression space doesn't act this way: a memory page can
> consume anything between a few bytes to a full page in compression
> space. It depends on memory contents and compression algorithm. So
> right off the bat, this is a hard question to answer at the host level
> which could run all kinds of workloads.
>
> In conventional swap space, the resource consumed is a different
> one. You're offloading memory by consuming disk space. This eats into
> the space available to the filesystem, which is totally unrelated.
> Asking the user for this tradeoff is a legitimate policy question.
>
> Compression space is not a separate resource. It's page tables,
> backing pages, and swap descriptors. It's just MEMORY. There isn't a
> size tradeoff, because moving pages from memory space into compression
> space DOES NOT CONSUME A NEW RESOURCE. It's still just memory. All you
> need for containment already exists: rlimits, OOM killer, cgroup
> memory controls.
Why does the user need to care about compression space again?
> By making this a user-visible virtual swap device, you're sending
> users down the wrong path. You're asking them to set a new limit on a
> resource that's already limited by other means. You're framing the
> question as conventional swap which behaves completely differently.
The user cares how much memory it can save and what performance price
to pay for it.
Why does the user need to care about compression space again? We've
used zswap/ZRAM and other swap mechanisms for a long time without ever
hearing about "compression space". Why now?
Again what exactly does compression space do that can't be explained
by external metrics e.g. memory saved and the performance penalty on
access?
Please help me understand.
Chris
>
> If you ask them "how much swap space", they WILL reference this to
> available RAM capacity. Maybe half of ram, maybe twice the RAM.
>
> But when compression space is referenced to RAM, it's trivial to fill
> it up with zeroed pages or easily compressible data LONG BEFORE the
> process or container would hit any of its MEMORY limits.
>
> This creates an artificial resource shortages. It forces a competition
> where there shouldn't be one. And then you need new controls to manage
> a competition that doesn't have to exist.
>
> Like I said before, including compression space (which is memory) in
> memory.swap.* (which is for disk space) is not going to be acceptable
> from the cgroup side. We can talk about that if you want.
>
> But asking the user questions they shouldn't have to answer, or
> already answered elsewhere, is weak interface design. Allowing, let
> alone encouraging, answers that create a whole new host of
> organizational issues is outright bad interface design.
>
> So if you want to compare implementations, you first have to actually
> implement the same thing:
>
> Stop asking user "how large". Let compression space expand towards
> existing memory limits, such that it doesn't create an awkward and
> artificial new resource competition.
>
> Then we can compare implementations.
>
> If the optimizations still apply under those constraints, great.
>
> Until then, there is little point in discussing differences that, by
> your own admission, have little to no impact on real world performance.
>