Applied 0014-Fix-NOHZ-local_softirq_pending-08-warning.patch
This commit is contained in:
parent
d09daadfbb
commit
a3fa7cecaf
|
|
@ -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);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue