diff options
| author | Pavel Emelyanov <xemul@parallels.com> | 2012-04-19 03:40:01 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-04-21 15:52:25 -0400 | 
| commit | 370816aef0c5436c2adbec3966038f36ca326933 (patch) | |
| tree | 665f8b3b0818aa7aa4f653072d89d1dcfb91a55f /net/ipv4/tcp.c | |
| parent | 4a17fd5229c1b6066aa478f6b690f8293ce811a1 (diff) | |
| download | olio-linux-3.10-370816aef0c5436c2adbec3966038f36ca326933.tar.xz olio-linux-3.10-370816aef0c5436c2adbec3966038f36ca326933.zip  | |
tcp: Move code around
This is just the preparation patch, which makes the needed for
TCP repair code ready for use.
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
| -rw-r--r-- | net/ipv4/tcp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index c53e8a827f5..bb4200f5615 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -919,7 +919,7 @@ int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,  	struct tcp_sock *tp = tcp_sk(sk);  	struct sk_buff *skb;  	int iovlen, flags, err, copied; -	int mss_now, size_goal; +	int mss_now = 0, size_goal;  	bool sg;  	long timeo;  |