diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-12-13 00:42:42 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-13 00:57:56 -0500 |
commit | 5005087728e37db133fee05bb0923c50e673ae99 (patch) | |
tree | 0327285778a90003736d4d9f896944460d31e547 /drivers/net/sfc/falcon.c | |
parent | 740ced9927cabe0f776265ea24fc399a71bcdef5 (diff) |
sfc: Don't count RX checksum errors during loopback self-test
The loopback self-test checks that IP packets with incorrect checksums
are not altered when sent on a queue with checksum generation off.
These should not contribute to RX error statistics.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r-- | drivers/net/sfc/falcon.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index e32be4c83d90..97cc037a10c5 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -784,15 +784,18 @@ static void falcon_handle_rx_not_ok(struct efx_rx_queue *rx_queue, | |||
784 | rx_ev_buf_owner_id_err | rx_ev_eth_crc_err | | 784 | rx_ev_buf_owner_id_err | rx_ev_eth_crc_err | |
785 | rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err); | 785 | rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err); |
786 | 786 | ||
787 | /* Count errors that are not in MAC stats. */ | 787 | /* Count errors that are not in MAC stats. Ignore expected |
788 | * checksum errors during self-test. */ | ||
788 | if (rx_ev_frm_trunc) | 789 | if (rx_ev_frm_trunc) |
789 | ++rx_queue->channel->n_rx_frm_trunc; | 790 | ++rx_queue->channel->n_rx_frm_trunc; |
790 | else if (rx_ev_tobe_disc) | 791 | else if (rx_ev_tobe_disc) |
791 | ++rx_queue->channel->n_rx_tobe_disc; | 792 | ++rx_queue->channel->n_rx_tobe_disc; |
792 | else if (rx_ev_ip_hdr_chksum_err) | 793 | else if (!efx->loopback_selftest) { |
793 | ++rx_queue->channel->n_rx_ip_hdr_chksum_err; | 794 | if (rx_ev_ip_hdr_chksum_err) |
794 | else if (rx_ev_tcp_udp_chksum_err) | 795 | ++rx_queue->channel->n_rx_ip_hdr_chksum_err; |
795 | ++rx_queue->channel->n_rx_tcp_udp_chksum_err; | 796 | else if (rx_ev_tcp_udp_chksum_err) |
797 | ++rx_queue->channel->n_rx_tcp_udp_chksum_err; | ||
798 | } | ||
796 | if (rx_ev_ip_frag_err) | 799 | if (rx_ev_ip_frag_err) |
797 | ++rx_queue->channel->n_rx_ip_frag_err; | 800 | ++rx_queue->channel->n_rx_ip_frag_err; |
798 | 801 | ||