From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 2D65137F330 for ; Mon, 10 Aug 2026 22:10:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786399812; cv=none; b=uwDywwMRpWs28gXf3lp95/06eLb4Kq4Mww2EiQeQ7xRHdOVllAN7cxykG5e5HrAmdLoKfKG8JQGq2w+Ucq3q6jvwsjCZl7cZUOb8xQ1aYLfnFbd15yRawPP8n/zdrna5UvP+XUkbVk1/cxoXcDMC1VnpoiB5WMQaXaOLOl3krgA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786399812; c=relaxed/simple; bh=XFpGff2iHGECtTC3ZRM/C81TEIWiN6aMai4rdh5nsxM=; h=Date:Message-ID:From:To:Cc:Subject:In-Reply-To:References; b=qUNGWT5jA9F6WfWe12ZzRA8mXTFnW8J9JKpNCbZoCoJRtjis0K89MF822jT9HZsgTzoyzxcVJZbW293OOIffB2MM7GDkgasJZPPv4BOS7iePs05494sn3F99qnw97IGzJsGsShsQU+qVeb0B3nTcA7DxOaLoE9Y5pJNC+4yGCtU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Mv+mU02N; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Mv+mU02N" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AEACC1F00A3D; Mon, 10 Aug 2026 22:10:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786399810; bh=/56sRgrj7YJHVFhX6lrWpVgHZphKMnxxLCfGYJPMZkc=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=Mv+mU02NzMrkuCD7lMxsmHmtXS7Vh7iwEt9RCNXBbem8RBIyIKeSjOT3Bqyswmlsq IvhN62ejVVZmEztiFGEYr6/gz7xscN9Io2UeDPsffiiqaHPMyqRDZplS/Zj84aqZ8k QGqz5m5JI/kC8oZy3i5q+AZd0QEnGOoqsybCQKHnQTFG+xNPjfE0mNpZeUlcf8UcJl Qf/8QMxC1uVSVcGhyYvxqwOnAEMEHCSMtp5tNNKMwQyf6TLY2wtercKGDVXtYFZnjv r0dUu6I9gXNdtBAeEAAL8pp/uDECQt9dd0ckrBI6mvqCvgdDyL0t/sGDEsuDfeT/Pk G2qTyfS5IoDpA== Date: Mon, 10 Aug 2026 12:10:09 -1000 Message-ID: <6149bf256ada0c5265a4bf6323b1346c@kernel.org> From: Tejun Heo To: Breno Leitao Cc: Lai Jiangshan , linux-kernel@vger.kernel.org, marco.crivellari@suse.com, kernel-team@meta.com Subject: Re: [PATCH v2 0/9] workqueue: base pwq pool release and nr_active on the backing pool In-Reply-To: <20260805-wq-pool-refactor-v2-0-fd498d01d695@debian.org> References: <20260805-wq-pool-refactor-v2-0-fd498d01d695@debian.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Hello, On Wed, Aug 05, 2026 at 07:52:27AM -0700, Breno Leitao wrote: > Breno Leitao (9): > workqueue: factor out get_percpu_pool() > workqueue: factor out alloc_and_link_percpu_pwqs() > workqueue: release pwq pools by pool type > workqueue: account nr_active by the backing pool > workqueue: test WQ_UNBOUND explicitly in the hotplug loops > workqueue: rename wq->unbound_attrs to wq->attrs > workqueue: allocate attrs for all workqueues > workqueue: rename alloc_unbound_pwq() to alloc_pwq() > workqueue: skip the node_nr_active update for non-unbound workqueues Applied 1-9 to wq/for-7.3. The wq_node_nr_active() BUG_ON() change suggested on patch 4 can be done incrementally later. Thanks. -- tejun