Btrfs: batch extent inserts/updates/deletions on the extent root
[linux-2.6-block.git] / fs / btrfs / super.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
4b82d6e4 19#include <linux/blkdev.h>
2e635a27 20#include <linux/module.h>
e20d96d6 21#include <linux/buffer_head.h>
2e635a27
CM
22#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
27#include <linux/string.h>
28#include <linux/smp_lock.h>
29#include <linux/backing-dev.h>
4b82d6e4 30#include <linux/mount.h>
dee26a9f 31#include <linux/mpage.h>
75dfe396
CM
32#include <linux/swap.h>
33#include <linux/writeback.h>
8fd17795 34#include <linux/statfs.h>
08607c1b 35#include <linux/compat.h>
95e05289 36#include <linux/parser.h>
c59f8951 37#include <linux/ctype.h>
6da6abae 38#include <linux/namei.h>
a9218f6b 39#include <linux/miscdevice.h>
2e635a27 40#include "ctree.h"
e20d96d6 41#include "disk-io.h"
d5719762 42#include "transaction.h"
2c90e5d6 43#include "btrfs_inode.h"
c5739bba 44#include "ioctl.h"
3a686375 45#include "print-tree.h"
5103e947 46#include "xattr.h"
8a4b83cc 47#include "volumes.h"
b3c3da71 48#include "version.h"
be6e8dc0 49#include "export.h"
c8b97818 50#include "compression.h"
2e635a27 51
5f39d397 52#define BTRFS_SUPER_MAGIC 0x9123683E
f254e52c 53
39279cc3 54static struct super_operations btrfs_super_ops;
75dfe396 55
39279cc3 56static void btrfs_put_super (struct super_block * sb)
b18c6685 57{
39279cc3 58 struct btrfs_root *root = btrfs_sb(sb);
58176a96 59 struct btrfs_fs_info *fs = root->fs_info;
b18c6685 60 int ret;
b18c6685 61
39279cc3
CM
62 ret = close_ctree(root);
63 if (ret) {
64 printk("close ctree returns %d\n", ret);
75dfe396 65 }
58176a96 66 btrfs_sysfs_del_super(fs);
39279cc3 67 sb->s_fs_info = NULL;
75dfe396
CM
68}
69
95e05289 70enum {
43e570b0 71 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
dfe25020 72 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
c8b97818 73 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_err,
95e05289
CM
74};
75
76static match_table_t tokens = {
dfe25020 77 {Opt_degraded, "degraded"},
95e05289 78 {Opt_subvol, "subvol=%s"},
43e570b0 79 {Opt_device, "device=%s"},
b6cda9bc 80 {Opt_nodatasum, "nodatasum"},
be20aa9d 81 {Opt_nodatacow, "nodatacow"},
21ad10cf 82 {Opt_nobarrier, "nobarrier"},
c59f8951 83 {Opt_max_extent, "max_extent=%s"},
6f568d35 84 {Opt_max_inline, "max_inline=%s"},
8f662a76 85 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 86 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 87 {Opt_compress, "compress"},
e18e4809 88 {Opt_ssd, "ssd"},
33268eaf
JB
89 {Opt_noacl, "noacl"},
90 {Opt_err, NULL},
95e05289
CM
91};
92
edbd8d4e 93u64 btrfs_parse_size(char *str)
c59f8951 94{
edbd8d4e 95 u64 res;
c59f8951
CM
96 int mult = 1;
97 char *end;
98 char last;
99
100 res = simple_strtoul(str, &end, 10);
101
102 last = end[0];
103 if (isalpha(last)) {
104 last = tolower(last);
105 switch (last) {
106 case 'g':
107 mult *= 1024;
108 case 'm':
109 mult *= 1024;
110 case 'k':
111 mult *= 1024;
112 }
113 res = res * mult;
114 }
115 return res;
116}
117
edf24abe
CH
118/*
119 * Regular mount options parser. Everything that is needed only when
120 * reading in a new superblock is parsed here.
121 */
122int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 123{
edf24abe 124 struct btrfs_fs_info *info = root->fs_info;
95e05289 125 substring_t args[MAX_OPT_ARGS];
edf24abe 126 char *p, *num;
4543df7e 127 int intarg;
b6cda9bc 128
95e05289 129 if (!options)
edf24abe 130 return 0;
95e05289 131
be20aa9d
CM
132 /*
133 * strsep changes the string, duplicate it because parse_options
134 * gets called twice
135 */
136 options = kstrdup(options, GFP_NOFS);
137 if (!options)
138 return -ENOMEM;
139
be20aa9d 140
edf24abe 141 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
142 int token;
143 if (!*p)
144 continue;
145
146 token = match_token(p, tokens, args);
147 switch (token) {
dfe25020 148 case Opt_degraded:
edf24abe
CH
149 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
150 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 151 break;
95e05289 152 case Opt_subvol:
43e570b0 153 case Opt_device:
edf24abe 154 /*
43e570b0 155 * These are parsed by btrfs_parse_early_options
edf24abe
CH
156 * and can be happily ignored here.
157 */
b6cda9bc
CM
158 break;
159 case Opt_nodatasum:
edf24abe
CH
160 printk(KERN_INFO "btrfs: setting nodatacsum\n");
161 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
162 break;
163 case Opt_nodatacow:
edf24abe
CH
164 printk(KERN_INFO "btrfs: setting nodatacow\n");
165 btrfs_set_opt(info->mount_opt, NODATACOW);
166 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 167 break;
c8b97818
CM
168 case Opt_compress:
169 printk(KERN_INFO "btrfs: use compression\n");
170 btrfs_set_opt(info->mount_opt, COMPRESS);
171 break;
e18e4809 172 case Opt_ssd:
edf24abe
CH
173 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
174 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 175 break;
21ad10cf 176 case Opt_nobarrier:
edf24abe
CH
177 printk(KERN_INFO "btrfs: turning off barriers\n");
178 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 179 break;
4543df7e
CM
180 case Opt_thread_pool:
181 intarg = 0;
182 match_int(&args[0], &intarg);
183 if (intarg) {
184 info->thread_pool_size = intarg;
185 printk(KERN_INFO "btrfs: thread pool %d\n",
186 info->thread_pool_size);
187 }
188 break;
c59f8951 189 case Opt_max_extent:
edf24abe
CH
190 num = match_strdup(&args[0]);
191 if (num) {
192 info->max_extent = btrfs_parse_size(num);
193 kfree(num);
194
195 info->max_extent = max_t(u64,
196 info->max_extent, root->sectorsize);
197 printk(KERN_INFO "btrfs: max_extent at %llu\n",
198 info->max_extent);
c59f8951
CM
199 }
200 break;
6f568d35 201 case Opt_max_inline:
edf24abe
CH
202 num = match_strdup(&args[0]);
203 if (num) {
204 info->max_inline = btrfs_parse_size(num);
205 kfree(num);
206
15ada040
CM
207 if (info->max_inline) {
208 info->max_inline = max_t(u64,
209 info->max_inline,
210 root->sectorsize);
211 }
edf24abe
CH
212 printk(KERN_INFO "btrfs: max_inline at %llu\n",
213 info->max_inline);
6f568d35
CM
214 }
215 break;
8f662a76 216 case Opt_alloc_start:
edf24abe
CH
217 num = match_strdup(&args[0]);
218 if (num) {
219 info->alloc_start = btrfs_parse_size(num);
220 kfree(num);
221 printk(KERN_INFO
222 "btrfs: allocations start at %llu\n",
223 info->alloc_start);
8f662a76
CM
224 }
225 break;
33268eaf
JB
226 case Opt_noacl:
227 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
228 break;
95e05289 229 default:
be20aa9d 230 break;
95e05289
CM
231 }
232 }
be20aa9d 233 kfree(options);
edf24abe
CH
234 return 0;
235}
236
237/*
238 * Parse mount options that are required early in the mount process.
239 *
240 * All other options will be parsed on much later in the mount process and
241 * only when we need to allocate a new super block.
242 */
43e570b0
CH
243static int btrfs_parse_early_options(const char *options, int flags,
244 void *holder, char **subvol_name,
245 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
246{
247 substring_t args[MAX_OPT_ARGS];
248 char *opts, *p;
249 int error = 0;
250
251 if (!options)
252 goto out;
253
254 /*
255 * strsep changes the string, duplicate it because parse_options
256 * gets called twice
257 */
258 opts = kstrdup(options, GFP_KERNEL);
259 if (!opts)
260 return -ENOMEM;
261
262 while ((p = strsep(&opts, ",")) != NULL) {
263 int token;
264 if (!*p)
265 continue;
266
267 token = match_token(p, tokens, args);
268 switch (token) {
269 case Opt_subvol:
270 *subvol_name = match_strdup(&args[0]);
271 break;
43e570b0
CH
272 case Opt_device:
273 error = btrfs_scan_one_device(match_strdup(&args[0]),
274 flags, holder, fs_devices);
275 if (error)
276 goto out_free_opts;
277 break;
edf24abe
CH
278 default:
279 break;
280 }
281 }
282
43e570b0 283 out_free_opts:
edf24abe
CH
284 kfree(opts);
285 out:
286 /*
287 * If no subvolume name is specified we use the default one. Allocate
288 * a copy of the string "default" here so that code later in the
289 * mount path doesn't care if it's the default volume or another one.
290 */
291 if (!*subvol_name) {
292 *subvol_name = kstrdup("default", GFP_KERNEL);
293 if (!*subvol_name)
294 return -ENOMEM;
295 }
296 return error;
95e05289
CM
297}
298
8a4b83cc
CM
299static int btrfs_fill_super(struct super_block * sb,
300 struct btrfs_fs_devices *fs_devices,
301 void * data, int silent)
75dfe396 302{
39279cc3
CM
303 struct inode * inode;
304 struct dentry * root_dentry;
305 struct btrfs_super_block *disk_super;
306 struct btrfs_root *tree_root;
307 struct btrfs_inode *bi;
308 int err;
a429e513 309
39279cc3
CM
310 sb->s_maxbytes = MAX_LFS_FILESIZE;
311 sb->s_magic = BTRFS_SUPER_MAGIC;
312 sb->s_op = &btrfs_super_ops;
be6e8dc0 313 sb->s_export_op = &btrfs_export_ops;
5103e947 314 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 315 sb->s_time_gran = 1;
33268eaf 316 sb->s_flags |= MS_POSIXACL;
a429e513 317
dfe25020 318 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 319
e58ca020 320 if (IS_ERR(tree_root)) {
39279cc3 321 printk("btrfs: open_ctree failed\n");
e58ca020 322 return PTR_ERR(tree_root);
a429e513 323 }
39279cc3 324 sb->s_fs_info = tree_root;
5f39d397 325 disk_super = &tree_root->fs_info->super_copy;
39279cc3
CM
326 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
327 tree_root);
328 bi = BTRFS_I(inode);
329 bi->location.objectid = inode->i_ino;
330 bi->location.offset = 0;
39279cc3 331 bi->root = tree_root;
b888db2b 332
39279cc3 333 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
a429e513 334
39279cc3 335 if (!inode) {
6567e837 336 err = -ENOMEM;
39279cc3 337 goto fail_close;
f254e52c 338 }
39279cc3
CM
339 if (inode->i_state & I_NEW) {
340 btrfs_read_locked_inode(inode);
341 unlock_new_inode(inode);
f254e52c 342 }
f254e52c 343
39279cc3
CM
344 root_dentry = d_alloc_root(inode);
345 if (!root_dentry) {
346 iput(inode);
347 err = -ENOMEM;
348 goto fail_close;
f254e52c 349 }
58176a96
JB
350
351 /* this does the super kobj at the same time */
352 err = btrfs_sysfs_add_super(tree_root->fs_info);
353 if (err)
354 goto fail_close;
355
39279cc3 356 sb->s_root = root_dentry;
6885f308 357
6885f308 358 save_mount_options(sb, data);
2619ba1f 359 return 0;
39279cc3
CM
360
361fail_close:
362 close_ctree(tree_root);
363 return err;
2619ba1f
CM
364}
365
6bf13c0c 366int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
367{
368 struct btrfs_trans_handle *trans;
39279cc3 369 struct btrfs_root *root;
c5739bba 370 int ret;
39279cc3 371 root = btrfs_sb(sb);
2619ba1f 372
39279cc3
CM
373 sb->s_dirt = 0;
374 if (!wait) {
375 filemap_flush(root->fs_info->btree_inode->i_mapping);
376 return 0;
377 }
771ed689
CM
378
379 btrfs_start_delalloc_inodes(root);
380 btrfs_wait_ordered_extents(root, 0);
381
e9d0b13b 382 btrfs_clean_old_snapshots(root);
c5739bba 383 trans = btrfs_start_transaction(root, 1);
c5739bba 384 ret = btrfs_commit_transaction(trans, root);
39279cc3 385 sb->s_dirt = 0;
54aa1f4d 386 return ret;
2c90e5d6
CM
387}
388
39279cc3 389static void btrfs_write_super(struct super_block *sb)
2c90e5d6 390{
39279cc3 391 sb->s_dirt = 0;
2c90e5d6
CM
392}
393
a061fc8d 394static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 395{
a061fc8d
CM
396 struct btrfs_fs_devices *test_fs_devices = data;
397 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 398
a061fc8d 399 return root->fs_info->fs_devices == test_fs_devices;
4b82d6e4
Y
400}
401
edf24abe
CH
402/*
403 * Find a superblock for the given device / mount point.
404 *
405 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
406 * for multiple device setup. Make sure to keep it in sync.
407 */
408static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
409 const char *dev_name, void *data, struct vfsmount *mnt)
4b82d6e4 410{
edf24abe 411 char *subvol_name = NULL;
4b82d6e4
Y
412 struct block_device *bdev = NULL;
413 struct super_block *s;
414 struct dentry *root;
8a4b83cc 415 struct btrfs_fs_devices *fs_devices = NULL;
4b82d6e4
Y
416 int error = 0;
417
43e570b0
CH
418 error = btrfs_parse_early_options(data, flags, fs_type,
419 &subvol_name, &fs_devices);
edf24abe
CH
420 if (error)
421 goto error;
422
8a4b83cc
CM
423 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
424 if (error)
edf24abe 425 goto error_free_subvol_name;
4b82d6e4 426
8a4b83cc
CM
427 error = btrfs_open_devices(fs_devices, flags, fs_type);
428 if (error)
edf24abe 429 goto error_free_subvol_name;
8a4b83cc 430
dfe25020 431 bdev = fs_devices->latest_bdev;
a061fc8d 432 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
4b82d6e4
Y
433 if (IS_ERR(s))
434 goto error_s;
435
436 if (s->s_root) {
437 if ((flags ^ s->s_flags) & MS_RDONLY) {
438 up_write(&s->s_umount);
439 deactivate_super(s);
440 error = -EBUSY;
441 goto error_bdev;
442 }
443
4b82d6e4
Y
444 } else {
445 char b[BDEVNAME_SIZE];
446
447 s->s_flags = flags;
448 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
449 error = btrfs_fill_super(s, fs_devices, data,
450 flags & MS_SILENT ? 1 : 0);
4b82d6e4
Y
451 if (error) {
452 up_write(&s->s_umount);
453 deactivate_super(s);
454 goto error;
455 }
456
788f20eb 457 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
458 s->s_flags |= MS_ACTIVE;
459 }
460
76fcef19
DW
461 if (!strcmp(subvol_name, "."))
462 root = dget(s->s_root);
463 else {
464 mutex_lock(&s->s_root->d_inode->i_mutex);
465 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
466 mutex_unlock(&s->s_root->d_inode->i_mutex);
467 if (IS_ERR(root)) {
468 up_write(&s->s_umount);
469 deactivate_super(s);
470 error = PTR_ERR(root);
471 goto error;
472 }
473 if (!root->d_inode) {
474 dput(root);
475 up_write(&s->s_umount);
476 deactivate_super(s);
477 error = -ENXIO;
478 goto error;
479 }
4b82d6e4
Y
480 }
481
482 mnt->mnt_sb = s;
483 mnt->mnt_root = root;
edf24abe
CH
484
485 kfree(subvol_name);
4b82d6e4
Y
486 return 0;
487
488error_s:
489 error = PTR_ERR(s);
490error_bdev:
8a4b83cc 491 btrfs_close_devices(fs_devices);
edf24abe
CH
492error_free_subvol_name:
493 kfree(subvol_name);
4b82d6e4
Y
494error:
495 return error;
496}
2e635a27 497
8fd17795
CM
498static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
499{
500 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 501 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
db94535d 502 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 503 __be32 *fsid = (__be32 *)root->fs_info->fsid;
8fd17795
CM
504
505 buf->f_namelen = BTRFS_NAME_LEN;
db94535d
CM
506 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
507 buf->f_bfree = buf->f_blocks -
508 (btrfs_super_bytes_used(disk_super) >> bits);
8fd17795
CM
509 buf->f_bavail = buf->f_bfree;
510 buf->f_bsize = dentry->d_sb->s_blocksize;
511 buf->f_type = BTRFS_SUPER_MAGIC;
9d03632e
DW
512 /* We treat it as constant endianness (it doesn't matter _which_)
513 because we want the fsid to come out the same whether mounted
514 on a big-endian or little-endian host */
515 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
516 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
517 /* Mask in the root object ID too, to disambiguate subvols */
518 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
519 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
520
8fd17795
CM
521 return 0;
522}
b5133862 523
2e635a27
CM
524static struct file_system_type btrfs_fs_type = {
525 .owner = THIS_MODULE,
526 .name = "btrfs",
527 .get_sb = btrfs_get_sb,
a061fc8d 528 .kill_sb = kill_anon_super,
2e635a27
CM
529 .fs_flags = FS_REQUIRES_DEV,
530};
a9218f6b 531
d352ac68
CM
532/*
533 * used by btrfsctl to scan devices when no FS is mounted
534 */
8a4b83cc
CM
535static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
536 unsigned long arg)
537{
538 struct btrfs_ioctl_vol_args *vol;
539 struct btrfs_fs_devices *fs_devices;
f819d837 540 int ret = 0;
8a4b83cc
CM
541 int len;
542
543 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
544 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
545 ret = -EFAULT;
546 goto out;
547 }
548 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
549 switch (cmd) {
550 case BTRFS_IOC_SCAN_DEV:
551 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
552 &btrfs_fs_type, &fs_devices);
553 break;
554 }
555out:
556 kfree(vol);
f819d837 557 return ret;
8a4b83cc
CM
558}
559
ed0dab6b
Y
560static void btrfs_write_super_lockfs(struct super_block *sb)
561{
562 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
563 mutex_lock(&root->fs_info->transaction_kthread_mutex);
564 mutex_lock(&root->fs_info->cleaner_mutex);
ed0dab6b
Y
565}
566
567static void btrfs_unlockfs(struct super_block *sb)
568{
569 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
570 mutex_unlock(&root->fs_info->cleaner_mutex);
571 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
ed0dab6b 572}
2e635a27 573
e20d96d6 574static struct super_operations btrfs_super_ops = {
134e9731 575 .delete_inode = btrfs_delete_inode,
e20d96d6 576 .put_super = btrfs_put_super,
d5719762
CM
577 .write_super = btrfs_write_super,
578 .sync_fs = btrfs_sync_fs,
6885f308 579 .show_options = generic_show_options,
4730a4bc 580 .write_inode = btrfs_write_inode,
b5133862 581 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
582 .alloc_inode = btrfs_alloc_inode,
583 .destroy_inode = btrfs_destroy_inode,
8fd17795 584 .statfs = btrfs_statfs,
ed0dab6b
Y
585 .write_super_lockfs = btrfs_write_super_lockfs,
586 .unlockfs = btrfs_unlockfs,
e20d96d6 587};
a9218f6b
CM
588
589static const struct file_operations btrfs_ctl_fops = {
590 .unlocked_ioctl = btrfs_control_ioctl,
591 .compat_ioctl = btrfs_control_ioctl,
592 .owner = THIS_MODULE,
593};
594
595static struct miscdevice btrfs_misc = {
596 .minor = MISC_DYNAMIC_MINOR,
597 .name = "btrfs-control",
598 .fops = &btrfs_ctl_fops
599};
600
601static int btrfs_interface_init(void)
602{
603 return misc_register(&btrfs_misc);
604}
605
606void btrfs_interface_exit(void)
607{
608 if (misc_deregister(&btrfs_misc) < 0)
609 printk("misc_deregister failed for control device");
610}
611
2e635a27
CM
612static int __init init_btrfs_fs(void)
613{
2c90e5d6 614 int err;
58176a96
JB
615
616 err = btrfs_init_sysfs();
617 if (err)
618 return err;
619
39279cc3 620 err = btrfs_init_cachep();
2c90e5d6 621 if (err)
a74a4b97 622 goto free_sysfs;
d1310b2e
CM
623
624 err = extent_io_init();
2f4cbe64
WB
625 if (err)
626 goto free_cachep;
627
d1310b2e
CM
628 err = extent_map_init();
629 if (err)
630 goto free_extent_io;
631
a9218f6b 632 err = btrfs_interface_init();
2f4cbe64
WB
633 if (err)
634 goto free_extent_map;
c8b97818 635
a9218f6b
CM
636 err = register_filesystem(&btrfs_fs_type);
637 if (err)
638 goto unregister_ioctl;
b3c3da71
CM
639
640 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
641 return 0;
642
a9218f6b
CM
643unregister_ioctl:
644 btrfs_interface_exit();
2f4cbe64
WB
645free_extent_map:
646 extent_map_exit();
d1310b2e
CM
647free_extent_io:
648 extent_io_exit();
2f4cbe64
WB
649free_cachep:
650 btrfs_destroy_cachep();
a74a4b97 651free_sysfs:
2f4cbe64
WB
652 btrfs_exit_sysfs();
653 return err;
2e635a27
CM
654}
655
656static void __exit exit_btrfs_fs(void)
657{
39279cc3 658 btrfs_destroy_cachep();
a52d9a80 659 extent_map_exit();
d1310b2e 660 extent_io_exit();
a9218f6b 661 btrfs_interface_exit();
2e635a27 662 unregister_filesystem(&btrfs_fs_type);
58176a96 663 btrfs_exit_sysfs();
8a4b83cc 664 btrfs_cleanup_fs_uuids();
c8b97818 665 btrfs_zlib_exit();
2e635a27
CM
666}
667
668module_init(init_btrfs_fs)
669module_exit(exit_btrfs_fs)
670
671MODULE_LICENSE("GPL");