]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/ext4/ialloc.c
ext4: Add fallback for find_group_flex
[net-next-2.6.git] / fs / ext4 / ialloc.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/ialloc.c
ac27a0ec
DK
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 * 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>
dab291af 17#include <linux/jbd2.h>
ac27a0ec
DK
18#include <linux/stat.h>
19#include <linux/string.h>
20#include <linux/quotaops.h>
21#include <linux/buffer_head.h>
22#include <linux/random.h>
23#include <linux/bitops.h>
3a5b2ecd 24#include <linux/blkdev.h>
ac27a0ec 25#include <asm/byteorder.h>
3dcf5451
CH
26#include "ext4.h"
27#include "ext4_jbd2.h"
ac27a0ec
DK
28#include "xattr.h"
29#include "acl.h"
717d50e4 30#include "group.h"
ac27a0ec
DK
31
32/*
33 * ialloc.c contains the inodes allocation and deallocation routines
34 */
35
36/*
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.
40 *
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.
44 */
45
717d50e4
AD
46/*
47 * To avoid calling the atomic setbit hundreds or thousands of times, we only
48 * need to use it within a single byte (to ensure we get endianness right).
49 * We can use memset for the rest of the bitmap as there are no other users.
50 */
51void mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
52{
53 int i;
54
55 if (start_bit >= end_bit)
56 return;
57
58 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
59 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
60 ext4_set_bit(i, bitmap);
61 if (i < end_bit)
62 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
63}
64
65/* Initializes an uninitialized inode bitmap */
fd2d4291
AM
66unsigned ext4_init_inode_bitmap(struct super_block *sb, struct buffer_head *bh,
67 ext4_group_t block_group,
717d50e4
AD
68 struct ext4_group_desc *gdp)
69{
70 struct ext4_sb_info *sbi = EXT4_SB(sb);
71
72 J_ASSERT_BH(bh, buffer_locked(bh));
73
74 /* If checksum is bad mark all blocks and inodes use to prevent
75 * allocation, essentially implementing a per-group read-only flag. */
76 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
a9df9a49 77 ext4_error(sb, __func__, "Checksum bad for group %u",
717d50e4 78 block_group);
560671a0
AK
79 ext4_free_blks_set(sb, gdp, 0);
80 ext4_free_inodes_set(sb, gdp, 0);
81 ext4_itable_unused_set(sb, gdp, 0);
717d50e4
AD
82 memset(bh->b_data, 0xff, sb->s_blocksize);
83 return 0;
84 }
85
86 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
648f5879 87 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
717d50e4
AD
88 bh->b_data);
89
90 return EXT4_INODES_PER_GROUP(sb);
91}
ac27a0ec
DK
92
93/*
94 * Read the inode allocation bitmap for a given block_group, reading
95 * into the specified slot in the superblock's bitmap cache.
96 *
97 * Return buffer_head of bitmap on success or NULL.
98 */
99static struct buffer_head *
e29d1cde 100ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
ac27a0ec 101{
617ba13b 102 struct ext4_group_desc *desc;
ac27a0ec 103 struct buffer_head *bh = NULL;
e29d1cde 104 ext4_fsblk_t bitmap_blk;
ac27a0ec 105
617ba13b 106 desc = ext4_get_group_desc(sb, block_group, NULL);
ac27a0ec 107 if (!desc)
e29d1cde
ES
108 return NULL;
109 bitmap_blk = ext4_inode_bitmap(sb, desc);
110 bh = sb_getblk(sb, bitmap_blk);
111 if (unlikely(!bh)) {
112 ext4_error(sb, __func__,
113 "Cannot read inode bitmap - "
a9df9a49 114 "block_group = %u, inode_bitmap = %llu",
e29d1cde
ES
115 block_group, bitmap_blk);
116 return NULL;
117 }
2ccb5fb9 118 if (bitmap_uptodate(bh))
e29d1cde
ES
119 return bh;
120
c806e68f 121 lock_buffer(bh);
2ccb5fb9
AK
122 if (bitmap_uptodate(bh)) {
123 unlock_buffer(bh);
124 return bh;
125 }
b5f10eed 126 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
717d50e4 127 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
e29d1cde 128 ext4_init_inode_bitmap(sb, bh, block_group, desc);
2ccb5fb9 129 set_bitmap_uptodate(bh);
e29d1cde 130 set_buffer_uptodate(bh);
b5f10eed 131 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
3300beda 132 unlock_buffer(bh);
e29d1cde 133 return bh;
717d50e4 134 }
b5f10eed 135 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
2ccb5fb9
AK
136 if (buffer_uptodate(bh)) {
137 /*
138 * if not uninit if bh is uptodate,
139 * bitmap is also uptodate
140 */
141 set_bitmap_uptodate(bh);
142 unlock_buffer(bh);
143 return bh;
144 }
145 /*
146 * submit the buffer_head for read. We can
147 * safely mark the bitmap as uptodate now.
148 * We do it here so the bitmap uptodate bit
149 * get set with buffer lock held.
150 */
151 set_bitmap_uptodate(bh);
e29d1cde
ES
152 if (bh_submit_read(bh) < 0) {
153 put_bh(bh);
154 ext4_error(sb, __func__,
ac27a0ec 155 "Cannot read inode bitmap - "
a9df9a49 156 "block_group = %u, inode_bitmap = %llu",
e29d1cde
ES
157 block_group, bitmap_blk);
158 return NULL;
159 }
ac27a0ec
DK
160 return bh;
161}
162
163/*
164 * NOTE! When we get the inode, we're the only people
165 * that have access to it, and as such there are no
166 * race conditions we have to worry about. The inode
167 * is not on the hash-lists, and it cannot be reached
168 * through the filesystem because the directory entry
169 * has been deleted earlier.
170 *
171 * HOWEVER: we must make sure that we get no aliases,
172 * which means that we have to call "clear_inode()"
173 * _before_ we mark the inode not in use in the inode
174 * bitmaps. Otherwise a newly created file might use
175 * the same inode number (not actually the same pointer
176 * though), and then we'd have two inodes sharing the
177 * same inode number and space on the harddisk.
178 */
af5bc92d 179void ext4_free_inode(handle_t *handle, struct inode *inode)
ac27a0ec 180{
af5bc92d 181 struct super_block *sb = inode->i_sb;
ac27a0ec
DK
182 int is_directory;
183 unsigned long ino;
184 struct buffer_head *bitmap_bh = NULL;
185 struct buffer_head *bh2;
fd2d4291 186 ext4_group_t block_group;
ac27a0ec 187 unsigned long bit;
af5bc92d
TT
188 struct ext4_group_desc *gdp;
189 struct ext4_super_block *es;
617ba13b 190 struct ext4_sb_info *sbi;
560671a0 191 int fatal = 0, err, count;
772cb7c8 192 ext4_group_t flex_group;
ac27a0ec
DK
193
194 if (atomic_read(&inode->i_count) > 1) {
4776004f
TT
195 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
196 atomic_read(&inode->i_count));
ac27a0ec
DK
197 return;
198 }
199 if (inode->i_nlink) {
4776004f
TT
200 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
201 inode->i_nlink);
ac27a0ec
DK
202 return;
203 }
204 if (!sb) {
4776004f
TT
205 printk(KERN_ERR "ext4_free_inode: inode on "
206 "nonexistent device\n");
ac27a0ec
DK
207 return;
208 }
617ba13b 209 sbi = EXT4_SB(sb);
ac27a0ec
DK
210
211 ino = inode->i_ino;
af5bc92d 212 ext4_debug("freeing inode %lu\n", ino);
ba80b101
TT
213 trace_mark(ext4_free_inode,
214 "dev %s ino %lu mode %d uid %lu gid %lu bocks %llu",
215 sb->s_id, inode->i_ino, inode->i_mode,
216 (unsigned long) inode->i_uid, (unsigned long) inode->i_gid,
217 (unsigned long long) inode->i_blocks);
ac27a0ec
DK
218
219 /*
220 * Note: we must free any quota before locking the superblock,
221 * as writing the quota to disk may need the lock as well.
222 */
223 DQUOT_INIT(inode);
617ba13b 224 ext4_xattr_delete_inode(handle, inode);
ac27a0ec
DK
225 DQUOT_FREE_INODE(inode);
226 DQUOT_DROP(inode);
227
228 is_directory = S_ISDIR(inode->i_mode);
229
230 /* Do this BEFORE marking the inode not in use or returning an error */
af5bc92d 231 clear_inode(inode);
ac27a0ec 232
617ba13b
MC
233 es = EXT4_SB(sb)->s_es;
234 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
af5bc92d
TT
235 ext4_error(sb, "ext4_free_inode",
236 "reserved or nonexistent inode %lu", ino);
ac27a0ec
DK
237 goto error_return;
238 }
617ba13b
MC
239 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
240 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 241 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec
DK
242 if (!bitmap_bh)
243 goto error_return;
244
245 BUFFER_TRACE(bitmap_bh, "get_write_access");
617ba13b 246 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
ac27a0ec
DK
247 if (fatal)
248 goto error_return;
249
250 /* Ok, now we can actually update the inode bitmaps.. */
617ba13b 251 if (!ext4_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
ac27a0ec 252 bit, bitmap_bh->b_data))
af5bc92d
TT
253 ext4_error(sb, "ext4_free_inode",
254 "bit already cleared for inode %lu", ino);
ac27a0ec 255 else {
af5bc92d 256 gdp = ext4_get_group_desc(sb, block_group, &bh2);
ac27a0ec
DK
257
258 BUFFER_TRACE(bh2, "get_write_access");
617ba13b 259 fatal = ext4_journal_get_write_access(handle, bh2);
ac27a0ec
DK
260 if (fatal) goto error_return;
261
262 if (gdp) {
263 spin_lock(sb_bgl_lock(sbi, block_group));
560671a0
AK
264 count = ext4_free_inodes_count(sb, gdp) + 1;
265 ext4_free_inodes_set(sb, gdp, count);
266 if (is_directory) {
267 count = ext4_used_dirs_count(sb, gdp) - 1;
268 ext4_used_dirs_set(sb, gdp, count);
269 }
717d50e4
AD
270 gdp->bg_checksum = ext4_group_desc_csum(sbi,
271 block_group, gdp);
ac27a0ec
DK
272 spin_unlock(sb_bgl_lock(sbi, block_group));
273 percpu_counter_inc(&sbi->s_freeinodes_counter);
274 if (is_directory)
275 percpu_counter_dec(&sbi->s_dirs_counter);
276
772cb7c8
JS
277 if (sbi->s_log_groups_per_flex) {
278 flex_group = ext4_flex_group(sbi, block_group);
279 spin_lock(sb_bgl_lock(sbi, flex_group));
280 sbi->s_flex_groups[flex_group].free_inodes++;
281 spin_unlock(sb_bgl_lock(sbi, flex_group));
282 }
ac27a0ec 283 }
0390131b
FM
284 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
285 err = ext4_handle_dirty_metadata(handle, NULL, bh2);
ac27a0ec
DK
286 if (!fatal) fatal = err;
287 }
0390131b
FM
288 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
289 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
ac27a0ec
DK
290 if (!fatal)
291 fatal = err;
292 sb->s_dirt = 1;
293error_return:
294 brelse(bitmap_bh);
617ba13b 295 ext4_std_error(sb, fatal);
ac27a0ec
DK
296}
297
298/*
299 * There are two policies for allocating an inode. If the new inode is
300 * a directory, then a forward search is made for a block group with both
301 * free space and a low directory-to-inode ratio; if that fails, then of
302 * the groups with above-average free space, that group with the fewest
303 * directories already is chosen.
304 *
305 * For other inodes, search forward from the parent directory\'s block
306 * group to find a free inode.
307 */
2aa9fc4c
AM
308static int find_group_dir(struct super_block *sb, struct inode *parent,
309 ext4_group_t *best_group)
ac27a0ec 310{
fd2d4291 311 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
ac27a0ec 312 unsigned int freei, avefreei;
617ba13b 313 struct ext4_group_desc *desc, *best_desc = NULL;
2aa9fc4c
AM
314 ext4_group_t group;
315 int ret = -1;
ac27a0ec 316
617ba13b 317 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
ac27a0ec
DK
318 avefreei = freei / ngroups;
319
320 for (group = 0; group < ngroups; group++) {
af5bc92d 321 desc = ext4_get_group_desc(sb, group, NULL);
560671a0 322 if (!desc || !ext4_free_inodes_count(sb, desc))
ac27a0ec 323 continue;
560671a0 324 if (ext4_free_inodes_count(sb, desc) < avefreei)
ac27a0ec
DK
325 continue;
326 if (!best_desc ||
560671a0
AK
327 (ext4_free_blks_count(sb, desc) >
328 ext4_free_blks_count(sb, best_desc))) {
2aa9fc4c 329 *best_group = group;
ac27a0ec 330 best_desc = desc;
2aa9fc4c 331 ret = 0;
ac27a0ec
DK
332 }
333 }
2aa9fc4c 334 return ret;
ac27a0ec
DK
335}
336
772cb7c8
JS
337#define free_block_ratio 10
338
339static int find_group_flex(struct super_block *sb, struct inode *parent,
340 ext4_group_t *best_group)
341{
342 struct ext4_sb_info *sbi = EXT4_SB(sb);
343 struct ext4_group_desc *desc;
344 struct buffer_head *bh;
345 struct flex_groups *flex_group = sbi->s_flex_groups;
346 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
347 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
348 ext4_group_t ngroups = sbi->s_groups_count;
349 int flex_size = ext4_flex_bg_size(sbi);
350 ext4_group_t best_flex = parent_fbg_group;
351 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
352 int flexbg_free_blocks;
353 int flex_freeb_ratio;
354 ext4_group_t n_fbg_groups;
355 ext4_group_t i;
356
357 n_fbg_groups = (sbi->s_groups_count + flex_size - 1) >>
358 sbi->s_log_groups_per_flex;
359
360find_close_to_parent:
361 flexbg_free_blocks = flex_group[best_flex].free_blocks;
362 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
363 if (flex_group[best_flex].free_inodes &&
364 flex_freeb_ratio > free_block_ratio)
365 goto found_flexbg;
366
367 if (best_flex && best_flex == parent_fbg_group) {
368 best_flex--;
369 goto find_close_to_parent;
370 }
371
372 for (i = 0; i < n_fbg_groups; i++) {
373 if (i == parent_fbg_group || i == parent_fbg_group - 1)
374 continue;
375
376 flexbg_free_blocks = flex_group[i].free_blocks;
377 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
378
379 if (flex_freeb_ratio > free_block_ratio &&
380 flex_group[i].free_inodes) {
381 best_flex = i;
382 goto found_flexbg;
383 }
384
c001077f 385 if (flex_group[best_flex].free_inodes == 0 ||
772cb7c8
JS
386 (flex_group[i].free_blocks >
387 flex_group[best_flex].free_blocks &&
388 flex_group[i].free_inodes))
389 best_flex = i;
390 }
391
392 if (!flex_group[best_flex].free_inodes ||
393 !flex_group[best_flex].free_blocks)
394 return -1;
395
396found_flexbg:
397 for (i = best_flex * flex_size; i < ngroups &&
398 i < (best_flex + 1) * flex_size; i++) {
399 desc = ext4_get_group_desc(sb, i, &bh);
560671a0 400 if (ext4_free_inodes_count(sb, desc)) {
772cb7c8
JS
401 *best_group = i;
402 goto out;
403 }
404 }
405
406 return -1;
407out:
408 return 0;
409}
410
ac27a0ec
DK
411/*
412 * Orlov's allocator for directories.
413 *
414 * We always try to spread first-level directories.
415 *
416 * If there are blockgroups with both free inodes and free blocks counts
417 * not worse than average we return one with smallest directory count.
418 * Otherwise we simply return a random group.
419 *
420 * For the rest rules look so:
421 *
422 * It's OK to put directory into a group unless
423 * it has too many directories already (max_dirs) or
424 * it has too few free inodes left (min_inodes) or
425 * it has too few free blocks left (min_blocks) or
426 * it's already running too large debt (max_debt).
1cc8dcf5 427 * Parent's group is preferred, if it doesn't satisfy these
ac27a0ec
DK
428 * conditions we search cyclically through the rest. If none
429 * of the groups look good we just look for a group with more
430 * free inodes than average (starting at parent's group).
431 *
432 * Debt is incremented each time we allocate a directory and decremented
433 * when we allocate an inode, within 0--255.
434 */
435
436#define INODE_COST 64
437#define BLOCK_COST 256
438
2aa9fc4c
AM
439static int find_group_orlov(struct super_block *sb, struct inode *parent,
440 ext4_group_t *group)
ac27a0ec 441{
fd2d4291 442 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
617ba13b
MC
443 struct ext4_sb_info *sbi = EXT4_SB(sb);
444 struct ext4_super_block *es = sbi->s_es;
fd2d4291 445 ext4_group_t ngroups = sbi->s_groups_count;
617ba13b 446 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
ac27a0ec 447 unsigned int freei, avefreei;
617ba13b
MC
448 ext4_fsblk_t freeb, avefreeb;
449 ext4_fsblk_t blocks_per_dir;
ac27a0ec
DK
450 unsigned int ndirs;
451 int max_debt, max_dirs, min_inodes;
617ba13b 452 ext4_grpblk_t min_blocks;
2aa9fc4c 453 ext4_group_t i;
617ba13b 454 struct ext4_group_desc *desc;
ac27a0ec
DK
455
456 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
457 avefreei = freei / ngroups;
458 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3a5b2ecd 459 avefreeb = freeb;
f4e5bc24 460 do_div(avefreeb, ngroups);
ac27a0ec
DK
461 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
462
463 if ((parent == sb->s_root->d_inode) ||
617ba13b 464 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL)) {
ac27a0ec 465 int best_ndir = inodes_per_group;
2aa9fc4c
AM
466 ext4_group_t grp;
467 int ret = -1;
ac27a0ec 468
2aa9fc4c
AM
469 get_random_bytes(&grp, sizeof(grp));
470 parent_group = (unsigned)grp % ngroups;
ac27a0ec 471 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
472 grp = (parent_group + i) % ngroups;
473 desc = ext4_get_group_desc(sb, grp, NULL);
560671a0 474 if (!desc || !ext4_free_inodes_count(sb, desc))
ac27a0ec 475 continue;
560671a0 476 if (ext4_used_dirs_count(sb, desc) >= best_ndir)
ac27a0ec 477 continue;
560671a0 478 if (ext4_free_inodes_count(sb, desc) < avefreei)
ac27a0ec 479 continue;
560671a0 480 if (ext4_free_blks_count(sb, desc) < avefreeb)
ac27a0ec 481 continue;
2aa9fc4c
AM
482 *group = grp;
483 ret = 0;
560671a0 484 best_ndir = ext4_used_dirs_count(sb, desc);
ac27a0ec 485 }
2aa9fc4c
AM
486 if (ret == 0)
487 return ret;
ac27a0ec
DK
488 goto fallback;
489 }
490
bd81d8ee 491 blocks_per_dir = ext4_blocks_count(es) - freeb;
f4e5bc24 492 do_div(blocks_per_dir, ndirs);
ac27a0ec
DK
493
494 max_dirs = ndirs / ngroups + inodes_per_group / 16;
495 min_inodes = avefreei - inodes_per_group / 4;
617ba13b 496 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb) / 4;
ac27a0ec 497
3a5b2ecd 498 max_debt = EXT4_BLOCKS_PER_GROUP(sb);
f4e5bc24 499 max_debt /= max_t(int, blocks_per_dir, BLOCK_COST);
ac27a0ec
DK
500 if (max_debt * INODE_COST > inodes_per_group)
501 max_debt = inodes_per_group / INODE_COST;
502 if (max_debt > 255)
503 max_debt = 255;
504 if (max_debt == 0)
505 max_debt = 1;
506
507 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
508 *group = (parent_group + i) % ngroups;
509 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0 510 if (!desc || !ext4_free_inodes_count(sb, desc))
ac27a0ec 511 continue;
560671a0 512 if (ext4_used_dirs_count(sb, desc) >= max_dirs)
ac27a0ec 513 continue;
560671a0 514 if (ext4_free_inodes_count(sb, desc) < min_inodes)
ac27a0ec 515 continue;
560671a0 516 if (ext4_free_blks_count(sb, desc) < min_blocks)
ac27a0ec 517 continue;
2aa9fc4c 518 return 0;
ac27a0ec
DK
519 }
520
521fallback:
522 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
523 *group = (parent_group + i) % ngroups;
524 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0
AK
525 if (desc && ext4_free_inodes_count(sb, desc) &&
526 ext4_free_inodes_count(sb, desc) >= avefreei)
2aa9fc4c 527 return 0;
ac27a0ec
DK
528 }
529
530 if (avefreei) {
531 /*
532 * The free-inodes counter is approximate, and for really small
533 * filesystems the above test can fail to find any blockgroups
534 */
535 avefreei = 0;
536 goto fallback;
537 }
538
539 return -1;
540}
541
2aa9fc4c
AM
542static int find_group_other(struct super_block *sb, struct inode *parent,
543 ext4_group_t *group)
ac27a0ec 544{
fd2d4291
AM
545 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
546 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
617ba13b 547 struct ext4_group_desc *desc;
2aa9fc4c 548 ext4_group_t i;
ac27a0ec
DK
549
550 /*
551 * Try to place the inode in its parent directory
552 */
2aa9fc4c
AM
553 *group = parent_group;
554 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0
AK
555 if (desc && ext4_free_inodes_count(sb, desc) &&
556 ext4_free_blks_count(sb, desc))
2aa9fc4c 557 return 0;
ac27a0ec
DK
558
559 /*
560 * We're going to place this inode in a different blockgroup from its
561 * parent. We want to cause files in a common directory to all land in
562 * the same blockgroup. But we want files which are in a different
563 * directory which shares a blockgroup with our parent to land in a
564 * different blockgroup.
565 *
566 * So add our directory's i_ino into the starting point for the hash.
567 */
2aa9fc4c 568 *group = (*group + parent->i_ino) % ngroups;
ac27a0ec
DK
569
570 /*
571 * Use a quadratic hash to find a group with a free inode and some free
572 * blocks.
573 */
574 for (i = 1; i < ngroups; i <<= 1) {
2aa9fc4c
AM
575 *group += i;
576 if (*group >= ngroups)
577 *group -= ngroups;
578 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0
AK
579 if (desc && ext4_free_inodes_count(sb, desc) &&
580 ext4_free_blks_count(sb, desc))
2aa9fc4c 581 return 0;
ac27a0ec
DK
582 }
583
584 /*
585 * That failed: try linear search for a free inode, even if that group
586 * has no free blocks.
587 */
2aa9fc4c 588 *group = parent_group;
ac27a0ec 589 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
590 if (++*group >= ngroups)
591 *group = 0;
592 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0 593 if (desc && ext4_free_inodes_count(sb, desc))
2aa9fc4c 594 return 0;
ac27a0ec
DK
595 }
596
597 return -1;
598}
599
39341867
AK
600/*
601 * claim the inode from the inode bitmap. If the group
602 * is uninit we need to take the groups's sb_bgl_lock
603 * and clear the uninit flag. The inode bitmap update
604 * and group desc uninit flag clear should be done
605 * after holding sb_bgl_lock so that ext4_read_inode_bitmap
606 * doesn't race with the ext4_claim_inode
607 */
608static int ext4_claim_inode(struct super_block *sb,
609 struct buffer_head *inode_bitmap_bh,
610 unsigned long ino, ext4_group_t group, int mode)
611{
612 int free = 0, retval = 0, count;
613 struct ext4_sb_info *sbi = EXT4_SB(sb);
614 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL);
615
616 spin_lock(sb_bgl_lock(sbi, group));
617 if (ext4_set_bit(ino, inode_bitmap_bh->b_data)) {
618 /* not a free inode */
619 retval = 1;
620 goto err_ret;
621 }
622 ino++;
623 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
624 ino > EXT4_INODES_PER_GROUP(sb)) {
625 spin_unlock(sb_bgl_lock(sbi, group));
626 ext4_error(sb, __func__,
627 "reserved inode or inode > inodes count - "
628 "block_group = %u, inode=%lu", group,
629 ino + group * EXT4_INODES_PER_GROUP(sb));
630 return 1;
631 }
632 /* 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
636 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
637 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
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_unused 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 ext4_itable_unused_count(sb, gdp);
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 ext4_itable_unused_set(sb, gdp,
659 (EXT4_INODES_PER_GROUP(sb) - ino));
660 }
661 count = ext4_free_inodes_count(sb, gdp) - 1;
662 ext4_free_inodes_set(sb, gdp, count);
663 if (S_ISDIR(mode)) {
664 count = ext4_used_dirs_count(sb, gdp) + 1;
665 ext4_used_dirs_set(sb, gdp, count);
666 }
667 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
668err_ret:
669 spin_unlock(sb_bgl_lock(sbi, group));
670 return retval;
671}
672
ac27a0ec
DK
673/*
674 * There are two policies for allocating an inode. If the new inode is
675 * a directory, then a forward search is made for a block group with both
676 * free space and a low directory-to-inode ratio; if that fails, then of
677 * the groups with above-average free space, that group with the fewest
678 * directories already is chosen.
679 *
680 * For other inodes, search forward from the parent directory's block
681 * group to find a free inode.
682 */
af5bc92d 683struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode)
ac27a0ec
DK
684{
685 struct super_block *sb;
3300beda
AK
686 struct buffer_head *inode_bitmap_bh = NULL;
687 struct buffer_head *group_desc_bh;
2aa9fc4c 688 ext4_group_t group = 0;
ac27a0ec 689 unsigned long ino = 0;
af5bc92d
TT
690 struct inode *inode;
691 struct ext4_group_desc *gdp = NULL;
692 struct ext4_super_block *es;
617ba13b
MC
693 struct ext4_inode_info *ei;
694 struct ext4_sb_info *sbi;
39341867 695 int ret2, err = 0;
ac27a0ec 696 struct inode *ret;
2aa9fc4c
AM
697 ext4_group_t i;
698 int free = 0;
772cb7c8 699 ext4_group_t flex_group;
ac27a0ec
DK
700
701 /* Cannot create files in a deleted directory */
702 if (!dir || !dir->i_nlink)
703 return ERR_PTR(-EPERM);
704
705 sb = dir->i_sb;
ba80b101
TT
706 trace_mark(ext4_request_inode, "dev %s dir %lu mode %d", sb->s_id,
707 dir->i_ino, mode);
ac27a0ec
DK
708 inode = new_inode(sb);
709 if (!inode)
710 return ERR_PTR(-ENOMEM);
617ba13b 711 ei = EXT4_I(inode);
ac27a0ec 712
617ba13b 713 sbi = EXT4_SB(sb);
ac27a0ec 714 es = sbi->s_es;
772cb7c8
JS
715
716 if (sbi->s_log_groups_per_flex) {
717 ret2 = find_group_flex(sb, dir, &group);
05bf9e83
TT
718 if (ret2 == -1) {
719 ret2 = find_group_other(sb, dir, &group);
720 if (ret2 == 0 && printk_ratelimit())
721 printk(KERN_NOTICE "ext4: find_group_flex "
722 "failed, fallback succeeded dir %lu\n",
723 dir->i_ino);
724 }
772cb7c8
JS
725 goto got_group;
726 }
727
ac27a0ec 728 if (S_ISDIR(mode)) {
af5bc92d 729 if (test_opt(sb, OLDALLOC))
2aa9fc4c 730 ret2 = find_group_dir(sb, dir, &group);
ac27a0ec 731 else
2aa9fc4c 732 ret2 = find_group_orlov(sb, dir, &group);
ac27a0ec 733 } else
2aa9fc4c 734 ret2 = find_group_other(sb, dir, &group);
ac27a0ec 735
772cb7c8 736got_group:
ac27a0ec 737 err = -ENOSPC;
2aa9fc4c 738 if (ret2 == -1)
ac27a0ec
DK
739 goto out;
740
741 for (i = 0; i < sbi->s_groups_count; i++) {
742 err = -EIO;
743
3300beda 744 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
ac27a0ec
DK
745 if (!gdp)
746 goto fail;
747
3300beda
AK
748 brelse(inode_bitmap_bh);
749 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
750 if (!inode_bitmap_bh)
ac27a0ec
DK
751 goto fail;
752
753 ino = 0;
754
755repeat_in_this_group:
617ba13b 756 ino = ext4_find_next_zero_bit((unsigned long *)
3300beda
AK
757 inode_bitmap_bh->b_data,
758 EXT4_INODES_PER_GROUP(sb), ino);
759
617ba13b 760 if (ino < EXT4_INODES_PER_GROUP(sb)) {
ac27a0ec 761
3300beda
AK
762 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
763 err = ext4_journal_get_write_access(handle,
764 inode_bitmap_bh);
ac27a0ec
DK
765 if (err)
766 goto fail;
767
39341867
AK
768 BUFFER_TRACE(group_desc_bh, "get_write_access");
769 err = ext4_journal_get_write_access(handle,
770 group_desc_bh);
771 if (err)
772 goto fail;
773 if (!ext4_claim_inode(sb, inode_bitmap_bh,
774 ino, group, mode)) {
ac27a0ec 775 /* we won it */
3300beda 776 BUFFER_TRACE(inode_bitmap_bh,
0390131b
FM
777 "call ext4_handle_dirty_metadata");
778 err = ext4_handle_dirty_metadata(handle,
3300beda
AK
779 inode,
780 inode_bitmap_bh);
ac27a0ec
DK
781 if (err)
782 goto fail;
39341867
AK
783 /* zero bit is inode number 1*/
784 ino++;
ac27a0ec
DK
785 goto got;
786 }
787 /* we lost it */
3300beda 788 ext4_handle_release_buffer(handle, inode_bitmap_bh);
39341867 789 ext4_handle_release_buffer(handle, group_desc_bh);
ac27a0ec 790
617ba13b 791 if (++ino < EXT4_INODES_PER_GROUP(sb))
ac27a0ec
DK
792 goto repeat_in_this_group;
793 }
794
795 /*
796 * This case is possible in concurrent environment. It is very
797 * rare. We cannot repeat the find_group_xxx() call because
798 * that will simply return the same blockgroup, because the
799 * group descriptor metadata has not yet been updated.
800 * So we just go onto the next blockgroup.
801 */
802 if (++group == sbi->s_groups_count)
803 group = 0;
804 }
805 err = -ENOSPC;
806 goto out;
807
808got:
717d50e4
AD
809 /* We may have to initialize the block bitmap if it isn't already */
810 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
811 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
3300beda 812 struct buffer_head *block_bitmap_bh;
717d50e4 813
3300beda
AK
814 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
815 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
816 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
717d50e4 817 if (err) {
3300beda 818 brelse(block_bitmap_bh);
717d50e4
AD
819 goto fail;
820 }
821
822 free = 0;
823 spin_lock(sb_bgl_lock(sbi, group));
824 /* recheck and clear flag under lock if we still need to */
825 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
717d50e4 826 free = ext4_free_blocks_after_init(sb, group, gdp);
3300beda 827 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
560671a0 828 ext4_free_blks_set(sb, gdp, free);
23712a9c
FB
829 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
830 gdp);
717d50e4
AD
831 }
832 spin_unlock(sb_bgl_lock(sbi, group));
833
834 /* Don't need to dirty bitmap block if we didn't change it */
835 if (free) {
3300beda 836 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
0390131b 837 err = ext4_handle_dirty_metadata(handle,
3300beda 838 NULL, block_bitmap_bh);
717d50e4
AD
839 }
840
3300beda 841 brelse(block_bitmap_bh);
717d50e4
AD
842 if (err)
843 goto fail;
844 }
3300beda
AK
845 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
846 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
39341867
AK
847 if (err)
848 goto fail;
ac27a0ec
DK
849
850 percpu_counter_dec(&sbi->s_freeinodes_counter);
851 if (S_ISDIR(mode))
852 percpu_counter_inc(&sbi->s_dirs_counter);
853 sb->s_dirt = 1;
854
772cb7c8
JS
855 if (sbi->s_log_groups_per_flex) {
856 flex_group = ext4_flex_group(sbi, group);
857 spin_lock(sb_bgl_lock(sbi, flex_group));
858 sbi->s_flex_groups[flex_group].free_inodes--;
859 spin_unlock(sb_bgl_lock(sbi, flex_group));
860 }
861
4c9c544e 862 inode->i_uid = current_fsuid();
af5bc92d 863 if (test_opt(sb, GRPID))
ac27a0ec
DK
864 inode->i_gid = dir->i_gid;
865 else if (dir->i_mode & S_ISGID) {
866 inode->i_gid = dir->i_gid;
867 if (S_ISDIR(mode))
868 mode |= S_ISGID;
869 } else
4c9c544e 870 inode->i_gid = current_fsgid();
ac27a0ec
DK
871 inode->i_mode = mode;
872
717d50e4 873 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
ac27a0ec
DK
874 /* This is the optimal IO size (for stat), not the fs block size */
875 inode->i_blocks = 0;
ef7f3835
KS
876 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
877 ext4_current_time(inode);
ac27a0ec
DK
878
879 memset(ei->i_data, 0, sizeof(ei->i_data));
880 ei->i_dir_start_lookup = 0;
881 ei->i_disksize = 0;
882
42bf0383
AK
883 /*
884 * Don't inherit extent flag from directory. We set extent flag on
885 * newly created directory and file only if -o extent mount option is
886 * specified
887 */
888 ei->i_flags = EXT4_I(dir)->i_flags & ~(EXT4_INDEX_FL|EXT4_EXTENTS_FL);
ac27a0ec 889 if (S_ISLNK(mode))
617ba13b 890 ei->i_flags &= ~(EXT4_IMMUTABLE_FL|EXT4_APPEND_FL);
ac27a0ec
DK
891 /* dirsync only applies to directories */
892 if (!S_ISDIR(mode))
617ba13b 893 ei->i_flags &= ~EXT4_DIRSYNC_FL;
ac27a0ec 894 ei->i_file_acl = 0;
ac27a0ec 895 ei->i_dtime = 0;
ac27a0ec
DK
896 ei->i_block_group = group;
897
617ba13b 898 ext4_set_inode_flags(inode);
ac27a0ec 899 if (IS_DIRSYNC(inode))
0390131b 900 ext4_handle_sync(handle);
6b38e842
AV
901 if (insert_inode_locked(inode) < 0) {
902 err = -EINVAL;
903 goto fail_drop;
904 }
ac27a0ec
DK
905 spin_lock(&sbi->s_next_gen_lock);
906 inode->i_generation = sbi->s_next_generation++;
907 spin_unlock(&sbi->s_next_gen_lock);
908
617ba13b 909 ei->i_state = EXT4_STATE_NEW;
ef7f3835
KS
910
911 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
ac27a0ec
DK
912
913 ret = inode;
af5bc92d 914 if (DQUOT_ALLOC_INODE(inode)) {
ac27a0ec
DK
915 err = -EDQUOT;
916 goto fail_drop;
917 }
918
617ba13b 919 err = ext4_init_acl(handle, inode, dir);
ac27a0ec
DK
920 if (err)
921 goto fail_free_drop;
922
af5bc92d 923 err = ext4_init_security(handle, inode, dir);
ac27a0ec
DK
924 if (err)
925 goto fail_free_drop;
926
83982b6f 927 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
e4079a11 928 /* set extent flag only for directory, file and normal symlink*/
e65187e6 929 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
42bf0383
AK
930 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
931 ext4_ext_tree_init(handle, inode);
42bf0383 932 }
a86c6181 933 }
ac27a0ec 934
8753e88f
AK
935 err = ext4_mark_inode_dirty(handle, inode);
936 if (err) {
937 ext4_std_error(sb, err);
938 goto fail_free_drop;
939 }
940
617ba13b 941 ext4_debug("allocating inode %lu\n", inode->i_ino);
ba80b101
TT
942 trace_mark(ext4_allocate_inode, "dev %s ino %lu dir %lu mode %d",
943 sb->s_id, inode->i_ino, dir->i_ino, mode);
ac27a0ec
DK
944 goto really_out;
945fail:
617ba13b 946 ext4_std_error(sb, err);
ac27a0ec
DK
947out:
948 iput(inode);
949 ret = ERR_PTR(err);
950really_out:
3300beda 951 brelse(inode_bitmap_bh);
ac27a0ec
DK
952 return ret;
953
954fail_free_drop:
955 DQUOT_FREE_INODE(inode);
956
957fail_drop:
958 DQUOT_DROP(inode);
959 inode->i_flags |= S_NOQUOTA;
960 inode->i_nlink = 0;
6b38e842 961 unlock_new_inode(inode);
ac27a0ec 962 iput(inode);
3300beda 963 brelse(inode_bitmap_bh);
ac27a0ec
DK
964 return ERR_PTR(err);
965}
966
967/* Verify that we are loading a valid orphan from disk */
617ba13b 968struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
ac27a0ec 969{
617ba13b 970 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
fd2d4291 971 ext4_group_t block_group;
ac27a0ec 972 int bit;
1d1fe1ee 973 struct buffer_head *bitmap_bh;
ac27a0ec 974 struct inode *inode = NULL;
1d1fe1ee 975 long err = -EIO;
ac27a0ec
DK
976
977 /* Error cases - e2fsck has already cleaned up for us */
978 if (ino > max_ino) {
46e665e9 979 ext4_warning(sb, __func__,
ac27a0ec 980 "bad orphan ino %lu! e2fsck was run?", ino);
1d1fe1ee 981 goto error;
ac27a0ec
DK
982 }
983
617ba13b
MC
984 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
985 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 986 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec 987 if (!bitmap_bh) {
46e665e9 988 ext4_warning(sb, __func__,
ac27a0ec 989 "inode bitmap error for orphan %lu", ino);
1d1fe1ee 990 goto error;
ac27a0ec
DK
991 }
992
993 /* Having the inode bit set should be a 100% indicator that this
994 * is a valid orphan (no e2fsck run on fs). Orphans also include
995 * inodes that were being truncated, so we can't check i_nlink==0.
996 */
1d1fe1ee
DH
997 if (!ext4_test_bit(bit, bitmap_bh->b_data))
998 goto bad_orphan;
999
1000 inode = ext4_iget(sb, ino);
1001 if (IS_ERR(inode))
1002 goto iget_failed;
1003
91ef4caf
DG
1004 /*
1005 * If the orphans has i_nlinks > 0 then it should be able to be
1006 * truncated, otherwise it won't be removed from the orphan list
1007 * during processing and an infinite loop will result.
1008 */
1009 if (inode->i_nlink && !ext4_can_truncate(inode))
1010 goto bad_orphan;
1011
1d1fe1ee
DH
1012 if (NEXT_ORPHAN(inode) > max_ino)
1013 goto bad_orphan;
1014 brelse(bitmap_bh);
1015 return inode;
1016
1017iget_failed:
1018 err = PTR_ERR(inode);
1019 inode = NULL;
1020bad_orphan:
46e665e9 1021 ext4_warning(sb, __func__,
1d1fe1ee
DH
1022 "bad orphan inode %lu! e2fsck was run?", ino);
1023 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1024 bit, (unsigned long long)bitmap_bh->b_blocknr,
1025 ext4_test_bit(bit, bitmap_bh->b_data));
1026 printk(KERN_NOTICE "inode=%p\n", inode);
1027 if (inode) {
1028 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1029 is_bad_inode(inode));
1030 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1031 NEXT_ORPHAN(inode));
1032 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
91ef4caf 1033 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
ac27a0ec 1034 /* Avoid freeing blocks if we got a bad deleted inode */
1d1fe1ee 1035 if (inode->i_nlink == 0)
ac27a0ec
DK
1036 inode->i_blocks = 0;
1037 iput(inode);
ac27a0ec 1038 }
ac27a0ec 1039 brelse(bitmap_bh);
1d1fe1ee
DH
1040error:
1041 return ERR_PTR(err);
ac27a0ec
DK
1042}
1043
af5bc92d 1044unsigned long ext4_count_free_inodes(struct super_block *sb)
ac27a0ec
DK
1045{
1046 unsigned long desc_count;
617ba13b 1047 struct ext4_group_desc *gdp;
fd2d4291 1048 ext4_group_t i;
617ba13b
MC
1049#ifdef EXT4FS_DEBUG
1050 struct ext4_super_block *es;
ac27a0ec
DK
1051 unsigned long bitmap_count, x;
1052 struct buffer_head *bitmap_bh = NULL;
1053
617ba13b 1054 es = EXT4_SB(sb)->s_es;
ac27a0ec
DK
1055 desc_count = 0;
1056 bitmap_count = 0;
1057 gdp = NULL;
617ba13b 1058 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1059 gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1060 if (!gdp)
1061 continue;
560671a0 1062 desc_count += ext4_free_inodes_count(sb, gdp);
ac27a0ec 1063 brelse(bitmap_bh);
e29d1cde 1064 bitmap_bh = ext4_read_inode_bitmap(sb, i);
ac27a0ec
DK
1065 if (!bitmap_bh)
1066 continue;
1067
617ba13b 1068 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
c549a95d 1069 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
560671a0 1070 i, ext4_free_inodes_count(sb, gdp), x);
ac27a0ec
DK
1071 bitmap_count += x;
1072 }
1073 brelse(bitmap_bh);
4776004f
TT
1074 printk(KERN_DEBUG "ext4_count_free_inodes: "
1075 "stored = %u, computed = %lu, %lu\n",
1076 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
ac27a0ec
DK
1077 return desc_count;
1078#else
1079 desc_count = 0;
617ba13b 1080 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1081 gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1082 if (!gdp)
1083 continue;
560671a0 1084 desc_count += ext4_free_inodes_count(sb, gdp);
ac27a0ec
DK
1085 cond_resched();
1086 }
1087 return desc_count;
1088#endif
1089}
1090
1091/* Called at mount-time, super-block is locked */
af5bc92d 1092unsigned long ext4_count_dirs(struct super_block * sb)
ac27a0ec
DK
1093{
1094 unsigned long count = 0;
fd2d4291 1095 ext4_group_t i;
ac27a0ec 1096
617ba13b 1097 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1098 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1099 if (!gdp)
1100 continue;
560671a0 1101 count += ext4_used_dirs_count(sb, gdp);
ac27a0ec
DK
1102 }
1103 return count;
1104}