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/proto.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/proto.c')
-rw-r--r-- | net/dccp/proto.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index 5ec47d9ee447..63b3fa20e14b 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c | |||
@@ -196,7 +196,7 @@ int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) | |||
196 | sk, GFP_KERNEL); | 196 | sk, GFP_KERNEL); |
197 | dp->dccps_hc_tx_ccid = ccid_hc_tx_new(dmsk->dccpms_tx_ccid, | 197 | dp->dccps_hc_tx_ccid = ccid_hc_tx_new(dmsk->dccpms_tx_ccid, |
198 | sk, GFP_KERNEL); | 198 | sk, GFP_KERNEL); |
199 | if (unlikely(dp->dccps_hc_rx_ccid == NULL || | 199 | if (unlikely(dp->dccps_hc_rx_ccid == NULL || |
200 | dp->dccps_hc_tx_ccid == NULL)) { | 200 | dp->dccps_hc_tx_ccid == NULL)) { |
201 | ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk); | 201 | ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk); |
202 | ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); | 202 | ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk); |
@@ -390,7 +390,7 @@ static int dccp_setsockopt_service(struct sock *sk, const __be32 service, | |||
390 | struct dccp_sock *dp = dccp_sk(sk); | 390 | struct dccp_sock *dp = dccp_sk(sk); |
391 | struct dccp_service_list *sl = NULL; | 391 | struct dccp_service_list *sl = NULL; |
392 | 392 | ||
393 | if (service == DCCP_SERVICE_INVALID_VALUE || | 393 | if (service == DCCP_SERVICE_INVALID_VALUE || |
394 | optlen > DCCP_SERVICE_LIST_MAX_LEN * sizeof(u32)) | 394 | optlen > DCCP_SERVICE_LIST_MAX_LEN * sizeof(u32)) |
395 | return -EINVAL; | 395 | return -EINVAL; |
396 | 396 | ||
@@ -830,7 +830,7 @@ EXPORT_SYMBOL_GPL(inet_dccp_listen); | |||
830 | static const unsigned char dccp_new_state[] = { | 830 | static const unsigned char dccp_new_state[] = { |
831 | /* current state: new state: action: */ | 831 | /* current state: new state: action: */ |
832 | [0] = DCCP_CLOSED, | 832 | [0] = DCCP_CLOSED, |
833 | [DCCP_OPEN] = DCCP_CLOSING | DCCP_ACTION_FIN, | 833 | [DCCP_OPEN] = DCCP_CLOSING | DCCP_ACTION_FIN, |
834 | [DCCP_REQUESTING] = DCCP_CLOSED, | 834 | [DCCP_REQUESTING] = DCCP_CLOSED, |
835 | [DCCP_PARTOPEN] = DCCP_CLOSING | DCCP_ACTION_FIN, | 835 | [DCCP_PARTOPEN] = DCCP_CLOSING | DCCP_ACTION_FIN, |
836 | [DCCP_LISTEN] = DCCP_CLOSED, | 836 | [DCCP_LISTEN] = DCCP_CLOSED, |