Commit ca05e316 authored by Nathan Fontenot's avatar Nathan Fontenot Committed by David S. Miller

ibmvnic: Continue skb processing after skb completion error

There is not a need to stop processing skbs if we encounter a
skb that has a receive completion error.
Signed-off-by: default avatarNathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 161b8a81
...@@ -1404,7 +1404,7 @@ static int ibmvnic_poll(struct napi_struct *napi, int budget) ...@@ -1404,7 +1404,7 @@ static int ibmvnic_poll(struct napi_struct *napi, int budget)
/* free the entry */ /* free the entry */
next->rx_comp.first = 0; next->rx_comp.first = 0;
remove_buff_from_pool(adapter, rx_buff); remove_buff_from_pool(adapter, rx_buff);
break; continue;
} }
length = be32_to_cpu(next->rx_comp.len); length = be32_to_cpu(next->rx_comp.len);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment