blob: 902bf66c8dfb0f1ea48deb1fdb936952edfd346a [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/balloc.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
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
14#include <linux/time.h>
15#include <linux/capability.h>
16#include <linux/fs.h>
Mingming Caodab291a2006-10-11 01:21:01 -070017#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070018#include <linux/quotaops.h>
19#include <linux/buffer_head.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040020#include "ext4.h"
21#include "ext4_jbd2.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040022#include "group.h"
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -050023#include "mballoc.h"
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040024
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025/*
26 * balloc.c contains the blocks allocation and deallocation routines
27 */
28
29/*
Andrew Morton72b64b52006-10-11 01:21:18 -070030 * Calculate the block group number and offset, given a block number
31 */
32void ext4_get_group_no_and_offset(struct super_block *sb, ext4_fsblk_t blocknr,
Avantika Mathurfd2d4292008-01-28 23:58:27 -050033 ext4_group_t *blockgrpp, ext4_grpblk_t *offsetp)
Andrew Morton72b64b52006-10-11 01:21:18 -070034{
Dave Kleikamp8c55e202007-05-24 13:04:54 -040035 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Andrew Morton72b64b52006-10-11 01:21:18 -070036 ext4_grpblk_t offset;
37
Dave Kleikamp8c55e202007-05-24 13:04:54 -040038 blocknr = blocknr - le32_to_cpu(es->s_first_data_block);
Andrew Mortonf4e5bc22006-10-11 01:21:19 -070039 offset = do_div(blocknr, EXT4_BLOCKS_PER_GROUP(sb));
Andrew Morton72b64b52006-10-11 01:21:18 -070040 if (offsetp)
41 *offsetp = offset;
42 if (blockgrpp)
Dave Kleikamp8c55e202007-05-24 13:04:54 -040043 *blockgrpp = blocknr;
Andrew Morton72b64b52006-10-11 01:21:18 -070044
45}
46
Jose R. Santos0bf7e832008-06-03 14:07:29 -040047static int ext4_block_in_group(struct super_block *sb, ext4_fsblk_t block,
48 ext4_group_t block_group)
49{
50 ext4_group_t actual_group;
Aneesh Kumar K.V74778272008-07-11 19:27:31 -040051 ext4_get_group_no_and_offset(sb, block, &actual_group, NULL);
Jose R. Santos0bf7e832008-06-03 14:07:29 -040052 if (actual_group == block_group)
53 return 1;
54 return 0;
55}
56
57static int ext4_group_used_meta_blocks(struct super_block *sb,
58 ext4_group_t block_group)
59{
60 ext4_fsblk_t tmp;
61 struct ext4_sb_info *sbi = EXT4_SB(sb);
62 /* block bitmap, inode bitmap, and inode table blocks */
63 int used_blocks = sbi->s_itb_per_group + 2;
64
65 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
66 struct ext4_group_desc *gdp;
67 struct buffer_head *bh;
68
69 gdp = ext4_get_group_desc(sb, block_group, &bh);
70 if (!ext4_block_in_group(sb, ext4_block_bitmap(sb, gdp),
71 block_group))
72 used_blocks--;
73
74 if (!ext4_block_in_group(sb, ext4_inode_bitmap(sb, gdp),
75 block_group))
76 used_blocks--;
77
78 tmp = ext4_inode_table(sb, gdp);
79 for (; tmp < ext4_inode_table(sb, gdp) +
80 sbi->s_itb_per_group; tmp++) {
81 if (!ext4_block_in_group(sb, tmp, block_group))
82 used_blocks -= 1;
83 }
84 }
85 return used_blocks;
86}
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -040087
Andreas Dilger717d50e2007-10-16 18:38:25 -040088/* Initializes an uninitialized block bitmap if given, and returns the
89 * number of blocks free in the group. */
90unsigned ext4_init_block_bitmap(struct super_block *sb, struct buffer_head *bh,
Avantika Mathurfd2d4292008-01-28 23:58:27 -050091 ext4_group_t block_group, struct ext4_group_desc *gdp)
Andreas Dilger717d50e2007-10-16 18:38:25 -040092{
Andreas Dilger717d50e2007-10-16 18:38:25 -040093 int bit, bit_max;
94 unsigned free_blocks, group_blocks;
95 struct ext4_sb_info *sbi = EXT4_SB(sb);
96
97 if (bh) {
98 J_ASSERT_BH(bh, buffer_locked(bh));
99
100 /* If checksum is bad mark all blocks used to prevent allocation
101 * essentially implementing a per-group read-only flag. */
102 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400103 ext4_error(sb, __func__,
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500104 "Checksum bad for group %u", block_group);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500105 ext4_free_blks_set(sb, gdp, 0);
106 ext4_free_inodes_set(sb, gdp, 0);
107 ext4_itable_unused_set(sb, gdp, 0);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400108 memset(bh->b_data, 0xff, sb->s_blocksize);
109 return 0;
110 }
111 memset(bh->b_data, 0, sb->s_blocksize);
112 }
113
114 /* Check for superblock and gdt backups in this group */
115 bit_max = ext4_bg_has_super(sb, block_group);
116
117 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
118 block_group < le32_to_cpu(sbi->s_es->s_first_meta_bg) *
119 sbi->s_desc_per_block) {
120 if (bit_max) {
121 bit_max += ext4_bg_num_gdb(sb, block_group);
122 bit_max +=
123 le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks);
124 }
125 } else { /* For META_BG_BLOCK_GROUPS */
Akinobu Mita6afd6702008-07-11 19:27:31 -0400126 bit_max += ext4_bg_num_gdb(sb, block_group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400127 }
128
129 if (block_group == sbi->s_groups_count - 1) {
130 /*
131 * Even though mke2fs always initialize first and last group
132 * if some other tool enabled the EXT4_BG_BLOCK_UNINIT we need
133 * to make sure we calculate the right free blocks
134 */
135 group_blocks = ext4_blocks_count(sbi->s_es) -
136 le32_to_cpu(sbi->s_es->s_first_data_block) -
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400137 (EXT4_BLOCKS_PER_GROUP(sb) * (sbi->s_groups_count - 1));
Andreas Dilger717d50e2007-10-16 18:38:25 -0400138 } else {
139 group_blocks = EXT4_BLOCKS_PER_GROUP(sb);
140 }
141
142 free_blocks = group_blocks - bit_max;
143
144 if (bh) {
Jose R. Santos0bf7e832008-06-03 14:07:29 -0400145 ext4_fsblk_t start, tmp;
146 int flex_bg = 0;
Akinobu Mitad00a6d72008-04-17 10:38:59 -0400147
Andreas Dilger717d50e2007-10-16 18:38:25 -0400148 for (bit = 0; bit < bit_max; bit++)
149 ext4_set_bit(bit, bh->b_data);
150
Akinobu Mitad00a6d72008-04-17 10:38:59 -0400151 start = ext4_group_first_block_no(sb, block_group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400152
Jose R. Santos0bf7e832008-06-03 14:07:29 -0400153 if (EXT4_HAS_INCOMPAT_FEATURE(sb,
154 EXT4_FEATURE_INCOMPAT_FLEX_BG))
155 flex_bg = 1;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400156
Jose R. Santos0bf7e832008-06-03 14:07:29 -0400157 /* Set bits for block and inode bitmaps, and inode table */
158 tmp = ext4_block_bitmap(sb, gdp);
159 if (!flex_bg || ext4_block_in_group(sb, tmp, block_group))
160 ext4_set_bit(tmp - start, bh->b_data);
161
162 tmp = ext4_inode_bitmap(sb, gdp);
163 if (!flex_bg || ext4_block_in_group(sb, tmp, block_group))
164 ext4_set_bit(tmp - start, bh->b_data);
165
166 tmp = ext4_inode_table(sb, gdp);
167 for (; tmp < ext4_inode_table(sb, gdp) +
168 sbi->s_itb_per_group; tmp++) {
169 if (!flex_bg ||
170 ext4_block_in_group(sb, tmp, block_group))
171 ext4_set_bit(tmp - start, bh->b_data);
172 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400173 /*
174 * Also if the number of blocks within the group is
175 * less than the blocksize * 8 ( which is the size
176 * of bitmap ), set rest of the block bitmap to 1
177 */
178 mark_bitmap_end(group_blocks, sb->s_blocksize * 8, bh->b_data);
179 }
Jose R. Santos0bf7e832008-06-03 14:07:29 -0400180 return free_blocks - ext4_group_used_meta_blocks(sb, block_group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400181}
182
183
Andrew Morton72b64b52006-10-11 01:21:18 -0700184/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185 * The free blocks are managed by bitmaps. A file system contains several
186 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
187 * block for inodes, N blocks for the inode table and data blocks.
188 *
189 * The file system contains group descriptors which are located after the
190 * super block. Each descriptor contains the number of the bitmap block and
191 * the free blocks count in the block. The descriptors are loaded in memory
Aneesh Kumar K.Ve6274322007-02-20 13:57:58 -0800192 * when a file system is mounted (see ext4_fill_super).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193 */
194
195
196#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
197
198/**
Mingming Cao617ba132006-10-11 01:20:53 -0700199 * ext4_get_group_desc() -- load group descriptor from disk
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700200 * @sb: super block
201 * @block_group: given block group
202 * @bh: pointer to the buffer head to store the block
203 * group descriptor
204 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400205struct ext4_group_desc * ext4_get_group_desc(struct super_block *sb,
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500206 ext4_group_t block_group,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400207 struct buffer_head **bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208{
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500209 unsigned int group_desc;
210 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400211 struct ext4_group_desc *desc;
Mingming Cao617ba132006-10-11 01:20:53 -0700212 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213
214 if (block_group >= sbi->s_groups_count) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400215 ext4_error(sb, "ext4_get_group_desc",
216 "block_group >= groups_count - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500217 "block_group = %u, groups_count = %u",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400218 block_group, sbi->s_groups_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219
220 return NULL;
221 }
222 smp_rmb();
223
Mingming Cao617ba132006-10-11 01:20:53 -0700224 group_desc = block_group >> EXT4_DESC_PER_BLOCK_BITS(sb);
225 offset = block_group & (EXT4_DESC_PER_BLOCK(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226 if (!sbi->s_group_desc[group_desc]) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400227 ext4_error(sb, "ext4_get_group_desc",
228 "Group descriptor not loaded - "
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500229 "block_group = %u, group_desc = %u, desc = %u",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400230 block_group, group_desc, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231 return NULL;
232 }
233
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -0700234 desc = (struct ext4_group_desc *)(
235 (__u8 *)sbi->s_group_desc[group_desc]->b_data +
236 offset * EXT4_DESC_SIZE(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700237 if (bh)
238 *bh = sbi->s_group_desc[group_desc];
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -0700239 return desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700240}
241
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500242static int ext4_valid_block_bitmap(struct super_block *sb,
243 struct ext4_group_desc *desc,
244 unsigned int block_group,
245 struct buffer_head *bh)
246{
247 ext4_grpblk_t offset;
248 ext4_grpblk_t next_zero_bit;
249 ext4_fsblk_t bitmap_blk;
250 ext4_fsblk_t group_first_block;
251
252 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
253 /* with FLEX_BG, the inode/block bitmaps and itable
254 * blocks may not be in the group at all
255 * so the bitmap validation will be skipped for those groups
256 * or it has to also read the block group where the bitmaps
257 * are located to verify they are set.
258 */
259 return 1;
260 }
261 group_first_block = ext4_group_first_block_no(sb, block_group);
262
263 /* check whether block bitmap block number is set */
264 bitmap_blk = ext4_block_bitmap(sb, desc);
265 offset = bitmap_blk - group_first_block;
266 if (!ext4_test_bit(offset, bh->b_data))
267 /* bad block bitmap */
268 goto err_out;
269
270 /* check whether the inode bitmap block number is set */
271 bitmap_blk = ext4_inode_bitmap(sb, desc);
272 offset = bitmap_blk - group_first_block;
273 if (!ext4_test_bit(offset, bh->b_data))
274 /* bad block bitmap */
275 goto err_out;
276
277 /* check whether the inode table block number is set */
278 bitmap_blk = ext4_inode_table(sb, desc);
279 offset = bitmap_blk - group_first_block;
280 next_zero_bit = ext4_find_next_zero_bit(bh->b_data,
281 offset + EXT4_SB(sb)->s_itb_per_group,
282 offset);
283 if (next_zero_bit >= offset + EXT4_SB(sb)->s_itb_per_group)
284 /* good bitmap for inode tables */
285 return 1;
286
287err_out:
Harvey Harrison46e665e2008-04-17 10:38:59 -0400288 ext4_error(sb, __func__,
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500289 "Invalid block bitmap - "
290 "block_group = %d, block = %llu",
291 block_group, bitmap_blk);
292 return 0;
293}
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294/**
Theodore Ts'o574ca172008-07-11 19:27:31 -0400295 * ext4_read_block_bitmap()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700296 * @sb: super block
297 * @block_group: given block group
298 *
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500299 * Read the bitmap for a given block_group,and validate the
300 * bits for block/inode/inode tables are set in the bitmaps
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301 *
302 * Return buffer_head on success or NULL in case of failure.
303 */
Andreas Dilger717d50e2007-10-16 18:38:25 -0400304struct buffer_head *
Theodore Ts'o574ca172008-07-11 19:27:31 -0400305ext4_read_block_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400307 struct ext4_group_desc *desc;
308 struct buffer_head *bh = NULL;
Aneesh Kumar K.V7c9e69f2007-10-16 23:27:02 -0700309 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310
Andreas Dilger717d50e2007-10-16 18:38:25 -0400311 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 if (!desc)
Aneesh Kumar K.V7c9e69f2007-10-16 23:27:02 -0700313 return NULL;
314 bitmap_blk = ext4_block_bitmap(sb, desc);
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500315 bh = sb_getblk(sb, bitmap_blk);
316 if (unlikely(!bh)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400317 ext4_error(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700318 "Cannot read block bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500319 "block_group = %u, block_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400320 block_group, bitmap_blk);
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500321 return NULL;
322 }
Frederic Bohec806e682008-10-10 08:09:18 -0400323 if (buffer_uptodate(bh) &&
324 !(desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500325 return bh;
326
Frederic Bohec806e682008-10-10 08:09:18 -0400327 lock_buffer(bh);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400328 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500329 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
330 ext4_init_block_bitmap(sb, bh, block_group, desc);
331 set_buffer_uptodate(bh);
332 unlock_buffer(bh);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400333 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500334 return bh;
335 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400336 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500337 if (bh_submit_read(bh) < 0) {
338 put_bh(bh);
Harvey Harrison46e665e2008-04-17 10:38:59 -0400339 ext4_error(sb, __func__,
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500340 "Cannot read block bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500341 "block_group = %u, block_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400342 block_group, bitmap_blk);
Aneesh Kumar K.Vabcb2942008-01-28 23:58:27 -0500343 return NULL;
344 }
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -0400345 ext4_valid_block_bitmap(sb, desc, block_group, bh);
346 /*
347 * file system mounted not to panic on error,
348 * continue with corrupt bitmap
349 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700350 return bh;
351}
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700352
353/**
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500354 * ext4_add_groupblocks() -- Add given blocks to an existing group
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700355 * @handle: handle to this transaction
356 * @sb: super block
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500357 * @block: start physcial block to add to the block group
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700358 * @count: number of blocks to free
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400359 *
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500360 * This marks the blocks as free in the bitmap. We ask the
361 * mballoc to reload the buddy after this by setting group
362 * EXT4_GROUP_INFO_NEED_INIT_BIT flag
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700363 */
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500364void ext4_add_groupblocks(handle_t *handle, struct super_block *sb,
365 ext4_fsblk_t block, unsigned long count)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700366{
367 struct buffer_head *bitmap_bh = NULL;
368 struct buffer_head *gd_bh;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500369 ext4_group_t block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700370 ext4_grpblk_t bit;
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500371 unsigned int i;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400372 struct ext4_group_desc *desc;
373 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700374 struct ext4_sb_info *sbi;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500375 int err = 0, ret, blk_free_count;
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500376 ext4_grpblk_t blocks_freed;
377 struct ext4_group_info *grp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700378
Mingming Cao617ba132006-10-11 01:20:53 -0700379 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700380 es = sbi->s_es;
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500381 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700382
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700383 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -0500384 grp = ext4_get_group_info(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700385 /*
386 * Check to see if we are freeing blocks across a group
387 * boundary.
388 */
Mingming Cao617ba132006-10-11 01:20:53 -0700389 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500390 goto error_return;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700391 }
Theodore Ts'o574ca172008-07-11 19:27:31 -0400392 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700393 if (!bitmap_bh)
394 goto error_return;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400395 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700396 if (!desc)
397 goto error_return;
398
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700399 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
400 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
401 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
402 in_range(block + count - 1, ext4_inode_table(sb, desc),
Aneesh Kumar K.Vcb47dce2008-01-28 23:58:27 -0500403 sbi->s_itb_per_group)) {
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500404 ext4_error(sb, __func__,
405 "Adding blocks in system zones - "
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400406 "Block = %llu, count = %lu",
407 block, count);
Aneesh Kumar K.Vcb47dce2008-01-28 23:58:27 -0500408 goto error_return;
409 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700410
411 /*
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500412 * We are about to add blocks to the bitmap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700413 * so we need undo access.
414 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700415 BUFFER_TRACE(bitmap_bh, "getting undo access");
Mingming Cao617ba132006-10-11 01:20:53 -0700416 err = ext4_journal_get_undo_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700417 if (err)
418 goto error_return;
419
420 /*
421 * We are about to modify some metadata. Call the journal APIs
422 * to unshare ->b_data if a currently-committing transaction is
423 * using it
424 */
425 BUFFER_TRACE(gd_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700426 err = ext4_journal_get_write_access(handle, gd_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700427 if (err)
428 goto error_return;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -0500429 /*
430 * make sure we don't allow a parallel init on other groups in the
431 * same buddy cache
432 */
433 down_write(&grp->alloc_sem);
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500434 for (i = 0, blocks_freed = 0; i < count; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700435 BUFFER_TRACE(bitmap_bh, "clear bit");
Mingming Cao617ba132006-10-11 01:20:53 -0700436 if (!ext4_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700437 bit + i, bitmap_bh->b_data)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400438 ext4_error(sb, __func__,
Mingming Cao2ae02102006-10-11 01:21:11 -0700439 "bit already cleared for block %llu",
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700440 (ext4_fsblk_t)(block + i));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700441 BUFFER_TRACE(bitmap_bh, "bit already cleared");
442 } else {
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500443 blocks_freed++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444 }
445 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700446 spin_lock(sb_bgl_lock(sbi, block_group));
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500447 blk_free_count = blocks_freed + ext4_free_blks_count(sb, desc);
448 ext4_free_blks_set(sb, desc, blk_free_count);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400449 desc->bg_checksum = ext4_group_desc_csum(sbi, block_group, desc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700450 spin_unlock(sb_bgl_lock(sbi, block_group));
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500451 percpu_counter_add(&sbi->s_freeblocks_counter, blocks_freed);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700452
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400453 if (sbi->s_log_groups_per_flex) {
454 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
455 spin_lock(sb_bgl_lock(sbi, flex_group));
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500456 sbi->s_flex_groups[flex_group].free_blocks += blocks_freed;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400457 spin_unlock(sb_bgl_lock(sbi, flex_group));
458 }
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -0500459 /*
460 * request to reload the buddy with the
461 * new bitmap information
462 */
463 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
464 ext4_mb_update_group_info(grp, blocks_freed);
465 up_write(&grp->alloc_sem);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400466
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700467 /* We dirtied the bitmap block */
468 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
Frank Mayhar03901312009-01-07 00:06:22 -0500469 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470
471 /* And the group descriptor block */
472 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -0500473 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500474 if (!err)
475 err = ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700476 sb->s_dirt = 1;
Aneesh Kumar K.Ve21675d2009-01-05 21:36:02 -0500477
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700478error_return:
479 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700480 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700481 return;
482}
483
484/**
Mingming Cao617ba132006-10-11 01:20:53 -0700485 * ext4_free_blocks() -- Free given blocks and update quota
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700486 * @handle: handle for this transaction
487 * @inode: inode
488 * @block: start physical block to free
489 * @count: number of blocks to count
Alex Tomasc9de5602008-01-29 00:19:52 -0500490 * @metadata: Are these metadata blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700491 */
Mingming Cao617ba132006-10-11 01:20:53 -0700492void ext4_free_blocks(handle_t *handle, struct inode *inode,
Alex Tomasc9de5602008-01-29 00:19:52 -0500493 ext4_fsblk_t block, unsigned long count,
494 int metadata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700495{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400496 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700497 unsigned long dquot_freed_blocks;
498
Alex Tomasc9de5602008-01-29 00:19:52 -0500499 /* this isn't the right place to decide whether block is metadata
500 * inode.c/extents.c knows better, but for safety ... */
Aneesh Kumar K.Va1aebc12008-10-10 20:13:31 -0400501 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
502 metadata = 1;
503
504 /* We need to make sure we don't reuse
505 * block released untill the transaction commit.
506 * writeback mode have weak data consistency so
507 * don't force data as metadata when freeing block
508 * for writeback mode.
509 */
510 if (metadata == 0 && !ext4_should_writeback_data(inode))
Alex Tomasc9de5602008-01-29 00:19:52 -0500511 metadata = 1;
512
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700513 sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -0500514
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400515 ext4_mb_free_blocks(handle, inode, block, count,
516 metadata, &dquot_freed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700517 if (dquot_freed_blocks)
518 DQUOT_FREE_BLOCK(inode, dquot_freed_blocks);
519 return;
520}
521
Eric Sandeen8c3bf8a02008-10-28 00:08:12 -0400522/**
523 * ext4_has_free_blocks()
524 * @sbi: in-core super block structure.
525 * @nblocks: number of needed blocks
526 *
527 * Check if filesystem has nblocks free & available for allocation.
528 * On success return 1, return 0 on failure.
529 */
530int ext4_has_free_blocks(struct ext4_sb_info *sbi, s64 nblocks)
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -0400531{
Eric Sandeena9960312008-10-28 00:08:17 -0400532 s64 free_blocks, dirty_blocks, root_blocks;
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -0400533 struct percpu_counter *fbc = &sbi->s_freeblocks_counter;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400534 struct percpu_counter *dbc = &sbi->s_dirtyblocks_counter;
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -0400535
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400536 free_blocks = percpu_counter_read_positive(fbc);
537 dirty_blocks = percpu_counter_read_positive(dbc);
Eric Sandeena9960312008-10-28 00:08:17 -0400538 root_blocks = ext4_r_blocks_count(sbi->s_es);
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -0400539
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400540 if (free_blocks - (nblocks + root_blocks + dirty_blocks) <
541 EXT4_FREEBLOCKS_WATERMARK) {
Andrew Morton02d21162008-12-09 13:14:14 -0800542 free_blocks = percpu_counter_sum_positive(fbc);
543 dirty_blocks = percpu_counter_sum_positive(dbc);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400544 if (dirty_blocks < 0) {
545 printk(KERN_CRIT "Dirty block accounting "
546 "went wrong %lld\n",
Alexander Beregalov8f72fbd2008-10-29 17:13:08 -0400547 (long long)dirty_blocks);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400548 }
549 }
550 /* Check whether we have space after
Eric Sandeena9960312008-10-28 00:08:17 -0400551 * accounting for current dirty blocks & root reserved blocks.
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400552 */
Eric Sandeena9960312008-10-28 00:08:17 -0400553 if (free_blocks >= ((root_blocks + nblocks) + dirty_blocks))
554 return 1;
Aneesh Kumar K.V5c791612008-10-08 23:12:24 -0400555
Eric Sandeena9960312008-10-28 00:08:17 -0400556 /* Hm, nope. Are (enough) root reserved blocks available? */
David Howells4c9c5442008-11-14 10:38:51 +1100557 if (sbi->s_resuid == current_fsuid() ||
Eric Sandeena9960312008-10-28 00:08:17 -0400558 ((sbi->s_resgid != 0) && in_group_p(sbi->s_resgid)) ||
559 capable(CAP_SYS_RESOURCE)) {
560 if (free_blocks >= (nblocks + dirty_blocks))
561 return 1;
562 }
563
564 return 0;
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -0400565}
Mingming Cao07031432008-07-11 19:27:31 -0400566
Eric Sandeen8c3bf8a02008-10-28 00:08:12 -0400567int ext4_claim_free_blocks(struct ext4_sb_info *sbi,
568 s64 nblocks)
569{
570 if (ext4_has_free_blocks(sbi, nblocks)) {
571 percpu_counter_add(&sbi->s_dirtyblocks_counter, nblocks);
572 return 0;
573 } else
574 return -ENOSPC;
575}
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700576
577/**
Mingming Cao617ba132006-10-11 01:20:53 -0700578 * ext4_should_retry_alloc()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579 * @sb: super block
580 * @retries number of attemps has been made
581 *
Mingming Cao617ba132006-10-11 01:20:53 -0700582 * ext4_should_retry_alloc() is called when ENOSPC is returned, and if
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583 * it is profitable to retry the operation, this function will wait
584 * for the current or commiting transaction to complete, and then
585 * return TRUE.
586 *
587 * if the total number of retries exceed three times, return FALSE.
588 */
Mingming Cao617ba132006-10-11 01:20:53 -0700589int ext4_should_retry_alloc(struct super_block *sb, int *retries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590{
Mingming Cao07031432008-07-11 19:27:31 -0400591 if (!ext4_has_free_blocks(EXT4_SB(sb), 1) || (*retries)++ > 3)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700592 return 0;
593
594 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
595
Mingming Caodab291a2006-10-11 01:21:01 -0700596 return jbd2_journal_force_commit_nested(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597}
598
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400599/*
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400600 * ext4_new_meta_blocks() -- allocate block for meta data (indexing) blocks
601 *
602 * @handle: handle to this transaction
603 * @inode: file inode
604 * @goal: given target block(filesystem wide)
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500605 * @count: pointer to total number of blocks needed
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400606 * @errp: error code
607 *
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500608 * Return 1st allocated block number on success, *count stores total account
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400609 * error stores in errp pointer
610 */
611ext4_fsblk_t ext4_new_meta_blocks(handle_t *handle, struct inode *inode,
612 ext4_fsblk_t goal, unsigned long *count, int *errp)
613{
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500614 struct ext4_allocation_request ar;
Mingming Caod2a17632008-07-14 17:52:37 -0400615 ext4_fsblk_t ret;
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500616
617 memset(&ar, 0, sizeof(ar));
618 /* Fill with neighbour allocated blocks */
619 ar.inode = inode;
620 ar.goal = goal;
621 ar.len = count ? *count : 1;
622
623 ret = ext4_mb_new_blocks(handle, &ar, errp);
624 if (count)
625 *count = ar.len;
626
Mingming Caod2a17632008-07-14 17:52:37 -0400627 /*
628 * Account for the allocated meta blocks
629 */
Aneesh Kumar K.V166348d2008-09-08 23:08:40 -0400630 if (!(*errp) && EXT4_I(inode)->i_delalloc_reserved_flag) {
Mingming Caod2a17632008-07-14 17:52:37 -0400631 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500632 EXT4_I(inode)->i_allocated_meta_blocks += ar.len;
Mingming Caod2a17632008-07-14 17:52:37 -0400633 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
634 }
635 return ret;
636}
637
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638/**
Mingming Cao617ba132006-10-11 01:20:53 -0700639 * ext4_count_free_blocks() -- count filesystem free blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 * @sb: superblock
641 *
642 * Adds up the number of free blocks from each block group.
643 */
Mingming Cao617ba132006-10-11 01:20:53 -0700644ext4_fsblk_t ext4_count_free_blocks(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645{
Mingming Cao617ba132006-10-11 01:20:53 -0700646 ext4_fsblk_t desc_count;
647 struct ext4_group_desc *gdp;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500648 ext4_group_t i;
649 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700650#ifdef EXT4FS_DEBUG
651 struct ext4_super_block *es;
652 ext4_fsblk_t bitmap_count;
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500653 unsigned int x;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 struct buffer_head *bitmap_bh = NULL;
655
Mingming Cao617ba132006-10-11 01:20:53 -0700656 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 desc_count = 0;
658 bitmap_count = 0;
659 gdp = NULL;
660
661 smp_rmb();
662 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -0700663 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700664 if (!gdp)
665 continue;
666 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
667 brelse(bitmap_bh);
Theodore Ts'o574ca172008-07-11 19:27:31 -0400668 bitmap_bh = ext4_read_block_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700669 if (bitmap_bh == NULL)
670 continue;
671
Mingming Cao617ba132006-10-11 01:20:53 -0700672 x = ext4_count_free(bitmap_bh, sb->s_blocksize);
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500673 printk(KERN_DEBUG "group %lu: stored = %d, counted = %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700674 i, le16_to_cpu(gdp->bg_free_blocks_count), x);
675 bitmap_count += x;
676 }
677 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400678 printk(KERN_DEBUG "ext4_count_free_blocks: stored = %llu"
679 ", computed = %llu, %llu\n", ext4_free_blocks_count(es),
680 desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700681 return bitmap_count;
682#else
683 desc_count = 0;
684 smp_rmb();
685 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -0700686 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687 if (!gdp)
688 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500689 desc_count += ext4_free_blks_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 }
691
692 return desc_count;
693#endif
694}
695
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500696static inline int test_root(ext4_group_t a, int b)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700697{
698 int num = b;
699
700 while (a > num)
701 num *= b;
702 return num == a;
703}
704
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500705static int ext4_group_sparse(ext4_group_t group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706{
707 if (group <= 1)
708 return 1;
709 if (!(group & 1))
710 return 0;
711 return (test_root(group, 7) || test_root(group, 5) ||
712 test_root(group, 3));
713}
714
715/**
Mingming Cao617ba132006-10-11 01:20:53 -0700716 * ext4_bg_has_super - number of blocks used by the superblock in group
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 * @sb: superblock for filesystem
718 * @group: group number to check
719 *
720 * Return the number of blocks used by the superblock (primary or backup)
721 * in this group. Currently this will be only 0 or 1.
722 */
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500723int ext4_bg_has_super(struct super_block *sb, ext4_group_t group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724{
Mingming Cao617ba132006-10-11 01:20:53 -0700725 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
726 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
727 !ext4_group_sparse(group))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728 return 0;
729 return 1;
730}
731
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500732static unsigned long ext4_bg_num_gdb_meta(struct super_block *sb,
733 ext4_group_t group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734{
Mingming Cao617ba132006-10-11 01:20:53 -0700735 unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500736 ext4_group_t first = metagroup * EXT4_DESC_PER_BLOCK(sb);
737 ext4_group_t last = first + EXT4_DESC_PER_BLOCK(sb) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738
739 if (group == first || group == first + 1 || group == last)
740 return 1;
741 return 0;
742}
743
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500744static unsigned long ext4_bg_num_gdb_nometa(struct super_block *sb,
745 ext4_group_t group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700746{
Akinobu Mita859cb932008-02-06 01:40:17 -0800747 return ext4_bg_has_super(sb, group) ? EXT4_SB(sb)->s_gdb_count : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700748}
749
750/**
Mingming Cao617ba132006-10-11 01:20:53 -0700751 * ext4_bg_num_gdb - number of blocks used by the group table in group
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 * @sb: superblock for filesystem
753 * @group: group number to check
754 *
755 * Return the number of blocks used by the group descriptor table
756 * (primary or backup) in this group. In the future there may be a
757 * different number of descriptor blocks in each group.
758 */
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500759unsigned long ext4_bg_num_gdb(struct super_block *sb, ext4_group_t group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760{
761 unsigned long first_meta_bg =
Mingming Cao617ba132006-10-11 01:20:53 -0700762 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_meta_bg);
763 unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764
Mingming Cao617ba132006-10-11 01:20:53 -0700765 if (!EXT4_HAS_INCOMPAT_FEATURE(sb,EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700766 metagroup < first_meta_bg)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400767 return ext4_bg_num_gdb_nometa(sb, group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700768
Mingming Cao617ba132006-10-11 01:20:53 -0700769 return ext4_bg_num_gdb_meta(sb,group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700770
771}
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400772