Lines Matching defs:last
307 * This routine creates a re-assembled skb given the first and last skb's
320 struct sk_buff *pnext, *last;
329 /* Get the last skb in the f_frag's frag_list if present. */
330 for (last = list; list; last = list, list = list->next)
336 if (last)
337 last->next = pos;
376 /* Break if we have reached the last fragment. */
390 /* Helper function to check if an incoming chunk has filled up the last
417 * we expect to find the remaining middle fragments and the last
963 struct sk_buff *skb, *flist, *last;
979 * freed space; find the last TSN.
983 for (last = flist; flist; flist = flist->next) {
984 last = flist;
985 freed += skb_headlen(last);
987 if (last)
988 last_tsn = sctp_skb2event(last)->tsn;