Searched refs:off_end (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.6/drivers/dax/ |
D | device.c | 314 unsigned long off, off_end, off_align, len_align, addr_align, align; in dax_get_unmapped_area() local 322 off_end = off + len; in dax_get_unmapped_area() 325 if ((off_end <= off_align) || ((off_end - off_align) < align)) in dax_get_unmapped_area()
|
/Linux-v6.6/mm/ |
D | huge_memory.c | 600 loff_t off_end = off + len; in __thp_get_unmapped_area() local 604 if (off_end <= off_align || (off_end - off_align) < size) in __thp_get_unmapped_area() 3059 pgoff_t off_end) in split_huge_pages_in_file() argument 3078 file_path, off_start, off_end); in split_huge_pages_in_file() 3082 for (index = off_start; index < off_end; index += nr_pages) { in split_huge_pages_in_file() 3144 pgoff_t off_start = 0, off_end = 0; in split_huge_pages_write() local 3155 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end); in split_huge_pages_write() 3160 ret = split_huge_pages_in_file(file_path, off_start, off_end); in split_huge_pages_write()
|
/Linux-v6.6/fs/f2fs/ |
D | file.c | 1112 loff_t off_start, off_end; in f2fs_punch_hole() local 1123 off_end = (offset + len) & (PAGE_SIZE - 1); in f2fs_punch_hole() 1127 off_end - off_start); in f2fs_punch_hole() 1137 if (off_end) { in f2fs_punch_hole() 1138 ret = fill_zero(inode, pg_end, 0, off_end); in f2fs_punch_hole() 1507 loff_t off_start, off_end; in f2fs_zero_range() local 1526 off_end = (offset + len) & (PAGE_SIZE - 1); in f2fs_zero_range() 1530 off_end - off_start); in f2fs_zero_range() 1589 if (off_end) { in f2fs_zero_range() 1590 ret = fill_zero(inode, pg_end, 0, off_end); in f2fs_zero_range() [all …]
|