From: Dongli Zhang Date: Fri, 26 Feb 2021 06:19:45 +0000 (-0800) Subject: KVM: x86: remove misplaced comment on active_mmu_pages X-Git-Tag: v5.15~1543^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ffe76c24c5c1851e5ef949d8726d57e78cd0cf34;p=platform%2Fkernel%2Flinux-starfive.git KVM: x86: remove misplaced comment on active_mmu_pages The 'mmu_page_hash' is used as hash table while 'active_mmu_pages' is a list. Remove the misplaced comment as it's mostly stating the obvious anyways. Signed-off-by: Dongli Zhang Reviewed-by: Sean Christopherson Message-Id: <20210226061945.1222-1-dongli.zhang@oracle.com> Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 0cf71ff..85ccbd4 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -939,9 +939,6 @@ struct kvm_arch { unsigned int indirect_shadow_pages; u8 mmu_valid_gen; struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES]; - /* - * Hash table of struct kvm_mmu_page. - */ struct list_head active_mmu_pages; struct list_head zapped_obsolete_pages; struct list_head lpage_disallowed_mmu_pages;