blob: 64dea8689e1f7157a558dbcbcb6aefef7a429ef3 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/ialloc.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * 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
13 */
14
15#include <linux/time.h>
16#include <linux/fs.h>
Mingming Caodab291a2006-10-11 01:21:01 -070017#include <linux/jbd2.h>
Mingming Cao617ba132006-10-11 01:20:53 -070018#include <linux/ext4_fs.h>
Mingming Caodab291a2006-10-11 01:21:01 -070019#include <linux/ext4_jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070020#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>
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070026#include <linux/blkdev.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070027#include <asm/byteorder.h>
28
29#include "xattr.h"
30#include "acl.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040031#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032
33/*
34 * ialloc.c contains the inodes allocation and deallocation routines
35 */
36
37/*
38 * The free inodes are managed by bitmaps. A file system contains several
39 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
40 * block for inodes, N blocks for the inode table and data blocks.
41 *
42 * The file system contains group descriptors which are located after the
43 * super block. Each descriptor contains the number of the bitmap block and
44 * the free blocks count in the block.
45 */
46
Andreas Dilger717d50e2007-10-16 18:38:25 -040047/*
48 * To avoid calling the atomic setbit hundreds or thousands of times, we only
49 * need to use it within a single byte (to ensure we get endianness right).
50 * We can use memset for the rest of the bitmap as there are no other users.
51 */
52void mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
53{
54 int i;
55
56 if (start_bit >= end_bit)
57 return;
58
59 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
60 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
61 ext4_set_bit(i, bitmap);
62 if (i < end_bit)
63 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
64}
65
66/* Initializes an uninitialized inode bitmap */
Avantika Mathurfd2d4292008-01-28 23:58:27 -050067unsigned ext4_init_inode_bitmap(struct super_block *sb, struct buffer_head *bh,
68 ext4_group_t block_group,
Andreas Dilger717d50e2007-10-16 18:38:25 -040069 struct ext4_group_desc *gdp)
70{
71 struct ext4_sb_info *sbi = EXT4_SB(sb);
72
73 J_ASSERT_BH(bh, buffer_locked(bh));
74
75 /* If checksum is bad mark all blocks and inodes use to prevent
76 * allocation, essentially implementing a per-group read-only flag. */
77 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -050078 ext4_error(sb, __FUNCTION__, "Checksum bad for group %lu\n",
Andreas Dilger717d50e2007-10-16 18:38:25 -040079 block_group);
80 gdp->bg_free_blocks_count = 0;
81 gdp->bg_free_inodes_count = 0;
82 gdp->bg_itable_unused = 0;
83 memset(bh->b_data, 0xff, sb->s_blocksize);
84 return 0;
85 }
86
87 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
88 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), EXT4_BLOCKS_PER_GROUP(sb),
89 bh->b_data);
90
91 return EXT4_INODES_PER_GROUP(sb);
92}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070093
94/*
95 * Read the inode allocation bitmap for a given block_group, reading
96 * into the specified slot in the superblock's bitmap cache.
97 *
98 * Return buffer_head of bitmap on success or NULL.
99 */
100static struct buffer_head *
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500101read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700102{
Mingming Cao617ba132006-10-11 01:20:53 -0700103 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700104 struct buffer_head *bh = NULL;
105
Mingming Cao617ba132006-10-11 01:20:53 -0700106 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700107 if (!desc)
108 goto error_out;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400109 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
110 bh = sb_getblk(sb, ext4_inode_bitmap(sb, desc));
111 if (!buffer_uptodate(bh)) {
112 lock_buffer(bh);
113 if (!buffer_uptodate(bh)) {
114 ext4_init_inode_bitmap(sb, bh, block_group,
115 desc);
116 set_buffer_uptodate(bh);
117 }
118 unlock_buffer(bh);
119 }
120 } else {
121 bh = sb_bread(sb, ext4_inode_bitmap(sb, desc));
122 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700123 if (!bh)
Mingming Cao617ba132006-10-11 01:20:53 -0700124 ext4_error(sb, "read_inode_bitmap",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700125 "Cannot read inode bitmap - "
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700126 "block_group = %lu, inode_bitmap = %llu",
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700127 block_group, ext4_inode_bitmap(sb, desc));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700128error_out:
129 return bh;
130}
131
132/*
133 * NOTE! When we get the inode, we're the only people
134 * that have access to it, and as such there are no
135 * race conditions we have to worry about. The inode
136 * is not on the hash-lists, and it cannot be reached
137 * through the filesystem because the directory entry
138 * has been deleted earlier.
139 *
140 * HOWEVER: we must make sure that we get no aliases,
141 * which means that we have to call "clear_inode()"
142 * _before_ we mark the inode not in use in the inode
143 * bitmaps. Otherwise a newly created file might use
144 * the same inode number (not actually the same pointer
145 * though), and then we'd have two inodes sharing the
146 * same inode number and space on the harddisk.
147 */
Mingming Cao617ba132006-10-11 01:20:53 -0700148void ext4_free_inode (handle_t *handle, struct inode * inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700149{
150 struct super_block * sb = inode->i_sb;
151 int is_directory;
152 unsigned long ino;
153 struct buffer_head *bitmap_bh = NULL;
154 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500155 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 unsigned long bit;
Mingming Cao617ba132006-10-11 01:20:53 -0700157 struct ext4_group_desc * gdp;
158 struct ext4_super_block * es;
159 struct ext4_sb_info *sbi;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700160 int fatal = 0, err;
161
162 if (atomic_read(&inode->i_count) > 1) {
Mingming Cao617ba132006-10-11 01:20:53 -0700163 printk ("ext4_free_inode: inode has count=%d\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164 atomic_read(&inode->i_count));
165 return;
166 }
167 if (inode->i_nlink) {
Mingming Cao617ba132006-10-11 01:20:53 -0700168 printk ("ext4_free_inode: inode has nlink=%d\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169 inode->i_nlink);
170 return;
171 }
172 if (!sb) {
Mingming Cao617ba132006-10-11 01:20:53 -0700173 printk("ext4_free_inode: inode on nonexistent device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 return;
175 }
Mingming Cao617ba132006-10-11 01:20:53 -0700176 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700177
178 ino = inode->i_ino;
Mingming Cao617ba132006-10-11 01:20:53 -0700179 ext4_debug ("freeing inode %lu\n", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180
181 /*
182 * Note: we must free any quota before locking the superblock,
183 * as writing the quota to disk may need the lock as well.
184 */
185 DQUOT_INIT(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700186 ext4_xattr_delete_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187 DQUOT_FREE_INODE(inode);
188 DQUOT_DROP(inode);
189
190 is_directory = S_ISDIR(inode->i_mode);
191
192 /* Do this BEFORE marking the inode not in use or returning an error */
193 clear_inode (inode);
194
Mingming Cao617ba132006-10-11 01:20:53 -0700195 es = EXT4_SB(sb)->s_es;
196 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
197 ext4_error (sb, "ext4_free_inode",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700198 "reserved or nonexistent inode %lu", ino);
199 goto error_return;
200 }
Mingming Cao617ba132006-10-11 01:20:53 -0700201 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
202 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700203 bitmap_bh = read_inode_bitmap(sb, block_group);
204 if (!bitmap_bh)
205 goto error_return;
206
207 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700208 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700209 if (fatal)
210 goto error_return;
211
212 /* Ok, now we can actually update the inode bitmaps.. */
Mingming Cao617ba132006-10-11 01:20:53 -0700213 if (!ext4_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700214 bit, bitmap_bh->b_data))
Mingming Cao617ba132006-10-11 01:20:53 -0700215 ext4_error (sb, "ext4_free_inode",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216 "bit already cleared for inode %lu", ino);
217 else {
Mingming Cao617ba132006-10-11 01:20:53 -0700218 gdp = ext4_get_group_desc (sb, block_group, &bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219
220 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700221 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 if (fatal) goto error_return;
223
224 if (gdp) {
225 spin_lock(sb_bgl_lock(sbi, block_group));
226 gdp->bg_free_inodes_count = cpu_to_le16(
227 le16_to_cpu(gdp->bg_free_inodes_count) + 1);
228 if (is_directory)
229 gdp->bg_used_dirs_count = cpu_to_le16(
230 le16_to_cpu(gdp->bg_used_dirs_count) - 1);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400231 gdp->bg_checksum = ext4_group_desc_csum(sbi,
232 block_group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233 spin_unlock(sb_bgl_lock(sbi, block_group));
234 percpu_counter_inc(&sbi->s_freeinodes_counter);
235 if (is_directory)
236 percpu_counter_dec(&sbi->s_dirs_counter);
237
238 }
Mingming Cao617ba132006-10-11 01:20:53 -0700239 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
240 err = ext4_journal_dirty_metadata(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 if (!fatal) fatal = err;
242 }
Mingming Cao617ba132006-10-11 01:20:53 -0700243 BUFFER_TRACE(bitmap_bh, "call ext4_journal_dirty_metadata");
244 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245 if (!fatal)
246 fatal = err;
247 sb->s_dirt = 1;
248error_return:
249 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700250 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251}
252
253/*
254 * There are two policies for allocating an inode. If the new inode is
255 * a directory, then a forward search is made for a block group with both
256 * free space and a low directory-to-inode ratio; if that fails, then of
257 * the groups with above-average free space, that group with the fewest
258 * directories already is chosen.
259 *
260 * For other inodes, search forward from the parent directory\'s block
261 * group to find a free inode.
262 */
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500263static ext4_group_t find_group_dir(struct super_block *sb, struct inode *parent)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500265 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700267 struct ext4_group_desc *desc, *best_desc = NULL;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500268 ext4_group_t group, best_group = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700269
Mingming Cao617ba132006-10-11 01:20:53 -0700270 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700271 avefreei = freei / ngroups;
272
273 for (group = 0; group < ngroups; group++) {
Eric Sandeenef2fb672007-10-16 23:26:30 -0700274 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700275 if (!desc || !desc->bg_free_inodes_count)
276 continue;
277 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
278 continue;
279 if (!best_desc ||
280 (le16_to_cpu(desc->bg_free_blocks_count) >
281 le16_to_cpu(best_desc->bg_free_blocks_count))) {
282 best_group = group;
283 best_desc = desc;
284 }
285 }
286 return best_group;
287}
288
289/*
290 * Orlov's allocator for directories.
291 *
292 * We always try to spread first-level directories.
293 *
294 * If there are blockgroups with both free inodes and free blocks counts
295 * not worse than average we return one with smallest directory count.
296 * Otherwise we simply return a random group.
297 *
298 * For the rest rules look so:
299 *
300 * It's OK to put directory into a group unless
301 * it has too many directories already (max_dirs) or
302 * it has too few free inodes left (min_inodes) or
303 * it has too few free blocks left (min_blocks) or
304 * it's already running too large debt (max_debt).
305 * Parent's group is prefered, if it doesn't satisfy these
306 * conditions we search cyclically through the rest. If none
307 * of the groups look good we just look for a group with more
308 * free inodes than average (starting at parent's group).
309 *
310 * Debt is incremented each time we allocate a directory and decremented
311 * when we allocate an inode, within 0--255.
312 */
313
314#define INODE_COST 64
315#define BLOCK_COST 256
316
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500317static ext4_group_t find_group_orlov(struct super_block *sb,
318 struct inode *parent)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500320 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700321 struct ext4_sb_info *sbi = EXT4_SB(sb);
322 struct ext4_super_block *es = sbi->s_es;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500323 ext4_group_t ngroups = sbi->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700324 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700325 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700326 ext4_fsblk_t freeb, avefreeb;
327 ext4_fsblk_t blocks_per_dir;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328 unsigned int ndirs;
329 int max_debt, max_dirs, min_inodes;
Mingming Cao617ba132006-10-11 01:20:53 -0700330 ext4_grpblk_t min_blocks;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500331 ext4_group_t group = -1, i;
Mingming Cao617ba132006-10-11 01:20:53 -0700332 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700333
334 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
335 avefreei = freei / ngroups;
336 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700337 avefreeb = freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700338 do_div(avefreeb, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700339 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
340
341 if ((parent == sb->s_root->d_inode) ||
Mingming Cao617ba132006-10-11 01:20:53 -0700342 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343 int best_ndir = inodes_per_group;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500344 ext4_group_t best_group = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700345
346 get_random_bytes(&group, sizeof(group));
347 parent_group = (unsigned)group % ngroups;
348 for (i = 0; i < ngroups; i++) {
349 group = (parent_group + i) % ngroups;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700350 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700351 if (!desc || !desc->bg_free_inodes_count)
352 continue;
353 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
354 continue;
355 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
356 continue;
357 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
358 continue;
359 best_group = group;
360 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
361 }
362 if (best_group >= 0)
363 return best_group;
364 goto fallback;
365 }
366
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700367 blocks_per_dir = ext4_blocks_count(es) - freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700368 do_div(blocks_per_dir, ndirs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700369
370 max_dirs = ndirs / ngroups + inodes_per_group / 16;
371 min_inodes = avefreei - inodes_per_group / 4;
Mingming Cao617ba132006-10-11 01:20:53 -0700372 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb) / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700373
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700374 max_debt = EXT4_BLOCKS_PER_GROUP(sb);
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700375 max_debt /= max_t(int, blocks_per_dir, BLOCK_COST);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700376 if (max_debt * INODE_COST > inodes_per_group)
377 max_debt = inodes_per_group / INODE_COST;
378 if (max_debt > 255)
379 max_debt = 255;
380 if (max_debt == 0)
381 max_debt = 1;
382
383 for (i = 0; i < ngroups; i++) {
384 group = (parent_group + i) % ngroups;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700385 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700386 if (!desc || !desc->bg_free_inodes_count)
387 continue;
388 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
389 continue;
390 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
391 continue;
392 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
393 continue;
394 return group;
395 }
396
397fallback:
398 for (i = 0; i < ngroups; i++) {
399 group = (parent_group + i) % ngroups;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700400 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 if (!desc || !desc->bg_free_inodes_count)
402 continue;
403 if (le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
404 return group;
405 }
406
407 if (avefreei) {
408 /*
409 * The free-inodes counter is approximate, and for really small
410 * filesystems the above test can fail to find any blockgroups
411 */
412 avefreei = 0;
413 goto fallback;
414 }
415
416 return -1;
417}
418
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500419static ext4_group_t find_group_other(struct super_block *sb,
420 struct inode *parent)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700421{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500422 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
423 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700424 struct ext4_group_desc *desc;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500425 ext4_group_t group, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700426
427 /*
428 * Try to place the inode in its parent directory
429 */
430 group = parent_group;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700431 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700432 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
433 le16_to_cpu(desc->bg_free_blocks_count))
434 return group;
435
436 /*
437 * We're going to place this inode in a different blockgroup from its
438 * parent. We want to cause files in a common directory to all land in
439 * the same blockgroup. But we want files which are in a different
440 * directory which shares a blockgroup with our parent to land in a
441 * different blockgroup.
442 *
443 * So add our directory's i_ino into the starting point for the hash.
444 */
445 group = (group + parent->i_ino) % ngroups;
446
447 /*
448 * Use a quadratic hash to find a group with a free inode and some free
449 * blocks.
450 */
451 for (i = 1; i < ngroups; i <<= 1) {
452 group += i;
453 if (group >= ngroups)
454 group -= ngroups;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700455 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700456 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
457 le16_to_cpu(desc->bg_free_blocks_count))
458 return group;
459 }
460
461 /*
462 * That failed: try linear search for a free inode, even if that group
463 * has no free blocks.
464 */
465 group = parent_group;
466 for (i = 0; i < ngroups; i++) {
467 if (++group >= ngroups)
468 group = 0;
Eric Sandeenef2fb672007-10-16 23:26:30 -0700469 desc = ext4_get_group_desc (sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
471 return group;
472 }
473
474 return -1;
475}
476
477/*
478 * There are two policies for allocating an inode. If the new inode is
479 * a directory, then a forward search is made for a block group with both
480 * free space and a low directory-to-inode ratio; if that fails, then of
481 * the groups with above-average free space, that group with the fewest
482 * directories already is chosen.
483 *
484 * For other inodes, search forward from the parent directory's block
485 * group to find a free inode.
486 */
Mingming Cao617ba132006-10-11 01:20:53 -0700487struct inode *ext4_new_inode(handle_t *handle, struct inode * dir, int mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488{
489 struct super_block *sb;
490 struct buffer_head *bitmap_bh = NULL;
491 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500492 ext4_group_t group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700493 unsigned long ino = 0;
494 struct inode * inode;
Mingming Cao617ba132006-10-11 01:20:53 -0700495 struct ext4_group_desc * gdp = NULL;
496 struct ext4_super_block * es;
497 struct ext4_inode_info *ei;
498 struct ext4_sb_info *sbi;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499 int err = 0;
500 struct inode *ret;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400501 int i, free = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700502
503 /* Cannot create files in a deleted directory */
504 if (!dir || !dir->i_nlink)
505 return ERR_PTR(-EPERM);
506
507 sb = dir->i_sb;
508 inode = new_inode(sb);
509 if (!inode)
510 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700511 ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512
Mingming Cao617ba132006-10-11 01:20:53 -0700513 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514 es = sbi->s_es;
515 if (S_ISDIR(mode)) {
516 if (test_opt (sb, OLDALLOC))
517 group = find_group_dir(sb, dir);
518 else
519 group = find_group_orlov(sb, dir);
520 } else
521 group = find_group_other(sb, dir);
522
523 err = -ENOSPC;
524 if (group == -1)
525 goto out;
526
527 for (i = 0; i < sbi->s_groups_count; i++) {
528 err = -EIO;
529
Mingming Cao617ba132006-10-11 01:20:53 -0700530 gdp = ext4_get_group_desc(sb, group, &bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700531 if (!gdp)
532 goto fail;
533
534 brelse(bitmap_bh);
535 bitmap_bh = read_inode_bitmap(sb, group);
536 if (!bitmap_bh)
537 goto fail;
538
539 ino = 0;
540
541repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700542 ino = ext4_find_next_zero_bit((unsigned long *)
543 bitmap_bh->b_data, EXT4_INODES_PER_GROUP(sb), ino);
544 if (ino < EXT4_INODES_PER_GROUP(sb)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700545
546 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700547 err = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548 if (err)
549 goto fail;
550
Mingming Cao617ba132006-10-11 01:20:53 -0700551 if (!ext4_set_bit_atomic(sb_bgl_lock(sbi, group),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700552 ino, bitmap_bh->b_data)) {
553 /* we won it */
554 BUFFER_TRACE(bitmap_bh,
Mingming Cao617ba132006-10-11 01:20:53 -0700555 "call ext4_journal_dirty_metadata");
556 err = ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557 bitmap_bh);
558 if (err)
559 goto fail;
560 goto got;
561 }
562 /* we lost it */
Mingming Caodab291a2006-10-11 01:21:01 -0700563 jbd2_journal_release_buffer(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564
Mingming Cao617ba132006-10-11 01:20:53 -0700565 if (++ino < EXT4_INODES_PER_GROUP(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700566 goto repeat_in_this_group;
567 }
568
569 /*
570 * This case is possible in concurrent environment. It is very
571 * rare. We cannot repeat the find_group_xxx() call because
572 * that will simply return the same blockgroup, because the
573 * group descriptor metadata has not yet been updated.
574 * So we just go onto the next blockgroup.
575 */
576 if (++group == sbi->s_groups_count)
577 group = 0;
578 }
579 err = -ENOSPC;
580 goto out;
581
582got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400583 ino++;
584 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
585 ino > EXT4_INODES_PER_GROUP(sb)) {
586 ext4_error(sb, __FUNCTION__,
587 "reserved inode or inode > inodes count - "
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500588 "block_group = %lu, inode=%lu", group,
Andreas Dilger717d50e2007-10-16 18:38:25 -0400589 ino + group * EXT4_INODES_PER_GROUP(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 err = -EIO;
591 goto fail;
592 }
593
594 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700595 err = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700596 if (err) goto fail;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400597
598 /* We may have to initialize the block bitmap if it isn't already */
599 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
600 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
601 struct buffer_head *block_bh = read_block_bitmap(sb, group);
602
603 BUFFER_TRACE(block_bh, "get block bitmap access");
604 err = ext4_journal_get_write_access(handle, block_bh);
605 if (err) {
606 brelse(block_bh);
607 goto fail;
608 }
609
610 free = 0;
611 spin_lock(sb_bgl_lock(sbi, group));
612 /* recheck and clear flag under lock if we still need to */
613 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
614 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
615 free = ext4_free_blocks_after_init(sb, group, gdp);
616 gdp->bg_free_blocks_count = cpu_to_le16(free);
617 }
618 spin_unlock(sb_bgl_lock(sbi, group));
619
620 /* Don't need to dirty bitmap block if we didn't change it */
621 if (free) {
622 BUFFER_TRACE(block_bh, "dirty block bitmap");
623 err = ext4_journal_dirty_metadata(handle, block_bh);
624 }
625
626 brelse(block_bh);
627 if (err)
628 goto fail;
629 }
630
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 spin_lock(sb_bgl_lock(sbi, group));
Andreas Dilger717d50e2007-10-16 18:38:25 -0400632 /* If we didn't allocate from within the initialized part of the inode
633 * table then we need to initialize up to this inode. */
634 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
635 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
636 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
637
638 /* When marking the block group with
639 * ~EXT4_BG_INODE_UNINIT we don't want to depend
640 * on the value of bg_itable_unsed even though
641 * mke2fs could have initialized the same for us.
642 * Instead we calculated the value below
643 */
644
645 free = 0;
646 } else {
647 free = EXT4_INODES_PER_GROUP(sb) -
648 le16_to_cpu(gdp->bg_itable_unused);
649 }
650
651 /*
652 * Check the relative inode number against the last used
653 * relative inode number in this group. if it is greater
654 * we need to update the bg_itable_unused count
655 *
656 */
657 if (ino > free)
658 gdp->bg_itable_unused =
659 cpu_to_le16(EXT4_INODES_PER_GROUP(sb) - ino);
660 }
661
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700662 gdp->bg_free_inodes_count =
663 cpu_to_le16(le16_to_cpu(gdp->bg_free_inodes_count) - 1);
664 if (S_ISDIR(mode)) {
665 gdp->bg_used_dirs_count =
666 cpu_to_le16(le16_to_cpu(gdp->bg_used_dirs_count) + 1);
667 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400668 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700669 spin_unlock(sb_bgl_lock(sbi, group));
Mingming Cao617ba132006-10-11 01:20:53 -0700670 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
671 err = ext4_journal_dirty_metadata(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672 if (err) goto fail;
673
674 percpu_counter_dec(&sbi->s_freeinodes_counter);
675 if (S_ISDIR(mode))
676 percpu_counter_inc(&sbi->s_dirs_counter);
677 sb->s_dirt = 1;
678
679 inode->i_uid = current->fsuid;
680 if (test_opt (sb, GRPID))
681 inode->i_gid = dir->i_gid;
682 else if (dir->i_mode & S_ISGID) {
683 inode->i_gid = dir->i_gid;
684 if (S_ISDIR(mode))
685 mode |= S_ISGID;
686 } else
687 inode->i_gid = current->fsgid;
688 inode->i_mode = mode;
689
Andreas Dilger717d50e2007-10-16 18:38:25 -0400690 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 /* This is the optimal IO size (for stat), not the fs block size */
692 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400693 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
694 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700695
696 memset(ei->i_data, 0, sizeof(ei->i_data));
697 ei->i_dir_start_lookup = 0;
698 ei->i_disksize = 0;
699
Mingming Cao617ba132006-10-11 01:20:53 -0700700 ei->i_flags = EXT4_I(dir)->i_flags & ~EXT4_INDEX_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700701 if (S_ISLNK(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700702 ei->i_flags &= ~(EXT4_IMMUTABLE_FL|EXT4_APPEND_FL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 /* dirsync only applies to directories */
704 if (!S_ISDIR(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700705 ei->i_flags &= ~EXT4_DIRSYNC_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706 ei->i_file_acl = 0;
707 ei->i_dir_acl = 0;
708 ei->i_dtime = 0;
709 ei->i_block_alloc_info = NULL;
710 ei->i_block_group = group;
711
Mingming Cao617ba132006-10-11 01:20:53 -0700712 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713 if (IS_DIRSYNC(inode))
714 handle->h_sync = 1;
715 insert_inode_hash(inode);
716 spin_lock(&sbi->s_next_gen_lock);
717 inode->i_generation = sbi->s_next_generation++;
718 spin_unlock(&sbi->s_next_gen_lock);
719
Mingming Cao617ba132006-10-11 01:20:53 -0700720 ei->i_state = EXT4_STATE_NEW;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400721
722 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700723
724 ret = inode;
725 if(DQUOT_ALLOC_INODE(inode)) {
726 err = -EDQUOT;
727 goto fail_drop;
728 }
729
Mingming Cao617ba132006-10-11 01:20:53 -0700730 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731 if (err)
732 goto fail_free_drop;
733
Mingming Cao617ba132006-10-11 01:20:53 -0700734 err = ext4_init_security(handle,inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735 if (err)
736 goto fail_free_drop;
737
Mingming Cao617ba132006-10-11 01:20:53 -0700738 err = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700739 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -0700740 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741 goto fail_free_drop;
742 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700743 if (test_opt(sb, EXTENTS)) {
744 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
745 ext4_ext_tree_init(handle, inode);
746 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
747 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
748 if (err) goto fail;
749 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS);
750 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "call ext4_journal_dirty_metadata");
751 err = ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
752 }
753 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700754
Mingming Cao617ba132006-10-11 01:20:53 -0700755 ext4_debug("allocating inode %lu\n", inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700756 goto really_out;
757fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700758 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759out:
760 iput(inode);
761 ret = ERR_PTR(err);
762really_out:
763 brelse(bitmap_bh);
764 return ret;
765
766fail_free_drop:
767 DQUOT_FREE_INODE(inode);
768
769fail_drop:
770 DQUOT_DROP(inode);
771 inode->i_flags |= S_NOQUOTA;
772 inode->i_nlink = 0;
773 iput(inode);
774 brelse(bitmap_bh);
775 return ERR_PTR(err);
776}
777
778/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -0700779struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700780{
Mingming Cao617ba132006-10-11 01:20:53 -0700781 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500782 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700783 int bit;
784 struct buffer_head *bitmap_bh = NULL;
785 struct inode *inode = NULL;
786
787 /* Error cases - e2fsck has already cleaned up for us */
788 if (ino > max_ino) {
Mingming Cao617ba132006-10-11 01:20:53 -0700789 ext4_warning(sb, __FUNCTION__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700790 "bad orphan ino %lu! e2fsck was run?", ino);
791 goto out;
792 }
793
Mingming Cao617ba132006-10-11 01:20:53 -0700794 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
795 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700796 bitmap_bh = read_inode_bitmap(sb, block_group);
797 if (!bitmap_bh) {
Mingming Cao617ba132006-10-11 01:20:53 -0700798 ext4_warning(sb, __FUNCTION__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799 "inode bitmap error for orphan %lu", ino);
800 goto out;
801 }
802
803 /* Having the inode bit set should be a 100% indicator that this
804 * is a valid orphan (no e2fsck run on fs). Orphans also include
805 * inodes that were being truncated, so we can't check i_nlink==0.
806 */
Mingming Cao617ba132006-10-11 01:20:53 -0700807 if (!ext4_test_bit(bit, bitmap_bh->b_data) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700808 !(inode = iget(sb, ino)) || is_bad_inode(inode) ||
809 NEXT_ORPHAN(inode) > max_ino) {
Mingming Cao617ba132006-10-11 01:20:53 -0700810 ext4_warning(sb, __FUNCTION__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700811 "bad orphan inode %lu! e2fsck was run?", ino);
Mingming Cao617ba132006-10-11 01:20:53 -0700812 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700813 bit, (unsigned long long)bitmap_bh->b_blocknr,
Mingming Cao617ba132006-10-11 01:20:53 -0700814 ext4_test_bit(bit, bitmap_bh->b_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815 printk(KERN_NOTICE "inode=%p\n", inode);
816 if (inode) {
817 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
818 is_bad_inode(inode));
819 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
820 NEXT_ORPHAN(inode));
821 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
822 }
823 /* Avoid freeing blocks if we got a bad deleted inode */
824 if (inode && inode->i_nlink == 0)
825 inode->i_blocks = 0;
826 iput(inode);
827 inode = NULL;
828 }
829out:
830 brelse(bitmap_bh);
831 return inode;
832}
833
Mingming Cao617ba132006-10-11 01:20:53 -0700834unsigned long ext4_count_free_inodes (struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835{
836 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700837 struct ext4_group_desc *gdp;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500838 ext4_group_t i;
Mingming Cao617ba132006-10-11 01:20:53 -0700839#ifdef EXT4FS_DEBUG
840 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841 unsigned long bitmap_count, x;
842 struct buffer_head *bitmap_bh = NULL;
843
Mingming Cao617ba132006-10-11 01:20:53 -0700844 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700845 desc_count = 0;
846 bitmap_count = 0;
847 gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700848 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
849 gdp = ext4_get_group_desc (sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850 if (!gdp)
851 continue;
852 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
853 brelse(bitmap_bh);
854 bitmap_bh = read_inode_bitmap(sb, i);
855 if (!bitmap_bh)
856 continue;
857
Mingming Cao617ba132006-10-11 01:20:53 -0700858 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 printk("group %d: stored = %d, counted = %lu\n",
860 i, le16_to_cpu(gdp->bg_free_inodes_count), x);
861 bitmap_count += x;
862 }
863 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700864 printk("ext4_count_free_inodes: stored = %u, computed = %lu, %lu\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
866 return desc_count;
867#else
868 desc_count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700869 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
870 gdp = ext4_get_group_desc (sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700871 if (!gdp)
872 continue;
873 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
874 cond_resched();
875 }
876 return desc_count;
877#endif
878}
879
880/* Called at mount-time, super-block is locked */
Mingming Cao617ba132006-10-11 01:20:53 -0700881unsigned long ext4_count_dirs (struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882{
883 unsigned long count = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500884 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700885
Mingming Cao617ba132006-10-11 01:20:53 -0700886 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
887 struct ext4_group_desc *gdp = ext4_get_group_desc (sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888 if (!gdp)
889 continue;
890 count += le16_to_cpu(gdp->bg_used_dirs_count);
891 }
892 return count;
893}
894