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 6B58D3806B5 for ; Mon, 10 Aug 2026 19:00:23 +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=1786388424; cv=none; b=EEBig3tT80EzLLdi7Jx9hd0p8kanw5pdhq05THaw7Y8ChKM2HHf2soCKUf5NiBlpwBA0PPwMoNSekd/DRkXhekKsIu72uWy85zgNhXvyGy+bzD8xp6bI1VrxgzJsFYgm3SWwt19nFV5CeQXAOQACGGJLf7Zs10ltvVxFF8iD1qQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786388424; c=relaxed/simple; bh=3HCoHVUMBfeCejmSaTZZwUjIoE/C+7mG+ETQSTZMp6Q=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=qcM8qBG999MTWbXpKXYtgUoqJ0yPDz9pCqxnz6eEXoWm4tiLKvoBwpN8kAkvBGcX+je+Xx3NzgWB4Pe9qHDw6Q6Nlp9TR/MpjNmVY3z6kbH3eBcN4xZtSEfv6ocePYq7EeOGDXZwmijXfHvhnGy1qfygLIKSmV2WF5o3azBi0lM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=eVlJfOgs; 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="eVlJfOgs" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DD1861F00A3A; Mon, 10 Aug 2026 19:00:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786388423; bh=xQ+xphkr1ALqWm3AlEoOHrwNm0/NwfBsUvZSNe2GU9U=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=eVlJfOgsGsUACEx/l7Q1iRU7pwrJVcUjIb7MVeMvvNnns2mwrO0log2u9P/z1nQrb Go2eDFl/SL89ug9xw8sMpf6nGMnyVnKI6Sp9iRrvhTE5NbF0CIeMBB3h1KtmLXUuep 2F1na92H4QvSDb5eku7TiHnTpHBks3TTWN9i73mNaxhMtCUEySw0qQSDRVI66YVlN1 M+UAwFehBVaDNOVRQouAWlh5OxQd9/LIKCYj52M9ocRucnmbbr+VhncC1iQ4DR3fG4 TuQy9XzrXZvE1IhXtPShMDlnrHXSE5VXaTq0hggdwOcQzfSPCE1NvcD1CNGyDzMhAX NNkAbiNg2sZ8w== Date: Mon, 10 Aug 2026 09:00:22 -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 v2 1/2] workqueue: Add missing EXPORT_SYMBOL_GPL for workqueue_set_min_active Message-ID: References: <20260810163433.3765919-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: <20260810163433.3765919-1-haakon.bugge@oracle.com> On Mon, Aug 10, 2026 at 06:34:30PM +0200, Håkon Bugge wrote: > Adding a missing EXPORT_SYMBOL_GPL() in workqueue.c, as the > workqueue_set_min_active() function is needed in the next commit. Can you just spell out who's gonna use it? I'm only cc'd on this one and patch descs should be self-contained - it can reference future changes but it should still be at least somewhat specific. Thanks. -- tejun