public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cpuset: minor code refinements
@ 2006-10-19  9:21 Paul Jackson
  0 siblings, 0 replies; only message in thread
From: Paul Jackson @ 2006-10-19  9:21 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Martin Bligh, Paul Menage, Simon.Derr, linux-kernel,
	Dinakar Guniguntala, Rohit Seth, Robin Holt, dipankar,
	Nick Piggin, Paul Jackson, Siddha, Suresh B

From: Paul Jackson <pj@sgi.com>

A couple of minor code simplifications to the
kernel/cpuset.c code.  No functional change.
Just a little less code and a little more readable.

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

---
 kernel/cpuset.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

--- 2.6.19-rc1-mm1.orig/kernel/cpuset.c	2006-10-19 01:06:29.000000000 -0700
+++ 2.6.19-rc1-mm1/kernel/cpuset.c	2006-10-19 01:06:49.000000000 -0700
@@ -729,9 +729,11 @@ static int validate_change(const struct 
 	}
 
 	/* Remaining checks don't apply to root cpuset */
-	if ((par = cur->parent) == NULL)
+	if (cur == &top_cpuset)
 		return 0;
 
+	par = cur->parent;
+
 	/* We must be a subset of our parent cpuset */
 	if (!is_cpuset_subset(trial, par))
 		return -EACCES;
@@ -1060,10 +1062,7 @@ static int update_flag(cpuset_flagbits_t
 	cpu_exclusive_changed =
 		(is_cpu_exclusive(cs) != is_cpu_exclusive(&trialcs));
 	mutex_lock(&callback_mutex);
-	if (turning_on)
-		set_bit(bit, &cs->flags);
-	else
-		clear_bit(bit, &cs->flags);
+	cs->flags = trialcs.flags;
 	mutex_unlock(&callback_mutex);
 
 	if (cpu_exclusive_changed)

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-19  9:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-19  9:21 [PATCH] cpuset: minor code refinements Paul Jackson

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