blob: 409c2ee7750aabb73ce3a2cae44ca9695df53053 [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>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070018#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>
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070024#include <linux/blkdev.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <asm/byteorder.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040026
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040027#include "ext4.h"
28#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029#include "xattr.h"
30#include "acl.h"
31
Theodore Ts'o9bffad12009-06-17 11:48:11 -040032#include <trace/events/ext4.h>
33
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034/*
35 * ialloc.c contains the inodes allocation and deallocation routines
36 */
37
38/*
39 * The free inodes are managed by bitmaps. A file system contains several
40 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
41 * block for inodes, N blocks for the inode table and data blocks.
42 *
43 * The file system contains group descriptors which are located after the
44 * super block. Each descriptor contains the number of the bitmap block and
45 * the free blocks count in the block.
46 */
47
Andreas Dilger717d50e2007-10-16 18:38:25 -040048/*
49 * To avoid calling the atomic setbit hundreds or thousands of times, we only
50 * need to use it within a single byte (to ensure we get endianness right).
51 * We can use memset for the rest of the bitmap as there are no other users.
52 */
Theodore Ts'o61d08672010-10-27 21:30:15 -040053void ext4_mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
Andreas Dilger717d50e2007-10-16 18:38:25 -040054{
55 int i;
56
57 if (start_bit >= end_bit)
58 return;
59
60 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
61 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
62 ext4_set_bit(i, bitmap);
63 if (i < end_bit)
64 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
65}
66
67/* Initializes an uninitialized inode bitmap */
Theodore Ts'o1f109d52010-10-27 21:30:14 -040068static unsigned ext4_init_inode_bitmap(struct super_block *sb,
69 struct buffer_head *bh,
70 ext4_group_t block_group,
71 struct ext4_group_desc *gdp)
Andreas Dilger717d50e2007-10-16 18:38:25 -040072{
73 struct ext4_sb_info *sbi = EXT4_SB(sb);
74
75 J_ASSERT_BH(bh, buffer_locked(bh));
76
77 /* If checksum is bad mark all blocks and inodes use to prevent
78 * allocation, essentially implementing a per-group read-only flag. */
79 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -050080 ext4_error(sb, "Checksum bad for group %u", block_group);
Theodore Ts'o021b65b2011-09-09 19:08:51 -040081 ext4_free_group_clusters_set(sb, gdp, 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050082 ext4_free_inodes_set(sb, gdp, 0);
83 ext4_itable_unused_set(sb, gdp, 0);
Andreas Dilger717d50e2007-10-16 18:38:25 -040084 memset(bh->b_data, 0xff, sb->s_blocksize);
85 return 0;
86 }
87
88 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
Theodore Ts'o61d08672010-10-27 21:30:15 -040089 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
Andreas Dilger717d50e2007-10-16 18:38:25 -040090 bh->b_data);
91
92 return EXT4_INODES_PER_GROUP(sb);
93}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070094
Theodore Ts'o813e5722012-02-20 17:52:46 -050095void ext4_end_bitmap_read(struct buffer_head *bh, int uptodate)
96{
97 if (uptodate) {
98 set_buffer_uptodate(bh);
99 set_bitmap_uptodate(bh);
100 }
101 unlock_buffer(bh);
102 put_bh(bh);
103}
104
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700105/*
106 * Read the inode allocation bitmap for a given block_group, reading
107 * into the specified slot in the superblock's bitmap cache.
108 *
109 * Return buffer_head of bitmap on success or NULL.
110 */
111static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400112ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700113{
Mingming Cao617ba132006-10-11 01:20:53 -0700114 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700115 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400116 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700117
Mingming Cao617ba132006-10-11 01:20:53 -0700118 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700119 if (!desc)
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400120 return NULL;
Lukas Czernerbfff6872010-10-27 21:30:05 -0400121
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400122 bitmap_blk = ext4_inode_bitmap(sb, desc);
123 bh = sb_getblk(sb, bitmap_blk);
124 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500125 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500126 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400127 block_group, bitmap_blk);
128 return NULL;
129 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500130 if (bitmap_uptodate(bh))
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400131 return bh;
132
Frederic Bohec806e682008-10-10 08:09:18 -0400133 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500134 if (bitmap_uptodate(bh)) {
135 unlock_buffer(bh);
136 return bh;
137 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400138
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400139 ext4_lock_group(sb, block_group);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400140 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
141 ext4_init_inode_bitmap(sb, bh, block_group, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500142 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400143 set_buffer_uptodate(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400144 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500145 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400146 return bh;
147 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400148 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400149
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500150 if (buffer_uptodate(bh)) {
151 /*
152 * if not uninit if bh is uptodate,
153 * bitmap is also uptodate
154 */
155 set_bitmap_uptodate(bh);
156 unlock_buffer(bh);
157 return bh;
158 }
159 /*
Theodore Ts'o813e5722012-02-20 17:52:46 -0500160 * submit the buffer_head for reading
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500161 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400162 trace_ext4_load_inode_bitmap(sb, block_group);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500163 bh->b_end_io = ext4_end_bitmap_read;
164 get_bh(bh);
165 submit_bh(READ, bh);
166 wait_on_buffer(bh);
167 if (!buffer_uptodate(bh)) {
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400168 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500169 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'o813e5722012-02-20 17:52:46 -0500170 "block_group = %u, inode_bitmap = %llu",
171 block_group, bitmap_blk);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400172 return NULL;
173 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 return bh;
175}
176
177/*
178 * NOTE! When we get the inode, we're the only people
179 * that have access to it, and as such there are no
180 * race conditions we have to worry about. The inode
181 * is not on the hash-lists, and it cannot be reached
182 * through the filesystem because the directory entry
183 * has been deleted earlier.
184 *
185 * HOWEVER: we must make sure that we get no aliases,
186 * which means that we have to call "clear_inode()"
187 * _before_ we mark the inode not in use in the inode
188 * bitmaps. Otherwise a newly created file might use
189 * the same inode number (not actually the same pointer
190 * though), and then we'd have two inodes sharing the
191 * same inode number and space on the harddisk.
192 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400193void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400195 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700196 int is_directory;
197 unsigned long ino;
198 struct buffer_head *bitmap_bh = NULL;
199 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500200 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700201 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400202 struct ext4_group_desc *gdp;
203 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700204 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500205 int fatal = 0, err, count, cleared;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700206
Theodore Ts'o92b97812012-03-19 23:41:49 -0400207 if (!sb) {
208 printk(KERN_ERR "EXT4-fs: %s:%d: inode on "
209 "nonexistent device\n", __func__, __LINE__);
210 return;
211 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700212 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400213 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: count=%d",
214 __func__, __LINE__, inode->i_ino,
215 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216 return;
217 }
218 if (inode->i_nlink) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400219 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: nlink=%d\n",
220 __func__, __LINE__, inode->i_ino, inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700221 return;
222 }
Mingming Cao617ba132006-10-11 01:20:53 -0700223 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224
225 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400226 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400227 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700228
229 /*
230 * Note: we must free any quota before locking the superblock,
231 * as writing the quota to disk may need the lock as well.
232 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500233 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700234 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500235 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500236 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700237
238 is_directory = S_ISDIR(inode->i_mode);
239
240 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400241 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242
Mingming Cao617ba132006-10-11 01:20:53 -0700243 es = EXT4_SB(sb)->s_es;
244 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500245 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700246 goto error_return;
247 }
Mingming Cao617ba132006-10-11 01:20:53 -0700248 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
249 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400250 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 if (!bitmap_bh)
252 goto error_return;
253
254 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700255 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256 if (fatal)
257 goto error_return;
258
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400259 fatal = -ESRCH;
260 gdp = ext4_get_group_desc(sb, block_group, &bh2);
261 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700263 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400265 ext4_lock_group(sb, block_group);
Akinobu Mita597d5082011-12-28 20:32:07 -0500266 cleared = ext4_test_and_clear_bit(bit, bitmap_bh->b_data);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400267 if (fatal || !cleared) {
268 ext4_unlock_group(sb, block_group);
269 goto out;
270 }
271
272 count = ext4_free_inodes_count(sb, gdp) + 1;
273 ext4_free_inodes_set(sb, gdp, count);
274 if (is_directory) {
275 count = ext4_used_dirs_count(sb, gdp) - 1;
276 ext4_used_dirs_set(sb, gdp, count);
277 percpu_counter_dec(&sbi->s_dirs_counter);
278 }
279 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
280 ext4_unlock_group(sb, block_group);
281
282 percpu_counter_inc(&sbi->s_freeinodes_counter);
283 if (sbi->s_log_groups_per_flex) {
284 ext4_group_t f = ext4_flex_group(sbi, block_group);
285
286 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
287 if (is_directory)
288 atomic_dec(&sbi->s_flex_groups[f].used_dirs);
289 }
290 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
291 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
292out:
293 if (cleared) {
294 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
295 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
296 if (!fatal)
297 fatal = err;
Theodore Ts'oa0375152010-06-11 23:14:04 -0400298 ext4_mark_super_dirty(sb);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400299 } else
300 ext4_error(sb, "bit already cleared for inode %lu", ino);
301
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700302error_return:
303 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700304 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305}
306
Theodore Ts'oa4912122009-03-12 12:18:34 -0400307struct orlov_stats {
308 __u32 free_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400309 __u32 free_clusters;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400310 __u32 used_dirs;
311};
312
313/*
314 * Helper function for Orlov's allocator; returns critical information
315 * for a particular block group or flex_bg. If flex_size is 1, then g
316 * is a block group number; otherwise it is flex_bg number.
317 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400318static void get_orlov_stats(struct super_block *sb, ext4_group_t g,
319 int flex_size, struct orlov_stats *stats)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400320{
321 struct ext4_group_desc *desc;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500322 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400323
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500324 if (flex_size > 1) {
325 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400326 stats->free_clusters = atomic_read(&flex_group[g].free_clusters);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500327 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
328 return;
329 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400330
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500331 desc = ext4_get_group_desc(sb, g, NULL);
332 if (desc) {
333 stats->free_inodes = ext4_free_inodes_count(sb, desc);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400334 stats->free_clusters = ext4_free_group_clusters(sb, desc);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500335 stats->used_dirs = ext4_used_dirs_count(sb, desc);
336 } else {
337 stats->free_inodes = 0;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400338 stats->free_clusters = 0;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500339 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400340 }
341}
342
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343/*
344 * Orlov's allocator for directories.
345 *
346 * We always try to spread first-level directories.
347 *
348 * If there are blockgroups with both free inodes and free blocks counts
349 * not worse than average we return one with smallest directory count.
350 * Otherwise we simply return a random group.
351 *
352 * For the rest rules look so:
353 *
354 * It's OK to put directory into a group unless
355 * it has too many directories already (max_dirs) or
356 * it has too few free inodes left (min_inodes) or
357 * it has too few free blocks left (min_blocks) or
Benoit Boissinot1cc8dcf2008-04-21 22:45:55 +0000358 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700359 * conditions we search cyclically through the rest. If none
360 * of the groups look good we just look for a group with more
361 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 */
363
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500364static int find_group_orlov(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400365 ext4_group_t *group, umode_t mode,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400366 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700367{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500368 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700369 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400370 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700371 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500372 unsigned int freei, avefreei, grp_free;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400373 ext4_fsblk_t freeb, avefreec;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700374 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400375 int max_dirs, min_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400376 ext4_grpblk_t min_clusters;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400377 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700378 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400379 struct orlov_stats stats;
380 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400381 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400382
Theodore Ts'o8df96752009-05-01 08:50:38 -0400383 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400384 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400385 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400386 sbi->s_log_groups_per_flex;
387 parent_group >>= sbi->s_log_groups_per_flex;
388 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700389
390 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
391 avefreei = freei / ngroups;
Theodore Ts'o57042652011-09-09 18:56:51 -0400392 freeb = EXT4_C2B(sbi,
393 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400394 avefreec = freeb;
395 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700396 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
397
Theodore Ts'oa4912122009-03-12 12:18:34 -0400398 if (S_ISDIR(mode) &&
399 ((parent == sb->s_root->d_inode) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400400 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500402 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700403
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400404 if (qstr) {
405 hinfo.hash_version = DX_HASH_HALF_MD4;
406 hinfo.seed = sbi->s_hash_seed;
407 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
408 grp = hinfo.hash;
409 } else
410 get_random_bytes(&grp, sizeof(grp));
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500411 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700412 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400413 g = (parent_group + i) % ngroups;
414 get_orlov_stats(sb, g, flex_size, &stats);
415 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700416 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400417 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400419 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700420 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400421 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400423 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500424 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400425 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700426 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400427 if (ret)
428 goto fallback;
429 found_flex_bg:
430 if (flex_size == 1) {
431 *group = grp;
432 return 0;
433 }
434
435 /*
436 * We pack inodes at the beginning of the flexgroup's
437 * inode tables. Block allocation decisions will do
438 * something similar, although regular files will
439 * start at 2nd block group of the flexgroup. See
440 * ext4_ext_find_goal() and ext4_find_near().
441 */
442 grp *= flex_size;
443 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400444 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400445 break;
446 desc = ext4_get_group_desc(sb, grp+i, NULL);
447 if (desc && ext4_free_inodes_count(sb, desc)) {
448 *group = grp+i;
449 return 0;
450 }
451 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700452 goto fallback;
453 }
454
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700455 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400456 min_inodes = avefreei - inodes_per_group*flex_size / 4;
457 if (min_inodes < 1)
458 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400459 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460
Theodore Ts'oa4912122009-03-12 12:18:34 -0400461 /*
462 * Start looking in the flex group where we last allocated an
463 * inode for this parent directory
464 */
465 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
466 parent_group = EXT4_I(parent)->i_last_alloc_group;
467 if (flex_size > 1)
468 parent_group >>= sbi->s_log_groups_per_flex;
469 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470
471 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400472 grp = (parent_group + i) % ngroups;
473 get_orlov_stats(sb, grp, flex_size, &stats);
474 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400476 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400478 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400480 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700481 }
482
483fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400484 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400485 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400486fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400487 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400489 grp = (parent_group + i) % ngroups;
490 desc = ext4_get_group_desc(sb, grp, NULL);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500491 grp_free = ext4_free_inodes_count(sb, desc);
492 if (desc && grp_free && grp_free >= avefreei) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400493 *group = grp;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500494 return 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400495 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700496 }
497
498 if (avefreei) {
499 /*
500 * The free-inodes counter is approximate, and for really small
501 * filesystems the above test can fail to find any blockgroups
502 */
503 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400504 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700505 }
506
507 return -1;
508}
509
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500510static int find_group_other(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400511 ext4_group_t *group, umode_t mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500513 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400514 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700515 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400516 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
517
518 /*
519 * Try to place the inode is the same flex group as its
520 * parent. If we can't find space, use the Orlov algorithm to
521 * find another flex group, and store that information in the
522 * parent directory's inode information so that use that flex
523 * group for future allocations.
524 */
525 if (flex_size > 1) {
526 int retry = 0;
527
528 try_again:
529 parent_group &= ~(flex_size-1);
530 last = parent_group + flex_size;
531 if (last > ngroups)
532 last = ngroups;
533 for (i = parent_group; i < last; i++) {
534 desc = ext4_get_group_desc(sb, i, NULL);
535 if (desc && ext4_free_inodes_count(sb, desc)) {
536 *group = i;
537 return 0;
538 }
539 }
540 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
541 retry = 1;
542 parent_group = EXT4_I(parent)->i_last_alloc_group;
543 goto try_again;
544 }
545 /*
546 * If this didn't work, use the Orlov search algorithm
547 * to find a new flex group; we pass in the mode to
548 * avoid the topdir algorithms.
549 */
550 *group = parent_group + flex_size;
551 if (*group > ngroups)
552 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500553 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400554 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700555
556 /*
557 * Try to place the inode in its parent directory
558 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500559 *group = parent_group;
560 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500561 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400562 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500563 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564
565 /*
566 * We're going to place this inode in a different blockgroup from its
567 * parent. We want to cause files in a common directory to all land in
568 * the same blockgroup. But we want files which are in a different
569 * directory which shares a blockgroup with our parent to land in a
570 * different blockgroup.
571 *
572 * So add our directory's i_ino into the starting point for the hash.
573 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500574 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700575
576 /*
577 * Use a quadratic hash to find a group with a free inode and some free
578 * blocks.
579 */
580 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500581 *group += i;
582 if (*group >= ngroups)
583 *group -= ngroups;
584 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500585 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400586 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500587 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 }
589
590 /*
591 * That failed: try linear search for a free inode, even if that group
592 * has no free blocks.
593 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500594 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700595 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500596 if (++*group >= ngroups)
597 *group = 0;
598 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500599 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500600 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700601 }
602
603 return -1;
604}
605
606/*
607 * There are two policies for allocating an inode. If the new inode is
608 * a directory, then a forward search is made for a block group with both
609 * free space and a low directory-to-inode ratio; if that fails, then of
610 * the groups with above-average free space, that group with the fewest
611 * directories already is chosen.
612 *
613 * For other inodes, search forward from the parent directory's block
614 * group to find a free inode.
615 */
Al Virodcca3fe2011-07-26 02:48:06 -0400616struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, umode_t mode,
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400617 const struct qstr *qstr, __u32 goal, uid_t *owner)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618{
619 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500620 struct buffer_head *inode_bitmap_bh = NULL;
621 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400622 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400624 struct inode *inode;
625 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700626 struct ext4_inode_info *ei;
627 struct ext4_sb_info *sbi;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500628 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500630 ext4_group_t i;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400631 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632
633 /* Cannot create files in a deleted directory */
634 if (!dir || !dir->i_nlink)
635 return ERR_PTR(-EPERM);
636
637 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400638 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400639 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 inode = new_inode(sb);
641 if (!inode)
642 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700643 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700644 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400645
Andreas Dilger11013912009-06-13 11:45:35 -0400646 if (!goal)
647 goal = sbi->s_inode_goal;
648
Johann Lombardie6462862009-07-05 23:45:11 -0400649 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400650 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
651 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
652 ret2 = 0;
653 goto got_group;
654 }
655
Lukas Czerner4113c4c2011-10-08 14:34:47 -0400656 if (S_ISDIR(mode))
657 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
658 else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400659 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700660
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400661got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400662 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700663 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500664 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700665 goto out;
666
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500667 /*
668 * Normally we will only go through one pass of this loop,
669 * unless we get unlucky and it turns out the group we selected
670 * had its last inode grabbed by someone else.
671 */
Andreas Dilger11013912009-06-13 11:45:35 -0400672 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673 err = -EIO;
674
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500675 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700676 if (!gdp)
677 goto fail;
678
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500679 brelse(inode_bitmap_bh);
680 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
681 if (!inode_bitmap_bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700682 goto fail;
683
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700685 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500686 inode_bitmap_bh->b_data,
687 EXT4_INODES_PER_GROUP(sb), ino);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500688 if (ino >= EXT4_INODES_PER_GROUP(sb)) {
689 if (++group == ngroups)
690 group = 0;
691 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500693 if (group == 0 && (ino+1) < EXT4_FIRST_INO(sb)) {
694 ext4_error(sb, "reserved inode found cleared - "
695 "inode=%lu", ino + 1);
696 continue;
697 }
698 ext4_lock_group(sb, group);
699 ret2 = ext4_test_and_set_bit(ino, inode_bitmap_bh->b_data);
700 ext4_unlock_group(sb, group);
701 ino++; /* the inode bitmap is zero-based */
702 if (!ret2)
703 goto got; /* we grabbed the inode! */
704 if (ino < EXT4_INODES_PER_GROUP(sb))
705 goto repeat_in_this_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706 }
707 err = -ENOSPC;
708 goto out;
709
710got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400711 /* We may have to initialize the block bitmap if it isn't already */
712 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
713 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500714 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400715
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500716 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
717 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
718 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400719 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500720 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400721 goto fail;
722 }
723
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400724 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
725 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
726 brelse(block_bitmap_bh);
727
Andreas Dilger717d50e2007-10-16 18:38:25 -0400728 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400729 ext4_lock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400730 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500731 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400732 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -0400733 ext4_free_clusters_after_init(sb, group, gdp));
Frederic Bohe23712a92008-11-07 09:21:01 -0500734 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
735 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400736 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400737 ext4_unlock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400738
Andreas Dilger717d50e2007-10-16 18:38:25 -0400739 if (err)
740 goto fail;
741 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500742
743 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
744 err = ext4_journal_get_write_access(handle, inode_bitmap_bh);
745 if (err)
746 goto fail;
747
748 BUFFER_TRACE(group_desc_bh, "get_write_access");
749 err = ext4_journal_get_write_access(handle, group_desc_bh);
750 if (err)
751 goto fail;
752
753 /* Update the relevant bg descriptor fields */
754 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
755 int free;
756 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
757
758 down_read(&grp->alloc_sem); /* protect vs itable lazyinit */
759 ext4_lock_group(sb, group); /* while we modify the bg desc */
760 free = EXT4_INODES_PER_GROUP(sb) -
761 ext4_itable_unused_count(sb, gdp);
762 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
763 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
764 free = 0;
765 }
766 /*
767 * Check the relative inode number against the last used
768 * relative inode number in this group. if it is greater
769 * we need to update the bg_itable_unused count
770 */
771 if (ino > free)
772 ext4_itable_unused_set(sb, gdp,
773 (EXT4_INODES_PER_GROUP(sb) - ino));
774 up_read(&grp->alloc_sem);
775 }
776 ext4_free_inodes_set(sb, gdp, ext4_free_inodes_count(sb, gdp) - 1);
777 if (S_ISDIR(mode)) {
778 ext4_used_dirs_set(sb, gdp, ext4_used_dirs_count(sb, gdp) + 1);
779 if (sbi->s_log_groups_per_flex) {
780 ext4_group_t f = ext4_flex_group(sbi, group);
781
782 atomic_inc(&sbi->s_flex_groups[f].used_dirs);
783 }
784 }
785 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
786 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
787 ext4_unlock_group(sb, group);
788 }
789
790 BUFFER_TRACE(inode_bitmap_bh, "call ext4_handle_dirty_metadata");
791 err = ext4_handle_dirty_metadata(handle, NULL, inode_bitmap_bh);
792 if (err)
793 goto fail;
794
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500795 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
796 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500797 if (err)
798 goto fail;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799
800 percpu_counter_dec(&sbi->s_freeinodes_counter);
801 if (S_ISDIR(mode))
802 percpu_counter_inc(&sbi->s_dirs_counter);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400803 ext4_mark_super_dirty(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400805 if (sbi->s_log_groups_per_flex) {
806 flex_group = ext4_flex_group(sbi, group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500807 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400808 }
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400809 if (owner) {
810 inode->i_mode = mode;
811 inode->i_uid = owner[0];
812 inode->i_gid = owner[1];
813 } else if (test_opt(sb, GRPID)) {
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300814 inode->i_mode = mode;
815 inode->i_uid = current_fsuid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700816 inode->i_gid = dir->i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817 } else
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300818 inode_init_owner(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700819
Andreas Dilger717d50e2007-10-16 18:38:25 -0400820 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700821 /* This is the optimal IO size (for stat), not the fs block size */
822 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400823 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
824 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825
826 memset(ei->i_data, 0, sizeof(ei->i_data));
827 ei->i_dir_start_lookup = 0;
828 ei->i_disksize = 0;
829
Eryu Guan4af83502011-10-31 18:21:29 -0400830 /* Don't inherit extent flag from directory, amongst others. */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -0500831 ei->i_flags =
832 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400836 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837
Mingming Cao617ba132006-10-11 01:20:53 -0700838 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700839 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500840 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -0500841 if (insert_inode_locked(inode) < 0) {
Jan Karaacd6ad82011-12-18 17:37:02 -0500842 /*
843 * Likely a bitmap corruption causing inode to be allocated
844 * twice.
845 */
846 err = -EIO;
847 goto fail;
Al Viro6b38e842008-12-30 02:03:31 -0500848 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700849 spin_lock(&sbi->s_next_gen_lock);
850 inode->i_generation = sbi->s_next_generation++;
851 spin_unlock(&sbi->s_next_gen_lock);
852
Theodore Ts'o353eb832011-01-10 12:18:25 -0500853 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500854 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -0400855
856 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700857
858 ret = inode;
Christoph Hellwig871a2932010-03-03 09:05:07 -0500859 dquot_initialize(inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500860 err = dquot_alloc_inode(inode);
861 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863
Mingming Cao617ba132006-10-11 01:20:53 -0700864 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865 if (err)
866 goto fail_free_drop;
867
Eric Paris2a7dba32011-02-01 11:05:39 -0500868 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869 if (err)
870 goto fail_free_drop;
871
Theodore Ts'o83982b62009-01-06 14:53:16 -0500872 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -0400873 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -0400874 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400875 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500876 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500877 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700878 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879
Theodore Ts'o688f8692011-03-16 17:16:31 -0400880 if (ext4_handle_valid(handle)) {
881 ei->i_sync_tid = handle->h_transaction->t_tid;
882 ei->i_datasync_tid = handle->h_transaction->t_tid;
883 }
884
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -0400885 err = ext4_mark_inode_dirty(handle, inode);
886 if (err) {
887 ext4_std_error(sb, err);
888 goto fail_free_drop;
889 }
890
Mingming Cao617ba132006-10-11 01:20:53 -0700891 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400892 trace_ext4_allocate_inode(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893 goto really_out;
894fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700895 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896out:
897 iput(inode);
898 ret = ERR_PTR(err);
899really_out:
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500900 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 return ret;
902
903fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500904 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700905
906fail_drop:
Christoph Hellwig9f754752010-03-03 09:05:05 -0500907 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 inode->i_flags |= S_NOQUOTA;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200909 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -0500910 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700911 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500912 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700913 return ERR_PTR(err);
914}
915
916/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -0700917struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700918{
Mingming Cao617ba132006-10-11 01:20:53 -0700919 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500920 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -0800922 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700923 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -0800924 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700925
926 /* Error cases - e2fsck has already cleaned up for us */
927 if (ino > max_ino) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500928 ext4_warning(sb, "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800929 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700930 }
931
Mingming Cao617ba132006-10-11 01:20:53 -0700932 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
933 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400934 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 if (!bitmap_bh) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500936 ext4_warning(sb, "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800937 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700938 }
939
940 /* Having the inode bit set should be a 100% indicator that this
941 * is a valid orphan (no e2fsck run on fs). Orphans also include
942 * inodes that were being truncated, so we can't check i_nlink==0.
943 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800944 if (!ext4_test_bit(bit, bitmap_bh->b_data))
945 goto bad_orphan;
946
947 inode = ext4_iget(sb, ino);
948 if (IS_ERR(inode))
949 goto iget_failed;
950
Duane Griffin91ef4ca2008-07-11 19:27:31 -0400951 /*
952 * If the orphans has i_nlinks > 0 then it should be able to be
953 * truncated, otherwise it won't be removed from the orphan list
954 * during processing and an infinite loop will result.
955 */
956 if (inode->i_nlink && !ext4_can_truncate(inode))
957 goto bad_orphan;
958
David Howells1d1fe1e2008-02-07 00:15:37 -0800959 if (NEXT_ORPHAN(inode) > max_ino)
960 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700961 brelse(bitmap_bh);
962 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -0800963
964iget_failed:
965 err = PTR_ERR(inode);
966 inode = NULL;
967bad_orphan:
Eric Sandeen12062dd2010-02-15 14:19:27 -0500968 ext4_warning(sb, "bad orphan inode %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800969 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
970 bit, (unsigned long long)bitmap_bh->b_blocknr,
971 ext4_test_bit(bit, bitmap_bh->b_data));
972 printk(KERN_NOTICE "inode=%p\n", inode);
973 if (inode) {
974 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
975 is_bad_inode(inode));
976 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
977 NEXT_ORPHAN(inode));
978 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -0400979 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -0800980 /* Avoid freeing blocks if we got a bad deleted inode */
981 if (inode->i_nlink == 0)
982 inode->i_blocks = 0;
983 iput(inode);
984 }
985 brelse(bitmap_bh);
986error:
987 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988}
989
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400990unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991{
992 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700993 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400994 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700995#ifdef EXT4FS_DEBUG
996 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700997 unsigned long bitmap_count, x;
998 struct buffer_head *bitmap_bh = NULL;
999
Mingming Cao617ba132006-10-11 01:20:53 -07001000 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001 desc_count = 0;
1002 bitmap_count = 0;
1003 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001004 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001005 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 if (!gdp)
1007 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001008 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001009 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001010 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 if (!bitmap_bh)
1012 continue;
1013
Mingming Cao617ba132006-10-11 01:20:53 -07001014 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001015 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001016 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017 bitmap_count += x;
1018 }
1019 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001020 printk(KERN_DEBUG "ext4_count_free_inodes: "
1021 "stored = %u, computed = %lu, %lu\n",
1022 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 return desc_count;
1024#else
1025 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001026 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001027 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001028 if (!gdp)
1029 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001030 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001031 cond_resched();
1032 }
1033 return desc_count;
1034#endif
1035}
1036
1037/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001038unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039{
1040 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001041 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001042
Theodore Ts'o8df96752009-05-01 08:50:38 -04001043 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001044 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001045 if (!gdp)
1046 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001047 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 }
1049 return count;
1050}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001051
1052/*
1053 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1054 * inode table. Must be called without any spinlock held. The only place
1055 * where it is called from on active part of filesystem is ext4lazyinit
1056 * thread, so we do not need any special locks, however we have to prevent
1057 * inode allocation from the current group, so we take alloc_sem lock, to
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001058 * block ext4_new_inode() until we are finished.
Lukas Czernerbfff6872010-10-27 21:30:05 -04001059 */
H Hartley Sweetene0cbee32011-10-18 10:57:51 -04001060int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
Lukas Czernerbfff6872010-10-27 21:30:05 -04001061 int barrier)
1062{
1063 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1064 struct ext4_sb_info *sbi = EXT4_SB(sb);
1065 struct ext4_group_desc *gdp = NULL;
1066 struct buffer_head *group_desc_bh;
1067 handle_t *handle;
1068 ext4_fsblk_t blk;
1069 int num, ret = 0, used_blks = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001070
1071 /* This should not happen, but just to be sure check this */
1072 if (sb->s_flags & MS_RDONLY) {
1073 ret = 1;
1074 goto out;
1075 }
1076
1077 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1078 if (!gdp)
1079 goto out;
1080
1081 /*
1082 * We do not need to lock this, because we are the only one
1083 * handling this flag.
1084 */
1085 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1086 goto out;
1087
1088 handle = ext4_journal_start_sb(sb, 1);
1089 if (IS_ERR(handle)) {
1090 ret = PTR_ERR(handle);
1091 goto out;
1092 }
1093
1094 down_write(&grp->alloc_sem);
1095 /*
1096 * If inode bitmap was already initialized there may be some
1097 * used inodes so we need to skip blocks with used inodes in
1098 * inode table.
1099 */
1100 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1101 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1102 ext4_itable_unused_count(sb, gdp)),
1103 sbi->s_inodes_per_block);
1104
Lukas Czerner857ac882010-10-27 21:30:05 -04001105 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group)) {
Theodore Ts'o1084f252012-03-19 23:13:43 -04001106 ext4_error(sb, "Something is wrong with group %u: "
1107 "used itable blocks: %d; "
1108 "itable unused count: %u",
Lukas Czerner857ac882010-10-27 21:30:05 -04001109 group, used_blks,
1110 ext4_itable_unused_count(sb, gdp));
1111 ret = 1;
Yongqiang Yang33853a02011-08-01 06:32:19 -04001112 goto err_out;
Lukas Czerner857ac882010-10-27 21:30:05 -04001113 }
1114
Lukas Czernerbfff6872010-10-27 21:30:05 -04001115 blk = ext4_inode_table(sb, gdp) + used_blks;
1116 num = sbi->s_itb_per_group - used_blks;
1117
1118 BUFFER_TRACE(group_desc_bh, "get_write_access");
1119 ret = ext4_journal_get_write_access(handle,
1120 group_desc_bh);
1121 if (ret)
1122 goto err_out;
1123
Lukas Czernerbfff6872010-10-27 21:30:05 -04001124 /*
1125 * Skip zeroout if the inode table is full. But we set the ZEROED
1126 * flag anyway, because obviously, when it is full it does not need
1127 * further zeroing.
1128 */
1129 if (unlikely(num == 0))
1130 goto skip_zeroout;
1131
1132 ext4_debug("going to zero out inode table in group %d\n",
1133 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001134 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001135 if (ret < 0)
1136 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001137 if (barrier)
1138 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001139
1140skip_zeroout:
1141 ext4_lock_group(sb, group);
1142 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
1143 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
1144 ext4_unlock_group(sb, group);
1145
1146 BUFFER_TRACE(group_desc_bh,
1147 "call ext4_handle_dirty_metadata");
1148 ret = ext4_handle_dirty_metadata(handle, NULL,
1149 group_desc_bh);
1150
1151err_out:
1152 up_write(&grp->alloc_sem);
1153 ext4_journal_stop(handle);
1154out:
1155 return ret;
1156}