From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lb0-f174.google.com (mail-lb0-f174.google.com [209.85.217.174]) by dpdk.org (Postfix) with ESMTP id 2BA08156 for ; Thu, 14 Nov 2013 11:03:46 +0100 (CET) Received: by mail-lb0-f174.google.com with SMTP id y6so1347231lbh.33 for ; Thu, 14 Nov 2013 02:04:41 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:organization:to:subject:date:user-agent:cc :references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=LuYMkQpmEOH0DAazdVbgdE395oB2n/hcGkogTX4YJD8=; b=E6DO8op0od2neuKY4kMKriEwLB1xydkGt6YcORgXwxoFTux7U3uv9KBNFBN/RYvGFo 2DDiFEo/AeTYmE5DbMrImWOzyQi9Ojsf7QN+p93xbB7PlAXTQIsdDEbFN8jFImBwx3MI ud/nokkrg3l8RbXfRjtrbVfLFoVsvKf2rrFlSXuwG0ItKZ31k5e1x6nVXofR2Ot0Ykl0 VtowDAvdzOd2h/FXR92AJxKEUTZ9+rX80VDLqarzZQ8fiQ6uYpDzrLop/kU57QW1N3o4 QEC4hKdNp8msieEsGQ7d7C6US3dvwLdJLIdRx3AZIprhyOfkftWn72PIBLloXnraNpgU 695A== X-Gm-Message-State: ALoCoQm0xU3WZStXTKDvyqYlvxVZwgkF4e577j1fOo0pr64GsUiS0W6OqP5K+04q0k23ggh6kWIR X-Received: by 10.152.36.225 with SMTP id t1mr315456laj.5.1384423481595; Thu, 14 Nov 2013 02:04:41 -0800 (PST) Received: from angus.localnet (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id go4sm5248235lbc.3.2013.11.14.02.04.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 14 Nov 2013 02:04:40 -0800 (PST) From: Thomas Monjalon Organization: 6WIND To: ankit kumar Date: Thu, 14 Nov 2013 11:04:37 +0100 User-Agent: KMail/1.13.7 (Linux/3.2.0-4-amd64; KDE/4.8.4; x86_64; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201311141104.37863.thomas.monjalon@6wind.com> Cc: dev@dpdk.org Subject: Re: [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 10:03:46 -0000 14/11/2013 06:33, ankit kumar : > I am trying to work on DPDK-1.5.0r0 with intel i350 dual port NIC [...] > 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 The drivers in KNI are only used for ethtool operations with kernel. The PMD file you are looking for is lib/librte_pmd_e1000/e1000/e1000_nvm.c -- Thomas