From: Razvan Cojocaru Date: Fri, 23 Nov 2018 11:05:10 +0000 (+0100) Subject: x86/p2m: constify p2m_mem_access_sanity_check() X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7f8d8632b6cc3ee7bec566e21267b45d436aa391;p=people%2Froyger%2Fxen.git x86/p2m: constify p2m_mem_access_sanity_check() Minor improvement; simply improving code quality by using consts wherever reasonable. Suggested-by: Jan Beulich Signed-off-by: Razvan Cojocaru Reviewed-by: George Dunlap Acked-by: Tamas K Lengyel --- diff --git a/xen/arch/x86/mm/mem_access.c b/xen/arch/x86/mm/mem_access.c index 30c2f1a137..56c06a4fc6 100644 --- a/xen/arch/x86/mm/mem_access.c +++ b/xen/arch/x86/mm/mem_access.c @@ -541,7 +541,7 @@ void arch_p2m_set_access_required(struct domain *d, bool access_required) #endif } -bool p2m_mem_access_sanity_check(struct domain *d) +bool p2m_mem_access_sanity_check(const struct domain *d) { return is_hvm_domain(d) && cpu_has_vmx && hap_enabled(d); } diff --git a/xen/include/asm-x86/mem_access.h b/xen/include/asm-x86/mem_access.h index c815db87c5..99817a33db 100644 --- a/xen/include/asm-x86/mem_access.h +++ b/xen/include/asm-x86/mem_access.h @@ -44,7 +44,7 @@ bool p2m_mem_access_emulate_check(struct vcpu *v, const vm_event_response_t *rsp); /* Sanity check for mem_access hardware support */ -bool p2m_mem_access_sanity_check(struct domain *d); +bool p2m_mem_access_sanity_check(const struct domain *d); #endif /*__ASM_X86_MEM_ACCESS_H__ */