public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: ia64 cpu hotplug patch
       [not found]     ` <20040518181214.GR2151@krispykreme>
@ 2004-05-18 23:45       ` Rusty Russell
  2004-05-18 23:58         ` Ashok Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Rusty Russell @ 2004-05-18 23:45 UTC (permalink / raw)
  To: Anton Blanchard; +Cc: Andrew Morton, lkml - Kernel Mailing List

On Wed, 2004-05-19 at 04:12, Anton Blanchard wrote:
>  > Gack, Rusty, I wish you had less SMTP latency.  I'm not sure what
> > this is about.  If it pertains to some patch which I'm carrying, someone
> > tell me what one ;)
> 
> One of the ia64 hotplug patches that got merged. It seems they got itchy
> fingers and changed a few more things than they should have.

Precisely.  This applies against Linus' kernel:

Name: Fix overzealous use of online cpu iterators
Status: Trivial

The IA64 hotplug CPU merge seems to have included some core changes: in
particular the recalc_bh_state() needs to sum for all (including
offline) cpus, since we don't empty the counters on CPU down.  I don't
know that anyone cares about the accuracy of the /proc/stat when CPUs go
down, but certainly the totals printed (the first loop) should include
offline cpus.

diff -Nru a/fs/buffer.c b/fs/buffer.c
--- b/fs/buffer.c	Fri May 14 19:00:11 2004
+++ a/fs/buffer.c	Thu Apr 22 16:20:51 2004
@@ -3019,7 +2966,7 @@
 	if (__get_cpu_var(bh_accounting).ratelimit++ < 4096)
 		return;
 	__get_cpu_var(bh_accounting).ratelimit = 0;
-	for_each_online_cpu(i)
+	for_each_cpu(i)
 		tot += per_cpu(bh_accounting, i).nr;
 	buffer_heads_over_limit = (tot > max_buffer_heads);
 }
diff -Nru a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
--- b/fs/proc/proc_misc.c	Fri May 14 23:11:58 2004
+++ a/fs/proc/proc_misc.c	Tue Mar 23 02:05:27 2004
@@ -368,7 +368,7 @@
 	if (wall_to_monotonic.tv_nsec)
 		--jif;
 
-	for_each_online_cpu(i) {
+	for_each_cpu(i) {
 		int j;
 
 		user += kstat_cpu(i).cpustat.user;
@@ -390,7 +390,7 @@
 		(unsigned long long)jiffies_64_to_clock_t(iowait),
 		(unsigned long long)jiffies_64_to_clock_t(irq),
 		(unsigned long long)jiffies_64_to_clock_t(softirq));
-	for_each_online_cpu(i) {
+	for_each_cpu(i) {
 
 		/* Copy values here to work around gcc-2.95.3, gcc-2.96 */
 		user = kstat_cpu(i).cpustat.user;



-- 
Anyone who quotes me in their signature is an idiot -- Rusty Russell


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

* Re: ia64 cpu hotplug patch
  2004-05-18 23:45       ` ia64 cpu hotplug patch Rusty Russell
@ 2004-05-18 23:58         ` Ashok Raj
  2004-05-19  0:44           ` Rusty Russell
  0 siblings, 1 reply; 3+ messages in thread
From: Ashok Raj @ 2004-05-18 23:58 UTC (permalink / raw)
  To: Rusty Russell; +Cc: Anton Blanchard, Andrew Morton, lkml - Kernel Mailing List

On Tue, May 18, 2004 at 04:45:56PM -0700, Rusty Russell wrote:
> 
>    On Wed, 2004-05-19 at 04:12, Anton Blanchard wrote:
>    >  > Gack, Rusty, I wish you had less SMTP latency.  I'm not sure what
>    >  >  this is about.  If it pertains to some patch which I'm carrying,
>    someone
>    > > tell me what one ;)
>    >
>    >  One  of the ia64 hotplug patches that got merged. It seems they got
>    itchy
>    > fingers and changed a few more things than they should have.
> 
>    Precisely.  This applies against Linus' kernel:
> 
>    Name: Fix overzealous use of online cpu iterators
>    Status: Trivial
> 
>    The  IA64  hotplug CPU merge seems to have included some core changes:
>    in
>    particular the recalc_bh_state() needs to sum for all (including
>    offline) cpus, since we don't empty the counters on CPU down.  I don't
>    know  that anyone cares about the accuracy of the /proc/stat when CPUs
>    go
>    down, but certainly the totals printed (the first loop) should include
>    offline cpus.

Sorry... my mistake!

proc_misc.c was changed, since top() uses this to read and
display stats. With cpuhotplug cpu_possible() represents
the entire set of NR_CPUS, all these stats with 0 values and
top gets all dorky about it.

Maybe the right thing would be to fix the utility instead ?

Other issue i noticied was that when we have a 4 cpu system, and you 
remove an intermediate cpu say cpu2, top utility is dorky again. And prints
"invalid data" in the middle of the output.

Without the fix to proc_misc, if NR_CPUS is set to 128, top lists all
128 cpu stats even if only 4 are present and online, since 
for_each_cpu reprensents all of it....

> 
>    --- b/fs/proc/proc_misc.c       Fri May 14 23:11:58 2004
>    +++ a/fs/proc/proc_misc.c       Tue Mar 23 02:05:27 2004
>    @@ -368,7 +368,7 @@
>            if (wall_to_monotonic.tv_nsec)
>                    --jif;
> 
>    -       for_each_online_cpu(i) {
>    +       for_each_cpu(i) {
>                    int j;
> 
>                    user += kstat_cpu(i).cpustat.user;
>    @@ -390,7 +390,7 @@
>                    (unsigned long long)jiffies_64_to_clock_t(iowait),
>                    (unsigned long long)jiffies_64_to_clock_t(irq),
>                    (unsigned long long)jiffies_64_to_clock_t(softirq));
>    -       for_each_online_cpu(i) {
>    +       for_each_cpu(i) {
> 
>                      /*  Copy  values  here  to  work  around gcc-2.95.3,
>    gcc-2.96 */
>                    user = kstat_cpu(i).cpustat.user;
> 
>    --
>    Anyone who quotes me in their signature is an idiot -- Rusty Russell
> 
>    -
>    To   unsubscribe   from   this   list:   send  the  line  "unsubscribe
>    linux-kernel" in
>    the body of a message to majordomo@vger.kernel.org
>    More majordomo info at  [1]http://vger.kernel.org/majordomo-info.html
>    Please read the FAQ at  [2]http://www.tux.org/lkml/
> 
> References
> 
>    1. http://vger.kernel.org/majordomo-info.html
>    2. http://www.tux.org/lkml/

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

* Re: ia64 cpu hotplug patch
  2004-05-18 23:58         ` Ashok Raj
@ 2004-05-19  0:44           ` Rusty Russell
  0 siblings, 0 replies; 3+ messages in thread
From: Rusty Russell @ 2004-05-19  0:44 UTC (permalink / raw)
  To: Ashok Raj; +Cc: Anton Blanchard, Andrew Morton, lkml - Kernel Mailing List

On Wed, 2004-05-19 at 09:58, Ashok Raj wrote:
> proc_misc.c was changed, since top() uses this to read and
> display stats. With cpuhotplug cpu_possible() represents
> the entire set of NR_CPUS, all these stats with 0 values and
> top gets all dorky about it.
> 
> Maybe the right thing would be to fix the utility instead ?
> 
> Other issue i noticied was that when we have a 4 cpu system, and you 
> remove an intermediate cpu say cpu2, top utility is dorky again. And prints
> "invalid data" in the middle of the output.
> 
> Without the fix to proc_misc, if NR_CPUS is set to 128, top lists all
> 128 cpu stats even if only 4 are present and online, since 
> for_each_cpu reprensents all of it....

OK, well if you're correlating /proc/cpuinfo (online cpus) and
/proc/stat (possible cpus), then I can understand top getting upset.

Perhaps we should only show online cpus in /proc/stat, but the totals
displayed must still include all CPUs I think.

How's this version:

Name: Fix overzealous use of online cpu iterators
Status: Trivial

The IA64 hotplug CPU merge seems to have included some core changes: in
particular the recalc_bh_state() needs to sum for all (including
offline) cpus, since we don't empty the counters on CPU down.  The
totals printed by /proc/stat (the first loop) should include offline
cpus, too (apparently printing out the per-cpu lines for offline cpus
confuses top).

diff -Nru a/fs/buffer.c b/fs/buffer.c
--- b/fs/buffer.c	Fri May 14 19:00:11 2004
+++ a/fs/buffer.c	Thu Apr 22 16:20:51 2004
@@ -3019,7 +2966,7 @@
 	if (__get_cpu_var(bh_accounting).ratelimit++ < 4096)
 		return;
 	__get_cpu_var(bh_accounting).ratelimit = 0;
-	for_each_online_cpu(i)
+	for_each_cpu(i)
 		tot += per_cpu(bh_accounting, i).nr;
 	buffer_heads_over_limit = (tot > max_buffer_heads);
 }
diff -Nru a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
--- b/fs/proc/proc_misc.c	Fri May 14 23:11:58 2004
+++ a/fs/proc/proc_misc.c	Tue Mar 23 02:05:27 2004
@@ -368,7 +368,7 @@
 	if (wall_to_monotonic.tv_nsec)
 		--jif;
 
-	for_each_online_cpu(i) {
+	for_each_cpu(i) {
 		int j;
 
 		user += kstat_cpu(i).cpustat.user;


-- 
Anyone who quotes me in their signature is an idiot -- Rusty Russell


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

end of thread, other threads:[~2004-05-19  0:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20040515191217.GB24541@krispykreme>
     [not found] ` <1084867279.20916.61.camel@bach>
     [not found]   ` <20040518010856.24f116f7.akpm@osdl.org>
     [not found]     ` <20040518181214.GR2151@krispykreme>
2004-05-18 23:45       ` ia64 cpu hotplug patch Rusty Russell
2004-05-18 23:58         ` Ashok Raj
2004-05-19  0:44           ` Rusty Russell

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