blob: 96c1af26565d7fd700d7ececf58b36fcdd90e34b [file] [log] [blame]
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001/*
2 * fs/f2fs/super.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/statfs.h>
15#include <linux/buffer_head.h>
16#include <linux/backing-dev.h>
17#include <linux/kthread.h>
18#include <linux/parser.h>
19#include <linux/mount.h>
20#include <linux/seq_file.h>
21#include <linux/proc_fs.h>
22#include <linux/random.h>
23#include <linux/exportfs.h>
24#include <linux/blkdev.h>
25#include <linux/f2fs_fs.h>
26#include <linux/sysfs.h>
27
28#include "f2fs.h"
29#include "node.h"
30#include "segment.h"
31#include "xattr.h"
32#include "gc.h"
33
34#define CREATE_TRACE_POINTS
35#include <trace/events/f2fs.h>
36
37static struct proc_dir_entry *f2fs_proc_root;
38static struct kmem_cache *f2fs_inode_cachep;
39static struct kset *f2fs_kset;
40
41enum {
42 Opt_gc_background,
43 Opt_disable_roll_forward,
44 Opt_discard,
45 Opt_noheap,
46 Opt_user_xattr,
47 Opt_nouser_xattr,
48 Opt_acl,
49 Opt_noacl,
50 Opt_active_logs,
51 Opt_disable_ext_identify,
52 Opt_inline_xattr,
Changman Leeb1a94e82013-11-15 10:42:51 +090053 Opt_inline_data,
Evan McClainf3f030d2014-07-17 21:16:35 -040054 Opt_flush_merge,
Linus Torvalds8005ecc2012-12-20 13:54:51 -080055 Opt_err,
56};
57
58static match_table_t f2fs_tokens = {
59 {Opt_gc_background, "background_gc=%s"},
60 {Opt_disable_roll_forward, "disable_roll_forward"},
61 {Opt_discard, "discard"},
62 {Opt_noheap, "no_heap"},
63 {Opt_user_xattr, "user_xattr"},
64 {Opt_nouser_xattr, "nouser_xattr"},
65 {Opt_acl, "acl"},
66 {Opt_noacl, "noacl"},
67 {Opt_active_logs, "active_logs=%u"},
68 {Opt_disable_ext_identify, "disable_ext_identify"},
69 {Opt_inline_xattr, "inline_xattr"},
Changman Leeb1a94e82013-11-15 10:42:51 +090070 {Opt_inline_data, "inline_data"},
Evan McClainf3f030d2014-07-17 21:16:35 -040071 {Opt_flush_merge, "flush_merge"},
Linus Torvalds8005ecc2012-12-20 13:54:51 -080072 {Opt_err, NULL},
73};
74
75/* Sysfs support for f2fs */
76enum {
77 GC_THREAD, /* struct f2fs_gc_thread */
78 SM_INFO, /* struct f2fs_sm_info */
Jaegeuk Kim327c57d2014-03-19 13:31:37 +090079 NM_INFO, /* struct f2fs_nm_info */
Changman Leeb1a94e82013-11-15 10:42:51 +090080 F2FS_SBI, /* struct f2fs_sb_info */
Linus Torvalds8005ecc2012-12-20 13:54:51 -080081};
82
83struct f2fs_attr {
84 struct attribute attr;
85 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
86 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
87 const char *, size_t);
88 int struct_type;
89 int offset;
90};
91
92static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
93{
94 if (struct_type == GC_THREAD)
95 return (unsigned char *)sbi->gc_thread;
96 else if (struct_type == SM_INFO)
97 return (unsigned char *)SM_I(sbi);
Jaegeuk Kim327c57d2014-03-19 13:31:37 +090098 else if (struct_type == NM_INFO)
99 return (unsigned char *)NM_I(sbi);
Changman Leeb1a94e82013-11-15 10:42:51 +0900100 else if (struct_type == F2FS_SBI)
101 return (unsigned char *)sbi;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800102 return NULL;
103}
104
105static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
106 struct f2fs_sb_info *sbi, char *buf)
107{
108 unsigned char *ptr = NULL;
109 unsigned int *ui;
110
111 ptr = __struct_ptr(sbi, a->struct_type);
112 if (!ptr)
113 return -EINVAL;
114
115 ui = (unsigned int *)(ptr + a->offset);
116
117 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
118}
119
120static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
121 struct f2fs_sb_info *sbi,
122 const char *buf, size_t count)
123{
124 unsigned char *ptr;
125 unsigned long t;
126 unsigned int *ui;
127 ssize_t ret;
128
129 ptr = __struct_ptr(sbi, a->struct_type);
130 if (!ptr)
131 return -EINVAL;
132
133 ui = (unsigned int *)(ptr + a->offset);
134
135 ret = kstrtoul(skip_spaces(buf), 0, &t);
136 if (ret < 0)
137 return ret;
138 *ui = t;
139 return count;
140}
141
142static ssize_t f2fs_attr_show(struct kobject *kobj,
143 struct attribute *attr, char *buf)
144{
145 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
146 s_kobj);
147 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
148
149 return a->show ? a->show(a, sbi, buf) : 0;
150}
151
152static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
153 const char *buf, size_t len)
154{
155 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
156 s_kobj);
157 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
158
159 return a->store ? a->store(a, sbi, buf, len) : 0;
160}
161
162static void f2fs_sb_release(struct kobject *kobj)
163{
164 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
165 s_kobj);
166 complete(&sbi->s_kobj_unregister);
167}
168
169#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
170static struct f2fs_attr f2fs_attr_##_name = { \
171 .attr = {.name = __stringify(_name), .mode = _mode }, \
172 .show = _show, \
173 .store = _store, \
174 .struct_type = _struct_type, \
175 .offset = _offset \
176}
177
178#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
179 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
180 f2fs_sbi_show, f2fs_sbi_store, \
181 offsetof(struct struct_name, elname))
182
183F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
184F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
185F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
186F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
187F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
Changman Leeb1a94e82013-11-15 10:42:51 +0900188F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
189F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
190F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
Jaegeuk Kim327c57d2014-03-19 13:31:37 +0900191F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ram_thresh, ram_thresh);
Changman Leeb1a94e82013-11-15 10:42:51 +0900192F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900193F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800194
195#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
196static struct attribute *f2fs_attrs[] = {
197 ATTR_LIST(gc_min_sleep_time),
198 ATTR_LIST(gc_max_sleep_time),
199 ATTR_LIST(gc_no_gc_sleep_time),
200 ATTR_LIST(gc_idle),
201 ATTR_LIST(reclaim_segments),
Changman Leeb1a94e82013-11-15 10:42:51 +0900202 ATTR_LIST(max_small_discards),
203 ATTR_LIST(ipu_policy),
204 ATTR_LIST(min_ipu_util),
205 ATTR_LIST(max_victim_search),
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900206 ATTR_LIST(dir_level),
Jaegeuk Kim327c57d2014-03-19 13:31:37 +0900207 ATTR_LIST(ram_thresh),
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800208 NULL,
209};
210
211static const struct sysfs_ops f2fs_attr_ops = {
212 .show = f2fs_attr_show,
213 .store = f2fs_attr_store,
214};
215
216static struct kobj_type f2fs_ktype = {
217 .default_attrs = f2fs_attrs,
218 .sysfs_ops = &f2fs_attr_ops,
219 .release = f2fs_sb_release,
220};
221
222void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
223{
224 struct va_format vaf;
225 va_list args;
226
227 va_start(args, fmt);
228 vaf.fmt = fmt;
229 vaf.va = &args;
230 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
231 va_end(args);
232}
233
234static void init_once(void *foo)
235{
236 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
237
238 inode_init_once(&fi->vfs_inode);
239}
240
241static int parse_options(struct super_block *sb, char *options)
242{
243 struct f2fs_sb_info *sbi = F2FS_SB(sb);
244 substring_t args[MAX_OPT_ARGS];
245 char *p, *name;
246 int arg = 0;
247
248 if (!options)
249 return 0;
250
251 while ((p = strsep(&options, ",")) != NULL) {
252 int token;
253 if (!*p)
254 continue;
255 /*
256 * Initialize args struct so we know whether arg was
257 * found; some options take optional arguments.
258 */
259 args[0].to = args[0].from = NULL;
260 token = match_token(p, f2fs_tokens, args);
261
262 switch (token) {
263 case Opt_gc_background:
264 name = match_strdup(&args[0]);
265
266 if (!name)
267 return -ENOMEM;
Chao Yu23f5a1e2014-03-18 09:07:59 +0800268 if (strlen(name) == 2 && !strncmp(name, "on", 2))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800269 set_opt(sbi, BG_GC);
Chao Yu23f5a1e2014-03-18 09:07:59 +0800270 else if (strlen(name) == 3 && !strncmp(name, "off", 3))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800271 clear_opt(sbi, BG_GC);
272 else {
273 kfree(name);
274 return -EINVAL;
275 }
276 kfree(name);
277 break;
278 case Opt_disable_roll_forward:
279 set_opt(sbi, DISABLE_ROLL_FORWARD);
280 break;
281 case Opt_discard:
282 set_opt(sbi, DISCARD);
283 break;
284 case Opt_noheap:
285 set_opt(sbi, NOHEAP);
286 break;
287#ifdef CONFIG_F2FS_FS_XATTR
288 case Opt_user_xattr:
289 set_opt(sbi, XATTR_USER);
290 break;
291 case Opt_nouser_xattr:
292 clear_opt(sbi, XATTR_USER);
293 break;
294 case Opt_inline_xattr:
295 set_opt(sbi, INLINE_XATTR);
296 break;
297#else
298 case Opt_user_xattr:
299 f2fs_msg(sb, KERN_INFO,
300 "user_xattr options not supported");
301 break;
302 case Opt_nouser_xattr:
303 f2fs_msg(sb, KERN_INFO,
304 "nouser_xattr options not supported");
305 break;
306 case Opt_inline_xattr:
307 f2fs_msg(sb, KERN_INFO,
308 "inline_xattr options not supported");
309 break;
310#endif
311#ifdef CONFIG_F2FS_FS_POSIX_ACL
312 case Opt_acl:
313 set_opt(sbi, POSIX_ACL);
314 break;
315 case Opt_noacl:
316 clear_opt(sbi, POSIX_ACL);
317 break;
318#else
319 case Opt_acl:
320 f2fs_msg(sb, KERN_INFO, "acl options not supported");
321 break;
322 case Opt_noacl:
323 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
324 break;
325#endif
326 case Opt_active_logs:
327 if (args->from && match_int(args, &arg))
328 return -EINVAL;
329 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
330 return -EINVAL;
331 sbi->active_logs = arg;
332 break;
333 case Opt_disable_ext_identify:
334 set_opt(sbi, DISABLE_EXT_IDENTIFY);
335 break;
Changman Leeb1a94e82013-11-15 10:42:51 +0900336 case Opt_inline_data:
337 set_opt(sbi, INLINE_DATA);
338 break;
Evan McClainf3f030d2014-07-17 21:16:35 -0400339 case Opt_flush_merge:
340 set_opt(sbi, FLUSH_MERGE);
341 break;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800342 default:
343 f2fs_msg(sb, KERN_ERR,
344 "Unrecognized mount option \"%s\" or missing value",
345 p);
346 return -EINVAL;
347 }
348 }
349 return 0;
350}
351
352static struct inode *f2fs_alloc_inode(struct super_block *sb)
353{
354 struct f2fs_inode_info *fi;
355
Changman Leeb1a94e82013-11-15 10:42:51 +0900356 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800357 if (!fi)
358 return NULL;
359
360 init_once((void *) fi);
361
Evan McClainf3f030d2014-07-17 21:16:35 -0400362 /* Initialize f2fs-specific inode info */
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800363 fi->vfs_inode.i_version = 1;
364 atomic_set(&fi->dirty_dents, 0);
365 fi->i_current_depth = 1;
366 fi->i_advise = 0;
367 rwlock_init(&fi->ext.ext_lock);
Jaegeuk Kimee722542014-03-20 19:10:08 +0900368 init_rwsem(&fi->i_sem);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800369
370 set_inode_flag(fi, FI_NEW_INODE);
371
372 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
373 set_inode_flag(fi, FI_INLINE_XATTR);
374
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900375 /* Will be used by directory only */
376 fi->i_dir_level = F2FS_SB(sb)->dir_level;
377
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800378 return &fi->vfs_inode;
379}
380
381static int f2fs_drop_inode(struct inode *inode)
382{
383 /*
384 * This is to avoid a deadlock condition like below.
385 * writeback_single_inode(inode)
386 * - f2fs_write_data_page
387 * - f2fs_gc -> iput -> evict
388 * - inode_wait_for_writeback(inode)
389 */
390 if (!inode_unhashed(inode) && inode->i_state & I_SYNC)
391 return 0;
392 return generic_drop_inode(inode);
393}
394
395/*
396 * f2fs_dirty_inode() is called from __mark_inode_dirty()
397 *
398 * We should call set_dirty_inode to write the dirty inode through write_inode.
399 */
400static void f2fs_dirty_inode(struct inode *inode, int flags)
401{
402 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
403}
404
405static void f2fs_i_callback(struct rcu_head *head)
406{
407 struct inode *inode = container_of(head, struct inode, i_rcu);
408 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
409}
410
411static void f2fs_destroy_inode(struct inode *inode)
412{
413 call_rcu(&inode->i_rcu, f2fs_i_callback);
414}
415
416static void f2fs_put_super(struct super_block *sb)
417{
418 struct f2fs_sb_info *sbi = F2FS_SB(sb);
419
420 if (sbi->s_proc) {
421 remove_proc_entry("segment_info", sbi->s_proc);
422 remove_proc_entry(sb->s_id, f2fs_proc_root);
423 }
424 kobject_del(&sbi->s_kobj);
425
426 f2fs_destroy_stats(sbi);
427 stop_gc_thread(sbi);
428
429 /* We don't need to do checkpoint when it's clean */
430 if (sbi->s_dirty && get_pages(sbi, F2FS_DIRTY_NODES))
431 write_checkpoint(sbi, true);
432
433 iput(sbi->node_inode);
434 iput(sbi->meta_inode);
435
436 /* destroy f2fs internal modules */
437 destroy_node_manager(sbi);
438 destroy_segment_manager(sbi);
439
440 kfree(sbi->ckpt);
441 kobject_put(&sbi->s_kobj);
442 wait_for_completion(&sbi->s_kobj_unregister);
443
444 sb->s_fs_info = NULL;
445 brelse(sbi->raw_super_buf);
446 kfree(sbi);
447}
448
449int f2fs_sync_fs(struct super_block *sb, int sync)
450{
451 struct f2fs_sb_info *sbi = F2FS_SB(sb);
452
453 trace_f2fs_sync_fs(sb, sync);
454
455 if (!sbi->s_dirty && !get_pages(sbi, F2FS_DIRTY_NODES))
456 return 0;
457
458 if (sync) {
459 mutex_lock(&sbi->gc_mutex);
460 write_checkpoint(sbi, false);
461 mutex_unlock(&sbi->gc_mutex);
462 } else {
463 f2fs_balance_fs(sbi);
464 }
465
466 return 0;
467}
468
Evan McClainf3f030d2014-07-17 21:16:35 -0400469static int f2fs_freeze(struct super_block *sb)
470{
471 int err;
472
473 if (f2fs_readonly(sb))
474 return 0;
475
476 err = f2fs_sync_fs(sb, 1);
477 return err;
478}
479
480static int f2fs_unfreeze(struct super_block *sb)
481{
482 return 0;
483}
484
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800485static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
486{
487 struct super_block *sb = dentry->d_sb;
488 struct f2fs_sb_info *sbi = F2FS_SB(sb);
489 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
490 block_t total_count, user_block_count, start_count, ovp_count;
491
492 total_count = le64_to_cpu(sbi->raw_super->block_count);
493 user_block_count = sbi->user_block_count;
494 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
495 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
496 buf->f_type = F2FS_SUPER_MAGIC;
497 buf->f_bsize = sbi->blocksize;
498
499 buf->f_blocks = total_count - start_count;
500 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
501 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
502
503 buf->f_files = sbi->total_node_count;
504 buf->f_ffree = sbi->total_node_count - valid_inode_count(sbi);
505
506 buf->f_namelen = F2FS_NAME_LEN;
507 buf->f_fsid.val[0] = (u32)id;
508 buf->f_fsid.val[1] = (u32)(id >> 32);
509
510 return 0;
511}
512
513static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
514{
515 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
516
Evan McClainf3f030d2014-07-17 21:16:35 -0400517 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, BG_GC))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800518 seq_printf(seq, ",background_gc=%s", "on");
519 else
520 seq_printf(seq, ",background_gc=%s", "off");
521 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
522 seq_puts(seq, ",disable_roll_forward");
523 if (test_opt(sbi, DISCARD))
524 seq_puts(seq, ",discard");
525 if (test_opt(sbi, NOHEAP))
526 seq_puts(seq, ",no_heap_alloc");
527#ifdef CONFIG_F2FS_FS_XATTR
528 if (test_opt(sbi, XATTR_USER))
529 seq_puts(seq, ",user_xattr");
530 else
531 seq_puts(seq, ",nouser_xattr");
532 if (test_opt(sbi, INLINE_XATTR))
533 seq_puts(seq, ",inline_xattr");
534#endif
535#ifdef CONFIG_F2FS_FS_POSIX_ACL
536 if (test_opt(sbi, POSIX_ACL))
537 seq_puts(seq, ",acl");
538 else
539 seq_puts(seq, ",noacl");
540#endif
541 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
542 seq_puts(seq, ",disable_ext_identify");
Changman Leeb1a94e82013-11-15 10:42:51 +0900543 if (test_opt(sbi, INLINE_DATA))
544 seq_puts(seq, ",inline_data");
Evan McClainf3f030d2014-07-17 21:16:35 -0400545 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
546 seq_puts(seq, ",flush_merge");
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800547 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
548
549 return 0;
550}
551
552static int segment_info_seq_show(struct seq_file *seq, void *offset)
553{
554 struct super_block *sb = seq->private;
555 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Changman Leeb1a94e82013-11-15 10:42:51 +0900556 unsigned int total_segs =
557 le32_to_cpu(sbi->raw_super->segment_count_main);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800558 int i;
559
Chao Yufee2a042014-03-17 10:31:06 +0800560 seq_puts(seq, "format: segment_type|valid_blocks\n"
561 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
562
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800563 for (i = 0; i < total_segs; i++) {
Chao Yufee2a042014-03-17 10:31:06 +0800564 struct seg_entry *se = get_seg_entry(sbi, i);
565
566 if ((i % 10) == 0)
567 seq_printf(seq, "%-5d", i);
568 seq_printf(seq, "%d|%-3u", se->type,
569 get_valid_blocks(sbi, i, 1));
Gu Zheng13039f62014-03-07 18:43:33 +0800570 if ((i % 10) == 9 || i == (total_segs - 1))
571 seq_putc(seq, '\n');
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800572 else
Gu Zheng13039f62014-03-07 18:43:33 +0800573 seq_putc(seq, ' ');
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800574 }
Gu Zheng13039f62014-03-07 18:43:33 +0800575
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800576 return 0;
577}
578
579static int segment_info_open_fs(struct inode *inode, struct file *file)
580{
Evan McClain1a808fb2014-03-20 09:12:16 -0400581 return single_open(file, segment_info_seq_show, PDE(inode)->data);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800582}
583
584static const struct file_operations f2fs_seq_segment_info_fops = {
585 .owner = THIS_MODULE,
586 .open = segment_info_open_fs,
587 .read = seq_read,
588 .llseek = seq_lseek,
589 .release = single_release,
590};
591
592static int f2fs_remount(struct super_block *sb, int *flags, char *data)
593{
594 struct f2fs_sb_info *sbi = F2FS_SB(sb);
595 struct f2fs_mount_info org_mount_opt;
596 int err, active_logs;
Evan McClainf3f030d2014-07-17 21:16:35 -0400597 bool need_restart_gc = false;
598 bool need_stop_gc = false;
599
600 sync_filesystem(sb);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800601
602 /*
603 * Save the old mount options in case we
604 * need to restore them.
605 */
606 org_mount_opt = sbi->mount_opt;
607 active_logs = sbi->active_logs;
608
609 /* parse mount options */
610 err = parse_options(sb, data);
611 if (err)
612 goto restore_opts;
613
614 /*
615 * Previous and new state of filesystem is RO,
Evan McClainf3f030d2014-07-17 21:16:35 -0400616 * so skip checking GC and FLUSH_MERGE conditions.
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800617 */
Evan McClainf3f030d2014-07-17 21:16:35 -0400618 if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800619 goto skip;
620
621 /*
622 * We stop the GC thread if FS is mounted as RO
623 * or if background_gc = off is passed in mount
624 * option. Also sync the filesystem.
625 */
626 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
627 if (sbi->gc_thread) {
628 stop_gc_thread(sbi);
629 f2fs_sync_fs(sb, 1);
Evan McClainf3f030d2014-07-17 21:16:35 -0400630 need_restart_gc = true;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800631 }
632 } else if (test_opt(sbi, BG_GC) && !sbi->gc_thread) {
633 err = start_gc_thread(sbi);
634 if (err)
635 goto restore_opts;
Evan McClainf3f030d2014-07-17 21:16:35 -0400636 need_stop_gc = true;
637 }
638
639 /*
640 * We stop issue flush thread if FS is mounted as RO
641 * or if flush_merge is not passed in mount option.
642 */
643 if ((*flags & MS_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
644 destroy_flush_cmd_control(sbi);
645 } else if (test_opt(sbi, FLUSH_MERGE) && !SM_I(sbi)->cmd_control_info) {
646 err = create_flush_cmd_control(sbi);
647 if (err)
648 goto restore_gc;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800649 }
650skip:
651 /* Update the POSIXACL Flag */
652 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
653 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
654 return 0;
Evan McClainf3f030d2014-07-17 21:16:35 -0400655restore_gc:
656 if (need_restart_gc) {
657 if (start_gc_thread(sbi))
658 f2fs_msg(sbi->sb, KERN_WARNING,
659 "background gc thread is stop");
660 } else if (need_stop_gc) {
661 stop_gc_thread(sbi);
662 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800663restore_opts:
664 sbi->mount_opt = org_mount_opt;
665 sbi->active_logs = active_logs;
666 return err;
667}
668
669static struct super_operations f2fs_sops = {
670 .alloc_inode = f2fs_alloc_inode,
671 .drop_inode = f2fs_drop_inode,
672 .destroy_inode = f2fs_destroy_inode,
673 .write_inode = f2fs_write_inode,
674 .dirty_inode = f2fs_dirty_inode,
675 .show_options = f2fs_show_options,
676 .evict_inode = f2fs_evict_inode,
677 .put_super = f2fs_put_super,
678 .sync_fs = f2fs_sync_fs,
Evan McClainf3f030d2014-07-17 21:16:35 -0400679 .freeze_fs = f2fs_freeze,
680 .unfreeze_fs = f2fs_unfreeze,
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800681 .statfs = f2fs_statfs,
682 .remount_fs = f2fs_remount,
683};
684
685static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
686 u64 ino, u32 generation)
687{
688 struct f2fs_sb_info *sbi = F2FS_SB(sb);
689 struct inode *inode;
690
Chao Yuada8ce22014-06-12 13:23:41 +0800691 if (check_nid_range(sbi, ino))
Chao Yu4f9d66d2014-03-12 17:08:36 +0800692 return ERR_PTR(-ESTALE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800693
694 /*
695 * f2fs_iget isn't quite right if the inode is currently unallocated!
696 * However f2fs_iget currently does appropriate checks to handle stale
697 * inodes so everything is OK.
698 */
699 inode = f2fs_iget(sb, ino);
700 if (IS_ERR(inode))
701 return ERR_CAST(inode);
Changman Leeb1a94e82013-11-15 10:42:51 +0900702 if (unlikely(generation && inode->i_generation != generation)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800703 /* we didn't find the right inode.. */
704 iput(inode);
705 return ERR_PTR(-ESTALE);
706 }
707 return inode;
708}
709
710static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
711 int fh_len, int fh_type)
712{
713 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
714 f2fs_nfs_get_inode);
715}
716
717static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
718 int fh_len, int fh_type)
719{
720 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
721 f2fs_nfs_get_inode);
722}
723
724static const struct export_operations f2fs_export_ops = {
725 .fh_to_dentry = f2fs_fh_to_dentry,
726 .fh_to_parent = f2fs_fh_to_parent,
727 .get_parent = f2fs_get_parent,
728};
729
730static loff_t max_file_size(unsigned bits)
731{
732 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
733 loff_t leaf_count = ADDRS_PER_BLOCK;
734
735 /* two direct node blocks */
736 result += (leaf_count * 2);
737
738 /* two indirect node blocks */
739 leaf_count *= NIDS_PER_BLOCK;
740 result += (leaf_count * 2);
741
742 /* one double indirect node block */
743 leaf_count *= NIDS_PER_BLOCK;
744 result += leaf_count;
745
746 result <<= bits;
747 return result;
748}
749
750static int sanity_check_raw_super(struct super_block *sb,
751 struct f2fs_super_block *raw_super)
752{
753 unsigned int blocksize;
754
755 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
756 f2fs_msg(sb, KERN_INFO,
757 "Magic Mismatch, valid(0x%x) - read(0x%x)",
758 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
759 return 1;
760 }
761
762 /* Currently, support only 4KB page cache size */
763 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
764 f2fs_msg(sb, KERN_INFO,
765 "Invalid page_cache_size (%lu), supports only 4KB\n",
766 PAGE_CACHE_SIZE);
767 return 1;
768 }
769
770 /* Currently, support only 4KB block size */
771 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
772 if (blocksize != F2FS_BLKSIZE) {
773 f2fs_msg(sb, KERN_INFO,
774 "Invalid blocksize (%u), supports only 4KB\n",
775 blocksize);
776 return 1;
777 }
778
779 if (le32_to_cpu(raw_super->log_sectorsize) !=
780 F2FS_LOG_SECTOR_SIZE) {
781 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize");
782 return 1;
783 }
784 if (le32_to_cpu(raw_super->log_sectors_per_block) !=
785 F2FS_LOG_SECTORS_PER_BLOCK) {
786 f2fs_msg(sb, KERN_INFO, "Invalid log sectors per block");
787 return 1;
788 }
789 return 0;
790}
791
792static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
793{
794 unsigned int total, fsmeta;
795 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
796 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
797
798 total = le32_to_cpu(raw_super->segment_count);
799 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
800 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
801 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
802 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
803 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
804
Changman Leeb1a94e82013-11-15 10:42:51 +0900805 if (unlikely(fsmeta >= total))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800806 return 1;
807
Changman Leeb1a94e82013-11-15 10:42:51 +0900808 if (unlikely(is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800809 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
810 return 1;
811 }
812 return 0;
813}
814
815static void init_sb_info(struct f2fs_sb_info *sbi)
816{
817 struct f2fs_super_block *raw_super = sbi->raw_super;
818 int i;
819
820 sbi->log_sectors_per_block =
821 le32_to_cpu(raw_super->log_sectors_per_block);
822 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
823 sbi->blocksize = 1 << sbi->log_blocksize;
824 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
825 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
826 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
827 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
828 sbi->total_sections = le32_to_cpu(raw_super->section_count);
829 sbi->total_node_count =
830 (le32_to_cpu(raw_super->segment_count_nat) / 2)
831 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
832 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
833 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
834 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
835 sbi->cur_victim_sec = NULL_SECNO;
Changman Leeb1a94e82013-11-15 10:42:51 +0900836 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800837
838 for (i = 0; i < NR_COUNT_TYPE; i++)
839 atomic_set(&sbi->nr_pages[i], 0);
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900840
841 sbi->dir_level = DEF_DIR_LEVEL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800842}
843
844/*
845 * Read f2fs raw super block.
846 * Because we have two copies of super block, so read the first one at first,
847 * if the first one is invalid, move to read the second one.
848 */
849static int read_raw_super_block(struct super_block *sb,
850 struct f2fs_super_block **raw_super,
851 struct buffer_head **raw_super_buf)
852{
853 int block = 0;
854
855retry:
856 *raw_super_buf = sb_bread(sb, block);
857 if (!*raw_super_buf) {
858 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
859 block + 1);
860 if (block == 0) {
861 block++;
862 goto retry;
863 } else {
864 return -EIO;
865 }
866 }
867
868 *raw_super = (struct f2fs_super_block *)
869 ((char *)(*raw_super_buf)->b_data + F2FS_SUPER_OFFSET);
870
871 /* sanity checking of raw super */
872 if (sanity_check_raw_super(sb, *raw_super)) {
873 brelse(*raw_super_buf);
Changman Leeb1a94e82013-11-15 10:42:51 +0900874 f2fs_msg(sb, KERN_ERR,
875 "Can't find valid F2FS filesystem in %dth superblock",
876 block + 1);
877 if (block == 0) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800878 block++;
879 goto retry;
880 } else {
881 return -EINVAL;
882 }
883 }
884
885 return 0;
886}
887
888static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
889{
890 struct f2fs_sb_info *sbi;
891 struct f2fs_super_block *raw_super;
892 struct buffer_head *raw_super_buf;
893 struct inode *root;
894 long err = -EINVAL;
Changman Leeb1a94e82013-11-15 10:42:51 +0900895 int i;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800896
897 /* allocate memory for f2fs-specific super block info */
898 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
899 if (!sbi)
900 return -ENOMEM;
901
902 /* set a block size */
Changman Leeb1a94e82013-11-15 10:42:51 +0900903 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800904 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
905 goto free_sbi;
906 }
907
908 err = read_raw_super_block(sb, &raw_super, &raw_super_buf);
909 if (err)
910 goto free_sbi;
911
912 sb->s_fs_info = sbi;
913 /* init some FS parameters */
914 sbi->active_logs = NR_CURSEG_TYPE;
915
916 set_opt(sbi, BG_GC);
917
918#ifdef CONFIG_F2FS_FS_XATTR
919 set_opt(sbi, XATTR_USER);
920#endif
921#ifdef CONFIG_F2FS_FS_POSIX_ACL
922 set_opt(sbi, POSIX_ACL);
923#endif
924 /* parse mount options */
925 err = parse_options(sb, (char *)data);
926 if (err)
927 goto free_sb_buf;
928
929 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
930 sb->s_max_links = F2FS_LINK_MAX;
931 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
932
933 sb->s_op = &f2fs_sops;
934 sb->s_xattr = f2fs_xattr_handlers;
935 sb->s_export_op = &f2fs_export_ops;
936 sb->s_magic = F2FS_SUPER_MAGIC;
937 sb->s_time_gran = 1;
938 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
939 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
940 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
941
942 /* init f2fs-specific super block info */
943 sbi->sb = sb;
944 sbi->raw_super = raw_super;
945 sbi->raw_super_buf = raw_super_buf;
946 mutex_init(&sbi->gc_mutex);
947 mutex_init(&sbi->writepages);
948 mutex_init(&sbi->cp_mutex);
949 mutex_init(&sbi->node_write);
950 sbi->por_doing = false;
951 spin_lock_init(&sbi->stat_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900952
Evan McClainf3f030d2014-07-17 21:16:35 -0400953 init_rwsem(&sbi->read_io.io_rwsem);
Changman Leeb1a94e82013-11-15 10:42:51 +0900954 sbi->read_io.sbi = sbi;
955 sbi->read_io.bio = NULL;
956 for (i = 0; i < NR_PAGE_TYPE; i++) {
Evan McClainf3f030d2014-07-17 21:16:35 -0400957 init_rwsem(&sbi->write_io[i].io_rwsem);
Changman Leeb1a94e82013-11-15 10:42:51 +0900958 sbi->write_io[i].sbi = sbi;
959 sbi->write_io[i].bio = NULL;
960 }
961
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800962 init_rwsem(&sbi->cp_rwsem);
963 init_waitqueue_head(&sbi->cp_wait);
964 init_sb_info(sbi);
965
966 /* get an inode for meta space */
967 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
968 if (IS_ERR(sbi->meta_inode)) {
969 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
970 err = PTR_ERR(sbi->meta_inode);
971 goto free_sb_buf;
972 }
973
974 err = get_valid_checkpoint(sbi);
975 if (err) {
976 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
977 goto free_meta_inode;
978 }
979
980 /* sanity checking of checkpoint */
981 err = -EINVAL;
982 if (sanity_check_ckpt(sbi)) {
983 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
984 goto free_cp;
985 }
986
987 sbi->total_valid_node_count =
988 le32_to_cpu(sbi->ckpt->valid_node_count);
989 sbi->total_valid_inode_count =
990 le32_to_cpu(sbi->ckpt->valid_inode_count);
991 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
992 sbi->total_valid_block_count =
993 le64_to_cpu(sbi->ckpt->valid_block_count);
994 sbi->last_valid_block_count = sbi->total_valid_block_count;
995 sbi->alloc_valid_block_count = 0;
996 INIT_LIST_HEAD(&sbi->dir_inode_list);
997 spin_lock_init(&sbi->dir_inode_lock);
998
999 init_orphan_info(sbi);
1000
1001 /* setup f2fs internal modules */
1002 err = build_segment_manager(sbi);
1003 if (err) {
1004 f2fs_msg(sb, KERN_ERR,
1005 "Failed to initialize F2FS segment manager");
1006 goto free_sm;
1007 }
1008 err = build_node_manager(sbi);
1009 if (err) {
1010 f2fs_msg(sb, KERN_ERR,
1011 "Failed to initialize F2FS node manager");
1012 goto free_nm;
1013 }
1014
1015 build_gc_manager(sbi);
1016
1017 /* get an inode for node space */
1018 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
1019 if (IS_ERR(sbi->node_inode)) {
1020 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
1021 err = PTR_ERR(sbi->node_inode);
1022 goto free_nm;
1023 }
1024
1025 /* if there are nt orphan nodes free them */
Changman Leeb1a94e82013-11-15 10:42:51 +09001026 recover_orphan_inodes(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001027
1028 /* read root inode and dentry */
1029 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
1030 if (IS_ERR(root)) {
1031 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
1032 err = PTR_ERR(root);
1033 goto free_node_inode;
1034 }
Changman Leeb1a94e82013-11-15 10:42:51 +09001035 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1036 err = -EINVAL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001037 goto free_root_inode;
Changman Leeb1a94e82013-11-15 10:42:51 +09001038 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001039
1040 sb->s_root = d_make_root(root); /* allocate root dentry */
1041 if (!sb->s_root) {
1042 err = -ENOMEM;
1043 goto free_root_inode;
1044 }
1045
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001046 err = f2fs_build_stats(sbi);
1047 if (err)
Jaegeuk Kim07264102014-02-19 18:23:32 +09001048 goto free_root_inode;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001049
1050 if (f2fs_proc_root)
1051 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1052
1053 if (sbi->s_proc)
1054 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
1055 &f2fs_seq_segment_info_fops, sb);
1056
1057 if (test_opt(sbi, DISCARD)) {
1058 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1059 if (!blk_queue_discard(q))
1060 f2fs_msg(sb, KERN_WARNING,
1061 "mounting with \"discard\" option, but "
1062 "the device does not support discard");
1063 }
1064
1065 sbi->s_kobj.kset = f2fs_kset;
1066 init_completion(&sbi->s_kobj_unregister);
1067 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1068 "%s", sb->s_id);
1069 if (err)
Jaegeuk Kim07264102014-02-19 18:23:32 +09001070 goto free_proc;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001071
Jaegeuk Kim07264102014-02-19 18:23:32 +09001072 /* recover fsynced data */
1073 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
1074 err = recover_fsync_data(sbi);
1075 if (err)
1076 f2fs_msg(sb, KERN_ERR,
1077 "Cannot recover all fsync data errno=%ld", err);
1078 }
1079
1080 /*
1081 * If filesystem is not mounted as read-only then
1082 * do start the gc_thread.
1083 */
Evan McClainf3f030d2014-07-17 21:16:35 -04001084 if (!f2fs_readonly(sb)) {
Jaegeuk Kim07264102014-02-19 18:23:32 +09001085 /* After POR, we can run background GC thread.*/
1086 err = start_gc_thread(sbi);
1087 if (err)
1088 goto free_kobj;
1089 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001090 return 0;
Jaegeuk Kim07264102014-02-19 18:23:32 +09001091
1092free_kobj:
1093 kobject_del(&sbi->s_kobj);
1094free_proc:
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001095 if (sbi->s_proc) {
1096 remove_proc_entry("segment_info", sbi->s_proc);
1097 remove_proc_entry(sb->s_id, f2fs_proc_root);
1098 }
1099 f2fs_destroy_stats(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001100free_root_inode:
1101 dput(sb->s_root);
1102 sb->s_root = NULL;
1103free_node_inode:
1104 iput(sbi->node_inode);
1105free_nm:
1106 destroy_node_manager(sbi);
1107free_sm:
1108 destroy_segment_manager(sbi);
1109free_cp:
1110 kfree(sbi->ckpt);
1111free_meta_inode:
1112 make_bad_inode(sbi->meta_inode);
1113 iput(sbi->meta_inode);
1114free_sb_buf:
1115 brelse(raw_super_buf);
1116free_sbi:
1117 kfree(sbi);
1118 return err;
1119}
1120
1121static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1122 const char *dev_name, void *data)
1123{
1124 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1125}
1126
1127static struct file_system_type f2fs_fs_type = {
1128 .owner = THIS_MODULE,
1129 .name = "f2fs",
1130 .mount = f2fs_mount,
1131 .kill_sb = kill_block_super,
1132 .fs_flags = FS_REQUIRES_DEV,
1133};
1134
1135static int __init init_inodecache(void)
1136{
1137 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
Gu Zhenge33dcea2014-03-07 18:43:28 +08001138 sizeof(struct f2fs_inode_info));
Changman Leeb1a94e82013-11-15 10:42:51 +09001139 if (!f2fs_inode_cachep)
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001140 return -ENOMEM;
1141 return 0;
1142}
1143
1144static void destroy_inodecache(void)
1145{
1146 /*
1147 * Make sure all delayed rcu free inodes are flushed before we
1148 * destroy cache.
1149 */
1150 rcu_barrier();
1151 kmem_cache_destroy(f2fs_inode_cachep);
1152}
1153
1154static int __init init_f2fs_fs(void)
1155{
1156 int err;
1157
1158 err = init_inodecache();
1159 if (err)
1160 goto fail;
1161 err = create_node_manager_caches();
1162 if (err)
1163 goto free_inodecache;
Changman Leeb1a94e82013-11-15 10:42:51 +09001164 err = create_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001165 if (err)
1166 goto free_node_manager_caches;
Changman Leeb1a94e82013-11-15 10:42:51 +09001167 err = create_gc_caches();
1168 if (err)
1169 goto free_segment_manager_caches;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001170 err = create_checkpoint_caches();
1171 if (err)
1172 goto free_gc_caches;
1173 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
1174 if (!f2fs_kset) {
1175 err = -ENOMEM;
1176 goto free_checkpoint_caches;
1177 }
1178 err = register_filesystem(&f2fs_fs_type);
1179 if (err)
1180 goto free_kset;
1181 f2fs_create_root_stats();
1182 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
1183 return 0;
1184
1185free_kset:
1186 kset_unregister(f2fs_kset);
1187free_checkpoint_caches:
1188 destroy_checkpoint_caches();
1189free_gc_caches:
1190 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001191free_segment_manager_caches:
1192 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001193free_node_manager_caches:
1194 destroy_node_manager_caches();
1195free_inodecache:
1196 destroy_inodecache();
1197fail:
1198 return err;
1199}
1200
1201static void __exit exit_f2fs_fs(void)
1202{
1203 remove_proc_entry("fs/f2fs", NULL);
1204 f2fs_destroy_root_stats();
1205 unregister_filesystem(&f2fs_fs_type);
1206 destroy_checkpoint_caches();
1207 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001208 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001209 destroy_node_manager_caches();
1210 destroy_inodecache();
1211 kset_unregister(f2fs_kset);
1212}
1213
1214module_init(init_f2fs_fs)
1215module_exit(exit_f2fs_fs)
1216
1217MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1218MODULE_DESCRIPTION("Flash Friendly File System");
1219MODULE_LICENSE("GPL");