Home
last modified time | relevance | path

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

/Linux-v4.19/arch/ia64/sn/pci/pcibr/
Dpcibr_dma.c176 u64 endoff; in pcibr_dmatrans_direct32() local
193 endoff = req_size + offset; in pcibr_dmatrans_direct32()
196 (endoff > (1ULL << 31))) { /* Too Big */ in pcibr_dmatrans_direct32()
/Linux-v4.19/fs/ceph/
Dfile.c752 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len; in ceph_aio_complete() local
753 if (endoff > i_size_read(inode)) { in ceph_aio_complete()
754 if (ceph_inode_set_size(inode, endoff)) in ceph_aio_complete()
817 loff_t endoff = aio_req->iocb->ki_pos + rc; in ceph_aio_complete_req() local
818 if (endoff < i_size) in ceph_aio_complete_req()
820 i_size - endoff); in ceph_aio_complete_req()
1743 loff_t endoff = 0; in ceph_fallocate() local
1786 endoff = offset + length; in ceph_fallocate()
1787 ret = inode_newsize_ok(inode, endoff); in ceph_fallocate()
1797 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL); in ceph_fallocate()
[all …]
Dcaps.c2497 loff_t endoff, bool nonblock, int *got, int *err) in try_get_cap_refs() argument
2536 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) { in try_get_cap_refs()
2538 inode, endoff, ci->i_max_size); in try_get_cap_refs()
2539 if (endoff > ci->i_requested_max_size) { in try_get_cap_refs()
2651 static void check_max_size(struct inode *inode, loff_t endoff) in check_max_size() argument
2658 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) { in check_max_size()
2660 inode, endoff); in check_max_size()
2661 ci->i_wanted_max_size = endoff; in check_max_size()
2701 loff_t endoff, int *got, struct page **pinned_page) in ceph_get_caps() argument
2710 if (endoff > 0) in ceph_get_caps()
[all …]
Dsuper.h1009 loff_t endoff, int *got, struct page **pinned_page);
/Linux-v4.19/fs/xfs/
Dxfs_bmap_util.h33 int xfs_bmap_eof(struct xfs_inode *ip, xfs_fileoff_t endoff,
Dxfs_bmap_util.c194 xfs_fileoff_t endoff, in xfs_bmap_eof() argument
205 *eof = endoff >= rec.br_startoff + rec.br_blockcount; in xfs_bmap_eof()
/Linux-v4.19/fs/xfs/scrub/
Dbmap.c590 xfs_fileoff_t endoff; in xchk_bmap() local
663 error = xfs_bmap_last_offset(ip, &endoff, whichfork); in xchk_bmap()
676 if (irec.br_startoff >= endoff) { in xchk_bmap()
/Linux-v4.19/fs/btrfs/
Dioctl.c3652 u64 endoff, in clone_finish_inode_update() argument
3667 if (endoff > destoff + olen) in clone_finish_inode_update()
3668 endoff = destoff + olen; in clone_finish_inode_update()
3669 if (endoff > inode->i_size) in clone_finish_inode_update()
3670 btrfs_i_size_write(BTRFS_I(inode), endoff); in clone_finish_inode_update()
/Linux-v4.19/fs/fuse/
Dfile.c2001 size_t endoff = (pos + copied) & ~PAGE_MASK; in fuse_write_end() local
2002 if (endoff) in fuse_write_end()
2003 zero_user_segment(page, endoff, PAGE_SIZE); in fuse_write_end()