public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] cputime tree
@ 2009-09-24 11:31 Martin Schwidefsky
  2009-09-24 16:51 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Schwidefsky @ 2009-09-24 11:31 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Linux Kernel Mailing List, Andrew Morton, Michael Abbott,
	Jan Engelhardt, Johan van Baarlen

Hi Linus,

with git commit 79741dd "idle cputime accounting" the semantic
of the stime field of the idle processes has changed. It used to
contain the amount of time the idle process has been scheduled.
Since git commit 79741dd is contains the cpu time spent in the
system by the idle process.

This change broke the output of second field of /proc/uptime. On
systems without VIRT_CPU_ACCOUNTING the field is always zero.
The legacy output of the field is the amount of time the idle
process has been scheduled on cpu #0. It is good enough to
calculate the load on an uni-processor system, it is useless
on a multi-processor. To restore the legacy behaviour and give
meaning to the multi-processor case the best we could come up
with is to add the idle time over all cpus. That fixes uni-
processors systems and gives a defined semantic on smp.

So please pull from 'cputime' branch of

	git://git390.marist.edu/pub/scm/linux-2.6.git cputime

to receive the following updates:

Michael Abbott (1):
      Fix idle time field in /proc/uptime

 fs/proc/uptime.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c
index 0c10a0b..766b1d4 100644
--- a/fs/proc/uptime.c
+++ b/fs/proc/uptime.c
@@ -4,13 +4,18 @@
 #include <linux/sched.h>
 #include <linux/seq_file.h>
 #include <linux/time.h>
+#include <linux/kernel_stat.h>
 #include <asm/cputime.h>
 
 static int uptime_proc_show(struct seq_file *m, void *v)
 {
 	struct timespec uptime;
 	struct timespec idle;
-	cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
+	int i;
+	cputime_t idletime = cputime_zero;
+
+	for_each_possible_cpu(i)
+		idletime = cputime64_add(idletime, kstat_cpu(i).cpustat.idle);
 
 	do_posix_clock_monotonic_gettime(&uptime);
 	monotonic_to_bootbased(&uptime);

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] cputime tree
  2009-09-24 11:31 [GIT PULL] cputime tree Martin Schwidefsky
@ 2009-09-24 16:51 ` Andrew Morton
  2009-09-24 19:49   ` Michael Abbott
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2009-09-24 16:51 UTC (permalink / raw)
  To: Martin Schwidefsky
  Cc: Linus Torvalds, Linux Kernel Mailing List, Michael Abbott,
	Jan Engelhardt, Johan van Baarlen, stable

On Thu, 24 Sep 2009 13:31:36 +0200 Martin Schwidefsky <schwidefsky@de.ibm.com> wrote:

> Hi Linus,
> 
> with git commit 79741dd "idle cputime accounting" the semantic
> of the stime field of the idle processes has changed. It used to
> contain the amount of time the idle process has been scheduled.
> Since git commit 79741dd is contains the cpu time spent in the
> system by the idle process.
> 
> This change broke the output of second field of /proc/uptime. On
> systems without VIRT_CPU_ACCOUNTING the field is always zero.
> The legacy output of the field is the amount of time the idle
> process has been scheduled on cpu #0. It is good enough to
> calculate the load on an uni-processor system, it is useless
> on a multi-processor. To restore the legacy behaviour and give
> meaning to the multi-processor case the best we could come up
> with is to add the idle time over all cpus. That fixes uni-
> processors systems and gives a defined semantic on smp.
> 
> So please pull from 'cputime' branch of
> 
> 	git://git390.marist.edu/pub/scm/linux-2.6.git cputime
> 
> to receive the following updates:
> 
> Michael Abbott (1):
>       Fix idle time field in /proc/uptime
> 
>  fs/proc/uptime.c |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c
> index 0c10a0b..766b1d4 100644
> --- a/fs/proc/uptime.c
> +++ b/fs/proc/uptime.c
> @@ -4,13 +4,18 @@
>  #include <linux/sched.h>
>  #include <linux/seq_file.h>
>  #include <linux/time.h>
> +#include <linux/kernel_stat.h>
>  #include <asm/cputime.h>
>  
>  static int uptime_proc_show(struct seq_file *m, void *v)
>  {
>  	struct timespec uptime;
>  	struct timespec idle;
> -	cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
> +	int i;
> +	cputime_t idletime = cputime_zero;
> +
> +	for_each_possible_cpu(i)
> +		idletime = cputime64_add(idletime, kstat_cpu(i).cpustat.idle);
>  
>  	do_posix_clock_monotonic_gettime(&uptime);
>  	monotonic_to_bootbased(&uptime);

This is a regression fix, iirc?  One which is applicable for several 2.6.x
kernel versions?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] cputime tree
  2009-09-24 16:51 ` Andrew Morton
@ 2009-09-24 19:49   ` Michael Abbott
  2009-10-01 22:31     ` [stable] " Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Abbott @ 2009-09-24 19:49 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Martin Schwidefsky, Linus Torvalds, Linux Kernel Mailing List,
	Jan Engelhardt, Johan van Baarlen, stable

On Thu, 24 Sep 2009, Andrew Morton wrote:
> On Thu, 24 Sep 2009 13:31:36 +0200 Martin Schwidefsky <schwidefsky@de.ibm.com> wrote:
> 
> > Hi Linus,
> > 
> > with git commit 79741dd "idle cputime accounting" the semantic
> > of the stime field of the idle processes has changed. It used to
> > contain the amount of time the idle process has been scheduled.
> > Since git commit 79741dd is contains the cpu time spent in the
> > system by the idle process.
> > 
> > This change broke the output of second field of /proc/uptime. On
> > systems without VIRT_CPU_ACCOUNTING the field is always zero.
> > The legacy output of the field is the amount of time the idle
> > process has been scheduled on cpu #0. It is good enough to
> > calculate the load on an uni-processor system, it is useless
> > on a multi-processor. To restore the legacy behaviour and give
> > meaning to the multi-processor case the best we could come up
> > with is to add the idle time over all cpus. That fixes uni-
> > processors systems and gives a defined semantic on smp.
> > 
> > So please pull from 'cputime' branch of
> > 
> > 	git://git390.marist.edu/pub/scm/linux-2.6.git cputime
> > 
> > to receive the following updates:
> > 
> > Michael Abbott (1):
> >       Fix idle time field in /proc/uptime
> > 
> >  fs/proc/uptime.c |    7 ++++++-
> >  1 files changed, 6 insertions(+), 1 deletions(-)
> > 
> > diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c
> > index 0c10a0b..766b1d4 100644
> > --- a/fs/proc/uptime.c
> > +++ b/fs/proc/uptime.c
> > @@ -4,13 +4,18 @@
> >  #include <linux/sched.h>
> >  #include <linux/seq_file.h>
> >  #include <linux/time.h>
> > +#include <linux/kernel_stat.h>
> >  #include <asm/cputime.h>
> >  
> >  static int uptime_proc_show(struct seq_file *m, void *v)
> >  {
> >  	struct timespec uptime;
> >  	struct timespec idle;
> > -	cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
> > +	int i;
> > +	cputime_t idletime = cputime_zero;
> > +
> > +	for_each_possible_cpu(i)
> > +		idletime = cputime64_add(idletime, kstat_cpu(i).cpustat.idle);
> >  
> >  	do_posix_clock_monotonic_gettime(&uptime);
> >  	monotonic_to_bootbased(&uptime);
> 
> This is a regression fix, iirc?  One which is applicable for several 
> 2.6.x kernel versions?

Yes indeed, all since the regression was introduced I think around about 
.28 (though I seem to remember having to tweak the code a little when 
rebasing it forward).

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [stable] [GIT PULL] cputime tree
  2009-09-24 19:49   ` Michael Abbott
@ 2009-10-01 22:31     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2009-10-01 22:31 UTC (permalink / raw)
  To: Michael Abbott
  Cc: Andrew Morton, Johan van Baarlen, Linux Kernel Mailing List,
	Jan Engelhardt, Martin Schwidefsky, Linus Torvalds, stable

On Thu, Sep 24, 2009 at 08:49:10PM +0100, Michael Abbott wrote:
> On Thu, 24 Sep 2009, Andrew Morton wrote:
> > On Thu, 24 Sep 2009 13:31:36 +0200 Martin Schwidefsky <schwidefsky@de.ibm.com> wrote:
> > 
> > > Hi Linus,
> > > 
> > > with git commit 79741dd "idle cputime accounting" the semantic
> > > of the stime field of the idle processes has changed. It used to
> > > contain the amount of time the idle process has been scheduled.
> > > Since git commit 79741dd is contains the cpu time spent in the
> > > system by the idle process.
> > > 
> > > This change broke the output of second field of /proc/uptime. On
> > > systems without VIRT_CPU_ACCOUNTING the field is always zero.
> > > The legacy output of the field is the amount of time the idle
> > > process has been scheduled on cpu #0. It is good enough to
> > > calculate the load on an uni-processor system, it is useless
> > > on a multi-processor. To restore the legacy behaviour and give
> > > meaning to the multi-processor case the best we could come up
> > > with is to add the idle time over all cpus. That fixes uni-
> > > processors systems and gives a defined semantic on smp.
> > > 
> > > So please pull from 'cputime' branch of
> > > 
> > > 	git://git390.marist.edu/pub/scm/linux-2.6.git cputime
> > > 
> > > to receive the following updates:
> > > 
> > > Michael Abbott (1):
> > >       Fix idle time field in /proc/uptime
> > > 
> > >  fs/proc/uptime.c |    7 ++++++-
> > >  1 files changed, 6 insertions(+), 1 deletions(-)
> > > 
> > > diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c
> > > index 0c10a0b..766b1d4 100644
> > > --- a/fs/proc/uptime.c
> > > +++ b/fs/proc/uptime.c
> > > @@ -4,13 +4,18 @@
> > >  #include <linux/sched.h>
> > >  #include <linux/seq_file.h>
> > >  #include <linux/time.h>
> > > +#include <linux/kernel_stat.h>
> > >  #include <asm/cputime.h>
> > >  
> > >  static int uptime_proc_show(struct seq_file *m, void *v)
> > >  {
> > >  	struct timespec uptime;
> > >  	struct timespec idle;
> > > -	cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
> > > +	int i;
> > > +	cputime_t idletime = cputime_zero;
> > > +
> > > +	for_each_possible_cpu(i)
> > > +		idletime = cputime64_add(idletime, kstat_cpu(i).cpustat.idle);
> > >  
> > >  	do_posix_clock_monotonic_gettime(&uptime);
> > >  	monotonic_to_bootbased(&uptime);
> > 
> > This is a regression fix, iirc?  One which is applicable for several 
> > 2.6.x kernel versions?
> 
> Yes indeed, all since the regression was introduced I think around about 
> .28 (though I seem to remember having to tweak the code a little when 
> rebasing it forward).

Thanks, I've queued this up for .30 and .31 stable kernels.

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-01 22:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-24 11:31 [GIT PULL] cputime tree Martin Schwidefsky
2009-09-24 16:51 ` Andrew Morton
2009-09-24 19:49   ` Michael Abbott
2009-10-01 22:31     ` [stable] " Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox