Home
last modified time | relevance | path

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

/linux-4.1.27/fs/xfs/
Dxfs_iomap.c261 xfs_fileoff_t start_fsb; in xfs_iomap_eof_want_preallocate() local
283 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1))); in xfs_iomap_eof_want_preallocate()
287 error = xfs_bmapi_read(ip, start_fsb, count_fsb, imap, &imaps, in xfs_iomap_eof_want_preallocate()
295 start_fsb += imap[n].br_blockcount; in xfs_iomap_eof_want_preallocate()
330 xfs_fileoff_t start_fsb; in xfs_iomap_eof_prealloc_initial_size() local
352 start_fsb = XFS_B_TO_FSB(mp, offset); in xfs_iomap_eof_prealloc_initial_size()
353 if (start_fsb) in xfs_iomap_eof_prealloc_initial_size()
354 start_fsb--; in xfs_iomap_eof_prealloc_initial_size()
355 error = xfs_bmapi_read(ip, start_fsb, 1, imap, &imaps, XFS_BMAPI_ENTIRE); in xfs_iomap_eof_prealloc_initial_size()
Dxfs_aops.c903 xfs_fileoff_t start_fsb; in xfs_aops_discard_page() local
908 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); in xfs_aops_discard_page()
909 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1); in xfs_aops_discard_page()
1642 xfs_fileoff_t start_fsb; in xfs_vm_kill_delalloc_range() local
1646 start_fsb = XFS_B_TO_FSB(ip->i_mount, start); in xfs_vm_kill_delalloc_range()
1648 if (end_fsb <= start_fsb) in xfs_vm_kill_delalloc_range()
1652 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, in xfs_vm_kill_delalloc_range()
1653 end_fsb - start_fsb); in xfs_vm_kill_delalloc_range()
Dxfs_bmap_util.h37 xfs_fileoff_t start_fsb, xfs_fileoff_t length);
Dxfs_bmap_util.c728 xfs_fileoff_t start_fsb, in xfs_bmap_punch_delalloc_range() argument
749 error = xfs_bmapi_read(ip, start_fsb, 1, &imap, &nimaps, in xfs_bmap_punch_delalloc_range()
757 ip->i_ino, start_fsb); in xfs_bmap_punch_delalloc_range()
778 error = xfs_bunmapi(NULL, ip, start_fsb, 1, 0, 1, &firstblock, in xfs_bmap_punch_delalloc_range()
785 start_fsb++; in xfs_bmap_punch_delalloc_range()