Applied 0014-Fix-NOHZ-local_softirq_pending-08-warning.patch

This commit is contained in:
Florian Pose 2022-06-23 10:59:45 +02:00
parent d09daadfbb
commit a3fa7cecaf
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ void ec_debug_send(
skb->dev = dbg->dev;
skb->protocol = eth_type_trans(skb, dbg->dev);
skb->ip_summed = CHECKSUM_UNNECESSARY;
netif_rx(skb);
netif_rx_ni(skb);
}
/******************************************************************************

View File

@ -688,7 +688,7 @@ void ec_eoe_state_rx_fetch(ec_eoe_t *eoe /**< EoE handler */)
eoe->rx_skb->dev = eoe->dev;
eoe->rx_skb->protocol = eth_type_trans(eoe->rx_skb, eoe->dev);
eoe->rx_skb->ip_summed = CHECKSUM_UNNECESSARY;
if (netif_rx(eoe->rx_skb)) {
if (netif_rx_ni(eoe->rx_skb)) {
EC_SLAVE_WARN(eoe->slave, "EoE RX netif_rx failed.\n");
}
eoe->rx_skb = NULL;