KVM: Get writable mapping for __kvm_vcpu_map() only when necessary
authorSean Christopherson <seanjc@google.com>
Thu, 10 Oct 2024 18:23:36 +0000 (11:23 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 25 Oct 2024 16:59:08 +0000 (12:59 -0400)
commit2e5fdf60a9a69971b5e642d32e09bd6b0223f47c
tree2e1ca3e5c6a9e23f56ed6dba2b010aa9815adb1e
parent365e319208442a0807a96e9ea4d0b1fa338f1929
KVM: Get writable mapping for __kvm_vcpu_map() only when necessary

When creating a memory map for read, don't request a writable pfn from the
primary MMU.  While creating read-only mappings can be theoretically slower,
as they don't play nice with fast GUP due to the need to break CoW before
mapping the underlying PFN, practically speaking, creating a mapping isn't
a super hot path, and getting a writable mapping for reading is weird and
confusing.

Tested-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Sean Christopherson <seanjc@google.com>
Tested-by: Dmitry Osipenko <dmitry.osipenko@collabora.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-ID: <20241010182427.1434605-35-seanjc@google.com>
virt/kvm/kvm_main.c