blob: b6982f0133cfbf8ddb966164044f69230fe97f8d [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 Masone18e4802008-01-18 10:54:22 -050067 Opt_alloc_start, Opt_nobarrier, Opt_ssd, 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 Masone18e4802008-01-18 10:54:22 -050077 {Opt_ssd, "ssd"},
Chris Mason95e05282007-08-29 09:11:44 -040078 {Opt_err, NULL}
79};
80
Chris Masonedbd8d42007-12-21 16:27:24 -050081u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050082{
Chris Masonedbd8d42007-12-21 16:27:24 -050083 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050084 int mult = 1;
85 char *end;
86 char last;
87
88 res = simple_strtoul(str, &end, 10);
89
90 last = end[0];
91 if (isalpha(last)) {
92 last = tolower(last);
93 switch (last) {
94 case 'g':
95 mult *= 1024;
96 case 'm':
97 mult *= 1024;
98 case 'k':
99 mult *= 1024;
100 }
101 res = res * mult;
102 }
103 return res;
104}
105
Chris Mason95e05282007-08-29 09:11:44 -0400106static int parse_options (char * options,
107 struct btrfs_root *root,
108 char **subvol_name)
109{
110 char * p;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500111 struct btrfs_fs_info *info = NULL;
Chris Mason95e05282007-08-29 09:11:44 -0400112 substring_t args[MAX_OPT_ARGS];
Chris Masonb6cda9b2007-12-14 15:30:32 -0500113
Chris Mason95e05282007-08-29 09:11:44 -0400114 if (!options)
115 return 1;
116
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 /*
118 * strsep changes the string, duplicate it because parse_options
119 * gets called twice
120 */
121 options = kstrdup(options, GFP_NOFS);
122 if (!options)
123 return -ENOMEM;
124
125 if (root)
126 info = root->fs_info;
127
Chris Mason95e05282007-08-29 09:11:44 -0400128 while ((p = strsep (&options, ",")) != NULL) {
129 int token;
130 if (!*p)
131 continue;
132
133 token = match_token(p, tokens, args);
134 switch (token) {
135 case Opt_subvol:
Chris Masonbe20aa92007-12-17 20:14:01 -0500136 if (subvol_name) {
Chris Masonb6cda9b2007-12-14 15:30:32 -0500137 *subvol_name = match_strdup(&args[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500138 }
Chris Masonb6cda9b2007-12-14 15:30:32 -0500139 break;
140 case Opt_nodatasum:
Chris Masonbe20aa92007-12-17 20:14:01 -0500141 if (info) {
142 printk("btrfs: setting nodatacsum\n");
Chris Masonb6cda9b2007-12-14 15:30:32 -0500143 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500144 }
145 break;
146 case Opt_nodatacow:
147 if (info) {
148 printk("btrfs: setting nodatacow\n");
149 btrfs_set_opt(info->mount_opt, NODATACOW);
150 btrfs_set_opt(info->mount_opt, NODATASUM);
151 }
Chris Mason95e05282007-08-29 09:11:44 -0400152 break;
Chris Masone18e4802008-01-18 10:54:22 -0500153 case Opt_ssd:
154 if (info) {
155 printk("btrfs: use ssd allocation scheme\n");
156 btrfs_set_opt(info->mount_opt, SSD);
157 }
158 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500159 case Opt_nobarrier:
160 if (info) {
161 printk("btrfs: turning off barriers\n");
162 btrfs_set_opt(info->mount_opt, NOBARRIER);
163 }
164 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500165 case Opt_max_extent:
166 if (info) {
167 char *num = match_strdup(&args[0]);
168 if (num) {
Chris Masonedbd8d42007-12-21 16:27:24 -0500169 info->max_extent =
170 btrfs_parse_size(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500171 kfree(num);
172
173 info->max_extent = max_t(u64,
174 info->max_extent,
175 root->sectorsize);
176 printk("btrfs: max_extent at %Lu\n",
177 info->max_extent);
178 }
179 }
180 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500181 case Opt_alloc_start:
182 if (info) {
183 char *num = match_strdup(&args[0]);
184 if (num) {
185 info->alloc_start =
186 btrfs_parse_size(num);
187 kfree(num);
188 printk("btrfs: allocations start at "
189 "%Lu\n", info->alloc_start);
190 }
191 }
192 break;
Chris Mason95e05282007-08-29 09:11:44 -0400193 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500194 break;
Chris Mason95e05282007-08-29 09:11:44 -0400195 }
196 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500197 kfree(options);
Chris Mason95e05282007-08-29 09:11:44 -0400198 return 1;
199}
200
Chris Mason2e635a22007-03-21 11:12:56 -0400201static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
202{
203 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400204 struct dentry * root_dentry;
205 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400206 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400207 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400208 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400209
210 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400211 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400212 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500213 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400214 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400215
Chris Mason0f7d52f2007-04-09 10:42:37 -0400216 tree_root = open_ctree(sb);
Chris Masond98237b2007-03-28 13:57:48 -0400217
Chris Mason39279cc2007-06-12 06:35:45 -0400218 if (!tree_root || IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400219 printk("btrfs: open_ctree failed\n");
220 return -EIO;
221 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400222 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400223 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400224 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
225 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400226 bi = BTRFS_I(inode);
227 bi->location.objectid = inode->i_ino;
228 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400229 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400230
Chris Masond6e4a422007-04-06 15:37:36 -0400231 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
232
Chris Mason39279cc2007-06-12 06:35:45 -0400233 if (!inode) {
234 err = -ENOMEM;
235 goto fail_close;
236 }
Chris Masone20d96d2007-03-22 12:13:20 -0400237 if (inode->i_state & I_NEW) {
238 btrfs_read_locked_inode(inode);
239 unlock_new_inode(inode);
240 }
Chris Mason2e635a22007-03-21 11:12:56 -0400241
Chris Masone20d96d2007-03-22 12:13:20 -0400242 root_dentry = d_alloc_root(inode);
243 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400244 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400245 err = -ENOMEM;
246 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400247 }
Josef Bacik58176a92007-08-29 15:47:34 -0400248
Chris Masonb6cda9b2007-12-14 15:30:32 -0500249 parse_options((char *)data, tree_root, NULL);
250
Josef Bacik58176a92007-08-29 15:47:34 -0400251 /* this does the super kobj at the same time */
252 err = btrfs_sysfs_add_super(tree_root->fs_info);
253 if (err)
254 goto fail_close;
255
Chris Masone20d96d2007-03-22 12:13:20 -0400256 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400257 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason2e635a22007-03-21 11:12:56 -0400258 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400259
Chris Mason39279cc2007-06-12 06:35:45 -0400260fail_close:
261 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400262 return err;
263}
264
Chris Masond5719762007-03-23 10:01:08 -0400265static int btrfs_sync_fs(struct super_block *sb, int wait)
266{
267 struct btrfs_trans_handle *trans;
268 struct btrfs_root *root;
269 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400270 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400271
Chris Masond5719762007-03-23 10:01:08 -0400272 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400273 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400274 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400275 return 0;
276 }
Chris Masone9d0b132007-08-10 14:06:19 -0400277 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400278 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400279 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400280 trans = btrfs_start_transaction(root, 1);
281 ret = btrfs_commit_transaction(trans, root);
282 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400283 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400284 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400285}
286
Chris Masond561c022007-03-23 19:47:49 -0400287static void btrfs_write_super(struct super_block *sb)
288{
Chris Mason08607c12007-06-08 15:33:54 -0400289 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400290}
291
Yan4b82d6e2007-08-29 09:11:44 -0400292/*
293 * This is almost a copy of get_sb_bdev in fs/super.c.
294 * We need the local copy to allow direct mounting of
295 * subvolumes, but this could be easily integrated back
296 * into the generic version. --hch
297 */
298
299/* start copy & paste */
300static int set_bdev_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400301{
Yan4b82d6e2007-08-29 09:11:44 -0400302 s->s_bdev = data;
303 s->s_dev = s->s_bdev->bd_dev;
304 return 0;
305}
306
307static int test_bdev_super(struct super_block *s, void *data)
308{
309 return (void *)s->s_bdev == data;
310}
311
312int btrfs_get_sb_bdev(struct file_system_type *fs_type,
313 int flags, const char *dev_name, void *data,
314 int (*fill_super)(struct super_block *, void *, int),
315 struct vfsmount *mnt, const char *subvol)
316{
317 struct block_device *bdev = NULL;
318 struct super_block *s;
319 struct dentry *root;
320 int error = 0;
321
322 bdev = open_bdev_excl(dev_name, flags, fs_type);
323 if (IS_ERR(bdev))
324 return PTR_ERR(bdev);
325
326 /*
327 * once the super is inserted into the list by sget, s_umount
328 * will protect the lockfs code from trying to start a snapshot
329 * while we are mounting
330 */
331 down(&bdev->bd_mount_sem);
332 s = sget(fs_type, test_bdev_super, set_bdev_super, bdev);
333 up(&bdev->bd_mount_sem);
334 if (IS_ERR(s))
335 goto error_s;
336
337 if (s->s_root) {
338 if ((flags ^ s->s_flags) & MS_RDONLY) {
339 up_write(&s->s_umount);
340 deactivate_super(s);
341 error = -EBUSY;
342 goto error_bdev;
343 }
344
345 close_bdev_excl(bdev);
346 } else {
347 char b[BDEVNAME_SIZE];
348
349 s->s_flags = flags;
350 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
351 sb_set_blocksize(s, block_size(bdev));
352 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0);
353 if (error) {
354 up_write(&s->s_umount);
355 deactivate_super(s);
356 goto error;
357 }
358
359 s->s_flags |= MS_ACTIVE;
360 }
361
362 if (subvol) {
363 root = lookup_one_len(subvol, s->s_root, strlen(subvol));
364 if (IS_ERR(root)) {
365 up_write(&s->s_umount);
366 deactivate_super(s);
367 error = PTR_ERR(root);
368 goto error;
369 }
370 if (!root->d_inode) {
371 dput(root);
372 up_write(&s->s_umount);
373 deactivate_super(s);
374 error = -ENXIO;
375 goto error;
376 }
377 } else {
378 root = dget(s->s_root);
379 }
380
381 mnt->mnt_sb = s;
382 mnt->mnt_root = root;
383 return 0;
384
385error_s:
386 error = PTR_ERR(s);
387error_bdev:
388 close_bdev_excl(bdev);
389error:
390 return error;
391}
392/* end copy & paste */
393
394static int btrfs_get_sb(struct file_system_type *fs_type,
Chris Mason95e05282007-08-29 09:11:44 -0400395 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400396{
397 int ret;
Chris Mason95e05282007-08-29 09:11:44 -0400398 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400399
Chris Mason95e05282007-08-29 09:11:44 -0400400 parse_options((char *)data, NULL, &subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400401 ret = btrfs_get_sb_bdev(fs_type, flags, dev_name, data,
402 btrfs_fill_super, mnt,
403 subvol_name ? subvol_name : "default");
Chris Masonc59f8952007-12-17 20:14:04 -0500404 if (subvol_name)
405 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400406 return ret;
Chris Mason2e635a22007-03-21 11:12:56 -0400407}
408
Chris Mason8fd17792007-04-19 21:01:03 -0400409static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
410{
411 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400412 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400413 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400414
415 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400416 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
417 buf->f_bfree = buf->f_blocks -
418 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400419 buf->f_bavail = buf->f_bfree;
420 buf->f_bsize = dentry->d_sb->s_blocksize;
421 buf->f_type = BTRFS_SUPER_MAGIC;
422 return 0;
423}
Chris Masonb5133862007-04-24 11:52:22 -0400424
Chris Mason2e635a22007-03-21 11:12:56 -0400425static struct file_system_type btrfs_fs_type = {
426 .owner = THIS_MODULE,
427 .name = "btrfs",
428 .get_sb = btrfs_get_sb,
429 .kill_sb = kill_block_super,
430 .fs_flags = FS_REQUIRES_DEV,
431};
432
Chris Masone20d96d2007-03-22 12:13:20 -0400433static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400434 .delete_inode = btrfs_delete_inode,
Chris Mason2da98f02008-01-16 11:44:43 -0500435 .put_inode = btrfs_put_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400436 .put_super = btrfs_put_super,
437 .read_inode = btrfs_read_locked_inode,
Chris Masond5719762007-03-23 10:01:08 -0400438 .write_super = btrfs_write_super,
439 .sync_fs = btrfs_sync_fs,
Chris Mason4730a4b2007-03-26 12:00:39 -0400440 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400441 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400442 .alloc_inode = btrfs_alloc_inode,
443 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400444 .statfs = btrfs_statfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400445};
446
Chris Mason2e635a22007-03-21 11:12:56 -0400447static int __init init_btrfs_fs(void)
448{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400449 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400450
451 err = btrfs_init_sysfs();
452 if (err)
453 return err;
454
Chris Mason08607c12007-06-08 15:33:54 -0400455 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400456 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400457 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500458 goto free_transaction_sys;
459 err = extent_map_init();
460 if (err)
461 goto free_cachep;
462
463 err = register_filesystem(&btrfs_fs_type);
464 if (err)
465 goto free_extent_map;
466 return 0;
467
468free_extent_map:
469 extent_map_exit();
470free_cachep:
471 btrfs_destroy_cachep();
472free_transaction_sys:
473 btrfs_exit_transaction_sys();
474 btrfs_exit_sysfs();
475 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400476}
477
478static void __exit exit_btrfs_fs(void)
479{
Chris Mason08607c12007-06-08 15:33:54 -0400480 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400481 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400482 extent_map_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400483 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400484 btrfs_exit_sysfs();
Chris Mason2e635a22007-03-21 11:12:56 -0400485}
486
487module_init(init_btrfs_fs)
488module_exit(exit_btrfs_fs)
489
490MODULE_LICENSE("GPL");