tcp: whitespace fixes
[sfrench/cifs-2.6.git] / net / ipv4 / tcp_scalable.c
index 8250949b88538db4e0f2d318050518855e74cf3d..6824afb65d9335532fe2bf61edce82cab8c3fd9c 100644 (file)
@@ -31,10 +31,10 @@ static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked)
 static u32 tcp_scalable_ssthresh(struct sock *sk)
 {
        const struct tcp_sock *tp = tcp_sk(sk);
+
        return max(tp->snd_cwnd - (tp->snd_cwnd>>TCP_SCALABLE_MD_SCALE), 2U);
 }
 
-
 static struct tcp_congestion_ops tcp_scalable __read_mostly = {
        .ssthresh       = tcp_scalable_ssthresh,
        .cong_avoid     = tcp_scalable_cong_avoid,