From: Alex Williamson Date: Thu, 29 Nov 2007 19:00:07 +0000 (-0700) Subject: [IA64] Sync domctl.h for XEN_DOMCTL_set_opt_feature X-Git-Tag: xen-3.2.0~21^2^2~28^2^2~25 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b2d04d8f5eb7467745f0a549ee3ac89fece5dd80;p=xenclient%2Fkernel.git [IA64] Sync domctl.h for XEN_DOMCTL_set_opt_feature Signed-off-by: Alex Williamson --- diff --git a/include/xen/interface/domctl.h b/include/xen/interface/domctl.h index d9f9f5de..5d9a44c3 100644 --- a/include/xen/interface/domctl.h +++ b/include/xen/interface/domctl.h @@ -539,6 +539,17 @@ struct xen_domctl_ext_vcpucontext { typedef struct xen_domctl_ext_vcpucontext xen_domctl_ext_vcpucontext_t; DEFINE_XEN_GUEST_HANDLE(xen_domctl_ext_vcpucontext_t); +/* + * Set optimizaton features for a domain + */ +#define XEN_DOMCTL_set_opt_feature 44 +struct xen_domctl_set_opt_feature { +#ifdef __ia64__ + struct xen_ia64_opt_feature optf; +#endif +}; +typedef struct xen_domctl_set_opt_feature xen_domctl_set_opt_feature_t; +DEFINE_XEN_GUEST_HANDLE(xen_domctl_set_opt_feature_t); struct xen_domctl { uint32_t cmd; @@ -575,6 +586,7 @@ struct xen_domctl { struct xen_domctl_ioport_mapping ioport_mapping; struct xen_domctl_pin_mem_cacheattr pin_mem_cacheattr; struct xen_domctl_ext_vcpucontext ext_vcpucontext; + struct xen_domctl_set_opt_feature set_opt_feature; uint8_t pad[128]; } u; };