Lines Matching refs:tocopy
2628 int tocopy; in f2fs_quota_read() local
2640 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read()
2664 memcpy_from_page(data, page, offset, tocopy); in f2fs_quota_read()
2668 toread -= tocopy; in f2fs_quota_read()
2669 data += tocopy; in f2fs_quota_read()
2687 int tocopy; in f2fs_quota_write() local
2690 tocopy = min_t(unsigned long, sb->s_blocksize - offset, in f2fs_quota_write()
2693 err = a_ops->write_begin(NULL, mapping, off, tocopy, in f2fs_quota_write()
2704 memcpy_to_folio(folio, offset_in_folio(folio, off), data, tocopy); in f2fs_quota_write()
2706 a_ops->write_end(NULL, mapping, off, tocopy, tocopy, in f2fs_quota_write()
2709 towrite -= tocopy; in f2fs_quota_write()
2710 off += tocopy; in f2fs_quota_write()
2711 data += tocopy; in f2fs_quota_write()