Btrfs: fix leaking block group on balance
[deliverable/linux.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 */
97288f2c 245static int btrfs_parse_early_options(const char *options, fmode_t flags,
43e570b0
CH
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;
97288f2c 421 fmode_t mode = FMODE_READ;
4b82d6e4
Y
422 int error = 0;
423
97288f2c
CH
424 if (!(flags & MS_RDONLY))
425 mode |= FMODE_WRITE;
426
427 error = btrfs_parse_early_options(data, mode, fs_type,
43e570b0 428 &subvol_name, &fs_devices);
edf24abe
CH
429 if (error)
430 goto error;
431
97288f2c 432 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
8a4b83cc 433 if (error)
edf24abe 434 goto error_free_subvol_name;
4b82d6e4 435
97288f2c 436 error = btrfs_open_devices(fs_devices, mode, fs_type);
8a4b83cc 437 if (error)
edf24abe 438 goto error_free_subvol_name;
8a4b83cc 439
2b82032c
YZ
440 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
441 error = -EACCES;
442 goto error_close_devices;
443 }
444
dfe25020 445 bdev = fs_devices->latest_bdev;
a061fc8d 446 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
4b82d6e4
Y
447 if (IS_ERR(s))
448 goto error_s;
449
450 if (s->s_root) {
451 if ((flags ^ s->s_flags) & MS_RDONLY) {
452 up_write(&s->s_umount);
453 deactivate_super(s);
454 error = -EBUSY;
c146afad 455 goto error_close_devices;
4b82d6e4
Y
456 }
457
2b82032c 458 btrfs_close_devices(fs_devices);
4b82d6e4
Y
459 } else {
460 char b[BDEVNAME_SIZE];
461
462 s->s_flags = flags;
463 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
464 error = btrfs_fill_super(s, fs_devices, data,
465 flags & MS_SILENT ? 1 : 0);
4b82d6e4
Y
466 if (error) {
467 up_write(&s->s_umount);
468 deactivate_super(s);
469 goto error;
470 }
471
788f20eb 472 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
473 s->s_flags |= MS_ACTIVE;
474 }
475
76fcef19
DW
476 if (!strcmp(subvol_name, "."))
477 root = dget(s->s_root);
478 else {
479 mutex_lock(&s->s_root->d_inode->i_mutex);
480 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
481 mutex_unlock(&s->s_root->d_inode->i_mutex);
482 if (IS_ERR(root)) {
483 up_write(&s->s_umount);
484 deactivate_super(s);
485 error = PTR_ERR(root);
486 goto error;
487 }
488 if (!root->d_inode) {
489 dput(root);
490 up_write(&s->s_umount);
491 deactivate_super(s);
492 error = -ENXIO;
493 goto error;
494 }
4b82d6e4
Y
495 }
496
497 mnt->mnt_sb = s;
498 mnt->mnt_root = root;
edf24abe
CH
499
500 kfree(subvol_name);
4b82d6e4
Y
501 return 0;
502
503error_s:
504 error = PTR_ERR(s);
c146afad 505error_close_devices:
8a4b83cc 506 btrfs_close_devices(fs_devices);
edf24abe
CH
507error_free_subvol_name:
508 kfree(subvol_name);
4b82d6e4
Y
509error:
510 return error;
511}
2e635a27 512
c146afad
YZ
513static int btrfs_remount(struct super_block *sb, int *flags, char *data)
514{
515 struct btrfs_root *root = btrfs_sb(sb);
516 int ret;
517
518 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
519 return 0;
520
521 if (*flags & MS_RDONLY) {
522 sb->s_flags |= MS_RDONLY;
523
524 ret = btrfs_commit_super(root);
525 WARN_ON(ret);
526 } else {
2b82032c
YZ
527 if (root->fs_info->fs_devices->rw_devices == 0)
528 return -EACCES;
529
c146afad
YZ
530 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
531 return -EINVAL;
532
533 ret = btrfs_cleanup_reloc_trees(root);
534 WARN_ON(ret);
535
536 ret = btrfs_cleanup_fs_roots(root->fs_info);
537 WARN_ON(ret);
538
539 sb->s_flags &= ~MS_RDONLY;
540 }
541
542 return 0;
543}
544
8fd17795
CM
545static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
546{
547 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 548 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
db94535d 549 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 550 __be32 *fsid = (__be32 *)root->fs_info->fsid;
8fd17795
CM
551
552 buf->f_namelen = BTRFS_NAME_LEN;
db94535d
CM
553 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
554 buf->f_bfree = buf->f_blocks -
555 (btrfs_super_bytes_used(disk_super) >> bits);
8fd17795
CM
556 buf->f_bavail = buf->f_bfree;
557 buf->f_bsize = dentry->d_sb->s_blocksize;
558 buf->f_type = BTRFS_SUPER_MAGIC;
9d03632e
DW
559 /* We treat it as constant endianness (it doesn't matter _which_)
560 because we want the fsid to come out the same whether mounted
561 on a big-endian or little-endian host */
562 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
563 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
564 /* Mask in the root object ID too, to disambiguate subvols */
565 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
566 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
567
8fd17795
CM
568 return 0;
569}
b5133862 570
2e635a27
CM
571static struct file_system_type btrfs_fs_type = {
572 .owner = THIS_MODULE,
573 .name = "btrfs",
574 .get_sb = btrfs_get_sb,
a061fc8d 575 .kill_sb = kill_anon_super,
2e635a27
CM
576 .fs_flags = FS_REQUIRES_DEV,
577};
a9218f6b 578
d352ac68
CM
579/*
580 * used by btrfsctl to scan devices when no FS is mounted
581 */
8a4b83cc
CM
582static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
583 unsigned long arg)
584{
585 struct btrfs_ioctl_vol_args *vol;
586 struct btrfs_fs_devices *fs_devices;
f819d837 587 int ret = 0;
8a4b83cc
CM
588 int len;
589
590 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
591 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
592 ret = -EFAULT;
593 goto out;
594 }
595 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
596 switch (cmd) {
597 case BTRFS_IOC_SCAN_DEV:
97288f2c 598 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
599 &btrfs_fs_type, &fs_devices);
600 break;
601 }
602out:
603 kfree(vol);
f819d837 604 return ret;
8a4b83cc
CM
605}
606
ed0dab6b
Y
607static void btrfs_write_super_lockfs(struct super_block *sb)
608{
609 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
610 mutex_lock(&root->fs_info->transaction_kthread_mutex);
611 mutex_lock(&root->fs_info->cleaner_mutex);
ed0dab6b
Y
612}
613
614static void btrfs_unlockfs(struct super_block *sb)
615{
616 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
617 mutex_unlock(&root->fs_info->cleaner_mutex);
618 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
ed0dab6b 619}
2e635a27 620
e20d96d6 621static struct super_operations btrfs_super_ops = {
134e9731 622 .delete_inode = btrfs_delete_inode,
e20d96d6 623 .put_super = btrfs_put_super,
d5719762
CM
624 .write_super = btrfs_write_super,
625 .sync_fs = btrfs_sync_fs,
6885f308 626 .show_options = generic_show_options,
4730a4bc 627 .write_inode = btrfs_write_inode,
b5133862 628 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
629 .alloc_inode = btrfs_alloc_inode,
630 .destroy_inode = btrfs_destroy_inode,
8fd17795 631 .statfs = btrfs_statfs,
c146afad 632 .remount_fs = btrfs_remount,
ed0dab6b
Y
633 .write_super_lockfs = btrfs_write_super_lockfs,
634 .unlockfs = btrfs_unlockfs,
e20d96d6 635};
a9218f6b
CM
636
637static const struct file_operations btrfs_ctl_fops = {
638 .unlocked_ioctl = btrfs_control_ioctl,
639 .compat_ioctl = btrfs_control_ioctl,
640 .owner = THIS_MODULE,
641};
642
643static struct miscdevice btrfs_misc = {
644 .minor = MISC_DYNAMIC_MINOR,
645 .name = "btrfs-control",
646 .fops = &btrfs_ctl_fops
647};
648
649static int btrfs_interface_init(void)
650{
651 return misc_register(&btrfs_misc);
652}
653
b2950863 654static void btrfs_interface_exit(void)
a9218f6b
CM
655{
656 if (misc_deregister(&btrfs_misc) < 0)
657 printk("misc_deregister failed for control device");
658}
659
2e635a27
CM
660static int __init init_btrfs_fs(void)
661{
2c90e5d6 662 int err;
58176a96
JB
663
664 err = btrfs_init_sysfs();
665 if (err)
666 return err;
667
39279cc3 668 err = btrfs_init_cachep();
2c90e5d6 669 if (err)
a74a4b97 670 goto free_sysfs;
d1310b2e
CM
671
672 err = extent_io_init();
2f4cbe64
WB
673 if (err)
674 goto free_cachep;
675
d1310b2e
CM
676 err = extent_map_init();
677 if (err)
678 goto free_extent_io;
679
a9218f6b 680 err = btrfs_interface_init();
2f4cbe64
WB
681 if (err)
682 goto free_extent_map;
c8b97818 683
a9218f6b
CM
684 err = register_filesystem(&btrfs_fs_type);
685 if (err)
686 goto unregister_ioctl;
b3c3da71
CM
687
688 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
689 return 0;
690
a9218f6b
CM
691unregister_ioctl:
692 btrfs_interface_exit();
2f4cbe64
WB
693free_extent_map:
694 extent_map_exit();
d1310b2e
CM
695free_extent_io:
696 extent_io_exit();
2f4cbe64
WB
697free_cachep:
698 btrfs_destroy_cachep();
a74a4b97 699free_sysfs:
2f4cbe64
WB
700 btrfs_exit_sysfs();
701 return err;
2e635a27
CM
702}
703
704static void __exit exit_btrfs_fs(void)
705{
39279cc3 706 btrfs_destroy_cachep();
a52d9a80 707 extent_map_exit();
d1310b2e 708 extent_io_exit();
a9218f6b 709 btrfs_interface_exit();
2e635a27 710 unregister_filesystem(&btrfs_fs_type);
58176a96 711 btrfs_exit_sysfs();
8a4b83cc 712 btrfs_cleanup_fs_uuids();
c8b97818 713 btrfs_zlib_exit();
2e635a27
CM
714}
715
716module_init(init_btrfs_fs)
717module_exit(exit_btrfs_fs)
718
719MODULE_LICENSE("GPL");
This page took 0.160471 seconds and 5 git commands to generate.