From 9f8d606b438440831ac14733ca0dc90a59ff492f Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 4 Apr 2019 15:13:36 +0100 Subject: [PATCH] xen: vcpu_migrate_start can be static It's not used outside of schedule.c. Signed-off-by: Wei Liu Acked-by: George Dunlap --- xen/common/schedule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/common/schedule.c b/xen/common/schedule.c index a418506c6b..66f1e2611b 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -587,7 +587,7 @@ static void vcpu_move_locked(struct vcpu *v, unsigned int new_cpu) * return if it can't (because v is still running); in that case * vcpu_migrate_finish() will be called by context_saved(). */ -void vcpu_migrate_start(struct vcpu *v) +static void vcpu_migrate_start(struct vcpu *v) { set_bit(_VPF_migrating, &v->pause_flags); vcpu_sleep_nosync_locked(v); -- 2.30.2