Lines Matching refs:to_copy
422 unsigned long to_copy, nbytes;
446 to_copy = min_t(unsigned long, iov_iter_count(from),
449 rds_stats_add(s_copy_from_user, to_copy);
451 to_copy, from);
452 if (nbytes != to_copy)
455 sg_off += to_copy;
468 unsigned long to_copy;
482 to_copy = min_t(unsigned long, iov_iter_count(to),
484 to_copy = min_t(unsigned long, to_copy, len - copied);
486 rds_stats_add(s_copy_to_user, to_copy);
488 to_copy, to);
489 if (ret != to_copy)
492 vec_off += to_copy;
493 copied += to_copy;