Lines Matching refs:nextf
1631 struct sk_buff *newfrag, *frag, *start, *nextf; in isdn_ppp_mp_receive() local
1728 nextf = frag->next; in isdn_ppp_mp_receive()
1737 if (newfrag != NULL && (nextf == NULL || in isdn_ppp_mp_receive()
1738 MP_LT(newseq, MP_SEQ(nextf)))) { in isdn_ppp_mp_receive()
1739 newfrag->next = nextf; in isdn_ppp_mp_receive()
1740 frag->next = nextf = newfrag; in isdn_ppp_mp_receive()
1752 nextf = frag->next; in isdn_ppp_mp_receive()
1761 mp->frags = nextf; in isdn_ppp_mp_receive()
1763 frag = nextf; in isdn_ppp_mp_receive()
1775 isdn_ppp_mp_reassembly(net_dev, lp, start, nextf); in isdn_ppp_mp_receive()
1780 mp->frags = nextf; in isdn_ppp_mp_receive()
1792 if (nextf != NULL && in isdn_ppp_mp_receive()
1793 ((thisseq + 1) & MP_LONGSEQ_MASK) == MP_SEQ(nextf)) { in isdn_ppp_mp_receive()
1798 if (MP_FLAGS(nextf) & MP_BEGIN_FRAG) in isdn_ppp_mp_receive()
1799 start = nextf; in isdn_ppp_mp_receive()
1810 if (nextf != NULL && frag != NULL && in isdn_ppp_mp_receive()
1820 mp->frags = isdn_ppp_mp_discard(mp, start, nextf); in isdn_ppp_mp_receive()
1826 frag = nextf; in isdn_ppp_mp_receive()