diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-12-10 13:01:18 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-11 17:35:00 -0500 |
commit | 8109b02b5397ed52a32c116163a62a34f4768b26 (patch) | |
tree | 0dbeae8cc999d2f6b71807b942eda7ff686ba7d2 /net/dccp/output.c | |
parent | 1fba78b6cba14bd37fdb12c5367f1e4d58ff2e0f (diff) |
[DCCP]: Whitespace cleanups
That accumulated over the last months hackaton, shame on me for not
using git-apply whitespace helping hand, will do that from now on.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net/dccp/output.c')
-rw-r--r-- | net/dccp/output.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/dccp/output.c b/net/dccp/output.c index b4df12b24161..824569659083 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * net/dccp/output.c | 2 | * net/dccp/output.c |
3 | * | 3 | * |
4 | * An implementation of the DCCP protocol | 4 | * An implementation of the DCCP protocol |
5 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 5 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
6 | * | 6 | * |
@@ -338,7 +338,6 @@ EXPORT_SYMBOL_GPL(dccp_make_response); | |||
338 | 338 | ||
339 | static struct sk_buff *dccp_make_reset(struct sock *sk, struct dst_entry *dst, | 339 | static struct sk_buff *dccp_make_reset(struct sock *sk, struct dst_entry *dst, |
340 | const enum dccp_reset_codes code) | 340 | const enum dccp_reset_codes code) |
341 | |||
342 | { | 341 | { |
343 | struct dccp_hdr *dh; | 342 | struct dccp_hdr *dh; |
344 | struct dccp_sock *dp = dccp_sk(sk); | 343 | struct dccp_sock *dp = dccp_sk(sk); |
@@ -419,14 +418,14 @@ static inline void dccp_connect_init(struct sock *sk) | |||
419 | 418 | ||
420 | dccp_sync_mss(sk, dst_mtu(dst)); | 419 | dccp_sync_mss(sk, dst_mtu(dst)); |
421 | 420 | ||
422 | /* | 421 | /* |
423 | * SWL and AWL are initially adjusted so that they are not less than | 422 | * SWL and AWL are initially adjusted so that they are not less than |
424 | * the initial Sequence Numbers received and sent, respectively: | 423 | * the initial Sequence Numbers received and sent, respectively: |
425 | * SWL := max(GSR + 1 - floor(W/4), ISR), | 424 | * SWL := max(GSR + 1 - floor(W/4), ISR), |
426 | * AWL := max(GSS - W' + 1, ISS). | 425 | * AWL := max(GSS - W' + 1, ISS). |
427 | * These adjustments MUST be applied only at the beginning of the | 426 | * These adjustments MUST be applied only at the beginning of the |
428 | * connection. | 427 | * connection. |
429 | */ | 428 | */ |
430 | dccp_update_gss(sk, dp->dccps_iss); | 429 | dccp_update_gss(sk, dp->dccps_iss); |
431 | dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss)); | 430 | dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss)); |
432 | 431 | ||