net: ethernet: Use netif_rx().
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Thu, 3 Mar 2022 17:15:02 +0000 (18:15 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Mar 2022 12:02:19 +0000 (12:02 +0000)
Since commit
   baebdf48c3600 ("net: dev: Makes sure netif_rx() can be invoked in any context.")

the function netif_rx() can be used in preemptible/thread context as
well as in interrupt context.

Use netif_rx().

Cc: Ɓukasz Stelmach <l.stelmach@samsung.com>
Cc: Horatiu Vultur <horatiu.vultur@microchip.com>
Cc: UNGLinuxDriver@microchip.com
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/asix/ax88796c_main.c
drivers/net/ethernet/davicom/dm9051.c
drivers/net/ethernet/micrel/ks8851_spi.c
drivers/net/ethernet/microchip/enc28j60.c
drivers/net/ethernet/microchip/lan966x/lan966x_main.c
drivers/net/ethernet/qualcomm/qca_spi.c
drivers/net/ethernet/qualcomm/qca_uart.c
drivers/net/ethernet/vertexcom/mse102x.c
drivers/net/ethernet/wiznet/w5100.c

index bf70481..6ba5b02 100644 (file)
@@ -433,7 +433,7 @@ ax88796c_skb_return(struct ax88796c_device *ax_local,
        netif_info(ax_local, rx_status, ndev, "< rx, len %zu, type 0x%x\n",
                   skb->len + sizeof(struct ethhdr), skb->protocol);
 
-       status = netif_rx_ni(skb);
+       status = netif_rx(skb);
        if (status != NET_RX_SUCCESS && net_ratelimit())
                netif_info(ax_local, rx_err, ndev,
                           "netif_rx status %d\n", status);
index 8ebcb35..a523ddd 100644 (file)
@@ -804,7 +804,7 @@ static int dm9051_loop_rx(struct board_info *db)
                skb->protocol = eth_type_trans(skb, db->ndev);
                if (db->ndev->features & NETIF_F_RXCSUM)
                        skb_checksum_none_assert(skb);
-               netif_rx_ni(skb);
+               netif_rx(skb);
                db->ndev->stats.rx_bytes += rxlen;
                db->ndev->stats.rx_packets++;
                scanrr++;
index d167d93..82d55fc 100644 (file)
@@ -293,7 +293,7 @@ static void ks8851_wrfifo_spi(struct ks8851_net *ks, struct sk_buff *txp,
  */
 static void ks8851_rx_skb_spi(struct ks8851_net *ks, struct sk_buff *skb)
 {
-       netif_rx_ni(skb);
+       netif_rx(skb);
 }
 
 /**
index db5a3ed..559ad94 100644 (file)
@@ -975,7 +975,7 @@ static void enc28j60_hw_rx(struct net_device *ndev)
                        /* update statistics */
                        ndev->stats.rx_packets++;
                        ndev->stats.rx_bytes += len;
-                       netif_rx_ni(skb);
+                       netif_rx(skb);
                }
        }
        /*
index 4e877d9..ad310c9 100644 (file)
@@ -600,7 +600,7 @@ static irqreturn_t lan966x_xtr_irq_handler(int irq, void *args)
                                skb->offload_fwd_mark = 0;
                }
 
-               netif_rx_ni(skb);
+               netif_rx(skb);
                dev->stats.rx_bytes += len;
                dev->stats.rx_packets++;
 
index 3c5494a..c865a4b 100644 (file)
@@ -435,7 +435,7 @@ qcaspi_receive(struct qcaspi *qca)
                                qca->rx_skb->protocol = eth_type_trans(
                                        qca->rx_skb, qca->rx_skb->dev);
                                skb_checksum_none_assert(qca->rx_skb);
-                               netif_rx_ni(qca->rx_skb);
+                               netif_rx(qca->rx_skb);
                                qca->rx_skb = netdev_alloc_skb_ip_align(net_dev,
                                        net_dev->mtu + VLAN_ETH_HLEN);
                                if (!qca->rx_skb) {
index 27c4f43..26646cb 100644 (file)
@@ -108,7 +108,7 @@ qca_tty_receive(struct serdev_device *serdev, const unsigned char *data,
                        qca->rx_skb->protocol = eth_type_trans(
                                                qca->rx_skb, qca->rx_skb->dev);
                        skb_checksum_none_assert(qca->rx_skb);
-                       netif_rx_ni(qca->rx_skb);
+                       netif_rx(qca->rx_skb);
                        qca->rx_skb = netdev_alloc_skb_ip_align(netdev,
                                                                netdev->mtu +
                                                                VLAN_ETH_HLEN);
index 25739b1..eb39a45 100644 (file)
@@ -362,7 +362,7 @@ static void mse102x_rx_pkt_spi(struct mse102x_net *mse)
                mse102x_dump_packet(__func__, skb->len, skb->data);
 
        skb->protocol = eth_type_trans(skb, mse->ndev);
-       netif_rx_ni(skb);
+       netif_rx(skb);
 
        mse->ndev->stats.rx_packets++;
        mse->ndev->stats.rx_bytes += rxlen;
index ae24d6b..4fd7c39 100644 (file)
@@ -883,7 +883,7 @@ static void w5100_rx_work(struct work_struct *work)
        struct sk_buff *skb;
 
        while ((skb = w5100_rx_skb(priv->ndev)))
-               netif_rx_ni(skb);
+               netif_rx(skb);
 
        w5100_enable_intr(priv);
 }