DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
@ 2016-06-23 14:38 Pablo de Lara
  2016-06-23 14:59 ` Thomas Monjalon
  2016-06-24  8:28 ` Ferruh Yigit
  0 siblings, 2 replies; 5+ messages in thread
From: Pablo de Lara @ 2016-06-23 14:38 UTC (permalink / raw)
  To: dev; +Cc: helin.zhang, Pablo de Lara

Using gcc 6.1, in some cases, kni fails to compile
because of unused variables:

build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:82:19:
error: ‘ixgbe_copyright’
defined but not used [-Werror=unused-const-variable=]
static const char ixgbe_copyright[] =
                   ^~~~~~~~~~~~~~~

build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:62:19:
error: ‘ixgbe_driver_string’
defined but not used [-Werror=unused-const-variable=]
static const char ixgbe_driver_string[] =

Fixes: 3fc5ca2f6352 ("kni: initial import")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
 lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c b/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c
index 8c1d2fe..92fc9fc 100644
--- a/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c
+++ b/lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c
@@ -59,8 +59,6 @@
 #undef CONFIG_DCA_MODULE
 
 char ixgbe_driver_name[] = "ixgbe";
-static const char ixgbe_driver_string[] =
-			      "Intel(R) 10 Gigabit PCI Express Network Driver";
 #define DRV_HW_PERF
 
 #ifndef CONFIG_IXGBE_NAPI
@@ -79,8 +77,6 @@ static const char ixgbe_driver_string[] =
 #define DRV_VERSION	__stringify(MAJ) "." __stringify(MIN) "." \
 			__stringify(BUILD) DRIVERNAPI DRV_HW_PERF FPGA VMDQ_TAG
 const char ixgbe_driver_version[] = DRV_VERSION;
-static const char ixgbe_copyright[] =
-				"Copyright (c) 1999-2012 Intel Corporation.";
 
 /* ixgbe_pci_tbl - PCI Device ID Table
  *
-- 
2.5.5

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
  2016-06-23 14:38 [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1 Pablo de Lara
@ 2016-06-23 14:59 ` Thomas Monjalon
  2016-06-23 16:45   ` De Lara Guarch, Pablo
  2016-06-24  8:28 ` Ferruh Yigit
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2016-06-23 14:59 UTC (permalink / raw)
  To: Pablo de Lara; +Cc: dev, helin.zhang

2016-06-23 15:38, Pablo de Lara:
> Using gcc 6.1, in some cases, kni fails to compile
> because of unused variables:

Curiosity: is it only with gcc 6.1? Have you tested other versions?

>  lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c | 4 ----
>  1 file changed, 4 deletions(-)

We all know that the most efficient patch would be to drop the directory
lib/librte_eal/linuxapp/kni/ethtool/ ;)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
  2016-06-23 14:59 ` Thomas Monjalon
@ 2016-06-23 16:45   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 5+ messages in thread
From: De Lara Guarch, Pablo @ 2016-06-23 16:45 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, Zhang, Helin



> -----Original Message-----
> From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]
> Sent: Thursday, June 23, 2016 3:59 PM
> To: De Lara Guarch, Pablo
> Cc: dev@dpdk.org; Zhang, Helin
> Subject: Re: [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
> 
> 2016-06-23 15:38, Pablo de Lara:
> > Using gcc 6.1, in some cases, kni fails to compile
> > because of unused variables:
> 
> Curiosity: is it only with gcc 6.1? Have you tested other versions?

I have tested it with other gcc versions, but have not seen it there.
I said some cases because depending on the kernel, the flags passed to gcc change,
and if -Wno-unused-const-variable is not passed, then this error shows up.

> 
> >  lib/librte_eal/linuxapp/kni/ethtool/ixgbe/ixgbe_main.c | 4 ----
> >  1 file changed, 4 deletions(-)
> 
> We all know that the most efficient patch would be to drop the directory
> lib/librte_eal/linuxapp/kni/ethtool/ ;)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
  2016-06-23 14:38 [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1 Pablo de Lara
  2016-06-23 14:59 ` Thomas Monjalon
@ 2016-06-24  8:28 ` Ferruh Yigit
  2016-06-27 10:18   ` Thomas Monjalon
  1 sibling, 1 reply; 5+ messages in thread
From: Ferruh Yigit @ 2016-06-24  8:28 UTC (permalink / raw)
  To: Pablo de Lara, dev; +Cc: helin.zhang

On 6/23/2016 3:38 PM, Pablo de Lara wrote:
> Using gcc 6.1, in some cases, kni fails to compile
> because of unused variables:
> 
> build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:82:19:
> error: ‘ixgbe_copyright’
> defined but not used [-Werror=unused-const-variable=]
> static const char ixgbe_copyright[] =
>                    ^~~~~~~~~~~~~~~
> 
> build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:62:19:
> error: ‘ixgbe_driver_string’
> defined but not used [-Werror=unused-const-variable=]
> static const char ixgbe_driver_string[] =
> 
> Fixes: 3fc5ca2f6352 ("kni: initial import")
> 
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1
  2016-06-24  8:28 ` Ferruh Yigit
@ 2016-06-27 10:18   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2016-06-27 10:18 UTC (permalink / raw)
  To: Pablo de Lara; +Cc: dev, Ferruh Yigit, helin.zhang

2016-06-24 09:28, Ferruh Yigit:
> On 6/23/2016 3:38 PM, Pablo de Lara wrote:
> > Using gcc 6.1, in some cases, kni fails to compile
> > because of unused variables:
> > 
> > build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:82:19:
> > error: ‘ixgbe_copyright’
> > defined but not used [-Werror=unused-const-variable=]
> > static const char ixgbe_copyright[] =
> >                    ^~~~~~~~~~~~~~~
> > 
> > build/lib/librte_eal/linuxapp/kni/ixgbe_main.c:62:19:
> > error: ‘ixgbe_driver_string’
> > defined but not used [-Werror=unused-const-variable=]
> > static const char ixgbe_driver_string[] =
> > 
> > Fixes: 3fc5ca2f6352 ("kni: initial import")
> > 
> > Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-06-27 10:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-23 14:38 [dpdk-dev] [PATCH] kni: fix compilation with gcc 6.1 Pablo de Lara
2016-06-23 14:59 ` Thomas Monjalon
2016-06-23 16:45   ` De Lara Guarch, Pablo
2016-06-24  8:28 ` Ferruh Yigit
2016-06-27 10:18   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).