Btrfs: use RCU instead of a spinlock to protect the root node
[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>
a9572a15 27#include <linux/seq_file.h>
2e635a27 28#include <linux/string.h>
2e635a27 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>
1bcbf313 40#include <linux/magic.h>
5a0e3ad6 41#include <linux/slab.h>
4b4e25f2 42#include "compat.h"
2e635a27 43#include "ctree.h"
e20d96d6 44#include "disk-io.h"
d5719762 45#include "transaction.h"
2c90e5d6 46#include "btrfs_inode.h"
c5739bba 47#include "ioctl.h"
3a686375 48#include "print-tree.h"
5103e947 49#include "xattr.h"
8a4b83cc 50#include "volumes.h"
b3c3da71 51#include "version.h"
be6e8dc0 52#include "export.h"
c8b97818 53#include "compression.h"
2e635a27 54
b87221de 55static const struct super_operations btrfs_super_ops;
75dfe396 56
acce952b 57static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
58 char nbuf[16])
59{
60 char *errstr = NULL;
61
62 switch (errno) {
63 case -EIO:
64 errstr = "IO failure";
65 break;
66 case -ENOMEM:
67 errstr = "Out of memory";
68 break;
69 case -EROFS:
70 errstr = "Readonly filesystem";
71 break;
72 default:
73 if (nbuf) {
74 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
75 errstr = nbuf;
76 }
77 break;
78 }
79
80 return errstr;
81}
82
83static void __save_error_info(struct btrfs_fs_info *fs_info)
84{
85 /*
86 * today we only save the error info into ram. Long term we'll
87 * also send it down to the disk
88 */
89 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
90}
91
92/* NOTE:
93 * We move write_super stuff at umount in order to avoid deadlock
94 * for umount hold all lock.
95 */
96static void save_error_info(struct btrfs_fs_info *fs_info)
97{
98 __save_error_info(fs_info);
99}
100
101/* btrfs handle error by forcing the filesystem readonly */
102static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
103{
104 struct super_block *sb = fs_info->sb;
105
106 if (sb->s_flags & MS_RDONLY)
107 return;
108
109 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
110 sb->s_flags |= MS_RDONLY;
111 printk(KERN_INFO "btrfs is forced readonly\n");
112 }
113}
114
115/*
116 * __btrfs_std_error decodes expected errors from the caller and
117 * invokes the approciate error response.
118 */
119void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
120 unsigned int line, int errno)
121{
122 struct super_block *sb = fs_info->sb;
123 char nbuf[16];
124 const char *errstr;
125
126 /*
127 * Special case: if the error is EROFS, and we're already
128 * under MS_RDONLY, then it is safe here.
129 */
130 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
131 return;
132
133 errstr = btrfs_decode_error(fs_info, errno, nbuf);
134 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
135 sb->s_id, function, line, errstr);
136 save_error_info(fs_info);
137
138 btrfs_handle_error(fs_info);
139}
140
d397712b 141static void btrfs_put_super(struct super_block *sb)
b18c6685 142{
39279cc3 143 struct btrfs_root *root = btrfs_sb(sb);
b18c6685 144 int ret;
b18c6685 145
39279cc3 146 ret = close_ctree(root);
39279cc3 147 sb->s_fs_info = NULL;
559af821
AK
148
149 (void)ret; /* FIXME: need to fix VFS to return error? */
75dfe396
CM
150}
151
95e05289 152enum {
73f73415 153 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
287a0ab9
JB
154 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
155 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
261507a0
LZ
156 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
157 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
91435650
CM
158 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
159 Opt_enospc_debug, Opt_err,
95e05289
CM
160};
161
162static match_table_t tokens = {
dfe25020 163 {Opt_degraded, "degraded"},
95e05289 164 {Opt_subvol, "subvol=%s"},
73f73415 165 {Opt_subvolid, "subvolid=%d"},
43e570b0 166 {Opt_device, "device=%s"},
b6cda9bc 167 {Opt_nodatasum, "nodatasum"},
be20aa9d 168 {Opt_nodatacow, "nodatacow"},
21ad10cf 169 {Opt_nobarrier, "nobarrier"},
6f568d35 170 {Opt_max_inline, "max_inline=%s"},
8f662a76 171 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 172 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 173 {Opt_compress, "compress"},
261507a0 174 {Opt_compress_type, "compress=%s"},
a555f810 175 {Opt_compress_force, "compress-force"},
261507a0 176 {Opt_compress_force_type, "compress-force=%s"},
e18e4809 177 {Opt_ssd, "ssd"},
451d7585 178 {Opt_ssd_spread, "ssd_spread"},
3b30c22f 179 {Opt_nossd, "nossd"},
33268eaf 180 {Opt_noacl, "noacl"},
3a5e1404 181 {Opt_notreelog, "notreelog"},
dccae999 182 {Opt_flushoncommit, "flushoncommit"},
97e728d4 183 {Opt_ratio, "metadata_ratio=%d"},
e244a0ae 184 {Opt_discard, "discard"},
0af3d00b 185 {Opt_space_cache, "space_cache"},
88c2ba3b 186 {Opt_clear_cache, "clear_cache"},
4260f7c7 187 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
91435650 188 {Opt_enospc_debug, "enospc_debug"},
33268eaf 189 {Opt_err, NULL},
95e05289
CM
190};
191
edf24abe
CH
192/*
193 * Regular mount options parser. Everything that is needed only when
194 * reading in a new superblock is parsed here.
195 */
196int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 197{
edf24abe 198 struct btrfs_fs_info *info = root->fs_info;
95e05289 199 substring_t args[MAX_OPT_ARGS];
da495ecc 200 char *p, *num, *orig;
4543df7e 201 int intarg;
a7a3f7ca 202 int ret = 0;
261507a0
LZ
203 char *compress_type;
204 bool compress_force = false;
b6cda9bc 205
95e05289 206 if (!options)
edf24abe 207 return 0;
95e05289 208
be20aa9d
CM
209 /*
210 * strsep changes the string, duplicate it because parse_options
211 * gets called twice
212 */
213 options = kstrdup(options, GFP_NOFS);
214 if (!options)
215 return -ENOMEM;
216
da495ecc 217 orig = options;
be20aa9d 218
edf24abe 219 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
220 int token;
221 if (!*p)
222 continue;
223
224 token = match_token(p, tokens, args);
225 switch (token) {
dfe25020 226 case Opt_degraded:
edf24abe
CH
227 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
228 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 229 break;
95e05289 230 case Opt_subvol:
73f73415 231 case Opt_subvolid:
43e570b0 232 case Opt_device:
edf24abe 233 /*
43e570b0 234 * These are parsed by btrfs_parse_early_options
edf24abe
CH
235 * and can be happily ignored here.
236 */
b6cda9bc
CM
237 break;
238 case Opt_nodatasum:
067c28ad 239 printk(KERN_INFO "btrfs: setting nodatasum\n");
edf24abe 240 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
241 break;
242 case Opt_nodatacow:
edf24abe
CH
243 printk(KERN_INFO "btrfs: setting nodatacow\n");
244 btrfs_set_opt(info->mount_opt, NODATACOW);
245 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 246 break;
a555f810 247 case Opt_compress_force:
261507a0
LZ
248 case Opt_compress_force_type:
249 compress_force = true;
250 case Opt_compress:
251 case Opt_compress_type:
252 if (token == Opt_compress ||
253 token == Opt_compress_force ||
254 strcmp(args[0].from, "zlib") == 0) {
255 compress_type = "zlib";
256 info->compress_type = BTRFS_COMPRESS_ZLIB;
a6fa6fae
LZ
257 } else if (strcmp(args[0].from, "lzo") == 0) {
258 compress_type = "lzo";
259 info->compress_type = BTRFS_COMPRESS_LZO;
261507a0
LZ
260 } else {
261 ret = -EINVAL;
262 goto out;
263 }
264
a555f810 265 btrfs_set_opt(info->mount_opt, COMPRESS);
261507a0
LZ
266 if (compress_force) {
267 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
268 pr_info("btrfs: force %s compression\n",
269 compress_type);
270 } else
271 pr_info("btrfs: use %s compression\n",
272 compress_type);
a555f810 273 break;
e18e4809 274 case Opt_ssd:
edf24abe
CH
275 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
276 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 277 break;
451d7585
CM
278 case Opt_ssd_spread:
279 printk(KERN_INFO "btrfs: use spread ssd "
280 "allocation scheme\n");
281 btrfs_set_opt(info->mount_opt, SSD);
282 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
283 break;
3b30c22f 284 case Opt_nossd:
451d7585
CM
285 printk(KERN_INFO "btrfs: not using ssd allocation "
286 "scheme\n");
c289811c 287 btrfs_set_opt(info->mount_opt, NOSSD);
3b30c22f 288 btrfs_clear_opt(info->mount_opt, SSD);
451d7585 289 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
3b30c22f 290 break;
21ad10cf 291 case Opt_nobarrier:
edf24abe
CH
292 printk(KERN_INFO "btrfs: turning off barriers\n");
293 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 294 break;
4543df7e
CM
295 case Opt_thread_pool:
296 intarg = 0;
297 match_int(&args[0], &intarg);
298 if (intarg) {
299 info->thread_pool_size = intarg;
300 printk(KERN_INFO "btrfs: thread pool %d\n",
301 info->thread_pool_size);
302 }
303 break;
6f568d35 304 case Opt_max_inline:
edf24abe
CH
305 num = match_strdup(&args[0]);
306 if (num) {
91748467 307 info->max_inline = memparse(num, NULL);
edf24abe
CH
308 kfree(num);
309
15ada040
CM
310 if (info->max_inline) {
311 info->max_inline = max_t(u64,
312 info->max_inline,
313 root->sectorsize);
314 }
edf24abe 315 printk(KERN_INFO "btrfs: max_inline at %llu\n",
21380931 316 (unsigned long long)info->max_inline);
6f568d35
CM
317 }
318 break;
8f662a76 319 case Opt_alloc_start:
edf24abe
CH
320 num = match_strdup(&args[0]);
321 if (num) {
91748467 322 info->alloc_start = memparse(num, NULL);
edf24abe
CH
323 kfree(num);
324 printk(KERN_INFO
325 "btrfs: allocations start at %llu\n",
21380931 326 (unsigned long long)info->alloc_start);
8f662a76
CM
327 }
328 break;
33268eaf
JB
329 case Opt_noacl:
330 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
331 break;
3a5e1404
SW
332 case Opt_notreelog:
333 printk(KERN_INFO "btrfs: disabling tree log\n");
334 btrfs_set_opt(info->mount_opt, NOTREELOG);
335 break;
dccae999
SW
336 case Opt_flushoncommit:
337 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
338 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
339 break;
97e728d4
JB
340 case Opt_ratio:
341 intarg = 0;
342 match_int(&args[0], &intarg);
343 if (intarg) {
344 info->metadata_ratio = intarg;
345 printk(KERN_INFO "btrfs: metadata ratio %d\n",
346 info->metadata_ratio);
347 }
348 break;
e244a0ae
CH
349 case Opt_discard:
350 btrfs_set_opt(info->mount_opt, DISCARD);
351 break;
0af3d00b
JB
352 case Opt_space_cache:
353 printk(KERN_INFO "btrfs: enabling disk space caching\n");
354 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
0de90876 355 break;
88c2ba3b
JB
356 case Opt_clear_cache:
357 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
358 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
0af3d00b 359 break;
4260f7c7
SW
360 case Opt_user_subvol_rm_allowed:
361 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
362 break;
91435650
CM
363 case Opt_enospc_debug:
364 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
365 break;
a7a3f7ca
SW
366 case Opt_err:
367 printk(KERN_INFO "btrfs: unrecognized mount option "
368 "'%s'\n", p);
369 ret = -EINVAL;
370 goto out;
95e05289 371 default:
be20aa9d 372 break;
95e05289
CM
373 }
374 }
a7a3f7ca 375out:
da495ecc 376 kfree(orig);
a7a3f7ca 377 return ret;
edf24abe
CH
378}
379
380/*
381 * Parse mount options that are required early in the mount process.
382 *
383 * All other options will be parsed on much later in the mount process and
384 * only when we need to allocate a new super block.
385 */
97288f2c 386static int btrfs_parse_early_options(const char *options, fmode_t flags,
73f73415 387 void *holder, char **subvol_name, u64 *subvol_objectid,
43e570b0 388 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
389{
390 substring_t args[MAX_OPT_ARGS];
3f3d0bc0 391 char *opts, *orig, *p;
edf24abe 392 int error = 0;
73f73415 393 int intarg;
edf24abe
CH
394
395 if (!options)
396 goto out;
397
398 /*
399 * strsep changes the string, duplicate it because parse_options
400 * gets called twice
401 */
402 opts = kstrdup(options, GFP_KERNEL);
403 if (!opts)
404 return -ENOMEM;
3f3d0bc0 405 orig = opts;
edf24abe
CH
406
407 while ((p = strsep(&opts, ",")) != NULL) {
408 int token;
409 if (!*p)
410 continue;
411
412 token = match_token(p, tokens, args);
413 switch (token) {
414 case Opt_subvol:
415 *subvol_name = match_strdup(&args[0]);
416 break;
73f73415
JB
417 case Opt_subvolid:
418 intarg = 0;
4849f01d
JB
419 error = match_int(&args[0], &intarg);
420 if (!error) {
421 /* we want the original fs_tree */
422 if (!intarg)
423 *subvol_objectid =
424 BTRFS_FS_TREE_OBJECTID;
425 else
426 *subvol_objectid = intarg;
427 }
73f73415 428 break;
43e570b0
CH
429 case Opt_device:
430 error = btrfs_scan_one_device(match_strdup(&args[0]),
431 flags, holder, fs_devices);
432 if (error)
433 goto out_free_opts;
434 break;
edf24abe
CH
435 default:
436 break;
437 }
438 }
439
43e570b0 440 out_free_opts:
3f3d0bc0 441 kfree(orig);
edf24abe
CH
442 out:
443 /*
444 * If no subvolume name is specified we use the default one. Allocate
3de4586c 445 * a copy of the string "." here so that code later in the
edf24abe
CH
446 * mount path doesn't care if it's the default volume or another one.
447 */
448 if (!*subvol_name) {
3de4586c 449 *subvol_name = kstrdup(".", GFP_KERNEL);
edf24abe
CH
450 if (!*subvol_name)
451 return -ENOMEM;
452 }
453 return error;
95e05289
CM
454}
455
73f73415
JB
456static struct dentry *get_default_root(struct super_block *sb,
457 u64 subvol_objectid)
458{
459 struct btrfs_root *root = sb->s_fs_info;
460 struct btrfs_root *new_root;
461 struct btrfs_dir_item *di;
462 struct btrfs_path *path;
463 struct btrfs_key location;
464 struct inode *inode;
465 struct dentry *dentry;
466 u64 dir_id;
467 int new = 0;
468
469 /*
470 * We have a specific subvol we want to mount, just setup location and
471 * go look up the root.
472 */
473 if (subvol_objectid) {
474 location.objectid = subvol_objectid;
475 location.type = BTRFS_ROOT_ITEM_KEY;
476 location.offset = (u64)-1;
477 goto find_root;
478 }
479
480 path = btrfs_alloc_path();
481 if (!path)
482 return ERR_PTR(-ENOMEM);
483 path->leave_spinning = 1;
484
485 /*
486 * Find the "default" dir item which points to the root item that we
487 * will mount by default if we haven't been given a specific subvolume
488 * to mount.
489 */
490 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
491 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
fb4f6f91
DC
492 if (IS_ERR(di))
493 return ERR_CAST(di);
73f73415
JB
494 if (!di) {
495 /*
496 * Ok the default dir item isn't there. This is weird since
497 * it's always been there, but don't freak out, just try and
498 * mount to root most subvolume.
499 */
500 btrfs_free_path(path);
501 dir_id = BTRFS_FIRST_FREE_OBJECTID;
502 new_root = root->fs_info->fs_root;
503 goto setup_root;
504 }
505
506 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
507 btrfs_free_path(path);
508
509find_root:
510 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
511 if (IS_ERR(new_root))
d0b678cb 512 return ERR_CAST(new_root);
73f73415
JB
513
514 if (btrfs_root_refs(&new_root->root_item) == 0)
515 return ERR_PTR(-ENOENT);
516
517 dir_id = btrfs_root_dirid(&new_root->root_item);
518setup_root:
519 location.objectid = dir_id;
520 location.type = BTRFS_INODE_ITEM_KEY;
521 location.offset = 0;
522
523 inode = btrfs_iget(sb, &location, new_root, &new);
4cbd1149
DC
524 if (IS_ERR(inode))
525 return ERR_CAST(inode);
73f73415
JB
526
527 /*
528 * If we're just mounting the root most subvol put the inode and return
529 * a reference to the dentry. We will have already gotten a reference
530 * to the inode in btrfs_fill_super so we're good to go.
531 */
532 if (!new && sb->s_root->d_inode == inode) {
533 iput(inode);
534 return dget(sb->s_root);
535 }
536
537 if (new) {
538 const struct qstr name = { .name = "/", .len = 1 };
539
540 /*
541 * New inode, we need to make the dentry a sibling of s_root so
542 * everything gets cleaned up properly on unmount.
543 */
544 dentry = d_alloc(sb->s_root, &name);
545 if (!dentry) {
546 iput(inode);
547 return ERR_PTR(-ENOMEM);
548 }
549 d_splice_alias(inode, dentry);
550 } else {
551 /*
552 * We found the inode in cache, just find a dentry for it and
553 * put the reference to the inode we just got.
554 */
555 dentry = d_find_alias(inode);
556 iput(inode);
557 }
558
559 return dentry;
560}
561
d397712b 562static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 563 struct btrfs_fs_devices *fs_devices,
d397712b 564 void *data, int silent)
75dfe396 565{
d397712b
CM
566 struct inode *inode;
567 struct dentry *root_dentry;
39279cc3 568 struct btrfs_root *tree_root;
5d4f98a2 569 struct btrfs_key key;
39279cc3 570 int err;
a429e513 571
39279cc3
CM
572 sb->s_maxbytes = MAX_LFS_FILESIZE;
573 sb->s_magic = BTRFS_SUPER_MAGIC;
574 sb->s_op = &btrfs_super_ops;
af53d29a 575 sb->s_d_op = &btrfs_dentry_operations;
be6e8dc0 576 sb->s_export_op = &btrfs_export_ops;
5103e947 577 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 578 sb->s_time_gran = 1;
0eda294d 579#ifdef CONFIG_BTRFS_FS_POSIX_ACL
33268eaf 580 sb->s_flags |= MS_POSIXACL;
49cf6f45 581#endif
a429e513 582
dfe25020 583 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 584
e58ca020 585 if (IS_ERR(tree_root)) {
39279cc3 586 printk("btrfs: open_ctree failed\n");
e58ca020 587 return PTR_ERR(tree_root);
a429e513 588 }
39279cc3 589 sb->s_fs_info = tree_root;
a429e513 590
5d4f98a2
YZ
591 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
592 key.type = BTRFS_INODE_ITEM_KEY;
593 key.offset = 0;
73f73415 594 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
5d4f98a2
YZ
595 if (IS_ERR(inode)) {
596 err = PTR_ERR(inode);
39279cc3 597 goto fail_close;
f254e52c 598 }
f254e52c 599
39279cc3
CM
600 root_dentry = d_alloc_root(inode);
601 if (!root_dentry) {
602 iput(inode);
603 err = -ENOMEM;
604 goto fail_close;
f254e52c 605 }
58176a96 606
39279cc3 607 sb->s_root = root_dentry;
6885f308 608
6885f308 609 save_mount_options(sb, data);
2619ba1f 610 return 0;
39279cc3
CM
611
612fail_close:
613 close_ctree(tree_root);
614 return err;
2619ba1f
CM
615}
616
6bf13c0c 617int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
618{
619 struct btrfs_trans_handle *trans;
dccae999 620 struct btrfs_root *root = btrfs_sb(sb);
c5739bba 621 int ret;
2619ba1f 622
39279cc3
CM
623 if (!wait) {
624 filemap_flush(root->fs_info->btree_inode->i_mapping);
625 return 0;
626 }
771ed689 627
24bbcf04
YZ
628 btrfs_start_delalloc_inodes(root, 0);
629 btrfs_wait_ordered_extents(root, 0, 0);
771ed689 630
a22285a6 631 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
632 if (IS_ERR(trans))
633 return PTR_ERR(trans);
c5739bba 634 ret = btrfs_commit_transaction(trans, root);
54aa1f4d 635 return ret;
2c90e5d6
CM
636}
637
a9572a15
EP
638static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
639{
640 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
641 struct btrfs_fs_info *info = root->fs_info;
642
643 if (btrfs_test_opt(root, DEGRADED))
644 seq_puts(seq, ",degraded");
645 if (btrfs_test_opt(root, NODATASUM))
646 seq_puts(seq, ",nodatasum");
647 if (btrfs_test_opt(root, NODATACOW))
648 seq_puts(seq, ",nodatacow");
649 if (btrfs_test_opt(root, NOBARRIER))
650 seq_puts(seq, ",nobarrier");
a9572a15 651 if (info->max_inline != 8192 * 1024)
21380931
JB
652 seq_printf(seq, ",max_inline=%llu",
653 (unsigned long long)info->max_inline);
a9572a15 654 if (info->alloc_start != 0)
21380931
JB
655 seq_printf(seq, ",alloc_start=%llu",
656 (unsigned long long)info->alloc_start);
a9572a15
EP
657 if (info->thread_pool_size != min_t(unsigned long,
658 num_online_cpus() + 2, 8))
659 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
660 if (btrfs_test_opt(root, COMPRESS))
661 seq_puts(seq, ",compress");
c289811c
CM
662 if (btrfs_test_opt(root, NOSSD))
663 seq_puts(seq, ",nossd");
451d7585
CM
664 if (btrfs_test_opt(root, SSD_SPREAD))
665 seq_puts(seq, ",ssd_spread");
666 else if (btrfs_test_opt(root, SSD))
a9572a15 667 seq_puts(seq, ",ssd");
3a5e1404 668 if (btrfs_test_opt(root, NOTREELOG))
6b65c5c6 669 seq_puts(seq, ",notreelog");
dccae999 670 if (btrfs_test_opt(root, FLUSHONCOMMIT))
6b65c5c6 671 seq_puts(seq, ",flushoncommit");
20a5239a
MW
672 if (btrfs_test_opt(root, DISCARD))
673 seq_puts(seq, ",discard");
a9572a15
EP
674 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
675 seq_puts(seq, ",noacl");
676 return 0;
677}
678
a061fc8d 679static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 680{
450ba0ea 681 struct btrfs_root *test_root = data;
a061fc8d 682 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 683
619c8c76
IK
684 /*
685 * If this super block is going away, return false as it
686 * can't match as an existing super block.
687 */
688 if (!atomic_read(&s->s_active))
689 return 0;
450ba0ea 690 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
4b82d6e4
Y
691}
692
450ba0ea
JB
693static int btrfs_set_super(struct super_block *s, void *data)
694{
695 s->s_fs_info = data;
696
697 return set_anon_super(s, data);
4b82d6e4
Y
698}
699
450ba0ea 700
edf24abe
CH
701/*
702 * Find a superblock for the given device / mount point.
703 *
704 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
705 * for multiple device setup. Make sure to keep it in sync.
706 */
061dbc6b
AV
707static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
708 const char *dev_name, void *data)
4b82d6e4
Y
709{
710 struct block_device *bdev = NULL;
711 struct super_block *s;
712 struct dentry *root;
8a4b83cc 713 struct btrfs_fs_devices *fs_devices = NULL;
450ba0ea
JB
714 struct btrfs_root *tree_root = NULL;
715 struct btrfs_fs_info *fs_info = NULL;
97288f2c 716 fmode_t mode = FMODE_READ;
73f73415
JB
717 char *subvol_name = NULL;
718 u64 subvol_objectid = 0;
4b82d6e4
Y
719 int error = 0;
720
97288f2c
CH
721 if (!(flags & MS_RDONLY))
722 mode |= FMODE_WRITE;
723
724 error = btrfs_parse_early_options(data, mode, fs_type,
73f73415
JB
725 &subvol_name, &subvol_objectid,
726 &fs_devices);
edf24abe 727 if (error)
061dbc6b 728 return ERR_PTR(error);
edf24abe 729
97288f2c 730 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
8a4b83cc 731 if (error)
edf24abe 732 goto error_free_subvol_name;
4b82d6e4 733
97288f2c 734 error = btrfs_open_devices(fs_devices, mode, fs_type);
8a4b83cc 735 if (error)
edf24abe 736 goto error_free_subvol_name;
8a4b83cc 737
2b82032c
YZ
738 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
739 error = -EACCES;
740 goto error_close_devices;
741 }
742
450ba0ea
JB
743 /*
744 * Setup a dummy root and fs_info for test/set super. This is because
745 * we don't actually fill this stuff out until open_ctree, but we need
746 * it for searching for existing supers, so this lets us do that and
747 * then open_ctree will properly initialize everything later.
748 */
749 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
750 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
751 if (!fs_info || !tree_root) {
752 error = -ENOMEM;
753 goto error_close_devices;
754 }
755 fs_info->tree_root = tree_root;
756 fs_info->fs_devices = fs_devices;
757 tree_root->fs_info = fs_info;
758
dfe25020 759 bdev = fs_devices->latest_bdev;
450ba0ea 760 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
4b82d6e4
Y
761 if (IS_ERR(s))
762 goto error_s;
763
764 if (s->s_root) {
765 if ((flags ^ s->s_flags) & MS_RDONLY) {
6f5bbff9 766 deactivate_locked_super(s);
4b82d6e4 767 error = -EBUSY;
c146afad 768 goto error_close_devices;
4b82d6e4
Y
769 }
770
2b82032c 771 btrfs_close_devices(fs_devices);
bdc924bb
IK
772 kfree(fs_info);
773 kfree(tree_root);
4b82d6e4
Y
774 } else {
775 char b[BDEVNAME_SIZE];
776
777 s->s_flags = flags;
778 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
779 error = btrfs_fill_super(s, fs_devices, data,
780 flags & MS_SILENT ? 1 : 0);
4b82d6e4 781 if (error) {
6f5bbff9 782 deactivate_locked_super(s);
1f483660 783 goto error_free_subvol_name;
4b82d6e4
Y
784 }
785
788f20eb 786 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
787 s->s_flags |= MS_ACTIVE;
788 }
789
73f73415
JB
790 root = get_default_root(s, subvol_objectid);
791 if (IS_ERR(root)) {
792 error = PTR_ERR(root);
793 deactivate_locked_super(s);
0e78340f 794 goto error_free_subvol_name;
73f73415
JB
795 }
796 /* if they gave us a subvolume name bind mount into that */
797 if (strcmp(subvol_name, ".")) {
798 struct dentry *new_root;
799 mutex_lock(&root->d_inode->i_mutex);
800 new_root = lookup_one_len(subvol_name, root,
d397712b 801 strlen(subvol_name));
73f73415 802 mutex_unlock(&root->d_inode->i_mutex);
d397712b 803
73f73415 804 if (IS_ERR(new_root)) {
f106e82c 805 dput(root);
6f5bbff9 806 deactivate_locked_super(s);
73f73415 807 error = PTR_ERR(new_root);
0e78340f 808 goto error_free_subvol_name;
76fcef19 809 }
73f73415 810 if (!new_root->d_inode) {
76fcef19 811 dput(root);
73f73415 812 dput(new_root);
6f5bbff9 813 deactivate_locked_super(s);
76fcef19 814 error = -ENXIO;
0e78340f 815 goto error_free_subvol_name;
76fcef19 816 }
73f73415
JB
817 dput(root);
818 root = new_root;
4b82d6e4
Y
819 }
820
edf24abe 821 kfree(subvol_name);
061dbc6b 822 return root;
4b82d6e4
Y
823
824error_s:
825 error = PTR_ERR(s);
c146afad 826error_close_devices:
8a4b83cc 827 btrfs_close_devices(fs_devices);
450ba0ea
JB
828 kfree(fs_info);
829 kfree(tree_root);
edf24abe
CH
830error_free_subvol_name:
831 kfree(subvol_name);
061dbc6b 832 return ERR_PTR(error);
4b82d6e4 833}
2e635a27 834
c146afad
YZ
835static int btrfs_remount(struct super_block *sb, int *flags, char *data)
836{
837 struct btrfs_root *root = btrfs_sb(sb);
838 int ret;
839
b288052e
CM
840 ret = btrfs_parse_options(root, data);
841 if (ret)
842 return -EINVAL;
843
c146afad
YZ
844 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
845 return 0;
846
847 if (*flags & MS_RDONLY) {
848 sb->s_flags |= MS_RDONLY;
849
850 ret = btrfs_commit_super(root);
851 WARN_ON(ret);
852 } else {
2b82032c
YZ
853 if (root->fs_info->fs_devices->rw_devices == 0)
854 return -EACCES;
855
c146afad
YZ
856 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
857 return -EINVAL;
858
d68fc57b 859 ret = btrfs_cleanup_fs_roots(root->fs_info);
c146afad
YZ
860 WARN_ON(ret);
861
d68fc57b
YZ
862 /* recover relocation */
863 ret = btrfs_recover_relocation(root);
c146afad
YZ
864 WARN_ON(ret);
865
866 sb->s_flags &= ~MS_RDONLY;
867 }
868
869 return 0;
870}
871
6d07bcec
MX
872/*
873 * The helper to calc the free space on the devices that can be used to store
874 * file data.
875 */
876static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
877{
878 struct btrfs_fs_info *fs_info = root->fs_info;
879 struct btrfs_device_info *devices_info;
880 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
881 struct btrfs_device *device;
882 u64 skip_space;
883 u64 type;
884 u64 avail_space;
885 u64 used_space;
886 u64 min_stripe_size;
887 int min_stripes = 1;
888 int i = 0, nr_devices;
889 int ret;
890
891 nr_devices = fs_info->fs_devices->rw_devices;
892 BUG_ON(!nr_devices);
893
894 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
895 GFP_NOFS);
896 if (!devices_info)
897 return -ENOMEM;
898
899 /* calc min stripe number for data space alloction */
900 type = btrfs_get_alloc_profile(root, 1);
901 if (type & BTRFS_BLOCK_GROUP_RAID0)
902 min_stripes = 2;
903 else if (type & BTRFS_BLOCK_GROUP_RAID1)
904 min_stripes = 2;
905 else if (type & BTRFS_BLOCK_GROUP_RAID10)
906 min_stripes = 4;
907
908 if (type & BTRFS_BLOCK_GROUP_DUP)
909 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
910 else
911 min_stripe_size = BTRFS_STRIPE_LEN;
912
913 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
914 if (!device->in_fs_metadata)
915 continue;
916
917 avail_space = device->total_bytes - device->bytes_used;
918
919 /* align with stripe_len */
920 do_div(avail_space, BTRFS_STRIPE_LEN);
921 avail_space *= BTRFS_STRIPE_LEN;
922
923 /*
924 * In order to avoid overwritting the superblock on the drive,
925 * btrfs starts at an offset of at least 1MB when doing chunk
926 * allocation.
927 */
928 skip_space = 1024 * 1024;
929
930 /* user can set the offset in fs_info->alloc_start. */
931 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
932 device->total_bytes)
933 skip_space = max(fs_info->alloc_start, skip_space);
934
935 /*
936 * btrfs can not use the free space in [0, skip_space - 1],
937 * we must subtract it from the total. In order to implement
938 * it, we account the used space in this range first.
939 */
940 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
941 &used_space);
942 if (ret) {
943 kfree(devices_info);
944 return ret;
945 }
946
947 /* calc the free space in [0, skip_space - 1] */
948 skip_space -= used_space;
949
950 /*
951 * we can use the free space in [0, skip_space - 1], subtract
952 * it from the total.
953 */
954 if (avail_space && avail_space >= skip_space)
955 avail_space -= skip_space;
956 else
957 avail_space = 0;
958
959 if (avail_space < min_stripe_size)
960 continue;
961
962 devices_info[i].dev = device;
963 devices_info[i].max_avail = avail_space;
964
965 i++;
966 }
967
968 nr_devices = i;
969
970 btrfs_descending_sort_devices(devices_info, nr_devices);
971
972 i = nr_devices - 1;
973 avail_space = 0;
974 while (nr_devices >= min_stripes) {
975 if (devices_info[i].max_avail >= min_stripe_size) {
976 int j;
977 u64 alloc_size;
978
979 avail_space += devices_info[i].max_avail * min_stripes;
980 alloc_size = devices_info[i].max_avail;
981 for (j = i + 1 - min_stripes; j <= i; j++)
982 devices_info[j].max_avail -= alloc_size;
983 }
984 i--;
985 nr_devices--;
986 }
987
988 kfree(devices_info);
989 *free_bytes = avail_space;
990 return 0;
991}
992
8fd17795
CM
993static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
994{
995 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 996 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
bd4d1088
JB
997 struct list_head *head = &root->fs_info->space_info;
998 struct btrfs_space_info *found;
999 u64 total_used = 0;
6d07bcec 1000 u64 total_free_data = 0;
db94535d 1001 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 1002 __be32 *fsid = (__be32 *)root->fs_info->fsid;
6d07bcec 1003 int ret;
8fd17795 1004
6d07bcec
MX
1005 /* holding chunk_muext to avoid allocating new chunks */
1006 mutex_lock(&root->fs_info->chunk_mutex);
bd4d1088 1007 rcu_read_lock();
89a55897 1008 list_for_each_entry_rcu(found, head, list) {
6d07bcec
MX
1009 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1010 total_free_data += found->disk_total - found->disk_used;
1011 total_free_data -=
1012 btrfs_account_ro_block_groups_free_space(found);
1013 }
1014
b742bb82 1015 total_used += found->disk_used;
89a55897 1016 }
bd4d1088
JB
1017 rcu_read_unlock();
1018
8fd17795 1019 buf->f_namelen = BTRFS_NAME_LEN;
db94535d 1020 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
bd4d1088 1021 buf->f_bfree = buf->f_blocks - (total_used >> bits);
8fd17795
CM
1022 buf->f_bsize = dentry->d_sb->s_blocksize;
1023 buf->f_type = BTRFS_SUPER_MAGIC;
6d07bcec
MX
1024 buf->f_bavail = total_free_data;
1025 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1026 if (ret) {
1027 mutex_unlock(&root->fs_info->chunk_mutex);
1028 return ret;
1029 }
1030 buf->f_bavail += total_free_data;
1031 buf->f_bavail = buf->f_bavail >> bits;
1032 mutex_unlock(&root->fs_info->chunk_mutex);
d397712b 1033
9d03632e 1034 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 1035 because we want the fsid to come out the same whether mounted
9d03632e
DW
1036 on a big-endian or little-endian host */
1037 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1038 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
1039 /* Mask in the root object ID too, to disambiguate subvols */
1040 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1041 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1042
8fd17795
CM
1043 return 0;
1044}
b5133862 1045
2e635a27
CM
1046static struct file_system_type btrfs_fs_type = {
1047 .owner = THIS_MODULE,
1048 .name = "btrfs",
061dbc6b 1049 .mount = btrfs_mount,
a061fc8d 1050 .kill_sb = kill_anon_super,
2e635a27
CM
1051 .fs_flags = FS_REQUIRES_DEV,
1052};
a9218f6b 1053
d352ac68
CM
1054/*
1055 * used by btrfsctl to scan devices when no FS is mounted
1056 */
8a4b83cc
CM
1057static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1058 unsigned long arg)
1059{
1060 struct btrfs_ioctl_vol_args *vol;
1061 struct btrfs_fs_devices *fs_devices;
c071fcfd 1062 int ret = -ENOTTY;
8a4b83cc 1063
e441d54d
CM
1064 if (!capable(CAP_SYS_ADMIN))
1065 return -EPERM;
1066
dae7b665
LZ
1067 vol = memdup_user((void __user *)arg, sizeof(*vol));
1068 if (IS_ERR(vol))
1069 return PTR_ERR(vol);
c071fcfd 1070
8a4b83cc
CM
1071 switch (cmd) {
1072 case BTRFS_IOC_SCAN_DEV:
97288f2c 1073 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
1074 &btrfs_fs_type, &fs_devices);
1075 break;
1076 }
dae7b665 1077
8a4b83cc 1078 kfree(vol);
f819d837 1079 return ret;
8a4b83cc
CM
1080}
1081
0176260f 1082static int btrfs_freeze(struct super_block *sb)
ed0dab6b
Y
1083{
1084 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1085 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1086 mutex_lock(&root->fs_info->cleaner_mutex);
0176260f 1087 return 0;
ed0dab6b
Y
1088}
1089
0176260f 1090static int btrfs_unfreeze(struct super_block *sb)
ed0dab6b
Y
1091{
1092 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1093 mutex_unlock(&root->fs_info->cleaner_mutex);
1094 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
0176260f 1095 return 0;
ed0dab6b 1096}
2e635a27 1097
b87221de 1098static const struct super_operations btrfs_super_ops = {
76dda93c 1099 .drop_inode = btrfs_drop_inode,
bd555975 1100 .evict_inode = btrfs_evict_inode,
e20d96d6 1101 .put_super = btrfs_put_super,
d5719762 1102 .sync_fs = btrfs_sync_fs,
a9572a15 1103 .show_options = btrfs_show_options,
4730a4bc 1104 .write_inode = btrfs_write_inode,
b5133862 1105 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
1106 .alloc_inode = btrfs_alloc_inode,
1107 .destroy_inode = btrfs_destroy_inode,
8fd17795 1108 .statfs = btrfs_statfs,
c146afad 1109 .remount_fs = btrfs_remount,
0176260f
LT
1110 .freeze_fs = btrfs_freeze,
1111 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 1112};
a9218f6b
CM
1113
1114static const struct file_operations btrfs_ctl_fops = {
1115 .unlocked_ioctl = btrfs_control_ioctl,
1116 .compat_ioctl = btrfs_control_ioctl,
1117 .owner = THIS_MODULE,
6038f373 1118 .llseek = noop_llseek,
a9218f6b
CM
1119};
1120
1121static struct miscdevice btrfs_misc = {
578454ff 1122 .minor = BTRFS_MINOR,
a9218f6b
CM
1123 .name = "btrfs-control",
1124 .fops = &btrfs_ctl_fops
1125};
1126
578454ff
KS
1127MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1128MODULE_ALIAS("devname:btrfs-control");
1129
a9218f6b
CM
1130static int btrfs_interface_init(void)
1131{
1132 return misc_register(&btrfs_misc);
1133}
1134
b2950863 1135static void btrfs_interface_exit(void)
a9218f6b
CM
1136{
1137 if (misc_deregister(&btrfs_misc) < 0)
d397712b 1138 printk(KERN_INFO "misc_deregister failed for control device");
a9218f6b
CM
1139}
1140
2e635a27
CM
1141static int __init init_btrfs_fs(void)
1142{
2c90e5d6 1143 int err;
58176a96
JB
1144
1145 err = btrfs_init_sysfs();
1146 if (err)
1147 return err;
1148
261507a0 1149 err = btrfs_init_compress();
2c90e5d6 1150 if (err)
a74a4b97 1151 goto free_sysfs;
d1310b2e 1152
261507a0
LZ
1153 err = btrfs_init_cachep();
1154 if (err)
1155 goto free_compress;
1156
d1310b2e 1157 err = extent_io_init();
2f4cbe64
WB
1158 if (err)
1159 goto free_cachep;
1160
d1310b2e
CM
1161 err = extent_map_init();
1162 if (err)
1163 goto free_extent_io;
1164
a9218f6b 1165 err = btrfs_interface_init();
2f4cbe64
WB
1166 if (err)
1167 goto free_extent_map;
c8b97818 1168
a9218f6b
CM
1169 err = register_filesystem(&btrfs_fs_type);
1170 if (err)
1171 goto unregister_ioctl;
b3c3da71
CM
1172
1173 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
1174 return 0;
1175
a9218f6b
CM
1176unregister_ioctl:
1177 btrfs_interface_exit();
2f4cbe64
WB
1178free_extent_map:
1179 extent_map_exit();
d1310b2e
CM
1180free_extent_io:
1181 extent_io_exit();
2f4cbe64
WB
1182free_cachep:
1183 btrfs_destroy_cachep();
261507a0
LZ
1184free_compress:
1185 btrfs_exit_compress();
a74a4b97 1186free_sysfs:
2f4cbe64
WB
1187 btrfs_exit_sysfs();
1188 return err;
2e635a27
CM
1189}
1190
1191static void __exit exit_btrfs_fs(void)
1192{
39279cc3 1193 btrfs_destroy_cachep();
a52d9a80 1194 extent_map_exit();
d1310b2e 1195 extent_io_exit();
a9218f6b 1196 btrfs_interface_exit();
2e635a27 1197 unregister_filesystem(&btrfs_fs_type);
58176a96 1198 btrfs_exit_sysfs();
8a4b83cc 1199 btrfs_cleanup_fs_uuids();
261507a0 1200 btrfs_exit_compress();
2e635a27
CM
1201}
1202
1203module_init(init_btrfs_fs)
1204module_exit(exit_btrfs_fs)
1205
1206MODULE_LICENSE("GPL");
This page took 0.240724 seconds and 5 git commands to generate.