be2net: Handle error completion in Lancer
In Lancer if a frame is DMAed partially due to lack of RX buffers, an error completion is sent with packet size as zero and num_recvd indicating number of used buffers. These buffers need to be freed and packet dropped. Signed-off-by: Padmanabh Ratnakar <padmanabh.ratnakar@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
3c709f8fb4
commit
009dd872d7
@@ -1757,12 +1757,15 @@ static int be_poll_rx(struct napi_struct *napi, int budget)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
/* Ignore flush completions */
|
/* Ignore flush completions */
|
||||||
if (rxcp->num_rcvd) {
|
if (rxcp->num_rcvd && rxcp->pkt_size) {
|
||||||
if (do_gro(rxcp))
|
if (do_gro(rxcp))
|
||||||
be_rx_compl_process_gro(adapter, rxo, rxcp);
|
be_rx_compl_process_gro(adapter, rxo, rxcp);
|
||||||
else
|
else
|
||||||
be_rx_compl_process(adapter, rxo, rxcp);
|
be_rx_compl_process(adapter, rxo, rxcp);
|
||||||
|
} else if (rxcp->pkt_size == 0) {
|
||||||
|
be_rx_compl_discard(adapter, rxo, rxcp);
|
||||||
}
|
}
|
||||||
|
|
||||||
be_rx_stats_update(rxo, rxcp);
|
be_rx_stats_update(rxo, rxcp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user