mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 07:31:41 +00:00
Bluetooth: convert force_active variable to flag in l2cap chan
force_active 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>
This commit is contained in:
parent
ecf61bdba8
commit
15770b1ab9
3 changed files with 10 additions and 8 deletions
|
@ -325,7 +325,6 @@ struct l2cap_chan {
|
||||||
|
|
||||||
__u8 sec_level;
|
__u8 sec_level;
|
||||||
__u8 role_switch;
|
__u8 role_switch;
|
||||||
__u8 force_active;
|
|
||||||
|
|
||||||
__u8 ident;
|
__u8 ident;
|
||||||
|
|
||||||
|
@ -464,6 +463,7 @@ enum {
|
||||||
|
|
||||||
/* Definitions for flags in l2cap_chan */
|
/* Definitions for flags in l2cap_chan */
|
||||||
enum {
|
enum {
|
||||||
|
FLAG_FORCE_ACTIVE,
|
||||||
FLAG_FORCE_RELIABLE,
|
FLAG_FORCE_RELIABLE,
|
||||||
FLAG_FLUSHABLE,
|
FLAG_FLUSHABLE,
|
||||||
};
|
};
|
||||||
|
|
|
@ -605,7 +605,7 @@ static inline void l2cap_send_sframe(struct l2cap_chan *chan, u16 control)
|
||||||
else
|
else
|
||||||
flags = ACL_START;
|
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);
|
hci_send_acl(chan->conn->hcon, skb, flags);
|
||||||
}
|
}
|
||||||
|
@ -1259,7 +1259,7 @@ static void l2cap_do_send(struct l2cap_chan *chan, struct sk_buff *skb)
|
||||||
else
|
else
|
||||||
flags = ACL_START;
|
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);
|
hci_send_acl(hcon, skb, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -459,7 +459,7 @@ static int l2cap_sock_getsockopt(struct socket *sock, int level, int optname, ch
|
||||||
break;
|
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));
|
len = min_t(unsigned int, len, sizeof(pwr));
|
||||||
if (copy_to_user(optval, (char *) &pwr, len))
|
if (copy_to_user(optval, (char *) &pwr, len))
|
||||||
|
@ -680,7 +680,11 @@ static int l2cap_sock_setsockopt(struct socket *sock, int level, int optname, ch
|
||||||
err = -EFAULT;
|
err = -EFAULT;
|
||||||
break;
|
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;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -939,7 +943,6 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
|
||||||
chan->sec_level = pchan->sec_level;
|
chan->sec_level = pchan->sec_level;
|
||||||
chan->role_switch = pchan->role_switch;
|
chan->role_switch = pchan->role_switch;
|
||||||
chan->flags = pchan->flags;
|
chan->flags = pchan->flags;
|
||||||
chan->force_active = pchan->force_active;
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
switch (sk->sk_type) {
|
switch (sk->sk_type) {
|
||||||
|
@ -969,8 +972,7 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
|
||||||
chan->sec_level = BT_SECURITY_LOW;
|
chan->sec_level = BT_SECURITY_LOW;
|
||||||
chan->role_switch = 0;
|
chan->role_switch = 0;
|
||||||
chan->flags = 0;
|
chan->flags = 0;
|
||||||
chan->force_active = BT_POWER_FORCE_ACTIVE_ON;
|
set_bit(FLAG_FORCE_ACTIVE, &chan->flags);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Default config options */
|
/* Default config options */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue