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