All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4
@ 2014-03-07  2:00 Bernhard Rosenkränzer
  2014-03-10 20:25 ` Stephen Hemminger
  2014-03-11  3:30 ` Pádraig Brady
  0 siblings, 2 replies; 3+ messages in thread
From: Bernhard Rosenkränzer @ 2014-03-07  2:00 UTC (permalink / raw)
  To: netdev

[-- Attachment #1: Type: text/plain, Size: 286 bytes --]

Hi,
the latest compilers (gcc 4.9 and clang 3.4) issue warnings when doing 
an incomplete struct initialization (e.g. "struct tc_sizespec s = 
{0};").

Since many people like to compile lower level bits and pieces with 
-Werror, this should probably be fixed. Patch attached.

ttyl
bero

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: iproute2-compilerwarnings.patch --]
[-- Type: text/x-diff; name=iproute2-compilerwarnings.patch, Size: 2357 bytes --]

From: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
Subject: [PATCH] Fix compiler warnings with gcc 4.9 and clang 3.4

Current compilers (gcc 4.9 and clang 3.4) issue warnings when doing
an incomplete struct initialization (e.g. "struct tc_sizespec s = {0};").

Initialize the structs completely so we can build with -Werror.

Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
---

diff --git a/tc/tc_stab.c b/tc/tc_stab.c
index 47b4e5e..7407ce5 100644
--- a/tc/tc_stab.c
+++ b/tc/tc_stab.c
@@ -124,7 +124,7 @@
 	parse_rtattr_nested(tb, TCA_STAB_MAX, rta);
 
 	if (tb[TCA_STAB_BASE]) {
-		struct tc_sizespec s = {0};
+		struct tc_sizespec s = {0, 0, 0, 0, 0, 0, 0, 0};
 		memcpy(&s, RTA_DATA(tb[TCA_STAB_BASE]),
 				MIN(RTA_PAYLOAD(tb[TCA_STAB_BASE]), sizeof(s)));
 
diff --git a/tc/tc_util.c b/tc/tc_util.c
index 926ed08..548b728 100644
--- a/tc/tc_util.c
+++ b/tc/tc_util.c
@@ -139,7 +139,7 @@
 	{ "GBps",	8000000000. },
 	{ "TiBps",	8.*1024.*1024.*1024.*1024. },
 	{ "TBps",	8000000000000. },
-	{ NULL }
+	{ NULL, .0 }
 };
 
 
@@ -472,28 +472,28 @@
 	parse_rtattr_nested(tbs, TCA_STATS_MAX, rta);
 
 	if (tbs[TCA_STATS_BASIC]) {
-		struct gnet_stats_basic bs = {0};
+		struct gnet_stats_basic bs = {0, 0};
 		memcpy(&bs, RTA_DATA(tbs[TCA_STATS_BASIC]), MIN(RTA_PAYLOAD(tbs[TCA_STATS_BASIC]), sizeof(bs)));
 		fprintf(fp, "%sSent %llu bytes %u pkt",
 			prefix, (unsigned long long) bs.bytes, bs.packets);
 	}
 
 	if (tbs[TCA_STATS_QUEUE]) {
-		struct gnet_stats_queue q = {0};
+		struct gnet_stats_queue q = {0, 0, 0, 0, 0};
 		memcpy(&q, RTA_DATA(tbs[TCA_STATS_QUEUE]), MIN(RTA_PAYLOAD(tbs[TCA_STATS_QUEUE]), sizeof(q)));
 		fprintf(fp, " (dropped %u, overlimits %u requeues %u) ",
 			q.drops, q.overlimits, q.requeues);
 	}
 
 	if (tbs[TCA_STATS_RATE_EST]) {
-		struct gnet_stats_rate_est re = {0};
+		struct gnet_stats_rate_est re = {0, 0};
 		memcpy(&re, RTA_DATA(tbs[TCA_STATS_RATE_EST]), MIN(RTA_PAYLOAD(tbs[TCA_STATS_RATE_EST]), sizeof(re)));
 		fprintf(fp, "\n%srate %s %upps ",
 			prefix, sprint_rate(re.bps, b1), re.pps);
 	}
 
 	if (tbs[TCA_STATS_QUEUE]) {
-		struct gnet_stats_queue q = {0};
+		struct gnet_stats_queue q = {0, 0, 0, 0, 0};
 		memcpy(&q, RTA_DATA(tbs[TCA_STATS_QUEUE]), MIN(RTA_PAYLOAD(tbs[TCA_STATS_QUEUE]), sizeof(q)));
 		if (!tbs[TCA_STATS_RATE_EST])
 			fprintf(fp, "\n%s", prefix);

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

* Re: [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4
  2014-03-07  2:00 [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4 Bernhard Rosenkränzer
@ 2014-03-10 20:25 ` Stephen Hemminger
  2014-03-11  3:30 ` Pádraig Brady
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Hemminger @ 2014-03-10 20:25 UTC (permalink / raw)
  To: Bernhard Rosenkränzer; +Cc: netdev

On Fri, 07 Mar 2014 03:00:53 +0100
Bernhard Rosenkränzer <bero@lindev.ch> wrote:

> Hi,
> the latest compilers (gcc 4.9 and clang 3.4) issue warnings when doing 
> an incomplete struct initialization (e.g. "struct tc_sizespec s = 
> {0};").
> 
> Since many people like to compile lower level bits and pieces with 
> -Werror, this should probably be fixed. Patch attached.
> 
> ttyl
> bero

Does not apply to current source, please update:

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

* Re: [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4
  2014-03-07  2:00 [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4 Bernhard Rosenkränzer
  2014-03-10 20:25 ` Stephen Hemminger
@ 2014-03-11  3:30 ` Pádraig Brady
  1 sibling, 0 replies; 3+ messages in thread
From: Pádraig Brady @ 2014-03-11  3:30 UTC (permalink / raw)
  To: Bernhard Rosenkränzer; +Cc: netdev

On 03/07/2014 02:00 AM, Bernhard Rosenkränzer wrote:
> Hi,
> the latest compilers (gcc 4.9 and clang 3.4) issue warnings when doing an incomplete struct initialization (e.g. "struct tc_sizespec s = {0};").
> 
> Since many people like to compile lower level bits and pieces with -Werror, this should probably be fixed. Patch attached.

Sounds like newer compilers are reverting:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36750
Hopefully not.

thanks,
Pádraig.

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

end of thread, other threads:[~2014-03-11  3:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-07  2:00 [PATCH] iproute2: Fix warnings with gcc 4.9 and clang 3.4 Bernhard Rosenkränzer
2014-03-10 20:25 ` Stephen Hemminger
2014-03-11  3:30 ` Pádraig Brady

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.