Lines Matching refs:nextf
1621 struct sk_buff *newfrag, *frag, *start, *nextf; in isdn_ppp_mp_receive() local
1718 nextf = frag->next; in isdn_ppp_mp_receive()
1727 if (newfrag != NULL && (nextf == NULL || in isdn_ppp_mp_receive()
1728 MP_LT(newseq, MP_SEQ(nextf)))) { in isdn_ppp_mp_receive()
1729 newfrag->next = nextf; in isdn_ppp_mp_receive()
1730 frag->next = nextf = newfrag; in isdn_ppp_mp_receive()
1742 nextf = frag->next; in isdn_ppp_mp_receive()
1751 mp->frags = nextf; in isdn_ppp_mp_receive()
1753 frag = nextf; in isdn_ppp_mp_receive()
1765 isdn_ppp_mp_reassembly(net_dev, lp, start, nextf); in isdn_ppp_mp_receive()
1770 mp->frags = nextf; in isdn_ppp_mp_receive()
1782 if (nextf != NULL && in isdn_ppp_mp_receive()
1783 ((thisseq + 1) & MP_LONGSEQ_MASK) == MP_SEQ(nextf)) { in isdn_ppp_mp_receive()
1788 if (MP_FLAGS(nextf) & MP_BEGIN_FRAG) in isdn_ppp_mp_receive()
1789 start = nextf; in isdn_ppp_mp_receive()
1800 if (nextf != NULL && frag != NULL && in isdn_ppp_mp_receive()
1810 mp->frags = isdn_ppp_mp_discard(mp, start, nextf); in isdn_ppp_mp_receive()
1816 frag = nextf; in isdn_ppp_mp_receive()