aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/xen/xen-ops.h
diff options
context:
space:
mode:
authorJuergen Gross <jgross@suse.com>2016-07-26 14:15:11 +0200
committerDavid Vrabel <david.vrabel@citrix.com>2016-07-26 14:07:06 +0100
commitd34c30cc1fa80f509500ff192ea6bc7d30671061 (patch)
treee1efdb59cff6dbcc90f4a047d8f49f9561a1496f /include/xen/xen-ops.h
parentxen/pvhvm: run xen_vcpu_setup() for the boot CPU (diff)
downloadwireguard-linux-d34c30cc1fa80f509500ff192ea6bc7d30671061.tar.xz
wireguard-linux-d34c30cc1fa80f509500ff192ea6bc7d30671061.zip
xen: add static initialization of steal_clock op to xen_time_ops
pv_time_ops might be overwritten with xen_time_ops after the steal_clock operation has been initialized already. To prevent calling a now uninitialized function pointer add the steal_clock static initialization to xen_time_ops. Signed-off-by: Juergen Gross <jgross@suse.com> Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'include/xen/xen-ops.h')
-rw-r--r--include/xen/xen-ops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/xen/xen-ops.h b/include/xen/xen-ops.h
index c9c532d56623..9a37c541822f 100644
--- a/include/xen/xen-ops.h
+++ b/include/xen/xen-ops.h
@@ -29,6 +29,7 @@ bool xen_vcpu_stolen(int vcpu);
void xen_setup_runstate_info(int cpu);
void xen_time_setup_guest(void);
void xen_get_runstate_snapshot(struct vcpu_runstate_info *res);
+u64 xen_steal_clock(int cpu);
int xen_setup_shutdown_event(void);