be2net: Fix rx stats updation in non-lro path

rx stats are not getting updated when an rx_compl with only one frag is rcvd in non-lro path.

Signed-off-by: Sathya Perla <sathyap@serverengines.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Sathya Perla 2009-06-10 02:21:56 +00:00 committed by David S. Miller
parent 6811086899
commit 76fbb42919
1 changed files with 2 additions and 1 deletions

View File

@ -743,7 +743,7 @@ static void skb_fill_rx_data(struct be_adapter *adapter,
if (pktsize <= rx_frag_size) { if (pktsize <= rx_frag_size) {
BUG_ON(num_rcvd != 1); BUG_ON(num_rcvd != 1);
return; goto done;
} }
/* More frags present for this completion */ /* More frags present for this completion */
@ -765,6 +765,7 @@ static void skb_fill_rx_data(struct be_adapter *adapter,
memset(page_info, 0, sizeof(*page_info)); memset(page_info, 0, sizeof(*page_info));
} }
done:
be_rx_stats_update(adapter, pktsize, num_rcvd); be_rx_stats_update(adapter, pktsize, num_rcvd);
return; return;
} }