sched: Correct function prototypes
authorAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 14 Oct 2013 07:07:44 +0000 (09:07 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 14 Oct 2013 07:07:44 +0000 (09:07 +0200)
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>
xen/include/xen/sched.h

index 1765e18269a5798debffca4cc602b2e538bd02ef..2e83f08dd9f13521150639f2763646cb60ac6c3b 100644 (file)
@@ -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,