Lines Matching defs:data_len
1018 unsigned int data_len = skb->len;
1026 nframes = DIV_ROUND_UP(data_len, TBNET_MAX_PAYLOAD_SIZE);
1040 while (data_len > TBNET_MAX_PAYLOAD_SIZE) {
1079 data_len -= TBNET_MAX_PAYLOAD_SIZE;
1090 hdr->frame_size = cpu_to_le32(data_len);
1094 frames[frame_index]->frame.size = data_len + sizeof(*hdr);
1096 /* In case the remaining data_len is smaller than a frame */
1097 while (len < data_len) {
1099 data_len -= len;
1110 } else if (unlikely(data_len > 0)) {
1115 memcpy(dest, src, data_len);