Lines Matching refs:fillable
107 blk64_t fillable, pblk, plen, x, y; in ext_falloc_helper() local
139 fillable = max_uninit_len - left_ext->e_len; in ext_falloc_helper()
141 fillable = max_init_len - left_ext->e_len; in ext_falloc_helper()
143 if (fillable > range_len) in ext_falloc_helper()
144 fillable = range_len; in ext_falloc_helper()
145 if (fillable == 0) in ext_falloc_helper()
158 if (cluster_fill > fillable) in ext_falloc_helper()
159 cluster_fill = fillable; in ext_falloc_helper()
204 fillable = max_uninit_len - right_ext->e_len; in ext_falloc_helper()
206 fillable = max_init_len - right_ext->e_len; in ext_falloc_helper()
208 if (fillable > range_len) in ext_falloc_helper()
209 fillable = range_len; in ext_falloc_helper()
210 if (fillable == 0) in ext_falloc_helper()
225 if (cluster_fill > fillable) in ext_falloc_helper()
226 cluster_fill = fillable; in ext_falloc_helper()
334 fillable = max_uninit_len - left_ext->e_len; in ext_falloc_helper()
336 fillable = max_init_len - left_ext->e_len; in ext_falloc_helper()
338 fillable = 0; in ext_falloc_helper()
347 if (fillable > range_len) in ext_falloc_helper()
348 fillable = range_len; in ext_falloc_helper()
354 __func__, x, x + fillable, eof_blk); in ext_falloc_helper()
355 if (eof_blk >= x && eof_blk <= x + fillable) in ext_falloc_helper()
356 fillable = eof_blk - x; in ext_falloc_helper()
359 if (fillable == 0) in ext_falloc_helper()
365 x + fillable, &pblk); in ext_falloc_helper()
369 fillable -= 1 + ((x + fillable) in ext_falloc_helper()
371 if (fillable == 0) in ext_falloc_helper()
379 x, fillable, NULL, &pblk, &plen); in ext_falloc_helper()
415 fillable = max_uninit_len - right_ext->e_len; in ext_falloc_helper()
417 fillable = max_init_len - right_ext->e_len; in ext_falloc_helper()
419 fillable = 0; in ext_falloc_helper()
428 if (fillable > range_len) in ext_falloc_helper()
429 fillable = range_len; in ext_falloc_helper()
430 if (fillable == 0) in ext_falloc_helper()
436 right_ext->e_lblk - fillable, &pblk); in ext_falloc_helper()
440 fillable -= EXT2FS_CLUSTER_RATIO(fs) - in ext_falloc_helper()
441 ((right_ext->e_lblk - fillable) in ext_falloc_helper()
443 if (fillable == 0) in ext_falloc_helper()
455 right_ext->e_pblk - fillable, in ext_falloc_helper()
456 fillable, NULL, &pblk, &plen); in ext_falloc_helper()
612 fillable = min(range_len + cluster_fill, max_extent_len); in ext_falloc_helper()
614 fillable, in ext_falloc_helper()