From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: The type of ethernet card that DPDK require Date: Fri, 28 Jun 2013 10:28:02 +0200 Message-ID: <201306281028.02095.thomas.monjalon@6wind.com> References: <17edb923.23124.13f8981ba27.Coremail.jinxiu.1006@163.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <17edb923.23124.13f8981ba27.Coremail.jinxiu.1006-9Onoh4P/yGk@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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