From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757054AbXJJUq6 (ORCPT ); Wed, 10 Oct 2007 16:46:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756094AbXJJUqu (ORCPT ); Wed, 10 Oct 2007 16:46:50 -0400 Received: from smtp-out.google.com ([216.239.45.13]:45413 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756064AbXJJUqt (ORCPT ); Wed, 10 Oct 2007 16:46:49 -0400 DomainKey-Signature: a=rsa-sha1; s=beta; d=google.com; c=nofws; q=dns; h=received:message-id:date:from:to:subject:cc:in-reply-to: mime-version:content-type:content-transfer-encoding: content-disposition:references; b=xIKmHQh5FmNuYNnNES9YMyiYlIxFaN3vtocnncRauCWNysmmULrsojdwaf814Se1Y qyNhrS3uRSWRXSYwBJSTg== Message-ID: <6599ad830710101346y1ade5ccdgd3b64a041eab7ec1@mail.gmail.com> Date: Wed, 10 Oct 2007 13:46:36 -0700 From: "Paul Menage" To: "David Rientjes" Subject: Re: [PATCH] task containersv11 add tasks file interface fix for cpusets Cc: "Paul Jackson" , "Andrew Morton" , nickpiggin@yahoo.com.au, a.p.zijlstra@chello.nl, serue@us.ibm.com, clg@fr.ibm.com, linux-kernel@vger.kernel.org, ebiederm@xmission.com, svaidy@linux.vnet.ibm.com, xemul@openvz.org, containers@lists.osdl.org, balbir@linux.vnet.ibm.com In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20071003084241.24279.62099.sendpatchset@jackhammer.engr.sgi.com> <6599ad830710030851jb44f00ft9634f9381218b6e9@mail.gmail.com> <20071003105817.7adf6516.pj@sgi.com> <6599ad830710031110r1a74eafej56f20cc33e72ac81@mail.gmail.com> <20071003131632.fed4b848.pj@sgi.com> <6599ad830710031331h15d35e90lc63d845efd2de6f5@mail.gmail.com> <20071006012437.c0fd3a8a.pj@sgi.com> <6599ad830710061411l3fb9368al319a80469d54946e@mail.gmail.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On 10/6/07, David Rientjes wrote: > > It can race with sched_setaffinity(). It has to give up tasklist_lock as > well to call set_cpus_allowed() and can race > > cpus_allowed = cpuset_cpus_allowed(p); > cpus_and(new_mask, new_mask, cpus_allowed); > retval = set_cpus_allowed(p, new_mask); > > and allow a task to have a cpu outside of the cpuset's new cpus_allowed if > you've taken it away between cpuset_cpus_allowed() and set_cpus_allowed(). cpuset_cpus_allowed() takes callback_mutex, which is held by update_cpumask() when it updates cs->cpus_allowed. So if we continue to hold callback_mutex across the task update loop this wouldn't be a race. Having said that, holding callback mutex for that long might not be a good idea. A cleaner solution might be to drop callback_mutex after updating cs->cpus_allowed in update_cpumask() and then make sched_setaffinity() do a post-check: cpus_allowed = cpuset_cpus_allowed(p); again: cpus_and(new_mask, new_mask, cpus_allowed); retval = set_cpus_allowed(p, new_mask); if (!retval) { /* Check for races with cpuset updates */ cpus_allowed = cpuset_cpus_allowed(p); if (!cpus_subset(new_mask, cpus_allowed)) { /* * We raced with a change to cpuset update, * and our cpumask is now outside the * permitted cpumask for the cpuset. Since a * change to the cpuset's cpus resets the * cpumask for each task, do the same thing * here. */ new_mask = cpus_allowed; goto again; } } Paul