ethdev: fix include for ether header file

Message ID 20191023125300.45569-1-ciara.power@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series ethdev: fix include for ether header file |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-intel-Performance success Performance Testing PASS
ci/Intel-compilation success Compilation OK
ci/iol-compilation success Compile Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed

Commit Message

Power, Ciara Oct. 23, 2019, 12:53 p.m. UTC
  The include for rte_ether.h in each of these files should not use
quotes, as the header file is not in the librte_ethdev directory.  These
are now updated to use <> symbols, to search directories pre-designated
by the compiler.

Fixes: 57668ed7bc08 ("net: move ethernet definitions to the net library")
Cc: olivier.matz@6wind.com
Cc: stable@dpdk.org

Signed-off-by: Ciara Power <ciara.power@intel.com>
---
 lib/librte_ethdev/rte_eth_ctrl.h | 2 +-
 lib/librte_ethdev/rte_ethdev.c   | 2 +-
 lib/librte_ethdev/rte_ethdev.h   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
  

Comments

Thomas Monjalon Oct. 23, 2019, 2:01 p.m. UTC | #1
23/10/2019 14:53, Ciara Power:
> The include for rte_ether.h in each of these files should not use
> quotes, as the header file is not in the librte_ethdev directory.  These
> are now updated to use <> symbols, to search directories pre-designated
> by the compiler.
> 
> Fixes: 57668ed7bc08 ("net: move ethernet definitions to the net library")
> Cc: olivier.matz@6wind.com
> Cc: stable@dpdk.org
> 
> Signed-off-by: Ciara Power <ciara.power@intel.com>
> ---
>  lib/librte_ethdev/rte_eth_ctrl.h | 2 +-
>  lib/librte_ethdev/rte_ethdev.c   | 2 +-
>  lib/librte_ethdev/rte_ethdev.h   | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)

Good change.
Acked-by: Thomas Monjalon <thomas@monjalon.net>

I'm curious, is it triggering any compilation issue?
  
Power, Ciara Oct. 23, 2019, 2:47 p.m. UTC | #2
> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: Wednesday 23 October 2019 15:02
> To: Power, Ciara <ciara.power@intel.com>
> Cc: Yigit, Ferruh <ferruh.yigit@intel.com>; arybchenko@solarflare.com;
> dev@dpdk.org; olivier.matz@6wind.com; stable@dpdk.org
> Subject: Re: [PATCH] ethdev: fix include for ether header file
> 
> 23/10/2019 14:53, Ciara Power:
> > The include for rte_ether.h in each of these files should not use
> > quotes, as the header file is not in the librte_ethdev directory.
> > These are now updated to use <> symbols, to search directories
> > pre-designated by the compiler.
> >
> > Fixes: 57668ed7bc08 ("net: move ethernet definitions to the net
> > library")
> > Cc: olivier.matz@6wind.com
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Ciara Power <ciara.power@intel.com>
> > ---
> >  lib/librte_ethdev/rte_eth_ctrl.h | 2 +-
> >  lib/librte_ethdev/rte_ethdev.c   | 2 +-
> >  lib/librte_ethdev/rte_ethdev.h   | 2 +-
> >  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> Good change.
> Acked-by: Thomas Monjalon <thomas@monjalon.net>
> 
> I'm curious, is it triggering any compilation issue?
> 

Hi Thomas,

No not that I'm aware, it's not triggering issues on our internal CI builds, and I haven't seen any issues using meson or make.
  
Ferruh Yigit Oct. 23, 2019, 7:14 p.m. UTC | #3
On 10/23/2019 3:01 PM, Thomas Monjalon wrote:
> 23/10/2019 14:53, Ciara Power:
>> The include for rte_ether.h in each of these files should not use
>> quotes, as the header file is not in the librte_ethdev directory.  These
>> are now updated to use <> symbols, to search directories pre-designated
>> by the compiler.
>>
>> Fixes: 57668ed7bc08 ("net: move ethernet definitions to the net library")
>> Cc: olivier.matz@6wind.com
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Ciara Power <ciara.power@intel.com>
>> ---
>>  lib/librte_ethdev/rte_eth_ctrl.h | 2 +-
>>  lib/librte_ethdev/rte_ethdev.c   | 2 +-
>>  lib/librte_ethdev/rte_ethdev.h   | 2 +-
>>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> Good change.
> Acked-by: Thomas Monjalon <thomas@monjalon.net>

Applied to dpdk-next-net/master, thanks.
  

Patch

diff --git a/lib/librte_ethdev/rte_eth_ctrl.h b/lib/librte_ethdev/rte_eth_ctrl.h
index be4b4af65..1416c371f 100644
--- a/lib/librte_ethdev/rte_eth_ctrl.h
+++ b/lib/librte_ethdev/rte_eth_ctrl.h
@@ -7,7 +7,7 @@ 
 
 #include <stdint.h>
 #include <rte_common.h>
-#include "rte_ether.h"
+#include <rte_ether.h>
 #include "rte_flow.h"
 
 /**
diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c
index af823607c..7445edc57 100644
--- a/lib/librte_ethdev/rte_ethdev.c
+++ b/lib/librte_ethdev/rte_ethdev.c
@@ -37,8 +37,8 @@ 
 #include <rte_string_fns.h>
 #include <rte_kvargs.h>
 #include <rte_class.h>
+#include <rte_ether.h>
 
-#include "rte_ether.h"
 #include "rte_ethdev.h"
 #include "rte_ethdev_driver.h"
 #include "ethdev_profile.h"
diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h
index d937fb429..20c092e4f 100644
--- a/lib/librte_ethdev/rte_ethdev.h
+++ b/lib/librte_ethdev/rte_ethdev.h
@@ -156,8 +156,8 @@  extern "C" {
 #include <rte_errno.h>
 #include <rte_common.h>
 #include <rte_config.h>
+#include <rte_ether.h>
 
-#include "rte_ether.h"
 #include "rte_dev_info.h"
 
 extern int rte_eth_dev_logtype;