Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277666
b: refs/heads/master
c: d57b0e8
h: refs/heads/master
v: v3
  • Loading branch information
Andrei Emeltchenko authored and Gustavo F. Padovan committed Oct 11, 2011
1 parent c14687d commit 5067e29
Show file tree
Hide file tree
Showing 4 changed files with 17 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: d4b8d1c9c1564f4cbce86cbbee099fadf735b226
refs/heads/master: d57b0e8b8990419b7b7ae0dda5cc4452720b3c7c
7 changes: 6 additions & 1 deletion trunk/include/net/bluetooth/l2cap.h
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ struct l2cap_chan {
__u8 sec_level;
__u8 role_switch;
__u8 force_reliable;
__u8 flushable;
__u8 force_active;

__u8 ident;
Expand All @@ -346,6 +345,7 @@ struct l2cap_chan {

unsigned long conf_state;
unsigned long conn_state;
unsigned long flags;

__u8 next_tx_seq;
__u8 expected_ack_seq;
Expand Down Expand Up @@ -463,6 +463,11 @@ enum {
CONN_RNR_SENT,
};

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

#define __set_chan_timer(c, t) l2cap_set_timer(c, &c->chan_timer, (t))
#define __clear_chan_timer(c) l2cap_clear_timer(c, &c->chan_timer)
#define __set_retrans_timer(c) l2cap_set_timer(c, &c->retrans_timer, \
Expand Down
3 changes: 2 additions & 1 deletion trunk/net/bluetooth/l2cap_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,8 @@ static void l2cap_do_send(struct l2cap_chan *chan, struct sk_buff *skb)

BT_DBG("chan %p, skb %p len %d", chan, skb, skb->len);

if (!chan->flushable && lmp_no_flush_capable(hcon->hdev))
if (!test_bit(FLAG_FLUSHABLE, &chan->flags) &&
lmp_no_flush_capable(hcon->hdev))
flags = ACL_START_NO_FLUSH;
else
flags = ACL_START;
Expand Down
12 changes: 8 additions & 4 deletions trunk/net/bluetooth/l2cap_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 {

Expand Down Expand Up @@ -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;

}
Expand Down

0 comments on commit 5067e29

Please sign in to comment.