Lines Matching refs:size
16 int size, bool is_last) in tso_build_hdr() argument
27 iph->tot_len = htons(size + hdr_len - mac_hdr_len); in tso_build_hdr()
32 iph->payload_len = htons(size + tcp_hdrlen(skb)); in tso_build_hdr()
46 void tso_build_data(struct sk_buff *skb, struct tso_t *tso, int size) in tso_build_data() argument
48 tso->tcp_seq += size; in tso_build_data()
49 tso->size -= size; in tso_build_data()
50 tso->data += size; in tso_build_data()
52 if ((tso->size == 0) && in tso_build_data()
57 tso->size = frag->size; in tso_build_data()
74 tso->size = skb_headlen(skb) - hdr_len; in tso_start()
76 if ((tso->size == 0) && in tso_start()
81 tso->size = frag->size; in tso_start()