Re: [net-next-2.6 PATCH v8 0/7] TCPCT part 1: cookie option exchange

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: David Miller
Date: Wednesday, December 2, 2009 - 11:19 pm

From: David Miller <davem@davemloft.net>
Date: Wed, 02 Dec 2009 22:13:49 -0800 (PST)


I also had to apply another patch to fix build failures:

tcp: sysctl_tcp_cookie_size needs to be exported to modules.

Otherwise:

ERROR: "sysctl_tcp_cookie_size" [net/ipv6/ipv6.ko] undefined!
make[1]: *** [__modpost] Error 1

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 net/ipv4/tcp_output.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index c08e06d..93316a9 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -60,6 +60,7 @@ int sysctl_tcp_base_mss __read_mostly = 512;
 int sysctl_tcp_slow_start_after_idle __read_mostly = 1;
 
 int sysctl_tcp_cookie_size __read_mostly = 0; /* TCP_COOKIE_MAX */
+EXPORT_SYMBOL_GPL(sysctl_tcp_cookie_size);
 
 
 /* Account for new data that has been sent to the network. */
-- 
1.6.5

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[net-next-2.6 PATCH v8 0/7] TCPCT part 1: cookie option ex ..., William Allen Simpson, (Wed Dec 2, 9:04 pm)
Re: [net-next-2.6 PATCH v8 1/7] TCPCT part 1a: add request ..., William Allen Simpson, (Wed Dec 2, 9:07 pm)
Re: [net-next-2.6 PATCH v8 2/7] TCPCT part 1b: generate Re ..., William Allen Simpson, (Wed Dec 2, 9:12 pm)
Re: [net-next-2.6 PATCH v8 3/7] TCPCT part 1c: sysctl_tcp_ ..., William Allen Simpson, (Wed Dec 2, 9:14 pm)
Re: [net-next-2.6 PATCH v8 4/7] TCPCT part 1d: define TCP ..., William Allen Simpson, (Wed Dec 2, 9:17 pm)
Re: [net-next-2.6 PATCH v8 5/7] TCPCT part 1e: implement s ..., William Allen Simpson, (Wed Dec 2, 9:19 pm)
Re: [net-next-2.6 PATCH v8 6/7] TCPCT part 1f: Initiator C ..., William Allen Simpson, (Wed Dec 2, 9:23 pm)
Re: [net-next-2.6 PATCH v8 7/7] TCPCT part 1g: Responder C ..., William Allen Simpson, (Wed Dec 2, 9:25 pm)
Re: [net-next-2.6 PATCH v8 0/7] TCPCT part 1: cookie optio ..., David Miller, (Wed Dec 2, 11:19 pm)