blob: b3db22649426262e902f66f6c46275750c781e5b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/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
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/time.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080015#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/jbd.h>
19#include <linux/ext3_fs.h>
20#include <linux/ext3_jbd.h>
21#include <linux/quotaops.h>
22#include <linux/buffer_head.h>
23
24/*
25 * balloc.c contains the blocks allocation and deallocation routines
26 */
27
28/*
29 * The free blocks are managed by bitmaps. A file system contains several
30 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
31 * block for inodes, N blocks for the inode table and data blocks.
32 *
33 * The file system contains group descriptors which are located after the
34 * super block. Each descriptor contains the number of the bitmap block and
35 * the free blocks count in the block. The descriptors are loaded in memory
Aneesh Kumar K.Ve6274322007-02-20 13:57:58 -080036 * when a file system is mounted (see ext3_fill_super).
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
39
40#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
41
Mingming Cao36faadc142006-09-27 01:49:32 -070042/**
43 * ext3_get_group_desc() -- load group descriptor from disk
Dave Kleikampe9ad5622006-09-27 01:49:35 -070044 * @sb: super block
Mingming Cao36faadc142006-09-27 01:49:32 -070045 * @block_group: given block group
46 * @bh: pointer to the buffer head to store the block
47 * group descriptor
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
50 unsigned int block_group,
51 struct buffer_head ** bh)
52{
53 unsigned long group_desc;
54 unsigned long offset;
55 struct ext3_group_desc * desc;
56 struct ext3_sb_info *sbi = EXT3_SB(sb);
57
58 if (block_group >= sbi->s_groups_count) {
59 ext3_error (sb, "ext3_get_group_desc",
60 "block_group >= groups_count - "
61 "block_group = %d, groups_count = %lu",
62 block_group, sbi->s_groups_count);
63
64 return NULL;
65 }
66 smp_rmb();
67
68 group_desc = block_group >> EXT3_DESC_PER_BLOCK_BITS(sb);
69 offset = block_group & (EXT3_DESC_PER_BLOCK(sb) - 1);
70 if (!sbi->s_group_desc[group_desc]) {
71 ext3_error (sb, "ext3_get_group_desc",
72 "Group descriptor not loaded - "
73 "block_group = %d, group_desc = %lu, desc = %lu",
74 block_group, group_desc, offset);
75 return NULL;
76 }
77
78 desc = (struct ext3_group_desc *) sbi->s_group_desc[group_desc]->b_data;
79 if (bh)
80 *bh = sbi->s_group_desc[group_desc];
81 return desc + offset;
82}
83
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -080084static int ext3_valid_block_bitmap(struct super_block *sb,
85 struct ext3_group_desc *desc,
86 unsigned int block_group,
87 struct buffer_head *bh)
88{
89 ext3_grpblk_t offset;
90 ext3_grpblk_t next_zero_bit;
91 ext3_fsblk_t bitmap_blk;
92 ext3_fsblk_t group_first_block;
93
94 group_first_block = ext3_group_first_block_no(sb, block_group);
95
96 /* check whether block bitmap block number is set */
97 bitmap_blk = le32_to_cpu(desc->bg_block_bitmap);
98 offset = bitmap_blk - group_first_block;
99 if (!ext3_test_bit(offset, bh->b_data))
100 /* bad block bitmap */
101 goto err_out;
102
103 /* check whether the inode bitmap block number is set */
104 bitmap_blk = le32_to_cpu(desc->bg_inode_bitmap);
105 offset = bitmap_blk - group_first_block;
106 if (!ext3_test_bit(offset, bh->b_data))
107 /* bad block bitmap */
108 goto err_out;
109
110 /* check whether the inode table block number is set */
111 bitmap_blk = le32_to_cpu(desc->bg_inode_table);
112 offset = bitmap_blk - group_first_block;
113 next_zero_bit = ext3_find_next_zero_bit(bh->b_data,
114 offset + EXT3_SB(sb)->s_itb_per_group,
115 offset);
116 if (next_zero_bit >= offset + EXT3_SB(sb)->s_itb_per_group)
117 /* good bitmap for inode tables */
118 return 1;
119
120err_out:
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700121 ext3_error(sb, __func__,
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800122 "Invalid block bitmap - "
123 "block_group = %d, block = %lu",
124 block_group, bitmap_blk);
125 return 0;
126}
127
Mingming Cao36faadc142006-09-27 01:49:32 -0700128/**
129 * read_block_bitmap()
130 * @sb: super block
131 * @block_group: given block group
132 *
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800133 * Read the bitmap for a given block_group,and validate the
134 * bits for block/inode/inode tables are set in the bitmaps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 *
136 * Return buffer_head on success or NULL in case of failure.
137 */
138static struct buffer_head *
139read_block_bitmap(struct super_block *sb, unsigned int block_group)
140{
141 struct ext3_group_desc * desc;
142 struct buffer_head * bh = NULL;
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800143 ext3_fsblk_t bitmap_blk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800145 desc = ext3_get_group_desc(sb, block_group, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!desc)
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800147 return NULL;
148 bitmap_blk = le32_to_cpu(desc->bg_block_bitmap);
149 bh = sb_getblk(sb, bitmap_blk);
150 if (unlikely(!bh)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700151 ext3_error(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 "Cannot read block bitmap - "
153 "block_group = %d, block_bitmap = %u",
154 block_group, le32_to_cpu(desc->bg_block_bitmap));
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800155 return NULL;
156 }
157 if (likely(bh_uptodate_or_lock(bh)))
158 return bh;
159
160 if (bh_submit_read(bh) < 0) {
161 brelse(bh);
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700162 ext3_error(sb, __func__,
Aneesh Kumar K.Vf762e902008-02-06 01:40:09 -0800163 "Cannot read block bitmap - "
164 "block_group = %d, block_bitmap = %u",
165 block_group, le32_to_cpu(desc->bg_block_bitmap));
166 return NULL;
167 }
Aneesh Kumar K.V2588ef82008-04-28 02:16:14 -0700168 ext3_valid_block_bitmap(sb, desc, block_group, bh);
169 /*
170 * file system mounted not to panic on error, continue with corrupt
171 * bitmap
172 */
Linus Torvalds0b832a42007-11-13 08:07:31 -0800173 return bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175/*
176 * The reservation window structure operations
177 * --------------------------------------------
178 * Operations include:
179 * dump, find, add, remove, is_empty, find_next_reservable_window, etc.
180 *
Mingming Cao36faadc142006-09-27 01:49:32 -0700181 * We use a red-black tree to represent per-filesystem reservation
182 * windows.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 *
Mingming Cao36faadc142006-09-27 01:49:32 -0700184 */
185
186/**
187 * __rsv_window_dump() -- Dump the filesystem block allocation reservation map
188 * @rb_root: root of per-filesystem reservation rb tree
189 * @verbose: verbose mode
190 * @fn: function which wishes to dump the reservation map
191 *
192 * If verbose is turned on, it will print the whole block reservation
193 * windows(start, end). Otherwise, it will only print out the "bad" windows,
194 * those windows that overlap with their immediate neighbors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 */
Mingming Cao321fb9e2006-09-27 01:49:32 -0700196#if 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static void __rsv_window_dump(struct rb_root *root, int verbose,
198 const char *fn)
199{
200 struct rb_node *n;
201 struct ext3_reserve_window_node *rsv, *prev;
202 int bad;
203
204restart:
205 n = rb_first(root);
206 bad = 0;
207 prev = NULL;
208
209 printk("Block Allocation Reservation Windows Map (%s):\n", fn);
210 while (n) {
Hugh Dickinsc56d2562006-12-06 20:41:27 -0800211 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (verbose)
213 printk("reservation window 0x%p "
Mingming Cao321fb9e2006-09-27 01:49:32 -0700214 "start: %lu, end: %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 rsv, rsv->rsv_start, rsv->rsv_end);
216 if (rsv->rsv_start && rsv->rsv_start >= rsv->rsv_end) {
217 printk("Bad reservation %p (start >= end)\n",
218 rsv);
219 bad = 1;
220 }
221 if (prev && prev->rsv_end >= rsv->rsv_start) {
222 printk("Bad reservation %p (prev->end >= start)\n",
223 rsv);
224 bad = 1;
225 }
226 if (bad) {
227 if (!verbose) {
228 printk("Restarting reservation walk in verbose mode\n");
229 verbose = 1;
230 goto restart;
231 }
232 }
233 n = rb_next(n);
234 prev = rsv;
235 }
236 printk("Window map complete.\n");
Julia Lawall269b2612008-04-28 02:16:09 -0700237 BUG_ON(bad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239#define rsv_window_dump(root, verbose) \
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700240 __rsv_window_dump((root), (verbose), __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#else
242#define rsv_window_dump(root, verbose) do {} while (0)
243#endif
244
Mingming Cao36faadc142006-09-27 01:49:32 -0700245/**
246 * goal_in_my_reservation()
247 * @rsv: inode's reservation window
248 * @grp_goal: given goal block relative to the allocation block group
249 * @group: the current allocation block group
250 * @sb: filesystem super block
251 *
252 * Test if the given goal block (group relative) is within the file's
253 * own block reservation window range.
254 *
255 * If the reservation window is outside the goal allocation group, return 0;
256 * grp_goal (given goal block) could be -1, which means no specific
257 * goal block. In this case, always return 1.
258 * If the goal block is within the reservation window, return 1;
259 * otherwise, return 0;
260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261static int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700262goal_in_my_reservation(struct ext3_reserve_window *rsv, ext3_grpblk_t grp_goal,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned int group, struct super_block * sb)
264{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700265 ext3_fsblk_t group_first_block, group_last_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Mingming Cao43d23f92006-06-25 05:48:07 -0700267 group_first_block = ext3_group_first_block_no(sb, group);
Eric Sandeen32c2d2b2006-09-27 01:49:36 -0700268 group_last_block = group_first_block + (EXT3_BLOCKS_PER_GROUP(sb) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if ((rsv->_rsv_start > group_last_block) ||
271 (rsv->_rsv_end < group_first_block))
272 return 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700273 if ((grp_goal >= 0) && ((grp_goal + group_first_block < rsv->_rsv_start)
274 || (grp_goal + group_first_block > rsv->_rsv_end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return 0;
276 return 1;
277}
278
Mingming Cao36faadc142006-09-27 01:49:32 -0700279/**
280 * search_reserve_window()
281 * @rb_root: root of reservation tree
282 * @goal: target allocation block
283 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * Find the reserved window which includes the goal, or the previous one
285 * if the goal is not in any window.
286 * Returns NULL if there are no windows or if all windows start after the goal.
287 */
288static struct ext3_reserve_window_node *
Mingming Cao1c2bf372006-06-25 05:48:06 -0700289search_reserve_window(struct rb_root *root, ext3_fsblk_t goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct rb_node *n = root->rb_node;
292 struct ext3_reserve_window_node *rsv;
293
294 if (!n)
295 return NULL;
296
297 do {
298 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
299
300 if (goal < rsv->rsv_start)
301 n = n->rb_left;
302 else if (goal > rsv->rsv_end)
303 n = n->rb_right;
304 else
305 return rsv;
306 } while (n);
307 /*
308 * We've fallen off the end of the tree: the goal wasn't inside
309 * any particular node. OK, the previous node must be to one
310 * side of the interval containing the goal. If it's the RHS,
311 * we need to back up one.
312 */
313 if (rsv->rsv_start > goal) {
314 n = rb_prev(&rsv->rsv_node);
315 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
316 }
317 return rsv;
318}
319
Mingming Cao36faadc142006-09-27 01:49:32 -0700320/**
321 * ext3_rsv_window_add() -- Insert a window to the block reservation rb tree.
322 * @sb: super block
323 * @rsv: reservation window to add
324 *
325 * Must be called with rsv_lock hold.
326 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327void ext3_rsv_window_add(struct super_block *sb,
328 struct ext3_reserve_window_node *rsv)
329{
330 struct rb_root *root = &EXT3_SB(sb)->s_rsv_window_root;
331 struct rb_node *node = &rsv->rsv_node;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700332 ext3_fsblk_t start = rsv->rsv_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 struct rb_node ** p = &root->rb_node;
335 struct rb_node * parent = NULL;
336 struct ext3_reserve_window_node *this;
337
338 while (*p)
339 {
340 parent = *p;
341 this = rb_entry(parent, struct ext3_reserve_window_node, rsv_node);
342
343 if (start < this->rsv_start)
344 p = &(*p)->rb_left;
345 else if (start > this->rsv_end)
346 p = &(*p)->rb_right;
Mingming Cao321fb9e2006-09-27 01:49:32 -0700347 else {
348 rsv_window_dump(root, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 BUG();
Mingming Cao321fb9e2006-09-27 01:49:32 -0700350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
353 rb_link_node(node, parent, p);
354 rb_insert_color(node, root);
355}
356
Mingming Cao36faadc142006-09-27 01:49:32 -0700357/**
358 * ext3_rsv_window_remove() -- unlink a window from the reservation rb tree
359 * @sb: super block
360 * @rsv: reservation window to remove
361 *
362 * Mark the block reservation window as not allocated, and unlink it
363 * from the filesystem reservation window rb tree. Must be called with
364 * rsv_lock hold.
365 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static void rsv_window_remove(struct super_block *sb,
367 struct ext3_reserve_window_node *rsv)
368{
369 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
370 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
371 rsv->rsv_alloc_hit = 0;
372 rb_erase(&rsv->rsv_node, &EXT3_SB(sb)->s_rsv_window_root);
373}
374
Mingming Cao36faadc142006-09-27 01:49:32 -0700375/*
376 * rsv_is_empty() -- Check if the reservation window is allocated.
377 * @rsv: given reservation window to check
378 *
379 * returns 1 if the end block is EXT3_RESERVE_WINDOW_NOT_ALLOCATED.
380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static inline int rsv_is_empty(struct ext3_reserve_window *rsv)
382{
383 /* a valid reservation end block could not be 0 */
Mingming Cao36faadc142006-09-27 01:49:32 -0700384 return rsv->_rsv_end == EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Mingming Cao36faadc142006-09-27 01:49:32 -0700386
387/**
388 * ext3_init_block_alloc_info()
389 * @inode: file inode structure
390 *
391 * Allocate and initialize the reservation window structure, and
392 * link the window to the ext3 inode structure at last
393 *
394 * The reservation window structure is only dynamically allocated
395 * and linked to ext3 inode the first time the open file
396 * needs a new block. So, before every ext3_new_block(s) call, for
397 * regular files, we should check whether the reservation window
398 * structure exists or not. In the latter case, this function is called.
399 * Fail to do so will result in block reservation being turned off for that
400 * open file.
401 *
402 * This function is called from ext3_get_blocks_handle(), also called
403 * when setting the reservation window size through ioctl before the file
404 * is open for write (needs block allocation).
405 *
406 * Needs truncate_mutex protection prior to call this function.
407 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408void ext3_init_block_alloc_info(struct inode *inode)
409{
410 struct ext3_inode_info *ei = EXT3_I(inode);
411 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
412 struct super_block *sb = inode->i_sb;
413
414 block_i = kmalloc(sizeof(*block_i), GFP_NOFS);
415 if (block_i) {
416 struct ext3_reserve_window_node *rsv = &block_i->rsv_window_node;
417
418 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
419 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
420
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700421 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * if filesystem is mounted with NORESERVATION, the goal
423 * reservation window size is set to zero to indicate
424 * block reservation is off
425 */
426 if (!test_opt(sb, RESERVATION))
427 rsv->rsv_goal_size = 0;
428 else
429 rsv->rsv_goal_size = EXT3_DEFAULT_RESERVE_BLOCKS;
430 rsv->rsv_alloc_hit = 0;
431 block_i->last_alloc_logical_block = 0;
432 block_i->last_alloc_physical_block = 0;
433 }
434 ei->i_block_alloc_info = block_i;
435}
436
Mingming Cao36faadc142006-09-27 01:49:32 -0700437/**
438 * ext3_discard_reservation()
439 * @inode: inode
440 *
441 * Discard(free) block reservation window on last file close, or truncate
442 * or at last iput().
443 *
444 * It is being called in three cases:
445 * ext3_release_file(): last writer close the file
446 * ext3_clear_inode(): last iput(), when nobody link to this file.
447 * ext3_truncate(): when the block indirect map is about to change.
448 *
449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450void ext3_discard_reservation(struct inode *inode)
451{
452 struct ext3_inode_info *ei = EXT3_I(inode);
453 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
454 struct ext3_reserve_window_node *rsv;
455 spinlock_t *rsv_lock = &EXT3_SB(inode->i_sb)->s_rsv_window_lock;
456
457 if (!block_i)
458 return;
459
460 rsv = &block_i->rsv_window_node;
461 if (!rsv_is_empty(&rsv->rsv_window)) {
462 spin_lock(rsv_lock);
463 if (!rsv_is_empty(&rsv->rsv_window))
464 rsv_window_remove(inode->i_sb, rsv);
465 spin_unlock(rsv_lock);
466 }
467}
468
Mingming Cao36faadc142006-09-27 01:49:32 -0700469/**
470 * ext3_free_blocks_sb() -- Free given blocks and update quota
471 * @handle: handle to this transaction
472 * @sb: super block
473 * @block: start physcial block to free
474 * @count: number of blocks to free
475 * @pdquot_freed_blocks: pointer to quota
476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477void ext3_free_blocks_sb(handle_t *handle, struct super_block *sb,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700478 ext3_fsblk_t block, unsigned long count,
479 unsigned long *pdquot_freed_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct buffer_head *bitmap_bh = NULL;
482 struct buffer_head *gd_bh;
483 unsigned long block_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700484 ext3_grpblk_t bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 unsigned long i;
486 unsigned long overflow;
487 struct ext3_group_desc * desc;
488 struct ext3_super_block * es;
489 struct ext3_sb_info *sbi;
490 int err = 0, ret;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700491 ext3_grpblk_t group_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 *pdquot_freed_blocks = 0;
494 sbi = EXT3_SB(sb);
495 es = sbi->s_es;
496 if (block < le32_to_cpu(es->s_first_data_block) ||
497 block + count < block ||
498 block + count > le32_to_cpu(es->s_blocks_count)) {
499 ext3_error (sb, "ext3_free_blocks",
500 "Freeing blocks not in datazone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700501 "block = "E3FSBLK", count = %lu", block, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto error_return;
503 }
504
505 ext3_debug ("freeing block(s) %lu-%lu\n", block, block + count - 1);
506
507do_more:
508 overflow = 0;
509 block_group = (block - le32_to_cpu(es->s_first_data_block)) /
510 EXT3_BLOCKS_PER_GROUP(sb);
511 bit = (block - le32_to_cpu(es->s_first_data_block)) %
512 EXT3_BLOCKS_PER_GROUP(sb);
513 /*
514 * Check to see if we are freeing blocks across a group
515 * boundary.
516 */
517 if (bit + count > EXT3_BLOCKS_PER_GROUP(sb)) {
518 overflow = bit + count - EXT3_BLOCKS_PER_GROUP(sb);
519 count -= overflow;
520 }
521 brelse(bitmap_bh);
522 bitmap_bh = read_block_bitmap(sb, block_group);
523 if (!bitmap_bh)
524 goto error_return;
525 desc = ext3_get_group_desc (sb, block_group, &gd_bh);
526 if (!desc)
527 goto error_return;
528
529 if (in_range (le32_to_cpu(desc->bg_block_bitmap), block, count) ||
530 in_range (le32_to_cpu(desc->bg_inode_bitmap), block, count) ||
531 in_range (block, le32_to_cpu(desc->bg_inode_table),
532 sbi->s_itb_per_group) ||
533 in_range (block + count - 1, le32_to_cpu(desc->bg_inode_table),
Aneesh Kumar K.Vfeda58d2008-02-06 01:40:13 -0800534 sbi->s_itb_per_group)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ext3_error (sb, "ext3_free_blocks",
536 "Freeing blocks in system zones - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700537 "Block = "E3FSBLK", count = %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 block, count);
Aneesh Kumar K.Vfeda58d2008-02-06 01:40:13 -0800539 goto error_return;
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /*
543 * We are about to start releasing blocks in the bitmap,
544 * so we need undo access.
545 */
546 /* @@@ check errors */
547 BUFFER_TRACE(bitmap_bh, "getting undo access");
548 err = ext3_journal_get_undo_access(handle, bitmap_bh);
549 if (err)
550 goto error_return;
551
552 /*
553 * We are about to modify some metadata. Call the journal APIs
554 * to unshare ->b_data if a currently-committing transaction is
555 * using it
556 */
557 BUFFER_TRACE(gd_bh, "get_write_access");
558 err = ext3_journal_get_write_access(handle, gd_bh);
559 if (err)
560 goto error_return;
561
562 jbd_lock_bh_state(bitmap_bh);
563
564 for (i = 0, group_freed = 0; i < count; i++) {
565 /*
566 * An HJ special. This is expensive...
567 */
568#ifdef CONFIG_JBD_DEBUG
569 jbd_unlock_bh_state(bitmap_bh);
570 {
571 struct buffer_head *debug_bh;
572 debug_bh = sb_find_get_block(sb, block + i);
573 if (debug_bh) {
574 BUFFER_TRACE(debug_bh, "Deleted!");
575 if (!bh2jh(bitmap_bh)->b_committed_data)
576 BUFFER_TRACE(debug_bh,
577 "No commited data in bitmap");
578 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap");
579 __brelse(debug_bh);
580 }
581 }
582 jbd_lock_bh_state(bitmap_bh);
583#endif
584 if (need_resched()) {
585 jbd_unlock_bh_state(bitmap_bh);
586 cond_resched();
587 jbd_lock_bh_state(bitmap_bh);
588 }
589 /* @@@ This prevents newly-allocated data from being
590 * freed and then reallocated within the same
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700591 * transaction.
592 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * Ideally we would want to allow that to happen, but to
594 * do so requires making journal_forget() capable of
595 * revoking the queued write of a data block, which
596 * implies blocking on the journal lock. *forget()
597 * cannot block due to truncate races.
598 *
599 * Eventually we can fix this by making journal_forget()
600 * return a status indicating whether or not it was able
601 * to revoke the buffer. On successful revoke, it is
602 * safe not to set the allocation bit in the committed
603 * bitmap, because we know that there is no outstanding
604 * activity on the buffer any more and so it is safe to
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700605 * reallocate it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
607 BUFFER_TRACE(bitmap_bh, "set in b_committed_data");
608 J_ASSERT_BH(bitmap_bh,
609 bh2jh(bitmap_bh)->b_committed_data != NULL);
610 ext3_set_bit_atomic(sb_bgl_lock(sbi, block_group), bit + i,
611 bh2jh(bitmap_bh)->b_committed_data);
612
613 /*
614 * We clear the bit in the bitmap after setting the committed
615 * data bit, because this is the reverse order to that which
616 * the allocator uses.
617 */
618 BUFFER_TRACE(bitmap_bh, "clear bit");
619 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
620 bit + i, bitmap_bh->b_data)) {
621 jbd_unlock_bh_state(bitmap_bh);
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700622 ext3_error(sb, __func__,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700623 "bit already cleared for block "E3FSBLK,
624 block + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 jbd_lock_bh_state(bitmap_bh);
626 BUFFER_TRACE(bitmap_bh, "bit already cleared");
627 } else {
628 group_freed++;
629 }
630 }
631 jbd_unlock_bh_state(bitmap_bh);
632
633 spin_lock(sb_bgl_lock(sbi, block_group));
Marcin Slusarz50e8a282008-02-08 04:20:13 -0800634 le16_add_cpu(&desc->bg_free_blocks_count, group_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 spin_unlock(sb_bgl_lock(sbi, block_group));
Peter Zijlstraaa0dff22007-10-16 23:25:42 -0700636 percpu_counter_add(&sbi->s_freeblocks_counter, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* We dirtied the bitmap block */
639 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
640 err = ext3_journal_dirty_metadata(handle, bitmap_bh);
641
642 /* And the group descriptor block */
643 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
644 ret = ext3_journal_dirty_metadata(handle, gd_bh);
645 if (!err) err = ret;
646 *pdquot_freed_blocks += group_freed;
647
648 if (overflow && !err) {
649 block += count;
650 count = overflow;
651 goto do_more;
652 }
Christoph Hellwigca41f7b2009-04-27 09:46:42 -0400653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654error_return:
655 brelse(bitmap_bh);
656 ext3_std_error(sb, err);
657 return;
658}
659
Mingming Cao36faadc142006-09-27 01:49:32 -0700660/**
661 * ext3_free_blocks() -- Free given blocks and update quota
662 * @handle: handle for this transaction
663 * @inode: inode
664 * @block: start physical block to free
665 * @count: number of blocks to count
666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667void ext3_free_blocks(handle_t *handle, struct inode *inode,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700668 ext3_fsblk_t block, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct super_block * sb;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700671 unsigned long dquot_freed_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 sb = inode->i_sb;
674 if (!sb) {
675 printk ("ext3_free_blocks: nonexistent device");
676 return;
677 }
678 ext3_free_blocks_sb(handle, sb, block, count, &dquot_freed_blocks);
679 if (dquot_freed_blocks)
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500680 dquot_free_block(inode, dquot_freed_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return;
682}
683
Mingming Cao36faadc142006-09-27 01:49:32 -0700684/**
685 * ext3_test_allocatable()
686 * @nr: given allocation block group
687 * @bh: bufferhead contains the bitmap of the given block group
688 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * For ext3 allocations, we must not reuse any blocks which are
690 * allocated in the bitmap buffer's "last committed data" copy. This
691 * prevents deletes from freeing up the page for reuse until we have
692 * committed the delete transaction.
693 *
694 * If we didn't do this, then deleting something and reallocating it as
695 * data would allow the old block to be overwritten before the
696 * transaction committed (because we force data to disk before commit).
697 * This would lead to corruption if we crashed between overwriting the
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700698 * data and committing the delete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 *
700 * @@@ We may want to make this allocation behaviour conditional on
701 * data-writes at some point, and disable it for metadata allocations or
702 * sync-data inodes.
703 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700704static int ext3_test_allocatable(ext3_grpblk_t nr, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 int ret;
707 struct journal_head *jh = bh2jh(bh);
708
709 if (ext3_test_bit(nr, bh->b_data))
710 return 0;
711
712 jbd_lock_bh_state(bh);
713 if (!jh->b_committed_data)
714 ret = 1;
715 else
716 ret = !ext3_test_bit(nr, jh->b_committed_data);
717 jbd_unlock_bh_state(bh);
718 return ret;
719}
720
Mingming Cao36faadc142006-09-27 01:49:32 -0700721/**
722 * bitmap_search_next_usable_block()
723 * @start: the starting block (group relative) of the search
724 * @bh: bufferhead contains the block group bitmap
725 * @maxblocks: the ending block (group relative) of the reservation
726 *
727 * The bitmap search --- search forward alternately through the actual
728 * bitmap on disk and the last-committed copy in journal, until we find a
729 * bit free in both bitmaps.
730 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700731static ext3_grpblk_t
732bitmap_search_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
733 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700735 ext3_grpblk_t next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 struct journal_head *jh = bh2jh(bh);
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 while (start < maxblocks) {
739 next = ext3_find_next_zero_bit(bh->b_data, maxblocks, start);
740 if (next >= maxblocks)
741 return -1;
742 if (ext3_test_allocatable(next, bh))
743 return next;
744 jbd_lock_bh_state(bh);
745 if (jh->b_committed_data)
746 start = ext3_find_next_zero_bit(jh->b_committed_data,
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700747 maxblocks, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 jbd_unlock_bh_state(bh);
749 }
750 return -1;
751}
752
Mingming Cao36faadc142006-09-27 01:49:32 -0700753/**
754 * find_next_usable_block()
755 * @start: the starting block (group relative) to find next
756 * allocatable block in bitmap.
757 * @bh: bufferhead contains the block group bitmap
758 * @maxblocks: the ending block (group relative) for the search
759 *
760 * Find an allocatable block in a bitmap. We honor both the bitmap and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * its last-committed copy (if that exists), and perform the "most
762 * appropriate allocation" algorithm of looking for a free block near
763 * the initial goal; then for a free byte somewhere in the bitmap; then
764 * for any free bit in the bitmap.
765 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700766static ext3_grpblk_t
767find_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
768 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700770 ext3_grpblk_t here, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 char *p, *r;
772
773 if (start > 0) {
774 /*
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700775 * The goal was occupied; search forward for a free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * block within the next XX blocks.
777 *
778 * end_goal is more or less random, but it has to be
779 * less than EXT3_BLOCKS_PER_GROUP. Aligning up to the
780 * next 64-bit boundary is simple..
781 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700782 ext3_grpblk_t end_goal = (start + 63) & ~63;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (end_goal > maxblocks)
784 end_goal = maxblocks;
785 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
786 if (here < end_goal && ext3_test_allocatable(here, bh))
787 return here;
788 ext3_debug("Bit not found near goal\n");
789 }
790
791 here = start;
792 if (here < 0)
793 here = 0;
794
Namhyung Kim57e94d82010-10-11 02:10:45 +0900795 p = bh->b_data + (here >> 3);
Hugh Dickins7d1c5202006-12-06 20:41:30 -0800796 r = memscan(p, 0, ((maxblocks + 7) >> 3) - (here >> 3));
Namhyung Kim57e94d82010-10-11 02:10:45 +0900797 next = (r - bh->b_data) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (next < maxblocks && next >= start && ext3_test_allocatable(next, bh))
800 return next;
801
802 /*
803 * The bitmap search --- search forward alternately through the actual
804 * bitmap and the last-committed copy until we find a bit free in
805 * both
806 */
807 here = bitmap_search_next_usable_block(here, bh, maxblocks);
808 return here;
809}
810
Mingming Cao36faadc142006-09-27 01:49:32 -0700811/**
812 * claim_block()
Namhyung Kima4c18ad2010-10-19 00:34:35 +0900813 * @lock: the spin lock for this block group
Mingming Cao36faadc142006-09-27 01:49:32 -0700814 * @block: the free block (group relative) to allocate
Namhyung Kima4c18ad2010-10-19 00:34:35 +0900815 * @bh: the buffer_head contains the block group bitmap
Mingming Cao36faadc142006-09-27 01:49:32 -0700816 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * We think we can allocate this block in this bitmap. Try to set the bit.
818 * If that succeeds then check that nobody has allocated and then freed the
819 * block since we saw that is was not marked in b_committed_data. If it _was_
820 * allocated and freed then clear the bit in the bitmap again and return
821 * zero (failure).
822 */
823static inline int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700824claim_block(spinlock_t *lock, ext3_grpblk_t block, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 struct journal_head *jh = bh2jh(bh);
827 int ret;
828
829 if (ext3_set_bit_atomic(lock, block, bh->b_data))
830 return 0;
831 jbd_lock_bh_state(bh);
832 if (jh->b_committed_data && ext3_test_bit(block,jh->b_committed_data)) {
833 ext3_clear_bit_atomic(lock, block, bh->b_data);
834 ret = 0;
835 } else {
836 ret = 1;
837 }
838 jbd_unlock_bh_state(bh);
839 return ret;
840}
841
Mingming Cao36faadc142006-09-27 01:49:32 -0700842/**
843 * ext3_try_to_allocate()
844 * @sb: superblock
845 * @handle: handle to this transaction
846 * @group: given allocation block group
847 * @bitmap_bh: bufferhead holds the block bitmap
848 * @grp_goal: given target block within the group
849 * @count: target number of blocks to allocate
850 * @my_rsv: reservation window
851 *
852 * Attempt to allocate blocks within a give range. Set the range of allocation
853 * first, then find the first free bit(s) from the bitmap (within the range),
854 * and at last, allocate the blocks by claiming the found free bit as allocated.
855 *
856 * To set the range of this allocation:
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700857 * if there is a reservation window, only try to allocate block(s) from the
Mingming Cao36faadc142006-09-27 01:49:32 -0700858 * file's own reservation window;
859 * Otherwise, the allocation range starts from the give goal block, ends at
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700860 * the block group's last block.
Mingming Cao36faadc142006-09-27 01:49:32 -0700861 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * If we failed to allocate the desired block then we may end up crossing to a
863 * new bitmap. In that case we must release write access to the old one via
864 * ext3_journal_release_buffer(), else we'll run out of credits.
865 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700866static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867ext3_try_to_allocate(struct super_block *sb, handle_t *handle, int group,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700868 struct buffer_head *bitmap_bh, ext3_grpblk_t grp_goal,
Mingming Caob54e41e2006-03-26 01:37:57 -0800869 unsigned long *count, struct ext3_reserve_window *my_rsv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700871 ext3_fsblk_t group_first_block;
872 ext3_grpblk_t start, end;
Mingming Caob54e41e2006-03-26 01:37:57 -0800873 unsigned long num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /* we do allocation within the reservation window if we have a window */
876 if (my_rsv) {
Mingming Cao43d23f92006-06-25 05:48:07 -0700877 group_first_block = ext3_group_first_block_no(sb, group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (my_rsv->_rsv_start >= group_first_block)
879 start = my_rsv->_rsv_start - group_first_block;
880 else
881 /* reservation window cross group boundary */
882 start = 0;
883 end = my_rsv->_rsv_end - group_first_block + 1;
884 if (end > EXT3_BLOCKS_PER_GROUP(sb))
885 /* reservation window crosses group boundary */
886 end = EXT3_BLOCKS_PER_GROUP(sb);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700887 if ((start <= grp_goal) && (grp_goal < end))
888 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 else
Mingming Cao1c2bf372006-06-25 05:48:06 -0700890 grp_goal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 } else {
Mingming Cao1c2bf372006-06-25 05:48:06 -0700892 if (grp_goal > 0)
893 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 else
895 start = 0;
896 end = EXT3_BLOCKS_PER_GROUP(sb);
897 }
898
899 BUG_ON(start > EXT3_BLOCKS_PER_GROUP(sb));
900
901repeat:
Mingming Cao1c2bf372006-06-25 05:48:06 -0700902 if (grp_goal < 0 || !ext3_test_allocatable(grp_goal, bitmap_bh)) {
903 grp_goal = find_next_usable_block(start, bitmap_bh, end);
904 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 goto fail_access;
906 if (!my_rsv) {
907 int i;
908
Mingming Cao1c2bf372006-06-25 05:48:06 -0700909 for (i = 0; i < 7 && grp_goal > start &&
910 ext3_test_allocatable(grp_goal - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 bitmap_bh);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700912 i++, grp_goal--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 ;
914 }
915 }
Mingming Cao1c2bf372006-06-25 05:48:06 -0700916 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Mingming Cao36faadc142006-09-27 01:49:32 -0700918 if (!claim_block(sb_bgl_lock(EXT3_SB(sb), group),
919 grp_goal, bitmap_bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /*
921 * The block was allocated by another thread, or it was
922 * allocated and then freed by another thread
923 */
924 start++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700925 grp_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (start >= end)
927 goto fail_access;
928 goto repeat;
929 }
Mingming Caob54e41e2006-03-26 01:37:57 -0800930 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700931 grp_goal++;
932 while (num < *count && grp_goal < end
933 && ext3_test_allocatable(grp_goal, bitmap_bh)
Mingming Cao36faadc142006-09-27 01:49:32 -0700934 && claim_block(sb_bgl_lock(EXT3_SB(sb), group),
935 grp_goal, bitmap_bh)) {
Mingming Caob54e41e2006-03-26 01:37:57 -0800936 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700937 grp_goal++;
Mingming Caob54e41e2006-03-26 01:37:57 -0800938 }
939 *count = num;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700940 return grp_goal - num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941fail_access:
Mingming Caob54e41e2006-03-26 01:37:57 -0800942 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return -1;
944}
945
946/**
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700947 * find_next_reservable_window():
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * find a reservable space within the given range.
949 * It does not allocate the reservation window for now:
950 * alloc_new_reservation() will do the work later.
951 *
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700952 * @search_head: the head of the searching list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 * This is not necessarily the list head of the whole filesystem
954 *
955 * We have both head and start_block to assist the search
956 * for the reservable space. The list starts from head,
957 * but we will shift to the place where start_block is,
958 * then start from there, when looking for a reservable space.
959 *
Namhyung Kima4c18ad2010-10-19 00:34:35 +0900960 * @my_rsv: the reservation window
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 *
Namhyung Kima4c18ad2010-10-19 00:34:35 +0900962 * @sb: the super block
963 *
964 * @start_block: the first block we consider to start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * the real search from
966 *
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700967 * @last_block:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * the maximum block number that our goal reservable space
969 * could start from. This is normally the last block in this
970 * group. The search will end when we found the start of next
971 * possible reservable space is out of this boundary.
972 * This could handle the cross boundary reservation window
973 * request.
974 *
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700975 * basically we search from the given range, rather than the whole
976 * reservation double linked list, (start_block, last_block)
977 * to find a free region that is of my size and has not
978 * been reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700981static int find_next_reservable_window(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct ext3_reserve_window_node *search_head,
Mingming Cao21fe3472005-06-28 20:45:16 -0700983 struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700984 struct super_block * sb,
985 ext3_fsblk_t start_block,
986 ext3_fsblk_t last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct rb_node *next;
989 struct ext3_reserve_window_node *rsv, *prev;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700990 ext3_fsblk_t cur;
Mingming Cao21fe3472005-06-28 20:45:16 -0700991 int size = my_rsv->rsv_goal_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 /* TODO: make the start of the reservation window byte-aligned */
994 /* cur = *start_block & ~7;*/
Mingming Cao21fe3472005-06-28 20:45:16 -0700995 cur = start_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 rsv = search_head;
997 if (!rsv)
Mingming Cao21fe3472005-06-28 20:45:16 -0700998 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 while (1) {
1001 if (cur <= rsv->rsv_end)
1002 cur = rsv->rsv_end + 1;
1003
1004 /* TODO?
1005 * in the case we could not find a reservable space
1006 * that is what is expected, during the re-search, we could
1007 * remember what's the largest reservable space we could have
1008 * and return that one.
1009 *
1010 * For now it will fail if we could not find the reservable
1011 * space with expected-size (or more)...
1012 */
1013 if (cur > last_block)
Mingming Cao21fe3472005-06-28 20:45:16 -07001014 return -1; /* fail */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 prev = rsv;
1017 next = rb_next(&rsv->rsv_node);
Hugh Dickinsc56d2562006-12-06 20:41:27 -08001018 rsv = rb_entry(next,struct ext3_reserve_window_node,rsv_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /*
1021 * Reached the last reservation, we can just append to the
1022 * previous one.
1023 */
1024 if (!next)
1025 break;
1026
1027 if (cur + size <= rsv->rsv_start) {
1028 /*
1029 * Found a reserveable space big enough. We could
1030 * have a reservation across the group boundary here
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001031 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 break;
1033 }
1034 }
1035 /*
1036 * we come here either :
1037 * when we reach the end of the whole list,
1038 * and there is empty reservable space after last entry in the list.
1039 * append it to the end of the list.
1040 *
1041 * or we found one reservable space in the middle of the list,
1042 * return the reservation window that we could append to.
1043 * succeed.
1044 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001045
1046 if ((prev != my_rsv) && (!rsv_is_empty(&my_rsv->rsv_window)))
1047 rsv_window_remove(sb, my_rsv);
1048
1049 /*
1050 * Let's book the whole avaliable window for now. We will check the
1051 * disk bitmap later and then, if there are free blocks then we adjust
1052 * the window size if it's larger than requested.
1053 * Otherwise, we will remove this node from the tree next time
1054 * call find_next_reservable_window.
1055 */
1056 my_rsv->rsv_start = cur;
1057 my_rsv->rsv_end = cur + size - 1;
1058 my_rsv->rsv_alloc_hit = 0;
1059
1060 if (prev != my_rsv)
1061 ext3_rsv_window_add(sb, my_rsv);
1062
1063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
1066/**
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001067 * alloc_new_reservation()--allocate a new reservation window
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 *
1069 * To make a new reservation, we search part of the filesystem
1070 * reservation list (the list that inside the group). We try to
1071 * allocate a new reservation window near the allocation goal,
1072 * or the beginning of the group, if there is no goal.
1073 *
1074 * We first find a reservable space after the goal, then from
1075 * there, we check the bitmap for the first free block after
1076 * it. If there is no free block until the end of group, then the
1077 * whole group is full, we failed. Otherwise, check if the free
1078 * block is inside the expected reservable space, if so, we
1079 * succeed.
1080 * If the first free block is outside the reservable space, then
1081 * start from the first free block, we search for next available
1082 * space, and go on.
1083 *
1084 * on succeed, a new reservation will be found and inserted into the list
1085 * It contains at least one free block, and it does not overlap with other
1086 * reservation windows.
1087 *
1088 * failed: we failed to find a reservation window in this group
1089 *
Namhyung Kima4c18ad2010-10-19 00:34:35 +09001090 * @my_rsv: the reservation window
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 *
Mingming Cao1c2bf372006-06-25 05:48:06 -07001092 * @grp_goal: The goal (group-relative). It is where the search for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 * free reservable space should start from.
Mingming Cao1c2bf372006-06-25 05:48:06 -07001094 * if we have a grp_goal(grp_goal >0 ), then start from there,
1095 * no grp_goal(grp_goal = -1), we start from the first block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 * of the group.
1097 *
1098 * @sb: the super block
1099 * @group: the group we are trying to allocate in
1100 * @bitmap_bh: the block group block bitmap
Mingming Cao21fe3472005-06-28 20:45:16 -07001101 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 */
1103static int alloc_new_reservation(struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001104 ext3_grpblk_t grp_goal, struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 unsigned int group, struct buffer_head *bitmap_bh)
1106{
1107 struct ext3_reserve_window_node *search_head;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001108 ext3_fsblk_t group_first_block, group_end_block, start_block;
1109 ext3_grpblk_t first_free_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 struct rb_root *fs_rsv_root = &EXT3_SB(sb)->s_rsv_window_root;
1111 unsigned long size;
Mingming Cao21fe3472005-06-28 20:45:16 -07001112 int ret;
1113 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Mingming Cao43d23f92006-06-25 05:48:07 -07001115 group_first_block = ext3_group_first_block_no(sb, group);
Eric Sandeen32c2d2b2006-09-27 01:49:36 -07001116 group_end_block = group_first_block + (EXT3_BLOCKS_PER_GROUP(sb) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Mingming Cao1c2bf372006-06-25 05:48:06 -07001118 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 start_block = group_first_block;
1120 else
Mingming Cao1c2bf372006-06-25 05:48:06 -07001121 start_block = grp_goal + group_first_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 size = my_rsv->rsv_goal_size;
Mingming Cao21fe3472005-06-28 20:45:16 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (!rsv_is_empty(&my_rsv->rsv_window)) {
1126 /*
1127 * if the old reservation is cross group boundary
1128 * and if the goal is inside the old reservation window,
1129 * we will come here when we just failed to allocate from
1130 * the first part of the window. We still have another part
1131 * that belongs to the next group. In this case, there is no
1132 * point to discard our window and try to allocate a new one
1133 * in this group(which will fail). we should
1134 * keep the reservation window, just simply move on.
1135 *
1136 * Maybe we could shift the start block of the reservation
1137 * window to the first block of next group.
1138 */
1139
1140 if ((my_rsv->rsv_start <= group_end_block) &&
1141 (my_rsv->rsv_end > group_end_block) &&
1142 (start_block >= my_rsv->rsv_start))
1143 return -1;
1144
1145 if ((my_rsv->rsv_alloc_hit >
1146 (my_rsv->rsv_end - my_rsv->rsv_start + 1) / 2)) {
1147 /*
Mingming Cao36faadc142006-09-27 01:49:32 -07001148 * if the previously allocation hit ratio is
1149 * greater than 1/2, then we double the size of
1150 * the reservation window the next time,
1151 * otherwise we keep the same size window
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
1153 size = size * 2;
1154 if (size > EXT3_MAX_RESERVE_BLOCKS)
1155 size = EXT3_MAX_RESERVE_BLOCKS;
1156 my_rsv->rsv_goal_size= size;
1157 }
1158 }
Mingming Cao21fe3472005-06-28 20:45:16 -07001159
1160 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /*
1162 * shift the search start to the window near the goal block
1163 */
1164 search_head = search_reserve_window(fs_rsv_root, start_block);
1165
1166 /*
1167 * find_next_reservable_window() simply finds a reservable window
1168 * inside the given range(start_block, group_end_block).
1169 *
1170 * To make sure the reservation window has a free bit inside it, we
1171 * need to check the bitmap after we found a reservable window.
1172 */
1173retry:
Mingming Cao21fe3472005-06-28 20:45:16 -07001174 ret = find_next_reservable_window(search_head, my_rsv, sb,
1175 start_block, group_end_block);
1176
1177 if (ret == -1) {
1178 if (!rsv_is_empty(&my_rsv->rsv_window))
1179 rsv_window_remove(sb, my_rsv);
1180 spin_unlock(rsv_lock);
1181 return -1;
1182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /*
1185 * On success, find_next_reservable_window() returns the
1186 * reservation window where there is a reservable space after it.
1187 * Before we reserve this reservable space, we need
1188 * to make sure there is at least a free block inside this region.
1189 *
1190 * searching the first free bit on the block bitmap and copy of
1191 * last committed bitmap alternatively, until we found a allocatable
1192 * block. Search start from the start block of the reservable space
1193 * we just found.
1194 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001195 spin_unlock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 first_free_block = bitmap_search_next_usable_block(
Mingming Cao21fe3472005-06-28 20:45:16 -07001197 my_rsv->rsv_start - group_first_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 bitmap_bh, group_end_block - group_first_block + 1);
1199
1200 if (first_free_block < 0) {
1201 /*
1202 * no free block left on the bitmap, no point
1203 * to reserve the space. return failed.
1204 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001205 spin_lock(rsv_lock);
1206 if (!rsv_is_empty(&my_rsv->rsv_window))
1207 rsv_window_remove(sb, my_rsv);
1208 spin_unlock(rsv_lock);
1209 return -1; /* failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
Mingming Cao21fe3472005-06-28 20:45:16 -07001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 start_block = first_free_block + group_first_block;
1213 /*
1214 * check if the first free block is within the
Mingming Cao21fe3472005-06-28 20:45:16 -07001215 * free space we just reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
Hugh Dickinsff50dc52006-12-06 20:41:25 -08001217 if (start_block >= my_rsv->rsv_start && start_block <= my_rsv->rsv_end)
Mingming Cao21fe3472005-06-28 20:45:16 -07001218 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /*
1220 * if the first free bit we found is out of the reservable space
Mingming Cao21fe3472005-06-28 20:45:16 -07001221 * continue search for next reservable space,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * start from where the free block is,
1223 * we also shift the list head to where we stopped last time
1224 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001225 search_head = my_rsv;
1226 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Mingming Cao36faadc142006-09-27 01:49:32 -07001230/**
1231 * try_to_extend_reservation()
1232 * @my_rsv: given reservation window
1233 * @sb: super block
1234 * @size: the delta to extend
1235 *
1236 * Attempt to expand the reservation window large enough to have
1237 * required number of free blocks
1238 *
1239 * Since ext3_try_to_allocate() will always allocate blocks within
1240 * the reservation window range, if the window size is too small,
1241 * multiple blocks allocation has to stop at the end of the reservation
1242 * window. To make this more efficient, given the total number of
1243 * blocks needed and the current size of the window, we try to
1244 * expand the reservation window size if necessary on a best-effort
1245 * basis before ext3_new_blocks() tries to allocate blocks,
1246 */
Mingming Caod48589b2006-03-26 01:37:59 -08001247static void try_to_extend_reservation(struct ext3_reserve_window_node *my_rsv,
1248 struct super_block *sb, int size)
1249{
1250 struct ext3_reserve_window_node *next_rsv;
1251 struct rb_node *next;
1252 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
1253
1254 if (!spin_trylock(rsv_lock))
1255 return;
1256
1257 next = rb_next(&my_rsv->rsv_node);
1258
1259 if (!next)
1260 my_rsv->rsv_end += size;
1261 else {
Hugh Dickinsc56d2562006-12-06 20:41:27 -08001262 next_rsv = rb_entry(next, struct ext3_reserve_window_node, rsv_node);
Mingming Caod48589b2006-03-26 01:37:59 -08001263
1264 if ((next_rsv->rsv_start - my_rsv->rsv_end - 1) >= size)
1265 my_rsv->rsv_end += size;
1266 else
1267 my_rsv->rsv_end = next_rsv->rsv_start - 1;
1268 }
1269 spin_unlock(rsv_lock);
1270}
1271
Mingming Cao36faadc142006-09-27 01:49:32 -07001272/**
1273 * ext3_try_to_allocate_with_rsv()
1274 * @sb: superblock
1275 * @handle: handle to this transaction
1276 * @group: given allocation block group
1277 * @bitmap_bh: bufferhead holds the block bitmap
1278 * @grp_goal: given target block within the group
Mingming Cao36faadc142006-09-27 01:49:32 -07001279 * @my_rsv: reservation window
Namhyung Kima4c18ad2010-10-19 00:34:35 +09001280 * @count: target number of blocks to allocate
Mingming Cao36faadc142006-09-27 01:49:32 -07001281 * @errp: pointer to store the error code
1282 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 * This is the main function used to allocate a new block and its reservation
1284 * window.
1285 *
1286 * Each time when a new block allocation is need, first try to allocate from
1287 * its own reservation. If it does not have a reservation window, instead of
1288 * looking for a free bit on bitmap first, then look up the reservation list to
1289 * see if it is inside somebody else's reservation window, we try to allocate a
1290 * reservation window for it starting from the goal first. Then do the block
1291 * allocation within the reservation window.
1292 *
1293 * This will avoid keeping on searching the reservation list again and
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001294 * again when somebody is looking for a free block (without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 * reservation), and there are lots of free blocks, but they are all
1296 * being reserved.
1297 *
Mingming Cao36faadc142006-09-27 01:49:32 -07001298 * We use a red-black tree for the per-filesystem reservation list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 *
1300 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001301static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302ext3_try_to_allocate_with_rsv(struct super_block *sb, handle_t *handle,
1303 unsigned int group, struct buffer_head *bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001304 ext3_grpblk_t grp_goal,
1305 struct ext3_reserve_window_node * my_rsv,
Mingming Caob54e41e2006-03-26 01:37:57 -08001306 unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Eric Sandeen32c2d2b2006-09-27 01:49:36 -07001308 ext3_fsblk_t group_first_block, group_last_block;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001309 ext3_grpblk_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 int fatal;
Mingming Caob54e41e2006-03-26 01:37:57 -08001311 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 *errp = 0;
1314
1315 /*
1316 * Make sure we use undo access for the bitmap, because it is critical
1317 * that we do the frozen_data COW on bitmap buffers in all cases even
1318 * if the buffer is in BJ_Forget state in the committing transaction.
1319 */
1320 BUFFER_TRACE(bitmap_bh, "get undo access for new block");
1321 fatal = ext3_journal_get_undo_access(handle, bitmap_bh);
1322 if (fatal) {
1323 *errp = fatal;
1324 return -1;
1325 }
1326
1327 /*
1328 * we don't deal with reservation when
1329 * filesystem is mounted without reservation
1330 * or the file is not a regular file
1331 * or last attempt to allocate a block with reservation turned on failed
1332 */
1333 if (my_rsv == NULL ) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001334 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001335 grp_goal, count, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto out;
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /*
Mingming Cao1c2bf372006-06-25 05:48:06 -07001339 * grp_goal is a group relative block number (if there is a goal)
Hugh Dickins16502422006-12-06 20:41:25 -08001340 * 0 <= grp_goal < EXT3_BLOCKS_PER_GROUP(sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * first block is a filesystem wide block number
1342 * first block is the block number of the first block in this group
1343 */
Mingming Cao43d23f92006-06-25 05:48:07 -07001344 group_first_block = ext3_group_first_block_no(sb, group);
Eric Sandeen32c2d2b2006-09-27 01:49:36 -07001345 group_last_block = group_first_block + (EXT3_BLOCKS_PER_GROUP(sb) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /*
1348 * Basically we will allocate a new block from inode's reservation
1349 * window.
1350 *
1351 * We need to allocate a new reservation window, if:
1352 * a) inode does not have a reservation window; or
1353 * b) last attempt to allocate a block from existing reservation
1354 * failed; or
1355 * c) we come here with a goal and with a reservation window
1356 *
1357 * We do not need to allocate a new reservation window if we come here
1358 * at the beginning with a goal and the goal is inside the window, or
1359 * we don't have a goal but already have a reservation window.
1360 * then we could go to allocate from the reservation window directly.
1361 */
1362 while (1) {
Mingming Cao21fe3472005-06-28 20:45:16 -07001363 if (rsv_is_empty(&my_rsv->rsv_window) || (ret < 0) ||
Mingming Cao36faadc142006-09-27 01:49:32 -07001364 !goal_in_my_reservation(&my_rsv->rsv_window,
1365 grp_goal, group, sb)) {
Mingming Caod48589b2006-03-26 01:37:59 -08001366 if (my_rsv->rsv_goal_size < *count)
1367 my_rsv->rsv_goal_size = *count;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001368 ret = alloc_new_reservation(my_rsv, grp_goal, sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 group, bitmap_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (ret < 0)
1371 break; /* failed */
1372
Mingming Cao36faadc142006-09-27 01:49:32 -07001373 if (!goal_in_my_reservation(&my_rsv->rsv_window,
1374 grp_goal, group, sb))
Mingming Cao1c2bf372006-06-25 05:48:06 -07001375 grp_goal = -1;
Hugh Dickins16502422006-12-06 20:41:25 -08001376 } else if (grp_goal >= 0) {
Mingming Cao2bd94bd2006-12-06 20:38:18 -08001377 int curr = my_rsv->rsv_end -
1378 (grp_goal + group_first_block) + 1;
1379
1380 if (curr < *count)
1381 try_to_extend_reservation(my_rsv, sb,
1382 *count - curr);
1383 }
Mingming Caod48589b2006-03-26 01:37:59 -08001384
Eric Sandeen32c2d2b2006-09-27 01:49:36 -07001385 if ((my_rsv->rsv_start > group_last_block) ||
1386 (my_rsv->rsv_end < group_first_block)) {
Mingming Cao321fb9e2006-09-27 01:49:32 -07001387 rsv_window_dump(&EXT3_SB(sb)->s_rsv_window_root, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 BUG();
Mingming Cao321fb9e2006-09-27 01:49:32 -07001389 }
Mingming Cao36faadc142006-09-27 01:49:32 -07001390 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
1391 grp_goal, &num, &my_rsv->rsv_window);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (ret >= 0) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001393 my_rsv->rsv_alloc_hit += num;
1394 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 break; /* succeed */
1396 }
Mingming Caob54e41e2006-03-26 01:37:57 -08001397 num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399out:
1400 if (ret >= 0) {
1401 BUFFER_TRACE(bitmap_bh, "journal_dirty_metadata for "
1402 "bitmap block");
1403 fatal = ext3_journal_dirty_metadata(handle, bitmap_bh);
1404 if (fatal) {
1405 *errp = fatal;
1406 return -1;
1407 }
1408 return ret;
1409 }
1410
1411 BUFFER_TRACE(bitmap_bh, "journal_release_buffer");
1412 ext3_journal_release_buffer(handle, bitmap_bh);
1413 return ret;
1414}
1415
Mingming Cao36faadc142006-09-27 01:49:32 -07001416/**
1417 * ext3_has_free_blocks()
1418 * @sbi: in-core super block structure.
1419 *
1420 * Check if filesystem has at least 1 free block available for allocation.
1421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422static int ext3_has_free_blocks(struct ext3_sb_info *sbi)
1423{
Mingming Cao1c2bf372006-06-25 05:48:06 -07001424 ext3_fsblk_t free_blocks, root_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
1427 root_blocks = le32_to_cpu(sbi->s_es->s_r_blocks_count);
1428 if (free_blocks < root_blocks + 1 && !capable(CAP_SYS_RESOURCE) &&
David Howells6a2f90e2008-11-14 10:38:51 +11001429 sbi->s_resuid != current_fsuid() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 (sbi->s_resgid == 0 || !in_group_p (sbi->s_resgid))) {
1431 return 0;
1432 }
1433 return 1;
1434}
1435
Mingming Cao36faadc142006-09-27 01:49:32 -07001436/**
1437 * ext3_should_retry_alloc()
1438 * @sb: super block
1439 * @retries number of attemps has been made
1440 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 * ext3_should_retry_alloc() is called when ENOSPC is returned, and if
1442 * it is profitable to retry the operation, this function will wait
1443 * for the current or commiting transaction to complete, and then
1444 * return TRUE.
Mingming Cao36faadc142006-09-27 01:49:32 -07001445 *
1446 * if the total number of retries exceed three times, return FALSE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
1448int ext3_should_retry_alloc(struct super_block *sb, int *retries)
1449{
1450 if (!ext3_has_free_blocks(EXT3_SB(sb)) || (*retries)++ > 3)
1451 return 0;
1452
1453 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
1454
1455 return journal_force_commit_nested(EXT3_SB(sb)->s_journal);
1456}
1457
Mingming Cao36faadc142006-09-27 01:49:32 -07001458/**
1459 * ext3_new_blocks() -- core block(s) allocation function
1460 * @handle: handle to this transaction
1461 * @inode: file inode
1462 * @goal: given target block(filesystem wide)
1463 * @count: target number of blocks to allocate
1464 * @errp: error code
1465 *
1466 * ext3_new_blocks uses a goal block to assist allocation. It tries to
1467 * allocate block(s) from the block group contains the goal block first. If that
1468 * fails, it will try to allocate block(s) from other block groups without
1469 * any specific goal block.
1470 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001472ext3_fsblk_t ext3_new_blocks(handle_t *handle, struct inode *inode,
1473 ext3_fsblk_t goal, unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 struct buffer_head *bitmap_bh = NULL;
1476 struct buffer_head *gdp_bh;
1477 int group_no;
1478 int goal_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001479 ext3_grpblk_t grp_target_blk; /* blockgroup relative goal block */
1480 ext3_grpblk_t grp_alloc_blk; /* blockgroup-relative allocated block*/
1481 ext3_fsblk_t ret_block; /* filesyetem-wide allocated block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int bgi; /* blockgroup iteration index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 int fatal = 0, err;
1484 int performed_allocation = 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001485 ext3_grpblk_t free_blocks; /* number of free blocks in a group */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 struct super_block *sb;
1487 struct ext3_group_desc *gdp;
1488 struct ext3_super_block *es;
1489 struct ext3_sb_info *sbi;
1490 struct ext3_reserve_window_node *my_rsv = NULL;
1491 struct ext3_block_alloc_info *block_i;
1492 unsigned short windowsz = 0;
1493#ifdef EXT3FS_DEBUG
1494 static int goal_hits, goal_attempts;
1495#endif
1496 unsigned long ngroups;
Mingming Caob54e41e2006-03-26 01:37:57 -08001497 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 *errp = -ENOSPC;
1500 sb = inode->i_sb;
1501 if (!sb) {
1502 printk("ext3_new_block: nonexistent device");
1503 return 0;
1504 }
1505
1506 /*
1507 * Check quota for allocation of this block.
1508 */
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001509 err = dquot_alloc_block(inode, num);
1510 if (err) {
1511 *errp = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return 0;
1513 }
1514
1515 sbi = EXT3_SB(sb);
1516 es = EXT3_SB(sb)->s_es;
1517 ext3_debug("goal=%lu.\n", goal);
1518 /*
1519 * Allocate a block from reservation only when
1520 * filesystem is mounted with reservation(default,-o reservation), and
1521 * it's a regular file, and
1522 * the desired window size is greater than 0 (One could use ioctl
1523 * command EXT3_IOC_SETRSVSZ to set the window size to 0 to turn off
1524 * reservation on that particular file)
1525 */
1526 block_i = EXT3_I(inode)->i_block_alloc_info;
1527 if (block_i && ((windowsz = block_i->rsv_window_node.rsv_goal_size) > 0))
1528 my_rsv = &block_i->rsv_window_node;
1529
1530 if (!ext3_has_free_blocks(sbi)) {
1531 *errp = -ENOSPC;
1532 goto out;
1533 }
1534
1535 /*
1536 * First, test whether the goal block is free.
1537 */
1538 if (goal < le32_to_cpu(es->s_first_data_block) ||
1539 goal >= le32_to_cpu(es->s_blocks_count))
1540 goal = le32_to_cpu(es->s_first_data_block);
1541 group_no = (goal - le32_to_cpu(es->s_first_data_block)) /
1542 EXT3_BLOCKS_PER_GROUP(sb);
Mingming Cao08fb306f2006-08-27 01:23:44 -07001543 goal_group = group_no;
1544retry_alloc:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1546 if (!gdp)
1547 goto io_error;
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1550 /*
1551 * if there is not enough free blocks to make a new resevation
1552 * turn off reservation for this allocation
1553 */
1554 if (my_rsv && (free_blocks < windowsz)
Mingming Cao46d01a22008-10-18 20:27:56 -07001555 && (free_blocks > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 && (rsv_is_empty(&my_rsv->rsv_window)))
1557 my_rsv = NULL;
1558
1559 if (free_blocks > 0) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001560 grp_target_blk = ((goal - le32_to_cpu(es->s_first_data_block)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 EXT3_BLOCKS_PER_GROUP(sb));
1562 bitmap_bh = read_block_bitmap(sb, group_no);
1563 if (!bitmap_bh)
1564 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001565 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1566 group_no, bitmap_bh, grp_target_blk,
1567 my_rsv, &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (fatal)
1569 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001570 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 goto allocated;
1572 }
1573
1574 ngroups = EXT3_SB(sb)->s_groups_count;
1575 smp_rmb();
1576
1577 /*
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001578 * Now search the rest of the groups. We assume that
Akinobu Mita144704e2008-02-06 01:40:15 -08001579 * group_no and gdp correctly point to the last group visited.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
1581 for (bgi = 0; bgi < ngroups; bgi++) {
1582 group_no++;
1583 if (group_no >= ngroups)
1584 group_no = 0;
1585 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
Hugh Dickins2823b552006-12-06 20:41:28 -08001586 if (!gdp)
1587 goto io_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1589 /*
Frans van de Wiel8cef1072010-03-15 19:29:34 +01001590 * skip this group (and avoid loading bitmap) if there
1591 * are no free blocks
1592 */
1593 if (!free_blocks)
1594 continue;
1595 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 * skip this group if the number of
1597 * free blocks is less than half of the reservation
1598 * window size.
1599 */
Mingming Cao46d01a22008-10-18 20:27:56 -07001600 if (my_rsv && (free_blocks <= (windowsz/2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 continue;
1602
1603 brelse(bitmap_bh);
1604 bitmap_bh = read_block_bitmap(sb, group_no);
1605 if (!bitmap_bh)
1606 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001607 /*
1608 * try to allocate block(s) from this group, without a goal(-1).
1609 */
1610 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1611 group_no, bitmap_bh, -1, my_rsv,
1612 &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (fatal)
1614 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001615 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto allocated;
1617 }
1618 /*
1619 * We may end up a bogus ealier ENOSPC error due to
1620 * filesystem is "full" of reservations, but
1621 * there maybe indeed free blocks avaliable on disk
1622 * In this case, we just forget about the reservations
1623 * just do block allocation as without reservations.
1624 */
1625 if (my_rsv) {
1626 my_rsv = NULL;
Hugh Dickinsef503672006-12-06 20:41:23 -08001627 windowsz = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 group_no = goal_group;
Mingming Cao08fb306f2006-08-27 01:23:44 -07001629 goto retry_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631 /* No space left on the device */
1632 *errp = -ENOSPC;
1633 goto out;
1634
1635allocated:
1636
1637 ext3_debug("using block group %d(%d)\n",
1638 group_no, gdp->bg_free_blocks_count);
1639
1640 BUFFER_TRACE(gdp_bh, "get_write_access");
1641 fatal = ext3_journal_get_write_access(handle, gdp_bh);
1642 if (fatal)
1643 goto out;
1644
Mingming Cao43d23f92006-06-25 05:48:07 -07001645 ret_block = grp_alloc_blk + ext3_group_first_block_no(sb, group_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Mingming Cao1c2bf372006-06-25 05:48:06 -07001647 if (in_range(le32_to_cpu(gdp->bg_block_bitmap), ret_block, num) ||
1648 in_range(le32_to_cpu(gdp->bg_inode_bitmap), ret_block, num) ||
1649 in_range(ret_block, le32_to_cpu(gdp->bg_inode_table),
Mingming Caofaa56972006-03-26 01:37:58 -08001650 EXT3_SB(sb)->s_itb_per_group) ||
Mingming Cao1c2bf372006-06-25 05:48:06 -07001651 in_range(ret_block + num - 1, le32_to_cpu(gdp->bg_inode_table),
Aneesh Kumar K.Vfeda58d2008-02-06 01:40:13 -08001652 EXT3_SB(sb)->s_itb_per_group)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 ext3_error(sb, "ext3_new_block",
1654 "Allocating block in system zone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -07001655 "blocks from "E3FSBLK", length %lu",
1656 ret_block, num);
Aneesh Kumar K.V2588ef82008-04-28 02:16:14 -07001657 /*
1658 * claim_block() marked the blocks we allocated as in use. So we
1659 * may want to selectively mark some of the blocks as free.
1660 */
1661 goto retry_alloc;
Aneesh Kumar K.Vfeda58d2008-02-06 01:40:13 -08001662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 performed_allocation = 1;
1665
1666#ifdef CONFIG_JBD_DEBUG
1667 {
1668 struct buffer_head *debug_bh;
1669
1670 /* Record bitmap buffer state in the newly allocated block */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001671 debug_bh = sb_find_get_block(sb, ret_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (debug_bh) {
1673 BUFFER_TRACE(debug_bh, "state when allocated");
1674 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap state");
1675 brelse(debug_bh);
1676 }
1677 }
1678 jbd_lock_bh_state(bitmap_bh);
1679 spin_lock(sb_bgl_lock(sbi, group_no));
1680 if (buffer_jbd(bitmap_bh) && bh2jh(bitmap_bh)->b_committed_data) {
Mingming Caofaa56972006-03-26 01:37:58 -08001681 int i;
1682
1683 for (i = 0; i < num; i++) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001684 if (ext3_test_bit(grp_alloc_blk+i,
Mingming Caofaa56972006-03-26 01:37:58 -08001685 bh2jh(bitmap_bh)->b_committed_data)) {
1686 printk("%s: block was unexpectedly set in "
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001687 "b_committed_data\n", __func__);
Mingming Caofaa56972006-03-26 01:37:58 -08001688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
1690 }
Mingming Cao1c2bf372006-06-25 05:48:06 -07001691 ext3_debug("found bit %d\n", grp_alloc_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 spin_unlock(sb_bgl_lock(sbi, group_no));
1693 jbd_unlock_bh_state(bitmap_bh);
1694#endif
1695
Mingming Caofaa56972006-03-26 01:37:58 -08001696 if (ret_block + num - 1 >= le32_to_cpu(es->s_blocks_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 ext3_error(sb, "ext3_new_block",
Mingming Cao1c2bf372006-06-25 05:48:06 -07001698 "block("E3FSBLK") >= blocks count(%d) - "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 "block_group = %d, es == %p ", ret_block,
1700 le32_to_cpu(es->s_blocks_count), group_no, es);
1701 goto out;
1702 }
1703
1704 /*
1705 * It is up to the caller to add the new buffer to a journal
1706 * list of some description. We don't know in advance whether
1707 * the caller wants to use it as metadata or data.
1708 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001709 ext3_debug("allocating block %lu. Goal hits %d of %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 ret_block, goal_hits, goal_attempts);
1711
1712 spin_lock(sb_bgl_lock(sbi, group_no));
Marcin Slusarz50e8a282008-02-08 04:20:13 -08001713 le16_add_cpu(&gdp->bg_free_blocks_count, -num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 spin_unlock(sb_bgl_lock(sbi, group_no));
Peter Zijlstra3cb4f9f2007-10-16 23:25:42 -07001715 percpu_counter_sub(&sbi->s_freeblocks_counter, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 BUFFER_TRACE(gdp_bh, "journal_dirty_metadata for group descriptor");
1718 err = ext3_journal_dirty_metadata(handle, gdp_bh);
1719 if (!fatal)
1720 fatal = err;
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (fatal)
1723 goto out;
1724
1725 *errp = 0;
1726 brelse(bitmap_bh);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001727 dquot_free_block(inode, *count-num);
Mingming Caob54e41e2006-03-26 01:37:57 -08001728 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return ret_block;
1730
1731io_error:
1732 *errp = -EIO;
1733out:
1734 if (fatal) {
1735 *errp = fatal;
1736 ext3_std_error(sb, fatal);
1737 }
1738 /*
1739 * Undo the block allocation
1740 */
1741 if (!performed_allocation)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001742 dquot_free_block(inode, *count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 brelse(bitmap_bh);
1744 return 0;
1745}
1746
Mingming Cao1c2bf372006-06-25 05:48:06 -07001747ext3_fsblk_t ext3_new_block(handle_t *handle, struct inode *inode,
1748 ext3_fsblk_t goal, int *errp)
Mingming Caob54e41e2006-03-26 01:37:57 -08001749{
1750 unsigned long count = 1;
1751
1752 return ext3_new_blocks(handle, inode, goal, &count, errp);
1753}
1754
Mingming Cao36faadc142006-09-27 01:49:32 -07001755/**
1756 * ext3_count_free_blocks() -- count filesystem free blocks
1757 * @sb: superblock
1758 *
1759 * Adds up the number of free blocks from each block group.
1760 */
Mingming Cao43d23f92006-06-25 05:48:07 -07001761ext3_fsblk_t ext3_count_free_blocks(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Mingming Cao43d23f92006-06-25 05:48:07 -07001763 ext3_fsblk_t desc_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 struct ext3_group_desc *gdp;
1765 int i;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001766 unsigned long ngroups = EXT3_SB(sb)->s_groups_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767#ifdef EXT3FS_DEBUG
1768 struct ext3_super_block *es;
Mingming Cao43d23f92006-06-25 05:48:07 -07001769 ext3_fsblk_t bitmap_count;
1770 unsigned long x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct buffer_head *bitmap_bh = NULL;
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 es = EXT3_SB(sb)->s_es;
1774 desc_count = 0;
1775 bitmap_count = 0;
1776 gdp = NULL;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001777
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001778 smp_rmb();
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001779 for (i = 0; i < ngroups; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 gdp = ext3_get_group_desc(sb, i, NULL);
1781 if (!gdp)
1782 continue;
1783 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1784 brelse(bitmap_bh);
1785 bitmap_bh = read_block_bitmap(sb, i);
1786 if (bitmap_bh == NULL)
1787 continue;
1788
1789 x = ext3_count_free(bitmap_bh, sb->s_blocksize);
1790 printk("group %d: stored = %d, counted = %lu\n",
1791 i, le16_to_cpu(gdp->bg_free_blocks_count), x);
1792 bitmap_count += x;
1793 }
1794 brelse(bitmap_bh);
Mingming Cao43d23f92006-06-25 05:48:07 -07001795 printk("ext3_count_free_blocks: stored = "E3FSBLK
1796 ", computed = "E3FSBLK", "E3FSBLK"\n",
1797 le32_to_cpu(es->s_free_blocks_count),
1798 desc_count, bitmap_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return bitmap_count;
1800#else
1801 desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 smp_rmb();
1803 for (i = 0; i < ngroups; i++) {
1804 gdp = ext3_get_group_desc(sb, i, NULL);
1805 if (!gdp)
1806 continue;
1807 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1808 }
1809
1810 return desc_count;
1811#endif
1812}
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814static inline int test_root(int a, int b)
1815{
1816 int num = b;
1817
1818 while (a > num)
1819 num *= b;
1820 return num == a;
1821}
1822
1823static int ext3_group_sparse(int group)
1824{
1825 if (group <= 1)
1826 return 1;
1827 if (!(group & 1))
1828 return 0;
1829 return (test_root(group, 7) || test_root(group, 5) ||
1830 test_root(group, 3));
1831}
1832
1833/**
1834 * ext3_bg_has_super - number of blocks used by the superblock in group
1835 * @sb: superblock for filesystem
1836 * @group: group number to check
1837 *
1838 * Return the number of blocks used by the superblock (primary or backup)
1839 * in this group. Currently this will be only 0 or 1.
1840 */
1841int ext3_bg_has_super(struct super_block *sb, int group)
1842{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001843 if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1844 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1845 !ext3_group_sparse(group))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return 0;
1847 return 1;
1848}
1849
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001850static unsigned long ext3_bg_num_gdb_meta(struct super_block *sb, int group)
1851{
1852 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
1853 unsigned long first = metagroup * EXT3_DESC_PER_BLOCK(sb);
1854 unsigned long last = first + EXT3_DESC_PER_BLOCK(sb) - 1;
1855
1856 if (group == first || group == first + 1 || group == last)
1857 return 1;
1858 return 0;
1859}
1860
1861static unsigned long ext3_bg_num_gdb_nometa(struct super_block *sb, int group)
1862{
Akinobu Mita859cb932008-02-06 01:40:17 -08001863 return ext3_bg_has_super(sb, group) ? EXT3_SB(sb)->s_gdb_count : 0;
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001864}
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866/**
1867 * ext3_bg_num_gdb - number of blocks used by the group table in group
1868 * @sb: superblock for filesystem
1869 * @group: group number to check
1870 *
1871 * Return the number of blocks used by the group descriptor table
1872 * (primary or backup) in this group. In the future there may be a
1873 * different number of descriptor blocks in each group.
1874 */
1875unsigned long ext3_bg_num_gdb(struct super_block *sb, int group)
1876{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001877 unsigned long first_meta_bg =
1878 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_meta_bg);
1879 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001881 if (!EXT3_HAS_INCOMPAT_FEATURE(sb,EXT3_FEATURE_INCOMPAT_META_BG) ||
1882 metagroup < first_meta_bg)
1883 return ext3_bg_num_gdb_nometa(sb,group);
1884
1885 return ext3_bg_num_gdb_meta(sb,group);
1886
1887}