blob: 3b80f46855e2bc56dc4f0fc8d490b7bdc55a351e [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * initialize.c --- initialize a filesystem handle given superblock
3 * parameters. Used by mke2fs when initializing a filesystem.
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00004 *
5 * Copyright (C) 1994, 1995, 1996 Theodore Ts'o.
6 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00007 * %Begin-Header%
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00008 * This file may be redistributed under the terms of the GNU Public
9 * License.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000010 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000011 */
12
13#include <stdio.h>
14#include <string.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000015#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000016#include <unistd.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000017#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <fcntl.h>
19#include <time.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000020#if HAVE_SYS_STAT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000021#include <sys/stat.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000022#endif
23#if HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000024#include <sys/types.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000025#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000026
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000027#include "ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#include "ext2fs.h"
29
Theodore Ts'o48e6e812003-07-06 00:36:48 -040030#if defined(__linux__) && defined(EXT2_OS_LINUX)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000031#define CREATOR_OS EXT2_OS_LINUX
Theodore Ts'o48e6e812003-07-06 00:36:48 -040032#else
33#if defined(__GNU__) && defined(EXT2_OS_HURD)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000034#define CREATOR_OS EXT2_OS_HURD
Theodore Ts'o48e6e812003-07-06 00:36:48 -040035#else
36#if defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000037#define CREATOR_OS EXT2_OS_FREEBSD
Theodore Ts'o48e6e812003-07-06 00:36:48 -040038#else
39#if defined(LITES) && defined(EXT2_OS_LITES)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000040#define CREATOR_OS EXT2_OS_LITES
41#else
42#define CREATOR_OS EXT2_OS_LINUX /* by default */
Theodore Ts'o48e6e812003-07-06 00:36:48 -040043#endif /* defined(LITES) && defined(EXT2_OS_LITES) */
44#endif /* defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD) */
45#endif /* defined(__GNU__) && defined(EXT2_OS_HURD) */
46#endif /* defined(__linux__) && defined(EXT2_OS_LINUX) */
47
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000048/*
49 * Note we override the kernel include file's idea of what the default
50 * check interval (never) should be. It's a good idea to check at
51 * least *occasionally*, specially since servers will never rarely get
52 * to reboot, since Linux is so robust these days. :-)
53 *
54 * 180 days (six months) seems like a good value.
55 */
56#ifdef EXT2_DFL_CHECKINTERVAL
57#undef EXT2_DFL_CHECKINTERVAL
58#endif
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000059#define EXT2_DFL_CHECKINTERVAL (86400L * 180L)
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000060
Theodore Ts'od323f8f2004-12-15 14:39:16 -050061/*
62 * Calculate the number of GDT blocks to reserve for online filesystem growth.
63 * The absolute maximum number of GDT blocks we can reserve is determined by
64 * the number of block pointers that can fit into a single block.
65 */
66static int calc_reserved_gdt_blocks(ext2_filsys fs)
67{
68 struct ext2_super_block *sb = fs->super;
69 unsigned long bpg = sb->s_blocks_per_group;
70 unsigned int gdpb = fs->blocksize / sizeof(struct ext2_group_desc);
71 unsigned long max_blocks = 0xffffffff;
72 unsigned long rsv_groups;
73 int rsv_gdb;
74
75 /* We set it at 1024x the current filesystem size, or
76 * the upper block count limit (2^32), whichever is lower.
77 */
78 if (sb->s_blocks_count < max_blocks / 1024)
79 max_blocks = sb->s_blocks_count * 1024;
80 rsv_groups = (max_blocks - sb->s_first_data_block + bpg - 1) / bpg;
81 rsv_gdb = (rsv_groups + gdpb - 1) / gdpb - fs->desc_blocks;
82 if (rsv_gdb > EXT2_ADDR_PER_BLOCK(sb))
83 rsv_gdb = EXT2_ADDR_PER_BLOCK(sb);
84 printf("max_blocks %lu, rsv_groups = %lu, rsv_gdb = %lu\n",
85 max_blocks, rsv_groups, rsv_gdb);
86
87 return rsv_gdb;
88}
89
Theodore Ts'o3839e651997-04-26 13:21:57 +000090errcode_t ext2fs_initialize(const char *name, int flags,
91 struct ext2_super_block *param,
92 io_manager manager, ext2_filsys *ret_fs)
93{
94 ext2_filsys fs;
95 errcode_t retval;
96 struct ext2_super_block *super;
97 int frags_per_block;
Theodore Ts'o54434922003-12-07 01:28:50 -050098 unsigned int rem;
99 unsigned int overhead = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000100 blk_t group_block;
Theodore Ts'o54434922003-12-07 01:28:50 -0500101 unsigned int ipg;
102 dgrp_t i;
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000103 blk_t numblocks;
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500104 int rsv_gdt;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000105 char *buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000106
107 if (!param || !param->s_blocks_count)
Theodore Ts'o1f0b6c11997-10-31 06:07:47 +0000108 return EXT2_ET_INVALID_ARGUMENT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000109
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400110 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000111 if (retval)
112 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000113
114 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000115 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o5df55d72001-06-11 07:00:04 +0000116 fs->flags = flags | EXT2_FLAG_RW;
Theodore Ts'o6a525062001-12-24 09:40:00 -0500117 fs->umask = 022;
Theodore Ts'o5df55d72001-06-11 07:00:04 +0000118#ifdef WORDS_BIGENDIAN
119 fs->flags |= EXT2_FLAG_SWAP_BYTES;
120#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000121 retval = manager->open(name, IO_FLAG_RW, &fs->io);
122 if (retval)
123 goto cleanup;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400124 fs->image_io = fs->io;
Theodore Ts'oe9affb71997-08-24 02:57:55 +0000125 fs->io->app_data = fs;
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400126 retval = ext2fs_get_mem(strlen(name)+1, &fs->device_name);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000127 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000128 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000129
Theodore Ts'o3839e651997-04-26 13:21:57 +0000130 strcpy(fs->device_name, name);
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400131 retval = ext2fs_get_mem(SUPERBLOCK_SIZE, &super);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000132 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000133 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000134 fs->super = super;
135
Theodore Ts'o3839e651997-04-26 13:21:57 +0000136 memset(super, 0, SUPERBLOCK_SIZE);
137
138#define set_field(field, default) (super->field = param->field ? \
139 param->field : (default))
140
141 super->s_magic = EXT2_SUPER_MAGIC;
142 super->s_state = EXT2_VALID_FS;
143
144 set_field(s_log_block_size, 0); /* default blocksize: 1024 bytes */
145 set_field(s_log_frag_size, 0); /* default fragsize: 1024 bytes */
146 set_field(s_first_data_block, super->s_log_block_size ? 0 : 1);
147 set_field(s_max_mnt_count, EXT2_DFL_MAX_MNT_COUNT);
148 set_field(s_errors, EXT2_ERRORS_DEFAULT);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000149 set_field(s_feature_compat, 0);
150 set_field(s_feature_incompat, 0);
151 set_field(s_feature_ro_compat, 0);
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400152 set_field(s_first_meta_bg, 0);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500153 if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
154 retval = EXT2_ET_UNSUPP_FEATURE;
155 goto cleanup;
156 }
157 if (super->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP) {
158 retval = EXT2_ET_RO_UNSUPP_FEATURE;
159 goto cleanup;
160 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000161
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000162 set_field(s_rev_level, EXT2_GOOD_OLD_REV);
163 if (super->s_rev_level >= EXT2_DYNAMIC_REV) {
164 set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO);
165 set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE);
166 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000167
Theodore Ts'o3839e651997-04-26 13:21:57 +0000168 set_field(s_checkinterval, EXT2_DFL_CHECKINTERVAL);
Theodore Ts'o9d2aefb2002-10-25 17:29:55 -0400169 super->s_mkfs_time = super->s_lastcheck = time(NULL);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000170
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000171 super->s_creator_os = CREATOR_OS;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000172
Theodore Ts'o3839e651997-04-26 13:21:57 +0000173 fs->blocksize = EXT2_BLOCK_SIZE(super);
174 fs->fragsize = EXT2_FRAG_SIZE(super);
175 frags_per_block = fs->blocksize / fs->fragsize;
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600176
177 /* default: (fs->blocksize*8) blocks/group, up to 2^16 (GDT limit) */
178 set_field(s_blocks_per_group, fs->blocksize * 8);
179 if (super->s_blocks_per_group > EXT2_MAX_BLOCKS_PER_GROUP(super))
180 super->s_blocks_per_group = EXT2_MAX_BLOCKS_PER_GROUP(super);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000181 super->s_frags_per_group = super->s_blocks_per_group * frags_per_block;
182
183 super->s_blocks_count = param->s_blocks_count;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000184 super->s_r_blocks_count = param->s_r_blocks_count;
185 if (super->s_r_blocks_count >= param->s_blocks_count) {
Theodore Ts'o1f0b6c11997-10-31 06:07:47 +0000186 retval = EXT2_ET_INVALID_ARGUMENT;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000187 goto cleanup;
188 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000189
Theodore Ts'oa1128472001-01-16 06:56:14 +0000190 /*
191 * If we're creating an external journal device, we don't need
192 * to bother with the rest.
193 */
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500194 if (super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
Theodore Ts'oa1128472001-01-16 06:56:14 +0000195 fs->group_desc_count = 0;
196 ext2fs_mark_super_dirty(fs);
197 *ret_fs = fs;
198 return 0;
199 }
200
Theodore Ts'o3839e651997-04-26 13:21:57 +0000201retry:
Theodore Ts'o3839e651997-04-26 13:21:57 +0000202 fs->group_desc_count = (super->s_blocks_count -
203 super->s_first_data_block +
204 EXT2_BLOCKS_PER_GROUP(super) - 1)
205 / EXT2_BLOCKS_PER_GROUP(super);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500206 if (fs->group_desc_count == 0) {
207 retval = EXT2_ET_TOOSMALL;
208 goto cleanup;
209 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000210 fs->desc_blocks = (fs->group_desc_count +
211 EXT2_DESC_PER_BLOCK(super) - 1)
212 / EXT2_DESC_PER_BLOCK(super);
213
Andreas Dilger932a4892002-05-16 03:20:07 -0600214 i = fs->blocksize >= 4096 ? 1 : 4096 / fs->blocksize;
215 set_field(s_inodes_count, super->s_blocks_count / i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000216
217 /*
Theodore Ts'o8d7e83b1998-09-23 00:27:26 +0000218 * Make sure we have at least EXT2_FIRST_INO + 1 inodes, so
219 * that we have enough inodes for the filesystem(!)
220 */
Theodore Ts'o7a469521999-01-04 08:50:59 +0000221 if (super->s_inodes_count < EXT2_FIRST_INODE(super)+1)
222 super->s_inodes_count = EXT2_FIRST_INODE(super)+1;
Theodore Ts'o8d7e83b1998-09-23 00:27:26 +0000223
224 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000225 * There should be at least as many inodes as the user
226 * requested. Figure out how many inodes per group that
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000227 * should be. But make sure that we don't allocate more than
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600228 * one bitmap's worth of inodes each group.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000229 */
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600230 ipg = (super->s_inodes_count + fs->group_desc_count - 1) /
231 fs->group_desc_count;
Theodore Ts'o4564c722003-01-19 21:01:22 -0500232 if (ipg > fs->blocksize * 8) {
233 if (super->s_blocks_per_group >= 256) {
234 /* Try again with slightly different parameters */
235 super->s_blocks_per_group -= 8;
236 super->s_blocks_count = param->s_blocks_count;
237 super->s_frags_per_group = super->s_blocks_per_group *
238 frags_per_block;
239 goto retry;
240 } else
241 return EXT2_ET_TOO_MANY_INODES;
242 }
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600243
Theodore Ts'o54434922003-12-07 01:28:50 -0500244 if (ipg > (unsigned) EXT2_MAX_INODES_PER_GROUP(super))
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600245 ipg = EXT2_MAX_INODES_PER_GROUP(super);
246
247 super->s_inodes_per_group = ipg;
248 if (super->s_inodes_count > ipg * fs->group_desc_count)
249 super->s_inodes_count = ipg * fs->group_desc_count;
250
Theodore Ts'o3839e651997-04-26 13:21:57 +0000251 /*
252 * Make sure the number of inodes per group completely fills
253 * the inode table blocks in the descriptor. If not, add some
254 * additional inodes/group. Waste not, want not...
255 */
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000256 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
257 EXT2_INODE_SIZE(super)) +
258 EXT2_BLOCK_SIZE(super) - 1) /
259 EXT2_BLOCK_SIZE(super));
260 super->s_inodes_per_group = ((fs->inode_blocks_per_group *
261 EXT2_BLOCK_SIZE(super)) /
262 EXT2_INODE_SIZE(super));
263 /*
264 * Finally, make sure the number of inodes per group is a
265 * multiple of 8. This is needed to simplify the bitmap
266 * splicing code.
267 */
268 super->s_inodes_per_group &= ~7;
269 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
270 EXT2_INODE_SIZE(super)) +
271 EXT2_BLOCK_SIZE(super) - 1) /
272 EXT2_BLOCK_SIZE(super));
273
Theodore Ts'o3839e651997-04-26 13:21:57 +0000274 /*
275 * adjust inode count to reflect the adjusted inodes_per_group
276 */
277 super->s_inodes_count = super->s_inodes_per_group *
278 fs->group_desc_count;
279 super->s_free_inodes_count = super->s_inodes_count;
280
281 /*
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500282 * check the number of reserved group descriptor table blocks
283 */
284 if (super->s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE)
285 rsv_gdt = calc_reserved_gdt_blocks(fs);
286 else
287 rsv_gdt = 0;
288 set_field(s_reserved_gdt_blocks, rsv_gdt);
289 if (super->s_reserved_gdt_blocks > EXT2_ADDR_PER_BLOCK(super)) {
290 retval = EXT2_ET_RES_GDT_BLOCKS;
291 goto cleanup;
292 }
293
294 /*
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000295 * Overhead is the number of bookkeeping blocks per group. It
296 * includes the superblock backup, the group descriptor
297 * backups, the inode bitmap, the block bitmap, and the inode
298 * table.
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000299 */
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500300
301 overhead = (int) (2 + fs->inode_blocks_per_group);
302
303 if (ext2fs_bg_has_super(fs, fs->group_desc_count - 1))
304 overhead += 1 + fs->desc_blocks + super->s_reserved_gdt_blocks;
Theodore Ts'o4564c722003-01-19 21:01:22 -0500305
306 /* This can only happen if the user requested too many inodes */
307 if (overhead > super->s_blocks_per_group)
308 return EXT2_ET_TOO_MANY_INODES;
309
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000310 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000311 * See if the last group is big enough to support the
312 * necessary data structures. If not, we need to get rid of
313 * it.
314 */
Theodore Ts'o54434922003-12-07 01:28:50 -0500315 rem = ((super->s_blocks_count - super->s_first_data_block) %
316 super->s_blocks_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000317 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
318 return EXT2_ET_TOOSMALL;
319 if (rem && (rem < overhead+50)) {
320 super->s_blocks_count -= rem;
321 goto retry;
322 }
323
324 /*
325 * At this point we know how big the filesystem will be. So
326 * we can do any and all allocations that depend on the block
327 * count.
328 */
329
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400330 retval = ext2fs_get_mem(strlen(fs->device_name) + 80, &buf);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000331 if (retval)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000332 goto cleanup;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000333
334 sprintf(buf, "block bitmap for %s", fs->device_name);
335 retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000336 if (retval)
337 goto cleanup;
338
Theodore Ts'of3db3561997-04-26 13:34:30 +0000339 sprintf(buf, "inode bitmap for %s", fs->device_name);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000340 retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000341 if (retval)
342 goto cleanup;
343
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400344 ext2fs_free_mem(&buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000345
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000346 retval = ext2fs_get_mem((size_t) fs->desc_blocks * fs->blocksize,
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400347 &fs->group_desc);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000348 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000349 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000350
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000351 memset(fs->group_desc, 0, (size_t) fs->desc_blocks * fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000352
Theodore Ts'of3db3561997-04-26 13:34:30 +0000353 /*
354 * Reserve the superblock and group descriptors for each
355 * group, and fill in the correct group statistics for group.
356 * Note that although the block bitmap, inode bitmap, and
357 * inode table have not been allocated (and in fact won't be
358 * by this routine), they are accounted for nevertheless.
359 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000360 group_block = super->s_first_data_block;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000361 super->s_free_blocks_count = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000362 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'oef344e12003-11-21 09:02:21 -0500363 numblocks = ext2fs_reserve_super_and_bgd(fs, i, fs->block_map);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000364
Theodore Ts'o521e3681997-04-29 17:48:10 +0000365 super->s_free_blocks_count += numblocks;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000366 fs->group_desc[i].bg_free_blocks_count = numblocks;
367 fs->group_desc[i].bg_free_inodes_count =
368 fs->super->s_inodes_per_group;
369 fs->group_desc[i].bg_used_dirs_count = 0;
370
Theodore Ts'o3839e651997-04-26 13:21:57 +0000371 group_block += super->s_blocks_per_group;
372 }
373
374 ext2fs_mark_super_dirty(fs);
375 ext2fs_mark_bb_dirty(fs);
376 ext2fs_mark_ib_dirty(fs);
377
378 io_channel_set_blksize(fs->io, fs->blocksize);
379
380 *ret_fs = fs;
381 return 0;
382cleanup:
383 ext2fs_free(fs);
384 return retval;
385}