From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xiao Guangrong Subject: [PATCH v4 0/5] KVM: MMU: fix release no-slot pfn and clean up mmu code Date: Sun, 07 Oct 2012 20:00:32 +0800 Message-ID: <50716EE0.6010504@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , LKML , KVM To: Avi Kivity Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Changlog: - filter error pfn out in the common function - kvm_release_pfn instead of doing it in mmu code - remove the patches which clean up for release noslot pfn path Release pfn in the mmu code is little special for we allow no-slot pfn go to spte walk on page fault path, that means, on page fault fail path, we can not directly call kvm_release_pfn_clean. This patchset fixes the bug which adds a branch to filter error pfn out in kvm_release_pfn_clean and clean up current mmu code.