From patchwork Sun Mar 6 21:57:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Andrzej Siewior X-Patchwork-Id: 548750 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 81E33C4332F for ; Sun, 6 Mar 2022 21:58:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234309AbiCFV66 (ORCPT ); Sun, 6 Mar 2022 16:58:58 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50450 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234302AbiCFV65 (ORCPT ); Sun, 6 Mar 2022 16:58:57 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1A6BC1C11B; Sun, 6 Mar 2022 13:58:03 -0800 (PST) From: Sebastian Andrzej Siewior DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1646603881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=OLij3hLq/ByEiIvsKO2mUqNMbWd2cFRiFv/iL/CpBCk=; b=tUne71KCZTwV5KHN/PA2BeuDU0Ui2RmzmR06wo5VCgSnXvcNJ6gUdlowRejfyJNqosczI0 XyIRewLv9JIHiQHH8tPt2M+F4beDGD/0Yt9G+nD/DvgMbBI64JFULurNIZzsA0PINVVvbJ 1QmKMsvsr8OT4Dt1Kql7HOdKoTP+eJN1PnsOPhvPeyuU0o0fqW5DVr/vBOLYy2td0FE4iD mI6Bh7LRqEVP0JG44lJL9GazmWDjSATwFYGnODpUEoEwH3i8Qxyw9zG+Pj3ogW8w9lOUAq htbT4393p5kH+q1pUt6hS94uyx81KNWM5UWwCA2zec7l3KTSzI3/u1bWwA9cSw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1646603881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=OLij3hLq/ByEiIvsKO2mUqNMbWd2cFRiFv/iL/CpBCk=; b=rkxcvxvK79CfwpOoWAKzxP921+aI4UP2669w0fns34DkINPs693vfhMMINY9U6iEsbZWfw PeHf6FpY2DQ8tJBQ== To: netdev@vger.kernel.org Cc: "David S. Miller" , Jakub Kicinski , Thomas Gleixner , Alexander Gordeev , Alexandra Winter , Andrew Lunn , Antonio Quartulli , b.a.t.m.a.n@lists.open-mesh.org, Christian Borntraeger , Divya Koppera , Greg Kroah-Hartman , Heiko Carstens , Heiner Kallweit , Johan Hedberg , Jon Maloy , linux-bluetooth@vger.kernel.org, linux-s390@vger.kernel.org, linux-staging@lists.linux.dev, Luiz Augusto von Dentz , Marcel Holtmann , Marek Lindner , Remi Denis-Courmont , Russell King , Simon Wunderlich , Sven Eckelmann , Sven Schnelle , tipc-discussion@lists.sourceforge.net, Vasily Gorbik , Wenjia Zhang , Ying Xue Subject: [PATCH net-next 00/10] net: Convert user to netif_rx(), part 3. Date: Sun, 6 Mar 2022 22:57:43 +0100 Message-Id: <20220306215753.3156276-1-bigeasy@linutronix.de> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org This is the third and last 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(). The micrel phy driver is patched twice within this series: the first is is to replace netif_rx_ni() and second to move netif_rx() outside of the IRQ-off section. It is probably simpler to keep it within this series. Cc: Alexander Gordeev Cc: Alexandra Winter Cc: Andrew Lunn Cc: Antonio Quartulli Cc: b.a.t.m.a.n@lists.open-mesh.org Cc: Christian Borntraeger Cc: Divya Koppera Cc: Greg Kroah-Hartman Cc: Heiko Carstens Cc: Heiner Kallweit Cc: Johan Hedberg Cc: Jon Maloy Cc: linux-bluetooth@vger.kernel.org Cc: linux-s390@vger.kernel.org Cc: linux-staging@lists.linux.dev Cc: Luiz Augusto von Dentz Cc: Marcel Holtmann Cc: Marek Lindner Cc: Remi Denis-Courmont Cc: Russell King Cc: Simon Wunderlich Cc: Sven Eckelmann Cc: Sven Schnelle Cc: tipc-discussion@lists.sourceforge.net Cc: Vasily Gorbik Cc: Wenjia Zhang Cc: Ying Xue Sebastian