Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277668
b: refs/heads/master
c: 15770b1
h: refs/heads/master
v: v3
  • Loading branch information
Andrei Emeltchenko authored and Gustavo F. Padovan committed Oct 11, 2011
1 parent 65ed59f commit ac4f994
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 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: ecf61bdba845b5e77cf1d5e8620ef54abcfa50ef
refs/heads/master: 15770b1ab9747de47604da3494e187056b120aff
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_active;

__u8 ident;

Expand Down Expand Up @@ -464,6 +463,7 @@ enum {

/* Definitions for flags in l2cap_chan */
enum {
FLAG_FORCE_ACTIVE,
FLAG_FORCE_RELIABLE,
FLAG_FLUSHABLE,
};
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/bluetooth/l2cap_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ static inline void l2cap_send_sframe(struct l2cap_chan *chan, u16 control)
else
flags = ACL_START;

bt_cb(skb)->force_active = chan->force_active;
bt_cb(skb)->force_active = test_bit(FLAG_FORCE_ACTIVE, &chan->flags);

hci_send_acl(chan->conn->hcon, skb, flags);
}
Expand Down Expand Up @@ -1259,7 +1259,7 @@ static void l2cap_do_send(struct l2cap_chan *chan, struct sk_buff *skb)
else
flags = ACL_START;

bt_cb(skb)->force_active = chan->force_active;
bt_cb(skb)->force_active = test_bit(FLAG_FORCE_ACTIVE, &chan->flags);
hci_send_acl(hcon, skb, flags);
}

Expand Down
12 changes: 7 additions & 5 deletions trunk/net/bluetooth/l2cap_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static int l2cap_sock_getsockopt(struct socket *sock, int level, int optname, ch
break;
}

pwr.force_active = chan->force_active;
pwr.force_active = test_bit(FLAG_FORCE_ACTIVE, &chan->flags);

len = min_t(unsigned int, len, sizeof(pwr));
if (copy_to_user(optval, (char *) &pwr, len))
Expand Down Expand Up @@ -680,7 +680,11 @@ static int l2cap_sock_setsockopt(struct socket *sock, int level, int optname, ch
err = -EFAULT;
break;
}
chan->force_active = pwr.force_active;

if (pwr.force_active)
set_bit(FLAG_FORCE_ACTIVE, &chan->flags);
else
clear_bit(FLAG_FORCE_ACTIVE, &chan->flags);
break;

default:
Expand Down Expand Up @@ -939,7 +943,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
chan->sec_level = pchan->sec_level;
chan->role_switch = pchan->role_switch;
chan->flags = pchan->flags;
chan->force_active = pchan->force_active;
} else {

switch (sk->sk_type) {
Expand Down Expand Up @@ -969,8 +972,7 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
chan->sec_level = BT_SECURITY_LOW;
chan->role_switch = 0;
chan->flags = 0;
chan->force_active = BT_POWER_FORCE_ACTIVE_ON;

set_bit(FLAG_FORCE_ACTIVE, &chan->flags);
}

/* Default config options */
Expand Down

0 comments on commit ac4f994

Please sign in to comment.