Re: [Xen-devel] [Patch] static and __initdata symbols in credit2

2015-01-14 Thread Jan Beulich
>>> On 14.01.15 at 16:11, wrote: > --- a/xen/common/sched_credit2.c > +++ b/xen/common/sched_credit2.c > @@ -163,7 +163,7 @@ > #define CSFLAG_runq_migrate_request (1<<__CSFLAG_runq_migrate_request) > > > -int opt_migrate_resist=500; > +static int __initdata opt_migrate_resist=500; > integer_

[Xen-devel] [Patch] static and __initdata symbols in credit2

2015-01-14 Thread Uma Sharma
Changing param varibales in sched_credit2.c as static and marking them as __initdata where required. Signed-off-by: Uma Sharma --- diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c index 1ca521b..581493d 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c