Lines Matching defs:alen
3969 xfs_extlen_t alen;
3978 alen = XFS_FILBLKS_MIN(len + prealloc, XFS_MAX_BMBT_EXTLEN);
3980 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
3981 if (prealloc && alen >= len)
3982 prealloc = alen - len;
3984 /* Figure out the extent size, adjust alen */
3993 1, 0, &aoff, &alen);
4002 error = xfs_quota_reserve_blkres(ip, alen);
4007 * Split changing sb for alen and indlen since they could be coming
4010 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4013 error = xfs_mod_fdblocks(mp, -((int64_t)alen), false);
4022 ip->i_delayed_blks += alen;
4023 xfs_mod_delalloc(ip->i_mount, alen + indlen);
4027 got->br_blockcount = alen;
4039 if (whichfork == XFS_COW_FORK && (prealloc || aoff < off || alen > len))
4045 xfs_mod_fdblocks(mp, alen, false);
4048 xfs_quota_unreserve_blkres(ip, alen);