]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/f2fs/super.c
f2fs: add infra struct and helper for inline dir
[mirror_ubuntu-bionic-kernel.git] / fs / f2fs / super.c
CommitLineData
0a8165d7 1/*
aff063e2
JK
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>
aff063e2
JK
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>
5e176d54 21#include <linux/proc_fs.h>
aff063e2
JK
22#include <linux/random.h>
23#include <linux/exportfs.h>
d3ee456d 24#include <linux/blkdev.h>
aff063e2 25#include <linux/f2fs_fs.h>
b59d0bae 26#include <linux/sysfs.h>
aff063e2
JK
27
28#include "f2fs.h"
29#include "node.h"
5ec4e49f 30#include "segment.h"
aff063e2 31#include "xattr.h"
b59d0bae 32#include "gc.h"
aff063e2 33
a2a4a7e4
NJ
34#define CREATE_TRACE_POINTS
35#include <trace/events/f2fs.h>
36
5e176d54 37static struct proc_dir_entry *f2fs_proc_root;
aff063e2 38static struct kmem_cache *f2fs_inode_cachep;
b59d0bae 39static struct kset *f2fs_kset;
aff063e2
JK
40
41enum {
696c018c 42 Opt_gc_background,
aff063e2
JK
43 Opt_disable_roll_forward,
44 Opt_discard,
45 Opt_noheap,
4058c511 46 Opt_user_xattr,
aff063e2 47 Opt_nouser_xattr,
4058c511 48 Opt_acl,
aff063e2
JK
49 Opt_noacl,
50 Opt_active_logs,
51 Opt_disable_ext_identify,
444c580f 52 Opt_inline_xattr,
8274de77 53 Opt_inline_data,
6b4afdd7 54 Opt_flush_merge,
0f7b2abd 55 Opt_nobarrier,
aff063e2
JK
56 Opt_err,
57};
58
59static match_table_t f2fs_tokens = {
696c018c 60 {Opt_gc_background, "background_gc=%s"},
aff063e2
JK
61 {Opt_disable_roll_forward, "disable_roll_forward"},
62 {Opt_discard, "discard"},
63 {Opt_noheap, "no_heap"},
4058c511 64 {Opt_user_xattr, "user_xattr"},
aff063e2 65 {Opt_nouser_xattr, "nouser_xattr"},
4058c511 66 {Opt_acl, "acl"},
aff063e2
JK
67 {Opt_noacl, "noacl"},
68 {Opt_active_logs, "active_logs=%u"},
69 {Opt_disable_ext_identify, "disable_ext_identify"},
444c580f 70 {Opt_inline_xattr, "inline_xattr"},
8274de77 71 {Opt_inline_data, "inline_data"},
6b4afdd7 72 {Opt_flush_merge, "flush_merge"},
0f7b2abd 73 {Opt_nobarrier, "nobarrier"},
aff063e2
JK
74 {Opt_err, NULL},
75};
76
b59d0bae 77/* Sysfs support for f2fs */
ea91e9b0
JK
78enum {
79 GC_THREAD, /* struct f2fs_gc_thread */
80 SM_INFO, /* struct f2fs_sm_info */
cdfc41c1 81 NM_INFO, /* struct f2fs_nm_info */
b1c57c1c 82 F2FS_SBI, /* struct f2fs_sb_info */
ea91e9b0
JK
83};
84
b59d0bae
NJ
85struct f2fs_attr {
86 struct attribute attr;
87 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
88 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
89 const char *, size_t);
ea91e9b0 90 int struct_type;
b59d0bae
NJ
91 int offset;
92};
93
ea91e9b0
JK
94static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
95{
96 if (struct_type == GC_THREAD)
97 return (unsigned char *)sbi->gc_thread;
98 else if (struct_type == SM_INFO)
99 return (unsigned char *)SM_I(sbi);
cdfc41c1
JK
100 else if (struct_type == NM_INFO)
101 return (unsigned char *)NM_I(sbi);
b1c57c1c
JK
102 else if (struct_type == F2FS_SBI)
103 return (unsigned char *)sbi;
ea91e9b0
JK
104 return NULL;
105}
106
b59d0bae
NJ
107static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
108 struct f2fs_sb_info *sbi, char *buf)
109{
ea91e9b0 110 unsigned char *ptr = NULL;
b59d0bae
NJ
111 unsigned int *ui;
112
ea91e9b0
JK
113 ptr = __struct_ptr(sbi, a->struct_type);
114 if (!ptr)
b59d0bae
NJ
115 return -EINVAL;
116
ea91e9b0 117 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
118
119 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
120}
121
122static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
123 struct f2fs_sb_info *sbi,
124 const char *buf, size_t count)
125{
ea91e9b0 126 unsigned char *ptr;
b59d0bae
NJ
127 unsigned long t;
128 unsigned int *ui;
129 ssize_t ret;
130
ea91e9b0
JK
131 ptr = __struct_ptr(sbi, a->struct_type);
132 if (!ptr)
b59d0bae
NJ
133 return -EINVAL;
134
ea91e9b0 135 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
136
137 ret = kstrtoul(skip_spaces(buf), 0, &t);
138 if (ret < 0)
139 return ret;
140 *ui = t;
141 return count;
142}
143
144static ssize_t f2fs_attr_show(struct kobject *kobj,
145 struct attribute *attr, char *buf)
146{
147 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
148 s_kobj);
149 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
150
151 return a->show ? a->show(a, sbi, buf) : 0;
152}
153
154static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
155 const char *buf, size_t len)
156{
157 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
158 s_kobj);
159 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
160
161 return a->store ? a->store(a, sbi, buf, len) : 0;
162}
163
164static void f2fs_sb_release(struct kobject *kobj)
165{
166 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
167 s_kobj);
168 complete(&sbi->s_kobj_unregister);
169}
170
ea91e9b0 171#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
b59d0bae
NJ
172static struct f2fs_attr f2fs_attr_##_name = { \
173 .attr = {.name = __stringify(_name), .mode = _mode }, \
174 .show = _show, \
175 .store = _store, \
ea91e9b0
JK
176 .struct_type = _struct_type, \
177 .offset = _offset \
b59d0bae
NJ
178}
179
ea91e9b0
JK
180#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
181 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
182 f2fs_sbi_show, f2fs_sbi_store, \
183 offsetof(struct struct_name, elname))
b59d0bae 184
ea91e9b0
JK
185F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
186F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
187F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
188F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
189F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
7ac8c3b0 190F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
216fbd64
JK
191F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
192F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
c1ce1b02 193F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_fsync_blocks, min_fsync_blocks);
cdfc41c1 194F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ram_thresh, ram_thresh);
b1c57c1c 195F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
ab9fa662 196F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level);
b59d0bae
NJ
197
198#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
199static struct attribute *f2fs_attrs[] = {
200 ATTR_LIST(gc_min_sleep_time),
201 ATTR_LIST(gc_max_sleep_time),
202 ATTR_LIST(gc_no_gc_sleep_time),
d2dc095f 203 ATTR_LIST(gc_idle),
ea91e9b0 204 ATTR_LIST(reclaim_segments),
7ac8c3b0 205 ATTR_LIST(max_small_discards),
216fbd64
JK
206 ATTR_LIST(ipu_policy),
207 ATTR_LIST(min_ipu_util),
c1ce1b02 208 ATTR_LIST(min_fsync_blocks),
b1c57c1c 209 ATTR_LIST(max_victim_search),
ab9fa662 210 ATTR_LIST(dir_level),
cdfc41c1 211 ATTR_LIST(ram_thresh),
b59d0bae
NJ
212 NULL,
213};
214
215static const struct sysfs_ops f2fs_attr_ops = {
216 .show = f2fs_attr_show,
217 .store = f2fs_attr_store,
218};
219
220static struct kobj_type f2fs_ktype = {
221 .default_attrs = f2fs_attrs,
222 .sysfs_ops = &f2fs_attr_ops,
223 .release = f2fs_sb_release,
224};
225
a07ef784
NJ
226void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
227{
228 struct va_format vaf;
229 va_list args;
230
231 va_start(args, fmt);
232 vaf.fmt = fmt;
233 vaf.va = &args;
234 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
235 va_end(args);
236}
237
aff063e2
JK
238static void init_once(void *foo)
239{
240 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
241
aff063e2
JK
242 inode_init_once(&fi->vfs_inode);
243}
244
696c018c
NJ
245static int parse_options(struct super_block *sb, char *options)
246{
247 struct f2fs_sb_info *sbi = F2FS_SB(sb);
248 substring_t args[MAX_OPT_ARGS];
249 char *p, *name;
250 int arg = 0;
251
252 if (!options)
253 return 0;
254
255 while ((p = strsep(&options, ",")) != NULL) {
256 int token;
257 if (!*p)
258 continue;
259 /*
260 * Initialize args struct so we know whether arg was
261 * found; some options take optional arguments.
262 */
263 args[0].to = args[0].from = NULL;
264 token = match_token(p, f2fs_tokens, args);
265
266 switch (token) {
267 case Opt_gc_background:
268 name = match_strdup(&args[0]);
269
270 if (!name)
271 return -ENOMEM;
04c09388 272 if (strlen(name) == 2 && !strncmp(name, "on", 2))
696c018c 273 set_opt(sbi, BG_GC);
04c09388 274 else if (strlen(name) == 3 && !strncmp(name, "off", 3))
696c018c
NJ
275 clear_opt(sbi, BG_GC);
276 else {
277 kfree(name);
278 return -EINVAL;
279 }
280 kfree(name);
281 break;
282 case Opt_disable_roll_forward:
283 set_opt(sbi, DISABLE_ROLL_FORWARD);
284 break;
285 case Opt_discard:
286 set_opt(sbi, DISCARD);
287 break;
288 case Opt_noheap:
289 set_opt(sbi, NOHEAP);
290 break;
291#ifdef CONFIG_F2FS_FS_XATTR
4058c511
KA
292 case Opt_user_xattr:
293 set_opt(sbi, XATTR_USER);
294 break;
696c018c
NJ
295 case Opt_nouser_xattr:
296 clear_opt(sbi, XATTR_USER);
297 break;
444c580f
JK
298 case Opt_inline_xattr:
299 set_opt(sbi, INLINE_XATTR);
300 break;
696c018c 301#else
4058c511
KA
302 case Opt_user_xattr:
303 f2fs_msg(sb, KERN_INFO,
304 "user_xattr options not supported");
305 break;
696c018c
NJ
306 case Opt_nouser_xattr:
307 f2fs_msg(sb, KERN_INFO,
308 "nouser_xattr options not supported");
309 break;
444c580f
JK
310 case Opt_inline_xattr:
311 f2fs_msg(sb, KERN_INFO,
312 "inline_xattr options not supported");
313 break;
696c018c
NJ
314#endif
315#ifdef CONFIG_F2FS_FS_POSIX_ACL
4058c511
KA
316 case Opt_acl:
317 set_opt(sbi, POSIX_ACL);
318 break;
696c018c
NJ
319 case Opt_noacl:
320 clear_opt(sbi, POSIX_ACL);
321 break;
322#else
4058c511
KA
323 case Opt_acl:
324 f2fs_msg(sb, KERN_INFO, "acl options not supported");
325 break;
696c018c
NJ
326 case Opt_noacl:
327 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
328 break;
329#endif
330 case Opt_active_logs:
331 if (args->from && match_int(args, &arg))
332 return -EINVAL;
333 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
334 return -EINVAL;
335 sbi->active_logs = arg;
336 break;
337 case Opt_disable_ext_identify:
338 set_opt(sbi, DISABLE_EXT_IDENTIFY);
339 break;
8274de77
HL
340 case Opt_inline_data:
341 set_opt(sbi, INLINE_DATA);
342 break;
6b4afdd7
JK
343 case Opt_flush_merge:
344 set_opt(sbi, FLUSH_MERGE);
345 break;
0f7b2abd
JK
346 case Opt_nobarrier:
347 set_opt(sbi, NOBARRIER);
348 break;
696c018c
NJ
349 default:
350 f2fs_msg(sb, KERN_ERR,
351 "Unrecognized mount option \"%s\" or missing value",
352 p);
353 return -EINVAL;
354 }
355 }
356 return 0;
357}
358
aff063e2
JK
359static struct inode *f2fs_alloc_inode(struct super_block *sb)
360{
361 struct f2fs_inode_info *fi;
362
a0acdfe0 363 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
aff063e2
JK
364 if (!fi)
365 return NULL;
366
367 init_once((void *) fi);
368
434720fa 369 /* Initialize f2fs-specific inode info */
aff063e2 370 fi->vfs_inode.i_version = 1;
a7ffdbe2 371 atomic_set(&fi->dirty_pages, 0);
aff063e2
JK
372 fi->i_current_depth = 1;
373 fi->i_advise = 0;
374 rwlock_init(&fi->ext.ext_lock);
d928bfbf 375 init_rwsem(&fi->i_sem);
34ba94ba 376 INIT_RADIX_TREE(&fi->inmem_root, GFP_NOFS);
88b88a66
JK
377 INIT_LIST_HEAD(&fi->inmem_pages);
378 mutex_init(&fi->inmem_lock);
aff063e2
JK
379
380 set_inode_flag(fi, FI_NEW_INODE);
381
444c580f
JK
382 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
383 set_inode_flag(fi, FI_INLINE_XATTR);
384
ab9fa662
JK
385 /* Will be used by directory only */
386 fi->i_dir_level = F2FS_SB(sb)->dir_level;
387
aff063e2
JK
388 return &fi->vfs_inode;
389}
390
531ad7d5
JK
391static int f2fs_drop_inode(struct inode *inode)
392{
393 /*
394 * This is to avoid a deadlock condition like below.
395 * writeback_single_inode(inode)
396 * - f2fs_write_data_page
397 * - f2fs_gc -> iput -> evict
398 * - inode_wait_for_writeback(inode)
399 */
400 if (!inode_unhashed(inode) && inode->i_state & I_SYNC)
401 return 0;
402 return generic_drop_inode(inode);
403}
404
b3783873
JK
405/*
406 * f2fs_dirty_inode() is called from __mark_inode_dirty()
407 *
408 * We should call set_dirty_inode to write the dirty inode through write_inode.
409 */
410static void f2fs_dirty_inode(struct inode *inode, int flags)
411{
412 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
b3783873
JK
413}
414
aff063e2
JK
415static void f2fs_i_callback(struct rcu_head *head)
416{
417 struct inode *inode = container_of(head, struct inode, i_rcu);
418 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
419}
420
25ca923b 421static void f2fs_destroy_inode(struct inode *inode)
aff063e2
JK
422{
423 call_rcu(&inode->i_rcu, f2fs_i_callback);
424}
425
426static void f2fs_put_super(struct super_block *sb)
427{
428 struct f2fs_sb_info *sbi = F2FS_SB(sb);
429
5e176d54
JK
430 if (sbi->s_proc) {
431 remove_proc_entry("segment_info", sbi->s_proc);
432 remove_proc_entry(sb->s_id, f2fs_proc_root);
433 }
b59d0bae 434 kobject_del(&sbi->s_kobj);
5e176d54 435
aff063e2
JK
436 f2fs_destroy_stats(sbi);
437 stop_gc_thread(sbi);
438
5887d291 439 /* We don't need to do checkpoint when it's clean */
75ab4cb8
JK
440 if (sbi->s_dirty) {
441 struct cp_control cpc = {
442 .reason = CP_UMOUNT,
443 };
444 write_checkpoint(sbi, &cpc);
445 }
aff063e2 446
cf779cab
JK
447 /*
448 * normally superblock is clean, so we need to release this.
449 * In addition, EIO will skip do checkpoint, we need this as well.
450 */
6f12ac25 451 release_dirty_inode(sbi);
4b2fecc8 452 release_discard_addrs(sbi);
6f12ac25 453
aff063e2
JK
454 iput(sbi->node_inode);
455 iput(sbi->meta_inode);
456
457 /* destroy f2fs internal modules */
458 destroy_node_manager(sbi);
459 destroy_segment_manager(sbi);
460
461 kfree(sbi->ckpt);
b59d0bae
NJ
462 kobject_put(&sbi->s_kobj);
463 wait_for_completion(&sbi->s_kobj_unregister);
aff063e2
JK
464
465 sb->s_fs_info = NULL;
466 brelse(sbi->raw_super_buf);
467 kfree(sbi);
468}
469
470int f2fs_sync_fs(struct super_block *sb, int sync)
471{
472 struct f2fs_sb_info *sbi = F2FS_SB(sb);
aff063e2 473
a2a4a7e4
NJ
474 trace_f2fs_sync_fs(sb, sync);
475
b7473754 476 if (sync) {
75ab4cb8
JK
477 struct cp_control cpc = {
478 .reason = CP_SYNC,
479 };
b7473754 480 mutex_lock(&sbi->gc_mutex);
75ab4cb8 481 write_checkpoint(sbi, &cpc);
b7473754
JK
482 mutex_unlock(&sbi->gc_mutex);
483 } else {
7d82db83 484 f2fs_balance_fs(sbi);
b7473754 485 }
aff063e2 486
64c576fe 487 return 0;
aff063e2
JK
488}
489
d6212a5f
CL
490static int f2fs_freeze(struct super_block *sb)
491{
492 int err;
493
77888c1e 494 if (f2fs_readonly(sb))
d6212a5f
CL
495 return 0;
496
497 err = f2fs_sync_fs(sb, 1);
498 return err;
499}
500
501static int f2fs_unfreeze(struct super_block *sb)
502{
503 return 0;
504}
505
aff063e2
JK
506static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
507{
508 struct super_block *sb = dentry->d_sb;
509 struct f2fs_sb_info *sbi = F2FS_SB(sb);
510 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
511 block_t total_count, user_block_count, start_count, ovp_count;
512
513 total_count = le64_to_cpu(sbi->raw_super->block_count);
514 user_block_count = sbi->user_block_count;
515 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
516 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
517 buf->f_type = F2FS_SUPER_MAGIC;
518 buf->f_bsize = sbi->blocksize;
519
520 buf->f_blocks = total_count - start_count;
521 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
522 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
523
c200b1aa
CY
524 buf->f_files = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
525 buf->f_ffree = buf->f_files - valid_inode_count(sbi);
aff063e2 526
5a20d339 527 buf->f_namelen = F2FS_NAME_LEN;
aff063e2
JK
528 buf->f_fsid.val[0] = (u32)id;
529 buf->f_fsid.val[1] = (u32)(id >> 32);
530
531 return 0;
532}
533
534static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
535{
536 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
537
b270ad6f 538 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, BG_GC))
696c018c 539 seq_printf(seq, ",background_gc=%s", "on");
aff063e2 540 else
696c018c 541 seq_printf(seq, ",background_gc=%s", "off");
aff063e2
JK
542 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
543 seq_puts(seq, ",disable_roll_forward");
544 if (test_opt(sbi, DISCARD))
545 seq_puts(seq, ",discard");
546 if (test_opt(sbi, NOHEAP))
547 seq_puts(seq, ",no_heap_alloc");
548#ifdef CONFIG_F2FS_FS_XATTR
549 if (test_opt(sbi, XATTR_USER))
550 seq_puts(seq, ",user_xattr");
551 else
552 seq_puts(seq, ",nouser_xattr");
444c580f
JK
553 if (test_opt(sbi, INLINE_XATTR))
554 seq_puts(seq, ",inline_xattr");
aff063e2
JK
555#endif
556#ifdef CONFIG_F2FS_FS_POSIX_ACL
557 if (test_opt(sbi, POSIX_ACL))
558 seq_puts(seq, ",acl");
559 else
560 seq_puts(seq, ",noacl");
561#endif
562 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
aa43507f 563 seq_puts(seq, ",disable_ext_identify");
8274de77
HL
564 if (test_opt(sbi, INLINE_DATA))
565 seq_puts(seq, ",inline_data");
b270ad6f 566 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
6b4afdd7 567 seq_puts(seq, ",flush_merge");
0f7b2abd
JK
568 if (test_opt(sbi, NOBARRIER))
569 seq_puts(seq, ",nobarrier");
aff063e2
JK
570 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
571
572 return 0;
573}
574
5e176d54
JK
575static int segment_info_seq_show(struct seq_file *seq, void *offset)
576{
577 struct super_block *sb = seq->private;
578 struct f2fs_sb_info *sbi = F2FS_SB(sb);
6c311ec6
CF
579 unsigned int total_segs =
580 le32_to_cpu(sbi->raw_super->segment_count_main);
5e176d54
JK
581 int i;
582
90aa6dc9
CY
583 seq_puts(seq, "format: segment_type|valid_blocks\n"
584 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
585
5e176d54 586 for (i = 0; i < total_segs; i++) {
90aa6dc9
CY
587 struct seg_entry *se = get_seg_entry(sbi, i);
588
589 if ((i % 10) == 0)
590 seq_printf(seq, "%-5d", i);
591 seq_printf(seq, "%d|%-3u", se->type,
592 get_valid_blocks(sbi, i, 1));
46c04366
GZ
593 if ((i % 10) == 9 || i == (total_segs - 1))
594 seq_putc(seq, '\n');
5e176d54 595 else
46c04366 596 seq_putc(seq, ' ');
5e176d54 597 }
46c04366 598
5e176d54
JK
599 return 0;
600}
601
602static int segment_info_open_fs(struct inode *inode, struct file *file)
603{
604 return single_open(file, segment_info_seq_show, PDE_DATA(inode));
605}
606
607static const struct file_operations f2fs_seq_segment_info_fops = {
608 .owner = THIS_MODULE,
609 .open = segment_info_open_fs,
610 .read = seq_read,
611 .llseek = seq_lseek,
612 .release = single_release,
613};
614
696c018c
NJ
615static int f2fs_remount(struct super_block *sb, int *flags, char *data)
616{
617 struct f2fs_sb_info *sbi = F2FS_SB(sb);
618 struct f2fs_mount_info org_mount_opt;
619 int err, active_logs;
876dc59e
GZ
620 bool need_restart_gc = false;
621 bool need_stop_gc = false;
696c018c 622
02b9984d
TT
623 sync_filesystem(sb);
624
696c018c
NJ
625 /*
626 * Save the old mount options in case we
627 * need to restore them.
628 */
629 org_mount_opt = sbi->mount_opt;
630 active_logs = sbi->active_logs;
631
26666c8a
CY
632 sbi->mount_opt.opt = 0;
633 sbi->active_logs = NR_CURSEG_TYPE;
634
696c018c
NJ
635 /* parse mount options */
636 err = parse_options(sb, data);
637 if (err)
638 goto restore_opts;
639
640 /*
641 * Previous and new state of filesystem is RO,
876dc59e 642 * so skip checking GC and FLUSH_MERGE conditions.
696c018c 643 */
6b2920a5 644 if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
696c018c
NJ
645 goto skip;
646
647 /*
648 * We stop the GC thread if FS is mounted as RO
649 * or if background_gc = off is passed in mount
650 * option. Also sync the filesystem.
651 */
652 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
653 if (sbi->gc_thread) {
654 stop_gc_thread(sbi);
655 f2fs_sync_fs(sb, 1);
876dc59e 656 need_restart_gc = true;
696c018c
NJ
657 }
658 } else if (test_opt(sbi, BG_GC) && !sbi->gc_thread) {
659 err = start_gc_thread(sbi);
660 if (err)
661 goto restore_opts;
876dc59e
GZ
662 need_stop_gc = true;
663 }
664
665 /*
666 * We stop issue flush thread if FS is mounted as RO
667 * or if flush_merge is not passed in mount option.
668 */
669 if ((*flags & MS_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
2163d198 670 destroy_flush_cmd_control(sbi);
6b2920a5 671 } else if (test_opt(sbi, FLUSH_MERGE) && !SM_I(sbi)->cmd_control_info) {
2163d198
GZ
672 err = create_flush_cmd_control(sbi);
673 if (err)
a688b9d9 674 goto restore_gc;
696c018c
NJ
675 }
676skip:
677 /* Update the POSIXACL Flag */
678 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
679 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
680 return 0;
876dc59e
GZ
681restore_gc:
682 if (need_restart_gc) {
683 if (start_gc_thread(sbi))
684 f2fs_msg(sbi->sb, KERN_WARNING,
e1c42045 685 "background gc thread has stopped");
876dc59e
GZ
686 } else if (need_stop_gc) {
687 stop_gc_thread(sbi);
688 }
696c018c
NJ
689restore_opts:
690 sbi->mount_opt = org_mount_opt;
691 sbi->active_logs = active_logs;
692 return err;
693}
694
aff063e2
JK
695static struct super_operations f2fs_sops = {
696 .alloc_inode = f2fs_alloc_inode,
531ad7d5 697 .drop_inode = f2fs_drop_inode,
aff063e2
JK
698 .destroy_inode = f2fs_destroy_inode,
699 .write_inode = f2fs_write_inode,
b3783873 700 .dirty_inode = f2fs_dirty_inode,
aff063e2
JK
701 .show_options = f2fs_show_options,
702 .evict_inode = f2fs_evict_inode,
703 .put_super = f2fs_put_super,
704 .sync_fs = f2fs_sync_fs,
d6212a5f
CL
705 .freeze_fs = f2fs_freeze,
706 .unfreeze_fs = f2fs_unfreeze,
aff063e2 707 .statfs = f2fs_statfs,
696c018c 708 .remount_fs = f2fs_remount,
aff063e2
JK
709};
710
711static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
712 u64 ino, u32 generation)
713{
714 struct f2fs_sb_info *sbi = F2FS_SB(sb);
715 struct inode *inode;
716
d6b7d4b3 717 if (check_nid_range(sbi, ino))
910bb12d 718 return ERR_PTR(-ESTALE);
aff063e2
JK
719
720 /*
721 * f2fs_iget isn't quite right if the inode is currently unallocated!
722 * However f2fs_iget currently does appropriate checks to handle stale
723 * inodes so everything is OK.
724 */
725 inode = f2fs_iget(sb, ino);
726 if (IS_ERR(inode))
727 return ERR_CAST(inode);
6bacf52f 728 if (unlikely(generation && inode->i_generation != generation)) {
aff063e2
JK
729 /* we didn't find the right inode.. */
730 iput(inode);
731 return ERR_PTR(-ESTALE);
732 }
733 return inode;
734}
735
736static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
737 int fh_len, int fh_type)
738{
739 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
740 f2fs_nfs_get_inode);
741}
742
743static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
744 int fh_len, int fh_type)
745{
746 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
747 f2fs_nfs_get_inode);
748}
749
750static const struct export_operations f2fs_export_ops = {
751 .fh_to_dentry = f2fs_fh_to_dentry,
752 .fh_to_parent = f2fs_fh_to_parent,
753 .get_parent = f2fs_get_parent,
754};
755
aff063e2
JK
756static loff_t max_file_size(unsigned bits)
757{
de93653f 758 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
aff063e2
JK
759 loff_t leaf_count = ADDRS_PER_BLOCK;
760
761 /* two direct node blocks */
762 result += (leaf_count * 2);
763
764 /* two indirect node blocks */
765 leaf_count *= NIDS_PER_BLOCK;
766 result += (leaf_count * 2);
767
768 /* one double indirect node block */
769 leaf_count *= NIDS_PER_BLOCK;
770 result += leaf_count;
771
772 result <<= bits;
773 return result;
774}
775
a07ef784
NJ
776static int sanity_check_raw_super(struct super_block *sb,
777 struct f2fs_super_block *raw_super)
aff063e2
JK
778{
779 unsigned int blocksize;
780
a07ef784
NJ
781 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
782 f2fs_msg(sb, KERN_INFO,
783 "Magic Mismatch, valid(0x%x) - read(0x%x)",
784 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
aff063e2 785 return 1;
a07ef784 786 }
aff063e2 787
5c9b4692 788 /* Currently, support only 4KB page cache size */
789 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
790 f2fs_msg(sb, KERN_INFO,
14d7e9de 791 "Invalid page_cache_size (%lu), supports only 4KB\n",
5c9b4692 792 PAGE_CACHE_SIZE);
793 return 1;
794 }
795
aff063e2
JK
796 /* Currently, support only 4KB block size */
797 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
5c9b4692 798 if (blocksize != F2FS_BLKSIZE) {
a07ef784
NJ
799 f2fs_msg(sb, KERN_INFO,
800 "Invalid blocksize (%u), supports only 4KB\n",
801 blocksize);
aff063e2 802 return 1;
a07ef784 803 }
5c9b4692 804
55cf9cb6
CY
805 /* Currently, support 512/1024/2048/4096 bytes sector size */
806 if (le32_to_cpu(raw_super->log_sectorsize) >
807 F2FS_MAX_LOG_SECTOR_SIZE ||
808 le32_to_cpu(raw_super->log_sectorsize) <
809 F2FS_MIN_LOG_SECTOR_SIZE) {
810 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize (%u)",
811 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 812 return 1;
a07ef784 813 }
55cf9cb6
CY
814 if (le32_to_cpu(raw_super->log_sectors_per_block) +
815 le32_to_cpu(raw_super->log_sectorsize) !=
816 F2FS_MAX_LOG_SECTOR_SIZE) {
817 f2fs_msg(sb, KERN_INFO,
818 "Invalid log sectors per block(%u) log sectorsize(%u)",
819 le32_to_cpu(raw_super->log_sectors_per_block),
820 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 821 return 1;
a07ef784 822 }
aff063e2
JK
823 return 0;
824}
825
577e3495 826static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
aff063e2
JK
827{
828 unsigned int total, fsmeta;
577e3495
JK
829 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
830 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
aff063e2
JK
831
832 total = le32_to_cpu(raw_super->segment_count);
833 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
834 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
835 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
836 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
837 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
838
6bacf52f 839 if (unlikely(fsmeta >= total))
aff063e2 840 return 1;
577e3495 841
1e968fdf 842 if (unlikely(f2fs_cp_error(sbi))) {
577e3495
JK
843 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
844 return 1;
845 }
aff063e2
JK
846 return 0;
847}
848
849static void init_sb_info(struct f2fs_sb_info *sbi)
850{
851 struct f2fs_super_block *raw_super = sbi->raw_super;
852 int i;
853
854 sbi->log_sectors_per_block =
855 le32_to_cpu(raw_super->log_sectors_per_block);
856 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
857 sbi->blocksize = 1 << sbi->log_blocksize;
858 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
859 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
860 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
861 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
862 sbi->total_sections = le32_to_cpu(raw_super->section_count);
863 sbi->total_node_count =
864 (le32_to_cpu(raw_super->segment_count_nat) / 2)
865 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
866 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
867 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
868 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
5ec4e49f 869 sbi->cur_victim_sec = NULL_SECNO;
b1c57c1c 870 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
aff063e2
JK
871
872 for (i = 0; i < NR_COUNT_TYPE; i++)
873 atomic_set(&sbi->nr_pages[i], 0);
ab9fa662
JK
874
875 sbi->dir_level = DEF_DIR_LEVEL;
2ae4c673 876 sbi->need_fsck = false;
aff063e2
JK
877}
878
9076a75f
GZ
879/*
880 * Read f2fs raw super block.
881 * Because we have two copies of super block, so read the first one at first,
882 * if the first one is invalid, move to read the second one.
883 */
884static int read_raw_super_block(struct super_block *sb,
885 struct f2fs_super_block **raw_super,
886 struct buffer_head **raw_super_buf)
14d7e9de 887{
9076a75f 888 int block = 0;
14d7e9de 889
9076a75f 890retry:
14d7e9de 891 *raw_super_buf = sb_bread(sb, block);
892 if (!*raw_super_buf) {
9076a75f
GZ
893 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
894 block + 1);
895 if (block == 0) {
896 block++;
897 goto retry;
898 } else {
899 return -EIO;
900 }
14d7e9de 901 }
902
903 *raw_super = (struct f2fs_super_block *)
904 ((char *)(*raw_super_buf)->b_data + F2FS_SUPER_OFFSET);
905
906 /* sanity checking of raw super */
9076a75f
GZ
907 if (sanity_check_raw_super(sb, *raw_super)) {
908 brelse(*raw_super_buf);
6c311ec6
CF
909 f2fs_msg(sb, KERN_ERR,
910 "Can't find valid F2FS filesystem in %dth superblock",
911 block + 1);
6bacf52f 912 if (block == 0) {
9076a75f
GZ
913 block++;
914 goto retry;
915 } else {
916 return -EINVAL;
917 }
918 }
14d7e9de 919
9076a75f 920 return 0;
14d7e9de 921}
922
aff063e2
JK
923static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
924{
925 struct f2fs_sb_info *sbi;
926 struct f2fs_super_block *raw_super;
927 struct buffer_head *raw_super_buf;
928 struct inode *root;
929 long err = -EINVAL;
ed2e621a 930 bool retry = true;
971767ca 931 int i;
aff063e2 932
ed2e621a 933try_onemore:
aff063e2
JK
934 /* allocate memory for f2fs-specific super block info */
935 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
936 if (!sbi)
937 return -ENOMEM;
938
ff9234ad 939 /* set a block size */
6bacf52f 940 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
a07ef784 941 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
aff063e2 942 goto free_sbi;
a07ef784 943 }
aff063e2 944
9076a75f
GZ
945 err = read_raw_super_block(sb, &raw_super, &raw_super_buf);
946 if (err)
947 goto free_sbi;
948
5fb08372 949 sb->s_fs_info = sbi;
aff063e2
JK
950 /* init some FS parameters */
951 sbi->active_logs = NR_CURSEG_TYPE;
952
953 set_opt(sbi, BG_GC);
954
955#ifdef CONFIG_F2FS_FS_XATTR
956 set_opt(sbi, XATTR_USER);
957#endif
958#ifdef CONFIG_F2FS_FS_POSIX_ACL
959 set_opt(sbi, POSIX_ACL);
960#endif
961 /* parse mount options */
5fb08372 962 err = parse_options(sb, (char *)data);
66348b72 963 if (err)
aff063e2
JK
964 goto free_sb_buf;
965
25ca923b 966 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
aff063e2
JK
967 sb->s_max_links = F2FS_LINK_MAX;
968 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
969
970 sb->s_op = &f2fs_sops;
971 sb->s_xattr = f2fs_xattr_handlers;
972 sb->s_export_op = &f2fs_export_ops;
973 sb->s_magic = F2FS_SUPER_MAGIC;
aff063e2
JK
974 sb->s_time_gran = 1;
975 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
976 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
977 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
978
979 /* init f2fs-specific super block info */
980 sbi->sb = sb;
981 sbi->raw_super = raw_super;
982 sbi->raw_super_buf = raw_super_buf;
983 mutex_init(&sbi->gc_mutex);
aff063e2
JK
984 mutex_init(&sbi->writepages);
985 mutex_init(&sbi->cp_mutex);
b3582c68 986 init_rwsem(&sbi->node_write);
aabe5136 987 sbi->por_doing = false;
aff063e2 988 spin_lock_init(&sbi->stat_lock);
971767ca 989
df0f8dc0 990 init_rwsem(&sbi->read_io.io_rwsem);
458e6197
JK
991 sbi->read_io.sbi = sbi;
992 sbi->read_io.bio = NULL;
993 for (i = 0; i < NR_PAGE_TYPE; i++) {
df0f8dc0 994 init_rwsem(&sbi->write_io[i].io_rwsem);
458e6197
JK
995 sbi->write_io[i].sbi = sbi;
996 sbi->write_io[i].bio = NULL;
997 }
971767ca 998
e479556b 999 init_rwsem(&sbi->cp_rwsem);
fb51b5ef 1000 init_waitqueue_head(&sbi->cp_wait);
aff063e2
JK
1001 init_sb_info(sbi);
1002
1003 /* get an inode for meta space */
1004 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
1005 if (IS_ERR(sbi->meta_inode)) {
a07ef784 1006 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
aff063e2
JK
1007 err = PTR_ERR(sbi->meta_inode);
1008 goto free_sb_buf;
1009 }
1010
1011 err = get_valid_checkpoint(sbi);
a07ef784
NJ
1012 if (err) {
1013 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
aff063e2 1014 goto free_meta_inode;
a07ef784 1015 }
aff063e2
JK
1016
1017 /* sanity checking of checkpoint */
1018 err = -EINVAL;
577e3495 1019 if (sanity_check_ckpt(sbi)) {
a07ef784 1020 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
aff063e2 1021 goto free_cp;
a07ef784 1022 }
aff063e2
JK
1023
1024 sbi->total_valid_node_count =
1025 le32_to_cpu(sbi->ckpt->valid_node_count);
1026 sbi->total_valid_inode_count =
1027 le32_to_cpu(sbi->ckpt->valid_inode_count);
1028 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
1029 sbi->total_valid_block_count =
1030 le64_to_cpu(sbi->ckpt->valid_block_count);
1031 sbi->last_valid_block_count = sbi->total_valid_block_count;
1032 sbi->alloc_valid_block_count = 0;
1033 INIT_LIST_HEAD(&sbi->dir_inode_list);
1034 spin_lock_init(&sbi->dir_inode_lock);
1035
6451e041 1036 init_ino_entry_info(sbi);
aff063e2
JK
1037
1038 /* setup f2fs internal modules */
1039 err = build_segment_manager(sbi);
a07ef784
NJ
1040 if (err) {
1041 f2fs_msg(sb, KERN_ERR,
1042 "Failed to initialize F2FS segment manager");
aff063e2 1043 goto free_sm;
a07ef784 1044 }
aff063e2 1045 err = build_node_manager(sbi);
a07ef784
NJ
1046 if (err) {
1047 f2fs_msg(sb, KERN_ERR,
1048 "Failed to initialize F2FS node manager");
aff063e2 1049 goto free_nm;
a07ef784 1050 }
aff063e2
JK
1051
1052 build_gc_manager(sbi);
1053
1054 /* get an inode for node space */
1055 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
1056 if (IS_ERR(sbi->node_inode)) {
a07ef784 1057 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
aff063e2
JK
1058 err = PTR_ERR(sbi->node_inode);
1059 goto free_nm;
1060 }
1061
1062 /* if there are nt orphan nodes free them */
8f99a946 1063 recover_orphan_inodes(sbi);
aff063e2
JK
1064
1065 /* read root inode and dentry */
1066 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
1067 if (IS_ERR(root)) {
a07ef784 1068 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
aff063e2
JK
1069 err = PTR_ERR(root);
1070 goto free_node_inode;
1071 }
8f99a946 1072 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
9d847950 1073 iput(root);
8f99a946 1074 err = -EINVAL;
9d847950 1075 goto free_node_inode;
8f99a946 1076 }
aff063e2
JK
1077
1078 sb->s_root = d_make_root(root); /* allocate root dentry */
1079 if (!sb->s_root) {
1080 err = -ENOMEM;
1081 goto free_root_inode;
1082 }
1083
aff063e2
JK
1084 err = f2fs_build_stats(sbi);
1085 if (err)
6437d1b0 1086 goto free_root_inode;
aff063e2 1087
5e176d54
JK
1088 if (f2fs_proc_root)
1089 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1090
1091 if (sbi->s_proc)
1092 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
1093 &f2fs_seq_segment_info_fops, sb);
1094
d3ee456d
NJ
1095 if (test_opt(sbi, DISCARD)) {
1096 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1097 if (!blk_queue_discard(q))
1098 f2fs_msg(sb, KERN_WARNING,
1099 "mounting with \"discard\" option, but "
1100 "the device does not support discard");
1101 }
1102
b59d0bae
NJ
1103 sbi->s_kobj.kset = f2fs_kset;
1104 init_completion(&sbi->s_kobj_unregister);
1105 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1106 "%s", sb->s_id);
1107 if (err)
6437d1b0 1108 goto free_proc;
b59d0bae 1109
b0c44f05
JK
1110 if (!retry)
1111 sbi->need_fsck = true;
1112
6437d1b0
JK
1113 /* recover fsynced data */
1114 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
1115 err = recover_fsync_data(sbi);
ed2e621a 1116 if (err) {
6437d1b0
JK
1117 f2fs_msg(sb, KERN_ERR,
1118 "Cannot recover all fsync data errno=%ld", err);
ed2e621a
JK
1119 goto free_kobj;
1120 }
6437d1b0 1121 }
b59d0bae 1122
6437d1b0
JK
1123 /*
1124 * If filesystem is not mounted as read-only then
1125 * do start the gc_thread.
1126 */
6b2920a5 1127 if (!f2fs_readonly(sb)) {
6437d1b0
JK
1128 /* After POR, we can run background GC thread.*/
1129 err = start_gc_thread(sbi);
1130 if (err)
1131 goto free_kobj;
1132 }
aff063e2 1133 return 0;
6437d1b0
JK
1134
1135free_kobj:
1136 kobject_del(&sbi->s_kobj);
1137free_proc:
1d15bd20
CY
1138 if (sbi->s_proc) {
1139 remove_proc_entry("segment_info", sbi->s_proc);
1140 remove_proc_entry(sb->s_id, f2fs_proc_root);
1141 }
1142 f2fs_destroy_stats(sbi);
aff063e2
JK
1143free_root_inode:
1144 dput(sb->s_root);
1145 sb->s_root = NULL;
1146free_node_inode:
1147 iput(sbi->node_inode);
1148free_nm:
1149 destroy_node_manager(sbi);
1150free_sm:
1151 destroy_segment_manager(sbi);
1152free_cp:
1153 kfree(sbi->ckpt);
1154free_meta_inode:
1155 make_bad_inode(sbi->meta_inode);
1156 iput(sbi->meta_inode);
1157free_sb_buf:
1158 brelse(raw_super_buf);
1159free_sbi:
1160 kfree(sbi);
ed2e621a
JK
1161
1162 /* give only one another chance */
1163 if (retry) {
922cedbd 1164 retry = 0;
ed2e621a
JK
1165 shrink_dcache_sb(sb);
1166 goto try_onemore;
1167 }
aff063e2
JK
1168 return err;
1169}
1170
1171static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1172 const char *dev_name, void *data)
1173{
1174 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1175}
1176
1177static struct file_system_type f2fs_fs_type = {
1178 .owner = THIS_MODULE,
1179 .name = "f2fs",
1180 .mount = f2fs_mount,
1181 .kill_sb = kill_block_super,
1182 .fs_flags = FS_REQUIRES_DEV,
1183};
7f78e035 1184MODULE_ALIAS_FS("f2fs");
aff063e2 1185
6e6093a8 1186static int __init init_inodecache(void)
aff063e2
JK
1187{
1188 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
e8512d2e 1189 sizeof(struct f2fs_inode_info));
6bacf52f 1190 if (!f2fs_inode_cachep)
aff063e2
JK
1191 return -ENOMEM;
1192 return 0;
1193}
1194
1195static void destroy_inodecache(void)
1196{
1197 /*
1198 * Make sure all delayed rcu free inodes are flushed before we
1199 * destroy cache.
1200 */
1201 rcu_barrier();
1202 kmem_cache_destroy(f2fs_inode_cachep);
1203}
1204
1205static int __init init_f2fs_fs(void)
1206{
1207 int err;
1208
1209 err = init_inodecache();
1210 if (err)
1211 goto fail;
1212 err = create_node_manager_caches();
1213 if (err)
9890ff3f 1214 goto free_inodecache;
7fd9e544 1215 err = create_segment_manager_caches();
aff063e2 1216 if (err)
9890ff3f 1217 goto free_node_manager_caches;
7fd9e544
JK
1218 err = create_gc_caches();
1219 if (err)
1220 goto free_segment_manager_caches;
aff063e2
JK
1221 err = create_checkpoint_caches();
1222 if (err)
9890ff3f 1223 goto free_gc_caches;
b59d0bae 1224 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
6e6b978c
WY
1225 if (!f2fs_kset) {
1226 err = -ENOMEM;
9890ff3f 1227 goto free_checkpoint_caches;
6e6b978c 1228 }
4589d25d
NJ
1229 err = register_filesystem(&f2fs_fs_type);
1230 if (err)
9890ff3f 1231 goto free_kset;
4589d25d 1232 f2fs_create_root_stats();
5e176d54 1233 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
9890ff3f
ZH
1234 return 0;
1235
1236free_kset:
1237 kset_unregister(f2fs_kset);
1238free_checkpoint_caches:
1239 destroy_checkpoint_caches();
1240free_gc_caches:
1241 destroy_gc_caches();
7fd9e544
JK
1242free_segment_manager_caches:
1243 destroy_segment_manager_caches();
9890ff3f
ZH
1244free_node_manager_caches:
1245 destroy_node_manager_caches();
1246free_inodecache:
1247 destroy_inodecache();
aff063e2
JK
1248fail:
1249 return err;
1250}
1251
1252static void __exit exit_f2fs_fs(void)
1253{
5e176d54 1254 remove_proc_entry("fs/f2fs", NULL);
4589d25d 1255 f2fs_destroy_root_stats();
aff063e2
JK
1256 unregister_filesystem(&f2fs_fs_type);
1257 destroy_checkpoint_caches();
1258 destroy_gc_caches();
5dcd8a71 1259 destroy_segment_manager_caches();
aff063e2
JK
1260 destroy_node_manager_caches();
1261 destroy_inodecache();
b59d0bae 1262 kset_unregister(f2fs_kset);
aff063e2
JK
1263}
1264
1265module_init(init_f2fs_fs)
1266module_exit(exit_f2fs_fs)
1267
1268MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1269MODULE_DESCRIPTION("Flash Friendly File System");
1270MODULE_LICENSE("GPL");