aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-10-14 09:07:44 +0200
committerJan Beulich <jbeulich@suse.com>2013-10-14 09:07:44 +0200
commit7ab6af234f9c140418e6aae177928d00abbb628b (patch)
tree41e9fe0dc6e9997aeff70292facb4c9f87d56fcc
parentdfd1fe582367933924a1e3318ac0a0da7d2bc7e3 (diff)
downloadxen-7ab6af234f9c140418e6aae177928d00abbb628b.tar.gz
xen-7ab6af234f9c140418e6aae177928d00abbb628b.tar.bz2
xen-7ab6af234f9c140418e6aae177928d00abbb628b.zip
sched: Correct function prototypes
struct vcpu pointers are traditionally v rather than d. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Keir Fraser <keir@xen.org>
-rw-r--r--xen/include/xen/sched.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h
index 1765e18269..2e83f08dd9 100644
--- a/xen/include/xen/sched.h
+++ b/xen/include/xen/sched.h
@@ -567,9 +567,9 @@ void sched_set_node_affinity(struct domain *, nodemask_t *);
int sched_id(void);
void sched_tick_suspend(void);
void sched_tick_resume(void);
-void vcpu_wake(struct vcpu *d);
-void vcpu_sleep_nosync(struct vcpu *d);
-void vcpu_sleep_sync(struct vcpu *d);
+void vcpu_wake(struct vcpu *v);
+void vcpu_sleep_nosync(struct vcpu *v);
+void vcpu_sleep_sync(struct vcpu *v);
/*
* Force synchronisation of given VCPU's state. If it is currently descheduled,