blob: 28e3cb2607ff4155589d17ff7575768a2c84e467 [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>
Eric Parisa9572a12009-04-02 16:46:06 -040027#include <linux/seq_file.h>
Chris Mason2e635a22007-03-21 11:12:56 -040028#include <linux/string.h>
Chris Mason2e635a22007-03-21 11:12:56 -040029#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 Masona9218f62008-03-24 15:02:04 -040039#include <linux/miscdevice.h>
Qinghuang Feng1bcbf312009-01-15 13:51:03 -080040#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050042#include "compat.h"
Miao Xie16cdcec2011-04-22 18:12:22 +080043#include "delayed-inode.h"
Chris Mason2e635a22007-03-21 11:12:56 -040044#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040045#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040046#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040047#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040048#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040049#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050050#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040051#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040052#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053053#include "export.h"
Chris Masonc8b97812008-10-29 14:49:59 -040054#include "compression.h"
Chris Mason2e635a22007-03-21 11:12:56 -040055
liubo1abe9b82011-03-24 11:18:59 +000056#define CREATE_TRACE_POINTS
57#include <trace/events/btrfs.h>
58
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070059static const struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040060
liuboacce9522011-01-06 19:30:25 +080061static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
62 char nbuf[16])
63{
64 char *errstr = NULL;
65
66 switch (errno) {
67 case -EIO:
68 errstr = "IO failure";
69 break;
70 case -ENOMEM:
71 errstr = "Out of memory";
72 break;
73 case -EROFS:
74 errstr = "Readonly filesystem";
75 break;
76 default:
77 if (nbuf) {
78 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
79 errstr = nbuf;
80 }
81 break;
82 }
83
84 return errstr;
85}
86
87static void __save_error_info(struct btrfs_fs_info *fs_info)
88{
89 /*
90 * today we only save the error info into ram. Long term we'll
91 * also send it down to the disk
92 */
93 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
94}
95
96/* NOTE:
97 * We move write_super stuff at umount in order to avoid deadlock
98 * for umount hold all lock.
99 */
100static void save_error_info(struct btrfs_fs_info *fs_info)
101{
102 __save_error_info(fs_info);
103}
104
105/* btrfs handle error by forcing the filesystem readonly */
106static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
107{
108 struct super_block *sb = fs_info->sb;
109
110 if (sb->s_flags & MS_RDONLY)
111 return;
112
113 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
114 sb->s_flags |= MS_RDONLY;
115 printk(KERN_INFO "btrfs is forced readonly\n");
116 }
117}
118
119/*
120 * __btrfs_std_error decodes expected errors from the caller and
121 * invokes the approciate error response.
122 */
123void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
124 unsigned int line, int errno)
125{
126 struct super_block *sb = fs_info->sb;
127 char nbuf[16];
128 const char *errstr;
129
130 /*
131 * Special case: if the error is EROFS, and we're already
132 * under MS_RDONLY, then it is safe here.
133 */
134 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
135 return;
136
137 errstr = btrfs_decode_error(fs_info, errno, nbuf);
138 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
139 sb->s_id, function, line, errstr);
140 save_error_info(fs_info);
141
142 btrfs_handle_error(fs_info);
143}
144
Chris Masond3977122009-01-05 21:25:51 -0500145static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400146{
147 struct btrfs_root *root = btrfs_sb(sb);
148 int ret;
149
150 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -0400151 sb->s_fs_info = NULL;
Andi Kleen559af822010-10-29 15:14:37 -0400152
153 (void)ret; /* FIXME: need to fix VFS to return error? */
Chris Masone20d96d2007-03-22 12:13:20 -0400154}
Chris Mason2e635a22007-03-21 11:12:56 -0400155
Chris Mason95e05282007-08-29 09:11:44 -0400156enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000157 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000158 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
159 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800160 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
161 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500162 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Chris Mason4cb53002011-05-24 15:35:30 -0400163 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400164};
165
166static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400167 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400168 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000169 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400170 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500171 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500172 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500173 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500174 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500175 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400176 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400177 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800178 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500179 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800180 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500181 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400182 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400183 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400184 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400185 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400186 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400187 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400188 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400189 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400190 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400191 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500192 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000193 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400194 {Opt_defrag, "autodefrag"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400195 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400196};
197
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400198/*
199 * Regular mount options parser. Everything that is needed only when
200 * reading in a new superblock is parsed here.
201 */
202int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400203{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400204 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400205 substring_t args[MAX_OPT_ARGS];
Josef Bacikda495ec2010-02-25 20:38:35 +0000206 char *p, *num, *orig;
Chris Mason4543df72008-06-11 21:47:56 -0400207 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000208 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800209 char *compress_type;
210 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500211
Chris Mason95e05282007-08-29 09:11:44 -0400212 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400213 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400214
Chris Masonbe20aa92007-12-17 20:14:01 -0500215 /*
216 * strsep changes the string, duplicate it because parse_options
217 * gets called twice
218 */
219 options = kstrdup(options, GFP_NOFS);
220 if (!options)
221 return -ENOMEM;
222
Josef Bacikda495ec2010-02-25 20:38:35 +0000223 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500224
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400225 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400226 int token;
227 if (!*p)
228 continue;
229
230 token = match_token(p, tokens, args);
231 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400232 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400233 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
234 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400235 break;
Chris Mason95e05282007-08-29 09:11:44 -0400236 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000237 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000238 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400239 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400240 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400241 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400242 * and can be happily ignored here.
243 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500244 break;
245 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400246 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400247 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500248 break;
249 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400250 printk(KERN_INFO "btrfs: setting nodatacow\n");
251 btrfs_set_opt(info->mount_opt, NODATACOW);
252 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400253 break;
Chris Masona555f812010-01-28 16:18:15 -0500254 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800255 case Opt_compress_force_type:
256 compress_force = true;
257 case Opt_compress:
258 case Opt_compress_type:
259 if (token == Opt_compress ||
260 token == Opt_compress_force ||
261 strcmp(args[0].from, "zlib") == 0) {
262 compress_type = "zlib";
263 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800264 } else if (strcmp(args[0].from, "lzo") == 0) {
265 compress_type = "lzo";
266 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800267 } else {
268 ret = -EINVAL;
269 goto out;
270 }
271
Chris Masona555f812010-01-28 16:18:15 -0500272 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800273 if (compress_force) {
274 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
275 pr_info("btrfs: force %s compression\n",
276 compress_type);
277 } else
278 pr_info("btrfs: use %s compression\n",
279 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500280 break;
Chris Masone18e4802008-01-18 10:54:22 -0500281 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400282 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
283 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500284 break;
Chris Mason451d7582009-06-09 20:28:34 -0400285 case Opt_ssd_spread:
286 printk(KERN_INFO "btrfs: use spread ssd "
287 "allocation scheme\n");
288 btrfs_set_opt(info->mount_opt, SSD);
289 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
290 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400291 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400292 printk(KERN_INFO "btrfs: not using ssd allocation "
293 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400294 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400295 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400296 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400297 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500298 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400299 printk(KERN_INFO "btrfs: turning off barriers\n");
300 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500301 break;
Chris Mason4543df72008-06-11 21:47:56 -0400302 case Opt_thread_pool:
303 intarg = 0;
304 match_int(&args[0], &intarg);
305 if (intarg) {
306 info->thread_pool_size = intarg;
307 printk(KERN_INFO "btrfs: thread pool %d\n",
308 info->thread_pool_size);
309 }
310 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500311 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400312 num = match_strdup(&args[0]);
313 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000314 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400315 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500316
Chris Mason15ada042008-06-11 16:51:38 -0400317 if (info->max_inline) {
318 info->max_inline = max_t(u64,
319 info->max_inline,
320 root->sectorsize);
321 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400322 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700323 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500324 }
325 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500326 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400327 num = match_strdup(&args[0]);
328 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000329 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400330 kfree(num);
331 printk(KERN_INFO
332 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700333 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500334 }
335 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400336 case Opt_noacl:
337 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
338 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400339 case Opt_notreelog:
340 printk(KERN_INFO "btrfs: disabling tree log\n");
341 btrfs_set_opt(info->mount_opt, NOTREELOG);
342 break;
Sage Weildccae992009-04-02 16:59:01 -0400343 case Opt_flushoncommit:
344 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
345 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
346 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400347 case Opt_ratio:
348 intarg = 0;
349 match_int(&args[0], &intarg);
350 if (intarg) {
351 info->metadata_ratio = intarg;
352 printk(KERN_INFO "btrfs: metadata ratio %d\n",
353 info->metadata_ratio);
354 }
355 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400356 case Opt_discard:
357 btrfs_set_opt(info->mount_opt, DISCARD);
358 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400359 case Opt_space_cache:
360 printk(KERN_INFO "btrfs: enabling disk space caching\n");
361 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000362 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400363 case Opt_clear_cache:
364 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
365 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400366 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400367 case Opt_user_subvol_rm_allowed:
368 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
369 break;
Chris Mason91435652011-02-16 13:10:41 -0500370 case Opt_enospc_debug:
371 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
372 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400373 case Opt_defrag:
374 printk(KERN_INFO "btrfs: enabling auto defrag");
375 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
376 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000377 case Opt_err:
378 printk(KERN_INFO "btrfs: unrecognized mount option "
379 "'%s'\n", p);
380 ret = -EINVAL;
381 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400382 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500383 break;
Chris Mason95e05282007-08-29 09:11:44 -0400384 }
385 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000386out:
Josef Bacikda495ec2010-02-25 20:38:35 +0000387 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000388 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400389}
390
391/*
392 * Parse mount options that are required early in the mount process.
393 *
394 * All other options will be parsed on much later in the mount process and
395 * only when we need to allocate a new super block.
396 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500397static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000398 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000399 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400400{
401 substring_t args[MAX_OPT_ARGS];
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800402 char *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400403 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000404 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400405
406 if (!options)
407 goto out;
408
409 /*
410 * strsep changes the string, duplicate it because parse_options
411 * gets called twice
412 */
413 opts = kstrdup(options, GFP_KERNEL);
414 if (!opts)
415 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800416 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400417
418 while ((p = strsep(&opts, ",")) != NULL) {
419 int token;
420 if (!*p)
421 continue;
422
423 token = match_token(p, tokens, args);
424 switch (token) {
425 case Opt_subvol:
426 *subvol_name = match_strdup(&args[0]);
427 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000428 case Opt_subvolid:
429 intarg = 0;
Josef Bacik4849f012009-12-14 19:18:38 +0000430 error = match_int(&args[0], &intarg);
431 if (!error) {
432 /* we want the original fs_tree */
433 if (!intarg)
434 *subvol_objectid =
435 BTRFS_FS_TREE_OBJECTID;
436 else
437 *subvol_objectid = intarg;
438 }
Josef Bacik73f73412009-12-04 17:38:27 +0000439 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000440 case Opt_subvolrootid:
441 intarg = 0;
442 error = match_int(&args[0], &intarg);
443 if (!error) {
444 /* we want the original fs_tree */
445 if (!intarg)
446 *subvol_rootid =
447 BTRFS_FS_TREE_OBJECTID;
448 else
449 *subvol_rootid = intarg;
450 }
451 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400452 case Opt_device:
453 error = btrfs_scan_one_device(match_strdup(&args[0]),
454 flags, holder, fs_devices);
455 if (error)
456 goto out_free_opts;
457 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400458 default:
459 break;
460 }
461 }
462
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400463 out_free_opts:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800464 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400465 out:
466 /*
467 * If no subvolume name is specified we use the default one. Allocate
Chris Mason3de45862008-11-17 21:02:50 -0500468 * a copy of the string "." here so that code later in the
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400469 * mount path doesn't care if it's the default volume or another one.
470 */
471 if (!*subvol_name) {
Chris Mason3de45862008-11-17 21:02:50 -0500472 *subvol_name = kstrdup(".", GFP_KERNEL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400473 if (!*subvol_name)
474 return -ENOMEM;
475 }
476 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400477}
478
Josef Bacik73f73412009-12-04 17:38:27 +0000479static struct dentry *get_default_root(struct super_block *sb,
480 u64 subvol_objectid)
481{
482 struct btrfs_root *root = sb->s_fs_info;
483 struct btrfs_root *new_root;
484 struct btrfs_dir_item *di;
485 struct btrfs_path *path;
486 struct btrfs_key location;
487 struct inode *inode;
488 struct dentry *dentry;
489 u64 dir_id;
490 int new = 0;
491
492 /*
493 * We have a specific subvol we want to mount, just setup location and
494 * go look up the root.
495 */
496 if (subvol_objectid) {
497 location.objectid = subvol_objectid;
498 location.type = BTRFS_ROOT_ITEM_KEY;
499 location.offset = (u64)-1;
500 goto find_root;
501 }
502
503 path = btrfs_alloc_path();
504 if (!path)
505 return ERR_PTR(-ENOMEM);
506 path->leave_spinning = 1;
507
508 /*
509 * Find the "default" dir item which points to the root item that we
510 * will mount by default if we haven't been given a specific subvolume
511 * to mount.
512 */
513 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
514 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000515 if (IS_ERR(di)) {
516 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000517 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000518 }
Josef Bacik73f73412009-12-04 17:38:27 +0000519 if (!di) {
520 /*
521 * Ok the default dir item isn't there. This is weird since
522 * it's always been there, but don't freak out, just try and
523 * mount to root most subvolume.
524 */
525 btrfs_free_path(path);
526 dir_id = BTRFS_FIRST_FREE_OBJECTID;
527 new_root = root->fs_info->fs_root;
528 goto setup_root;
529 }
530
531 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
532 btrfs_free_path(path);
533
534find_root:
535 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
536 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400537 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000538
539 if (btrfs_root_refs(&new_root->root_item) == 0)
540 return ERR_PTR(-ENOENT);
541
542 dir_id = btrfs_root_dirid(&new_root->root_item);
543setup_root:
544 location.objectid = dir_id;
545 location.type = BTRFS_INODE_ITEM_KEY;
546 location.offset = 0;
547
548 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000549 if (IS_ERR(inode))
550 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000551
552 /*
553 * If we're just mounting the root most subvol put the inode and return
554 * a reference to the dentry. We will have already gotten a reference
555 * to the inode in btrfs_fill_super so we're good to go.
556 */
557 if (!new && sb->s_root->d_inode == inode) {
558 iput(inode);
559 return dget(sb->s_root);
560 }
561
562 if (new) {
563 const struct qstr name = { .name = "/", .len = 1 };
564
565 /*
566 * New inode, we need to make the dentry a sibling of s_root so
567 * everything gets cleaned up properly on unmount.
568 */
569 dentry = d_alloc(sb->s_root, &name);
570 if (!dentry) {
571 iput(inode);
572 return ERR_PTR(-ENOMEM);
573 }
574 d_splice_alias(inode, dentry);
575 } else {
576 /*
577 * We found the inode in cache, just find a dentry for it and
578 * put the reference to the inode we just got.
579 */
580 dentry = d_find_alias(inode);
581 iput(inode);
582 }
583
584 return dentry;
585}
586
Chris Masond3977122009-01-05 21:25:51 -0500587static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400588 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500589 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400590{
Chris Masond3977122009-01-05 21:25:51 -0500591 struct inode *inode;
592 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400593 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400594 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400595 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400596
597 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400598 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400599 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500600 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530601 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500602 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400603 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400604#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400605 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400606#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400607
Chris Masondfe25022008-05-13 13:46:40 -0400608 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400609
Yane58ca022008-04-01 11:21:34 -0400610 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400611 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400612 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400613 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400614 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400615
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400616 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
617 key.type = BTRFS_INODE_ITEM_KEY;
618 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000619 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400620 if (IS_ERR(inode)) {
621 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400622 goto fail_close;
623 }
Chris Mason2e635a22007-03-21 11:12:56 -0400624
Chris Masone20d96d2007-03-22 12:13:20 -0400625 root_dentry = d_alloc_root(inode);
626 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400627 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400628 err = -ENOMEM;
629 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400630 }
Josef Bacik58176a92007-08-29 15:47:34 -0400631
Chris Masone20d96d2007-03-22 12:13:20 -0400632 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500633
Chris Mason6885f302008-02-20 16:11:05 -0500634 save_mount_options(sb, data);
Chris Mason2e635a22007-03-21 11:12:56 -0400635 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400636
Chris Mason39279cc2007-06-12 06:35:45 -0400637fail_close:
638 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400639 return err;
640}
641
Sage Weil6bf13c02008-06-10 10:07:39 -0400642int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400643{
644 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400645 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400646 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400647
liubo1abe9b82011-03-24 11:18:59 +0000648 trace_btrfs_sync_fs(wait);
649
Chris Masond561c022007-03-23 19:47:49 -0400650 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400651 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400652 return 0;
653 }
Chris Mason771ed682008-11-06 22:02:51 -0500654
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000655 btrfs_start_delalloc_inodes(root, 0);
656 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500657
Yan, Zhenga22285a2010-05-16 10:48:46 -0400658 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000659 if (IS_ERR(trans))
660 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400661 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400662 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400663}
664
Eric Parisa9572a12009-04-02 16:46:06 -0400665static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
666{
667 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
668 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000669 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400670
671 if (btrfs_test_opt(root, DEGRADED))
672 seq_puts(seq, ",degraded");
673 if (btrfs_test_opt(root, NODATASUM))
674 seq_puts(seq, ",nodatasum");
675 if (btrfs_test_opt(root, NODATACOW))
676 seq_puts(seq, ",nodatacow");
677 if (btrfs_test_opt(root, NOBARRIER))
678 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400679 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700680 seq_printf(seq, ",max_inline=%llu",
681 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400682 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700683 seq_printf(seq, ",alloc_start=%llu",
684 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400685 if (info->thread_pool_size != min_t(unsigned long,
686 num_online_cpus() + 2, 8))
687 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000688 if (btrfs_test_opt(root, COMPRESS)) {
689 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
690 compress_type = "zlib";
691 else
692 compress_type = "lzo";
693 if (btrfs_test_opt(root, FORCE_COMPRESS))
694 seq_printf(seq, ",compress-force=%s", compress_type);
695 else
696 seq_printf(seq, ",compress=%s", compress_type);
697 }
Chris Masonc2898112009-06-10 09:51:32 -0400698 if (btrfs_test_opt(root, NOSSD))
699 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400700 if (btrfs_test_opt(root, SSD_SPREAD))
701 seq_puts(seq, ",ssd_spread");
702 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400703 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400704 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400705 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400706 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400707 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000708 if (btrfs_test_opt(root, DISCARD))
709 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400710 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
711 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000712 if (btrfs_test_opt(root, SPACE_CACHE))
713 seq_puts(seq, ",space_cache");
714 if (btrfs_test_opt(root, CLEAR_CACHE))
715 seq_puts(seq, ",clear_cache");
716 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
717 seq_puts(seq, ",user_subvol_rm_allowed");
Eric Parisa9572a12009-04-02 16:46:06 -0400718 return 0;
719}
720
Chris Masona061fc82008-05-07 11:43:44 -0400721static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400722{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500723 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400724 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400725
Ian Kent619c8c72010-11-22 02:21:38 +0000726 /*
727 * If this super block is going away, return false as it
728 * can't match as an existing super block.
729 */
730 if (!atomic_read(&s->s_active))
731 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500732 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400733}
734
Josef Bacik450ba0e2010-11-19 14:59:15 -0500735static int btrfs_set_super(struct super_block *s, void *data)
736{
737 s->s_fs_info = data;
738
739 return set_anon_super(s, data);
740}
741
742
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400743/*
744 * Find a superblock for the given device / mount point.
745 *
746 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
747 * for multiple device setup. Make sure to keep it in sync.
748 */
Al Viro061dbc62010-07-26 16:21:33 +0400749static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200750 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400751{
752 struct block_device *bdev = NULL;
753 struct super_block *s;
754 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400755 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500756 struct btrfs_root *tree_root = NULL;
757 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500758 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000759 char *subvol_name = NULL;
760 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000761 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400762 int error = 0;
763
Christoph Hellwig97288f22008-12-02 06:36:09 -0500764 if (!(flags & MS_RDONLY))
765 mode |= FMODE_WRITE;
766
767 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000768 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000769 &subvol_rootid, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400770 if (error)
Al Viro061dbc62010-07-26 16:21:33 +0400771 return ERR_PTR(error);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400772
David Sterba306e16c2011-04-19 14:29:38 +0200773 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400774 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400775 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400776
Christoph Hellwig97288f22008-12-02 06:36:09 -0500777 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400778 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400779 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400780
Yan Zheng2b820322008-11-17 21:11:30 -0500781 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
782 error = -EACCES;
783 goto error_close_devices;
784 }
785
Josef Bacik450ba0e2010-11-19 14:59:15 -0500786 /*
787 * Setup a dummy root and fs_info for test/set super. This is because
788 * we don't actually fill this stuff out until open_ctree, but we need
789 * it for searching for existing supers, so this lets us do that and
790 * then open_ctree will properly initialize everything later.
791 */
792 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
793 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
794 if (!fs_info || !tree_root) {
795 error = -ENOMEM;
796 goto error_close_devices;
797 }
798 fs_info->tree_root = tree_root;
799 fs_info->fs_devices = fs_devices;
800 tree_root->fs_info = fs_info;
801
Chris Masondfe25022008-05-13 13:46:40 -0400802 bdev = fs_devices->latest_bdev;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500803 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
Yan4b82d6e2007-08-29 09:11:44 -0400804 if (IS_ERR(s))
805 goto error_s;
806
807 if (s->s_root) {
808 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400809 deactivate_locked_super(s);
Yan4b82d6e2007-08-29 09:11:44 -0400810 error = -EBUSY;
Yan Zhengc146afa2008-11-12 14:34:12 -0500811 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400812 }
813
Yan Zheng2b820322008-11-17 21:11:30 -0500814 btrfs_close_devices(fs_devices);
Ian Kentbdc924b2010-12-27 16:33:15 +0800815 kfree(fs_info);
816 kfree(tree_root);
Yan4b82d6e2007-08-29 09:11:44 -0400817 } else {
818 char b[BDEVNAME_SIZE];
819
820 s->s_flags = flags;
821 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400822 error = btrfs_fill_super(s, fs_devices, data,
823 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400824 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400825 deactivate_locked_super(s);
Shen Feng1f483662009-01-05 15:43:42 -0500826 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400827 }
828
Chris Mason788f20e2008-04-28 15:29:42 -0400829 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400830 s->s_flags |= MS_ACTIVE;
831 }
832
Josef Bacik73f73412009-12-04 17:38:27 +0000833 /* if they gave us a subvolume name bind mount into that */
834 if (strcmp(subvol_name, ".")) {
835 struct dentry *new_root;
Xin Zhonge15d0542011-04-06 07:33:51 +0000836
837 root = get_default_root(s, subvol_rootid);
838 if (IS_ERR(root)) {
839 error = PTR_ERR(root);
840 deactivate_locked_super(s);
841 goto error_free_subvol_name;
842 }
843
Josef Bacik73f73412009-12-04 17:38:27 +0000844 mutex_lock(&root->d_inode->i_mutex);
845 new_root = lookup_one_len(subvol_name, root,
Chris Masond3977122009-01-05 21:25:51 -0500846 strlen(subvol_name));
Josef Bacik73f73412009-12-04 17:38:27 +0000847 mutex_unlock(&root->d_inode->i_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500848
Josef Bacik73f73412009-12-04 17:38:27 +0000849 if (IS_ERR(new_root)) {
Li Zefanf106e822010-12-07 01:51:26 +0000850 dput(root);
Al Viro6f5bbff2009-05-06 01:34:22 -0400851 deactivate_locked_super(s);
Josef Bacik73f73412009-12-04 17:38:27 +0000852 error = PTR_ERR(new_root);
Josef Bacik0e783402010-10-22 15:26:53 -0400853 goto error_free_subvol_name;
Josef Bacik73f73412009-12-04 17:38:27 +0000854 }
855 if (!new_root->d_inode) {
856 dput(root);
857 dput(new_root);
Al Viro6f5bbff2009-05-06 01:34:22 -0400858 deactivate_locked_super(s);
David Woodhouse76fcef12008-08-19 16:49:35 +0100859 error = -ENXIO;
Josef Bacik0e783402010-10-22 15:26:53 -0400860 goto error_free_subvol_name;
David Woodhouse76fcef12008-08-19 16:49:35 +0100861 }
Josef Bacik73f73412009-12-04 17:38:27 +0000862 dput(root);
863 root = new_root;
Xin Zhonge15d0542011-04-06 07:33:51 +0000864 } else {
865 root = get_default_root(s, subvol_objectid);
866 if (IS_ERR(root)) {
867 error = PTR_ERR(root);
868 deactivate_locked_super(s);
869 goto error_free_subvol_name;
870 }
Yan4b82d6e2007-08-29 09:11:44 -0400871 }
872
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400873 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400874 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400875
876error_s:
877 error = PTR_ERR(s);
Yan Zhengc146afa2008-11-12 14:34:12 -0500878error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400879 btrfs_close_devices(fs_devices);
Josef Bacik450ba0e2010-11-19 14:59:15 -0500880 kfree(fs_info);
881 kfree(tree_root);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400882error_free_subvol_name:
883 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400884 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400885}
Chris Mason2e635a22007-03-21 11:12:56 -0400886
Yan Zhengc146afa2008-11-12 14:34:12 -0500887static int btrfs_remount(struct super_block *sb, int *flags, char *data)
888{
889 struct btrfs_root *root = btrfs_sb(sb);
890 int ret;
891
Chris Masonb2880522009-02-12 09:37:35 -0500892 ret = btrfs_parse_options(root, data);
893 if (ret)
894 return -EINVAL;
895
Yan Zhengc146afa2008-11-12 14:34:12 -0500896 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
897 return 0;
898
899 if (*flags & MS_RDONLY) {
900 sb->s_flags |= MS_RDONLY;
901
902 ret = btrfs_commit_super(root);
903 WARN_ON(ret);
904 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500905 if (root->fs_info->fs_devices->rw_devices == 0)
906 return -EACCES;
907
Yan Zhengc146afa2008-11-12 14:34:12 -0500908 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
909 return -EINVAL;
910
Yan, Zhengd68fc572010-05-16 10:49:58 -0400911 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -0500912 WARN_ON(ret);
913
Yan, Zhengd68fc572010-05-16 10:49:58 -0400914 /* recover relocation */
915 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -0500916 WARN_ON(ret);
917
918 sb->s_flags &= ~MS_RDONLY;
919 }
920
921 return 0;
922}
923
Arne Jansenbcd53742011-04-12 10:43:21 +0200924/* Used to sort the devices by max_avail(descending sort) */
925static int btrfs_cmp_device_free_bytes(const void *dev_info1,
926 const void *dev_info2)
927{
928 if (((struct btrfs_device_info *)dev_info1)->max_avail >
929 ((struct btrfs_device_info *)dev_info2)->max_avail)
930 return -1;
931 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
932 ((struct btrfs_device_info *)dev_info2)->max_avail)
933 return 1;
934 else
935 return 0;
936}
937
938/*
939 * sort the devices by max_avail, in which max free extent size of each device
940 * is stored.(Descending Sort)
941 */
942static inline void btrfs_descending_sort_devices(
943 struct btrfs_device_info *devices,
944 size_t nr_devices)
945{
946 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
947 btrfs_cmp_device_free_bytes, NULL);
948}
949
Miao Xie6d07bce2011-01-05 10:07:31 +0000950/*
951 * The helper to calc the free space on the devices that can be used to store
952 * file data.
953 */
954static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
955{
956 struct btrfs_fs_info *fs_info = root->fs_info;
957 struct btrfs_device_info *devices_info;
958 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
959 struct btrfs_device *device;
960 u64 skip_space;
961 u64 type;
962 u64 avail_space;
963 u64 used_space;
964 u64 min_stripe_size;
965 int min_stripes = 1;
966 int i = 0, nr_devices;
967 int ret;
968
969 nr_devices = fs_info->fs_devices->rw_devices;
970 BUG_ON(!nr_devices);
971
972 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
973 GFP_NOFS);
974 if (!devices_info)
975 return -ENOMEM;
976
977 /* calc min stripe number for data space alloction */
978 type = btrfs_get_alloc_profile(root, 1);
979 if (type & BTRFS_BLOCK_GROUP_RAID0)
980 min_stripes = 2;
981 else if (type & BTRFS_BLOCK_GROUP_RAID1)
982 min_stripes = 2;
983 else if (type & BTRFS_BLOCK_GROUP_RAID10)
984 min_stripes = 4;
985
986 if (type & BTRFS_BLOCK_GROUP_DUP)
987 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
988 else
989 min_stripe_size = BTRFS_STRIPE_LEN;
990
991 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
992 if (!device->in_fs_metadata)
993 continue;
994
995 avail_space = device->total_bytes - device->bytes_used;
996
997 /* align with stripe_len */
998 do_div(avail_space, BTRFS_STRIPE_LEN);
999 avail_space *= BTRFS_STRIPE_LEN;
1000
1001 /*
1002 * In order to avoid overwritting the superblock on the drive,
1003 * btrfs starts at an offset of at least 1MB when doing chunk
1004 * allocation.
1005 */
1006 skip_space = 1024 * 1024;
1007
1008 /* user can set the offset in fs_info->alloc_start. */
1009 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1010 device->total_bytes)
1011 skip_space = max(fs_info->alloc_start, skip_space);
1012
1013 /*
1014 * btrfs can not use the free space in [0, skip_space - 1],
1015 * we must subtract it from the total. In order to implement
1016 * it, we account the used space in this range first.
1017 */
1018 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1019 &used_space);
1020 if (ret) {
1021 kfree(devices_info);
1022 return ret;
1023 }
1024
1025 /* calc the free space in [0, skip_space - 1] */
1026 skip_space -= used_space;
1027
1028 /*
1029 * we can use the free space in [0, skip_space - 1], subtract
1030 * it from the total.
1031 */
1032 if (avail_space && avail_space >= skip_space)
1033 avail_space -= skip_space;
1034 else
1035 avail_space = 0;
1036
1037 if (avail_space < min_stripe_size)
1038 continue;
1039
1040 devices_info[i].dev = device;
1041 devices_info[i].max_avail = avail_space;
1042
1043 i++;
1044 }
1045
1046 nr_devices = i;
1047
1048 btrfs_descending_sort_devices(devices_info, nr_devices);
1049
1050 i = nr_devices - 1;
1051 avail_space = 0;
1052 while (nr_devices >= min_stripes) {
1053 if (devices_info[i].max_avail >= min_stripe_size) {
1054 int j;
1055 u64 alloc_size;
1056
1057 avail_space += devices_info[i].max_avail * min_stripes;
1058 alloc_size = devices_info[i].max_avail;
1059 for (j = i + 1 - min_stripes; j <= i; j++)
1060 devices_info[j].max_avail -= alloc_size;
1061 }
1062 i--;
1063 nr_devices--;
1064 }
1065
1066 kfree(devices_info);
1067 *free_bytes = avail_space;
1068 return 0;
1069}
1070
Chris Mason8fd17792007-04-19 21:01:03 -04001071static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1072{
1073 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -04001074 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001075 struct list_head *head = &root->fs_info->space_info;
1076 struct btrfs_space_info *found;
1077 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001078 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001079 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +01001080 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001081 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001082
Miao Xie6d07bce2011-01-05 10:07:31 +00001083 /* holding chunk_muext to avoid allocating new chunks */
1084 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001085 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001086 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001087 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1088 total_free_data += found->disk_total - found->disk_used;
1089 total_free_data -=
1090 btrfs_account_ro_block_groups_free_space(found);
1091 }
1092
Yan, Zhengb742bb82010-05-16 10:46:24 -04001093 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001094 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001095 rcu_read_unlock();
1096
Chris Mason8fd17792007-04-19 21:01:03 -04001097 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001098 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001099 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001100 buf->f_bsize = dentry->d_sb->s_blocksize;
1101 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001102 buf->f_bavail = total_free_data;
1103 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1104 if (ret) {
1105 mutex_unlock(&root->fs_info->chunk_mutex);
1106 return ret;
1107 }
1108 buf->f_bavail += total_free_data;
1109 buf->f_bavail = buf->f_bavail >> bits;
1110 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001111
David Woodhouse9d036322008-08-18 12:01:52 +01001112 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001113 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001114 on a big-endian or little-endian host */
1115 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1116 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001117 /* Mask in the root object ID too, to disambiguate subvols */
1118 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1119 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1120
Chris Mason8fd17792007-04-19 21:01:03 -04001121 return 0;
1122}
Chris Masonb5133862007-04-24 11:52:22 -04001123
Chris Mason2e635a22007-03-21 11:12:56 -04001124static struct file_system_type btrfs_fs_type = {
1125 .owner = THIS_MODULE,
1126 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001127 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001128 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001129 .fs_flags = FS_REQUIRES_DEV,
1130};
Chris Masona9218f62008-03-24 15:02:04 -04001131
Chris Masond352ac62008-09-29 15:18:18 -04001132/*
1133 * used by btrfsctl to scan devices when no FS is mounted
1134 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001135static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1136 unsigned long arg)
1137{
1138 struct btrfs_ioctl_vol_args *vol;
1139 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001140 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001141
Chris Masone441d542009-01-05 16:57:23 -05001142 if (!capable(CAP_SYS_ADMIN))
1143 return -EPERM;
1144
Li Zefandae7b662009-04-08 15:06:54 +08001145 vol = memdup_user((void __user *)arg, sizeof(*vol));
1146 if (IS_ERR(vol))
1147 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001148
Chris Mason8a4b83c2008-03-24 15:02:07 -04001149 switch (cmd) {
1150 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001151 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001152 &btrfs_fs_type, &fs_devices);
1153 break;
1154 }
Li Zefandae7b662009-04-08 15:06:54 +08001155
Chris Mason8a4b83c2008-03-24 15:02:07 -04001156 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001157 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001158}
1159
Linus Torvalds01762602009-01-10 06:09:52 -08001160static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001161{
1162 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001163 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1164 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001165 return 0;
Yaned0dab62008-01-22 12:46:56 -05001166}
1167
Linus Torvalds01762602009-01-10 06:09:52 -08001168static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001169{
1170 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001171 mutex_unlock(&root->fs_info->cleaner_mutex);
1172 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001173 return 0;
Yaned0dab62008-01-22 12:46:56 -05001174}
Chris Mason2e635a22007-03-21 11:12:56 -04001175
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001176static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001177 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001178 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001179 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001180 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001181 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001182 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -04001183 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001184 .alloc_inode = btrfs_alloc_inode,
1185 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001186 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001187 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001188 .freeze_fs = btrfs_freeze,
1189 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001190};
Chris Masona9218f62008-03-24 15:02:04 -04001191
1192static const struct file_operations btrfs_ctl_fops = {
1193 .unlocked_ioctl = btrfs_control_ioctl,
1194 .compat_ioctl = btrfs_control_ioctl,
1195 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001196 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001197};
1198
1199static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001200 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001201 .name = "btrfs-control",
1202 .fops = &btrfs_ctl_fops
1203};
1204
Kay Sievers578454f2010-05-20 18:07:20 +02001205MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1206MODULE_ALIAS("devname:btrfs-control");
1207
Chris Masona9218f62008-03-24 15:02:04 -04001208static int btrfs_interface_init(void)
1209{
1210 return misc_register(&btrfs_misc);
1211}
1212
Christoph Hellwigb2950862008-12-02 09:54:17 -05001213static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001214{
1215 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001216 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001217}
1218
Chris Mason2e635a22007-03-21 11:12:56 -04001219static int __init init_btrfs_fs(void)
1220{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001221 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001222
1223 err = btrfs_init_sysfs();
1224 if (err)
1225 return err;
1226
Li Zefan261507a02010-12-17 14:21:50 +08001227 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001228 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001229 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001230
Li Zefan261507a02010-12-17 14:21:50 +08001231 err = btrfs_init_cachep();
1232 if (err)
1233 goto free_compress;
1234
Chris Masond1310b22008-01-24 16:13:08 -05001235 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001236 if (err)
1237 goto free_cachep;
1238
Chris Masond1310b22008-01-24 16:13:08 -05001239 err = extent_map_init();
1240 if (err)
1241 goto free_extent_io;
1242
Miao Xie16cdcec2011-04-22 18:12:22 +08001243 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001244 if (err)
1245 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001246
Miao Xie16cdcec2011-04-22 18:12:22 +08001247 err = btrfs_interface_init();
1248 if (err)
1249 goto free_delayed_inode;
1250
Chris Masona9218f62008-03-24 15:02:04 -04001251 err = register_filesystem(&btrfs_fs_type);
1252 if (err)
1253 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001254
1255 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001256 return 0;
1257
Chris Masona9218f62008-03-24 15:02:04 -04001258unregister_ioctl:
1259 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001260free_delayed_inode:
1261 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001262free_extent_map:
1263 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001264free_extent_io:
1265 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001266free_cachep:
1267 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001268free_compress:
1269 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001270free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001271 btrfs_exit_sysfs();
1272 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001273}
1274
1275static void __exit exit_btrfs_fs(void)
1276{
Chris Mason39279cc2007-06-12 06:35:45 -04001277 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001278 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001279 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001280 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001281 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001282 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001283 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001284 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001285 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001286}
1287
1288module_init(init_btrfs_fs)
1289module_exit(exit_btrfs_fs)
1290
1291MODULE_LICENSE("GPL");