Lines Matching refs:to_copy
425 unsigned long to_copy, nbytes;
449 to_copy = min_t(unsigned long, iov_iter_count(from),
452 rds_stats_add(s_copy_from_user, to_copy);
454 to_copy, from);
455 if (nbytes != to_copy)
458 sg_off += to_copy;
471 unsigned long to_copy;
485 to_copy = min_t(unsigned long, iov_iter_count(to),
487 to_copy = min_t(unsigned long, to_copy, len - copied);
489 rds_stats_add(s_copy_to_user, to_copy);
491 to_copy, to);
492 if (ret != to_copy)
495 vec_off += to_copy;
496 copied += to_copy;