diff options
author | Ursula Braun <ursula.braun@de.ibm.com> | 2011-12-19 17:56:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-20 14:05:03 -0500 |
commit | 42bd48e0145567acf7b3d2ae48bea765315bdd89 (patch) | |
tree | 644f380b6feebc375666a8ceb4f859b566ec664c /net/iucv | |
parent | c64d3f8f59367e89e83582b50bf072474ba2abff (diff) |
af_iucv: accelerate close for HS transport
Closing an af_iucv socket may wait for confirmation of outstanding
send requests. This patch adds confirmation code for the new
HiperSockets transport.
Signed-off-by: Ursula Braun <ursula.braun@de.ibm.com>
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/iucv')
-rw-r--r-- | net/iucv/af_iucv.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c index f4ad720ea618..32a5010b2940 100644 --- a/net/iucv/af_iucv.c +++ b/net/iucv/af_iucv.c | |||
@@ -2293,6 +2293,13 @@ static void afiucv_hs_callback_txnotify(struct sk_buff *skb, | |||
2293 | } | 2293 | } |
2294 | spin_unlock_irqrestore(&list->lock, flags); | 2294 | spin_unlock_irqrestore(&list->lock, flags); |
2295 | 2295 | ||
2296 | if (sk->sk_state == IUCV_CLOSING) { | ||
2297 | if (skb_queue_empty(&iucv_sk(sk)->send_skb_q)) { | ||
2298 | sk->sk_state = IUCV_CLOSED; | ||
2299 | sk->sk_state_change(sk); | ||
2300 | } | ||
2301 | } | ||
2302 | |||
2296 | out_unlock: | 2303 | out_unlock: |
2297 | bh_unlock_sock(sk); | 2304 | bh_unlock_sock(sk); |
2298 | } | 2305 | } |