Searched refs:off_start (Results 1 – 1 of 1) sorted by relevance
/linux-4.4.14/fs/f2fs/ |
D | file.c | 780 loff_t off_start, off_end; in punch_hole() local 792 off_start = offset & (PAGE_CACHE_SIZE - 1); in punch_hole() 796 ret = fill_zero(inode, pg_start, off_start, in punch_hole() 797 off_end - off_start); in punch_hole() 801 if (off_start) { in punch_hole() 802 ret = fill_zero(inode, pg_start++, off_start, in punch_hole() 803 PAGE_CACHE_SIZE - off_start); in punch_hole() 987 loff_t off_start, off_end; in f2fs_zero_range() local 1011 off_start = offset & (PAGE_CACHE_SIZE - 1); in f2fs_zero_range() 1015 ret = fill_zero(inode, pg_start, off_start, in f2fs_zero_range() [all …]
|