From: Tamas K Lengyel Date: Wed, 18 Mar 2020 15:31:06 +0000 (-0600) Subject: x86/mem_sharing: move mem_sharing_domain declaration X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~523 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=85b01220fe4629fcc450896e588100fb8516ad40;p=xen.git 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 Acked-by: Andrew Cooper --- 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? */