Home
last modified time | relevance | path

Searched refs:endoff (Results 1 – 9 of 9) sorted by relevance

/openbmc/u-boot/cmd/
H A Dnand.c657 loff_t endoff; in do_nand() local
676 endoff = off + size; in do_nand()
677 if (endoff > mtd->size) { in do_nand()
683 endoff = round_up(endoff, mtd->erasesize); in do_nand()
684 size = endoff - off; in do_nand()
687 while (off < endoff) { in do_nand()
/openbmc/linux/fs/btrfs/
H A Dreflink.c23 u64 endoff, in clone_finish_inode_update() argument
39 if (endoff > destoff + olen) in clone_finish_inode_update()
40 endoff = destoff + olen; in clone_finish_inode_update()
41 if (endoff > inode->i_size) { in clone_finish_inode_update()
42 i_size_write(inode, endoff); in clone_finish_inode_update()
/openbmc/linux/fs/ceph/
H A Dfile.c1214 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len; in ceph_aio_complete() local
1215 if (endoff > i_size_read(inode)) { in ceph_aio_complete()
1216 if (ceph_inode_set_size(inode, endoff)) in ceph_aio_complete()
1283 loff_t endoff = aio_req->iocb->ki_pos + rc; in ceph_aio_complete_req() local
1284 if (endoff < i_size) in ceph_aio_complete_req()
1286 i_size - endoff); in ceph_aio_complete_req()
2562 loff_t endoff = 0; in ceph_fallocate() local
2695 loff_t size, endoff; in is_file_size_ok() local
2711 endoff = dst_off + len; in is_file_size_ok()
2712 if (inode_newsize_ok(dst_inode, endoff)) in is_file_size_ok()
[all …]
H A Dcaps.c2750 loff_t endoff, int flags, int *got) in try_get_cap_refs() argument
2785 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) { in try_get_cap_refs()
2787 inode, endoff, ci->i_max_size); in try_get_cap_refs()
2788 if (endoff > ci->i_requested_max_size) in try_get_cap_refs()
2910 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) { in check_max_size()
2912 inode, endoff); in check_max_size()
2913 ci->i_wanted_max_size = endoff; in check_max_size()
2968 int want, loff_t endoff, int *got) in __ceph_get_caps() argument
2989 ret = try_get_cap_refs(inode, need, want, endoff, in __ceph_get_caps()
3012 endoff, flags, &_got))) { in __ceph_get_caps()
[all …]
H A Dsuper.h1275 int need, int want, loff_t endoff, int *got);
1277 loff_t endoff, int *got);
/openbmc/linux/fs/erofs/
H A Dzmap.c457 unsigned int lclusterbits, endoff, afmt; in z_erofs_do_map_blocks() local
464 endoff = ofs & ((1 << lclusterbits) - 1); in z_erofs_do_map_blocks()
480 if (endoff >= m.clusterofs) { in z_erofs_do_map_blocks()
/openbmc/linux/fs/xfs/scrub/
H A Dbmap.c839 xfs_fileoff_t endoff; in xchk_bmap() local
898 error = xfs_bmap_last_offset(ip, &endoff, whichfork); in xchk_bmap()
915 if (irec.br_startoff >= endoff) { in xchk_bmap()
/openbmc/linux/fs/udf/
H A Ddirectory.c375 int endoff = off + udf_dir_entry_len(fi); in udf_copy_fi_to_bufs() local
389 endoff - off); in udf_copy_fi_to_bufs()
/openbmc/linux/fs/fuse/
H A Dfile.c2377 size_t endoff = pos & ~PAGE_MASK; in fuse_write_end() local
2378 if (endoff) in fuse_write_end()
2379 zero_user_segment(page, endoff, PAGE_SIZE); in fuse_write_end()