All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Jackson <pj@sgi.com>
To: Mikael Pettersson <mikpe@csd.uu.se>
Cc: akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH][2.6.7-rc3-mm1] perfctr cpumask cleanup
Date: Wed, 9 Jun 2004 15:55:10 -0700	[thread overview]
Message-ID: <20040609155510.3ad48776.pj@sgi.com> (raw)
In-Reply-To: <200406092050.i59KoWoa000621@alkaid.it.uu.se>

Or ... pushing the point further ... one _could_ remove the old_mask as
well.  However I think this makes the code less clear, even if it does
save a stack copy of a cpumask_t.  So I'm of mixed feelings on this
patch, edging slightly toward negative.  Same utter lack of testing as
the previous patch.

Signed-off-by: Paul Jackson <pj@sgi.com>

Index: 2.6.7-rc3-mm1/drivers/perfctr/virtual.c
===================================================================
--- 2.6.7-rc3-mm1.orig/drivers/perfctr/virtual.c	2004-06-09 15:38:32.000000000 -0700
+++ 2.6.7-rc3-mm1/drivers/perfctr/virtual.c	2004-06-09 15:53:06.000000000 -0700
@@ -403,14 +403,14 @@
 		return -EFAULT;
 
 	if (control.cpu_control.nractrs || control.cpu_control.nrictrs) {
-		cpumask_t old_mask, new_mask;
+		cpumask_t new_mask;
 
-		old_mask = tsk->cpus_allowed;
-		cpus_andnot(new_mask, old_mask, perfctr_cpus_forbidden_mask);
+		cpus_andnot(new_mask, tsk->cpus_allowed,
+						perfctr_cpus_forbidden_mask);
 
 		if (cpus_empty(new_mask))
 			return -EINVAL;
-		if (!cpus_equal(new_mask, old_mask))
+		if (!cpus_equal(tsk->cpus_allowed, new_mask))
 			set_cpus_allowed(tsk, new_mask);
 	}
 


-- 
                          I won't rest till it's the best ...
                          Programmer, Linux Scalability
                          Paul Jackson <pj@sgi.com> 1.650.933.1373

      parent reply	other threads:[~2004-06-09 22:55 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-06-09 20:50 [PATCH][2.6.7-rc3-mm1] perfctr cpumask cleanup Mikael Pettersson
2004-06-09 22:47 ` Paul Jackson
2004-06-10  9:16   ` Mikael Pettersson
2004-06-10 16:01     ` Paul Jackson
2004-06-10 16:03       ` William Lee Irwin III
2004-06-10 16:11         ` Randy.Dunlap
2004-06-10 16:42         ` Paul Jackson
2004-06-09 22:55 ` Paul Jackson [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040609155510.3ad48776.pj@sgi.com \
    --to=pj@sgi.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mikpe@csd.uu.se \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.