diff options
Diffstat (limited to 'net/dccp/proto.c')
-rw-r--r-- | net/dccp/proto.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index f644c1a23c4d..baccaf35ffbd 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c | |||
@@ -163,11 +163,10 @@ void dccp_unhash(struct sock *sk) | |||
163 | 163 | ||
164 | EXPORT_SYMBOL_GPL(dccp_unhash); | 164 | EXPORT_SYMBOL_GPL(dccp_unhash); |
165 | 165 | ||
166 | int dccp_init_sock(struct sock *sk) | 166 | int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) |
167 | { | 167 | { |
168 | struct dccp_sock *dp = dccp_sk(sk); | 168 | struct dccp_sock *dp = dccp_sk(sk); |
169 | struct inet_connection_sock *icsk = inet_csk(sk); | 169 | struct inet_connection_sock *icsk = inet_csk(sk); |
170 | static int dccp_ctl_socket_init = 1; | ||
171 | 170 | ||
172 | dccp_options_init(&dp->dccps_options); | 171 | dccp_options_init(&dp->dccps_options); |
173 | do_gettimeofday(&dp->dccps_epoch); | 172 | do_gettimeofday(&dp->dccps_epoch); |
@@ -179,7 +178,7 @@ int dccp_init_sock(struct sock *sk) | |||
179 | * lets leave it here, later the real solution is to do this in a | 178 | * lets leave it here, later the real solution is to do this in a |
180 | * setsockopt(CCIDs-I-want/accept). -acme | 179 | * setsockopt(CCIDs-I-want/accept). -acme |
181 | */ | 180 | */ |
182 | if (likely(!dccp_ctl_socket_init)) { | 181 | if (likely(ctl_sock_initialized)) { |
183 | int rc = dccp_feat_init(sk); | 182 | int rc = dccp_feat_init(sk); |
184 | 183 | ||
185 | if (rc) | 184 | if (rc) |
@@ -211,7 +210,6 @@ int dccp_init_sock(struct sock *sk) | |||
211 | /* control socket doesn't need feat nego */ | 210 | /* control socket doesn't need feat nego */ |
212 | INIT_LIST_HEAD(&dp->dccps_options.dccpo_pending); | 211 | INIT_LIST_HEAD(&dp->dccps_options.dccpo_pending); |
213 | INIT_LIST_HEAD(&dp->dccps_options.dccpo_conf); | 212 | INIT_LIST_HEAD(&dp->dccps_options.dccpo_conf); |
214 | dccp_ctl_socket_init = 0; | ||
215 | } | 213 | } |
216 | 214 | ||
217 | dccp_init_xmit_timers(sk); | 215 | dccp_init_xmit_timers(sk); |