From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Weiser Subject: ixgbe: ierrors counter spuriously increasing in DPDK 2.1 Date: Wed, 21 Oct 2015 10:38:22 +0200 Message-ID: <56274EFE.5040706@allegro-packets.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable To: dev@dpdk.org Return-path: Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.35]) by dpdk.org (Postfix) with ESMTP id 9F13E926B for ; Wed, 21 Oct 2015 10:38:23 +0200 (CEST) Received: from [87.172.138.62] (helo=nb-martin.allegro) by smtprelay01.ispgateway.de with esmtpsa (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1Zooud-0000jc-8u for dev@dpdk.org; Wed, 21 Oct 2015 10:38:23 +0200 List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi, with DPDK 2.1 we are seeing the ierrors counter increasing for 82599ES ports without reason. Even directly after starting test-pmd the error counter immediately is 1 without even a single packet being sent to the device: =2E/testpmd -c 0xfe -n 4 -- --portmask 0x3 --interactive =2E.. testpmd> show port stats all ######################## NIC statistics for port 0 ###################= ##### RX-packets: 0 RX-missed: 0 RX-bytes: 0 RX-badcrc: 0 RX-badlen: 0 RX-errors: 1 RX-nombuf: 0 TX-packets: 0 TX-errors: 0 TX-bytes: 0 #######################################################################= ##### ######################## NIC statistics for port 1 ###################= ##### RX-packets: 0 RX-missed: 0 RX-bytes: 0 RX-badcrc: 0 RX-badlen: 0 RX-errors: 1 RX-nombuf: 0 TX-packets: 0 TX-errors: 0 TX-bytes: 0 #######################################################################= ##### When packet forwarding is started the ports perform normally and properly forward all packets but a huge number of ierrors is counted: testpmd> start =2E.. testpmd> show port stats all ######################## NIC statistics for port 0 ###################= ##### RX-packets: 9011857 RX-missed: 0 RX-bytes: 5020932992 RX-badcrc: 0 RX-badlen: 0 RX-errors: 9011753 RX-nombuf: 0 TX-packets: 9026250 TX-errors: 0 TX-bytes: 2922375542 #######################################################################= ##### ######################## NIC statistics for port 1 ###################= ##### RX-packets: 9026250 RX-missed: 0 RX-bytes: 2922375542 RX-badcrc: 0 RX-badlen: 0 RX-errors: 9026138 RX-nombuf: 0 TX-packets: 9011857 TX-errors: 0 TX-bytes: 5020932992 #######################################################################= ##### When running the exact same test with DPDK version 2.0 no ierrors are reported. Is anyone else seeing strange ierrors being reported for Intel Niantic cards with DPDK 2.1? Best regards, Martin