Home
last modified time | relevance | path

Searched refs:pg_end (Results 1 – 7 of 7) sorted by relevance

/linux-6.12.1/fs/f2fs/
Dfile.c1139 int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end) in f2fs_truncate_hole() argument
1143 while (pg_start < pg_end) { in f2fs_truncate_hole()
1159 count = min(end_offset - dn.ofs_in_node, pg_end - pg_start); in f2fs_truncate_hole()
1173 pgoff_t pg_start, pg_end; in f2fs_punch_hole() local
1182 pg_end = ((unsigned long long) offset + len) >> PAGE_SHIFT; in f2fs_punch_hole()
1187 if (pg_start == pg_end) { in f2fs_punch_hole()
1200 ret = fill_zero(inode, pg_end, 0, off_end); in f2fs_punch_hole()
1205 if (pg_start < pg_end) { in f2fs_punch_hole()
1212 blk_end = (loff_t)pg_end << PAGE_SHIFT; in f2fs_punch_hole()
1220 ret = f2fs_truncate_hole(inode, pg_start, pg_end); in f2fs_punch_hole()
[all …]
Df2fs.h3516 int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end);
/linux-6.12.1/drivers/tty/
Dgoldfish.c89 unsigned long pg_end = (addr & PAGE_MASK) + PAGE_SIZE; in goldfish_tty_rw() local
91 pg_end < addr_end ? pg_end : addr_end; in goldfish_tty_rw()
/linux-6.12.1/tools/mm/
Dpage-types.c175 static unsigned long pg_end[MAX_VMAS]; variable
764 while (pg_end[i] <= index) in walk_task()
771 index = min_t(unsigned long, pg_end[i], end); in walk_task()
928 pg_end[nr_vmas] = vm_end / page_size; in parse_pid()
/linux-6.12.1/fs/
Ddax.c1125 loff_t pg_end = round_up(end, align_size); in dax_iomap_copy_around() local
1127 bool copy_all = head_off == 0 && end == pg_end; in dax_iomap_copy_around()
1160 if (end < pg_end) { in dax_iomap_copy_around()
1162 loff_t tail_len = pg_end - end; in dax_iomap_copy_around()
/linux-6.12.1/fs/fuse/
Dinode.c523 pgoff_t pg_end; in fuse_reverse_inval_inode() local
539 pg_end = -1; in fuse_reverse_inval_inode()
541 pg_end = (offset + len - 1) >> PAGE_SHIFT; in fuse_reverse_inval_inode()
543 pg_start, pg_end); in fuse_reverse_inval_inode()
/linux-6.12.1/drivers/misc/
Dfastrpc.c943 u64 pg_start, pg_end; in fastrpc_get_args() local
1000 pg_end = ((ctx->args[i].ptr + len - 1) & PAGE_MASK) >> in fastrpc_get_args()
1002 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE; in fastrpc_get_args()
1023 pg_end = ((args + len - 1) & PAGE_MASK) >> PAGE_SHIFT; in fastrpc_get_args()
1024 pages[i].size = (pg_end - pg_start + 1) * PAGE_SIZE; in fastrpc_get_args()