]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/f2fs/super.c
f2fs: introduce time and interval facility
[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"
db9f7c1a 33#include "trace.h"
aff063e2 34
a2a4a7e4
NJ
35#define CREATE_TRACE_POINTS
36#include <trace/events/f2fs.h>
37
5e176d54 38static struct proc_dir_entry *f2fs_proc_root;
aff063e2 39static struct kmem_cache *f2fs_inode_cachep;
b59d0bae 40static struct kset *f2fs_kset;
aff063e2 41
2658e50d
JK
42/* f2fs-wide shrinker description */
43static struct shrinker f2fs_shrinker_info = {
44 .scan_objects = f2fs_shrink_scan,
45 .count_objects = f2fs_shrink_count,
46 .seeks = DEFAULT_SEEKS,
47};
48
aff063e2 49enum {
696c018c 50 Opt_gc_background,
aff063e2 51 Opt_disable_roll_forward,
2d834bf9 52 Opt_norecovery,
aff063e2
JK
53 Opt_discard,
54 Opt_noheap,
4058c511 55 Opt_user_xattr,
aff063e2 56 Opt_nouser_xattr,
4058c511 57 Opt_acl,
aff063e2
JK
58 Opt_noacl,
59 Opt_active_logs,
60 Opt_disable_ext_identify,
444c580f 61 Opt_inline_xattr,
8274de77 62 Opt_inline_data,
5efd3c6f 63 Opt_inline_dentry,
6b4afdd7 64 Opt_flush_merge,
0f7b2abd 65 Opt_nobarrier,
d5053a34 66 Opt_fastboot,
89672159 67 Opt_extent_cache,
7daaea25 68 Opt_noextent_cache,
75342797 69 Opt_noinline_data,
343f40f0 70 Opt_data_flush,
aff063e2
JK
71 Opt_err,
72};
73
74static match_table_t f2fs_tokens = {
696c018c 75 {Opt_gc_background, "background_gc=%s"},
aff063e2 76 {Opt_disable_roll_forward, "disable_roll_forward"},
2d834bf9 77 {Opt_norecovery, "norecovery"},
aff063e2
JK
78 {Opt_discard, "discard"},
79 {Opt_noheap, "no_heap"},
4058c511 80 {Opt_user_xattr, "user_xattr"},
aff063e2 81 {Opt_nouser_xattr, "nouser_xattr"},
4058c511 82 {Opt_acl, "acl"},
aff063e2
JK
83 {Opt_noacl, "noacl"},
84 {Opt_active_logs, "active_logs=%u"},
85 {Opt_disable_ext_identify, "disable_ext_identify"},
444c580f 86 {Opt_inline_xattr, "inline_xattr"},
8274de77 87 {Opt_inline_data, "inline_data"},
5efd3c6f 88 {Opt_inline_dentry, "inline_dentry"},
6b4afdd7 89 {Opt_flush_merge, "flush_merge"},
0f7b2abd 90 {Opt_nobarrier, "nobarrier"},
d5053a34 91 {Opt_fastboot, "fastboot"},
89672159 92 {Opt_extent_cache, "extent_cache"},
7daaea25 93 {Opt_noextent_cache, "noextent_cache"},
75342797 94 {Opt_noinline_data, "noinline_data"},
343f40f0 95 {Opt_data_flush, "data_flush"},
aff063e2
JK
96 {Opt_err, NULL},
97};
98
b59d0bae 99/* Sysfs support for f2fs */
ea91e9b0
JK
100enum {
101 GC_THREAD, /* struct f2fs_gc_thread */
102 SM_INFO, /* struct f2fs_sm_info */
cdfc41c1 103 NM_INFO, /* struct f2fs_nm_info */
b1c57c1c 104 F2FS_SBI, /* struct f2fs_sb_info */
ea91e9b0
JK
105};
106
b59d0bae
NJ
107struct f2fs_attr {
108 struct attribute attr;
109 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
110 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
111 const char *, size_t);
ea91e9b0 112 int struct_type;
b59d0bae
NJ
113 int offset;
114};
115
ea91e9b0
JK
116static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
117{
118 if (struct_type == GC_THREAD)
119 return (unsigned char *)sbi->gc_thread;
120 else if (struct_type == SM_INFO)
121 return (unsigned char *)SM_I(sbi);
cdfc41c1
JK
122 else if (struct_type == NM_INFO)
123 return (unsigned char *)NM_I(sbi);
b1c57c1c
JK
124 else if (struct_type == F2FS_SBI)
125 return (unsigned char *)sbi;
ea91e9b0
JK
126 return NULL;
127}
128
b59d0bae
NJ
129static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
130 struct f2fs_sb_info *sbi, char *buf)
131{
ea91e9b0 132 unsigned char *ptr = NULL;
b59d0bae
NJ
133 unsigned int *ui;
134
ea91e9b0
JK
135 ptr = __struct_ptr(sbi, a->struct_type);
136 if (!ptr)
b59d0bae
NJ
137 return -EINVAL;
138
ea91e9b0 139 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
140
141 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
142}
143
144static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
145 struct f2fs_sb_info *sbi,
146 const char *buf, size_t count)
147{
ea91e9b0 148 unsigned char *ptr;
b59d0bae
NJ
149 unsigned long t;
150 unsigned int *ui;
151 ssize_t ret;
152
ea91e9b0
JK
153 ptr = __struct_ptr(sbi, a->struct_type);
154 if (!ptr)
b59d0bae
NJ
155 return -EINVAL;
156
ea91e9b0 157 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
158
159 ret = kstrtoul(skip_spaces(buf), 0, &t);
160 if (ret < 0)
161 return ret;
162 *ui = t;
163 return count;
164}
165
166static ssize_t f2fs_attr_show(struct kobject *kobj,
167 struct attribute *attr, char *buf)
168{
169 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
170 s_kobj);
171 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
172
173 return a->show ? a->show(a, sbi, buf) : 0;
174}
175
176static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
177 const char *buf, size_t len)
178{
179 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
180 s_kobj);
181 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
182
183 return a->store ? a->store(a, sbi, buf, len) : 0;
184}
185
186static void f2fs_sb_release(struct kobject *kobj)
187{
188 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
189 s_kobj);
190 complete(&sbi->s_kobj_unregister);
191}
192
ea91e9b0 193#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
b59d0bae
NJ
194static struct f2fs_attr f2fs_attr_##_name = { \
195 .attr = {.name = __stringify(_name), .mode = _mode }, \
196 .show = _show, \
197 .store = _store, \
ea91e9b0
JK
198 .struct_type = _struct_type, \
199 .offset = _offset \
b59d0bae
NJ
200}
201
ea91e9b0
JK
202#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
203 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
204 f2fs_sbi_show, f2fs_sbi_store, \
205 offsetof(struct struct_name, elname))
b59d0bae 206
ea91e9b0
JK
207F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
208F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
209F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
210F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
211F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
7ac8c3b0 212F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
bba681cb 213F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, batched_trim_sections, trim_sections);
216fbd64
JK
214F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
215F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
c1ce1b02 216F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_fsync_blocks, min_fsync_blocks);
cdfc41c1 217F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ram_thresh, ram_thresh);
ea1a29a0 218F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ra_nid_pages, ra_nid_pages);
b1c57c1c 219F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
ab9fa662 220F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level);
6beceb54 221F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, cp_interval, interval_time[CP_TIME]);
b59d0bae
NJ
222
223#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
224static struct attribute *f2fs_attrs[] = {
225 ATTR_LIST(gc_min_sleep_time),
226 ATTR_LIST(gc_max_sleep_time),
227 ATTR_LIST(gc_no_gc_sleep_time),
d2dc095f 228 ATTR_LIST(gc_idle),
ea91e9b0 229 ATTR_LIST(reclaim_segments),
7ac8c3b0 230 ATTR_LIST(max_small_discards),
bba681cb 231 ATTR_LIST(batched_trim_sections),
216fbd64
JK
232 ATTR_LIST(ipu_policy),
233 ATTR_LIST(min_ipu_util),
c1ce1b02 234 ATTR_LIST(min_fsync_blocks),
b1c57c1c 235 ATTR_LIST(max_victim_search),
ab9fa662 236 ATTR_LIST(dir_level),
cdfc41c1 237 ATTR_LIST(ram_thresh),
ea1a29a0 238 ATTR_LIST(ra_nid_pages),
60b99b48 239 ATTR_LIST(cp_interval),
b59d0bae
NJ
240 NULL,
241};
242
243static const struct sysfs_ops f2fs_attr_ops = {
244 .show = f2fs_attr_show,
245 .store = f2fs_attr_store,
246};
247
248static struct kobj_type f2fs_ktype = {
249 .default_attrs = f2fs_attrs,
250 .sysfs_ops = &f2fs_attr_ops,
251 .release = f2fs_sb_release,
252};
253
a07ef784
NJ
254void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
255{
256 struct va_format vaf;
257 va_list args;
258
259 va_start(args, fmt);
260 vaf.fmt = fmt;
261 vaf.va = &args;
262 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
263 va_end(args);
264}
265
aff063e2
JK
266static void init_once(void *foo)
267{
268 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
269
aff063e2
JK
270 inode_init_once(&fi->vfs_inode);
271}
272
696c018c
NJ
273static int parse_options(struct super_block *sb, char *options)
274{
275 struct f2fs_sb_info *sbi = F2FS_SB(sb);
09d54cdd 276 struct request_queue *q;
696c018c
NJ
277 substring_t args[MAX_OPT_ARGS];
278 char *p, *name;
279 int arg = 0;
280
281 if (!options)
282 return 0;
283
284 while ((p = strsep(&options, ",")) != NULL) {
285 int token;
286 if (!*p)
287 continue;
288 /*
289 * Initialize args struct so we know whether arg was
290 * found; some options take optional arguments.
291 */
292 args[0].to = args[0].from = NULL;
293 token = match_token(p, f2fs_tokens, args);
294
295 switch (token) {
296 case Opt_gc_background:
297 name = match_strdup(&args[0]);
298
299 if (!name)
300 return -ENOMEM;
6aefd93b 301 if (strlen(name) == 2 && !strncmp(name, "on", 2)) {
696c018c 302 set_opt(sbi, BG_GC);
6aefd93b
JK
303 clear_opt(sbi, FORCE_FG_GC);
304 } else if (strlen(name) == 3 && !strncmp(name, "off", 3)) {
696c018c 305 clear_opt(sbi, BG_GC);
6aefd93b
JK
306 clear_opt(sbi, FORCE_FG_GC);
307 } else if (strlen(name) == 4 && !strncmp(name, "sync", 4)) {
308 set_opt(sbi, BG_GC);
309 set_opt(sbi, FORCE_FG_GC);
310 } else {
696c018c
NJ
311 kfree(name);
312 return -EINVAL;
313 }
314 kfree(name);
315 break;
316 case Opt_disable_roll_forward:
317 set_opt(sbi, DISABLE_ROLL_FORWARD);
318 break;
2d834bf9
JK
319 case Opt_norecovery:
320 /* this option mounts f2fs with ro */
321 set_opt(sbi, DISABLE_ROLL_FORWARD);
322 if (!f2fs_readonly(sb))
323 return -EINVAL;
324 break;
696c018c 325 case Opt_discard:
09d54cdd
CY
326 q = bdev_get_queue(sb->s_bdev);
327 if (blk_queue_discard(q)) {
328 set_opt(sbi, DISCARD);
329 } else {
330 f2fs_msg(sb, KERN_WARNING,
331 "mounting with \"discard\" option, but "
332 "the device does not support discard");
333 }
696c018c
NJ
334 break;
335 case Opt_noheap:
336 set_opt(sbi, NOHEAP);
337 break;
338#ifdef CONFIG_F2FS_FS_XATTR
4058c511
KA
339 case Opt_user_xattr:
340 set_opt(sbi, XATTR_USER);
341 break;
696c018c
NJ
342 case Opt_nouser_xattr:
343 clear_opt(sbi, XATTR_USER);
344 break;
444c580f
JK
345 case Opt_inline_xattr:
346 set_opt(sbi, INLINE_XATTR);
347 break;
696c018c 348#else
4058c511
KA
349 case Opt_user_xattr:
350 f2fs_msg(sb, KERN_INFO,
351 "user_xattr options not supported");
352 break;
696c018c
NJ
353 case Opt_nouser_xattr:
354 f2fs_msg(sb, KERN_INFO,
355 "nouser_xattr options not supported");
356 break;
444c580f
JK
357 case Opt_inline_xattr:
358 f2fs_msg(sb, KERN_INFO,
359 "inline_xattr options not supported");
360 break;
696c018c
NJ
361#endif
362#ifdef CONFIG_F2FS_FS_POSIX_ACL
4058c511
KA
363 case Opt_acl:
364 set_opt(sbi, POSIX_ACL);
365 break;
696c018c
NJ
366 case Opt_noacl:
367 clear_opt(sbi, POSIX_ACL);
368 break;
369#else
4058c511
KA
370 case Opt_acl:
371 f2fs_msg(sb, KERN_INFO, "acl options not supported");
372 break;
696c018c
NJ
373 case Opt_noacl:
374 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
375 break;
376#endif
377 case Opt_active_logs:
378 if (args->from && match_int(args, &arg))
379 return -EINVAL;
380 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
381 return -EINVAL;
382 sbi->active_logs = arg;
383 break;
384 case Opt_disable_ext_identify:
385 set_opt(sbi, DISABLE_EXT_IDENTIFY);
386 break;
8274de77
HL
387 case Opt_inline_data:
388 set_opt(sbi, INLINE_DATA);
389 break;
5efd3c6f
CY
390 case Opt_inline_dentry:
391 set_opt(sbi, INLINE_DENTRY);
392 break;
6b4afdd7
JK
393 case Opt_flush_merge:
394 set_opt(sbi, FLUSH_MERGE);
395 break;
0f7b2abd
JK
396 case Opt_nobarrier:
397 set_opt(sbi, NOBARRIER);
398 break;
d5053a34
JK
399 case Opt_fastboot:
400 set_opt(sbi, FASTBOOT);
401 break;
89672159
CY
402 case Opt_extent_cache:
403 set_opt(sbi, EXTENT_CACHE);
404 break;
7daaea25
JK
405 case Opt_noextent_cache:
406 clear_opt(sbi, EXTENT_CACHE);
407 break;
75342797
WL
408 case Opt_noinline_data:
409 clear_opt(sbi, INLINE_DATA);
410 break;
343f40f0
CY
411 case Opt_data_flush:
412 set_opt(sbi, DATA_FLUSH);
413 break;
696c018c
NJ
414 default:
415 f2fs_msg(sb, KERN_ERR,
416 "Unrecognized mount option \"%s\" or missing value",
417 p);
418 return -EINVAL;
419 }
420 }
421 return 0;
422}
423
aff063e2
JK
424static struct inode *f2fs_alloc_inode(struct super_block *sb)
425{
426 struct f2fs_inode_info *fi;
427
a0acdfe0 428 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
aff063e2
JK
429 if (!fi)
430 return NULL;
431
432 init_once((void *) fi);
433
434720fa 434 /* Initialize f2fs-specific inode info */
aff063e2 435 fi->vfs_inode.i_version = 1;
a7ffdbe2 436 atomic_set(&fi->dirty_pages, 0);
aff063e2
JK
437 fi->i_current_depth = 1;
438 fi->i_advise = 0;
d928bfbf 439 init_rwsem(&fi->i_sem);
2710fd7e 440 INIT_LIST_HEAD(&fi->dirty_list);
88b88a66
JK
441 INIT_LIST_HEAD(&fi->inmem_pages);
442 mutex_init(&fi->inmem_lock);
aff063e2
JK
443
444 set_inode_flag(fi, FI_NEW_INODE);
445
444c580f
JK
446 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
447 set_inode_flag(fi, FI_INLINE_XATTR);
448
ab9fa662
JK
449 /* Will be used by directory only */
450 fi->i_dir_level = F2FS_SB(sb)->dir_level;
451
57e5055b
JK
452#ifdef CONFIG_F2FS_FS_ENCRYPTION
453 fi->i_crypt_info = NULL;
454#endif
aff063e2
JK
455 return &fi->vfs_inode;
456}
457
531ad7d5
JK
458static int f2fs_drop_inode(struct inode *inode)
459{
460 /*
461 * This is to avoid a deadlock condition like below.
462 * writeback_single_inode(inode)
463 * - f2fs_write_data_page
464 * - f2fs_gc -> iput -> evict
465 * - inode_wait_for_writeback(inode)
466 */
06e1bc05
JK
467 if (!inode_unhashed(inode) && inode->i_state & I_SYNC) {
468 if (!inode->i_nlink && !is_bad_inode(inode)) {
3e72f721
JK
469 /* to avoid evict_inode call simultaneously */
470 atomic_inc(&inode->i_count);
06e1bc05
JK
471 spin_unlock(&inode->i_lock);
472
473 /* some remained atomic pages should discarded */
474 if (f2fs_is_atomic_file(inode))
475 commit_inmem_pages(inode, true);
476
3e72f721
JK
477 /* should remain fi->extent_tree for writepage */
478 f2fs_destroy_extent_node(inode);
479
06e1bc05
JK
480 sb_start_intwrite(inode->i_sb);
481 i_size_write(inode, 0);
482
483 if (F2FS_HAS_BLOCKS(inode))
55f57d2c 484 f2fs_truncate(inode, true);
06e1bc05
JK
485
486 sb_end_intwrite(inode->i_sb);
487
488#ifdef CONFIG_F2FS_FS_ENCRYPTION
489 if (F2FS_I(inode)->i_crypt_info)
26bf3dc7
JK
490 f2fs_free_encryption_info(inode,
491 F2FS_I(inode)->i_crypt_info);
06e1bc05
JK
492#endif
493 spin_lock(&inode->i_lock);
3e72f721 494 atomic_dec(&inode->i_count);
06e1bc05 495 }
531ad7d5 496 return 0;
06e1bc05 497 }
531ad7d5
JK
498 return generic_drop_inode(inode);
499}
500
b3783873
JK
501/*
502 * f2fs_dirty_inode() is called from __mark_inode_dirty()
503 *
504 * We should call set_dirty_inode to write the dirty inode through write_inode.
505 */
506static void f2fs_dirty_inode(struct inode *inode, int flags)
507{
508 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
b3783873
JK
509}
510
aff063e2
JK
511static void f2fs_i_callback(struct rcu_head *head)
512{
513 struct inode *inode = container_of(head, struct inode, i_rcu);
514 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
515}
516
25ca923b 517static void f2fs_destroy_inode(struct inode *inode)
aff063e2
JK
518{
519 call_rcu(&inode->i_rcu, f2fs_i_callback);
520}
521
522static void f2fs_put_super(struct super_block *sb)
523{
524 struct f2fs_sb_info *sbi = F2FS_SB(sb);
525
5e176d54
JK
526 if (sbi->s_proc) {
527 remove_proc_entry("segment_info", sbi->s_proc);
528 remove_proc_entry(sb->s_id, f2fs_proc_root);
529 }
b59d0bae 530 kobject_del(&sbi->s_kobj);
5e176d54 531
aff063e2
JK
532 stop_gc_thread(sbi);
533
2658e50d
JK
534 /* prevent remaining shrinker jobs */
535 mutex_lock(&sbi->umount_mutex);
536
85dc2f2c
JK
537 /*
538 * We don't need to do checkpoint when superblock is clean.
539 * But, the previous checkpoint was not done by umount, it needs to do
540 * clean checkpoint again.
541 */
caf0047e 542 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
85dc2f2c 543 !is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG)) {
75ab4cb8
JK
544 struct cp_control cpc = {
545 .reason = CP_UMOUNT,
546 };
547 write_checkpoint(sbi, &cpc);
548 }
aff063e2 549
eca616f8
JK
550 /* write_checkpoint can update stat informaion */
551 f2fs_destroy_stats(sbi);
552
cf779cab
JK
553 /*
554 * normally superblock is clean, so we need to release this.
555 * In addition, EIO will skip do checkpoint, we need this as well.
556 */
a49324f1 557 release_ino_entry(sbi);
4b2fecc8 558 release_discard_addrs(sbi);
6f12ac25 559
2658e50d
JK
560 f2fs_leave_shrinker(sbi);
561 mutex_unlock(&sbi->umount_mutex);
562
aff063e2
JK
563 iput(sbi->node_inode);
564 iput(sbi->meta_inode);
565
566 /* destroy f2fs internal modules */
567 destroy_node_manager(sbi);
568 destroy_segment_manager(sbi);
569
570 kfree(sbi->ckpt);
b59d0bae
NJ
571 kobject_put(&sbi->s_kobj);
572 wait_for_completion(&sbi->s_kobj_unregister);
aff063e2
JK
573
574 sb->s_fs_info = NULL;
b39f0de2 575 kfree(sbi->raw_super);
aff063e2
JK
576 kfree(sbi);
577}
578
579int f2fs_sync_fs(struct super_block *sb, int sync)
580{
581 struct f2fs_sb_info *sbi = F2FS_SB(sb);
c34f42e2 582 int err = 0;
aff063e2 583
a2a4a7e4
NJ
584 trace_f2fs_sync_fs(sb, sync);
585
b7473754 586 if (sync) {
d5053a34
JK
587 struct cp_control cpc;
588
119ee914
JK
589 cpc.reason = __get_cp_reason(sbi);
590
b7473754 591 mutex_lock(&sbi->gc_mutex);
c34f42e2 592 err = write_checkpoint(sbi, &cpc);
b7473754 593 mutex_unlock(&sbi->gc_mutex);
b7473754 594 }
05ca3632 595 f2fs_trace_ios(NULL, 1);
aff063e2 596
c34f42e2 597 return err;
aff063e2
JK
598}
599
d6212a5f
CL
600static int f2fs_freeze(struct super_block *sb)
601{
602 int err;
603
77888c1e 604 if (f2fs_readonly(sb))
d6212a5f
CL
605 return 0;
606
607 err = f2fs_sync_fs(sb, 1);
608 return err;
609}
610
611static int f2fs_unfreeze(struct super_block *sb)
612{
613 return 0;
614}
615
aff063e2
JK
616static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
617{
618 struct super_block *sb = dentry->d_sb;
619 struct f2fs_sb_info *sbi = F2FS_SB(sb);
620 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
621 block_t total_count, user_block_count, start_count, ovp_count;
622
623 total_count = le64_to_cpu(sbi->raw_super->block_count);
624 user_block_count = sbi->user_block_count;
625 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
626 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
627 buf->f_type = F2FS_SUPER_MAGIC;
628 buf->f_bsize = sbi->blocksize;
629
630 buf->f_blocks = total_count - start_count;
631 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
632 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
633
c200b1aa
CY
634 buf->f_files = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
635 buf->f_ffree = buf->f_files - valid_inode_count(sbi);
aff063e2 636
5a20d339 637 buf->f_namelen = F2FS_NAME_LEN;
aff063e2
JK
638 buf->f_fsid.val[0] = (u32)id;
639 buf->f_fsid.val[1] = (u32)(id >> 32);
640
641 return 0;
642}
643
644static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
645{
646 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
647
6aefd93b
JK
648 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, BG_GC)) {
649 if (test_opt(sbi, FORCE_FG_GC))
650 seq_printf(seq, ",background_gc=%s", "sync");
651 else
652 seq_printf(seq, ",background_gc=%s", "on");
653 } else {
696c018c 654 seq_printf(seq, ",background_gc=%s", "off");
6aefd93b 655 }
aff063e2
JK
656 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
657 seq_puts(seq, ",disable_roll_forward");
658 if (test_opt(sbi, DISCARD))
659 seq_puts(seq, ",discard");
660 if (test_opt(sbi, NOHEAP))
661 seq_puts(seq, ",no_heap_alloc");
662#ifdef CONFIG_F2FS_FS_XATTR
663 if (test_opt(sbi, XATTR_USER))
664 seq_puts(seq, ",user_xattr");
665 else
666 seq_puts(seq, ",nouser_xattr");
444c580f
JK
667 if (test_opt(sbi, INLINE_XATTR))
668 seq_puts(seq, ",inline_xattr");
aff063e2
JK
669#endif
670#ifdef CONFIG_F2FS_FS_POSIX_ACL
671 if (test_opt(sbi, POSIX_ACL))
672 seq_puts(seq, ",acl");
673 else
674 seq_puts(seq, ",noacl");
675#endif
676 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
aa43507f 677 seq_puts(seq, ",disable_ext_identify");
8274de77
HL
678 if (test_opt(sbi, INLINE_DATA))
679 seq_puts(seq, ",inline_data");
75342797
WL
680 else
681 seq_puts(seq, ",noinline_data");
5efd3c6f
CY
682 if (test_opt(sbi, INLINE_DENTRY))
683 seq_puts(seq, ",inline_dentry");
b270ad6f 684 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
6b4afdd7 685 seq_puts(seq, ",flush_merge");
0f7b2abd
JK
686 if (test_opt(sbi, NOBARRIER))
687 seq_puts(seq, ",nobarrier");
d5053a34
JK
688 if (test_opt(sbi, FASTBOOT))
689 seq_puts(seq, ",fastboot");
89672159
CY
690 if (test_opt(sbi, EXTENT_CACHE))
691 seq_puts(seq, ",extent_cache");
7daaea25
JK
692 else
693 seq_puts(seq, ",noextent_cache");
343f40f0
CY
694 if (test_opt(sbi, DATA_FLUSH))
695 seq_puts(seq, ",data_flush");
aff063e2
JK
696 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
697
698 return 0;
699}
700
5e176d54
JK
701static int segment_info_seq_show(struct seq_file *seq, void *offset)
702{
703 struct super_block *sb = seq->private;
704 struct f2fs_sb_info *sbi = F2FS_SB(sb);
6c311ec6
CF
705 unsigned int total_segs =
706 le32_to_cpu(sbi->raw_super->segment_count_main);
5e176d54
JK
707 int i;
708
90aa6dc9
CY
709 seq_puts(seq, "format: segment_type|valid_blocks\n"
710 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
711
5e176d54 712 for (i = 0; i < total_segs; i++) {
90aa6dc9
CY
713 struct seg_entry *se = get_seg_entry(sbi, i);
714
715 if ((i % 10) == 0)
01a5ad82 716 seq_printf(seq, "%-10d", i);
90aa6dc9
CY
717 seq_printf(seq, "%d|%-3u", se->type,
718 get_valid_blocks(sbi, i, 1));
46c04366
GZ
719 if ((i % 10) == 9 || i == (total_segs - 1))
720 seq_putc(seq, '\n');
5e176d54 721 else
46c04366 722 seq_putc(seq, ' ');
5e176d54 723 }
46c04366 724
5e176d54
JK
725 return 0;
726}
727
728static int segment_info_open_fs(struct inode *inode, struct file *file)
729{
730 return single_open(file, segment_info_seq_show, PDE_DATA(inode));
731}
732
733static const struct file_operations f2fs_seq_segment_info_fops = {
734 .owner = THIS_MODULE,
735 .open = segment_info_open_fs,
736 .read = seq_read,
737 .llseek = seq_lseek,
738 .release = single_release,
739};
740
498c5e9f
YH
741static void default_options(struct f2fs_sb_info *sbi)
742{
743 /* init some FS parameters */
744 sbi->active_logs = NR_CURSEG_TYPE;
745
746 set_opt(sbi, BG_GC);
747 set_opt(sbi, INLINE_DATA);
3e72f721 748 set_opt(sbi, EXTENT_CACHE);
498c5e9f
YH
749
750#ifdef CONFIG_F2FS_FS_XATTR
751 set_opt(sbi, XATTR_USER);
752#endif
753#ifdef CONFIG_F2FS_FS_POSIX_ACL
754 set_opt(sbi, POSIX_ACL);
755#endif
756}
757
696c018c
NJ
758static int f2fs_remount(struct super_block *sb, int *flags, char *data)
759{
760 struct f2fs_sb_info *sbi = F2FS_SB(sb);
761 struct f2fs_mount_info org_mount_opt;
762 int err, active_logs;
876dc59e
GZ
763 bool need_restart_gc = false;
764 bool need_stop_gc = false;
9cd81ce3 765 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
696c018c 766
02b9984d
TT
767 sync_filesystem(sb);
768
696c018c
NJ
769 /*
770 * Save the old mount options in case we
771 * need to restore them.
772 */
773 org_mount_opt = sbi->mount_opt;
774 active_logs = sbi->active_logs;
775
26666c8a 776 sbi->mount_opt.opt = 0;
498c5e9f 777 default_options(sbi);
26666c8a 778
696c018c
NJ
779 /* parse mount options */
780 err = parse_options(sb, data);
781 if (err)
782 goto restore_opts;
783
784 /*
785 * Previous and new state of filesystem is RO,
876dc59e 786 * so skip checking GC and FLUSH_MERGE conditions.
696c018c 787 */
6b2920a5 788 if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
696c018c
NJ
789 goto skip;
790
9cd81ce3
CY
791 /* disallow enable/disable extent_cache dynamically */
792 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
793 err = -EINVAL;
794 f2fs_msg(sbi->sb, KERN_WARNING,
795 "switch extent_cache option is not allowed");
796 goto restore_opts;
797 }
798
696c018c
NJ
799 /*
800 * We stop the GC thread if FS is mounted as RO
801 * or if background_gc = off is passed in mount
802 * option. Also sync the filesystem.
803 */
804 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
805 if (sbi->gc_thread) {
806 stop_gc_thread(sbi);
807 f2fs_sync_fs(sb, 1);
876dc59e 808 need_restart_gc = true;
696c018c 809 }
aba291b3 810 } else if (!sbi->gc_thread) {
696c018c
NJ
811 err = start_gc_thread(sbi);
812 if (err)
813 goto restore_opts;
876dc59e
GZ
814 need_stop_gc = true;
815 }
816
817 /*
818 * We stop issue flush thread if FS is mounted as RO
819 * or if flush_merge is not passed in mount option.
820 */
821 if ((*flags & MS_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
2163d198 822 destroy_flush_cmd_control(sbi);
aba291b3 823 } else if (!SM_I(sbi)->cmd_control_info) {
2163d198
GZ
824 err = create_flush_cmd_control(sbi);
825 if (err)
a688b9d9 826 goto restore_gc;
696c018c
NJ
827 }
828skip:
829 /* Update the POSIXACL Flag */
830 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
831 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
832 return 0;
876dc59e
GZ
833restore_gc:
834 if (need_restart_gc) {
835 if (start_gc_thread(sbi))
836 f2fs_msg(sbi->sb, KERN_WARNING,
e1c42045 837 "background gc thread has stopped");
876dc59e
GZ
838 } else if (need_stop_gc) {
839 stop_gc_thread(sbi);
840 }
696c018c
NJ
841restore_opts:
842 sbi->mount_opt = org_mount_opt;
843 sbi->active_logs = active_logs;
844 return err;
845}
846
aff063e2
JK
847static struct super_operations f2fs_sops = {
848 .alloc_inode = f2fs_alloc_inode,
531ad7d5 849 .drop_inode = f2fs_drop_inode,
aff063e2
JK
850 .destroy_inode = f2fs_destroy_inode,
851 .write_inode = f2fs_write_inode,
b3783873 852 .dirty_inode = f2fs_dirty_inode,
aff063e2
JK
853 .show_options = f2fs_show_options,
854 .evict_inode = f2fs_evict_inode,
855 .put_super = f2fs_put_super,
856 .sync_fs = f2fs_sync_fs,
d6212a5f
CL
857 .freeze_fs = f2fs_freeze,
858 .unfreeze_fs = f2fs_unfreeze,
aff063e2 859 .statfs = f2fs_statfs,
696c018c 860 .remount_fs = f2fs_remount,
aff063e2
JK
861};
862
863static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
864 u64 ino, u32 generation)
865{
866 struct f2fs_sb_info *sbi = F2FS_SB(sb);
867 struct inode *inode;
868
d6b7d4b3 869 if (check_nid_range(sbi, ino))
910bb12d 870 return ERR_PTR(-ESTALE);
aff063e2
JK
871
872 /*
873 * f2fs_iget isn't quite right if the inode is currently unallocated!
874 * However f2fs_iget currently does appropriate checks to handle stale
875 * inodes so everything is OK.
876 */
877 inode = f2fs_iget(sb, ino);
878 if (IS_ERR(inode))
879 return ERR_CAST(inode);
6bacf52f 880 if (unlikely(generation && inode->i_generation != generation)) {
aff063e2
JK
881 /* we didn't find the right inode.. */
882 iput(inode);
883 return ERR_PTR(-ESTALE);
884 }
885 return inode;
886}
887
888static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
889 int fh_len, int fh_type)
890{
891 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
892 f2fs_nfs_get_inode);
893}
894
895static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
896 int fh_len, int fh_type)
897{
898 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
899 f2fs_nfs_get_inode);
900}
901
902static const struct export_operations f2fs_export_ops = {
903 .fh_to_dentry = f2fs_fh_to_dentry,
904 .fh_to_parent = f2fs_fh_to_parent,
905 .get_parent = f2fs_get_parent,
906};
907
e0afc4d6 908static loff_t max_file_blocks(void)
aff063e2 909{
de93653f 910 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
aff063e2
JK
911 loff_t leaf_count = ADDRS_PER_BLOCK;
912
913 /* two direct node blocks */
914 result += (leaf_count * 2);
915
916 /* two indirect node blocks */
917 leaf_count *= NIDS_PER_BLOCK;
918 result += (leaf_count * 2);
919
920 /* one double indirect node block */
921 leaf_count *= NIDS_PER_BLOCK;
922 result += leaf_count;
923
aff063e2
JK
924 return result;
925}
926
9a59b62f
CY
927static inline bool sanity_check_area_boundary(struct super_block *sb,
928 struct f2fs_super_block *raw_super)
929{
930 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
931 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
932 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
933 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
934 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
935 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
936 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
937 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
938 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
939 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
940 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
941 u32 segment_count = le32_to_cpu(raw_super->segment_count);
942 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
943
944 if (segment0_blkaddr != cp_blkaddr) {
945 f2fs_msg(sb, KERN_INFO,
946 "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
947 segment0_blkaddr, cp_blkaddr);
948 return true;
949 }
950
951 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
952 sit_blkaddr) {
953 f2fs_msg(sb, KERN_INFO,
954 "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
955 cp_blkaddr, sit_blkaddr,
956 segment_count_ckpt << log_blocks_per_seg);
957 return true;
958 }
959
960 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
961 nat_blkaddr) {
962 f2fs_msg(sb, KERN_INFO,
963 "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
964 sit_blkaddr, nat_blkaddr,
965 segment_count_sit << log_blocks_per_seg);
966 return true;
967 }
968
969 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
970 ssa_blkaddr) {
971 f2fs_msg(sb, KERN_INFO,
972 "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
973 nat_blkaddr, ssa_blkaddr,
974 segment_count_nat << log_blocks_per_seg);
975 return true;
976 }
977
978 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
979 main_blkaddr) {
980 f2fs_msg(sb, KERN_INFO,
981 "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
982 ssa_blkaddr, main_blkaddr,
983 segment_count_ssa << log_blocks_per_seg);
984 return true;
985 }
986
987 if (main_blkaddr + (segment_count_main << log_blocks_per_seg) !=
988 segment0_blkaddr + (segment_count << log_blocks_per_seg)) {
989 f2fs_msg(sb, KERN_INFO,
990 "Wrong MAIN_AREA boundary, start(%u) end(%u) blocks(%u)",
991 main_blkaddr,
992 segment0_blkaddr + (segment_count << log_blocks_per_seg),
993 segment_count_main << log_blocks_per_seg);
994 return true;
995 }
996
997 return false;
998}
999
a07ef784
NJ
1000static int sanity_check_raw_super(struct super_block *sb,
1001 struct f2fs_super_block *raw_super)
aff063e2
JK
1002{
1003 unsigned int blocksize;
1004
a07ef784
NJ
1005 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
1006 f2fs_msg(sb, KERN_INFO,
1007 "Magic Mismatch, valid(0x%x) - read(0x%x)",
1008 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
aff063e2 1009 return 1;
a07ef784 1010 }
aff063e2 1011
5c9b4692 1012 /* Currently, support only 4KB page cache size */
1013 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
1014 f2fs_msg(sb, KERN_INFO,
14d7e9de 1015 "Invalid page_cache_size (%lu), supports only 4KB\n",
5c9b4692 1016 PAGE_CACHE_SIZE);
1017 return 1;
1018 }
1019
aff063e2
JK
1020 /* Currently, support only 4KB block size */
1021 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
5c9b4692 1022 if (blocksize != F2FS_BLKSIZE) {
a07ef784
NJ
1023 f2fs_msg(sb, KERN_INFO,
1024 "Invalid blocksize (%u), supports only 4KB\n",
1025 blocksize);
aff063e2 1026 return 1;
a07ef784 1027 }
5c9b4692 1028
9a59b62f
CY
1029 /* check log blocks per segment */
1030 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
1031 f2fs_msg(sb, KERN_INFO,
1032 "Invalid log blocks per segment (%u)\n",
1033 le32_to_cpu(raw_super->log_blocks_per_seg));
1034 return 1;
1035 }
1036
55cf9cb6
CY
1037 /* Currently, support 512/1024/2048/4096 bytes sector size */
1038 if (le32_to_cpu(raw_super->log_sectorsize) >
1039 F2FS_MAX_LOG_SECTOR_SIZE ||
1040 le32_to_cpu(raw_super->log_sectorsize) <
1041 F2FS_MIN_LOG_SECTOR_SIZE) {
1042 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize (%u)",
1043 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 1044 return 1;
a07ef784 1045 }
55cf9cb6
CY
1046 if (le32_to_cpu(raw_super->log_sectors_per_block) +
1047 le32_to_cpu(raw_super->log_sectorsize) !=
1048 F2FS_MAX_LOG_SECTOR_SIZE) {
1049 f2fs_msg(sb, KERN_INFO,
1050 "Invalid log sectors per block(%u) log sectorsize(%u)",
1051 le32_to_cpu(raw_super->log_sectors_per_block),
1052 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 1053 return 1;
a07ef784 1054 }
9a59b62f
CY
1055
1056 /* check reserved ino info */
1057 if (le32_to_cpu(raw_super->node_ino) != 1 ||
1058 le32_to_cpu(raw_super->meta_ino) != 2 ||
1059 le32_to_cpu(raw_super->root_ino) != 3) {
1060 f2fs_msg(sb, KERN_INFO,
1061 "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
1062 le32_to_cpu(raw_super->node_ino),
1063 le32_to_cpu(raw_super->meta_ino),
1064 le32_to_cpu(raw_super->root_ino));
1065 return 1;
1066 }
1067
1068 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
1069 if (sanity_check_area_boundary(sb, raw_super))
1070 return 1;
1071
aff063e2
JK
1072 return 0;
1073}
1074
577e3495 1075static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
aff063e2
JK
1076{
1077 unsigned int total, fsmeta;
577e3495
JK
1078 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
1079 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
aff063e2
JK
1080
1081 total = le32_to_cpu(raw_super->segment_count);
1082 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
1083 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
1084 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
1085 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
1086 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
1087
6bacf52f 1088 if (unlikely(fsmeta >= total))
aff063e2 1089 return 1;
577e3495 1090
1e968fdf 1091 if (unlikely(f2fs_cp_error(sbi))) {
577e3495
JK
1092 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
1093 return 1;
1094 }
aff063e2
JK
1095 return 0;
1096}
1097
1098static void init_sb_info(struct f2fs_sb_info *sbi)
1099{
1100 struct f2fs_super_block *raw_super = sbi->raw_super;
1101 int i;
1102
1103 sbi->log_sectors_per_block =
1104 le32_to_cpu(raw_super->log_sectors_per_block);
1105 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
1106 sbi->blocksize = 1 << sbi->log_blocksize;
1107 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
1108 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
1109 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
1110 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
1111 sbi->total_sections = le32_to_cpu(raw_super->section_count);
1112 sbi->total_node_count =
1113 (le32_to_cpu(raw_super->segment_count_nat) / 2)
1114 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
1115 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
1116 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
1117 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
5ec4e49f 1118 sbi->cur_victim_sec = NULL_SECNO;
b1c57c1c 1119 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
aff063e2
JK
1120
1121 for (i = 0; i < NR_COUNT_TYPE; i++)
1122 atomic_set(&sbi->nr_pages[i], 0);
ab9fa662
JK
1123
1124 sbi->dir_level = DEF_DIR_LEVEL;
6beceb54 1125 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
caf0047e 1126 clear_sbi_flag(sbi, SBI_NEED_FSCK);
2658e50d
JK
1127
1128 INIT_LIST_HEAD(&sbi->s_list);
1129 mutex_init(&sbi->umount_mutex);
aff063e2
JK
1130}
1131
9076a75f
GZ
1132/*
1133 * Read f2fs raw super block.
1134 * Because we have two copies of super block, so read the first one at first,
1135 * if the first one is invalid, move to read the second one.
1136 */
1137static int read_raw_super_block(struct super_block *sb,
1138 struct f2fs_super_block **raw_super,
e8240f65 1139 int *valid_super_block, int *recovery)
14d7e9de 1140{
9076a75f 1141 int block = 0;
e8240f65
CY
1142 struct buffer_head *bh;
1143 struct f2fs_super_block *super, *buf;
da554e48 1144 int err = 0;
14d7e9de 1145
b39f0de2
YH
1146 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
1147 if (!super)
1148 return -ENOMEM;
9076a75f 1149retry:
e8240f65
CY
1150 bh = sb_bread(sb, block);
1151 if (!bh) {
da554e48 1152 *recovery = 1;
9076a75f
GZ
1153 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
1154 block + 1);
e8240f65
CY
1155 err = -EIO;
1156 goto next;
14d7e9de 1157 }
1158
e8240f65 1159 buf = (struct f2fs_super_block *)(bh->b_data + F2FS_SUPER_OFFSET);
14d7e9de 1160
1161 /* sanity checking of raw super */
e8240f65
CY
1162 if (sanity_check_raw_super(sb, buf)) {
1163 brelse(bh);
da554e48 1164 *recovery = 1;
6c311ec6
CF
1165 f2fs_msg(sb, KERN_ERR,
1166 "Can't find valid F2FS filesystem in %dth superblock",
1167 block + 1);
e8240f65
CY
1168 err = -EINVAL;
1169 goto next;
9076a75f 1170 }
14d7e9de 1171
da554e48 1172 if (!*raw_super) {
e8240f65
CY
1173 memcpy(super, buf, sizeof(*super));
1174 *valid_super_block = block;
da554e48 1175 *raw_super = super;
da554e48 1176 }
e8240f65 1177 brelse(bh);
da554e48 1178
e8240f65 1179next:
da554e48 1180 /* check the validity of the second superblock */
1181 if (block == 0) {
1182 block++;
1183 goto retry;
1184 }
1185
da554e48 1186 /* No valid superblock */
b39f0de2
YH
1187 if (!*raw_super) {
1188 kfree(super);
da554e48 1189 return err;
b39f0de2 1190 }
da554e48 1191
9076a75f 1192 return 0;
14d7e9de 1193}
1194
06d6f226 1195static int __f2fs_commit_super(struct f2fs_sb_info *sbi, int block)
26d815ad 1196{
b39f0de2 1197 struct f2fs_super_block *super = F2FS_RAW_SUPER(sbi);
5d909cdb 1198 struct buffer_head *bh;
26d815ad
JK
1199 int err;
1200
b3980910 1201 bh = sb_getblk(sbi->sb, block);
5d909cdb
JK
1202 if (!bh)
1203 return -EIO;
26d815ad 1204
5d909cdb 1205 lock_buffer(bh);
b39f0de2 1206 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
5d909cdb
JK
1207 set_buffer_uptodate(bh);
1208 set_buffer_dirty(bh);
1209 unlock_buffer(bh);
1210
1211 /* it's rare case, we can do fua all the time */
1212 err = __sync_dirty_buffer(bh, WRITE_FLUSH_FUA);
1213 brelse(bh);
c5bda1c8 1214
b3980910
CY
1215 return err;
1216}
1217
1218int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
1219{
1220 int err;
1221
1222 /* write back-up superblock first */
1223 err = __f2fs_commit_super(sbi, sbi->valid_super_block ? 0 : 1);
1224
c5bda1c8
CY
1225 /* if we are in recovery path, skip writing valid superblock */
1226 if (recover || err)
5d909cdb 1227 return err;
26d815ad
JK
1228
1229 /* write current valid superblock */
b3980910 1230 return __f2fs_commit_super(sbi, sbi->valid_super_block);
26d815ad
JK
1231}
1232
aff063e2
JK
1233static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
1234{
1235 struct f2fs_sb_info *sbi;
da554e48 1236 struct f2fs_super_block *raw_super;
aff063e2 1237 struct inode *root;
da554e48 1238 long err;
2adc3505 1239 bool retry = true, need_fsck = false;
dabc4a5c 1240 char *options = NULL;
e8240f65 1241 int recovery, i, valid_super_block;
aff063e2 1242
ed2e621a 1243try_onemore:
da554e48 1244 err = -EINVAL;
1245 raw_super = NULL;
e8240f65 1246 valid_super_block = -1;
da554e48 1247 recovery = 0;
1248
aff063e2
JK
1249 /* allocate memory for f2fs-specific super block info */
1250 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
1251 if (!sbi)
1252 return -ENOMEM;
1253
ff9234ad 1254 /* set a block size */
6bacf52f 1255 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
a07ef784 1256 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
aff063e2 1257 goto free_sbi;
a07ef784 1258 }
aff063e2 1259
e8240f65
CY
1260 err = read_raw_super_block(sb, &raw_super, &valid_super_block,
1261 &recovery);
9076a75f
GZ
1262 if (err)
1263 goto free_sbi;
1264
5fb08372 1265 sb->s_fs_info = sbi;
498c5e9f 1266 default_options(sbi);
aff063e2 1267 /* parse mount options */
dabc4a5c
JK
1268 options = kstrdup((const char *)data, GFP_KERNEL);
1269 if (data && !options) {
1270 err = -ENOMEM;
aff063e2 1271 goto free_sb_buf;
dabc4a5c
JK
1272 }
1273
1274 err = parse_options(sb, options);
1275 if (err)
1276 goto free_options;
aff063e2 1277
e0afc4d6
CY
1278 sbi->max_file_blocks = max_file_blocks();
1279 sb->s_maxbytes = sbi->max_file_blocks <<
1280 le32_to_cpu(raw_super->log_blocksize);
aff063e2
JK
1281 sb->s_max_links = F2FS_LINK_MAX;
1282 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1283
1284 sb->s_op = &f2fs_sops;
1285 sb->s_xattr = f2fs_xattr_handlers;
1286 sb->s_export_op = &f2fs_export_ops;
1287 sb->s_magic = F2FS_SUPER_MAGIC;
aff063e2
JK
1288 sb->s_time_gran = 1;
1289 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1290 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
1291 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
1292
1293 /* init f2fs-specific super block info */
1294 sbi->sb = sb;
1295 sbi->raw_super = raw_super;
e8240f65 1296 sbi->valid_super_block = valid_super_block;
aff063e2 1297 mutex_init(&sbi->gc_mutex);
5463e7c1 1298 mutex_init(&sbi->writepages);
aff063e2 1299 mutex_init(&sbi->cp_mutex);
b3582c68 1300 init_rwsem(&sbi->node_write);
315df839
JK
1301
1302 /* disallow all the data/node/meta page writes */
1303 set_sbi_flag(sbi, SBI_POR_DOING);
aff063e2 1304 spin_lock_init(&sbi->stat_lock);
971767ca 1305
df0f8dc0 1306 init_rwsem(&sbi->read_io.io_rwsem);
458e6197
JK
1307 sbi->read_io.sbi = sbi;
1308 sbi->read_io.bio = NULL;
1309 for (i = 0; i < NR_PAGE_TYPE; i++) {
df0f8dc0 1310 init_rwsem(&sbi->write_io[i].io_rwsem);
458e6197
JK
1311 sbi->write_io[i].sbi = sbi;
1312 sbi->write_io[i].bio = NULL;
1313 }
971767ca 1314
e479556b 1315 init_rwsem(&sbi->cp_rwsem);
fb51b5ef 1316 init_waitqueue_head(&sbi->cp_wait);
aff063e2
JK
1317 init_sb_info(sbi);
1318
1319 /* get an inode for meta space */
1320 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
1321 if (IS_ERR(sbi->meta_inode)) {
a07ef784 1322 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
aff063e2 1323 err = PTR_ERR(sbi->meta_inode);
dabc4a5c 1324 goto free_options;
aff063e2
JK
1325 }
1326
1327 err = get_valid_checkpoint(sbi);
a07ef784
NJ
1328 if (err) {
1329 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
aff063e2 1330 goto free_meta_inode;
a07ef784 1331 }
aff063e2
JK
1332
1333 /* sanity checking of checkpoint */
1334 err = -EINVAL;
577e3495 1335 if (sanity_check_ckpt(sbi)) {
a07ef784 1336 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
aff063e2 1337 goto free_cp;
a07ef784 1338 }
aff063e2
JK
1339
1340 sbi->total_valid_node_count =
1341 le32_to_cpu(sbi->ckpt->valid_node_count);
1342 sbi->total_valid_inode_count =
1343 le32_to_cpu(sbi->ckpt->valid_inode_count);
1344 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
1345 sbi->total_valid_block_count =
1346 le64_to_cpu(sbi->ckpt->valid_block_count);
1347 sbi->last_valid_block_count = sbi->total_valid_block_count;
1348 sbi->alloc_valid_block_count = 0;
c227f912
CY
1349 for (i = 0; i < NR_INODE_TYPE; i++) {
1350 INIT_LIST_HEAD(&sbi->inode_list[i]);
1351 spin_lock_init(&sbi->inode_lock[i]);
1352 }
aff063e2 1353
1dcc336b
CY
1354 init_extent_cache_info(sbi);
1355
6451e041 1356 init_ino_entry_info(sbi);
aff063e2
JK
1357
1358 /* setup f2fs internal modules */
1359 err = build_segment_manager(sbi);
a07ef784
NJ
1360 if (err) {
1361 f2fs_msg(sb, KERN_ERR,
1362 "Failed to initialize F2FS segment manager");
aff063e2 1363 goto free_sm;
a07ef784 1364 }
aff063e2 1365 err = build_node_manager(sbi);
a07ef784
NJ
1366 if (err) {
1367 f2fs_msg(sb, KERN_ERR,
1368 "Failed to initialize F2FS node manager");
aff063e2 1369 goto free_nm;
a07ef784 1370 }
aff063e2
JK
1371
1372 build_gc_manager(sbi);
1373
1374 /* get an inode for node space */
1375 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
1376 if (IS_ERR(sbi->node_inode)) {
a07ef784 1377 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
aff063e2
JK
1378 err = PTR_ERR(sbi->node_inode);
1379 goto free_nm;
1380 }
1381
2658e50d
JK
1382 f2fs_join_shrinker(sbi);
1383
aff063e2 1384 /* if there are nt orphan nodes free them */
8c14bfad
CY
1385 err = recover_orphan_inodes(sbi);
1386 if (err)
1387 goto free_node_inode;
aff063e2
JK
1388
1389 /* read root inode and dentry */
1390 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
1391 if (IS_ERR(root)) {
a07ef784 1392 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
aff063e2
JK
1393 err = PTR_ERR(root);
1394 goto free_node_inode;
1395 }
8f99a946 1396 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
9d847950 1397 iput(root);
8f99a946 1398 err = -EINVAL;
9d847950 1399 goto free_node_inode;
8f99a946 1400 }
aff063e2
JK
1401
1402 sb->s_root = d_make_root(root); /* allocate root dentry */
1403 if (!sb->s_root) {
1404 err = -ENOMEM;
1405 goto free_root_inode;
1406 }
1407
aff063e2
JK
1408 err = f2fs_build_stats(sbi);
1409 if (err)
6437d1b0 1410 goto free_root_inode;
aff063e2 1411
5e176d54
JK
1412 if (f2fs_proc_root)
1413 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1414
1415 if (sbi->s_proc)
1416 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
1417 &f2fs_seq_segment_info_fops, sb);
1418
b59d0bae
NJ
1419 sbi->s_kobj.kset = f2fs_kset;
1420 init_completion(&sbi->s_kobj_unregister);
1421 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1422 "%s", sb->s_id);
1423 if (err)
6437d1b0 1424 goto free_proc;
b59d0bae 1425
6437d1b0
JK
1426 /* recover fsynced data */
1427 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
081d78c2
JK
1428 /*
1429 * mount should be failed, when device has readonly mode, and
1430 * previous checkpoint was not done by clean system shutdown.
1431 */
1432 if (bdev_read_only(sb->s_bdev) &&
1433 !is_set_ckpt_flags(sbi->ckpt, CP_UMOUNT_FLAG)) {
1434 err = -EROFS;
1435 goto free_kobj;
1436 }
2adc3505
CY
1437
1438 if (need_fsck)
1439 set_sbi_flag(sbi, SBI_NEED_FSCK);
1440
6437d1b0 1441 err = recover_fsync_data(sbi);
ed2e621a 1442 if (err) {
2adc3505 1443 need_fsck = true;
6437d1b0
JK
1444 f2fs_msg(sb, KERN_ERR,
1445 "Cannot recover all fsync data errno=%ld", err);
ed2e621a
JK
1446 goto free_kobj;
1447 }
6437d1b0 1448 }
315df839
JK
1449 /* recover_fsync_data() cleared this already */
1450 clear_sbi_flag(sbi, SBI_POR_DOING);
b59d0bae 1451
6437d1b0
JK
1452 /*
1453 * If filesystem is not mounted as read-only then
1454 * do start the gc_thread.
1455 */
6c029932 1456 if (test_opt(sbi, BG_GC) && !f2fs_readonly(sb)) {
6437d1b0
JK
1457 /* After POR, we can run background GC thread.*/
1458 err = start_gc_thread(sbi);
1459 if (err)
1460 goto free_kobj;
1461 }
dabc4a5c 1462 kfree(options);
da554e48 1463
1464 /* recover broken superblock */
1465 if (recovery && !f2fs_readonly(sb) && !bdev_read_only(sb->s_bdev)) {
1466 f2fs_msg(sb, KERN_INFO, "Recover invalid superblock");
c5bda1c8 1467 f2fs_commit_super(sbi, true);
da554e48 1468 }
1469
6beceb54 1470 f2fs_update_time(sbi, CP_TIME);
aff063e2 1471 return 0;
6437d1b0
JK
1472
1473free_kobj:
1474 kobject_del(&sbi->s_kobj);
29ba108d
CY
1475 kobject_put(&sbi->s_kobj);
1476 wait_for_completion(&sbi->s_kobj_unregister);
6437d1b0 1477free_proc:
1d15bd20
CY
1478 if (sbi->s_proc) {
1479 remove_proc_entry("segment_info", sbi->s_proc);
1480 remove_proc_entry(sb->s_id, f2fs_proc_root);
1481 }
1482 f2fs_destroy_stats(sbi);
aff063e2
JK
1483free_root_inode:
1484 dput(sb->s_root);
1485 sb->s_root = NULL;
1486free_node_inode:
2658e50d
JK
1487 mutex_lock(&sbi->umount_mutex);
1488 f2fs_leave_shrinker(sbi);
aff063e2 1489 iput(sbi->node_inode);
2658e50d 1490 mutex_unlock(&sbi->umount_mutex);
aff063e2
JK
1491free_nm:
1492 destroy_node_manager(sbi);
1493free_sm:
1494 destroy_segment_manager(sbi);
1495free_cp:
1496 kfree(sbi->ckpt);
1497free_meta_inode:
1498 make_bad_inode(sbi->meta_inode);
1499 iput(sbi->meta_inode);
dabc4a5c
JK
1500free_options:
1501 kfree(options);
aff063e2 1502free_sb_buf:
b39f0de2 1503 kfree(raw_super);
aff063e2
JK
1504free_sbi:
1505 kfree(sbi);
ed2e621a
JK
1506
1507 /* give only one another chance */
1508 if (retry) {
9df47ba7 1509 retry = false;
ed2e621a
JK
1510 shrink_dcache_sb(sb);
1511 goto try_onemore;
1512 }
aff063e2
JK
1513 return err;
1514}
1515
1516static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1517 const char *dev_name, void *data)
1518{
1519 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1520}
1521
30a5537f
JK
1522static void kill_f2fs_super(struct super_block *sb)
1523{
1524 if (sb->s_root)
caf0047e 1525 set_sbi_flag(F2FS_SB(sb), SBI_IS_CLOSE);
30a5537f
JK
1526 kill_block_super(sb);
1527}
1528
aff063e2
JK
1529static struct file_system_type f2fs_fs_type = {
1530 .owner = THIS_MODULE,
1531 .name = "f2fs",
1532 .mount = f2fs_mount,
30a5537f 1533 .kill_sb = kill_f2fs_super,
aff063e2
JK
1534 .fs_flags = FS_REQUIRES_DEV,
1535};
7f78e035 1536MODULE_ALIAS_FS("f2fs");
aff063e2 1537
6e6093a8 1538static int __init init_inodecache(void)
aff063e2
JK
1539{
1540 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
e8512d2e 1541 sizeof(struct f2fs_inode_info));
6bacf52f 1542 if (!f2fs_inode_cachep)
aff063e2
JK
1543 return -ENOMEM;
1544 return 0;
1545}
1546
1547static void destroy_inodecache(void)
1548{
1549 /*
1550 * Make sure all delayed rcu free inodes are flushed before we
1551 * destroy cache.
1552 */
1553 rcu_barrier();
1554 kmem_cache_destroy(f2fs_inode_cachep);
1555}
1556
1557static int __init init_f2fs_fs(void)
1558{
1559 int err;
1560
c0508650
JK
1561 f2fs_build_trace_ios();
1562
aff063e2
JK
1563 err = init_inodecache();
1564 if (err)
1565 goto fail;
1566 err = create_node_manager_caches();
1567 if (err)
9890ff3f 1568 goto free_inodecache;
7fd9e544 1569 err = create_segment_manager_caches();
aff063e2 1570 if (err)
9890ff3f 1571 goto free_node_manager_caches;
aff063e2
JK
1572 err = create_checkpoint_caches();
1573 if (err)
06292073 1574 goto free_segment_manager_caches;
1dcc336b
CY
1575 err = create_extent_cache();
1576 if (err)
1577 goto free_checkpoint_caches;
b59d0bae 1578 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
6e6b978c
WY
1579 if (!f2fs_kset) {
1580 err = -ENOMEM;
1dcc336b 1581 goto free_extent_cache;
6e6b978c 1582 }
cfc4d971 1583 err = f2fs_init_crypto();
4589d25d 1584 if (err)
9890ff3f 1585 goto free_kset;
2658e50d
JK
1586
1587 err = register_shrinker(&f2fs_shrinker_info);
cfc4d971
JK
1588 if (err)
1589 goto free_crypto;
2658e50d
JK
1590
1591 err = register_filesystem(&f2fs_fs_type);
1592 if (err)
1593 goto free_shrinker;
787c7b8c
CY
1594 err = f2fs_create_root_stats();
1595 if (err)
1596 goto free_filesystem;
5e176d54 1597 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
9890ff3f
ZH
1598 return 0;
1599
787c7b8c
CY
1600free_filesystem:
1601 unregister_filesystem(&f2fs_fs_type);
2658e50d
JK
1602free_shrinker:
1603 unregister_shrinker(&f2fs_shrinker_info);
cfc4d971
JK
1604free_crypto:
1605 f2fs_exit_crypto();
9890ff3f
ZH
1606free_kset:
1607 kset_unregister(f2fs_kset);
1dcc336b
CY
1608free_extent_cache:
1609 destroy_extent_cache();
9890ff3f
ZH
1610free_checkpoint_caches:
1611 destroy_checkpoint_caches();
7fd9e544
JK
1612free_segment_manager_caches:
1613 destroy_segment_manager_caches();
9890ff3f
ZH
1614free_node_manager_caches:
1615 destroy_node_manager_caches();
1616free_inodecache:
1617 destroy_inodecache();
aff063e2
JK
1618fail:
1619 return err;
1620}
1621
1622static void __exit exit_f2fs_fs(void)
1623{
5e176d54 1624 remove_proc_entry("fs/f2fs", NULL);
4589d25d 1625 f2fs_destroy_root_stats();
2658e50d 1626 unregister_shrinker(&f2fs_shrinker_info);
aff063e2 1627 unregister_filesystem(&f2fs_fs_type);
cfc4d971 1628 f2fs_exit_crypto();
fdf6c8be 1629 destroy_extent_cache();
aff063e2 1630 destroy_checkpoint_caches();
5dcd8a71 1631 destroy_segment_manager_caches();
aff063e2
JK
1632 destroy_node_manager_caches();
1633 destroy_inodecache();
b59d0bae 1634 kset_unregister(f2fs_kset);
351f4fba 1635 f2fs_destroy_trace_ios();
aff063e2
JK
1636}
1637
1638module_init(init_f2fs_fs)
1639module_exit(exit_f2fs_fs)
1640
1641MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1642MODULE_DESCRIPTION("Flash Friendly File System");
1643MODULE_LICENSE("GPL");