[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86/p2m: constify p2m_mem_access_sanity_check()
commit 7f8d8632b6cc3ee7bec566e21267b45d436aa391 Author: Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx> AuthorDate: Fri Nov 23 12:05:10 2018 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Fri Nov 23 12:05:10 2018 +0100 x86/p2m: constify p2m_mem_access_sanity_check() Minor improvement; simply improving code quality by using consts wherever reasonable. Suggested-by: Jan Beulich <JBeulich@xxxxxxxx> Signed-off-by: Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx> Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxx> Acked-by: Tamas K Lengyel <tamas@xxxxxxxxxxxxx> --- xen/arch/x86/mm/mem_access.c | 2 +- xen/include/asm-x86/mem_access.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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__ */ -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |