The patch titled cpuset: minor code refinements has been removed from the -mm tree. Its filename was cpuset-minor-code-refinements.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cpuset: minor code refinements From: Paul Jackson <pj@xxxxxxx> 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@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/cpuset.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff -puN kernel/cpuset.c~cpuset-minor-code-refinements kernel/cpuset.c --- a/kernel/cpuset.c~cpuset-minor-code-refinements +++ a/kernel/cpuset.c @@ -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) _ Patches currently in -mm which might be from pj@xxxxxxx are origin.patch mm-fallback_alloc-cpuset_zone_allowed-irq-fix.patch cpuset-remove-sched-domain-hooks-from-cpusets.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html