OSDN Git Service

KVM: x86: MMU: Consolidate quickly_check_mmio_pf() and is_mmio_page_fault()
authorTakuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp>
Mon, 22 Feb 2016 08:23:40 +0000 (17:23 +0900)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 23 Feb 2016 13:20:27 +0000 (14:20 +0100)
commitded5874946baa15b56b531f638f9c706266deb7b
tree912c11a86164f979d384f6f4fe8cbd1448cf5251
parent3ae13faac40011e51234989d938fb70f4f0150d0
KVM: x86: MMU: Consolidate quickly_check_mmio_pf() and is_mmio_page_fault()

These two have only slight differences:
 - whether 'addr' is of type u64 or of type gva_t
 - whether they have 'direct' parameter or not

Concerning the former, quickly_check_mmio_pf()'s u64 is better because
'addr' needs to be able to have both a guest physical address and a
guest virtual address.

The latter is just a stylistic issue as we can always calculate the mode
from the 'vcpu' as is_mmio_page_fault() does.  This patch keeps the
parameter to make the following patch cleaner.

In addition, the patch renames the function to mmio_info_in_cache() to
make it clear what it actually checks for.

Signed-off-by: Takuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/mmu.c