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 5BE0E3603C0 for ; Fri, 29 May 2026 18:07:26 +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=1780078047; cv=none; b=NPxMbzqabbLDeXOcF6ymF4NWIQqGpvnB3rFuRzgrdWkt0pbYEEYcHMX6R3L9QvCqoYjH4Xe8btUWc/O0gwliD6S7Lmz7OPruq57sEguWDfNExcDwzXZtw+NtZBmBTCxq/ZL/nFOK7kxbEHxflKbIrMdXgXc81VLpB5ycDNZndIw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780078047; c=relaxed/simple; bh=TkspPfodCxpB+u0dZPn5mUwsZhQvXmRPiF/elJBhdxQ=; h=Date:Message-ID:From:To:Cc:Subject:In-Reply-To:References; b=R2vnqRZo6gb0Cfi5W6Itjz/CloJWrMILZ309DFtFyxttFhNNHKHSqoynFTcFO6rohDnTYe+8zXOAhOjPJ2M1mxcZi52cRQJXkUhmS/IMnxnofRmhnkIZy9hU1lMfXE5E7GjUXS/4MyoLp3df+fsBeyebXUAPJpuB1Bg4E6vPSkE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LE9Byb5A; 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="LE9Byb5A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10CC21F00893; Fri, 29 May 2026 18:07:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780078046; bh=Bp0hbgcLtVEiYu1xXMz6H3VT0AleYevq7v6BnXyjPNg=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=LE9Byb5AKQCNK2nAR4ZM1IPh4tPuXLJgJpuMddKSJZ0nF2ixHkjOkjEewxZb8roq4 w+3RtPKa3t3Fu4Bl/smcBLQJwvoAHsBy0lV2CLVR0Rn7dqPgG4VDTBra0/NfeMtErS +qyTaRpgoHBO33nGslc2kUnBppSyyediFzWEKqI1B9hcQ+M2xmLZfoNyGIvtSmk69y xoe3K4LM4wSYmD0841EeequEZ8lNi9o8mF4vMXkTumDTtojSBJouissD/8f8ZTCH2u XoI2hW+sQse0UZy03ikA3Wgqaysqn6fhsRyHNtYCn24vM4u15m/ot/Qe7uRT9+GBnR eqRbiP0qUvxxQ== Date: Fri, 29 May 2026 08:07:25 -1000 Message-ID: From: Tejun Heo To: Marco Crivellari Cc: linux-kernel@vger.kernel.org, Lai Jiangshan , Frederic Weisbecker , Sebastian Andrzej Siewior , Michal Hocko , Breno Leitao Subject: Re: [PATCH v4 0/2] workqueue: Add warnings and check WQ flags usage In-Reply-To: <20260529130640.220328-1-marco.crivellari@suse.com> References: <20260529130640.220328-1-marco.crivellari@suse.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Hello, On Fri, May 29, 2026 at 03:06:38PM +0200, Marco Crivellari wrote: > Marco Crivellari (2): > workqueue: Add warnings and fallback if system_{unbound}_wq is used > workqueue: Add warnings and ensure one among WQ_PERCPU or WQ_UNBOUND > is present Applied 1-2 to wq/for-7.2. I fixed up minor whitespace on 2/2: added the missing space in "else if (" and dropped the redundant parentheses around ~WQ_PERCPU. Thanks. -- tejun