diff options
| author | Gustavo Padovan <gustavo@padovan.org> | 2012-05-16 12:17:10 -0300 | 
|---|---|---|
| committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-05-16 16:14:17 -0300 | 
| commit | c5daa683f2d3315cd766f550ef7d88bfca1671f4 (patch) | |
| tree | 91a974326357fd923a52818107b8ba99cad1e111 /net/bluetooth/af_bluetooth.c | |
| parent | c6585a4da0c709a7a9f59aab68869298b52ca1e1 (diff) | |
| download | olio-linux-3.10-c5daa683f2d3315cd766f550ef7d88bfca1671f4.tar.xz olio-linux-3.10-c5daa683f2d3315cd766f550ef7d88bfca1671f4.zip  | |
Bluetooth: Create flags for bt_sk()
defer_setup and suspended are now flags into bt_sk().
Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/af_bluetooth.c')
| -rw-r--r-- | net/bluetooth/af_bluetooth.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index 6fb68a9743a..46e7f86acfc 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c @@ -210,7 +210,7 @@ struct sock *bt_accept_dequeue(struct sock *parent, struct socket *newsock)  		}  		if (sk->sk_state == BT_CONNECTED || !newsock || -						bt_sk(parent)->defer_setup) { +		    test_bit(BT_DEFER_SETUP, &bt_sk(parent)->flags)) {  			bt_accept_unlink(sk);  			if (newsock)  				sock_graft(sk, newsock); @@ -410,8 +410,8 @@ static inline unsigned int bt_accept_poll(struct sock *parent)  	list_for_each_safe(p, n, &bt_sk(parent)->accept_q) {  		sk = (struct sock *) list_entry(p, struct bt_sock, accept_q);  		if (sk->sk_state == BT_CONNECTED || -					(bt_sk(parent)->defer_setup && -						sk->sk_state == BT_CONNECT2)) +		    (test_bit(BT_SK_DEFER_SETUP, &bt_sk(parent)->flags) && +		     sk->sk_state == BT_CONNECT2))  			return POLLIN | POLLRDNORM;  	} @@ -450,7 +450,7 @@ unsigned int bt_sock_poll(struct file *file, struct socket *sock, poll_table *wa  			sk->sk_state == BT_CONFIG)  		return mask; -	if (!bt_sk(sk)->suspended && sock_writeable(sk)) +	if (!test_bit(BT_SK_SUSPEND, &bt_sk(sk)->flags) && sock_writeable(sk))  		mask |= POLLOUT | POLLWRNORM | POLLWRBAND;  	else  		set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);  |