From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C4A62C04FDF for ; Mon, 14 Aug 2023 18:24:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231336AbjHNSYb (ORCPT ); Mon, 14 Aug 2023 14:24:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43644 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231675AbjHNSYY (ORCPT ); Mon, 14 Aug 2023 14:24:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A7AAEB0 for ; Mon, 14 Aug 2023 11:24:23 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 463786436B for ; Mon, 14 Aug 2023 18:24:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4621FC433C8; Mon, 14 Aug 2023 18:24:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692037462; bh=mTsh7sEfcY4Xi6rqdzYQ2cR/F9LjcZ/p4SiMZsPCS6k=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=gLK/rc3Url0zWUdgLDCCDxZ4ECT2Q1IbZ2RAqHOxGpPW8T2x6d8t9s0JwyHngNoem 7UOdSNe5W6eCl2iloAwQgxIS3i5/LSjEuAjVzwvxuFSzXlpZW2eCYrp/RA5N0WZ5Df uOPMnGPWWEodskE/GQCKoXPwcPJA8jlIixWWG409LfX5IJPIGNEnpNtXCtsiVDDCjY Xv4VrJ5qt+fAAns6JDscC/GidtXYH2kXPXQMI2T8TuYKXLx8694FhZylhhtr4bH2Fy iokx4Y3ctDfBmVee65Bhdud84ikHNGNmxjgBcdvnXeB17WJv6UBZcJHjGn+OcGQEVf CMBXgSOJu9WcQ== Date: Mon, 14 Aug 2023 11:24:21 -0700 From: Jakub Kicinski To: Sebastian Andrzej Siewior Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org, "David S. Miller" , Eric Dumazet , Paolo Abeni , Peter Zijlstra , Thomas Gleixner , Wander Lairson Costa Subject: Re: [RFC PATCH net-next 0/2] net: Use SMP threads for backlog NAPI. Message-ID: <20230814112421.5a2fa4f6@kernel.org> In-Reply-To: <20230814093528.117342-1-bigeasy@linutronix.de> References: <20230814093528.117342-1-bigeasy@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 14 Aug 2023 11:35:26 +0200 Sebastian Andrzej Siewior wrote: > The RPS code and "deferred skb free" both send IPI/ function call > to a remote CPU in which a softirq is raised. This leads to a warning on > PREEMPT_RT because raising softiqrs from function call led to undesired > behaviour in the past. I had duct tape in RT for the "deferred skb free" > and Wander Lairson Costa reported the RPS case. Could you find a less invasive solution? backlog is used by veth == most containerized environments. This change has a very high risk of regression for a lot of people.