From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id B53832A9 for ; Thu, 27 Nov 2014 15:49:57 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 27 Nov 2014 06:49:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,469,1413270000"; d="scan'208";a="639104274" Received: from irsmsx104.ger.corp.intel.com ([163.33.3.159]) by fmsmga002.fm.intel.com with ESMTP; 27 Nov 2014 06:49:55 -0800 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.93]) by IRSMSX104.ger.corp.intel.com ([169.254.5.209]) with mapi id 14.03.0195.001; Thu, 27 Nov 2014 14:49:54 +0000 From: "Wodkowski, PawelX" To: Sujith Sankar , "dev@dpdk.org" , "Thomas Monjalon" Thread-Topic: [dpdk-dev] [PATCH v6 4/6] enicpmd: pmd specific code Thread-Index: AQHQCNXftU0/7dbxEEGGggwfygrdNJx0jmig Date: Thu, 27 Nov 2014 14:49:53 +0000 Message-ID: References: <1416936405-25333-1-git-send-email-ssujith@cisco.com> <1416936405-25333-5-git-send-email-ssujith@cisco.com> In-Reply-To: <1416936405-25333-5-git-send-email-ssujith@cisco.com> Accept-Language: pl-PL, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "prrao@cisco.com" Subject: Re: [dpdk-dev] [PATCH v6 4/6] enicpmd: pmd specific code 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, 27 Nov 2014 14:49:58 -0000 > diff --git a/lib/librte_pmd_enic/enic_main.c b/lib/librte_pmd_enic/enic_m= ain.c > new file mode 100644 > index 0000000..c047cc8 > --- /dev/null > +++ b/lib/librte_pmd_enic/enic_main.c > @@ -0,0 +1,1266 @@ > +/* > + * Copyright 2008-2014 Cisco Systems, Inc. All rights reserved. > +#ident "$Id$" > + > +#include > + > +#include > +#include > +#include > +#include > +#ifdef RTE_EAL_VFIO > +#include > +#endif > + This gives compilation error: lib/librte_pmd_enic/enic_main.c:43:24: fatal = error: linux/vfio.h: No such file or directory Ubuntu 12.04 Linux grizzly 3.11.0-26-generic #45~precise1-Ubuntu SMP Tue Jul 15 04:02:35= UTC 2014 x86_64 x86_64 x86_64 GNU/Linux lib/librte_eal/linuxapp/eal/eal_vfio.h gives some tips how vfio might be in= cluded. Pawel