Re: [PATCH 10/20] event/dpaa2: add initialization of event device
From: Jerin Jacob <hidden>
Date: 2017-06-01 10:39:32
-----Original Message-----
Date: Thu, 1 Jun 2017 10:25:02 +0000 From: Nipun Gupta <redacted> To: Jerin Jacob <redacted> CC: "dev@dpdk.org" <redacted>, Hemant Agrawal <redacted>, "harry.van.haaren@intel.com" [off-list ref], "bruce.richardson@intel.com" [off-list ref], "gage.eads@intel.com" [off-list ref], Shreyansh Jain [off-list ref] Subject: RE: [PATCH 10/20] event/dpaa2: add initialization of event devicequoted
-----Original Message----- From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] Sent: Wednesday, May 31, 2017 20:40 To: Nipun Gupta <redacted> Cc: dev@dpdk.org; Hemant Agrawal <redacted>; harry.van.haaren@intel.com; bruce.richardson@intel.com; gage.eads@intel.com; Shreyansh Jain [off-list ref] Subject: Re: [PATCH 10/20] event/dpaa2: add initialization of event device -----Original Message-----quoted
Date: Thu, 25 May 2017 23:37:41 +0530 From: Nipun Gupta <redacted> 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 [off-list ref] Subject: [PATCH 10/20] event/dpaa2: add initialization of event device X-Mailer: git-send-email 1.9.1 Signed-off-by: Nipun Gupta <redacted> --- drivers/event/dpaa2/dpaa2_eventdev.c | 153++++++++++++++++++++++++++++++++++-quoted
drivers/event/dpaa2/dpaa2_eventdev.h | 22 +++++ 2 files changed, 171 insertions(+), 4 deletions(-)diff --git a/drivers/event/dpaa2/dpaa2_eventdev.cb/drivers/event/dpaa2/dpaa2_eventdev.cquoted
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 SUCHDAMAGE.quoted
*/ +#include <assert.h> +#include <stdio.h> +#include <stdbool.h> +#include <errno.h> +#include <stdint.h> +#include <string.h> +#include <stdint.h> +#include <sys/epoll.h> + +#include <rte_byteorder.h> +#include <rte_common.h> +#include <rte_debug.h> +#include <rte_dev.h> #include <rte_eal.h> +#include <rte_log.h> +#include <rte_memory.h> +#include <rte_memzone.h> +#include <rte_malloc.h> +#include <rte_pci.h> +#include <rte_lcore.h> #include <rte_vdev.h> +#include <rte_fslmc.h> +#include <rte_atomic.h>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.