Lines Matching defs:copy
124 * to the network layer's zero copy send path. If not we
275 * iscsi_tcp_segment_recv - copy data to segment
277 * @segment: the buffer to copy to
288 * but in the future we could implement combined copy+crc,
296 unsigned int copy = 0, copied = 0;
298 while (!iscsi_tcp_segment_done(tcp_conn, segment, 1, copy)) {
305 copy = min(len - copied, segment->size - segment->copied);
306 ISCSI_DBG_TCP(tcp_conn->iscsi_conn, "copying %d\n", copy);
307 memcpy(segment->data + segment->copied, ptr + copied, copy);
308 copied += copy;
681 * by data, the receive buffer is set up to copy the incoming data
733 * Setup copy of Data-In into the struct scsi_cmnd
736 * scatterlist entry to copy to. As we go along,