Lines Matching defs:last
313 * This routine creates a re-assembled skb given the first and last skb's
326 struct sk_buff *pnext, *last;
335 /* Get the last skb in the f_frag's frag_list if present. */
336 for (last = list; list; last = list, list = list->next)
342 if (last)
343 last->next = pos;
382 /* Break if we have reached the last fragment. */
396 /* Helper function to check if an incoming chunk has filled up the last
423 * we expect to find the remaining middle fragments and the last
969 struct sk_buff *skb, *flist, *last;
985 * freed space; find the last TSN.
989 for (last = flist; flist; flist = flist->next) {
990 last = flist;
991 freed += skb_headlen(last);
993 if (last)
994 last_tsn = sctp_skb2event(last)->tsn;