From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vb0-x232.google.com (mail-vb0-x232.google.com [IPv6:2607:f8b0:400c:c02::232]) by dpdk.org (Postfix) with ESMTP id 30676591A for ; Thu, 14 Nov 2013 06:32:50 +0100 (CET) Received: by mail-vb0-f50.google.com with SMTP id x11so1238057vbb.9 for ; Wed, 13 Nov 2013 21:33:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=A/QiJT/767xrR6p3T1MnurKyYmwiryM0cxMZTHE7G3U=; b=MTDuDOzdOi5IEiU69n89pJHf52Mh1MS8VJLgECT9twbld0PwQetvdFiCGleoUsZHCy uLkrmoPWfP8gVHY+xhKSt8M5w/sOmvivXDITbcf+a0MtzE9fvqHGlRk6bWTGDJqSQDx6 Qn7vrZlJ7fr9vhIs5YCU+LbRHxpy6XCuBqa4Ao27bw0g4a4mFfzPR5/cHug7v85wC/xz klVCSH/Izx1TV2feyZ4RxSoBkPyDH/43pNZG1r97m1Htx4KQTwzkU8n3ycieQu59KlD0 vo23Lx7j292rucfWYBXzvrkHGkiE2bGoM2u2RLNNekF4YUSmkT4EFdxBUKyTGB6LJBHn d+mQ== MIME-Version: 1.0 X-Received: by 10.52.233.197 with SMTP id ty5mr861603vdc.48.1384407225895; Wed, 13 Nov 2013 21:33:45 -0800 (PST) Received: by 10.52.230.66 with HTTP; Wed, 13 Nov 2013 21:33:45 -0800 (PST) Date: Thu, 14 Nov 2013 11:03:45 +0530 Message-ID: From: ankit kumar To: dev@dpdk.org Content-Type: text/plain; charset=ISO-8859-1 Subject: [dpdk-dev] could nvm_checksum_validate Error may cause non-functioning of DPDK. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Nov 2013 05:32:50 -0000 Hi, I am trying to work on DPDK-1.5.0r0 with intel i350 dual port NIC with intel i3 processor on Fedora 18 (kernel-3.11.4). But after building dpdk when i try to run testpmd application its not working with some error as... "EAL: Ask a virtual area of 0x2097152 bytes EAL: Virtual area found at 0x7faddaa00000 (size = 0x200000) EAL: Requesting 128 pages of size 2MB from socket 0 EAL: TSC frequency is ~3300000 KHz EAL: Master core 0 is ready (tid=ec6e3880) EAL: Core 1 is ready (tid=da1fe700) EAL: PCI device 0000:01:00.0 on NUMA socket -1 EAL: probe driver: 8086:1521 rte_igb_pmd EAL: PCI memory mapped at 0x7fadec07e000 EAL: PCI memory mapped at 0x7fadec6f1000 EAL: PCI device 0000:01:00.1 on NUMA socket -1 EAL: probe driver: 8086:1521 rte_igb_pmd EAL: PCI memory mapped at 0x7fadeb900000 EAL: PCI memory mapped at 0x7fadec6ed000 EAL: Error - exiting with code: 1 Cause: No probed ethernet devices - check that CONFIG_RTE_LIBRTE_IGB_PMD=y and that CONFIG_RTE_LIBRTE_EM_PMD=y and that CONFIG_RTE_LIBRTE_IXGBE_PMD=y in your configuration file " When i searched for kernel logs, it shows me as NVM_CHECKSUM_INVALID for this NIC. As per my knowledge its a EEPROM error in NIC card. So to work around it i changed the driver code given in dpdk-1.5.0r0 in dpdk-1.5.0r1/lib/librte_eal/linuxapp/kni/ethtool/igb/e1000_nvm.c to just return the success messages whenever anyone ask for nvm_checksum_validate. But still its not working & showing the above logs. Please help. Thanx.