|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [xen-unstable test] 4473: regressions - FAIL
On 24/12/2010 10:45, "Ian Campbell" <Ian.Campbell@xxxxxxxxxx> wrote:
> On Fri, 2010-12-24 at 10:37 +0000, xen.org wrote:
>
> 64 bit failures are the libxc issue I posted a patch for just now.
>
> 32 bit failures are:
> cc1: warnings being treated as errors
> sched_credit2.c: In function 'csched_dump':
> sched_credit2.c:1790: error: format '%3ld' expects type 'long int',
> but argument 6 has type 's_time_t'
Applied your fix to xen-unstable staging.
Thanks,
Keir
> Requiring:
>
> diff -r a4369aa8ab41 xen/common/sched_credit2.c
> --- a/xen/common/sched_credit2.c Fri Dec 24 09:47:12 2010 +0000
> +++ b/xen/common/sched_credit2.c Fri Dec 24 10:45:03 2010 +0000
> @@ -1782,7 +1782,7 @@ csched_dump(const struct scheduler *ops)
> "\tncpus = %u\n"
> "\tmax_weight = %d\n"
> "\tinstload = %d\n"
> - "\taveload = %3ld\n",
> + "\taveload = %3"PRI_stime"\n",
> i,
> cpus_weight(prv->rqd[i].active),
> prv->rqd[i].max_weight,
>
> Ian.
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|