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