From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 10/20] event/dpaa2: add initialization of event device Date: Thu, 1 Jun 2017 16:09:09 +0530 Message-ID: <20170601103908.GA23495@jerin> References: <1495735671-4917-1-git-send-email-nipun.gupta@nxp.com> <1495735671-4917-11-git-send-email-nipun.gupta@nxp.com> <20170531151003.GB16598@jerin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev@dpdk.org" , Hemant Agrawal , "harry.van.haaren@intel.com" , "bruce.richardson@intel.com" , "gage.eads@intel.com" , Shreyansh Jain To: Nipun Gupta Return-path: Received: from NAM01-SN1-obe.outbound.protection.outlook.com (mail-sn1nam01on0073.outbound.protection.outlook.com [104.47.32.73]) by dpdk.org (Postfix) with ESMTP id 06D927CBB for ; Thu, 1 Jun 2017 12:39:32 +0200 (CEST) Content-Disposition: inline In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Thu, 1 Jun 2017 10:25:02 +0000 > From: Nipun Gupta > To: Jerin Jacob > CC: "dev@dpdk.org" , Hemant Agrawal , > "harry.van.haaren@intel.com" , > "bruce.richardson@intel.com" , > "gage.eads@intel.com" , Shreyansh Jain > > Subject: RE: [PATCH 10/20] event/dpaa2: add initialization of event device > > > > > -----Original Message----- > > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > > Sent: Wednesday, May 31, 2017 20:40 > > To: Nipun Gupta > > Cc: dev@dpdk.org; Hemant Agrawal ; > > harry.van.haaren@intel.com; bruce.richardson@intel.com; > > gage.eads@intel.com; Shreyansh Jain > > Subject: Re: [PATCH 10/20] event/dpaa2: add initialization of event device > > > > -----Original Message----- > > > Date: Thu, 25 May 2017 23:37:41 +0530 > > > From: Nipun Gupta > > > To: dev@dpdk.org > > > CC: hemant.agrawal@nxp.com, jerin.jacob@caviumnetworks.com, > > > harry.van.haaren@intel.com, bruce.richardson@intel.com, > > > gage.eads@intel.com, shreyansh.jain@nxp.com, Nipun Gupta > > > > > > Subject: [PATCH 10/20] event/dpaa2: add initialization of event device > > > X-Mailer: git-send-email 1.9.1 > > > > > > Signed-off-by: Nipun Gupta > > > --- > > > drivers/event/dpaa2/dpaa2_eventdev.c | 153 > > ++++++++++++++++++++++++++++++++++- > > > drivers/event/dpaa2/dpaa2_eventdev.h | 22 +++++ > > > 2 files changed, 171 insertions(+), 4 deletions(-) > > > > > > diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c > > b/drivers/event/dpaa2/dpaa2_eventdev.c > > > index 191901e..7fa17f2 100644 > > > --- a/drivers/event/dpaa2/dpaa2_eventdev.c > > > +++ b/drivers/event/dpaa2/dpaa2_eventdev.c > > > @@ -30,17 +30,164 @@ > > > * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH > > DAMAGE. > > > */ > > > > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > + > > > +#include > > > +#include > > > +#include > > > +#include > > > #include > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > #include > > > +#include > > > +#include > > > > Maintain alphabetical order in header inclusion. > > Thank you for the review. > > Regarding this I check most of the c files in DPDK and do not see that alphabetical > being maintained in the header file inclusions. Are you suggesting to have an alphabetical > order here across all inclusions of rte* as well as gcc standard header files (combined) or > to have them ordered separately? Just the rte_*.h header files in the new files.