Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150542
b: refs/heads/master
c: 528be7f
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed May 29, 2009
1 parent 2bd1572 commit d9e645f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 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: 915219441d566f1da0caa0e262be49b666159e17
refs/heads/master: 528be7ff823c3d0fc08c91f31b1e84c5f2681762
18 changes: 2 additions & 16 deletions trunk/net/irda/irlap_frame.c
Original file line number Diff line number Diff line change
Expand Up @@ -982,17 +982,12 @@ void irlap_resend_rejected_frames(struct irlap_cb *self, int command)
{
struct sk_buff *tx_skb;
struct sk_buff *skb;
int count;

IRDA_ASSERT(self != NULL, return;);
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);

/* Initialize variables */
count = skb_queue_len(&self->wx_list);

/* Resend unacknowledged frame(s) */
skb = skb_peek(&self->wx_list);
while (skb != NULL) {
skb_queue_walk(&self->wx_list, skb) {
irlap_wait_min_turn_around(self, &self->qos_tx);

/* We copy the skb to be retransmitted since we will have to
Expand All @@ -1011,21 +1006,12 @@ void irlap_resend_rejected_frames(struct irlap_cb *self, int command)
/*
* Set poll bit on the last frame retransmitted
*/
if (count-- == 1)
if (skb_queue_is_last(&self->wx_list, skb))
tx_skb->data[1] |= PF_BIT; /* Set p/f bit */
else
tx_skb->data[1] &= ~PF_BIT; /* Clear p/f bit */

irlap_send_i_frame(self, tx_skb, command);

/*
* If our skb is the last buffer in the list, then
* we are finished, if not, move to the next sk-buffer
*/
if (skb == skb_peek_tail(&self->wx_list))
skb = NULL;
else
skb = skb->next;
}
#if 0 /* Not yet */
/*
Expand Down

0 comments on commit d9e645f

Please sign in to comment.