Hi all, I was reading DeepSeek's new DSec paper[1] and found a nice use of DAMON and virtio-balloon:
With this kind of workload, an agent may read a file once and never touch it again, while those pages remain in the guest page cache. Without memory pressure in the guest, they can stay cached even though the host would like that memory back ... The trick is DAMON + virtio-balloon free-page reporting :) DAMON reclaims cold file pages from the guest page cache; buddy gets a chance to coalesce them into reportable blocks, and virtio-balloon passes those blocks to Firecracker. Firecracker can then drop the host backing with MADV_DONTNEED. And it worked: time-integrated host memory use fell by 21.2%, while peak usage stayed about the same, with no significant CPU overhead. Pretty cool to see these pieces show up in another real, large-scale system :) Kernel work still changes the world. Cheers to that! Anyhow, I still don't know DAMON and virtio-balloon as well as I should (mostly I just know the people who built them) :P [1] https://arxiv.org/html/2609.22978 Cheers, Lance
