[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86/mem_sharing: move mem_sharing_domain declaration
commit 85b01220fe4629fcc450896e588100fb8516ad40 Author: Tamas K Lengyel <tamas@xxxxxxxxxxxxx> AuthorDate: Wed Mar 18 09:31:06 2020 -0600 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Wed Mar 18 19:53:26 2020 +0000 x86/mem_sharing: move mem_sharing_domain declaration Due to recent reshuffling of header include paths mem_sharing no longer compiles. Fix it by moving mem_sharing_domain declaration to location it is used in. Signed-off-by: Tamas K Lengyel <tamas@xxxxxxxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/include/asm-x86/hvm/domain.h | 13 +++++++++++++ xen/include/asm-x86/mem_sharing.h | 11 ----------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/xen/include/asm-x86/hvm/domain.h b/xen/include/asm-x86/hvm/domain.h index 624a67d0dd..95fe18cddc 100644 --- a/xen/include/asm-x86/hvm/domain.h +++ b/xen/include/asm-x86/hvm/domain.h @@ -64,6 +64,19 @@ struct hvm_ioreq_server { uint8_t bufioreq_handling; }; +#ifdef CONFIG_MEM_SHARING +struct mem_sharing_domain +{ + bool enabled; + + /* + * When releasing shared gfn's in a preemptible manner, recall where + * to resume the search. + */ + unsigned long next_shared_gfn_to_relinquish; +}; +#endif + /* * This structure defines function hooks to support hardware-assisted * virtual interrupt delivery to guest. (e.g. VMX PI and SVM AVIC). diff --git a/xen/include/asm-x86/mem_sharing.h b/xen/include/asm-x86/mem_sharing.h index 53760a2896..53b7929d0e 100644 --- a/xen/include/asm-x86/mem_sharing.h +++ b/xen/include/asm-x86/mem_sharing.h @@ -26,17 +26,6 @@ #ifdef CONFIG_MEM_SHARING -struct mem_sharing_domain -{ - bool enabled; - - /* - * When releasing shared gfn's in a preemptible manner, recall where - * to resume the search. - */ - unsigned long next_shared_gfn_to_relinquish; -}; - #define mem_sharing_enabled(d) ((d)->arch.hvm.mem_sharing.enabled) /* Auditing of memory sharing code? */ -- 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 |