[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4717B072.6090506@bull.net>
Date: Thu, 18 Oct 2007 21:13:54 +0200
From: Laurent Vivier <Laurent.Vivier@...l.net>
To: Christian Borntraeger <borntraeger@...ibm.com>
Cc: Avi Kivity <avi@...ranet.com>, kvm-devel@...ts.sourceforge.net,
linux-kernel@...r.kernel.org
Subject: Re: Fix guest time accounting going faster than user time accounting
Acked-by: Laurent Vivier <Laurent.Vivier@...l.net>
Christian Borntraeger a écrit :
> Seems I overlooked this type while reviewing Laurents patch.
> cputime_add already adds, dont do it twice.
>
> Avi. This should go to Linus before 2.6.24.
>
> Signed-off-by: Christian Borntraeger <borntraeger@...ibm.com>
>
> ---
> fs/proc/array.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-2.6.23/fs/proc/array.c
> ===================================================================
> --- linux-2.6.23.orig/fs/proc/array.c
> +++ linux-2.6.23/fs/proc/array.c
> @@ -446,7 +446,7 @@ static int do_task_stat(struct task_stru
> maj_flt += sig->maj_flt;
> utime = cputime_add(utime, sig->utime);
> stime = cputime_add(stime, sig->stime);
> - gtime += cputime_add(gtime, sig->gtime);
> + gtime = cputime_add(gtime, sig->gtime);
> }
>
> sid = signal_session(sig);
>
--
---------------- Laurent.Vivier@...l.net -----------------
"Given enough eyeballs, all bugs are shallow" E. S. Raymond
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists