PageRenderTime 51ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/fs/ext4/balloc.c

https://github.com/mstsirkin/linux
C | 670 lines | 423 code | 76 blank | 171 comment | 76 complexity | 33271969815c5edb9fad7e6d26a73c9f MD5 | raw file
  1. /*
  2. * linux/fs/ext4/balloc.c
  3. *
  4. * Copyright (C) 1992, 1993, 1994, 1995
  5. * Remy Card (card@masi.ibp.fr)
  6. * Laboratoire MASI - Institut Blaise Pascal
  7. * Universite Pierre et Marie Curie (Paris VI)
  8. *
  9. * Enhanced block allocation by Stephen Tweedie (sct@redhat.com), 1993
  10. * Big-endian to little-endian byte-swapping/bitmaps by
  11. * David S. Miller (davem@caip.rutgers.edu), 1995
  12. */
  13. #include <linux/time.h>
  14. #include <linux/capability.h>
  15. #include <linux/fs.h>
  16. #include <linux/jbd2.h>
  17. #include <linux/quotaops.h>
  18. #include <linux/buffer_head.h>
  19. #include "ext4.h"
  20. #include "ext4_jbd2.h"
  21. #include "mballoc.h"
  22. #include <trace/events/ext4.h>
  23. /*
  24. * balloc.c contains the blocks allocation and deallocation routines
  25. */
  26. /*
  27. * Calculate the block group number and offset, given a block number
  28. */
  29. void ext4_get_group_no_and_offset(struct super_block *sb, ext4_fsblk_t blocknr,
  30. ext4_group_t *blockgrpp, ext4_grpblk_t *offsetp)
  31. {
  32. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  33. ext4_grpblk_t offset;
  34. blocknr = blocknr - le32_to_cpu(es->s_first_data_block);
  35. offset = do_div(blocknr, EXT4_BLOCKS_PER_GROUP(sb));
  36. if (offsetp)
  37. *offsetp = offset;
  38. if (blockgrpp)
  39. *blockgrpp = blocknr;
  40. }
  41. static int ext4_block_in_group(struct super_block *sb, ext4_fsblk_t block,
  42. ext4_group_t block_group)
  43. {
  44. ext4_group_t actual_group;
  45. ext4_get_group_no_and_offset(sb, block, &actual_group, NULL);
  46. if (actual_group == block_group)
  47. return 1;
  48. return 0;
  49. }
  50. static int ext4_group_used_meta_blocks(struct super_block *sb,
  51. ext4_group_t block_group,
  52. struct ext4_group_desc *gdp)
  53. {
  54. ext4_fsblk_t tmp;
  55. struct ext4_sb_info *sbi = EXT4_SB(sb);
  56. /* block bitmap, inode bitmap, and inode table blocks */
  57. int used_blocks = sbi->s_itb_per_group + 2;
  58. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
  59. if (!ext4_block_in_group(sb, ext4_block_bitmap(sb, gdp),
  60. block_group))
  61. used_blocks--;
  62. if (!ext4_block_in_group(sb, ext4_inode_bitmap(sb, gdp),
  63. block_group))
  64. used_blocks--;
  65. tmp = ext4_inode_table(sb, gdp);
  66. for (; tmp < ext4_inode_table(sb, gdp) +
  67. sbi->s_itb_per_group; tmp++) {
  68. if (!ext4_block_in_group(sb, tmp, block_group))
  69. used_blocks -= 1;
  70. }
  71. }
  72. return used_blocks;
  73. }
  74. /* Initializes an uninitialized block bitmap if given, and returns the
  75. * number of blocks free in the group. */
  76. unsigned ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh,
  77. ext4_group_t block_group, struct ext4_group_desc *gdp)
  78. {
  79. int bit, bit_max;
  80. ext4_group_t ngroups = ext4_get_groups_count(sb);
  81. unsigned free_blocks, group_blocks;
  82. struct ext4_sb_info *sbi = EXT4_SB(sb);
  83. if (bh) {
  84. J_ASSERT_BH(bh, buffer_locked(bh));
  85. /* If checksum is bad mark all blocks used to prevent allocation
  86. * essentially implementing a per-group read-only flag. */
  87. if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
  88. ext4_error(sb, "Checksum bad for group %u",
  89. block_group);
  90. ext4_free_blks_set(sb, gdp, 0);
  91. ext4_free_inodes_set(sb, gdp, 0);
  92. ext4_itable_unused_set(sb, gdp, 0);
  93. memset(bh->b_data, 0xff, sb->s_blocksize);
  94. return 0;
  95. }
  96. memset(bh->b_data, 0, sb->s_blocksize);
  97. }
  98. /* Check for superblock and gdt backups in this group */
  99. bit_max = ext4_bg_has_super(sb, block_group);
  100. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
  101. block_group < le32_to_cpu(sbi->s_es->s_first_meta_bg) *
  102. sbi->s_desc_per_block) {
  103. if (bit_max) {
  104. bit_max += ext4_bg_num_gdb(sb, block_group);
  105. bit_max +=
  106. le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks);
  107. }
  108. } else { /* For META_BG_BLOCK_GROUPS */
  109. bit_max += ext4_bg_num_gdb(sb, block_group);
  110. }
  111. if (block_group == ngroups - 1) {
  112. /*
  113. * Even though mke2fs always initialize first and last group
  114. * if some other tool enabled the EXT4_BG_BLOCK_UNINIT we need
  115. * to make sure we calculate the right free blocks
  116. */
  117. group_blocks = ext4_blocks_count(sbi->s_es) -
  118. ext4_group_first_block_no(sb, ngroups - 1);
  119. } else {
  120. group_blocks = EXT4_BLOCKS_PER_GROUP(sb);
  121. }
  122. free_blocks = group_blocks - bit_max;
  123. if (bh) {
  124. ext4_fsblk_t start, tmp;
  125. int flex_bg = 0;
  126. for (bit = 0; bit < bit_max; bit++)
  127. ext4_set_bit(bit, bh->b_data);
  128. start = ext4_group_first_block_no(sb, block_group);
  129. if (EXT4_HAS_INCOMPAT_FEATURE(sb,
  130. EXT4_FEATURE_INCOMPAT_FLEX_BG))
  131. flex_bg = 1;
  132. /* Set bits for block and inode bitmaps, and inode table */
  133. tmp = ext4_block_bitmap(sb, gdp);
  134. if (!flex_bg || ext4_block_in_group(sb, tmp, block_group))
  135. ext4_set_bit(tmp - start, bh->b_data);
  136. tmp = ext4_inode_bitmap(sb, gdp);
  137. if (!flex_bg || ext4_block_in_group(sb, tmp, block_group))
  138. ext4_set_bit(tmp - start, bh->b_data);
  139. tmp = ext4_inode_table(sb, gdp);
  140. for (; tmp < ext4_inode_table(sb, gdp) +
  141. sbi->s_itb_per_group; tmp++) {
  142. if (!flex_bg ||
  143. ext4_block_in_group(sb, tmp, block_group))
  144. ext4_set_bit(tmp - start, bh->b_data);
  145. }
  146. /*
  147. * Also if the number of blocks within the group is
  148. * less than the blocksize * 8 ( which is the size
  149. * of bitmap ), set rest of the block bitmap to 1
  150. */
  151. ext4_mark_bitmap_end(group_blocks, sb->s_blocksize * 8,
  152. bh->b_data);
  153. }
  154. return free_blocks - ext4_group_used_meta_blocks(sb, block_group, gdp);
  155. }
  156. /*
  157. * The free blocks are managed by bitmaps. A file system contains several
  158. * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
  159. * block for inodes, N blocks for the inode table and data blocks.
  160. *
  161. * The file system contains group descriptors which are located after the
  162. * super block. Each descriptor contains the number of the bitmap block and
  163. * the free blocks count in the block. The descriptors are loaded in memory
  164. * when a file system is mounted (see ext4_fill_super).
  165. */
  166. /**
  167. * ext4_get_group_desc() -- load group descriptor from disk
  168. * @sb: super block
  169. * @block_group: given block group
  170. * @bh: pointer to the buffer head to store the block
  171. * group descriptor
  172. */
  173. struct ext4_group_desc * ext4_get_group_desc(struct super_block *sb,
  174. ext4_group_t block_group,
  175. struct buffer_head **bh)
  176. {
  177. unsigned int group_desc;
  178. unsigned int offset;
  179. ext4_group_t ngroups = ext4_get_groups_count(sb);
  180. struct ext4_group_desc *desc;
  181. struct ext4_sb_info *sbi = EXT4_SB(sb);
  182. if (block_group >= ngroups) {
  183. ext4_error(sb, "block_group >= groups_count - block_group = %u,"
  184. " groups_count = %u", block_group, ngroups);
  185. return NULL;
  186. }
  187. group_desc = block_group >> EXT4_DESC_PER_BLOCK_BITS(sb);
  188. offset = block_group & (EXT4_DESC_PER_BLOCK(sb) - 1);
  189. if (!sbi->s_group_desc[group_desc]) {
  190. ext4_error(sb, "Group descriptor not loaded - "
  191. "block_group = %u, group_desc = %u, desc = %u",
  192. block_group, group_desc, offset);
  193. return NULL;
  194. }
  195. desc = (struct ext4_group_desc *)(
  196. (__u8 *)sbi->s_group_desc[group_desc]->b_data +
  197. offset * EXT4_DESC_SIZE(sb));
  198. if (bh)
  199. *bh = sbi->s_group_desc[group_desc];
  200. return desc;
  201. }
  202. static int ext4_valid_block_bitmap(struct super_block *sb,
  203. struct ext4_group_desc *desc,
  204. unsigned int block_group,
  205. struct buffer_head *bh)
  206. {
  207. ext4_grpblk_t offset;
  208. ext4_grpblk_t next_zero_bit;
  209. ext4_fsblk_t bitmap_blk;
  210. ext4_fsblk_t group_first_block;
  211. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
  212. /* with FLEX_BG, the inode/block bitmaps and itable
  213. * blocks may not be in the group at all
  214. * so the bitmap validation will be skipped for those groups
  215. * or it has to also read the block group where the bitmaps
  216. * are located to verify they are set.
  217. */
  218. return 1;
  219. }
  220. group_first_block = ext4_group_first_block_no(sb, block_group);
  221. /* check whether block bitmap block number is set */
  222. bitmap_blk = ext4_block_bitmap(sb, desc);
  223. offset = bitmap_blk - group_first_block;
  224. if (!ext4_test_bit(offset, bh->b_data))
  225. /* bad block bitmap */
  226. goto err_out;
  227. /* check whether the inode bitmap block number is set */
  228. bitmap_blk = ext4_inode_bitmap(sb, desc);
  229. offset = bitmap_blk - group_first_block;
  230. if (!ext4_test_bit(offset, bh->b_data))
  231. /* bad block bitmap */
  232. goto err_out;
  233. /* check whether the inode table block number is set */
  234. bitmap_blk = ext4_inode_table(sb, desc);
  235. offset = bitmap_blk - group_first_block;
  236. next_zero_bit = ext4_find_next_zero_bit(bh->b_data,
  237. offset + EXT4_SB(sb)->s_itb_per_group,
  238. offset);
  239. if (next_zero_bit >= offset + EXT4_SB(sb)->s_itb_per_group)
  240. /* good bitmap for inode tables */
  241. return 1;
  242. err_out:
  243. ext4_error(sb, "Invalid block bitmap - block_group = %d, block = %llu",
  244. block_group, bitmap_blk);
  245. return 0;
  246. }
  247. /**
  248. * ext4_read_block_bitmap()
  249. * @sb: super block
  250. * @block_group: given block group
  251. *
  252. * Read the bitmap for a given block_group,and validate the
  253. * bits for block/inode/inode tables are set in the bitmaps
  254. *
  255. * Return buffer_head on success or NULL in case of failure.
  256. */
  257. struct buffer_head *
  258. ext4_read_block_bitmap(struct super_block *sb, ext4_group_t block_group)
  259. {
  260. struct ext4_group_desc *desc;
  261. struct buffer_head *bh = NULL;
  262. ext4_fsblk_t bitmap_blk;
  263. desc = ext4_get_group_desc(sb, block_group, NULL);
  264. if (!desc)
  265. return NULL;
  266. bitmap_blk = ext4_block_bitmap(sb, desc);
  267. bh = sb_getblk(sb, bitmap_blk);
  268. if (unlikely(!bh)) {
  269. ext4_error(sb, "Cannot read block bitmap - "
  270. "block_group = %u, block_bitmap = %llu",
  271. block_group, bitmap_blk);
  272. return NULL;
  273. }
  274. if (bitmap_uptodate(bh))
  275. return bh;
  276. lock_buffer(bh);
  277. if (bitmap_uptodate(bh)) {
  278. unlock_buffer(bh);
  279. return bh;
  280. }
  281. ext4_lock_group(sb, block_group);
  282. if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
  283. ext4_init_block_bitmap(sb, bh, block_group, desc);
  284. set_bitmap_uptodate(bh);
  285. set_buffer_uptodate(bh);
  286. ext4_unlock_group(sb, block_group);
  287. unlock_buffer(bh);
  288. return bh;
  289. }
  290. ext4_unlock_group(sb, block_group);
  291. if (buffer_uptodate(bh)) {
  292. /*
  293. * if not uninit if bh is uptodate,
  294. * bitmap is also uptodate
  295. */
  296. set_bitmap_uptodate(bh);
  297. unlock_buffer(bh);
  298. return bh;
  299. }
  300. /*
  301. * submit the buffer_head for read. We can
  302. * safely mark the bitmap as uptodate now.
  303. * We do it here so the bitmap uptodate bit
  304. * get set with buffer lock held.
  305. */
  306. trace_ext4_read_block_bitmap_load(sb, block_group);
  307. set_bitmap_uptodate(bh);
  308. if (bh_submit_read(bh) < 0) {
  309. put_bh(bh);
  310. ext4_error(sb, "Cannot read block bitmap - "
  311. "block_group = %u, block_bitmap = %llu",
  312. block_group, bitmap_blk);
  313. return NULL;
  314. }
  315. ext4_valid_block_bitmap(sb, desc, block_group, bh);
  316. /*
  317. * file system mounted not to panic on error,
  318. * continue with corrupt bitmap
  319. */
  320. return bh;
  321. }
  322. /**
  323. * ext4_has_free_blocks()
  324. * @sbi: in-core super block structure.
  325. * @nblocks: number of needed blocks
  326. *
  327. * Check if filesystem has nblocks free & available for allocation.
  328. * On success return 1, return 0 on failure.
  329. */
  330. static int ext4_has_free_blocks(struct ext4_sb_info *sbi,
  331. s64 nblocks, unsigned int flags)
  332. {
  333. s64 free_blocks, dirty_blocks, root_blocks;
  334. struct percpu_counter *fbc = &sbi->s_freeblocks_counter;
  335. struct percpu_counter *dbc = &sbi->s_dirtyblocks_counter;
  336. free_blocks = percpu_counter_read_positive(fbc);
  337. dirty_blocks = percpu_counter_read_positive(dbc);
  338. root_blocks = ext4_r_blocks_count(sbi->s_es);
  339. if (free_blocks - (nblocks + root_blocks + dirty_blocks) <
  340. EXT4_FREEBLOCKS_WATERMARK) {
  341. free_blocks = percpu_counter_sum_positive(fbc);
  342. dirty_blocks = percpu_counter_sum_positive(dbc);
  343. }
  344. /* Check whether we have space after
  345. * accounting for current dirty blocks & root reserved blocks.
  346. */
  347. if (free_blocks >= ((root_blocks + nblocks) + dirty_blocks))
  348. return 1;
  349. /* Hm, nope. Are (enough) root reserved blocks available? */
  350. if (sbi->s_resuid == current_fsuid() ||
  351. ((sbi->s_resgid != 0) && in_group_p(sbi->s_resgid)) ||
  352. capable(CAP_SYS_RESOURCE) ||
  353. (flags & EXT4_MB_USE_ROOT_BLOCKS)) {
  354. if (free_blocks >= (nblocks + dirty_blocks))
  355. return 1;
  356. }
  357. return 0;
  358. }
  359. int ext4_claim_free_blocks(struct ext4_sb_info *sbi,
  360. s64 nblocks, unsigned int flags)
  361. {
  362. if (ext4_has_free_blocks(sbi, nblocks, flags)) {
  363. percpu_counter_add(&sbi->s_dirtyblocks_counter, nblocks);
  364. return 0;
  365. } else
  366. return -ENOSPC;
  367. }
  368. /**
  369. * ext4_should_retry_alloc()
  370. * @sb: super block
  371. * @retries number of attemps has been made
  372. *
  373. * ext4_should_retry_alloc() is called when ENOSPC is returned, and if
  374. * it is profitable to retry the operation, this function will wait
  375. * for the current or committing transaction to complete, and then
  376. * return TRUE.
  377. *
  378. * if the total number of retries exceed three times, return FALSE.
  379. */
  380. int ext4_should_retry_alloc(struct super_block *sb, int *retries)
  381. {
  382. if (!ext4_has_free_blocks(EXT4_SB(sb), 1, 0) ||
  383. (*retries)++ > 3 ||
  384. !EXT4_SB(sb)->s_journal)
  385. return 0;
  386. jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
  387. return jbd2_journal_force_commit_nested(EXT4_SB(sb)->s_journal);
  388. }
  389. /*
  390. * ext4_new_meta_blocks() -- allocate block for meta data (indexing) blocks
  391. *
  392. * @handle: handle to this transaction
  393. * @inode: file inode
  394. * @goal: given target block(filesystem wide)
  395. * @count: pointer to total number of blocks needed
  396. * @errp: error code
  397. *
  398. * Return 1st allocated block number on success, *count stores total account
  399. * error stores in errp pointer
  400. */
  401. ext4_fsblk_t ext4_new_meta_blocks(handle_t *handle, struct inode *inode,
  402. ext4_fsblk_t goal, unsigned int flags,
  403. unsigned long *count, int *errp)
  404. {
  405. struct ext4_allocation_request ar;
  406. ext4_fsblk_t ret;
  407. memset(&ar, 0, sizeof(ar));
  408. /* Fill with neighbour allocated blocks */
  409. ar.inode = inode;
  410. ar.goal = goal;
  411. ar.len = count ? *count : 1;
  412. ar.flags = flags;
  413. ret = ext4_mb_new_blocks(handle, &ar, errp);
  414. if (count)
  415. *count = ar.len;
  416. /*
  417. * Account for the allocated meta blocks. We will never
  418. * fail EDQUOT for metdata, but we do account for it.
  419. */
  420. if (!(*errp) &&
  421. ext4_test_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED)) {
  422. spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
  423. EXT4_I(inode)->i_allocated_meta_blocks += ar.len;
  424. spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
  425. dquot_alloc_block_nofail(inode, ar.len);
  426. }
  427. return ret;
  428. }
  429. /**
  430. * ext4_count_free_blocks() -- count filesystem free blocks
  431. * @sb: superblock
  432. *
  433. * Adds up the number of free blocks from each block group.
  434. */
  435. ext4_fsblk_t ext4_count_free_blocks(struct super_block *sb)
  436. {
  437. ext4_fsblk_t desc_count;
  438. struct ext4_group_desc *gdp;
  439. ext4_group_t i;
  440. ext4_group_t ngroups = ext4_get_groups_count(sb);
  441. #ifdef EXT4FS_DEBUG
  442. struct ext4_super_block *es;
  443. ext4_fsblk_t bitmap_count;
  444. unsigned int x;
  445. struct buffer_head *bitmap_bh = NULL;
  446. es = EXT4_SB(sb)->s_es;
  447. desc_count = 0;
  448. bitmap_count = 0;
  449. gdp = NULL;
  450. for (i = 0; i < ngroups; i++) {
  451. gdp = ext4_get_group_desc(sb, i, NULL);
  452. if (!gdp)
  453. continue;
  454. desc_count += ext4_free_blks_count(sb, gdp);
  455. brelse(bitmap_bh);
  456. bitmap_bh = ext4_read_block_bitmap(sb, i);
  457. if (bitmap_bh == NULL)
  458. continue;
  459. x = ext4_count_free(bitmap_bh, sb->s_blocksize);
  460. printk(KERN_DEBUG "group %u: stored = %d, counted = %u\n",
  461. i, ext4_free_blks_count(sb, gdp), x);
  462. bitmap_count += x;
  463. }
  464. brelse(bitmap_bh);
  465. printk(KERN_DEBUG "ext4_count_free_blocks: stored = %llu"
  466. ", computed = %llu, %llu\n", ext4_free_blocks_count(es),
  467. desc_count, bitmap_count);
  468. return bitmap_count;
  469. #else
  470. desc_count = 0;
  471. for (i = 0; i < ngroups; i++) {
  472. gdp = ext4_get_group_desc(sb, i, NULL);
  473. if (!gdp)
  474. continue;
  475. desc_count += ext4_free_blks_count(sb, gdp);
  476. }
  477. return desc_count;
  478. #endif
  479. }
  480. static inline int test_root(ext4_group_t a, int b)
  481. {
  482. int num = b;
  483. while (a > num)
  484. num *= b;
  485. return num == a;
  486. }
  487. static int ext4_group_sparse(ext4_group_t group)
  488. {
  489. if (group <= 1)
  490. return 1;
  491. if (!(group & 1))
  492. return 0;
  493. return (test_root(group, 7) || test_root(group, 5) ||
  494. test_root(group, 3));
  495. }
  496. /**
  497. * ext4_bg_has_super - number of blocks used by the superblock in group
  498. * @sb: superblock for filesystem
  499. * @group: group number to check
  500. *
  501. * Return the number of blocks used by the superblock (primary or backup)
  502. * in this group. Currently this will be only 0 or 1.
  503. */
  504. int ext4_bg_has_super(struct super_block *sb, ext4_group_t group)
  505. {
  506. if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
  507. EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
  508. !ext4_group_sparse(group))
  509. return 0;
  510. return 1;
  511. }
  512. static unsigned long ext4_bg_num_gdb_meta(struct super_block *sb,
  513. ext4_group_t group)
  514. {
  515. unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb);
  516. ext4_group_t first = metagroup * EXT4_DESC_PER_BLOCK(sb);
  517. ext4_group_t last = first + EXT4_DESC_PER_BLOCK(sb) - 1;
  518. if (group == first || group == first + 1 || group == last)
  519. return 1;
  520. return 0;
  521. }
  522. static unsigned long ext4_bg_num_gdb_nometa(struct super_block *sb,
  523. ext4_group_t group)
  524. {
  525. if (!ext4_bg_has_super(sb, group))
  526. return 0;
  527. if (EXT4_HAS_INCOMPAT_FEATURE(sb,EXT4_FEATURE_INCOMPAT_META_BG))
  528. return le32_to_cpu(EXT4_SB(sb)->s_es->s_first_meta_bg);
  529. else
  530. return EXT4_SB(sb)->s_gdb_count;
  531. }
  532. /**
  533. * ext4_bg_num_gdb - number of blocks used by the group table in group
  534. * @sb: superblock for filesystem
  535. * @group: group number to check
  536. *
  537. * Return the number of blocks used by the group descriptor table
  538. * (primary or backup) in this group. In the future there may be a
  539. * different number of descriptor blocks in each group.
  540. */
  541. unsigned long ext4_bg_num_gdb(struct super_block *sb, ext4_group_t group)
  542. {
  543. unsigned long first_meta_bg =
  544. le32_to_cpu(EXT4_SB(sb)->s_es->s_first_meta_bg);
  545. unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb);
  546. if (!EXT4_HAS_INCOMPAT_FEATURE(sb,EXT4_FEATURE_INCOMPAT_META_BG) ||
  547. metagroup < first_meta_bg)
  548. return ext4_bg_num_gdb_nometa(sb, group);
  549. return ext4_bg_num_gdb_meta(sb,group);
  550. }
  551. /**
  552. * ext4_inode_to_goal_block - return a hint for block allocation
  553. * @inode: inode for block allocation
  554. *
  555. * Return the ideal location to start allocating blocks for a
  556. * newly created inode.
  557. */
  558. ext4_fsblk_t ext4_inode_to_goal_block(struct inode *inode)
  559. {
  560. struct ext4_inode_info *ei = EXT4_I(inode);
  561. ext4_group_t block_group;
  562. ext4_grpblk_t colour;
  563. int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb));
  564. ext4_fsblk_t bg_start;
  565. ext4_fsblk_t last_block;
  566. block_group = ei->i_block_group;
  567. if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) {
  568. /*
  569. * If there are at least EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME
  570. * block groups per flexgroup, reserve the first block
  571. * group for directories and special files. Regular
  572. * files will start at the second block group. This
  573. * tends to speed up directory access and improves
  574. * fsck times.
  575. */
  576. block_group &= ~(flex_size-1);
  577. if (S_ISREG(inode->i_mode))
  578. block_group++;
  579. }
  580. bg_start = ext4_group_first_block_no(inode->i_sb, block_group);
  581. last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
  582. /*
  583. * If we are doing delayed allocation, we don't need take
  584. * colour into account.
  585. */
  586. if (test_opt(inode->i_sb, DELALLOC))
  587. return bg_start;
  588. if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
  589. colour = (current->pid % 16) *
  590. (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
  591. else
  592. colour = (current->pid % 16) * ((last_block - bg_start) / 16);
  593. return bg_start + colour;
  594. }