From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id EBE232A7 for ; Fri, 28 Jun 2013 10:27:50 +0200 (CEST) Received: by mail-wg0-f53.google.com with SMTP id y10so1330459wgg.32 for ; Fri, 28 Jun 2013 01:28:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:organization:to:subject:date:user-agent:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id :x-gm-message-state; bh=XuilzrJ4EB25ovKYkz4SwJoBbuxuZemDnPmVQFU6pDY=; b=LiqZX99Lj0QcNPVZ4QVKtwuVzhEB85Yf6g1algyDTQo7iwmJXNoBGv7Z071Nq36JbE qho5Y9xA5pz3BlKR871GMxIfQOpKR+PSG+2GjZsYG61IZb7WLolApr7bdE4ALP6NXRSa Oc5w8pPc7ty49nww0OTGrlwGTpd15or83ECD1QpE6biL3W5BgQZ+BMuCULUFOBkttuuG +TCOXlusZrg4I6YUbOd31ws9IFspNAEP/Qh3JpQ5k1PSJ99BX2GJSS5kKsppxNP3aEYg 3TWrqspapNrFfoTdlrUTVfpAUICy7HlD0FNomduItH3otV6flCPuE4Q+VG+Cc12maDqu VusA== X-Received: by 10.180.91.107 with SMTP id cd11mr1637351wib.12.1372408085068; Fri, 28 Jun 2013 01:28:05 -0700 (PDT) Received: from angus.localnet (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id b20sm8520748wiw.4.2013.06.28.01.28.03 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 28 Jun 2013 01:28:04 -0700 (PDT) From: Thomas Monjalon Organization: 6WIND To: dev@dpdk.org Date: Fri, 28 Jun 2013 10:28:02 +0200 User-Agent: KMail/1.13.7 (Linux/3.2.0-4-amd64; KDE/4.8.4; x86_64; ; ) References: <17edb923.23124.13f8981ba27.Coremail.jinxiu.1006@163.com> In-Reply-To: <17edb923.23124.13f8981ba27.Coremail.jinxiu.1006@163.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201306281028.02095.thomas.monjalon@6wind.com> X-Gm-Message-State: ALoCoQm0KDd8L978h5dBPomFCmFpQOfaFECVBPlbjHG6y2itsje3ppL/P49wFH9qc/dEJlYcjsEX Subject: Re: [dpdk-dev] The type of ethernet card that DPDK require 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: Fri, 28 Jun 2013 08:27:51 -0000 28/06/2013 08:39, dvr : > I'm confused which type of ethernet card that DPDK require. OK. Since this type of question has already been asked and will probably be asked again and again, I will explain it on the website. For the record, here is how you should search for a supported NIC: # grep -r 'RTE_PCI_DEV_ID_DECL.*82575' lib RTE_PCI_DEV_ID_DECL(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575EB_COPPER) RTE_PCI_DEV_ID_DECL(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES) RTE_PCI_DEV_ID_DECL(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER) So your NIC 82575EB is supported. As you can see, the source code is a good documentation. To all users, please try to search in it before asking questions. -- Thomas