From patchwork Thu Mar 3 17:14:56 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sebastian Andrzej Siewior X-Patchwork-Id: 12767787 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 69639C433FE for ; Thu, 3 Mar 2022 17:15:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233553AbiCCRQC (ORCPT ); Thu, 3 Mar 2022 12:16:02 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44898 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230229AbiCCRQB (ORCPT ); Thu, 3 Mar 2022 12:16:01 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 04A145B3DE; Thu, 3 Mar 2022 09:15:15 -0800 (PST) From: Sebastian Andrzej Siewior DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1646327712; 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=QA9292ErVJBK3Dbl+AyvCtdfJtIr/aoQIN3k0viXtpQ=; b=v18fWMhrIMzCeoFgxsf70BbWn4cVKFGWxNEbyBR3CiiwMhqX6GIlHqTifHamPdb+cxOhOi JvBHjeRxT2vKKPdAnbVHCMOoqyx9WDCSRV5ycxYXXUi+Ghm8lqkU52ZUhN5hNsfDPlrWE9 2PGGqXg4HQDsUmQw3hVsTRJA0Ur4QEdVcwwVismFCt9IyVqDLdJg2v5i04zR3KZfwycHbx zk7crLioyZ3Zlsx47Ua2FaKQ0fx8Ws4g51iwG49Zvb0W3mz4NbKGhbZmUZT2vQwrKChi09 JWWSmq9a74oUhi1VAsndcMHSv3MLAs8SNtlfg3xLqVCrA6lNydt9ck0oERAQoA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1646327712; 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=QA9292ErVJBK3Dbl+AyvCtdfJtIr/aoQIN3k0viXtpQ=; b=w/urUxUmHyvO2vZ0BDlhWhqntVfH+hl4j06fJsdYIzfNwdzkUVT+dDpfKb/fM0FjxGEqTi fs7bEubj+R6bWUCg== To: netdev@vger.kernel.org Cc: "David S. Miller" , Jakub Kicinski , Thomas Gleixner , Andrew Lunn , bridge@lists.linux-foundation.org, Chris Zankel , Florian Fainelli , Horatiu Vultur , Jonathan Corbet , Kurt Kanzenbach , linux-doc@vger.kernel.org, linux-xtensa@linux-xtensa.org, =?utf-8?q?=C5=81u?= =?utf-8?q?kasz_Stelmach?= , Max Filippov , Mike Travis , Nikolay Aleksandrov , Robin Holt , Roopa Prabhu , Steve Wahl , UNGLinuxDriver@microchip.com, Vivien Didelot , Vladimir Oltean Subject: [PATCH net-next 0/9] net: Convert user to netif_rx(). Date: Thu, 3 Mar 2022 18:14:56 +0100 Message-Id: <20220303171505.1604775-1-bigeasy@linutronix.de> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org This is the first batch of converting netif_rx_ni() caller to netif_rx(). The change making this possible is net-next and netif_rx_ni() is a wrapper around netif_rx(). This is a clean up in order to remove netif_rx_ni(). Cc: Andrew Lunn Cc: bridge@lists.linux-foundation.org Cc: Chris Zankel Cc: Florian Fainelli Cc: Horatiu Vultur Cc: Jonathan Corbet Cc: Kurt Kanzenbach Cc: linux-doc@vger.kernel.org Cc: linux-xtensa@linux-xtensa.org Cc: Ɓukasz Stelmach Cc: Max Filippov Cc: Mike Travis Cc: Nikolay Aleksandrov Cc: Robin Holt Cc: Roopa Prabhu Cc: Steve Wahl Cc: UNGLinuxDriver@microchip.com Cc: Vivien Didelot Cc: Vladimir Oltean Sebastian