Skip to content

Commit e9ab22d

Browse files
committedAug 17, 2015
Merge branch 'for-4.2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup
Pull cgroup fix from Tejun Heo: "A fix for a subtle bug introduced back during 3.17 cycle which interferes with setting configurations under specific conditions" * 'for-4.2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup: cpuset: use trialcs->mems_allowed as a temp variable
2 parents a36304b + 24ee3cf commit e9ab22d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎kernel/cpuset.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ static int update_nodemask(struct cpuset *cs, struct cpuset *trialcs,
12231223
spin_unlock_irq(&callback_lock);
12241224

12251225
/* use trialcs->mems_allowed as a temp variable */
1226-
update_nodemasks_hier(cs, &cs->mems_allowed);
1226+
update_nodemasks_hier(cs, &trialcs->mems_allowed);
12271227
done:
12281228
return retval;
12291229
}

0 commit comments

Comments
 (0)