Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 314414
b: refs/heads/master
c: d660366
h: refs/heads/master
v: v3
  • Loading branch information
Gustavo Padovan authored and Johan Hedberg committed Jun 5, 2012
1 parent e56742b commit 9011af0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 33 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: be4aad05af0ec949a91e7bbaa55c02a954714473
refs/heads/master: d660366d53119fbd988e1b1d6ea2c00358a8e688
48 changes: 16 additions & 32 deletions trunk/net/bluetooth/l2cap_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static int l2cap_build_conf_req(struct l2cap_chan *chan, void *data);
static void l2cap_send_disconn_req(struct l2cap_conn *conn,
struct l2cap_chan *chan, int err);

static int l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event);

/* ---- L2CAP channels ---- */
Expand Down Expand Up @@ -1685,8 +1685,8 @@ static void l2cap_retrans_timeout(struct work_struct *work)
l2cap_chan_put(chan);
}

static int l2cap_streaming_send(struct l2cap_chan *chan,
struct sk_buff_head *skbs)
static void l2cap_streaming_send(struct l2cap_chan *chan,
struct sk_buff_head *skbs)
{
struct sk_buff *skb;
struct l2cap_ctrl *control;
Expand Down Expand Up @@ -1719,8 +1719,6 @@ static int l2cap_streaming_send(struct l2cap_chan *chan,
chan->next_tx_seq = __next_seq(chan, chan->next_tx_seq);
chan->frames_sent++;
}

return 0;
}

static int l2cap_ertm_send(struct l2cap_chan *chan)
Expand Down Expand Up @@ -2254,13 +2252,11 @@ int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
break;

if (chan->mode == L2CAP_MODE_ERTM)
err = l2cap_tx(chan, NULL, &seg_queue,
L2CAP_EV_DATA_REQUEST);
l2cap_tx(chan, NULL, &seg_queue, L2CAP_EV_DATA_REQUEST);
else
err = l2cap_streaming_send(chan, &seg_queue);
l2cap_streaming_send(chan, &seg_queue);

if (!err)
err = len;
err = len;

/* If the skbs were not queued for sending, they'll still be in
* seg_queue and need to be purged.
Expand Down Expand Up @@ -2383,12 +2379,10 @@ static void l2cap_abort_rx_srej_sent(struct l2cap_chan *chan)
chan->rx_state = L2CAP_RX_STATE_RECV;
}

static int l2cap_tx_state_xmit(struct l2cap_chan *chan,
struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
static void l2cap_tx_state_xmit(struct l2cap_chan *chan,
struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
{
int err = 0;

BT_DBG("chan %p, control %p, skbs %p, event %d", chan, control, skbs,
event);

Expand Down Expand Up @@ -2455,16 +2449,12 @@ static int l2cap_tx_state_xmit(struct l2cap_chan *chan,
default:
break;
}

return err;
}

static int l2cap_tx_state_wait_f(struct l2cap_chan *chan,
struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
static void l2cap_tx_state_wait_f(struct l2cap_chan *chan,
struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
{
int err = 0;

BT_DBG("chan %p, control %p, skbs %p, event %d", chan, control, skbs,
event);

Expand Down Expand Up @@ -2537,31 +2527,25 @@ static int l2cap_tx_state_wait_f(struct l2cap_chan *chan,
default:
break;
}

return err;
}

static int l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control,
struct sk_buff_head *skbs, u8 event)
{
int err = 0;

BT_DBG("chan %p, control %p, skbs %p, event %d, state %d",
chan, control, skbs, event, chan->tx_state);

switch (chan->tx_state) {
case L2CAP_TX_STATE_XMIT:
err = l2cap_tx_state_xmit(chan, control, skbs, event);
l2cap_tx_state_xmit(chan, control, skbs, event);
break;
case L2CAP_TX_STATE_WAIT_F:
err = l2cap_tx_state_wait_f(chan, control, skbs, event);
l2cap_tx_state_wait_f(chan, control, skbs, event);
break;
default:
/* Ignore event */
break;
}

return err;
}

static void l2cap_pass_to_tx(struct l2cap_chan *chan,
Expand Down

0 comments on commit 9011af0

Please sign in to comment.