blob: b1633cd28ecaafd4c96c16064036b0a68d29b211 [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
14#include <linux/config.h>
15#include <linux/time.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#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
36 * when a file system is mounted (see ext3_read_super).
37 */
38
39
40#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
41
42struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
43 unsigned int block_group,
44 struct buffer_head ** bh)
45{
46 unsigned long group_desc;
47 unsigned long offset;
48 struct ext3_group_desc * desc;
49 struct ext3_sb_info *sbi = EXT3_SB(sb);
50
51 if (block_group >= sbi->s_groups_count) {
52 ext3_error (sb, "ext3_get_group_desc",
53 "block_group >= groups_count - "
54 "block_group = %d, groups_count = %lu",
55 block_group, sbi->s_groups_count);
56
57 return NULL;
58 }
59 smp_rmb();
60
61 group_desc = block_group >> EXT3_DESC_PER_BLOCK_BITS(sb);
62 offset = block_group & (EXT3_DESC_PER_BLOCK(sb) - 1);
63 if (!sbi->s_group_desc[group_desc]) {
64 ext3_error (sb, "ext3_get_group_desc",
65 "Group descriptor not loaded - "
66 "block_group = %d, group_desc = %lu, desc = %lu",
67 block_group, group_desc, offset);
68 return NULL;
69 }
70
71 desc = (struct ext3_group_desc *) sbi->s_group_desc[group_desc]->b_data;
72 if (bh)
73 *bh = sbi->s_group_desc[group_desc];
74 return desc + offset;
75}
76
77/*
78 * Read the bitmap for a given block_group, reading into the specified
79 * slot in the superblock's bitmap cache.
80 *
81 * Return buffer_head on success or NULL in case of failure.
82 */
83static struct buffer_head *
84read_block_bitmap(struct super_block *sb, unsigned int block_group)
85{
86 struct ext3_group_desc * desc;
87 struct buffer_head * bh = NULL;
88
89 desc = ext3_get_group_desc (sb, block_group, NULL);
90 if (!desc)
91 goto error_out;
92 bh = sb_bread(sb, le32_to_cpu(desc->bg_block_bitmap));
93 if (!bh)
94 ext3_error (sb, "read_block_bitmap",
95 "Cannot read block bitmap - "
96 "block_group = %d, block_bitmap = %u",
97 block_group, le32_to_cpu(desc->bg_block_bitmap));
98error_out:
99 return bh;
100}
101/*
102 * The reservation window structure operations
103 * --------------------------------------------
104 * Operations include:
105 * dump, find, add, remove, is_empty, find_next_reservable_window, etc.
106 *
107 * We use sorted double linked list for the per-filesystem reservation
108 * window list. (like in vm_region).
109 *
110 * Initially, we keep those small operations in the abstract functions,
111 * so later if we need a better searching tree than double linked-list,
112 * we could easily switch to that without changing too much
113 * code.
114 */
115#if 0
116static void __rsv_window_dump(struct rb_root *root, int verbose,
117 const char *fn)
118{
119 struct rb_node *n;
120 struct ext3_reserve_window_node *rsv, *prev;
121 int bad;
122
123restart:
124 n = rb_first(root);
125 bad = 0;
126 prev = NULL;
127
128 printk("Block Allocation Reservation Windows Map (%s):\n", fn);
129 while (n) {
130 rsv = list_entry(n, struct ext3_reserve_window_node, rsv_node);
131 if (verbose)
132 printk("reservation window 0x%p "
133 "start: %d, end: %d\n",
134 rsv, rsv->rsv_start, rsv->rsv_end);
135 if (rsv->rsv_start && rsv->rsv_start >= rsv->rsv_end) {
136 printk("Bad reservation %p (start >= end)\n",
137 rsv);
138 bad = 1;
139 }
140 if (prev && prev->rsv_end >= rsv->rsv_start) {
141 printk("Bad reservation %p (prev->end >= start)\n",
142 rsv);
143 bad = 1;
144 }
145 if (bad) {
146 if (!verbose) {
147 printk("Restarting reservation walk in verbose mode\n");
148 verbose = 1;
149 goto restart;
150 }
151 }
152 n = rb_next(n);
153 prev = rsv;
154 }
155 printk("Window map complete.\n");
156 if (bad)
157 BUG();
158}
159#define rsv_window_dump(root, verbose) \
160 __rsv_window_dump((root), (verbose), __FUNCTION__)
161#else
162#define rsv_window_dump(root, verbose) do {} while (0)
163#endif
164
165static int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700166goal_in_my_reservation(struct ext3_reserve_window *rsv, ext3_grpblk_t grp_goal,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 unsigned int group, struct super_block * sb)
168{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700169 ext3_fsblk_t group_first_block, group_last_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
172 group * EXT3_BLOCKS_PER_GROUP(sb);
173 group_last_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
174
175 if ((rsv->_rsv_start > group_last_block) ||
176 (rsv->_rsv_end < group_first_block))
177 return 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700178 if ((grp_goal >= 0) && ((grp_goal + group_first_block < rsv->_rsv_start)
179 || (grp_goal + group_first_block > rsv->_rsv_end)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return 0;
181 return 1;
182}
183
184/*
185 * Find the reserved window which includes the goal, or the previous one
186 * if the goal is not in any window.
187 * Returns NULL if there are no windows or if all windows start after the goal.
188 */
189static struct ext3_reserve_window_node *
Mingming Cao1c2bf372006-06-25 05:48:06 -0700190search_reserve_window(struct rb_root *root, ext3_fsblk_t goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct rb_node *n = root->rb_node;
193 struct ext3_reserve_window_node *rsv;
194
195 if (!n)
196 return NULL;
197
198 do {
199 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
200
201 if (goal < rsv->rsv_start)
202 n = n->rb_left;
203 else if (goal > rsv->rsv_end)
204 n = n->rb_right;
205 else
206 return rsv;
207 } while (n);
208 /*
209 * We've fallen off the end of the tree: the goal wasn't inside
210 * any particular node. OK, the previous node must be to one
211 * side of the interval containing the goal. If it's the RHS,
212 * we need to back up one.
213 */
214 if (rsv->rsv_start > goal) {
215 n = rb_prev(&rsv->rsv_node);
216 rsv = rb_entry(n, struct ext3_reserve_window_node, rsv_node);
217 }
218 return rsv;
219}
220
221void ext3_rsv_window_add(struct super_block *sb,
222 struct ext3_reserve_window_node *rsv)
223{
224 struct rb_root *root = &EXT3_SB(sb)->s_rsv_window_root;
225 struct rb_node *node = &rsv->rsv_node;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700226 ext3_fsblk_t start = rsv->rsv_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 struct rb_node ** p = &root->rb_node;
229 struct rb_node * parent = NULL;
230 struct ext3_reserve_window_node *this;
231
232 while (*p)
233 {
234 parent = *p;
235 this = rb_entry(parent, struct ext3_reserve_window_node, rsv_node);
236
237 if (start < this->rsv_start)
238 p = &(*p)->rb_left;
239 else if (start > this->rsv_end)
240 p = &(*p)->rb_right;
241 else
242 BUG();
243 }
244
245 rb_link_node(node, parent, p);
246 rb_insert_color(node, root);
247}
248
249static void rsv_window_remove(struct super_block *sb,
250 struct ext3_reserve_window_node *rsv)
251{
252 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
253 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
254 rsv->rsv_alloc_hit = 0;
255 rb_erase(&rsv->rsv_node, &EXT3_SB(sb)->s_rsv_window_root);
256}
257
258static inline int rsv_is_empty(struct ext3_reserve_window *rsv)
259{
260 /* a valid reservation end block could not be 0 */
261 return (rsv->_rsv_end == EXT3_RESERVE_WINDOW_NOT_ALLOCATED);
262}
263void ext3_init_block_alloc_info(struct inode *inode)
264{
265 struct ext3_inode_info *ei = EXT3_I(inode);
266 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
267 struct super_block *sb = inode->i_sb;
268
269 block_i = kmalloc(sizeof(*block_i), GFP_NOFS);
270 if (block_i) {
271 struct ext3_reserve_window_node *rsv = &block_i->rsv_window_node;
272
273 rsv->rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
274 rsv->rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
275
276 /*
277 * if filesystem is mounted with NORESERVATION, the goal
278 * reservation window size is set to zero to indicate
279 * block reservation is off
280 */
281 if (!test_opt(sb, RESERVATION))
282 rsv->rsv_goal_size = 0;
283 else
284 rsv->rsv_goal_size = EXT3_DEFAULT_RESERVE_BLOCKS;
285 rsv->rsv_alloc_hit = 0;
286 block_i->last_alloc_logical_block = 0;
287 block_i->last_alloc_physical_block = 0;
288 }
289 ei->i_block_alloc_info = block_i;
290}
291
292void ext3_discard_reservation(struct inode *inode)
293{
294 struct ext3_inode_info *ei = EXT3_I(inode);
295 struct ext3_block_alloc_info *block_i = ei->i_block_alloc_info;
296 struct ext3_reserve_window_node *rsv;
297 spinlock_t *rsv_lock = &EXT3_SB(inode->i_sb)->s_rsv_window_lock;
298
299 if (!block_i)
300 return;
301
302 rsv = &block_i->rsv_window_node;
303 if (!rsv_is_empty(&rsv->rsv_window)) {
304 spin_lock(rsv_lock);
305 if (!rsv_is_empty(&rsv->rsv_window))
306 rsv_window_remove(inode->i_sb, rsv);
307 spin_unlock(rsv_lock);
308 }
309}
310
311/* Free given blocks, update quota and i_blocks field */
312void ext3_free_blocks_sb(handle_t *handle, struct super_block *sb,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700313 ext3_fsblk_t block, unsigned long count,
314 unsigned long *pdquot_freed_blocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct buffer_head *bitmap_bh = NULL;
317 struct buffer_head *gd_bh;
318 unsigned long block_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700319 ext3_grpblk_t bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 unsigned long i;
321 unsigned long overflow;
322 struct ext3_group_desc * desc;
323 struct ext3_super_block * es;
324 struct ext3_sb_info *sbi;
325 int err = 0, ret;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700326 ext3_grpblk_t group_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 *pdquot_freed_blocks = 0;
329 sbi = EXT3_SB(sb);
330 es = sbi->s_es;
331 if (block < le32_to_cpu(es->s_first_data_block) ||
332 block + count < block ||
333 block + count > le32_to_cpu(es->s_blocks_count)) {
334 ext3_error (sb, "ext3_free_blocks",
335 "Freeing blocks not in datazone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700336 "block = "E3FSBLK", count = %lu", block, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto error_return;
338 }
339
340 ext3_debug ("freeing block(s) %lu-%lu\n", block, block + count - 1);
341
342do_more:
343 overflow = 0;
344 block_group = (block - le32_to_cpu(es->s_first_data_block)) /
345 EXT3_BLOCKS_PER_GROUP(sb);
346 bit = (block - le32_to_cpu(es->s_first_data_block)) %
347 EXT3_BLOCKS_PER_GROUP(sb);
348 /*
349 * Check to see if we are freeing blocks across a group
350 * boundary.
351 */
352 if (bit + count > EXT3_BLOCKS_PER_GROUP(sb)) {
353 overflow = bit + count - EXT3_BLOCKS_PER_GROUP(sb);
354 count -= overflow;
355 }
356 brelse(bitmap_bh);
357 bitmap_bh = read_block_bitmap(sb, block_group);
358 if (!bitmap_bh)
359 goto error_return;
360 desc = ext3_get_group_desc (sb, block_group, &gd_bh);
361 if (!desc)
362 goto error_return;
363
364 if (in_range (le32_to_cpu(desc->bg_block_bitmap), block, count) ||
365 in_range (le32_to_cpu(desc->bg_inode_bitmap), block, count) ||
366 in_range (block, le32_to_cpu(desc->bg_inode_table),
367 sbi->s_itb_per_group) ||
368 in_range (block + count - 1, le32_to_cpu(desc->bg_inode_table),
369 sbi->s_itb_per_group))
370 ext3_error (sb, "ext3_free_blocks",
371 "Freeing blocks in system zones - "
Mingming Cao1c2bf372006-06-25 05:48:06 -0700372 "Block = "E3FSBLK", count = %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 block, count);
374
375 /*
376 * We are about to start releasing blocks in the bitmap,
377 * so we need undo access.
378 */
379 /* @@@ check errors */
380 BUFFER_TRACE(bitmap_bh, "getting undo access");
381 err = ext3_journal_get_undo_access(handle, bitmap_bh);
382 if (err)
383 goto error_return;
384
385 /*
386 * We are about to modify some metadata. Call the journal APIs
387 * to unshare ->b_data if a currently-committing transaction is
388 * using it
389 */
390 BUFFER_TRACE(gd_bh, "get_write_access");
391 err = ext3_journal_get_write_access(handle, gd_bh);
392 if (err)
393 goto error_return;
394
395 jbd_lock_bh_state(bitmap_bh);
396
397 for (i = 0, group_freed = 0; i < count; i++) {
398 /*
399 * An HJ special. This is expensive...
400 */
401#ifdef CONFIG_JBD_DEBUG
402 jbd_unlock_bh_state(bitmap_bh);
403 {
404 struct buffer_head *debug_bh;
405 debug_bh = sb_find_get_block(sb, block + i);
406 if (debug_bh) {
407 BUFFER_TRACE(debug_bh, "Deleted!");
408 if (!bh2jh(bitmap_bh)->b_committed_data)
409 BUFFER_TRACE(debug_bh,
410 "No commited data in bitmap");
411 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap");
412 __brelse(debug_bh);
413 }
414 }
415 jbd_lock_bh_state(bitmap_bh);
416#endif
417 if (need_resched()) {
418 jbd_unlock_bh_state(bitmap_bh);
419 cond_resched();
420 jbd_lock_bh_state(bitmap_bh);
421 }
422 /* @@@ This prevents newly-allocated data from being
423 * freed and then reallocated within the same
424 * transaction.
425 *
426 * Ideally we would want to allow that to happen, but to
427 * do so requires making journal_forget() capable of
428 * revoking the queued write of a data block, which
429 * implies blocking on the journal lock. *forget()
430 * cannot block due to truncate races.
431 *
432 * Eventually we can fix this by making journal_forget()
433 * return a status indicating whether or not it was able
434 * to revoke the buffer. On successful revoke, it is
435 * safe not to set the allocation bit in the committed
436 * bitmap, because we know that there is no outstanding
437 * activity on the buffer any more and so it is safe to
438 * reallocate it.
439 */
440 BUFFER_TRACE(bitmap_bh, "set in b_committed_data");
441 J_ASSERT_BH(bitmap_bh,
442 bh2jh(bitmap_bh)->b_committed_data != NULL);
443 ext3_set_bit_atomic(sb_bgl_lock(sbi, block_group), bit + i,
444 bh2jh(bitmap_bh)->b_committed_data);
445
446 /*
447 * We clear the bit in the bitmap after setting the committed
448 * data bit, because this is the reverse order to that which
449 * the allocator uses.
450 */
451 BUFFER_TRACE(bitmap_bh, "clear bit");
452 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
453 bit + i, bitmap_bh->b_data)) {
454 jbd_unlock_bh_state(bitmap_bh);
455 ext3_error(sb, __FUNCTION__,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700456 "bit already cleared for block "E3FSBLK,
457 block + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 jbd_lock_bh_state(bitmap_bh);
459 BUFFER_TRACE(bitmap_bh, "bit already cleared");
460 } else {
461 group_freed++;
462 }
463 }
464 jbd_unlock_bh_state(bitmap_bh);
465
466 spin_lock(sb_bgl_lock(sbi, block_group));
467 desc->bg_free_blocks_count =
468 cpu_to_le16(le16_to_cpu(desc->bg_free_blocks_count) +
469 group_freed);
470 spin_unlock(sb_bgl_lock(sbi, block_group));
471 percpu_counter_mod(&sbi->s_freeblocks_counter, count);
472
473 /* We dirtied the bitmap block */
474 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
475 err = ext3_journal_dirty_metadata(handle, bitmap_bh);
476
477 /* And the group descriptor block */
478 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
479 ret = ext3_journal_dirty_metadata(handle, gd_bh);
480 if (!err) err = ret;
481 *pdquot_freed_blocks += group_freed;
482
483 if (overflow && !err) {
484 block += count;
485 count = overflow;
486 goto do_more;
487 }
488 sb->s_dirt = 1;
489error_return:
490 brelse(bitmap_bh);
491 ext3_std_error(sb, err);
492 return;
493}
494
495/* Free given blocks, update quota and i_blocks field */
496void ext3_free_blocks(handle_t *handle, struct inode *inode,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700497 ext3_fsblk_t block, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 struct super_block * sb;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700500 unsigned long dquot_freed_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 sb = inode->i_sb;
503 if (!sb) {
504 printk ("ext3_free_blocks: nonexistent device");
505 return;
506 }
507 ext3_free_blocks_sb(handle, sb, block, count, &dquot_freed_blocks);
508 if (dquot_freed_blocks)
509 DQUOT_FREE_BLOCK(inode, dquot_freed_blocks);
510 return;
511}
512
513/*
514 * For ext3 allocations, we must not reuse any blocks which are
515 * allocated in the bitmap buffer's "last committed data" copy. This
516 * prevents deletes from freeing up the page for reuse until we have
517 * committed the delete transaction.
518 *
519 * If we didn't do this, then deleting something and reallocating it as
520 * data would allow the old block to be overwritten before the
521 * transaction committed (because we force data to disk before commit).
522 * This would lead to corruption if we crashed between overwriting the
523 * data and committing the delete.
524 *
525 * @@@ We may want to make this allocation behaviour conditional on
526 * data-writes at some point, and disable it for metadata allocations or
527 * sync-data inodes.
528 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700529static int ext3_test_allocatable(ext3_grpblk_t nr, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 int ret;
532 struct journal_head *jh = bh2jh(bh);
533
534 if (ext3_test_bit(nr, bh->b_data))
535 return 0;
536
537 jbd_lock_bh_state(bh);
538 if (!jh->b_committed_data)
539 ret = 1;
540 else
541 ret = !ext3_test_bit(nr, jh->b_committed_data);
542 jbd_unlock_bh_state(bh);
543 return ret;
544}
545
Mingming Cao1c2bf372006-06-25 05:48:06 -0700546static ext3_grpblk_t
547bitmap_search_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
548 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700550 ext3_grpblk_t next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct journal_head *jh = bh2jh(bh);
552
553 /*
554 * The bitmap search --- search forward alternately through the actual
555 * bitmap and the last-committed copy until we find a bit free in
556 * both
557 */
558 while (start < maxblocks) {
559 next = ext3_find_next_zero_bit(bh->b_data, maxblocks, start);
560 if (next >= maxblocks)
561 return -1;
562 if (ext3_test_allocatable(next, bh))
563 return next;
564 jbd_lock_bh_state(bh);
565 if (jh->b_committed_data)
566 start = ext3_find_next_zero_bit(jh->b_committed_data,
567 maxblocks, next);
568 jbd_unlock_bh_state(bh);
569 }
570 return -1;
571}
572
573/*
574 * Find an allocatable block in a bitmap. We honour both the bitmap and
575 * its last-committed copy (if that exists), and perform the "most
576 * appropriate allocation" algorithm of looking for a free block near
577 * the initial goal; then for a free byte somewhere in the bitmap; then
578 * for any free bit in the bitmap.
579 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700580static ext3_grpblk_t
581find_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
582 ext3_grpblk_t maxblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700584 ext3_grpblk_t here, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 char *p, *r;
586
587 if (start > 0) {
588 /*
589 * The goal was occupied; search forward for a free
590 * block within the next XX blocks.
591 *
592 * end_goal is more or less random, but it has to be
593 * less than EXT3_BLOCKS_PER_GROUP. Aligning up to the
594 * next 64-bit boundary is simple..
595 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700596 ext3_grpblk_t end_goal = (start + 63) & ~63;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (end_goal > maxblocks)
598 end_goal = maxblocks;
599 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
600 if (here < end_goal && ext3_test_allocatable(here, bh))
601 return here;
602 ext3_debug("Bit not found near goal\n");
603 }
604
605 here = start;
606 if (here < 0)
607 here = 0;
608
609 p = ((char *)bh->b_data) + (here >> 3);
610 r = memscan(p, 0, (maxblocks - here + 7) >> 3);
611 next = (r - ((char *)bh->b_data)) << 3;
612
613 if (next < maxblocks && next >= start && ext3_test_allocatable(next, bh))
614 return next;
615
616 /*
617 * The bitmap search --- search forward alternately through the actual
618 * bitmap and the last-committed copy until we find a bit free in
619 * both
620 */
621 here = bitmap_search_next_usable_block(here, bh, maxblocks);
622 return here;
623}
624
625/*
626 * We think we can allocate this block in this bitmap. Try to set the bit.
627 * If that succeeds then check that nobody has allocated and then freed the
628 * block since we saw that is was not marked in b_committed_data. If it _was_
629 * allocated and freed then clear the bit in the bitmap again and return
630 * zero (failure).
631 */
632static inline int
Mingming Cao1c2bf372006-06-25 05:48:06 -0700633claim_block(spinlock_t *lock, ext3_grpblk_t block, struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 struct journal_head *jh = bh2jh(bh);
636 int ret;
637
638 if (ext3_set_bit_atomic(lock, block, bh->b_data))
639 return 0;
640 jbd_lock_bh_state(bh);
641 if (jh->b_committed_data && ext3_test_bit(block,jh->b_committed_data)) {
642 ext3_clear_bit_atomic(lock, block, bh->b_data);
643 ret = 0;
644 } else {
645 ret = 1;
646 }
647 jbd_unlock_bh_state(bh);
648 return ret;
649}
650
651/*
652 * If we failed to allocate the desired block then we may end up crossing to a
653 * new bitmap. In that case we must release write access to the old one via
654 * ext3_journal_release_buffer(), else we'll run out of credits.
655 */
Mingming Cao1c2bf372006-06-25 05:48:06 -0700656static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657ext3_try_to_allocate(struct super_block *sb, handle_t *handle, int group,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700658 struct buffer_head *bitmap_bh, ext3_grpblk_t grp_goal,
Mingming Caob54e41e2006-03-26 01:37:57 -0800659 unsigned long *count, struct ext3_reserve_window *my_rsv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Mingming Cao1c2bf372006-06-25 05:48:06 -0700661 ext3_fsblk_t group_first_block;
662 ext3_grpblk_t start, end;
Mingming Caob54e41e2006-03-26 01:37:57 -0800663 unsigned long num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /* we do allocation within the reservation window if we have a window */
666 if (my_rsv) {
667 group_first_block =
668 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
669 group * EXT3_BLOCKS_PER_GROUP(sb);
670 if (my_rsv->_rsv_start >= group_first_block)
671 start = my_rsv->_rsv_start - group_first_block;
672 else
673 /* reservation window cross group boundary */
674 start = 0;
675 end = my_rsv->_rsv_end - group_first_block + 1;
676 if (end > EXT3_BLOCKS_PER_GROUP(sb))
677 /* reservation window crosses group boundary */
678 end = EXT3_BLOCKS_PER_GROUP(sb);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700679 if ((start <= grp_goal) && (grp_goal < end))
680 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 else
Mingming Cao1c2bf372006-06-25 05:48:06 -0700682 grp_goal = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 } else {
Mingming Cao1c2bf372006-06-25 05:48:06 -0700684 if (grp_goal > 0)
685 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 else
687 start = 0;
688 end = EXT3_BLOCKS_PER_GROUP(sb);
689 }
690
691 BUG_ON(start > EXT3_BLOCKS_PER_GROUP(sb));
692
693repeat:
Mingming Cao1c2bf372006-06-25 05:48:06 -0700694 if (grp_goal < 0 || !ext3_test_allocatable(grp_goal, bitmap_bh)) {
695 grp_goal = find_next_usable_block(start, bitmap_bh, end);
696 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 goto fail_access;
698 if (!my_rsv) {
699 int i;
700
Mingming Cao1c2bf372006-06-25 05:48:06 -0700701 for (i = 0; i < 7 && grp_goal > start &&
702 ext3_test_allocatable(grp_goal - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 bitmap_bh);
Mingming Cao1c2bf372006-06-25 05:48:06 -0700704 i++, grp_goal--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ;
706 }
707 }
Mingming Cao1c2bf372006-06-25 05:48:06 -0700708 start = grp_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Mingming Cao1c2bf372006-06-25 05:48:06 -0700710 if (!claim_block(sb_bgl_lock(EXT3_SB(sb), group), grp_goal, bitmap_bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /*
712 * The block was allocated by another thread, or it was
713 * allocated and then freed by another thread
714 */
715 start++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700716 grp_goal++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (start >= end)
718 goto fail_access;
719 goto repeat;
720 }
Mingming Caob54e41e2006-03-26 01:37:57 -0800721 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700722 grp_goal++;
723 while (num < *count && grp_goal < end
724 && ext3_test_allocatable(grp_goal, bitmap_bh)
725 && claim_block(sb_bgl_lock(EXT3_SB(sb), group), grp_goal, bitmap_bh)) {
Mingming Caob54e41e2006-03-26 01:37:57 -0800726 num++;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700727 grp_goal++;
Mingming Caob54e41e2006-03-26 01:37:57 -0800728 }
729 *count = num;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700730 return grp_goal - num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731fail_access:
Mingming Caob54e41e2006-03-26 01:37:57 -0800732 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return -1;
734}
735
736/**
737 * find_next_reservable_window():
738 * find a reservable space within the given range.
739 * It does not allocate the reservation window for now:
740 * alloc_new_reservation() will do the work later.
741 *
742 * @search_head: the head of the searching list;
743 * This is not necessarily the list head of the whole filesystem
744 *
745 * We have both head and start_block to assist the search
746 * for the reservable space. The list starts from head,
747 * but we will shift to the place where start_block is,
748 * then start from there, when looking for a reservable space.
749 *
750 * @size: the target new reservation window size
751 *
752 * @group_first_block: the first block we consider to start
753 * the real search from
754 *
755 * @last_block:
756 * the maximum block number that our goal reservable space
757 * could start from. This is normally the last block in this
758 * group. The search will end when we found the start of next
759 * possible reservable space is out of this boundary.
760 * This could handle the cross boundary reservation window
761 * request.
762 *
763 * basically we search from the given range, rather than the whole
764 * reservation double linked list, (start_block, last_block)
765 * to find a free region that is of my size and has not
766 * been reserved.
767 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700769static int find_next_reservable_window(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 struct ext3_reserve_window_node *search_head,
Mingming Cao21fe3472005-06-28 20:45:16 -0700771 struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700772 struct super_block * sb,
773 ext3_fsblk_t start_block,
774 ext3_fsblk_t last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct rb_node *next;
777 struct ext3_reserve_window_node *rsv, *prev;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700778 ext3_fsblk_t cur;
Mingming Cao21fe3472005-06-28 20:45:16 -0700779 int size = my_rsv->rsv_goal_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* TODO: make the start of the reservation window byte-aligned */
782 /* cur = *start_block & ~7;*/
Mingming Cao21fe3472005-06-28 20:45:16 -0700783 cur = start_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 rsv = search_head;
785 if (!rsv)
Mingming Cao21fe3472005-06-28 20:45:16 -0700786 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 while (1) {
789 if (cur <= rsv->rsv_end)
790 cur = rsv->rsv_end + 1;
791
792 /* TODO?
793 * in the case we could not find a reservable space
794 * that is what is expected, during the re-search, we could
795 * remember what's the largest reservable space we could have
796 * and return that one.
797 *
798 * For now it will fail if we could not find the reservable
799 * space with expected-size (or more)...
800 */
801 if (cur > last_block)
Mingming Cao21fe3472005-06-28 20:45:16 -0700802 return -1; /* fail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 prev = rsv;
805 next = rb_next(&rsv->rsv_node);
Mingming Cao21fe3472005-06-28 20:45:16 -0700806 rsv = list_entry(next,struct ext3_reserve_window_node,rsv_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /*
809 * Reached the last reservation, we can just append to the
810 * previous one.
811 */
812 if (!next)
813 break;
814
815 if (cur + size <= rsv->rsv_start) {
816 /*
817 * Found a reserveable space big enough. We could
818 * have a reservation across the group boundary here
819 */
820 break;
821 }
822 }
823 /*
824 * we come here either :
825 * when we reach the end of the whole list,
826 * and there is empty reservable space after last entry in the list.
827 * append it to the end of the list.
828 *
829 * or we found one reservable space in the middle of the list,
830 * return the reservation window that we could append to.
831 * succeed.
832 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700833
834 if ((prev != my_rsv) && (!rsv_is_empty(&my_rsv->rsv_window)))
835 rsv_window_remove(sb, my_rsv);
836
837 /*
838 * Let's book the whole avaliable window for now. We will check the
839 * disk bitmap later and then, if there are free blocks then we adjust
840 * the window size if it's larger than requested.
841 * Otherwise, we will remove this node from the tree next time
842 * call find_next_reservable_window.
843 */
844 my_rsv->rsv_start = cur;
845 my_rsv->rsv_end = cur + size - 1;
846 my_rsv->rsv_alloc_hit = 0;
847
848 if (prev != my_rsv)
849 ext3_rsv_window_add(sb, my_rsv);
850
851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854/**
855 * alloc_new_reservation()--allocate a new reservation window
856 *
857 * To make a new reservation, we search part of the filesystem
858 * reservation list (the list that inside the group). We try to
859 * allocate a new reservation window near the allocation goal,
860 * or the beginning of the group, if there is no goal.
861 *
862 * We first find a reservable space after the goal, then from
863 * there, we check the bitmap for the first free block after
864 * it. If there is no free block until the end of group, then the
865 * whole group is full, we failed. Otherwise, check if the free
866 * block is inside the expected reservable space, if so, we
867 * succeed.
868 * If the first free block is outside the reservable space, then
869 * start from the first free block, we search for next available
870 * space, and go on.
871 *
872 * on succeed, a new reservation will be found and inserted into the list
873 * It contains at least one free block, and it does not overlap with other
874 * reservation windows.
875 *
876 * failed: we failed to find a reservation window in this group
877 *
878 * @rsv: the reservation
879 *
Mingming Cao1c2bf372006-06-25 05:48:06 -0700880 * @grp_goal: The goal (group-relative). It is where the search for a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * free reservable space should start from.
Mingming Cao1c2bf372006-06-25 05:48:06 -0700882 * if we have a grp_goal(grp_goal >0 ), then start from there,
883 * no grp_goal(grp_goal = -1), we start from the first block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * of the group.
885 *
886 * @sb: the super block
887 * @group: the group we are trying to allocate in
888 * @bitmap_bh: the block group block bitmap
Mingming Cao21fe3472005-06-28 20:45:16 -0700889 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891static int alloc_new_reservation(struct ext3_reserve_window_node *my_rsv,
Mingming Cao1c2bf372006-06-25 05:48:06 -0700892 ext3_grpblk_t grp_goal, struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 unsigned int group, struct buffer_head *bitmap_bh)
894{
895 struct ext3_reserve_window_node *search_head;
Mingming Cao1c2bf372006-06-25 05:48:06 -0700896 ext3_fsblk_t group_first_block, group_end_block, start_block;
897 ext3_grpblk_t first_free_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct rb_root *fs_rsv_root = &EXT3_SB(sb)->s_rsv_window_root;
899 unsigned long size;
Mingming Cao21fe3472005-06-28 20:45:16 -0700900 int ret;
901 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
904 group * EXT3_BLOCKS_PER_GROUP(sb);
905 group_end_block = group_first_block + EXT3_BLOCKS_PER_GROUP(sb) - 1;
906
Mingming Cao1c2bf372006-06-25 05:48:06 -0700907 if (grp_goal < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 start_block = group_first_block;
909 else
Mingming Cao1c2bf372006-06-25 05:48:06 -0700910 start_block = grp_goal + group_first_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 size = my_rsv->rsv_goal_size;
Mingming Cao21fe3472005-06-28 20:45:16 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!rsv_is_empty(&my_rsv->rsv_window)) {
915 /*
916 * if the old reservation is cross group boundary
917 * and if the goal is inside the old reservation window,
918 * we will come here when we just failed to allocate from
919 * the first part of the window. We still have another part
920 * that belongs to the next group. In this case, there is no
921 * point to discard our window and try to allocate a new one
922 * in this group(which will fail). we should
923 * keep the reservation window, just simply move on.
924 *
925 * Maybe we could shift the start block of the reservation
926 * window to the first block of next group.
927 */
928
929 if ((my_rsv->rsv_start <= group_end_block) &&
930 (my_rsv->rsv_end > group_end_block) &&
931 (start_block >= my_rsv->rsv_start))
932 return -1;
933
934 if ((my_rsv->rsv_alloc_hit >
935 (my_rsv->rsv_end - my_rsv->rsv_start + 1) / 2)) {
936 /*
937 * if we previously allocation hit ration is greater than half
938 * we double the size of reservation window next time
939 * otherwise keep the same
940 */
941 size = size * 2;
942 if (size > EXT3_MAX_RESERVE_BLOCKS)
943 size = EXT3_MAX_RESERVE_BLOCKS;
944 my_rsv->rsv_goal_size= size;
945 }
946 }
Mingming Cao21fe3472005-06-28 20:45:16 -0700947
948 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /*
950 * shift the search start to the window near the goal block
951 */
952 search_head = search_reserve_window(fs_rsv_root, start_block);
953
954 /*
955 * find_next_reservable_window() simply finds a reservable window
956 * inside the given range(start_block, group_end_block).
957 *
958 * To make sure the reservation window has a free bit inside it, we
959 * need to check the bitmap after we found a reservable window.
960 */
961retry:
Mingming Cao21fe3472005-06-28 20:45:16 -0700962 ret = find_next_reservable_window(search_head, my_rsv, sb,
963 start_block, group_end_block);
964
965 if (ret == -1) {
966 if (!rsv_is_empty(&my_rsv->rsv_window))
967 rsv_window_remove(sb, my_rsv);
968 spin_unlock(rsv_lock);
969 return -1;
970 }
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /*
973 * On success, find_next_reservable_window() returns the
974 * reservation window where there is a reservable space after it.
975 * Before we reserve this reservable space, we need
976 * to make sure there is at least a free block inside this region.
977 *
978 * searching the first free bit on the block bitmap and copy of
979 * last committed bitmap alternatively, until we found a allocatable
980 * block. Search start from the start block of the reservable space
981 * we just found.
982 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700983 spin_unlock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 first_free_block = bitmap_search_next_usable_block(
Mingming Cao21fe3472005-06-28 20:45:16 -0700985 my_rsv->rsv_start - group_first_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 bitmap_bh, group_end_block - group_first_block + 1);
987
988 if (first_free_block < 0) {
989 /*
990 * no free block left on the bitmap, no point
991 * to reserve the space. return failed.
992 */
Mingming Cao21fe3472005-06-28 20:45:16 -0700993 spin_lock(rsv_lock);
994 if (!rsv_is_empty(&my_rsv->rsv_window))
995 rsv_window_remove(sb, my_rsv);
996 spin_unlock(rsv_lock);
997 return -1; /* failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Mingming Cao21fe3472005-06-28 20:45:16 -0700999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 start_block = first_free_block + group_first_block;
1001 /*
1002 * check if the first free block is within the
Mingming Cao21fe3472005-06-28 20:45:16 -07001003 * free space we just reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001005 if (start_block >= my_rsv->rsv_start && start_block < my_rsv->rsv_end)
1006 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /*
1008 * if the first free bit we found is out of the reservable space
Mingming Cao21fe3472005-06-28 20:45:16 -07001009 * continue search for next reservable space,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 * start from where the free block is,
1011 * we also shift the list head to where we stopped last time
1012 */
Mingming Cao21fe3472005-06-28 20:45:16 -07001013 search_head = my_rsv;
1014 spin_lock(rsv_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Mingming Caod48589b2006-03-26 01:37:59 -08001018static void try_to_extend_reservation(struct ext3_reserve_window_node *my_rsv,
1019 struct super_block *sb, int size)
1020{
1021 struct ext3_reserve_window_node *next_rsv;
1022 struct rb_node *next;
1023 spinlock_t *rsv_lock = &EXT3_SB(sb)->s_rsv_window_lock;
1024
1025 if (!spin_trylock(rsv_lock))
1026 return;
1027
1028 next = rb_next(&my_rsv->rsv_node);
1029
1030 if (!next)
1031 my_rsv->rsv_end += size;
1032 else {
1033 next_rsv = list_entry(next, struct ext3_reserve_window_node, rsv_node);
1034
1035 if ((next_rsv->rsv_start - my_rsv->rsv_end - 1) >= size)
1036 my_rsv->rsv_end += size;
1037 else
1038 my_rsv->rsv_end = next_rsv->rsv_start - 1;
1039 }
1040 spin_unlock(rsv_lock);
1041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/*
1044 * This is the main function used to allocate a new block and its reservation
1045 * window.
1046 *
1047 * Each time when a new block allocation is need, first try to allocate from
1048 * its own reservation. If it does not have a reservation window, instead of
1049 * looking for a free bit on bitmap first, then look up the reservation list to
1050 * see if it is inside somebody else's reservation window, we try to allocate a
1051 * reservation window for it starting from the goal first. Then do the block
1052 * allocation within the reservation window.
1053 *
1054 * This will avoid keeping on searching the reservation list again and
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001055 * again when somebody is looking for a free block (without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 * reservation), and there are lots of free blocks, but they are all
1057 * being reserved.
1058 *
1059 * We use a sorted double linked list for the per-filesystem reservation list.
1060 * The insert, remove and find a free space(non-reserved) operations for the
1061 * sorted double linked list should be fast.
1062 *
1063 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001064static ext3_grpblk_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065ext3_try_to_allocate_with_rsv(struct super_block *sb, handle_t *handle,
1066 unsigned int group, struct buffer_head *bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001067 ext3_grpblk_t grp_goal,
1068 struct ext3_reserve_window_node * my_rsv,
Mingming Caob54e41e2006-03-26 01:37:57 -08001069 unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Mingming Cao1c2bf372006-06-25 05:48:06 -07001071 ext3_fsblk_t group_first_block;
1072 ext3_grpblk_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 int fatal;
Mingming Caob54e41e2006-03-26 01:37:57 -08001074 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 *errp = 0;
1077
1078 /*
1079 * Make sure we use undo access for the bitmap, because it is critical
1080 * that we do the frozen_data COW on bitmap buffers in all cases even
1081 * if the buffer is in BJ_Forget state in the committing transaction.
1082 */
1083 BUFFER_TRACE(bitmap_bh, "get undo access for new block");
1084 fatal = ext3_journal_get_undo_access(handle, bitmap_bh);
1085 if (fatal) {
1086 *errp = fatal;
1087 return -1;
1088 }
1089
1090 /*
1091 * we don't deal with reservation when
1092 * filesystem is mounted without reservation
1093 * or the file is not a regular file
1094 * or last attempt to allocate a block with reservation turned on failed
1095 */
1096 if (my_rsv == NULL ) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001097 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001098 grp_goal, count, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 goto out;
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
Mingming Cao1c2bf372006-06-25 05:48:06 -07001102 * grp_goal is a group relative block number (if there is a goal)
1103 * 0 < grp_goal < EXT3_BLOCKS_PER_GROUP(sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * first block is a filesystem wide block number
1105 * first block is the block number of the first block in this group
1106 */
1107 group_first_block = le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block) +
1108 group * EXT3_BLOCKS_PER_GROUP(sb);
1109
1110 /*
1111 * Basically we will allocate a new block from inode's reservation
1112 * window.
1113 *
1114 * We need to allocate a new reservation window, if:
1115 * a) inode does not have a reservation window; or
1116 * b) last attempt to allocate a block from existing reservation
1117 * failed; or
1118 * c) we come here with a goal and with a reservation window
1119 *
1120 * We do not need to allocate a new reservation window if we come here
1121 * at the beginning with a goal and the goal is inside the window, or
1122 * we don't have a goal but already have a reservation window.
1123 * then we could go to allocate from the reservation window directly.
1124 */
1125 while (1) {
Mingming Cao21fe3472005-06-28 20:45:16 -07001126 if (rsv_is_empty(&my_rsv->rsv_window) || (ret < 0) ||
Mingming Cao1c2bf372006-06-25 05:48:06 -07001127 !goal_in_my_reservation(&my_rsv->rsv_window, grp_goal, group, sb)) {
Mingming Caod48589b2006-03-26 01:37:59 -08001128 if (my_rsv->rsv_goal_size < *count)
1129 my_rsv->rsv_goal_size = *count;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001130 ret = alloc_new_reservation(my_rsv, grp_goal, sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 group, bitmap_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (ret < 0)
1133 break; /* failed */
1134
Mingming Cao1c2bf372006-06-25 05:48:06 -07001135 if (!goal_in_my_reservation(&my_rsv->rsv_window, grp_goal, group, sb))
1136 grp_goal = -1;
1137 } else if (grp_goal > 0 && (my_rsv->rsv_end-grp_goal+1) < *count)
Mingming Caod48589b2006-03-26 01:37:59 -08001138 try_to_extend_reservation(my_rsv, sb,
Mingming Cao1c2bf372006-06-25 05:48:06 -07001139 *count-my_rsv->rsv_end + grp_goal - 1);
Mingming Caod48589b2006-03-26 01:37:59 -08001140
Mingming Cao21fe3472005-06-28 20:45:16 -07001141 if ((my_rsv->rsv_start >= group_first_block + EXT3_BLOCKS_PER_GROUP(sb))
1142 || (my_rsv->rsv_end < group_first_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 BUG();
Mingming Cao1c2bf372006-06-25 05:48:06 -07001144 ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh, grp_goal,
Mingming Caob54e41e2006-03-26 01:37:57 -08001145 &num, &my_rsv->rsv_window);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (ret >= 0) {
Mingming Caob54e41e2006-03-26 01:37:57 -08001147 my_rsv->rsv_alloc_hit += num;
1148 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break; /* succeed */
1150 }
Mingming Caob54e41e2006-03-26 01:37:57 -08001151 num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153out:
1154 if (ret >= 0) {
1155 BUFFER_TRACE(bitmap_bh, "journal_dirty_metadata for "
1156 "bitmap block");
1157 fatal = ext3_journal_dirty_metadata(handle, bitmap_bh);
1158 if (fatal) {
1159 *errp = fatal;
1160 return -1;
1161 }
1162 return ret;
1163 }
1164
1165 BUFFER_TRACE(bitmap_bh, "journal_release_buffer");
1166 ext3_journal_release_buffer(handle, bitmap_bh);
1167 return ret;
1168}
1169
1170static int ext3_has_free_blocks(struct ext3_sb_info *sbi)
1171{
Mingming Cao1c2bf372006-06-25 05:48:06 -07001172 ext3_fsblk_t free_blocks, root_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
1175 root_blocks = le32_to_cpu(sbi->s_es->s_r_blocks_count);
1176 if (free_blocks < root_blocks + 1 && !capable(CAP_SYS_RESOURCE) &&
1177 sbi->s_resuid != current->fsuid &&
1178 (sbi->s_resgid == 0 || !in_group_p (sbi->s_resgid))) {
1179 return 0;
1180 }
1181 return 1;
1182}
1183
1184/*
1185 * ext3_should_retry_alloc() is called when ENOSPC is returned, and if
1186 * it is profitable to retry the operation, this function will wait
1187 * for the current or commiting transaction to complete, and then
1188 * return TRUE.
1189 */
1190int ext3_should_retry_alloc(struct super_block *sb, int *retries)
1191{
1192 if (!ext3_has_free_blocks(EXT3_SB(sb)) || (*retries)++ > 3)
1193 return 0;
1194
1195 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id);
1196
1197 return journal_force_commit_nested(EXT3_SB(sb)->s_journal);
1198}
1199
1200/*
1201 * ext3_new_block uses a goal block to assist allocation. If the goal is
1202 * free, or there is a free block within 32 blocks of the goal, that block
1203 * is allocated. Otherwise a forward search is made for a free block; within
1204 * each block group the search first looks for an entire free byte in the block
1205 * bitmap, and then for any free bit if that fails.
1206 * This function also updates quota and i_blocks field.
1207 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001208ext3_fsblk_t ext3_new_blocks(handle_t *handle, struct inode *inode,
1209 ext3_fsblk_t goal, unsigned long *count, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 struct buffer_head *bitmap_bh = NULL;
1212 struct buffer_head *gdp_bh;
1213 int group_no;
1214 int goal_group;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001215 ext3_grpblk_t grp_target_blk; /* blockgroup relative goal block */
1216 ext3_grpblk_t grp_alloc_blk; /* blockgroup-relative allocated block*/
1217 ext3_fsblk_t ret_block; /* filesyetem-wide allocated block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int bgi; /* blockgroup iteration index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int fatal = 0, err;
1220 int performed_allocation = 0;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001221 ext3_grpblk_t free_blocks; /* number of free blocks in a group */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 struct super_block *sb;
1223 struct ext3_group_desc *gdp;
1224 struct ext3_super_block *es;
1225 struct ext3_sb_info *sbi;
1226 struct ext3_reserve_window_node *my_rsv = NULL;
1227 struct ext3_block_alloc_info *block_i;
1228 unsigned short windowsz = 0;
1229#ifdef EXT3FS_DEBUG
1230 static int goal_hits, goal_attempts;
1231#endif
1232 unsigned long ngroups;
Mingming Caob54e41e2006-03-26 01:37:57 -08001233 unsigned long num = *count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 *errp = -ENOSPC;
1236 sb = inode->i_sb;
1237 if (!sb) {
1238 printk("ext3_new_block: nonexistent device");
1239 return 0;
1240 }
1241
1242 /*
1243 * Check quota for allocation of this block.
1244 */
Mingming Caofaa56972006-03-26 01:37:58 -08001245 if (DQUOT_ALLOC_BLOCK(inode, num)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *errp = -EDQUOT;
1247 return 0;
1248 }
1249
1250 sbi = EXT3_SB(sb);
1251 es = EXT3_SB(sb)->s_es;
1252 ext3_debug("goal=%lu.\n", goal);
1253 /*
1254 * Allocate a block from reservation only when
1255 * filesystem is mounted with reservation(default,-o reservation), and
1256 * it's a regular file, and
1257 * the desired window size is greater than 0 (One could use ioctl
1258 * command EXT3_IOC_SETRSVSZ to set the window size to 0 to turn off
1259 * reservation on that particular file)
1260 */
1261 block_i = EXT3_I(inode)->i_block_alloc_info;
1262 if (block_i && ((windowsz = block_i->rsv_window_node.rsv_goal_size) > 0))
1263 my_rsv = &block_i->rsv_window_node;
1264
1265 if (!ext3_has_free_blocks(sbi)) {
1266 *errp = -ENOSPC;
1267 goto out;
1268 }
1269
1270 /*
1271 * First, test whether the goal block is free.
1272 */
1273 if (goal < le32_to_cpu(es->s_first_data_block) ||
1274 goal >= le32_to_cpu(es->s_blocks_count))
1275 goal = le32_to_cpu(es->s_first_data_block);
1276 group_no = (goal - le32_to_cpu(es->s_first_data_block)) /
1277 EXT3_BLOCKS_PER_GROUP(sb);
1278 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1279 if (!gdp)
1280 goto io_error;
1281
1282 goal_group = group_no;
1283retry:
1284 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1285 /*
1286 * if there is not enough free blocks to make a new resevation
1287 * turn off reservation for this allocation
1288 */
1289 if (my_rsv && (free_blocks < windowsz)
1290 && (rsv_is_empty(&my_rsv->rsv_window)))
1291 my_rsv = NULL;
1292
1293 if (free_blocks > 0) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001294 grp_target_blk = ((goal - le32_to_cpu(es->s_first_data_block)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 EXT3_BLOCKS_PER_GROUP(sb));
1296 bitmap_bh = read_block_bitmap(sb, group_no);
1297 if (!bitmap_bh)
1298 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001299 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1300 group_no, bitmap_bh, grp_target_blk,
1301 my_rsv, &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (fatal)
1303 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001304 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 goto allocated;
1306 }
1307
1308 ngroups = EXT3_SB(sb)->s_groups_count;
1309 smp_rmb();
1310
1311 /*
1312 * Now search the rest of the groups. We assume that
1313 * i and gdp correctly point to the last group visited.
1314 */
1315 for (bgi = 0; bgi < ngroups; bgi++) {
1316 group_no++;
1317 if (group_no >= ngroups)
1318 group_no = 0;
1319 gdp = ext3_get_group_desc(sb, group_no, &gdp_bh);
1320 if (!gdp) {
1321 *errp = -EIO;
1322 goto out;
1323 }
1324 free_blocks = le16_to_cpu(gdp->bg_free_blocks_count);
1325 /*
1326 * skip this group if the number of
1327 * free blocks is less than half of the reservation
1328 * window size.
1329 */
1330 if (free_blocks <= (windowsz/2))
1331 continue;
1332
1333 brelse(bitmap_bh);
1334 bitmap_bh = read_block_bitmap(sb, group_no);
1335 if (!bitmap_bh)
1336 goto io_error;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001337 /*
1338 * try to allocate block(s) from this group, without a goal(-1).
1339 */
1340 grp_alloc_blk = ext3_try_to_allocate_with_rsv(sb, handle,
1341 group_no, bitmap_bh, -1, my_rsv,
1342 &num, &fatal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (fatal)
1344 goto out;
Mingming Cao1c2bf372006-06-25 05:48:06 -07001345 if (grp_alloc_blk >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 goto allocated;
1347 }
1348 /*
1349 * We may end up a bogus ealier ENOSPC error due to
1350 * filesystem is "full" of reservations, but
1351 * there maybe indeed free blocks avaliable on disk
1352 * In this case, we just forget about the reservations
1353 * just do block allocation as without reservations.
1354 */
1355 if (my_rsv) {
1356 my_rsv = NULL;
1357 group_no = goal_group;
1358 goto retry;
1359 }
1360 /* No space left on the device */
1361 *errp = -ENOSPC;
1362 goto out;
1363
1364allocated:
1365
1366 ext3_debug("using block group %d(%d)\n",
1367 group_no, gdp->bg_free_blocks_count);
1368
1369 BUFFER_TRACE(gdp_bh, "get_write_access");
1370 fatal = ext3_journal_get_write_access(handle, gdp_bh);
1371 if (fatal)
1372 goto out;
1373
Mingming Cao1c2bf372006-06-25 05:48:06 -07001374 ret_block = grp_alloc_blk + group_no * EXT3_BLOCKS_PER_GROUP(sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 + le32_to_cpu(es->s_first_data_block);
1376
Mingming Cao1c2bf372006-06-25 05:48:06 -07001377 if (in_range(le32_to_cpu(gdp->bg_block_bitmap), ret_block, num) ||
1378 in_range(le32_to_cpu(gdp->bg_inode_bitmap), ret_block, num) ||
1379 in_range(ret_block, le32_to_cpu(gdp->bg_inode_table),
Mingming Caofaa56972006-03-26 01:37:58 -08001380 EXT3_SB(sb)->s_itb_per_group) ||
Mingming Cao1c2bf372006-06-25 05:48:06 -07001381 in_range(ret_block + num - 1, le32_to_cpu(gdp->bg_inode_table),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 EXT3_SB(sb)->s_itb_per_group))
1383 ext3_error(sb, "ext3_new_block",
1384 "Allocating block in system zone - "
Mingming Cao1c2bf372006-06-25 05:48:06 -07001385 "blocks from "E3FSBLK", length %lu",
1386 ret_block, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 performed_allocation = 1;
1389
1390#ifdef CONFIG_JBD_DEBUG
1391 {
1392 struct buffer_head *debug_bh;
1393
1394 /* Record bitmap buffer state in the newly allocated block */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001395 debug_bh = sb_find_get_block(sb, ret_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (debug_bh) {
1397 BUFFER_TRACE(debug_bh, "state when allocated");
1398 BUFFER_TRACE2(debug_bh, bitmap_bh, "bitmap state");
1399 brelse(debug_bh);
1400 }
1401 }
1402 jbd_lock_bh_state(bitmap_bh);
1403 spin_lock(sb_bgl_lock(sbi, group_no));
1404 if (buffer_jbd(bitmap_bh) && bh2jh(bitmap_bh)->b_committed_data) {
Mingming Caofaa56972006-03-26 01:37:58 -08001405 int i;
1406
1407 for (i = 0; i < num; i++) {
Mingming Cao1c2bf372006-06-25 05:48:06 -07001408 if (ext3_test_bit(grp_alloc_blk+i,
Mingming Caofaa56972006-03-26 01:37:58 -08001409 bh2jh(bitmap_bh)->b_committed_data)) {
1410 printk("%s: block was unexpectedly set in "
1411 "b_committed_data\n", __FUNCTION__);
1412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414 }
Mingming Cao1c2bf372006-06-25 05:48:06 -07001415 ext3_debug("found bit %d\n", grp_alloc_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 spin_unlock(sb_bgl_lock(sbi, group_no));
1417 jbd_unlock_bh_state(bitmap_bh);
1418#endif
1419
Mingming Caofaa56972006-03-26 01:37:58 -08001420 if (ret_block + num - 1 >= le32_to_cpu(es->s_blocks_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 ext3_error(sb, "ext3_new_block",
Mingming Cao1c2bf372006-06-25 05:48:06 -07001422 "block("E3FSBLK") >= blocks count(%d) - "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 "block_group = %d, es == %p ", ret_block,
1424 le32_to_cpu(es->s_blocks_count), group_no, es);
1425 goto out;
1426 }
1427
1428 /*
1429 * It is up to the caller to add the new buffer to a journal
1430 * list of some description. We don't know in advance whether
1431 * the caller wants to use it as metadata or data.
1432 */
Mingming Cao1c2bf372006-06-25 05:48:06 -07001433 ext3_debug("allocating block %lu. Goal hits %d of %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 ret_block, goal_hits, goal_attempts);
1435
1436 spin_lock(sb_bgl_lock(sbi, group_no));
1437 gdp->bg_free_blocks_count =
Mingming Caofaa56972006-03-26 01:37:58 -08001438 cpu_to_le16(le16_to_cpu(gdp->bg_free_blocks_count) - num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 spin_unlock(sb_bgl_lock(sbi, group_no));
Mingming Caofaa56972006-03-26 01:37:58 -08001440 percpu_counter_mod(&sbi->s_freeblocks_counter, -num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 BUFFER_TRACE(gdp_bh, "journal_dirty_metadata for group descriptor");
1443 err = ext3_journal_dirty_metadata(handle, gdp_bh);
1444 if (!fatal)
1445 fatal = err;
1446
1447 sb->s_dirt = 1;
1448 if (fatal)
1449 goto out;
1450
1451 *errp = 0;
1452 brelse(bitmap_bh);
Mingming Caofaa56972006-03-26 01:37:58 -08001453 DQUOT_FREE_BLOCK(inode, *count-num);
Mingming Caob54e41e2006-03-26 01:37:57 -08001454 *count = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return ret_block;
1456
1457io_error:
1458 *errp = -EIO;
1459out:
1460 if (fatal) {
1461 *errp = fatal;
1462 ext3_std_error(sb, fatal);
1463 }
1464 /*
1465 * Undo the block allocation
1466 */
1467 if (!performed_allocation)
Mingming Caofaa56972006-03-26 01:37:58 -08001468 DQUOT_FREE_BLOCK(inode, *count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 brelse(bitmap_bh);
1470 return 0;
1471}
1472
Mingming Cao1c2bf372006-06-25 05:48:06 -07001473ext3_fsblk_t ext3_new_block(handle_t *handle, struct inode *inode,
1474 ext3_fsblk_t goal, int *errp)
Mingming Caob54e41e2006-03-26 01:37:57 -08001475{
1476 unsigned long count = 1;
1477
1478 return ext3_new_blocks(handle, inode, goal, &count, errp);
1479}
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481unsigned long ext3_count_free_blocks(struct super_block *sb)
1482{
1483 unsigned long desc_count;
1484 struct ext3_group_desc *gdp;
1485 int i;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001486 unsigned long ngroups = EXT3_SB(sb)->s_groups_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487#ifdef EXT3FS_DEBUG
1488 struct ext3_super_block *es;
1489 unsigned long bitmap_count, x;
1490 struct buffer_head *bitmap_bh = NULL;
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 es = EXT3_SB(sb)->s_es;
1493 desc_count = 0;
1494 bitmap_count = 0;
1495 gdp = NULL;
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001496
Glauber de Oliveira Costa5b116872005-10-30 15:02:48 -08001497 smp_rmb();
Glauber de Oliveira Costa8bdac5d2005-09-22 21:44:26 -07001498 for (i = 0; i < ngroups; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 gdp = ext3_get_group_desc(sb, i, NULL);
1500 if (!gdp)
1501 continue;
1502 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1503 brelse(bitmap_bh);
1504 bitmap_bh = read_block_bitmap(sb, i);
1505 if (bitmap_bh == NULL)
1506 continue;
1507
1508 x = ext3_count_free(bitmap_bh, sb->s_blocksize);
1509 printk("group %d: stored = %d, counted = %lu\n",
1510 i, le16_to_cpu(gdp->bg_free_blocks_count), x);
1511 bitmap_count += x;
1512 }
1513 brelse(bitmap_bh);
1514 printk("ext3_count_free_blocks: stored = %u, computed = %lu, %lu\n",
1515 le32_to_cpu(es->s_free_blocks_count), desc_count, bitmap_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 return bitmap_count;
1517#else
1518 desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 smp_rmb();
1520 for (i = 0; i < ngroups; i++) {
1521 gdp = ext3_get_group_desc(sb, i, NULL);
1522 if (!gdp)
1523 continue;
1524 desc_count += le16_to_cpu(gdp->bg_free_blocks_count);
1525 }
1526
1527 return desc_count;
1528#endif
1529}
1530
1531static inline int
Mingming Cao1c2bf372006-06-25 05:48:06 -07001532block_in_use(ext3_fsblk_t block, struct super_block *sb, unsigned char *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 return ext3_test_bit ((block -
1535 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block)) %
1536 EXT3_BLOCKS_PER_GROUP(sb), map);
1537}
1538
1539static inline int test_root(int a, int b)
1540{
1541 int num = b;
1542
1543 while (a > num)
1544 num *= b;
1545 return num == a;
1546}
1547
1548static int ext3_group_sparse(int group)
1549{
1550 if (group <= 1)
1551 return 1;
1552 if (!(group & 1))
1553 return 0;
1554 return (test_root(group, 7) || test_root(group, 5) ||
1555 test_root(group, 3));
1556}
1557
1558/**
1559 * ext3_bg_has_super - number of blocks used by the superblock in group
1560 * @sb: superblock for filesystem
1561 * @group: group number to check
1562 *
1563 * Return the number of blocks used by the superblock (primary or backup)
1564 * in this group. Currently this will be only 0 or 1.
1565 */
1566int ext3_bg_has_super(struct super_block *sb, int group)
1567{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001568 if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1569 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1570 !ext3_group_sparse(group))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return 0;
1572 return 1;
1573}
1574
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001575static unsigned long ext3_bg_num_gdb_meta(struct super_block *sb, int group)
1576{
1577 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
1578 unsigned long first = metagroup * EXT3_DESC_PER_BLOCK(sb);
1579 unsigned long last = first + EXT3_DESC_PER_BLOCK(sb) - 1;
1580
1581 if (group == first || group == first + 1 || group == last)
1582 return 1;
1583 return 0;
1584}
1585
1586static unsigned long ext3_bg_num_gdb_nometa(struct super_block *sb, int group)
1587{
1588 if (EXT3_HAS_RO_COMPAT_FEATURE(sb,
1589 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER) &&
1590 !ext3_group_sparse(group))
1591 return 0;
1592 return EXT3_SB(sb)->s_gdb_count;
1593}
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595/**
1596 * ext3_bg_num_gdb - number of blocks used by the group table in group
1597 * @sb: superblock for filesystem
1598 * @group: group number to check
1599 *
1600 * Return the number of blocks used by the group descriptor table
1601 * (primary or backup) in this group. In the future there may be a
1602 * different number of descriptor blocks in each group.
1603 */
1604unsigned long ext3_bg_num_gdb(struct super_block *sb, int group)
1605{
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001606 unsigned long first_meta_bg =
1607 le32_to_cpu(EXT3_SB(sb)->s_es->s_first_meta_bg);
1608 unsigned long metagroup = group / EXT3_DESC_PER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Glauber de Oliveira Costab5a7c4f2006-03-24 03:18:37 -08001610 if (!EXT3_HAS_INCOMPAT_FEATURE(sb,EXT3_FEATURE_INCOMPAT_META_BG) ||
1611 metagroup < first_meta_bg)
1612 return ext3_bg_num_gdb_nometa(sb,group);
1613
1614 return ext3_bg_num_gdb_meta(sb,group);
1615
1616}