blob: 9ab4086d463c3ee54a7235060a419f855562ffd7 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Yan4b82d6e2007-08-29 09:11:44 -040019#include <linux/blkdev.h>
Chris Mason2e635a22007-03-21 11:12:56 -040020#include <linux/module.h>
Chris Masone20d96d2007-03-22 12:13:20 -040021#include <linux/buffer_head.h>
Chris Mason2e635a22007-03-21 11:12:56 -040022#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>
Yan4b82d6e2007-08-29 09:11:44 -040030#include <linux/mount.h>
Chris Masondee26a92007-03-26 16:00:06 -040031#include <linux/mpage.h>
Chris Mason75dfe392007-03-29 11:56:46 -040032#include <linux/swap.h>
33#include <linux/writeback.h>
Chris Mason8fd17792007-04-19 21:01:03 -040034#include <linux/statfs.h>
Chris Mason08607c12007-06-08 15:33:54 -040035#include <linux/compat.h>
Chris Mason95e05282007-08-29 09:11:44 -040036#include <linux/parser.h>
Chris Masonc59f8952007-12-17 20:14:04 -050037#include <linux/ctype.h>
Chris Mason6da6aba2007-12-18 16:15:09 -050038#include <linux/namei.h>
Chris Mason2e635a22007-03-21 11:12:56 -040039#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040040#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040041#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040042#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040043#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040044#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050045#include "xattr.h"
Chris Mason2e635a22007-03-21 11:12:56 -040046
Chris Mason5f39d392007-10-15 16:14:19 -040047#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040048
Chris Masone20d96d2007-03-22 12:13:20 -040049static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040050
51static void btrfs_put_super (struct super_block * sb)
52{
53 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040054 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040055 int ret;
56
57 ret = close_ctree(root);
58 if (ret) {
59 printk("close ctree returns %d\n", ret);
60 }
Josef Bacik58176a92007-08-29 15:47:34 -040061 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040062 sb->s_fs_info = NULL;
63}
Chris Mason2e635a22007-03-21 11:12:56 -040064
Chris Mason95e05282007-08-29 09:11:44 -040065enum {
Chris Mason8f662a72008-01-02 10:01:11 -050066 Opt_subvol, Opt_nodatasum, Opt_nodatacow, Opt_max_extent,
Chris Mason21ad10c2008-01-09 09:23:21 -050067 Opt_alloc_start, Opt_nobarrier, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040068};
69
70static match_table_t tokens = {
71 {Opt_subvol, "subvol=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050072 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050073 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050074 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050075 {Opt_max_extent, "max_extent=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050076 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason95e05282007-08-29 09:11:44 -040077 {Opt_err, NULL}
78};
79
Chris Masonedbd8d42007-12-21 16:27:24 -050080u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050081{
Chris Masonedbd8d42007-12-21 16:27:24 -050082 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050083 int mult = 1;
84 char *end;
85 char last;
86
87 res = simple_strtoul(str, &end, 10);
88
89 last = end[0];
90 if (isalpha(last)) {
91 last = tolower(last);
92 switch (last) {
93 case 'g':
94 mult *= 1024;
95 case 'm':
96 mult *= 1024;
97 case 'k':
98 mult *= 1024;
99 }
100 res = res * mult;
101 }
102 return res;
103}
104
Chris Mason95e05282007-08-29 09:11:44 -0400105static int parse_options (char * options,
106 struct btrfs_root *root,
107 char **subvol_name)
108{
109 char * p;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500110 struct btrfs_fs_info *info = NULL;
Chris Mason95e05282007-08-29 09:11:44 -0400111 substring_t args[MAX_OPT_ARGS];
Chris Masonb6cda9b2007-12-14 15:30:32 -0500112
Chris Mason95e05282007-08-29 09:11:44 -0400113 if (!options)
114 return 1;
115
Chris Masonbe20aa92007-12-17 20:14:01 -0500116 /*
117 * strsep changes the string, duplicate it because parse_options
118 * gets called twice
119 */
120 options = kstrdup(options, GFP_NOFS);
121 if (!options)
122 return -ENOMEM;
123
124 if (root)
125 info = root->fs_info;
126
Chris Mason95e05282007-08-29 09:11:44 -0400127 while ((p = strsep (&options, ",")) != NULL) {
128 int token;
129 if (!*p)
130 continue;
131
132 token = match_token(p, tokens, args);
133 switch (token) {
134 case Opt_subvol:
Chris Masonbe20aa92007-12-17 20:14:01 -0500135 if (subvol_name) {
Chris Masonb6cda9b2007-12-14 15:30:32 -0500136 *subvol_name = match_strdup(&args[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500137 }
Chris Masonb6cda9b2007-12-14 15:30:32 -0500138 break;
139 case Opt_nodatasum:
Chris Masonbe20aa92007-12-17 20:14:01 -0500140 if (info) {
141 printk("btrfs: setting nodatacsum\n");
Chris Masonb6cda9b2007-12-14 15:30:32 -0500142 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500143 }
144 break;
145 case Opt_nodatacow:
146 if (info) {
147 printk("btrfs: setting nodatacow\n");
148 btrfs_set_opt(info->mount_opt, NODATACOW);
149 btrfs_set_opt(info->mount_opt, NODATASUM);
150 }
Chris Mason95e05282007-08-29 09:11:44 -0400151 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500152 case Opt_nobarrier:
153 if (info) {
154 printk("btrfs: turning off barriers\n");
155 btrfs_set_opt(info->mount_opt, NOBARRIER);
156 }
157 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500158 case Opt_max_extent:
159 if (info) {
160 char *num = match_strdup(&args[0]);
161 if (num) {
Chris Masonedbd8d42007-12-21 16:27:24 -0500162 info->max_extent =
163 btrfs_parse_size(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500164 kfree(num);
165
166 info->max_extent = max_t(u64,
167 info->max_extent,
168 root->sectorsize);
169 printk("btrfs: max_extent at %Lu\n",
170 info->max_extent);
171 }
172 }
173 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500174 case Opt_alloc_start:
175 if (info) {
176 char *num = match_strdup(&args[0]);
177 if (num) {
178 info->alloc_start =
179 btrfs_parse_size(num);
180 kfree(num);
181 printk("btrfs: allocations start at "
182 "%Lu\n", info->alloc_start);
183 }
184 }
185 break;
Chris Mason95e05282007-08-29 09:11:44 -0400186 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500187 break;
Chris Mason95e05282007-08-29 09:11:44 -0400188 }
189 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500190 kfree(options);
Chris Mason95e05282007-08-29 09:11:44 -0400191 return 1;
192}
193
Chris Mason2e635a22007-03-21 11:12:56 -0400194static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
195{
196 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400197 struct dentry * root_dentry;
198 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400199 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400200 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400201 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400202
203 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400204 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400205 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500206 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400207 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400208
Chris Mason0f7d52f2007-04-09 10:42:37 -0400209 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400210
Chris Mason39279cc2007-06-12 06:35:45 -0400211 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400212 printk("btrfs: open_ctree failed\n");
213 return -EIO;
214 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400215 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400216 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400217 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
218 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400219 bi = BTRFS_I(inode);
220 bi->location.objectid = inode->i_ino;
221 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400222 bi->root = tree_root;
Chris Masonb888db2b2007-08-27 16:49:44 -0400223
Chris Masond6e4a422007-04-06 15:37:36 -0400224 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
225
Chris Mason39279cc2007-06-12 06:35:45 -0400226 if (!inode) {
227 err = -ENOMEM;
228 goto fail_close;
229 }
Chris Masone20d96d2007-03-22 12:13:20 -0400230 if (inode->i_state & I_NEW) {
231 btrfs_read_locked_inode(inode);
232 unlock_new_inode(inode);
233 }
Chris Mason2e635a22007-03-21 11:12:56 -0400234
Chris Masone20d96d2007-03-22 12:13:20 -0400235 root_dentry = d_alloc_root(inode);
236 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400237 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400238 err = -ENOMEM;
239 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400240 }
Josef Bacik58176a92007-08-29 15:47:34 -0400241
Chris Masonb6cda9b2007-12-14 15:30:32 -0500242 parse_options((char *)data, tree_root, NULL);
243
Josef Bacik58176a92007-08-29 15:47:34 -0400244 /* this does the super kobj at the same time */
245 err = btrfs_sysfs_add_super(tree_root->fs_info);
246 if (err)
247 goto fail_close;
248
Chris Masone20d96d2007-03-22 12:13:20 -0400249 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400250 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400251 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400252
Chris Mason39279cc2007-06-12 06:35:45 -0400253fail_close:
254 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400255 return err;
256}
257
Chris Masond5719762007-03-23 10:01:08 -0400258static int btrfs_sync_fs(struct super_block *sb, int wait)
259{
260 struct btrfs_trans_handle *trans;
261 struct btrfs_root *root;
262 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400263 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400264
Chris Masond5719762007-03-23 10:01:08 -0400265 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400266 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400267 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400268 return 0;
269 }
Chris Masone9d0b132007-08-10 14:06:19 -0400270 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400271 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400272 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400273 trans = btrfs_start_transaction(root, 1);
274 ret = btrfs_commit_transaction(trans, root);
275 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400276 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400277 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400278}
279
Chris Masond561c022007-03-23 19:47:49 -0400280static void btrfs_write_super(struct super_block *sb)
281{
Chris Mason08607c12007-06-08 15:33:54 -0400282 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400283}
284
Yan4b82d6e2007-08-29 09:11:44 -0400285/*
286 * This is almost a copy of get_sb_bdev in fs/super.c.
287 * We need the local copy to allow direct mounting of
288 * subvolumes, but this could be easily integrated back
289 * into the generic version. --hch
290 */
291
292/* start copy & paste */
293static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400294{
Yan4b82d6e2007-08-29 09:11:44 -0400295 s->s_bdev = data;
296 s->s_dev = s->s_bdev->bd_dev;
297 return 0;
298}
299
300static int test_bdev_super(struct super_block *s, void *data)
301{
302 return (void *)s->s_bdev == data;
303}
304
305int btrfs_get_sb_bdev(struct file_system_type *fs_type,
306 int flags, const char *dev_name, void *data,
307 int (*fill_super)(struct super_block *, void *, int),
308 struct vfsmount *mnt, const char *subvol)
309{
310 struct block_device *bdev = NULL;
311 struct super_block *s;
312 struct dentry *root;
313 int error = 0;
314
315 bdev = open_bdev_excl(dev_name, flags, fs_type);
316 if (IS_ERR(bdev))
317 return PTR_ERR(bdev);
318
319 /*
320 * once the super is inserted into the list by sget, s_umount
321 * will protect the lockfs code from trying to start a snapshot
322 * while we are mounting
323 */
324 down(&bdev->bd_mount_sem);
325 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
326 up(&bdev->bd_mount_sem);
327 if (IS_ERR(s))
328 goto error_s;
329
330 if (s->s_root) {
331 if ((flags ^ s->s_flags) & MS_RDONLY) {
332 up_write(&s->s_umount);
333 deactivate_super(s);
334 error = -EBUSY;
335 goto error_bdev;
336 }
337
338 close_bdev_excl(bdev);
339 } else {
340 char b[BDEVNAME_SIZE];
341
342 s->s_flags = flags;
343 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
344 sb_set_blocksize(s, block_size(bdev));
345 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
346 if (error) {
347 up_write(&s->s_umount);
348 deactivate_super(s);
349 goto error;
350 }
351
352 s->s_flags |= MS_ACTIVE;
353 }
354
355 if (subvol) {
356 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
357 if (IS_ERR(root)) {
358 up_write(&s->s_umount);
359 deactivate_super(s);
360 error = PTR_ERR(root);
361 goto error;
362 }
363 if (!root->d_inode) {
364 dput(root);
365 up_write(&s->s_umount);
366 deactivate_super(s);
367 error = -ENXIO;
368 goto error;
369 }
370 } else {
371 root = dget(s->s_root);
372 }
373
374 mnt->mnt_sb = s;
375 mnt->mnt_root = root;
376 return 0;
377
378error_s:
379 error = PTR_ERR(s);
380error_bdev:
381 close_bdev_excl(bdev);
382error:
383 return error;
384}
385/* end copy & paste */
386
387static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400388 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400389{
390 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400391 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400392
Chris Mason95e05282007-08-29 09:11:44 -0400393 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400394 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
395 btrfs_fill_super, mnt,
396 subvol_name ? subvol_name : "default");
Chris Masonc59f8952007-12-17 20:14:04 -0500397 if (subvol_name)
398 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400399 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400400}
401
Chris Mason8fd17792007-04-19 21:01:03 -0400402static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
403{
404 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400405 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400406 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400407
408 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400409 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
410 buf->f_bfree = buf->f_blocks -
411 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400412 buf->f_bavail = buf->f_bfree;
413 buf->f_bsize = dentry->d_sb->s_blocksize;
414 buf->f_type = BTRFS_SUPER_MAGIC;
415 return 0;
416}
Chris Masonb5133862007-04-24 11:52:22 -0400417
Chris Mason2e635a22007-03-21 11:12:56 -0400418static struct file_system_type btrfs_fs_type = {
419 .owner = THIS_MODULE,
420 .name = "btrfs",
421 .get_sb = btrfs_get_sb,
422 .kill_sb = kill_block_super,
423 .fs_flags = FS_REQUIRES_DEV,
424};
425
Chris Masone20d96d2007-03-22 12:13:20 -0400426static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400427 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400428 .put_super = btrfs_put_super,
429 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400430 .write_super = btrfs_write_super,
431 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400432 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400433 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400434 .alloc_inode = btrfs_alloc_inode,
435 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400436 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400437};
438
Chris Mason2e635a22007-03-21 11:12:56 -0400439static int __init init_btrfs_fs(void)
440{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400441 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400442
443 err = btrfs_init_sysfs();
444 if (err)
445 return err;
446
Chris Mason08607c12007-06-08 15:33:54 -0400447 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400448 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400449 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500450 goto free_transaction_sys;
451 err = extent_map_init();
452 if (err)
453 goto free_cachep;
454
455 err = register_filesystem(&btrfs_fs_type);
456 if (err)
457 goto free_extent_map;
458 return 0;
459
460free_extent_map:
461 extent_map_exit();
462free_cachep:
463 btrfs_destroy_cachep();
464free_transaction_sys:
465 btrfs_exit_transaction_sys();
466 btrfs_exit_sysfs();
467 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400468}
469
470static void __exit exit_btrfs_fs(void)
471{
Chris Mason08607c12007-06-08 15:33:54 -0400472 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400473 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400474 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400475 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400476 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400477}
478
479module_init(init_btrfs_fs)
480module_exit(exit_btrfs_fs)
481
482MODULE_LICENSE("GPL");