From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2B3E236EA9A; Wed, 28 Jan 2026 17:44:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769622291; cv=none; b=dMuSnSoNkEqgLlGcinuS7IiFCdm9Nmh76Ps+sDQyjiCCYH7AaQhRSYvZ12dKK/g1h13RvEDq70XmEQPOvxejHecLaRyapy9oaquyPs1hXoXD6H4hgPYAQVikOTYDVHW9At0LetW6hh3bBAHalSTrCpo/2KmnmFVUDxqxWDuMZ4Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769622291; c=relaxed/simple; bh=XAEjsCGwtolbdxg/r2xllMAPogUhFIwqwIHLHticWCw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=PAhWpxk/6nfTFnRtnvmhEhO2RoJfe2g5nFwzPC7ZdZasOeaCnUpi6rVDq62QmAtZgD7nu19qGW9BMvoP26LrJFb2e2Aw3nos6JeywAX2iO5NB9VLbNaIApseDcK3XAd+4CmXi6RWbP6JKP0y7W/MYSi6jWhgJAlsDyHTLmYioDw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mCypkrkN; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mCypkrkN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 602E7C4CEF1; Wed, 28 Jan 2026 17:44:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769622290; bh=XAEjsCGwtolbdxg/r2xllMAPogUhFIwqwIHLHticWCw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mCypkrkNtKKRpFIUWzpxn8ey6pxmqkgMrP0VAcSEdlF9Y5n3AY6W2c8onHq/+ILH0 SLBiSdXb+vMkM55rRnZoqqoJNc2mwh+WLmQ40d3vxx14l1Ngq9e7opCxWJ4Bya+p5l 6AaMBqAGL90ofu1/BUnH4+uCd98p4lDNE26nyh1XPvy6dNHHPaysvyCcYg+WvvXmEq xDteOmkC5m0X56vCjcN7kpIDcpAovvdD6LVgXSK7rlDb2NIgl5yhbJKhXIc+hOh+Ts 6IL9WhaBOTq40gnhrm1xNKD0tGkXhug5LpyST+7jRdEEp7YdRRp578kEjhptH8+wC3 BP8b0N5bYVX8Q== Date: Wed, 28 Jan 2026 07:44:49 -1000 From: Tejun Heo To: Waiman Long Cc: Chen Ridong , Johannes Weiner , Michal =?iso-8859-1?Q?Koutn=FD?= , Ingo Molnar , Peter Zijlstra , Juri Lelli , Vincent Guittot , Steven Rostedt , Ben Segall , Mel Gorman , Valentin Schneider , Anna-Maria Behnsen , Frederic Weisbecker , Thomas Gleixner , Shuah Khan , cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH/for-next 1/2] cgroup/cpuset: Defer housekeeping_update() call from CPU hotplug to task_work Message-ID: References: <20260128044251.1229702-1-longman@redhat.com> <20260128044251.1229702-2-longman@redhat.com> Precedence: bulk X-Mailing-List: cgroups@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260128044251.1229702-2-longman@redhat.com> On Tue, Jan 27, 2026 at 11:42:50PM -0500, Waiman Long wrote: > +static void isolation_task_work_fn(struct callback_head *cb) > +{ > + cpuset_full_lock(); > + __update_isolation_cpumasks(true); > + cpuset_full_lock(); ^ unlock? Thanks. -- tejun