Home
last modified time | relevance | path

Searched refs:start_fsb (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/fs/xfs/
Dxfs_iomap.c299 xfs_fileoff_t start_fsb; in xfs_iomap_eof_want_preallocate() local
321 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1))); in xfs_iomap_eof_want_preallocate()
325 error = xfs_bmapi_read(ip, start_fsb, count_fsb, imap, &imaps, in xfs_iomap_eof_want_preallocate()
333 start_fsb += imap[n].br_blockcount; in xfs_iomap_eof_want_preallocate()
368 xfs_fileoff_t start_fsb; in xfs_iomap_eof_prealloc_initial_size() local
390 start_fsb = XFS_B_TO_FSB(mp, offset); in xfs_iomap_eof_prealloc_initial_size()
391 if (start_fsb) in xfs_iomap_eof_prealloc_initial_size()
392 start_fsb--; in xfs_iomap_eof_prealloc_initial_size()
393 error = xfs_bmapi_read(ip, start_fsb, 1, imap, &imaps, XFS_BMAPI_ENTIRE); in xfs_iomap_eof_prealloc_initial_size()
Dxfs_bmap_util.h37 xfs_fileoff_t start_fsb, xfs_fileoff_t length);
Dxfs_aops.c908 xfs_fileoff_t start_fsb; in xfs_aops_discard_page() local
913 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); in xfs_aops_discard_page()
914 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1); in xfs_aops_discard_page()
1719 xfs_fileoff_t start_fsb; in xfs_vm_kill_delalloc_range() local
1723 start_fsb = XFS_B_TO_FSB(ip->i_mount, start); in xfs_vm_kill_delalloc_range()
1725 if (end_fsb <= start_fsb) in xfs_vm_kill_delalloc_range()
1729 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, in xfs_vm_kill_delalloc_range()
1730 end_fsb - start_fsb); in xfs_vm_kill_delalloc_range()
Dxfs_bmap_util.c69 xfs_fsblock_t start_fsb, in xfs_zero_extent() argument
73 xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb); in xfs_zero_extent()
754 xfs_fileoff_t start_fsb, in xfs_bmap_punch_delalloc_range() argument
775 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps, in xfs_bmap_punch_delalloc_range()
783 ip->i_ino, start_fsb); in xfs_bmap_punch_delalloc_range()
804 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock, in xfs_bmap_punch_delalloc_range()
811 start_fsb++; in xfs_bmap_punch_delalloc_range()
Dxfs_mount.h341 int xfs_zero_extent(struct xfs_inode *ip, xfs_fsblock_t start_fsb,