projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24b8e05
)
[DCCP]: Check if already in the CLOSING state in dccp_rcv_closereq
author
Arnaldo Carvalho de Melo
<acme@mandriva.com>
Tue, 13 Sep 2005 22:03:15 +0000
(19:03 -0300)
committer
Arnaldo Carvalho de Melo
<acme@mandriva.com>
Tue, 13 Sep 2005 22:03:15 +0000
(19:03 -0300)
It is possible to receive more than one CLOSEREQ packet if the
CLOSE packet sent in response is somehow lost, change the state
to DCCP_CLOSING only on the first CLOSEREQ packet received.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
net/dccp/input.c
patch
|
blob
|
blame
|
history
diff --git
a/net/dccp/input.c
b/net/dccp/input.c
index c60bc3433f5eac378d8a4b87198276576fd6d7f8..f01d588299c888ba2785dc91bf92dd3a72154ba3 100644
(file)
--- a/
net/dccp/input.c
+++ b/
net/dccp/input.c
@@
-50,7
+50,8
@@
static void dccp_rcv_closereq(struct sock *sk, struct sk_buff *skb)
return;
}
- dccp_set_state(sk, DCCP_CLOSING);
+ if (sk->sk_state != DCCP_CLOSING)
+ dccp_set_state(sk, DCCP_CLOSING);
dccp_send_close(sk, 0);
}