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