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