aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2011-10-11 07:04:32 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-10-11 09:48:21 -0400
commitecf61bdba845b5e77cf1d5e8620ef54abcfa50ef (patch)
tree5a7c1d6d50278aed67ef74a1f69eac4176614de2
parentd57b0e8b8990419b7b7ae0dda5cc4452720b3c7c (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>
-rw-r--r--include/net/bluetooth/l2cap.h2
-rw-r--r--net/bluetooth/l2cap_core.c2
-rw-r--r--net/bluetooth/l2cap_sock.c10
3 files changed, 8 insertions, 6 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index 0fe5d59b71a3..6c0d247de94c 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -325,7 +325,6 @@ struct l2cap_chan {
325 325
326 __u8 sec_level; 326 __u8 sec_level;
327 __u8 role_switch; 327 __u8 role_switch;
328 __u8 force_reliable;
329 __u8 force_active; 328 __u8 force_active;
330 329
331 __u8 ident; 330 __u8 ident;
@@ -465,6 +464,7 @@ enum {
465 464
466/* Definitions for flags in l2cap_chan */ 465/* Definitions for flags in l2cap_chan */
467enum { 466enum {
467 FLAG_FORCE_RELIABLE,
468 FLAG_FLUSHABLE, 468 FLAG_FLUSHABLE,
469}; 469};
470 470
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index b21ecfffcaa9..57e4b2cf7b6a 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -948,7 +948,7 @@ static void l2cap_conn_unreliable(struct l2cap_conn *conn, int err)
948 list_for_each_entry(chan, &conn->chan_l, list) { 948 list_for_each_entry(chan, &conn->chan_l, list) {
949 struct sock *sk = chan->sk; 949 struct sock *sk = chan->sk;
950 950
951 if (chan->force_reliable) 951 if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags))
952 sk->sk_err = err; 952 sk->sk_err = err;
953 } 953 }
954 954
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