From patchwork Tue Mar 5 11:53:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sebastian Andrzej Siewior X-Patchwork-Id: 13582266 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) (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 0B68D58AC3 for ; Tue, 5 Mar 2024 12:00:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.142.43.55 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709640022; cv=none; b=ny0Tjel7Bsh6zXfpVXW4/seWQkUiidOsAliVQS0XzFbvvMh0tiPMwYhfobmGlGJOvkEFsd/cMVvyQu99cPslOyrrOb5X07oUi/v6FIClElihS8N15MnhvRT9DsW078UbFVE/CvNVeCAqTIZvfeN0dC6HIY0ISTAwHy+gSpXtkjI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709640022; c=relaxed/simple; bh=ExntCDQPnT51XBx+AeXQ3AIMoFNeciv/VVivwFjLYzQ=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=X9J0XRrcXkKBqP5HjFwM3sTMP7TXzQpJ0w38NWflFKjN9JVfLpLGyaA2TX6p085vj/YZChyof1UgmP4/KJvLTP2Cqa8KlO83udFu86CR82lp2I35heUMOCzBHZPA6VDx6RpeTxVGBEnqu7nDAi3IB0/rT/83cVz8vDcdFSEBjss= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de; spf=pass smtp.mailfrom=linutronix.de; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=kgar/Rsd; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b=+Rmp08Vd; arc=none smtp.client-ip=193.142.43.55 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linutronix.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="kgar/Rsd"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="+Rmp08Vd" From: Sebastian Andrzej Siewior DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1709640019; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=7yj+ZrcoGwcdjYtfXUPoqdA/xu+MktwOGDIzZRCwVa4=; b=kgar/RsdngfOfD3k2vwQebXzzMqG0TyjRbEvSzEifukE6nKKUIuQB00zTE3cW7cDfyMhuQ 9tybbp14g44oaD+3fhIxDx2kNHwcbcqe3ZaX2b/qpEHWFRKLz2wgFDtNiDSy9kMI+F0aPZ e+6qa2+VrulWb2wD75lbRs1yzcB0cgg3UYwtUA8i7a32v57DqgQYxpUXxr6VX5Zktkw5HT MWxCh6WXNld8OXw3v7f1LeNWZuxzOg01HvdFWGdqHhPKCyc6u46eNZXtUfQtqsaTdOepnl hKb2kKVIC10W2ywf/Otrxe2v4pvcGqqHY2I0lMvlldScHDP5AtghCUSWuH7yrw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1709640019; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=7yj+ZrcoGwcdjYtfXUPoqdA/xu+MktwOGDIzZRCwVa4=; b=+Rmp08Vd2FhixCPy6TgTW9oeC0FsBTCbZ/jUQ+iMWqHxQkm2JJE5RwjorD9Ywk6J++1E0c HS7Heu5aLllhVlCw== To: netdev@vger.kernel.org Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Jesper Dangaard Brouer , Paolo Abeni , Thomas Gleixner , Wander Lairson Costa , Yan Zhai Subject: [PATCH v4 net-next 0/4] net: Provide SMP threads for backlog NAPI Date: Tue, 5 Mar 2024 12:53:18 +0100 Message-ID: <20240305120002.1499223-1-bigeasy@linutronix.de> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org 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. This series only provides support for SMP threads for backlog NAPI, I did not attach a patch to make it default and remove the IPI related code to avoid confusion. I can post it for reference it asked. The RedHat performance team was so kind to provide some testing here. The series (with the IPI code removed) has been tested and no regression vs without the series has been found. For testing iperf3 was used on 25G interface, provided by mlx5, ix40e or ice driver and RPS was enabled. I can provide the individual test results if needed. Changes: - v3…v4 https://lore.kernel.org/all/20240228121000.526645-1-bigeasy@linutronix.de/ - Rebase on top of current net-next, collect Acks. - Add struct softnet_data as an argument to kick_defer_list_purge(). - Add sd_has_rps_ipi_waiting() check to napi_threaded_poll_loop() which was accidentally removed. - v2…v3 https://lore.kernel.org/all/20240221172032.78737-1-bigeasy@linutronix.de/ - Move the "if use_backlog_threads()" case into the CONFIG_RPS block within napi_schedule_rps(). - Use __napi_schedule_irqoff() instead of napi_schedule_rps() in kick_defer_list_purge(). - v1…v2 https://lore.kernel.org/all/20230929162121.1822900-1-bigeasy@linutronix.de/ - Patch #1 is new. It ensures that NAPI_STATE_SCHED_THREADED is always set (instead conditional based on task state) and the smboot thread logic relies on this bit now. In v1 NAPI_STATE_SCHED was used but is racy. - The defer list clean up is split out and also relies on NAPI_STATE_SCHED_THREADED. This fixes a different race. - RFC…v1 https://lore.kernel.org/all/20230814093528.117342-1-bigeasy@linutronix.de/ - Patch #2 has been removed. Removing the warning is still an option. - There are two patches in the series: - Patch #1 always creates backlog threads - Patch #2 creates the backlog threads if requested at boot time, mandatory on PREEMPT_RT. So it is either or and I wanted to show how both look like. - The kernel test robot reported a performance regression with loopback (stress-ng --udp X --udp-ops Y) against the RFC version. The regression is now avoided by using local-NAPI if backlog processing is requested on the local CPU. Sebastian