RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / fs / ext3 / ialloc.c
blobbae348a775f4f161146bd6e7eff546523e710e70
1 /*
2 * linux/fs/ext3/ialloc.c
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)
9 * BSD ufs-inspired inode and directory allocation by
10 * Stephen Tweedie (sct@redhat.com), 1993
11 * Big-endian to little-endian byte-swapping/bitmaps by
12 * David S. Miller (davem@caip.rutgers.edu), 1995
15 #include <linux/time.h>
16 #include <linux/fs.h>
17 #include <linux/jbd.h>
18 #include <linux/ext3_fs.h>
19 #include <linux/ext3_jbd.h>
20 #include <linux/stat.h>
21 #include <linux/string.h>
22 #include <linux/quotaops.h>
23 #include <linux/buffer_head.h>
24 #include <linux/random.h>
25 #include <linux/bitops.h>
27 #include <asm/byteorder.h>
29 #include "xattr.h"
30 #include "acl.h"
33 * ialloc.c contains the inodes allocation and deallocation routines
37 * The free inodes are managed by bitmaps. A file system contains several
38 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
39 * block for inodes, N blocks for the inode table and data blocks.
41 * The file system contains group descriptors which are located after the
42 * super block. Each descriptor contains the number of the bitmap block and
43 * the free blocks count in the block.
48 * Read the inode allocation bitmap for a given block_group, reading
49 * into the specified slot in the superblock's bitmap cache.
51 * Return buffer_head of bitmap on success or NULL.
53 static struct buffer_head *
54 read_inode_bitmap(struct super_block * sb, unsigned long block_group)
56 struct ext3_group_desc *desc;
57 struct buffer_head *bh = NULL;
59 desc = ext3_get_group_desc(sb, block_group, NULL);
60 if (!desc)
61 goto error_out;
63 bh = sb_bread(sb, le32_to_cpu(desc->bg_inode_bitmap));
64 if (!bh)
65 ext3_error(sb, "read_inode_bitmap",
66 "Cannot read inode bitmap - "
67 "block_group = %lu, inode_bitmap = %u",
68 block_group, le32_to_cpu(desc->bg_inode_bitmap));
69 error_out:
70 return bh;
74 * NOTE! When we get the inode, we're the only people
75 * that have access to it, and as such there are no
76 * race conditions we have to worry about. The inode
77 * is not on the hash-lists, and it cannot be reached
78 * through the filesystem because the directory entry
79 * has been deleted earlier.
81 * HOWEVER: we must make sure that we get no aliases,
82 * which means that we have to call "clear_inode()"
83 * _before_ we mark the inode not in use in the inode
84 * bitmaps. Otherwise a newly created file might use
85 * the same inode number (not actually the same pointer
86 * though), and then we'd have two inodes sharing the
87 * same inode number and space on the harddisk.
89 void ext3_free_inode (handle_t *handle, struct inode * inode)
91 struct super_block * sb = inode->i_sb;
92 int is_directory;
93 unsigned long ino;
94 struct buffer_head *bitmap_bh = NULL;
95 struct buffer_head *bh2;
96 unsigned long block_group;
97 unsigned long bit;
98 struct ext3_group_desc * gdp;
99 struct ext3_super_block * es;
100 struct ext3_sb_info *sbi;
101 int fatal = 0, err;
103 if (atomic_read(&inode->i_count) > 1) {
104 printk ("ext3_free_inode: inode has count=%d\n",
105 atomic_read(&inode->i_count));
106 return;
108 if (inode->i_nlink) {
109 printk ("ext3_free_inode: inode has nlink=%d\n",
110 inode->i_nlink);
111 return;
113 if (!sb) {
114 printk("ext3_free_inode: inode on nonexistent device\n");
115 return;
117 sbi = EXT3_SB(sb);
119 ino = inode->i_ino;
120 ext3_debug ("freeing inode %lu\n", ino);
123 * Note: we must free any quota before locking the superblock,
124 * as writing the quota to disk may need the lock as well.
126 DQUOT_INIT(inode);
127 ext3_xattr_delete_inode(handle, inode);
128 DQUOT_FREE_INODE(inode);
129 DQUOT_DROP(inode);
131 is_directory = S_ISDIR(inode->i_mode);
133 /* Do this BEFORE marking the inode not in use or returning an error */
134 clear_inode (inode);
136 es = EXT3_SB(sb)->s_es;
137 if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
138 ext3_error (sb, "ext3_free_inode",
139 "reserved or nonexistent inode %lu", ino);
140 goto error_return;
142 block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
143 bit = (ino - 1) % EXT3_INODES_PER_GROUP(sb);
144 bitmap_bh = read_inode_bitmap(sb, block_group);
145 if (!bitmap_bh)
146 goto error_return;
148 BUFFER_TRACE(bitmap_bh, "get_write_access");
149 fatal = ext3_journal_get_write_access(handle, bitmap_bh);
150 if (fatal)
151 goto error_return;
153 /* Ok, now we can actually update the inode bitmaps.. */
154 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
155 bit, bitmap_bh->b_data))
156 ext3_error (sb, "ext3_free_inode",
157 "bit already cleared for inode %lu", ino);
158 else {
159 gdp = ext3_get_group_desc (sb, block_group, &bh2);
161 BUFFER_TRACE(bh2, "get_write_access");
162 fatal = ext3_journal_get_write_access(handle, bh2);
163 if (fatal) goto error_return;
165 if (gdp) {
166 spin_lock(sb_bgl_lock(sbi, block_group));
167 le16_add_cpu(&gdp->bg_free_inodes_count, 1);
168 if (is_directory)
169 le16_add_cpu(&gdp->bg_used_dirs_count, -1);
170 spin_unlock(sb_bgl_lock(sbi, block_group));
171 percpu_counter_inc(&sbi->s_freeinodes_counter);
172 if (is_directory)
173 percpu_counter_dec(&sbi->s_dirs_counter);
176 BUFFER_TRACE(bh2, "call ext3_journal_dirty_metadata");
177 err = ext3_journal_dirty_metadata(handle, bh2);
178 if (!fatal) fatal = err;
180 BUFFER_TRACE(bitmap_bh, "call ext3_journal_dirty_metadata");
181 err = ext3_journal_dirty_metadata(handle, bitmap_bh);
182 if (!fatal)
183 fatal = err;
184 sb->s_dirt = 1;
185 error_return:
186 brelse(bitmap_bh);
187 ext3_std_error(sb, fatal);
191 * There are two policies for allocating an inode. If the new inode is
192 * a directory, then a forward search is made for a block group with both
193 * free space and a low directory-to-inode ratio; if that fails, then of
194 * the groups with above-average free space, that group with the fewest
195 * directories already is chosen.
197 * For other inodes, search forward from the parent directory\'s block
198 * group to find a free inode.
200 static int find_group_dir(struct super_block *sb, struct inode *parent)
202 int ngroups = EXT3_SB(sb)->s_groups_count;
203 unsigned int freei, avefreei;
204 struct ext3_group_desc *desc, *best_desc = NULL;
205 struct buffer_head *bh;
206 int group, best_group = -1;
208 freei = percpu_counter_read_positive(&EXT3_SB(sb)->s_freeinodes_counter);
209 avefreei = freei / ngroups;
211 for (group = 0; group < ngroups; group++) {
212 desc = ext3_get_group_desc (sb, group, &bh);
213 if (!desc || !desc->bg_free_inodes_count)
214 continue;
215 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
216 continue;
217 if (!best_desc ||
218 (le16_to_cpu(desc->bg_free_blocks_count) >
219 le16_to_cpu(best_desc->bg_free_blocks_count))) {
220 best_group = group;
221 best_desc = desc;
224 return best_group;
228 * Orlov's allocator for directories.
230 * We always try to spread first-level directories.
232 * If there are blockgroups with both free inodes and free blocks counts
233 * not worse than average we return one with smallest directory count.
234 * Otherwise we simply return a random group.
236 * For the rest rules look so:
238 * It's OK to put directory into a group unless
239 * it has too many directories already (max_dirs) or
240 * it has too few free inodes left (min_inodes) or
241 * it has too few free blocks left (min_blocks) or
242 * it's already running too large debt (max_debt).
243 * Parent's group is prefered, if it doesn't satisfy these
244 * conditions we search cyclically through the rest. If none
245 * of the groups look good we just look for a group with more
246 * free inodes than average (starting at parent's group).
248 * Debt is incremented each time we allocate a directory and decremented
249 * when we allocate an inode, within 0--255.
252 #define INODE_COST 64
253 #define BLOCK_COST 256
255 static int find_group_orlov(struct super_block *sb, struct inode *parent)
257 int parent_group = EXT3_I(parent)->i_block_group;
258 struct ext3_sb_info *sbi = EXT3_SB(sb);
259 struct ext3_super_block *es = sbi->s_es;
260 int ngroups = sbi->s_groups_count;
261 int inodes_per_group = EXT3_INODES_PER_GROUP(sb);
262 unsigned int freei, avefreei;
263 ext3_fsblk_t freeb, avefreeb;
264 ext3_fsblk_t blocks_per_dir;
265 unsigned int ndirs;
266 int max_debt, max_dirs, min_inodes;
267 ext3_grpblk_t min_blocks;
268 int group = -1, i;
269 struct ext3_group_desc *desc;
270 struct buffer_head *bh;
272 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
273 avefreei = freei / ngroups;
274 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
275 avefreeb = freeb / ngroups;
276 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
278 if ((parent == sb->s_root->d_inode) ||
279 (EXT3_I(parent)->i_flags & EXT3_TOPDIR_FL)) {
280 int best_ndir = inodes_per_group;
281 int best_group = -1;
283 get_random_bytes(&group, sizeof(group));
284 parent_group = (unsigned)group % ngroups;
285 for (i = 0; i < ngroups; i++) {
286 group = (parent_group + i) % ngroups;
287 desc = ext3_get_group_desc (sb, group, &bh);
288 if (!desc || !desc->bg_free_inodes_count)
289 continue;
290 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
291 continue;
292 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
293 continue;
294 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
295 continue;
296 best_group = group;
297 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
299 if (best_group >= 0)
300 return best_group;
301 goto fallback;
304 blocks_per_dir = (le32_to_cpu(es->s_blocks_count) - freeb) / ndirs;
306 max_dirs = ndirs / ngroups + inodes_per_group / 16;
307 min_inodes = avefreei - inodes_per_group / 4;
308 min_blocks = avefreeb - EXT3_BLOCKS_PER_GROUP(sb) / 4;
310 max_debt = EXT3_BLOCKS_PER_GROUP(sb) / max(blocks_per_dir, (ext3_fsblk_t)BLOCK_COST);
311 if (max_debt * INODE_COST > inodes_per_group)
312 max_debt = inodes_per_group / INODE_COST;
313 if (max_debt > 255)
314 max_debt = 255;
315 if (max_debt == 0)
316 max_debt = 1;
318 for (i = 0; i < ngroups; i++) {
319 group = (parent_group + i) % ngroups;
320 desc = ext3_get_group_desc (sb, group, &bh);
321 if (!desc || !desc->bg_free_inodes_count)
322 continue;
323 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
324 continue;
325 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
326 continue;
327 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
328 continue;
329 return group;
332 fallback:
333 for (i = 0; i < ngroups; i++) {
334 group = (parent_group + i) % ngroups;
335 desc = ext3_get_group_desc (sb, group, &bh);
336 if (!desc || !desc->bg_free_inodes_count)
337 continue;
338 if (le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
339 return group;
342 if (avefreei) {
344 * The free-inodes counter is approximate, and for really small
345 * filesystems the above test can fail to find any blockgroups
347 avefreei = 0;
348 goto fallback;
351 return -1;
354 static int find_group_other(struct super_block *sb, struct inode *parent)
356 int parent_group = EXT3_I(parent)->i_block_group;
357 int ngroups = EXT3_SB(sb)->s_groups_count;
358 struct ext3_group_desc *desc;
359 struct buffer_head *bh;
360 int group, i;
363 * Try to place the inode in its parent directory
365 group = parent_group;
366 desc = ext3_get_group_desc (sb, group, &bh);
367 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
368 le16_to_cpu(desc->bg_free_blocks_count))
369 return group;
372 * We're going to place this inode in a different blockgroup from its
373 * parent. We want to cause files in a common directory to all land in
374 * the same blockgroup. But we want files which are in a different
375 * directory which shares a blockgroup with our parent to land in a
376 * different blockgroup.
378 * So add our directory's i_ino into the starting point for the hash.
380 group = (group + parent->i_ino) % ngroups;
383 * Use a quadratic hash to find a group with a free inode and some free
384 * blocks.
386 for (i = 1; i < ngroups; i <<= 1) {
387 group += i;
388 if (group >= ngroups)
389 group -= ngroups;
390 desc = ext3_get_group_desc (sb, group, &bh);
391 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
392 le16_to_cpu(desc->bg_free_blocks_count))
393 return group;
397 * That failed: try linear search for a free inode, even if that group
398 * has no free blocks.
400 group = parent_group;
401 for (i = 0; i < ngroups; i++) {
402 if (++group >= ngroups)
403 group = 0;
404 desc = ext3_get_group_desc (sb, group, &bh);
405 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
406 return group;
409 return -1;
413 * There are two policies for allocating an inode. If the new inode is
414 * a directory, then a forward search is made for a block group with both
415 * free space and a low directory-to-inode ratio; if that fails, then of
416 * the groups with above-average free space, that group with the fewest
417 * directories already is chosen.
419 * For other inodes, search forward from the parent directory's block
420 * group to find a free inode.
422 struct inode *ext3_new_inode(handle_t *handle, struct inode * dir, int mode)
424 struct super_block *sb;
425 struct buffer_head *bitmap_bh = NULL;
426 struct buffer_head *bh2;
427 int group;
428 unsigned long ino = 0;
429 struct inode * inode;
430 struct ext3_group_desc * gdp = NULL;
431 struct ext3_super_block * es;
432 struct ext3_inode_info *ei;
433 struct ext3_sb_info *sbi;
434 int err = 0;
435 struct inode *ret;
436 int i;
438 /* Cannot create files in a deleted directory */
439 if (!dir || !dir->i_nlink)
440 return ERR_PTR(-EPERM);
442 sb = dir->i_sb;
443 inode = new_inode(sb);
444 if (!inode)
445 return ERR_PTR(-ENOMEM);
446 ei = EXT3_I(inode);
448 sbi = EXT3_SB(sb);
449 es = sbi->s_es;
450 if (S_ISDIR(mode)) {
451 if (test_opt (sb, OLDALLOC))
452 group = find_group_dir(sb, dir);
453 else
454 group = find_group_orlov(sb, dir);
455 } else
456 group = find_group_other(sb, dir);
458 err = -ENOSPC;
459 if (group == -1)
460 goto out;
462 for (i = 0; i < sbi->s_groups_count; i++) {
463 err = -EIO;
465 gdp = ext3_get_group_desc(sb, group, &bh2);
466 if (!gdp)
467 goto fail;
469 brelse(bitmap_bh);
470 bitmap_bh = read_inode_bitmap(sb, group);
471 if (!bitmap_bh)
472 goto fail;
474 ino = 0;
476 repeat_in_this_group:
477 ino = ext3_find_next_zero_bit((unsigned long *)
478 bitmap_bh->b_data, EXT3_INODES_PER_GROUP(sb), ino);
479 if (ino < EXT3_INODES_PER_GROUP(sb)) {
481 BUFFER_TRACE(bitmap_bh, "get_write_access");
482 err = ext3_journal_get_write_access(handle, bitmap_bh);
483 if (err)
484 goto fail;
486 if (!ext3_set_bit_atomic(sb_bgl_lock(sbi, group),
487 ino, bitmap_bh->b_data)) {
488 /* we won it */
489 BUFFER_TRACE(bitmap_bh,
490 "call ext3_journal_dirty_metadata");
491 err = ext3_journal_dirty_metadata(handle,
492 bitmap_bh);
493 if (err)
494 goto fail;
495 goto got;
497 /* we lost it */
498 journal_release_buffer(handle, bitmap_bh);
500 if (++ino < EXT3_INODES_PER_GROUP(sb))
501 goto repeat_in_this_group;
505 * This case is possible in concurrent environment. It is very
506 * rare. We cannot repeat the find_group_xxx() call because
507 * that will simply return the same blockgroup, because the
508 * group descriptor metadata has not yet been updated.
509 * So we just go onto the next blockgroup.
511 if (++group == sbi->s_groups_count)
512 group = 0;
514 err = -ENOSPC;
515 goto out;
517 got:
518 ino += group * EXT3_INODES_PER_GROUP(sb) + 1;
519 if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
520 ext3_error (sb, "ext3_new_inode",
521 "reserved inode or inode > inodes count - "
522 "block_group = %d, inode=%lu", group, ino);
523 err = -EIO;
524 goto fail;
527 BUFFER_TRACE(bh2, "get_write_access");
528 err = ext3_journal_get_write_access(handle, bh2);
529 if (err) goto fail;
530 spin_lock(sb_bgl_lock(sbi, group));
531 le16_add_cpu(&gdp->bg_free_inodes_count, -1);
532 if (S_ISDIR(mode)) {
533 le16_add_cpu(&gdp->bg_used_dirs_count, 1);
535 spin_unlock(sb_bgl_lock(sbi, group));
536 BUFFER_TRACE(bh2, "call ext3_journal_dirty_metadata");
537 err = ext3_journal_dirty_metadata(handle, bh2);
538 if (err) goto fail;
540 percpu_counter_dec(&sbi->s_freeinodes_counter);
541 if (S_ISDIR(mode))
542 percpu_counter_inc(&sbi->s_dirs_counter);
543 sb->s_dirt = 1;
545 inode->i_uid = current->fsuid;
546 if (test_opt (sb, GRPID))
547 inode->i_gid = dir->i_gid;
548 else if (dir->i_mode & S_ISGID) {
549 inode->i_gid = dir->i_gid;
550 if (S_ISDIR(mode))
551 mode |= S_ISGID;
552 } else
553 inode->i_gid = current->fsgid;
554 inode->i_mode = mode;
556 inode->i_ino = ino;
557 /* This is the optimal IO size (for stat), not the fs block size */
558 inode->i_blocks = 0;
559 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC;
561 memset(ei->i_data, 0, sizeof(ei->i_data));
562 ei->i_dir_start_lookup = 0;
563 ei->i_disksize = 0;
565 ei->i_flags = EXT3_I(dir)->i_flags & ~EXT3_INDEX_FL;
566 if (S_ISLNK(mode))
567 ei->i_flags &= ~(EXT3_IMMUTABLE_FL|EXT3_APPEND_FL);
568 /* dirsync only applies to directories */
569 if (!S_ISDIR(mode))
570 ei->i_flags &= ~EXT3_DIRSYNC_FL;
571 #ifdef EXT3_FRAGMENTS
572 ei->i_faddr = 0;
573 ei->i_frag_no = 0;
574 ei->i_frag_size = 0;
575 #endif
576 ei->i_file_acl = 0;
577 ei->i_dir_acl = 0;
578 ei->i_dtime = 0;
579 ei->i_block_alloc_info = NULL;
580 ei->i_block_group = group;
582 ext3_set_inode_flags(inode);
583 if (IS_DIRSYNC(inode))
584 handle->h_sync = 1;
585 insert_inode_hash(inode);
586 spin_lock(&sbi->s_next_gen_lock);
587 inode->i_generation = sbi->s_next_generation++;
588 spin_unlock(&sbi->s_next_gen_lock);
590 ei->i_state = EXT3_STATE_NEW;
591 ei->i_extra_isize =
592 (EXT3_INODE_SIZE(inode->i_sb) > EXT3_GOOD_OLD_INODE_SIZE) ?
593 sizeof(struct ext3_inode) - EXT3_GOOD_OLD_INODE_SIZE : 0;
595 ret = inode;
596 if(DQUOT_ALLOC_INODE(inode)) {
597 err = -EDQUOT;
598 goto fail_drop;
601 err = ext3_init_acl(handle, inode, dir);
602 if (err)
603 goto fail_free_drop;
605 err = ext3_init_security(handle,inode, dir);
606 if (err)
607 goto fail_free_drop;
609 err = ext3_mark_inode_dirty(handle, inode);
610 if (err) {
611 ext3_std_error(sb, err);
612 goto fail_free_drop;
615 ext3_debug("allocating inode %lu\n", inode->i_ino);
616 goto really_out;
617 fail:
618 ext3_std_error(sb, err);
619 out:
620 iput(inode);
621 ret = ERR_PTR(err);
622 really_out:
623 brelse(bitmap_bh);
624 return ret;
626 fail_free_drop:
627 DQUOT_FREE_INODE(inode);
629 fail_drop:
630 DQUOT_DROP(inode);
631 inode->i_flags |= S_NOQUOTA;
632 inode->i_nlink = 0;
633 iput(inode);
634 brelse(bitmap_bh);
635 return ERR_PTR(err);
638 /* Verify that we are loading a valid orphan from disk */
639 struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino)
641 unsigned long max_ino = le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count);
642 unsigned long block_group;
643 int bit;
644 struct buffer_head *bitmap_bh = NULL;
645 struct inode *inode = NULL;
647 /* Error cases - e2fsck has already cleaned up for us */
648 if (ino > max_ino) {
649 ext3_warning(sb, __FUNCTION__,
650 "bad orphan ino %lu! e2fsck was run?", ino);
651 goto out;
654 block_group = (ino - 1) / EXT3_INODES_PER_GROUP(sb);
655 bit = (ino - 1) % EXT3_INODES_PER_GROUP(sb);
656 bitmap_bh = read_inode_bitmap(sb, block_group);
657 if (!bitmap_bh) {
658 ext3_warning(sb, __FUNCTION__,
659 "inode bitmap error for orphan %lu", ino);
660 goto out;
663 /* Having the inode bit set should be a 100% indicator that this
664 * is a valid orphan (no e2fsck run on fs). Orphans also include
665 * inodes that were being truncated, so we can't check i_nlink==0.
667 if (!ext3_test_bit(bit, bitmap_bh->b_data) ||
668 !(inode = iget(sb, ino)) || is_bad_inode(inode) ||
669 NEXT_ORPHAN(inode) > max_ino) {
670 ext3_warning(sb, __FUNCTION__,
671 "bad orphan inode %lu! e2fsck was run?", ino);
672 printk(KERN_NOTICE "ext3_test_bit(bit=%d, block=%llu) = %d\n",
673 bit, (unsigned long long)bitmap_bh->b_blocknr,
674 ext3_test_bit(bit, bitmap_bh->b_data));
675 printk(KERN_NOTICE "inode=%p\n", inode);
676 if (inode) {
677 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
678 is_bad_inode(inode));
679 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
680 NEXT_ORPHAN(inode));
681 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
683 /* Avoid freeing blocks if we got a bad deleted inode */
684 if (inode && inode->i_nlink == 0)
685 inode->i_blocks = 0;
686 iput(inode);
687 inode = NULL;
689 out:
690 brelse(bitmap_bh);
691 return inode;
694 unsigned long ext3_count_free_inodes (struct super_block * sb)
696 unsigned long desc_count;
697 struct ext3_group_desc *gdp;
698 int i;
699 #ifdef EXT3FS_DEBUG
700 struct ext3_super_block *es;
701 unsigned long bitmap_count, x;
702 struct buffer_head *bitmap_bh = NULL;
704 es = EXT3_SB(sb)->s_es;
705 desc_count = 0;
706 bitmap_count = 0;
707 gdp = NULL;
708 for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
709 gdp = ext3_get_group_desc (sb, i, NULL);
710 if (!gdp)
711 continue;
712 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
713 brelse(bitmap_bh);
714 bitmap_bh = read_inode_bitmap(sb, i);
715 if (!bitmap_bh)
716 continue;
718 x = ext3_count_free(bitmap_bh, EXT3_INODES_PER_GROUP(sb) / 8);
719 printk("group %d: stored = %d, counted = %lu\n",
720 i, le16_to_cpu(gdp->bg_free_inodes_count), x);
721 bitmap_count += x;
723 brelse(bitmap_bh);
724 printk("ext3_count_free_inodes: stored = %u, computed = %lu, %lu\n",
725 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
726 return desc_count;
727 #else
728 desc_count = 0;
729 for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
730 gdp = ext3_get_group_desc (sb, i, NULL);
731 if (!gdp)
732 continue;
733 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
734 cond_resched();
736 return desc_count;
737 #endif
740 /* Called at mount-time, super-block is locked */
741 unsigned long ext3_count_dirs (struct super_block * sb)
743 unsigned long count = 0;
744 int i;
746 for (i = 0; i < EXT3_SB(sb)->s_groups_count; i++) {
747 struct ext3_group_desc *gdp = ext3_get_group_desc (sb, i, NULL);
748 if (!gdp)
749 continue;
750 count += le16_to_cpu(gdp->bg_used_dirs_count);
752 return count;