From patchwork Thu Jan 31 09:52:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoffer Dall X-Patchwork-Id: 10790259 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 9F372746 for ; Thu, 31 Jan 2019 09:52:56 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9F66B2FE29 for ; Thu, 31 Jan 2019 09:52:56 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9388D2FE6B; Thu, 31 Jan 2019 09:52:56 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CB94A2FE17 for ; Thu, 31 Jan 2019 09:52:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729038AbfAaJwy (ORCPT ); Thu, 31 Jan 2019 04:52:54 -0500 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:40684 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726221AbfAaJwy (ORCPT ); Thu, 31 Jan 2019 04:52:54 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 136E11596; Thu, 31 Jan 2019 01:52:54 -0800 (PST) Received: from localhost (e113682-lin.copenhagen.arm.com [10.32.144.41]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id A131C3F71E; Thu, 31 Jan 2019 01:52:53 -0800 (PST) From: Christoffer Dall To: kvm@vger.kernel.org Cc: kvmarm@lists.cs.columbia.edu, Christoffer Dall , James Hogan , Paolo Bonzini , =?utf-8?b?UmFkaW0gS3LEjW3DocWZ?= , Joerg Roedel , Marc Zyngier , Paul Mackerras , Christian Borntraeger , Anshuman Khandual , Suzuki K Poulose , Sean Christopherson Subject: [PATCH v2 2/4] KVM: x86: Rename mmu_memory_cache to kvm_mmu_memcache Date: Thu, 31 Jan 2019 10:52:42 +0100 Message-Id: <20190131095244.7480-3-christoffer.dall@arm.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20190131095244.7480-1-christoffer.dall@arm.com> References: <20190131095244.7480-1-christoffer.dall@arm.com> Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP As we have moved the mmu memory cache definitions and functions to common code, they are exported as symols to the rest of the kernel. Let's rename the functions and data types to have a kvm_ prefix to make it clear where these functions belong and take this chance to rename memory_cache to memcache to avoid overly long lines. This is a bit tedious on the callsites but ends up looking more palatable. Signed-off-by: Christoffer Dall --- arch/x86/include/asm/kvm_host.h | 6 ++--- arch/x86/include/asm/kvm_types.h | 4 ++-- arch/x86/kvm/mmu.c | 38 ++++++++++++++++---------------- arch/x86/kvm/paging_tmpl.h | 4 ++-- include/linux/kvm_host.h | 14 ++++++------ include/linux/kvm_types.h | 6 ++--- virt/kvm/kvm_main.c | 14 ++++++------ 7 files changed, 43 insertions(+), 43 deletions(-) diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 9f97dcd15097..5c12cba8c2b1 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -589,9 +589,9 @@ struct kvm_vcpu_arch { */ struct kvm_mmu *walk_mmu; - struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; - struct kvm_mmu_memory_cache mmu_page_cache; - struct kvm_mmu_memory_cache mmu_page_header_cache; + struct kvm_mmu_memcache mmu_pte_list_desc_cache; + struct kvm_mmu_memcache mmu_page_cache; + struct kvm_mmu_memcache mmu_page_header_cache; /* * QEMU userspace and the guest each have their own FPU state. diff --git a/arch/x86/include/asm/kvm_types.h b/arch/x86/include/asm/kvm_types.h index 5260d751940e..3ff3b30db52e 100644 --- a/arch/x86/include/asm/kvm_types.h +++ b/arch/x86/include/asm/kvm_types.h @@ -2,9 +2,9 @@ #ifndef _ASM_X86_KVM_TYPES_H #define _ASM_X86_KVM_TYPES_H -#define KVM_ARCH_WANT_MMU_MEMORY_CACHE +#define KVM_ARCH_WANT_MMU_MEMCACHE -#define KVM_NR_MEM_OBJS 40 +#define KVM_MMU_NR_MEMCACHE_OBJS 40 #define KVM_MMU_CACHE_GFP GFP_KERNEL #define KVM_MMU_CACHE_PAGE_GFP GFP_KERNEL_ACCOUNT diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index a0bc22f153f1..f1ae118fd5c4 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -951,35 +951,35 @@ static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu) local_irq_enable(); } -static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu) +static int kvm_mmu_topup_memcaches(struct kvm_vcpu *vcpu) { int r; - r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, + r = kvm_mmu_topup_memcache(&vcpu->arch.mmu_pte_list_desc_cache, pte_list_desc_cache, 8 + PTE_PREFETCH_NUM); if (r) goto out; - r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8); + r = kvm_mmu_topup_memcache_page(&vcpu->arch.mmu_page_cache, 8); if (r) goto out; - r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache, + r = kvm_mmu_topup_memcache(&vcpu->arch.mmu_page_header_cache, mmu_page_header_cache, 4); out: return r; } -static void mmu_free_memory_caches(struct kvm_vcpu *vcpu) +static void kvm_mmu_free_memcaches(struct kvm_vcpu *vcpu) { - mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, + kvm_mmu_free_memcache(&vcpu->arch.mmu_pte_list_desc_cache, pte_list_desc_cache); - mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache); - mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache, + kvm_mmu_free_memcache_page(&vcpu->arch.mmu_page_cache); + kvm_mmu_free_memcache(&vcpu->arch.mmu_page_header_cache, mmu_page_header_cache); } static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu) { - return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache); + return kvm_mmu_memcache_alloc(&vcpu->arch.mmu_pte_list_desc_cache); } static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc) @@ -1299,10 +1299,10 @@ static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, static bool rmap_can_add(struct kvm_vcpu *vcpu) { - struct kvm_mmu_memory_cache *cache; + struct kvm_mmu_memcache *cache; cache = &vcpu->arch.mmu_pte_list_desc_cache; - return mmu_memory_cache_free_objects(cache); + return kvm_mmu_memcache_free_objects(cache); } static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn) @@ -1985,10 +1985,10 @@ static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct { struct kvm_mmu_page *sp; - sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache); - sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); + sp = kvm_mmu_memcache_alloc(&vcpu->arch.mmu_page_header_cache); + sp->spt = kvm_mmu_memcache_alloc(&vcpu->arch.mmu_page_cache); if (!direct) - sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); + sp->gfns = kvm_mmu_memcache_alloc(&vcpu->arch.mmu_page_cache); set_page_private(virt_to_page(sp->spt), (unsigned long)sp); /* @@ -3902,7 +3902,7 @@ static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva, if (page_fault_handle_page_track(vcpu, error_code, gfn)) return RET_PF_EMULATE; - r = mmu_topup_memory_caches(vcpu); + r = kvm_mmu_topup_memcaches(vcpu); if (r) return r; @@ -4031,7 +4031,7 @@ static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code, if (page_fault_handle_page_track(vcpu, error_code, gfn)) return RET_PF_EMULATE; - r = mmu_topup_memory_caches(vcpu); + r = kvm_mmu_topup_memcaches(vcpu); if (r) return r; @@ -5003,7 +5003,7 @@ int kvm_mmu_load(struct kvm_vcpu *vcpu) { int r; - r = mmu_topup_memory_caches(vcpu); + r = kvm_mmu_topup_memcaches(vcpu); if (r) goto out; r = mmu_alloc_roots(vcpu); @@ -5181,7 +5181,7 @@ static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, * or not since pte prefetch is skiped if it does not have * enough objects in the cache. */ - mmu_topup_memory_caches(vcpu); + kvm_mmu_topup_memcaches(vcpu); spin_lock(&vcpu->kvm->mmu_lock); @@ -5993,7 +5993,7 @@ void kvm_mmu_destroy(struct kvm_vcpu *vcpu) { kvm_mmu_unload(vcpu); free_mmu_pages(vcpu); - mmu_free_memory_caches(vcpu); + kvm_mmu_free_memcaches(vcpu); } void kvm_mmu_module_exit(void) diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index 6bdca39829bc..36228437d498 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h @@ -747,7 +747,7 @@ static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr, u32 error_code, pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code); - r = mmu_topup_memory_caches(vcpu); + r = kvm_mmu_topup_memcaches(vcpu); if (r) return r; @@ -870,7 +870,7 @@ static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva, hpa_t root_hpa) * No need to check return value here, rmap_can_add() can * help us to skip pte prefetch later. */ - mmu_topup_memory_caches(vcpu); + kvm_mmu_topup_memcaches(vcpu); if (!VALID_PAGE(root_hpa)) { WARN_ON(1); diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 911cf2c75afa..d1da1591b7ae 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h @@ -739,15 +739,15 @@ void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu, bool usermode_vcpu_not_eligible); void kvm_flush_remote_tlbs(struct kvm *kvm); void kvm_reload_remote_mmus(struct kvm *kvm); -#ifdef KVM_ARCH_WANT_MMU_MEMORY_CACHE -int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, +#ifdef KVM_ARCH_WANT_MMU_MEMCACHE +int kvm_mmu_topup_memcache(struct kvm_mmu_memcache *cache, struct kmem_cache *base_cache, int min); -int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache); -void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc, +int kvm_mmu_memcache_free_objects(struct kvm_mmu_memcache *cache); +void kvm_mmu_free_memcache(struct kvm_mmu_memcache *mc, struct kmem_cache *cache); -int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache, int min); -void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc); -void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc); +int kvm_mmu_topup_memcache_page(struct kvm_mmu_memcache *cache, int min); +void kvm_mmu_free_memcache_page(struct kvm_mmu_memcache *mc); +void *kvm_mmu_memcache_alloc(struct kvm_mmu_memcache *mc); #endif bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req, diff --git a/include/linux/kvm_types.h b/include/linux/kvm_types.h index 6cee379588ee..10eaf5f53931 100644 --- a/include/linux/kvm_types.h +++ b/include/linux/kvm_types.h @@ -64,14 +64,14 @@ struct gfn_to_hva_cache { struct kvm_memory_slot *memslot; }; -#ifdef KVM_ARCH_WANT_MMU_MEMORY_CACHE +#ifdef KVM_ARCH_WANT_MMU_MEMCACHE /* * We don't want allocation failures within the mmu code, so we preallocate * enough memory for a single page fault in a cache. */ -struct kvm_mmu_memory_cache { +struct kvm_mmu_memcache { int nobjs; - void *objects[KVM_NR_MEM_OBJS]; + void *objects[KVM_MMU_NR_MEMCACHE_OBJS]; }; #endif diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index e07b26145ef2..02fd90f9b4b7 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -285,8 +285,8 @@ void kvm_reload_remote_mmus(struct kvm *kvm) kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD); } -#ifdef KVM_ARCH_WANT_MMU_MEMORY_CACHE -int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, +#ifdef KVM_ARCH_WANT_MMU_MEMCACHE +int kvm_mmu_topup_memcache(struct kvm_mmu_memcache *cache, struct kmem_cache *base_cache, int min) { void *obj; @@ -302,19 +302,19 @@ int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, return 0; } -int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache) +int kvm_mmu_memcache_free_objects(struct kvm_mmu_memcache *cache) { return cache->nobjs; } -void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc, +void kvm_mmu_free_memcache(struct kvm_mmu_memcache *mc, struct kmem_cache *cache) { while (mc->nobjs) kmem_cache_free(cache, mc->objects[--mc->nobjs]); } -int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache, int min) +int kvm_mmu_topup_memcache_page(struct kvm_mmu_memcache *cache, int min) { void *page; @@ -329,13 +329,13 @@ int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache, int min) return 0; } -void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc) +void kvm_mmu_free_memcache_page(struct kvm_mmu_memcache *mc) { while (mc->nobjs) free_page((unsigned long)mc->objects[--mc->nobjs]); } -void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc) +void *kvm_mmu_memcache_alloc(struct kvm_mmu_memcache *mc) { void *p;