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 EF3E5229B12 for ; Thu, 28 Aug 2025 15:25:29 +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=1756394730; cv=none; b=rk/zDHbh/Gvg9iquc0rodP/t8TD+8lmyD8x2C9j7+0JE32tukcaDKgX68bXhFHJrKDcxGGnN2n1ECjYpCG/baUZV1ZPw47lFyoAARxWXmwErUd6UbBSlGtvPAoPMFEmY2I0ys4p+TZYBch9KdMmw98oTYSkV+vj/HIv4lNLmfeA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756394730; c=relaxed/simple; bh=4E2v68CZChf9VPJClZt0WOh0kQnGGrZKOFCrNY5KVmk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=d3oO86Fgu6ZqtLsdbIBMbIa/RGGmgInEuGikxpwc3aAFA6z+Y64vA5b19kp272/Ko3yCvT23Qj2tCGSR1K4PDyDcSx7oHsp9VY00yWeYR9qHyWrfKcRVA2GDhqs7FMb7XhjS8mOjKMdXkUauB0zZkXG4FMO7uhKYeQ+R2Z26TPU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YQwVGotn; 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="YQwVGotn" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BB715C4CEEB; Thu, 28 Aug 2025 15:25:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756394729; bh=4E2v68CZChf9VPJClZt0WOh0kQnGGrZKOFCrNY5KVmk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YQwVGotna1OH+9DqitxJXxdyeE4Vp+mttzlqpXkAP15zbQeuUHaNU2xmnAJ3hOTSI M6PzHFB1yuiYpbn/YnsJbA8sPvJBh1I+WkFQ+zNi9vIoQhG9StlzW/uxVUjwFDXjPT AvnahMlGxlpXFzjr/mxJRPB1ByEjxwkVS0S7wLcuG/eee/3Lp0e4Rt23A6gHEJQJZ4 XTP5OL/R06l6t95xF6zPEAaSn3j8U9yQeJpKHoIbOaUH4ENjVjkIqoBDD6Bl2G+TkE hlZZQwsOJFXRE+ieelxqeSV1K7RPeZM/8LF1e3kMmXOb1PqT1sZoNYZ7q5RmNtHCfT P1oVa2D/rpOIQ== Date: Thu, 28 Aug 2025 16:25:25 +0100 From: Simon Horman To: Eric Dumazet Cc: "David S . Miller" , Jakub Kicinski , Paolo Abeni , Jamal Hadi Salim , Cong Wang , Jiri Pirko , netdev@vger.kernel.org, eric.dumazet@gmail.com Subject: Re: [PATCH net-next 1/4] net_sched: remove BH blocking in eight actions Message-ID: <20250828152525.GQ10519@horms.kernel.org> References: <20250827125349.3505302-1-edumazet@google.com> <20250827125349.3505302-2-edumazet@google.com> Precedence: bulk X-Mailing-List: netdev@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: <20250827125349.3505302-2-edumazet@google.com> On Wed, Aug 27, 2025 at 12:53:46PM +0000, Eric Dumazet wrote: > Followup of f45b45cbfae3 ("Merge branch > 'net_sched-act-extend-rcu-use-in-dump-methods'") > > We never grab tcf_lock from BH context in these modules: > > act_connmark > act_csum > act_ct > act_ctinfo > act_mpls > act_nat > act_pedit > act_skbedit > > No longer block BH when acquiring tcf_lock from init functions. > > Signed-off-by: Eric Dumazet Reviewed-by: Simon Horman