Lines Matching refs:bytes
804 loff_t bytes, max_bytes, max_blks = UINT_MAX; in __gfs2_fallocate() local
817 bytes = sdp->sd_max_rg_data * sdp->sd_sb.sb_bsize / 2; in __gfs2_fallocate()
818 if (!bytes) in __gfs2_fallocate()
819 bytes = UINT_MAX; in __gfs2_fallocate()
820 bytes &= bsize_mask; in __gfs2_fallocate()
821 if (bytes == 0) in __gfs2_fallocate()
822 bytes = sdp->sd_sb.sb_bsize; in __gfs2_fallocate()
830 if (len < bytes) in __gfs2_fallocate()
831 bytes = len; in __gfs2_fallocate()
832 if (!gfs2_write_alloc_required(ip, offset, bytes)) { in __gfs2_fallocate()
833 len -= bytes; in __gfs2_fallocate()
834 offset += bytes; in __gfs2_fallocate()
848 gfs2_write_calc_reserv(ip, bytes, &data_blocks, &ind_blocks); in __gfs2_fallocate()