diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2011-10-11 07:04:32 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-10-11 09:48:21 -0400 |
commit | ecf61bdba845b5e77cf1d5e8620ef54abcfa50ef (patch) | |
tree | 5a7c1d6d50278aed67ef74a1f69eac4176614de2 /net/bluetooth/l2cap_sock.c | |
parent | d57b0e8b8990419b7b7ae0dda5cc4452720b3c7c (diff) |
Bluetooth: convert force_reliable variable to flag in l2cap chan
force_reliable variable inside l2cap_chan is a logical one and can
be easily converted to flag
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/l2cap_sock.c')
-rw-r--r-- | net/bluetooth/l2cap_sock.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index 99782cb4f0b4..405d736131e2 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c | |||
@@ -359,7 +359,7 @@ static int l2cap_sock_getsockopt_old(struct socket *sock, int optname, char __us | |||
359 | if (chan->role_switch) | 359 | if (chan->role_switch) |
360 | opt |= L2CAP_LM_MASTER; | 360 | opt |= L2CAP_LM_MASTER; |
361 | 361 | ||
362 | if (chan->force_reliable) | 362 | if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags)) |
363 | opt |= L2CAP_LM_RELIABLE; | 363 | opt |= L2CAP_LM_RELIABLE; |
364 | 364 | ||
365 | if (put_user(opt, (u32 __user *) optval)) | 365 | if (put_user(opt, (u32 __user *) optval)) |
@@ -550,7 +550,11 @@ static int l2cap_sock_setsockopt_old(struct socket *sock, int optname, char __us | |||
550 | chan->sec_level = BT_SECURITY_HIGH; | 550 | chan->sec_level = BT_SECURITY_HIGH; |
551 | 551 | ||
552 | chan->role_switch = (opt & L2CAP_LM_MASTER); | 552 | chan->role_switch = (opt & L2CAP_LM_MASTER); |
553 | chan->force_reliable = (opt & L2CAP_LM_RELIABLE); | 553 | |
554 | if (opt & L2CAP_LM_RELIABLE) | ||
555 | set_bit(FLAG_FORCE_RELIABLE, &chan->flags); | ||
556 | else | ||
557 | clear_bit(FLAG_FORCE_RELIABLE, &chan->flags); | ||
554 | break; | 558 | break; |
555 | 559 | ||
556 | default: | 560 | default: |
@@ -934,7 +938,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent) | |||
934 | chan->tx_win = pchan->tx_win; | 938 | chan->tx_win = pchan->tx_win; |
935 | chan->sec_level = pchan->sec_level; | 939 | chan->sec_level = pchan->sec_level; |
936 | chan->role_switch = pchan->role_switch; | 940 | chan->role_switch = pchan->role_switch; |
937 | chan->force_reliable = pchan->force_reliable; | ||
938 | chan->flags = pchan->flags; | 941 | chan->flags = pchan->flags; |
939 | chan->force_active = pchan->force_active; | 942 | chan->force_active = pchan->force_active; |
940 | } else { | 943 | } else { |
@@ -965,7 +968,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent) | |||
965 | chan->tx_win = L2CAP_DEFAULT_TX_WINDOW; | 968 | chan->tx_win = L2CAP_DEFAULT_TX_WINDOW; |
966 | chan->sec_level = BT_SECURITY_LOW; | 969 | chan->sec_level = BT_SECURITY_LOW; |
967 | chan->role_switch = 0; | 970 | chan->role_switch = 0; |
968 | chan->force_reliable = 0; | ||
969 | chan->flags = 0; | 971 | chan->flags = 0; |
970 | chan->force_active = BT_POWER_FORCE_ACTIVE_ON; | 972 | chan->force_active = BT_POWER_FORCE_ACTIVE_ON; |
971 | 973 | ||