From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keir Fraser Subject: Re: [PATCH] common/sched: Correct function prototypes Date: Thu, 10 Oct 2013 19:25:32 +0100 Message-ID: References: <1381424754-7451-1-git-send-email-andrew.cooper3@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1381424754-7451-1-git-send-email-andrew.cooper3@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Andrew Cooper , Xen-devel Cc: Jan Beulich List-Id: xen-devel@lists.xenproject.org On 10/10/2013 18:05, "Andrew Cooper" wrote: > struct vcpu pointers are traditionally v rather than d. > > Signed-off-by: Andrew Cooper > CC: Keir Fraser > CC: Jan Beulich > George Dunlap Acked-by: Keir Fraser > --- > xen/include/xen/sched.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h > index 1765e18..2e83f08 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,