mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
Bluetooth: convert flushable variable to flag in l2cap chan
flushable variable inside l2cap_chan is a logical one and can be easily converted to flag. Added flags in l2cap_chan structure. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
d4b8d1c9c1
commit
d57b0e8b89
3 changed files with 16 additions and 6 deletions
|
@ -446,7 +446,8 @@ static int l2cap_sock_getsockopt(struct socket *sock, int level, int optname, ch
|
|||
break;
|
||||
|
||||
case BT_FLUSHABLE:
|
||||
if (put_user(chan->flushable, (u32 __user *) optval))
|
||||
if (put_user(test_bit(FLAG_FLUSHABLE, &chan->flags),
|
||||
(u32 __user *) optval))
|
||||
err = -EFAULT;
|
||||
|
||||
break;
|
||||
|
@ -655,7 +656,10 @@ static int l2cap_sock_setsockopt(struct socket *sock, int level, int optname, ch
|
|||
}
|
||||
}
|
||||
|
||||
chan->flushable = opt;
|
||||
if (opt)
|
||||
set_bit(FLAG_FLUSHABLE, &chan->flags);
|
||||
else
|
||||
clear_bit(FLAG_FLUSHABLE, &chan->flags);
|
||||
break;
|
||||
|
||||
case BT_POWER:
|
||||
|
@ -931,7 +935,7 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
|
|||
chan->sec_level = pchan->sec_level;
|
||||
chan->role_switch = pchan->role_switch;
|
||||
chan->force_reliable = pchan->force_reliable;
|
||||
chan->flushable = pchan->flushable;
|
||||
chan->flags = pchan->flags;
|
||||
chan->force_active = pchan->force_active;
|
||||
} else {
|
||||
|
||||
|
@ -962,7 +966,7 @@ static void l2cap_sock_init(struct sock *sk, struct sock *parent)
|
|||
chan->sec_level = BT_SECURITY_LOW;
|
||||
chan->role_switch = 0;
|
||||
chan->force_reliable = 0;
|
||||
chan->flushable = BT_FLUSHABLE_OFF;
|
||||
chan->flags = 0;
|
||||
chan->force_active = BT_POWER_FORCE_ACTIVE_ON;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue