James, On Wed, Dec 04, 2024 at 07:13:35PM +0000, James Houghton wrote: > This is a continuation of the original KVM Userfault RFC[1] from July. > It contains the simplifications we talked about at LPC[2]. > > Please see the RFC[1] for the problem description. In summary, > guest_memfd VMs have no mechanism for doing post-copy live migration. > KVM Userfault provides such a mechanism. Today there is no upstream > mechanism for installing memory into a guest_memfd, but there will > be one soon (e.g. [3]). > > There is a second problem that KVM Userfault solves: userfaultfd-based > post-copy doesn't scale very well. KVM Userfault when used with > userfaultfd can scale much better in the common case that most post-copy > demand fetches are a result of vCPU access violations. This is a > continuation of the solution Anish was working on[4]. This aspect of > KVM Userfault is important for userfaultfd-based live migration when > scaling up to hundreds of vCPUs with ~30us network latency for a > PAGE_SIZE demand-fetch. I think it would be clearer to nail down the goal of the feature. If it's a perf-oriented feature we don't need to mention gmem, but maybe it's not. > > The implementation in this series is version than the RFC[1]. It adds... > 1. a new memslot flag is added: KVM_MEM_USERFAULT, > 2. a new parameter, userfault_bitmap, into struct kvm_memory_slot, > 3. a new KVM_RUN exit reason: KVM_MEMORY_EXIT_FLAG_USERFAULT, > 4. a new KVM capability KVM_CAP_USERFAULT. > > KVM Userfault does not attempt to catch KVM's own accesses to guest > memory. That is left up to userfaultfd. I assume it means this is an "perf optimization" feature then? As it doesn't work for remote-fault processes like firecracker, or remote-emulated processes like QEMU's vhost-user? Even though it could still 100% cover x86_64's setup if it's not as complicated as above? I mean, I assumed above sentence was for archs like ARM that I remember having no-vcpu-context accesses so things like that is not covered too. Perhaps x86_64 is the goal? If so, would also be good to mention some details. > > When enabling KVM_MEM_USERFAULT for a memslot, the second-stage mappings > are zapped, and new faults will check `userfault_bitmap` to see if the > fault should exit to userspace. > > When KVM_MEM_USERFAULT is enabled, only PAGE_SIZE mappings are > permitted. > > When disabling KVM_MEM_USERFAULT, huge mappings will be reconstructed > (either eagerly or on-demand; the architecture can decide). > > KVM Userfault is not compatible with async page faults. Nikita has > proposed a new implementation of async page faults that is more > userspace-driven that *is* compatible with KVM Userfault[5]. > > Performance > =========== > > The takeaways I have are: > > 1. For cases where lock contention is not a concern, there is a > discernable win because KVM Userfault saves the trip through the > userfaultfd poll/read/WAKE cycle. > > 2. Using a single userfaultfd without KVM Userfault gets very slow as > the number of vCPUs increases, and it gets even slower when you add > more reader threads. This is due to contention on the userfaultfd > wait_queue locks. This is the contention that KVM Userfault avoids. > Compare this to the multiple-userfaultfd runs; they are much faster > because the wait_queue locks are sharded perfectly (1 per vCPU). > Perfect sharding is only possible because the vCPUs are configured to > touch only their own chunk of memory. I'll try to spend some more time after holidays on this perf issue. But will still be after the 1g support on !coco gmem if it would work out. As the 1g function is still missing in QEMU, so that one has higher priority comparing to either perf or downtime (e.g. I'll also need to measure whether QEMU will need minor fault, or stick with missing as of now). Maybe I'll also start to explore a bit on [g]memfd support on userfault, I'm not sure whether anyone started working on some generic solution before for CoCo / gmem postcopy - we need to still have a solution for either firecrackers or OVS/vhost-user. I feel like we need that sooner or later, one way or another. I think I'll start without minor faults support until justified, and if I'll ever be able to start it at all in a few months next year.. Let me know if there's any comment on above thoughts. I guess this feauture might be useful to QEMU too, but QEMU always needs uffd or something similar, then we need to measure and justify this one useful in a real QEMU setup. For example, need to see how the page transfer overhead compares with lock contentions when there're, say, 400 vcpus. If some speedup on userfault + the transfer overhead is close to what we can get with vcpu exits, then QEMU may still stick with a simple model. But not sure. When integrated with this feature, it also means some other overheads at least to QEMU. E.g., trap / resolve page fault needs two ops now (uffd and the bitmap). Meanwhile even if vcpu can get rid of uffd's one big spinlock, it may contend again in userspace, either on page resolution or on similar queuing. I think I mentioned it previously but I guess it's nontrivial to justify. In all cases, I trust that you should have better judgement on this. It's just that QEMU can at least behave differently, so not sure how it'll go there. Happy holidays. :) Thanks, -- Peter Xu