* [PATCH] Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG disabled in tcp.h
@ 2005-03-12 6:10 Andre Tomt
2005-03-15 5:37 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: Andre Tomt @ 2005-03-12 6:10 UTC (permalink / raw)
To: Netdev, davem
[-- Attachment #1: Type: text/plain, Size: 167 bytes --]
Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG
disabled in tcp.h
Patch (with description and signed-off-by) attached due to braindamaged MUA.
[-- Attachment #2: fix-tcp-non-debug-build.patch --]
[-- Type: text/x-patch, Size: 1149 bytes --]
Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG
disabled in tcp.h
TCP_DEBUG is default on, but it should work with it off anyway.
With gcc-3.4:
CC net/core/sock.o
In file included from net/core/sock.c:127:
include/net/tcp.h: In function `tcp_reset_xmit_timer':
include/net/tcp.h:1042: error: label at end of compound statement
make[3]: *** [net/core/sock.o] Error 1
make[2]: *** [net/core] Error 2
make[1]: *** [net] Error 2
make[1]: Leaving directory `/build/kernel/linux-2.6.11-s3'
make: *** [stamp-build] Error 2
With gcc-3.3:
In file included from net/ipv4/icmp.c:84:
include/net/tcp.h: In function `tcp_reset_xmit_timer':
include/net/tcp.h:1042: warning: deprecated use of label at end of compound statement
(times everywhere tcp.h is included)
Signed-off-by: Andre Tomt <andre@tomt.net>
diff -Naur linux-2.6.11/include/net/tcp.h linux-2.6.11-1.1/include/net/tcp.h
--- linux-2.6.11/include/net/tcp.h 2005-03-02 08:37:48.000000000 +0100
+++ linux-2.6.11-1.1/include/net/tcp.h 2005-03-12 07:00:52.000000000 +0100
@@ -1039,6 +1039,7 @@
#ifdef TCP_DEBUG
printk(tcp_timer_bug_msg);
#endif
+ return;
};
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG disabled in tcp.h
2005-03-12 6:10 [PATCH] Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG disabled in tcp.h Andre Tomt
@ 2005-03-15 5:37 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2005-03-15 5:37 UTC (permalink / raw)
To: Andre Tomt; +Cc: netdev
On Sat, 12 Mar 2005 07:10:12 +0100
Andre Tomt <andre@tomt.net> wrote:
> Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG
> disabled in tcp.h
>
> Patch (with description and signed-off-by) attached due to braindamaged MUA.
Applied, thanks Andre.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-03-15 5:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-12 6:10 [PATCH] Fix a gcc-3.4 build failure and gcc-3.3 build warnings with TCP_DEBUG disabled in tcp.h Andre Tomt
2005-03-15 5:37 ` David S. Miller
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).