Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277667
b: refs/heads/master
c: ecf61bd
h: refs/heads/master
i:
  277665: c14687d
  277663: 0c747a2
v: v3
  • Loading branch information
Andrei Emeltchenko authored and Gustavo F. Padovan committed Oct 11, 2011
1 parent 5067e29 commit 65ed59f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d57b0e8b8990419b7b7ae0dda5cc4452720b3c7c
refs/heads/master: ecf61bdba845b5e77cf1d5e8620ef54abcfa50ef
2 changes: 1 addition & 1 deletion trunk/include/net/bluetooth/l2cap.h
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ struct l2cap_chan {

__u8 sec_level;
__u8 role_switch;
__u8 force_reliable;
__u8 force_active;

__u8 ident;
Expand Down Expand Up @@ -465,6 +464,7 @@ enum {

/* Definitions for flags in l2cap_chan */
enum {
FLAG_FORCE_RELIABLE,
FLAG_FLUSHABLE,
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/bluetooth/l2cap_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ static void l2cap_conn_unreliable(struct l2cap_conn *conn, int err)
list_for_each_entry(chan, &conn->chan_l, list) {
struct sock *sk = chan->sk;

if (chan->force_reliable)
if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags))
sk->sk_err = err;
}

Expand Down
10 changes: 6 additions & 4 deletions trunk/net/bluetooth/l2cap_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ static int l2cap_sock_getsockopt_old(struct socket *sock, int optname, char __us
if (chan->role_switch)
opt |= L2CAP_LM_MASTER;

if (chan->force_reliable)
if (test_bit(FLAG_FORCE_RELIABLE, &chan->flags))
opt |= L2CAP_LM_RELIABLE;

if (put_user(opt, (u32 __user *) optval))
Expand Down Expand Up @@ -550,7 +550,11 @@ static int l2cap_sock_setsockopt_old(struct socket *sock, int optname, char __us
chan->sec_level = BT_SECURITY_HIGH;

chan->role_switch = (opt & L2CAP_LM_MASTER);
chan->force_reliable = (opt & L2CAP_LM_RELIABLE);

if (opt & L2CAP_LM_RELIABLE)
set_bit(FLAG_FORCE_RELIABLE, &chan->flags);
else
clear_bit(FLAG_FORCE_RELIABLE, &chan->flags);
break;

default:
Expand Down Expand Up @@ -934,7 +938,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
chan->tx_win = pchan->tx_win;
chan->sec_level = pchan->sec_level;
chan->role_switch = pchan->role_switch;
chan->force_reliable = pchan->force_reliable;
chan->flags = pchan->flags;
chan->force_active = pchan->force_active;
} else {
Expand Down Expand Up @@ -965,7 +968,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
chan->tx_win = L2CAP_DEFAULT_TX_WINDOW;
chan->sec_level = BT_SECURITY_LOW;
chan->role_switch = 0;
chan->force_reliable = 0;
chan->flags = 0;
chan->force_active = BT_POWER_FORCE_ACTIVE_ON;

Expand Down

0 comments on commit 65ed59f

Please sign in to comment.