Searched refs:off_start (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/fs/f2fs/ |
D | file.c | 1117 loff_t off_start, off_end; in punch_hole() local 1127 off_start = offset & (PAGE_SIZE - 1); in punch_hole() 1131 ret = fill_zero(inode, pg_start, off_start, in punch_hole() 1132 off_end - off_start); in punch_hole() 1136 if (off_start) { in punch_hole() 1137 ret = fill_zero(inode, pg_start++, off_start, in punch_hole() 1138 PAGE_SIZE - off_start); in punch_hole() 1511 loff_t off_start, off_end; in f2fs_zero_range() local 1529 off_start = offset & (PAGE_SIZE - 1); in f2fs_zero_range() 1533 ret = fill_zero(inode, pg_start, off_start, in f2fs_zero_range() [all …]
|
/linux-6.1.9/mm/ |
D | huge_memory.c | 3047 static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start, in split_huge_pages_in_file() argument 3067 file_path, off_start, off_end); in split_huge_pages_in_file() 3071 for (index = off_start; index < off_end; index += nr_pages) { in split_huge_pages_in_file() 3134 pgoff_t off_start = 0, off_end = 0; in split_huge_pages_write() local 3145 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end); in split_huge_pages_write() 3150 ret = split_huge_pages_in_file(file_path, off_start, off_end); in split_huge_pages_write()
|