summaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
authorDavid S. Miller2006-10-04 01:49:53 +0200
committerDavid S. Miller2006-10-04 09:31:08 +0200
commit80246ab36ec8baf7d107254adb166baa555a59f8 (patch)
treeae9394f572bd58b96721b6b0ac1c2637b2336993 /net/ipv4/tcp_input.c
parent[NET_SCHED]: Remove old estimator implementation (diff)
downloadkernel-qcow2-linux-80246ab36ec8baf7d107254adb166baa555a59f8.tar.gz
kernel-qcow2-linux-80246ab36ec8baf7d107254adb166baa555a59f8.tar.xz
kernel-qcow2-linux-80246ab36ec8baf7d107254adb166baa555a59f8.zip
[TCP]: Kill warning in tcp_clean_rtx_queue().
GCC can't tell we always initialize 'tv' in all the cases we actually use it, so explicitly set it up with zeros. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r--net/ipv4/tcp_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 3f884cea14ff..cf06accbe687 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -2259,7 +2259,7 @@ static int tcp_clean_rtx_queue(struct sock *sk, __s32 *seq_rtt_p)
u32 pkts_acked = 0;
void (*rtt_sample)(struct sock *sk, u32 usrtt)
= icsk->icsk_ca_ops->rtt_sample;
- struct timeval tv;
+ struct timeval tv = { .tv_sec = 0, .tv_usec = 0 };
while ((skb = skb_peek(&sk->sk_write_queue)) &&
skb != sk->sk_send_head) {