diff options
author | Ursula Braun <ursula.braun@de.ibm.com> | 2012-02-08 04:19:47 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-02-09 03:50:19 +0400 |
commit | 800c5eb7b5eba6cb2a32738d763fd59f0fbcdde4 (patch) | |
tree | 870a32bb186b395c7e70da55a1d1b17e37342336 /include/net/iucv | |
parent | 7f1b0ea42a800713a3d56e1e8ca1a845e0461ca2 (diff) | |
download | linux-800c5eb7b5eba6cb2a32738d763fd59f0fbcdde4.tar.xz |
af_iucv: change net_device handling for HS transport
This patch saves the net_device in the iucv_sock structure during
bind in order to fasten skb sending.
In addition some other small improvements are made for HS transport:
- error checking when sending skbs
- locking changes in afiucv_hs_callback_txnotify
- skb freeing in afiucv_hs_callback_txnotify
And finally it contains code cleanup to get rid of iucv_skb_queue_purge.
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 'include/net/iucv')
-rw-r--r-- | include/net/iucv/af_iucv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/iucv/af_iucv.h b/include/net/iucv/af_iucv.h index 0954ec959159..a1517887aeac 100644 --- a/include/net/iucv/af_iucv.h +++ b/include/net/iucv/af_iucv.h @@ -113,6 +113,7 @@ struct iucv_sock { spinlock_t accept_q_lock; struct sock *parent; struct iucv_path *path; + struct net_device *hs_dev; struct sk_buff_head send_skb_q; struct sk_buff_head backlog_skb_q; struct sock_msg_q message_q; |