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 AAC423C455C for ; Tue, 11 Aug 2026 16:40:59 +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=1786466460; cv=none; b=h+fleZp/ES1vl03R4+XzF7U1WpRfrcti7Q/ntQIk/JUFRQpJbNyELz7SypLPHgycPdaXhhGiER1s0IYE7fw3TiveVdVhrwL05zWENsFAezTOAMIgNZzjcB2kBDqL/rssJeY5GHkmsbl9skpRsxm7pAcipvT/LEJUSySkr3fiTgc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786466460; c=relaxed/simple; bh=2fsOvZKa0uZuPSaUi5hwtWnQGI42kRU/ZJhdvrMr93c=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=JhnpknWpXVeSFyvrVyOPLQQUqOzlEJu3UTL1kfnOnzafIFbfI90i/zdL/3EhiG2gRgMBp4N+Se7eUjCH6AK+LQPYBKP5P6bJQ7x41fMnkm5ixXiPJJs/sx9TBgLHWPkew/c/6sWfZak/QACtbitOGBWVyEXuqjfU0nvbuGvlJRA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ct6uHxvN; 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="ct6uHxvN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36C391F000E9; Tue, 11 Aug 2026 16:40:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786466459; bh=3OJSFT6cyEPutNlEwQK0SwjSspbeJkpwWUdMFLUmi4A=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=ct6uHxvNYUlNEnqpbEuyq22Xf7ykugKAJmHWF6Pq4diecOn4ybr4cv/K0usKCL3HK fP/yen/PgmXvuDScS8GUxhiEgmV1zlgDIjpVLdIb85Xf32KP05EwoHMccuy+aBxTkB 6UnYmkvV1x2rnkWpnX1UtKDVl5vMhum7exZojj/+IoyhtTiR0OWdNG1kOft013vqqf NGr8rULlJNszKTYk9MlAx0Kqq6tkp6cN3YBpFt/pv1STMZDDZwqxBJxFrOqg6AYkwK q/Sv9tlcO5qhkF6p/smw1nEQFc6DVXh3u7VMTfo5DTijNyLTMVMpxPe+awyl9jXmcY CvbQ7WcUD74WA== Date: Tue, 11 Aug 2026 06:40:58 -1000 From: Tejun Heo To: =?iso-8859-1?Q?H=E5kon?= Bugge Cc: linux-kernel@vger.kernel.org, Lai Jiangshan , John Stultz , Bradley Morgan Subject: Re: [PATCH v3 1/2] workqueue: Add missing EXPORT_SYMBOL_GPL for workqueue_set_min_active Message-ID: References: <20260811155340.3867610-1-haakon.bugge@oracle.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260811155340.3867610-1-haakon.bugge@oracle.com> On Tue, Aug 11, 2026 at 05:53:37PM +0200, Håkon Bugge wrote: > Export workqueue_set_min_active() so that tests/loadable modules, > e.g., test-ww_mutex can adjust workqueue concurrency levels to avoid > deadlocks during cyclic test runs. This function is called in > test-ww_mutex.c in order to solve a deadlock. > > Fixes: 8f172181f24b ("workqueue: Implement workqueue_set_min_active()") > Signed-off-by: Håkon Bugge Acked-by: Tejun Heo Please feel free to route together with the following patch. Thanks. -- tejun