Lines Matching refs:tocopy
1981 int tocopy; in f2fs_quota_read() local
1994 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read()
2020 memcpy(data, kaddr + offset, tocopy); in f2fs_quota_read()
2025 toread -= tocopy; in f2fs_quota_read()
2026 data += tocopy; in f2fs_quota_read()
2045 int tocopy; in f2fs_quota_write() local
2048 tocopy = min_t(unsigned long, sb->s_blocksize - offset, in f2fs_quota_write()
2051 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0, in f2fs_quota_write()
2064 memcpy(kaddr + offset, data, tocopy); in f2fs_quota_write()
2068 a_ops->write_end(NULL, mapping, off, tocopy, tocopy, in f2fs_quota_write()
2071 towrite -= tocopy; in f2fs_quota_write()
2072 off += tocopy; in f2fs_quota_write()
2073 data += tocopy; in f2fs_quota_write()