Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 210803
b: refs/heads/master
c: 3429769
h: refs/heads/master
i:
  210801: d2e498d
  210799: 7e1d9f2
v: v3
  • Loading branch information
Dan Carpenter authored and David S. Miller committed Sep 13, 2010
1 parent b5d54ab commit 35b5dac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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: 339db11b219f36cf7da61b390992d95bb6b7ba2e
refs/heads/master: 3429769bc67c7a48b3c01b2452b32171b3450202
9 changes: 7 additions & 2 deletions trunk/drivers/net/ppp_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1314,8 +1314,13 @@ static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
i = 0;
list_for_each_entry(pch, &ppp->channels, clist) {
navail += pch->avail = (pch->chan != NULL);
pch->speed = pch->chan->speed;
if (pch->chan) {
pch->avail = 1;
navail++;
pch->speed = pch->chan->speed;
} else {
pch->avail = 0;
}
if (pch->avail) {
if (skb_queue_empty(&pch->file.xq) ||
!pch->had_frag) {
Expand Down

0 comments on commit 35b5dac

Please sign in to comment.