nilfs2: cleanup nilfs_clear_inode
[linux-2.6] / fs / nilfs2 / super.c
1 /*
2  * super.c - NILFS module and super block management.
3  *
4  * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * Written by Ryusuke Konishi <ryusuke@osrg.net>
21  */
22 /*
23  *  linux/fs/ext2/super.c
24  *
25  * Copyright (C) 1992, 1993, 1994, 1995
26  * Remy Card (card@masi.ibp.fr)
27  * Laboratoire MASI - Institut Blaise Pascal
28  * Universite Pierre et Marie Curie (Paris VI)
29  *
30  *  from
31  *
32  *  linux/fs/minix/inode.c
33  *
34  *  Copyright (C) 1991, 1992  Linus Torvalds
35  *
36  *  Big-endian to little-endian byte-swapping/bitmaps by
37  *        David S. Miller (davem@caip.rutgers.edu), 1995
38  */
39
40 #include <linux/module.h>
41 #include <linux/string.h>
42 #include <linux/slab.h>
43 #include <linux/init.h>
44 #include <linux/blkdev.h>
45 #include <linux/parser.h>
46 #include <linux/random.h>
47 #include <linux/crc32.h>
48 #include <linux/smp_lock.h>
49 #include <linux/vfs.h>
50 #include <linux/writeback.h>
51 #include <linux/kobject.h>
52 #include <linux/exportfs.h>
53 #include "nilfs.h"
54 #include "mdt.h"
55 #include "alloc.h"
56 #include "page.h"
57 #include "cpfile.h"
58 #include "ifile.h"
59 #include "dat.h"
60 #include "segment.h"
61 #include "segbuf.h"
62
63 MODULE_AUTHOR("NTT Corp.");
64 MODULE_DESCRIPTION("A New Implementation of the Log-structured Filesystem "
65                    "(NILFS)");
66 MODULE_VERSION(NILFS_VERSION);
67 MODULE_LICENSE("GPL");
68
69 static int nilfs_remount(struct super_block *sb, int *flags, char *data);
70 static int test_exclusive_mount(struct file_system_type *fs_type,
71                                 struct block_device *bdev, int flags);
72
73 /**
74  * nilfs_error() - report failure condition on a filesystem
75  *
76  * nilfs_error() sets an ERROR_FS flag on the superblock as well as
77  * reporting an error message.  It should be called when NILFS detects
78  * incoherences or defects of meta data on disk.  As for sustainable
79  * errors such as a single-shot I/O error, nilfs_warning() or the printk()
80  * function should be used instead.
81  *
82  * The segment constructor must not call this function because it can
83  * kill itself.
84  */
85 void nilfs_error(struct super_block *sb, const char *function,
86                  const char *fmt, ...)
87 {
88         struct nilfs_sb_info *sbi = NILFS_SB(sb);
89         va_list args;
90
91         va_start(args, fmt);
92         printk(KERN_CRIT "NILFS error (device %s): %s: ", sb->s_id, function);
93         vprintk(fmt, args);
94         printk("\n");
95         va_end(args);
96
97         if (!(sb->s_flags & MS_RDONLY)) {
98                 struct the_nilfs *nilfs = sbi->s_nilfs;
99
100                 if (!nilfs_test_opt(sbi, ERRORS_CONT))
101                         nilfs_detach_segment_constructor(sbi);
102
103                 down_write(&nilfs->ns_sem);
104                 if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) {
105                         nilfs->ns_mount_state |= NILFS_ERROR_FS;
106                         nilfs->ns_sbp->s_state |= cpu_to_le16(NILFS_ERROR_FS);
107                         nilfs_commit_super(sbi);
108                 }
109                 up_write(&nilfs->ns_sem);
110
111                 if (nilfs_test_opt(sbi, ERRORS_RO)) {
112                         printk(KERN_CRIT "Remounting filesystem read-only\n");
113                         sb->s_flags |= MS_RDONLY;
114                 }
115         }
116
117         if (nilfs_test_opt(sbi, ERRORS_PANIC))
118                 panic("NILFS (device %s): panic forced after error\n",
119                       sb->s_id);
120 }
121
122 void nilfs_warning(struct super_block *sb, const char *function,
123                    const char *fmt, ...)
124 {
125         va_list args;
126
127         va_start(args, fmt);
128         printk(KERN_WARNING "NILFS warning (device %s): %s: ",
129                sb->s_id, function);
130         vprintk(fmt, args);
131         printk("\n");
132         va_end(args);
133 }
134
135 static struct kmem_cache *nilfs_inode_cachep;
136
137 struct inode *nilfs_alloc_inode(struct super_block *sb)
138 {
139         struct nilfs_inode_info *ii;
140
141         ii = kmem_cache_alloc(nilfs_inode_cachep, GFP_NOFS);
142         if (!ii)
143                 return NULL;
144         ii->i_bh = NULL;
145         ii->i_state = 0;
146         ii->vfs_inode.i_version = 1;
147         nilfs_btnode_cache_init(&ii->i_btnode_cache);
148         return &ii->vfs_inode;
149 }
150
151 void nilfs_destroy_inode(struct inode *inode)
152 {
153         kmem_cache_free(nilfs_inode_cachep, NILFS_I(inode));
154 }
155
156 static void init_once(void *obj)
157 {
158         struct nilfs_inode_info *ii = obj;
159
160         INIT_LIST_HEAD(&ii->i_dirty);
161 #ifdef CONFIG_NILFS_XATTR
162         init_rwsem(&ii->xattr_sem);
163 #endif
164         nilfs_btnode_cache_init_once(&ii->i_btnode_cache);
165         ii->i_bmap = (struct nilfs_bmap *)&ii->i_bmap_union;
166         inode_init_once(&ii->vfs_inode);
167 }
168
169 static int nilfs_init_inode_cache(void)
170 {
171         nilfs_inode_cachep = kmem_cache_create("nilfs2_inode_cache",
172                                                sizeof(struct nilfs_inode_info),
173                                                0, SLAB_RECLAIM_ACCOUNT,
174                                                init_once);
175
176         return (nilfs_inode_cachep == NULL) ? -ENOMEM : 0;
177 }
178
179 static inline void nilfs_destroy_inode_cache(void)
180 {
181         kmem_cache_destroy(nilfs_inode_cachep);
182 }
183
184 static void nilfs_clear_inode(struct inode *inode)
185 {
186         struct nilfs_inode_info *ii = NILFS_I(inode);
187
188 #ifdef CONFIG_NILFS_POSIX_ACL
189         if (ii->i_acl && ii->i_acl != NILFS_ACL_NOT_CACHED) {
190                 posix_acl_release(ii->i_acl);
191                 ii->i_acl = NILFS_ACL_NOT_CACHED;
192         }
193         if (ii->i_default_acl && ii->i_default_acl != NILFS_ACL_NOT_CACHED) {
194                 posix_acl_release(ii->i_default_acl);
195                 ii->i_default_acl = NILFS_ACL_NOT_CACHED;
196         }
197 #endif
198         /*
199          * Free resources allocated in nilfs_read_inode(), here.
200          */
201         BUG_ON(!list_empty(&ii->i_dirty));
202         brelse(ii->i_bh);
203         ii->i_bh = NULL;
204
205         if (test_bit(NILFS_I_BMAP, &ii->i_state))
206                 nilfs_bmap_clear(ii->i_bmap);
207
208         nilfs_btnode_cache_clear(&ii->i_btnode_cache);
209 }
210
211 /**
212  * nilfs_update_last_segment - change pointer to the latest segment
213  * @sbi: nilfs_sb_info
214  * @update_cno: flag whether to update checkpoint number.
215  *
216  * nilfs_update_last_segment() changes information in the super block
217  * after a partial segment is written out successfully. The super
218  * block is marked dirty. It will be written out at the next VFS sync
219  * operations such as sync_supers() and generic_shutdown_super().
220  */
221 void nilfs_update_last_segment(struct nilfs_sb_info *sbi, int update_cno)
222 {
223         struct the_nilfs *nilfs = sbi->s_nilfs;
224         struct nilfs_super_block *sbp = nilfs->ns_sbp;
225
226         /* nilfs->sem must be locked by the caller. */
227         spin_lock(&nilfs->ns_last_segment_lock);
228         if (update_cno)
229                 nilfs->ns_last_cno = nilfs->ns_cno++;
230         sbp->s_last_seq = cpu_to_le64(nilfs->ns_last_seq);
231         sbp->s_last_pseg = cpu_to_le64(nilfs->ns_last_pseg);
232         sbp->s_last_cno = cpu_to_le64(nilfs->ns_last_cno);
233         spin_unlock(&nilfs->ns_last_segment_lock);
234
235         sbi->s_super->s_dirt = 1; /* must be set if delaying the call of
236                                      nilfs_commit_super() */
237 }
238
239 static int nilfs_sync_super(struct nilfs_sb_info *sbi)
240 {
241         struct the_nilfs *nilfs = sbi->s_nilfs;
242         int err;
243         int barrier_done = 0;
244
245         if (nilfs_test_opt(sbi, BARRIER)) {
246                 set_buffer_ordered(nilfs->ns_sbh);
247                 barrier_done = 1;
248         }
249  retry:
250         set_buffer_dirty(nilfs->ns_sbh);
251         err = sync_dirty_buffer(nilfs->ns_sbh);
252         if (err == -EOPNOTSUPP && barrier_done) {
253                 nilfs_warning(sbi->s_super, __func__,
254                               "barrier-based sync failed. "
255                               "disabling barriers\n");
256                 nilfs_clear_opt(sbi, BARRIER);
257                 barrier_done = 0;
258                 clear_buffer_ordered(nilfs->ns_sbh);
259                 goto retry;
260         }
261         if (unlikely(err))
262                 printk(KERN_ERR
263                        "NILFS: unable to write superblock (err=%d)\n", err);
264         else {
265                 nilfs_dispose_used_segments(nilfs);
266                 clear_nilfs_discontinued(nilfs);
267         }
268
269         return err;
270 }
271
272 int nilfs_commit_super(struct nilfs_sb_info *sbi)
273 {
274         struct the_nilfs *nilfs = sbi->s_nilfs;
275         struct nilfs_super_block *sbp = nilfs->ns_sbp;
276         sector_t nfreeblocks;
277         int err;
278
279         /* nilfs->sem must be locked by the caller. */
280         err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
281         if (unlikely(err)) {
282                 printk(KERN_ERR "NILFS: failed to count free blocks\n");
283                 return err;
284         }
285         sbp->s_free_blocks_count = cpu_to_le64(nfreeblocks);
286         sbp->s_wtime = cpu_to_le64(get_seconds());
287         sbp->s_sum = 0;
288         sbp->s_sum = crc32_le(nilfs->ns_crc_seed, (unsigned char *)sbp,
289                               le16_to_cpu(sbp->s_bytes));
290
291         sbi->s_super->s_dirt = 0;
292         return nilfs_sync_super(sbi);
293 }
294
295 static void nilfs_put_super(struct super_block *sb)
296 {
297         struct nilfs_sb_info *sbi = NILFS_SB(sb);
298         struct the_nilfs *nilfs = sbi->s_nilfs;
299
300         nilfs_detach_segment_constructor(sbi);
301
302         if (!(sb->s_flags & MS_RDONLY)) {
303                 down_write(&nilfs->ns_sem);
304                 nilfs->ns_sbp->s_state = cpu_to_le16(nilfs->ns_mount_state);
305                 nilfs_commit_super(sbi);
306                 up_write(&nilfs->ns_sem);
307         }
308
309         nilfs_detach_checkpoint(sbi);
310         put_nilfs(sbi->s_nilfs);
311         sbi->s_super = NULL;
312         sb->s_fs_info = NULL;
313         kfree(sbi);
314 }
315
316 /**
317  * nilfs_write_super - write super block(s) of NILFS
318  * @sb: super_block
319  *
320  * nilfs_write_super() gets a fs-dependent lock, writes super block(s), and
321  * clears s_dirt.  This function is called in the section protected by
322  * lock_super().
323  *
324  * The s_dirt flag is managed by each filesystem and we protect it by ns_sem
325  * of the struct the_nilfs.  Lock order must be as follows:
326  *
327  *   1. lock_super()
328  *   2.    down_write(&nilfs->ns_sem)
329  *
330  * Inside NILFS, locking ns_sem is enough to protect s_dirt and the buffer
331  * of the super block (nilfs->ns_sbp).
332  *
333  * In most cases, VFS functions call lock_super() before calling these
334  * methods.  So we must be careful not to bring on deadlocks when using
335  * lock_super();  see generic_shutdown_super(), write_super(), and so on.
336  *
337  * Note that order of lock_kernel() and lock_super() depends on contexts
338  * of VFS.  We should also note that lock_kernel() can be used in its
339  * protective section and only the outermost one has an effect.
340  */
341 static void nilfs_write_super(struct super_block *sb)
342 {
343         struct nilfs_sb_info *sbi = NILFS_SB(sb);
344         struct the_nilfs *nilfs = sbi->s_nilfs;
345
346         down_write(&nilfs->ns_sem);
347         if (!(sb->s_flags & MS_RDONLY))
348                 nilfs_commit_super(sbi);
349         sb->s_dirt = 0;
350         up_write(&nilfs->ns_sem);
351 }
352
353 static int nilfs_sync_fs(struct super_block *sb, int wait)
354 {
355         int err = 0;
356
357         /* This function is called when super block should be written back */
358         if (wait)
359                 err = nilfs_construct_segment(sb);
360         return err;
361 }
362
363 int nilfs_attach_checkpoint(struct nilfs_sb_info *sbi, __u64 cno)
364 {
365         struct the_nilfs *nilfs = sbi->s_nilfs;
366         struct nilfs_checkpoint *raw_cp;
367         struct buffer_head *bh_cp;
368         int err;
369
370         down_write(&nilfs->ns_sem);
371         list_add(&sbi->s_list, &nilfs->ns_supers);
372         up_write(&nilfs->ns_sem);
373
374         sbi->s_ifile = nilfs_mdt_new(
375                 nilfs, sbi->s_super, NILFS_IFILE_INO, NILFS_IFILE_GFP);
376         if (!sbi->s_ifile)
377                 return -ENOMEM;
378
379         err = nilfs_palloc_init_blockgroup(sbi->s_ifile, nilfs->ns_inode_size);
380         if (unlikely(err))
381                 goto failed;
382
383         err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, cno, 0, &raw_cp,
384                                           &bh_cp);
385         if (unlikely(err)) {
386                 if (err == -ENOENT || err == -EINVAL) {
387                         printk(KERN_ERR
388                                "NILFS: Invalid checkpoint "
389                                "(checkpoint number=%llu)\n",
390                                (unsigned long long)cno);
391                         err = -EINVAL;
392                 }
393                 goto failed;
394         }
395         err = nilfs_read_inode_common(sbi->s_ifile, &raw_cp->cp_ifile_inode);
396         if (unlikely(err))
397                 goto failed_bh;
398         atomic_set(&sbi->s_inodes_count, le64_to_cpu(raw_cp->cp_inodes_count));
399         atomic_set(&sbi->s_blocks_count, le64_to_cpu(raw_cp->cp_blocks_count));
400
401         nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
402         return 0;
403
404  failed_bh:
405         nilfs_cpfile_put_checkpoint(nilfs->ns_cpfile, cno, bh_cp);
406  failed:
407         nilfs_mdt_destroy(sbi->s_ifile);
408         sbi->s_ifile = NULL;
409
410         down_write(&nilfs->ns_sem);
411         list_del_init(&sbi->s_list);
412         up_write(&nilfs->ns_sem);
413
414         return err;
415 }
416
417 void nilfs_detach_checkpoint(struct nilfs_sb_info *sbi)
418 {
419         struct the_nilfs *nilfs = sbi->s_nilfs;
420
421         nilfs_mdt_clear(sbi->s_ifile);
422         nilfs_mdt_destroy(sbi->s_ifile);
423         sbi->s_ifile = NULL;
424         down_write(&nilfs->ns_sem);
425         list_del_init(&sbi->s_list);
426         up_write(&nilfs->ns_sem);
427 }
428
429 static int nilfs_mark_recovery_complete(struct nilfs_sb_info *sbi)
430 {
431         struct the_nilfs *nilfs = sbi->s_nilfs;
432         int err = 0;
433
434         down_write(&nilfs->ns_sem);
435         if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
436                 nilfs->ns_mount_state |= NILFS_VALID_FS;
437                 err = nilfs_commit_super(sbi);
438                 if (likely(!err))
439                         printk(KERN_INFO "NILFS: recovery complete.\n");
440         }
441         up_write(&nilfs->ns_sem);
442         return err;
443 }
444
445 static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf)
446 {
447         struct super_block *sb = dentry->d_sb;
448         struct nilfs_sb_info *sbi = NILFS_SB(sb);
449         unsigned long long blocks;
450         unsigned long overhead;
451         unsigned long nrsvblocks;
452         sector_t nfreeblocks;
453         struct the_nilfs *nilfs = sbi->s_nilfs;
454         int err;
455
456         /*
457          * Compute all of the segment blocks
458          *
459          * The blocks before first segment and after last segment
460          * are excluded.
461          */
462         blocks = nilfs->ns_blocks_per_segment * nilfs->ns_nsegments
463                 - nilfs->ns_first_data_block;
464         nrsvblocks = nilfs->ns_nrsvsegs * nilfs->ns_blocks_per_segment;
465
466         /*
467          * Compute the overhead
468          *
469          * When distributing meta data blocks outside semgent structure,
470          * We must count them as the overhead.
471          */
472         overhead = 0;
473
474         err = nilfs_count_free_blocks(nilfs, &nfreeblocks);
475         if (unlikely(err))
476                 return err;
477
478         buf->f_type = NILFS_SUPER_MAGIC;
479         buf->f_bsize = sb->s_blocksize;
480         buf->f_blocks = blocks - overhead;
481         buf->f_bfree = nfreeblocks;
482         buf->f_bavail = (buf->f_bfree >= nrsvblocks) ?
483                 (buf->f_bfree - nrsvblocks) : 0;
484         buf->f_files = atomic_read(&sbi->s_inodes_count);
485         buf->f_ffree = 0; /* nilfs_count_free_inodes(sb); */
486         buf->f_namelen = NILFS_NAME_LEN;
487         return 0;
488 }
489
490 static struct super_operations nilfs_sops = {
491         .alloc_inode    = nilfs_alloc_inode,
492         .destroy_inode  = nilfs_destroy_inode,
493         .dirty_inode    = nilfs_dirty_inode,
494         /* .write_inode    = nilfs_write_inode, */
495         /* .put_inode      = nilfs_put_inode, */
496         /* .drop_inode    = nilfs_drop_inode, */
497         .delete_inode   = nilfs_delete_inode,
498         .put_super      = nilfs_put_super,
499         .write_super    = nilfs_write_super,
500         .sync_fs        = nilfs_sync_fs,
501         /* .write_super_lockfs */
502         /* .unlockfs */
503         .statfs         = nilfs_statfs,
504         .remount_fs     = nilfs_remount,
505         .clear_inode    = nilfs_clear_inode,
506         /* .umount_begin */
507         /* .show_options */
508 };
509
510 static struct inode *
511 nilfs_nfs_get_inode(struct super_block *sb, u64 ino, u32 generation)
512 {
513         struct inode *inode;
514
515         if (ino < NILFS_FIRST_INO(sb) && ino != NILFS_ROOT_INO &&
516             ino != NILFS_SKETCH_INO)
517                 return ERR_PTR(-ESTALE);
518
519         inode = nilfs_iget(sb, ino);
520         if (IS_ERR(inode))
521                 return ERR_CAST(inode);
522         if (generation && inode->i_generation != generation) {
523                 iput(inode);
524                 return ERR_PTR(-ESTALE);
525         }
526
527         return inode;
528 }
529
530 static struct dentry *
531 nilfs_fh_to_dentry(struct super_block *sb, struct fid *fid, int fh_len,
532                    int fh_type)
533 {
534         return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
535                                     nilfs_nfs_get_inode);
536 }
537
538 static struct dentry *
539 nilfs_fh_to_parent(struct super_block *sb, struct fid *fid, int fh_len,
540                    int fh_type)
541 {
542         return generic_fh_to_parent(sb, fid, fh_len, fh_type,
543                                     nilfs_nfs_get_inode);
544 }
545
546 static struct export_operations nilfs_export_ops = {
547         .fh_to_dentry = nilfs_fh_to_dentry,
548         .fh_to_parent = nilfs_fh_to_parent,
549         .get_parent = nilfs_get_parent,
550 };
551
552 enum {
553         Opt_err_cont, Opt_err_panic, Opt_err_ro,
554         Opt_barrier, Opt_snapshot, Opt_order,
555         Opt_err,
556 };
557
558 static match_table_t tokens = {
559         {Opt_err_cont, "errors=continue"},
560         {Opt_err_panic, "errors=panic"},
561         {Opt_err_ro, "errors=remount-ro"},
562         {Opt_barrier, "barrier=%s"},
563         {Opt_snapshot, "cp=%u"},
564         {Opt_order, "order=%s"},
565         {Opt_err, NULL}
566 };
567
568 static int match_bool(substring_t *s, int *result)
569 {
570         int len = s->to - s->from;
571
572         if (strncmp(s->from, "on", len) == 0)
573                 *result = 1;
574         else if (strncmp(s->from, "off", len) == 0)
575                 *result = 0;
576         else
577                 return 1;
578         return 0;
579 }
580
581 static int parse_options(char *options, struct super_block *sb)
582 {
583         struct nilfs_sb_info *sbi = NILFS_SB(sb);
584         char *p;
585         substring_t args[MAX_OPT_ARGS];
586         int option;
587
588         if (!options)
589                 return 1;
590
591         while ((p = strsep(&options, ",")) != NULL) {
592                 int token;
593                 if (!*p)
594                         continue;
595
596                 token = match_token(p, tokens, args);
597                 switch (token) {
598                 case Opt_barrier:
599                         if (match_bool(&args[0], &option))
600                                 return 0;
601                         if (option)
602                                 nilfs_set_opt(sbi, BARRIER);
603                         else
604                                 nilfs_clear_opt(sbi, BARRIER);
605                         break;
606                 case Opt_order:
607                         if (strcmp(args[0].from, "relaxed") == 0)
608                                 /* Ordered data semantics */
609                                 nilfs_clear_opt(sbi, STRICT_ORDER);
610                         else if (strcmp(args[0].from, "strict") == 0)
611                                 /* Strict in-order semantics */
612                                 nilfs_set_opt(sbi, STRICT_ORDER);
613                         else
614                                 return 0;
615                         break;
616                 case Opt_err_panic:
617                         nilfs_write_opt(sbi, ERROR_MODE, ERRORS_PANIC);
618                         break;
619                 case Opt_err_ro:
620                         nilfs_write_opt(sbi, ERROR_MODE, ERRORS_RO);
621                         break;
622                 case Opt_err_cont:
623                         nilfs_write_opt(sbi, ERROR_MODE, ERRORS_CONT);
624                         break;
625                 case Opt_snapshot:
626                         if (match_int(&args[0], &option) || option <= 0)
627                                 return 0;
628                         if (!(sb->s_flags & MS_RDONLY))
629                                 return 0;
630                         sbi->s_snapshot_cno = option;
631                         nilfs_set_opt(sbi, SNAPSHOT);
632                         break;
633                 default:
634                         printk(KERN_ERR
635                                "NILFS: Unrecognized mount option \"%s\"\n", p);
636                         return 0;
637                 }
638         }
639         return 1;
640 }
641
642 static inline void
643 nilfs_set_default_options(struct nilfs_sb_info *sbi,
644                           struct nilfs_super_block *sbp)
645 {
646         sbi->s_mount_opt =
647                 NILFS_MOUNT_ERRORS_CONT | NILFS_MOUNT_BARRIER;
648 }
649
650 static int nilfs_setup_super(struct nilfs_sb_info *sbi)
651 {
652         struct the_nilfs *nilfs = sbi->s_nilfs;
653         struct nilfs_super_block *sbp = nilfs->ns_sbp;
654         int max_mnt_count = le16_to_cpu(sbp->s_max_mnt_count);
655         int mnt_count = le16_to_cpu(sbp->s_mnt_count);
656
657         /* nilfs->sem must be locked by the caller. */
658         if (!(nilfs->ns_mount_state & NILFS_VALID_FS)) {
659                 printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n");
660         } else if (nilfs->ns_mount_state & NILFS_ERROR_FS) {
661                 printk(KERN_WARNING
662                        "NILFS warning: mounting fs with errors\n");
663 #if 0
664         } else if (max_mnt_count >= 0 && mnt_count >= max_mnt_count) {
665                 printk(KERN_WARNING
666                        "NILFS warning: maximal mount count reached\n");
667 #endif
668         }
669         if (!max_mnt_count)
670                 sbp->s_max_mnt_count = cpu_to_le16(NILFS_DFL_MAX_MNT_COUNT);
671
672         sbp->s_mnt_count = cpu_to_le16(mnt_count + 1);
673         sbp->s_state = cpu_to_le16(le16_to_cpu(sbp->s_state) & ~NILFS_VALID_FS);
674         sbp->s_mtime = cpu_to_le64(get_seconds());
675         return nilfs_commit_super(sbi);
676 }
677
678 struct nilfs_super_block *
679 nilfs_load_super_block(struct super_block *sb, struct buffer_head **pbh)
680 {
681         int blocksize;
682         unsigned long offset, sb_index;
683
684         /*
685          * Adjusting block size
686          * Blocksize will be enlarged when it is smaller than hardware
687          * sector size.
688          * Disk format of superblock does not change.
689          */
690         blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
691         if (!blocksize) {
692                 printk(KERN_ERR
693                        "NILFS: unable to set blocksize of superblock\n");
694                 return NULL;
695         }
696         sb_index = NILFS_SB_OFFSET_BYTES / blocksize;
697         offset = NILFS_SB_OFFSET_BYTES % blocksize;
698
699         *pbh = sb_bread(sb, sb_index);
700         if (!*pbh) {
701                 printk(KERN_ERR "NILFS: unable to read superblock\n");
702                 return NULL;
703         }
704         return (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
705 }
706
707 struct nilfs_super_block *
708 nilfs_reload_super_block(struct super_block *sb, struct buffer_head **pbh,
709                          int blocksize)
710 {
711         struct nilfs_super_block *sbp;
712         unsigned long offset, sb_index;
713         int hw_blocksize = bdev_hardsect_size(sb->s_bdev);
714
715         if (blocksize < hw_blocksize) {
716                 printk(KERN_ERR
717                        "NILFS: blocksize %d too small for device "
718                        "(sector-size = %d).\n",
719                        blocksize, hw_blocksize);
720                 goto failed_sbh;
721         }
722         brelse(*pbh);
723         sb_set_blocksize(sb, blocksize);
724
725         sb_index = NILFS_SB_OFFSET_BYTES / blocksize;
726         offset = NILFS_SB_OFFSET_BYTES % blocksize;
727
728         *pbh = sb_bread(sb, sb_index);
729         if (!*pbh) {
730                 printk(KERN_ERR
731                        "NILFS: cannot read superblock on 2nd try.\n");
732                 goto failed;
733         }
734
735         sbp = (struct nilfs_super_block *)((char *)(*pbh)->b_data + offset);
736         if (sbp->s_magic != cpu_to_le16(NILFS_SUPER_MAGIC)) {
737                 printk(KERN_ERR
738                        "NILFS: !? Magic mismatch on 2nd try.\n");
739                 goto failed_sbh;
740         }
741         return sbp;
742
743  failed_sbh:
744         brelse(*pbh);
745
746  failed:
747         return NULL;
748 }
749
750 int nilfs_store_magic_and_option(struct super_block *sb,
751                                  struct nilfs_super_block *sbp,
752                                  char *data)
753 {
754         struct nilfs_sb_info *sbi = NILFS_SB(sb);
755
756         /* trying to fill super (1st stage) */
757         sb->s_magic = le16_to_cpu(sbp->s_magic);
758
759         /* FS independent flags */
760 #ifdef NILFS_ATIME_DISABLE
761         sb->s_flags |= MS_NOATIME;
762 #endif
763
764         if (sb->s_magic != NILFS_SUPER_MAGIC) {
765                 printk("NILFS: Can't find nilfs on dev %s.\n", sb->s_id);
766                 return -EINVAL;
767         }
768
769         nilfs_set_default_options(sbi, sbp);
770
771         sbi->s_resuid = le16_to_cpu(sbp->s_def_resuid);
772         sbi->s_resgid = le16_to_cpu(sbp->s_def_resgid);
773         sbi->s_interval = le32_to_cpu(sbp->s_c_interval);
774         sbi->s_watermark = le32_to_cpu(sbp->s_c_block_max);
775
776         if (!parse_options(data, sb))
777                 return -EINVAL;
778
779         return 0;
780 }
781
782 /**
783  * nilfs_fill_super() - initialize a super block instance
784  * @sb: super_block
785  * @data: mount options
786  * @silent: silent mode flag
787  * @nilfs: the_nilfs struct
788  *
789  * This function is called exclusively by bd_mount_mutex.
790  * So, the recovery process is protected from other simultaneous mounts.
791  */
792 static int
793 nilfs_fill_super(struct super_block *sb, void *data, int silent,
794                  struct the_nilfs *nilfs)
795 {
796         struct nilfs_sb_info *sbi;
797         struct inode *root;
798         __u64 cno;
799         int err;
800
801         sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
802         if (!sbi)
803                 return -ENOMEM;
804
805         sb->s_fs_info = sbi;
806
807         get_nilfs(nilfs);
808         sbi->s_nilfs = nilfs;
809         sbi->s_super = sb;
810
811         err = init_nilfs(nilfs, sbi, (char *)data);
812         if (err)
813                 goto failed_sbi;
814
815         spin_lock_init(&sbi->s_inode_lock);
816         INIT_LIST_HEAD(&sbi->s_dirty_files);
817         INIT_LIST_HEAD(&sbi->s_list);
818
819         /*
820          * Following initialization is overlapped because
821          * nilfs_sb_info structure has been cleared at the beginning.
822          * But we reserve them to keep our interest and make ready
823          * for the future change.
824          */
825         get_random_bytes(&sbi->s_next_generation,
826                          sizeof(sbi->s_next_generation));
827         spin_lock_init(&sbi->s_next_gen_lock);
828
829         sb->s_op = &nilfs_sops;
830         sb->s_export_op = &nilfs_export_ops;
831         sb->s_root = NULL;
832
833         if (!nilfs_loaded(nilfs)) {
834                 err = load_nilfs(nilfs, sbi);
835                 if (err)
836                         goto failed_sbi;
837         }
838         cno = nilfs_last_cno(nilfs);
839
840         if (sb->s_flags & MS_RDONLY) {
841                 if (nilfs_test_opt(sbi, SNAPSHOT)) {
842                         if (!nilfs_cpfile_is_snapshot(nilfs->ns_cpfile,
843                                                       sbi->s_snapshot_cno)) {
844                                 printk(KERN_ERR
845                                        "NILFS: The specified checkpoint is "
846                                        "not a snapshot "
847                                        "(checkpoint number=%llu).\n",
848                                        (unsigned long long)sbi->s_snapshot_cno);
849                                 err = -EINVAL;
850                                 goto failed_sbi;
851                         }
852                         cno = sbi->s_snapshot_cno;
853                 } else
854                         /* Read-only mount */
855                         sbi->s_snapshot_cno = cno;
856         }
857
858         err = nilfs_attach_checkpoint(sbi, cno);
859         if (err) {
860                 printk(KERN_ERR "NILFS: error loading a checkpoint"
861                        " (checkpoint number=%llu).\n", (unsigned long long)cno);
862                 goto failed_sbi;
863         }
864
865         if (!(sb->s_flags & MS_RDONLY)) {
866                 err = nilfs_attach_segment_constructor(sbi, NULL);
867                 if (err)
868                         goto failed_checkpoint;
869         }
870
871         root = nilfs_iget(sb, NILFS_ROOT_INO);
872         if (IS_ERR(root)) {
873                 printk(KERN_ERR "NILFS: get root inode failed\n");
874                 err = PTR_ERR(root);
875                 goto failed_segctor;
876         }
877         if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
878                 iput(root);
879                 printk(KERN_ERR "NILFS: corrupt root inode.\n");
880                 err = -EINVAL;
881                 goto failed_segctor;
882         }
883         sb->s_root = d_alloc_root(root);
884         if (!sb->s_root) {
885                 iput(root);
886                 printk(KERN_ERR "NILFS: get root dentry failed\n");
887                 err = -ENOMEM;
888                 goto failed_segctor;
889         }
890
891         if (!(sb->s_flags & MS_RDONLY)) {
892                 down_write(&nilfs->ns_sem);
893                 nilfs_setup_super(sbi);
894                 up_write(&nilfs->ns_sem);
895         }
896
897         err = nilfs_mark_recovery_complete(sbi);
898         if (unlikely(err)) {
899                 printk(KERN_ERR "NILFS: recovery failed.\n");
900                 goto failed_root;
901         }
902
903         return 0;
904
905  failed_root:
906         dput(sb->s_root);
907         sb->s_root = NULL;
908
909  failed_segctor:
910         nilfs_detach_segment_constructor(sbi);
911
912  failed_checkpoint:
913         nilfs_detach_checkpoint(sbi);
914
915  failed_sbi:
916         put_nilfs(nilfs);
917         sb->s_fs_info = NULL;
918         kfree(sbi);
919         return err;
920 }
921
922 static int nilfs_remount(struct super_block *sb, int *flags, char *data)
923 {
924         struct nilfs_sb_info *sbi = NILFS_SB(sb);
925         struct nilfs_super_block *sbp;
926         struct the_nilfs *nilfs = sbi->s_nilfs;
927         unsigned long old_sb_flags;
928         struct nilfs_mount_options old_opts;
929         int err;
930
931         old_sb_flags = sb->s_flags;
932         old_opts.mount_opt = sbi->s_mount_opt;
933         old_opts.snapshot_cno = sbi->s_snapshot_cno;
934
935         if (!parse_options(data, sb)) {
936                 err = -EINVAL;
937                 goto restore_opts;
938         }
939         sb->s_flags = (sb->s_flags & ~MS_POSIXACL);
940
941         if ((*flags & MS_RDONLY) &&
942             sbi->s_snapshot_cno != old_opts.snapshot_cno) {
943                 printk(KERN_WARNING "NILFS (device %s): couldn't "
944                        "remount to a different snapshot. \n",
945                        sb->s_id);
946                 err = -EINVAL;
947                 goto restore_opts;
948         }
949
950         if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
951                 goto out;
952         if (*flags & MS_RDONLY) {
953                 /* Shutting down the segment constructor */
954                 nilfs_detach_segment_constructor(sbi);
955                 sb->s_flags |= MS_RDONLY;
956
957                 sbi->s_snapshot_cno = nilfs_last_cno(nilfs);
958                 /* nilfs_set_opt(sbi, SNAPSHOT); */
959
960                 /*
961                  * Remounting a valid RW partition RDONLY, so set
962                  * the RDONLY flag and then mark the partition as valid again.
963                  */
964                 down_write(&nilfs->ns_sem);
965                 sbp = nilfs->ns_sbp;
966                 if (!(sbp->s_state & le16_to_cpu(NILFS_VALID_FS)) &&
967                     (nilfs->ns_mount_state & NILFS_VALID_FS))
968                         sbp->s_state = cpu_to_le16(nilfs->ns_mount_state);
969                 sbp->s_mtime = cpu_to_le64(get_seconds());
970                 nilfs_commit_super(sbi);
971                 up_write(&nilfs->ns_sem);
972         } else {
973                 /*
974                  * Mounting a RDONLY partition read-write, so reread and
975                  * store the current valid flag.  (It may have been changed
976                  * by fsck since we originally mounted the partition.)
977                  */
978                 down(&sb->s_bdev->bd_mount_sem);
979                 /* Check existing RW-mount */
980                 if (test_exclusive_mount(sb->s_type, sb->s_bdev, 0)) {
981                         printk(KERN_WARNING "NILFS (device %s): couldn't "
982                                "remount because a RW-mount exists.\n",
983                                sb->s_id);
984                         err = -EBUSY;
985                         goto rw_remount_failed;
986                 }
987                 if (sbi->s_snapshot_cno != nilfs_last_cno(nilfs)) {
988                         printk(KERN_WARNING "NILFS (device %s): couldn't "
989                                "remount because the current RO-mount is not "
990                                "the latest one.\n",
991                                sb->s_id);
992                         err = -EINVAL;
993                         goto rw_remount_failed;
994                 }
995                 sb->s_flags &= ~MS_RDONLY;
996                 nilfs_clear_opt(sbi, SNAPSHOT);
997                 sbi->s_snapshot_cno = 0;
998
999                 err = nilfs_attach_segment_constructor(sbi, NULL);
1000                 if (err)
1001                         goto rw_remount_failed;
1002
1003                 down_write(&nilfs->ns_sem);
1004                 nilfs_setup_super(sbi);
1005                 up_write(&nilfs->ns_sem);
1006
1007                 up(&sb->s_bdev->bd_mount_sem);
1008         }
1009  out:
1010         return 0;
1011
1012  rw_remount_failed:
1013         up(&sb->s_bdev->bd_mount_sem);
1014  restore_opts:
1015         sb->s_flags = old_sb_flags;
1016         sbi->s_mount_opt = old_opts.mount_opt;
1017         sbi->s_snapshot_cno = old_opts.snapshot_cno;
1018         return err;
1019 }
1020
1021 struct nilfs_super_data {
1022         struct block_device *bdev;
1023         __u64 cno;
1024         int flags;
1025 };
1026
1027 /**
1028  * nilfs_identify - pre-read mount options needed to identify mount instance
1029  * @data: mount options
1030  * @sd: nilfs_super_data
1031  */
1032 static int nilfs_identify(char *data, struct nilfs_super_data *sd)
1033 {
1034         char *p, *options = data;
1035         substring_t args[MAX_OPT_ARGS];
1036         int option, token;
1037         int ret = 0;
1038
1039         do {
1040                 p = strsep(&options, ",");
1041                 if (p != NULL && *p) {
1042                         token = match_token(p, tokens, args);
1043                         if (token == Opt_snapshot) {
1044                                 if (!(sd->flags & MS_RDONLY))
1045                                         ret++;
1046                                 else {
1047                                         ret = match_int(&args[0], &option);
1048                                         if (!ret) {
1049                                                 if (option > 0)
1050                                                         sd->cno = option;
1051                                                 else
1052                                                         ret++;
1053                                         }
1054                                 }
1055                         }
1056                         if (ret)
1057                                 printk(KERN_ERR
1058                                        "NILFS: invalid mount option: %s\n", p);
1059                 }
1060                 if (!options)
1061                         break;
1062                 BUG_ON(options == data);
1063                 *(options - 1) = ',';
1064         } while (!ret);
1065         return ret;
1066 }
1067
1068 static int nilfs_set_bdev_super(struct super_block *s, void *data)
1069 {
1070         struct nilfs_super_data *sd = data;
1071
1072         s->s_bdev = sd->bdev;
1073         s->s_dev = s->s_bdev->bd_dev;
1074         return 0;
1075 }
1076
1077 static int nilfs_test_bdev_super(struct super_block *s, void *data)
1078 {
1079         struct nilfs_super_data *sd = data;
1080
1081         return s->s_bdev == sd->bdev;
1082 }
1083
1084 static int nilfs_test_bdev_super2(struct super_block *s, void *data)
1085 {
1086         struct nilfs_super_data *sd = data;
1087         int ret;
1088
1089         if (s->s_bdev != sd->bdev)
1090                 return 0;
1091
1092         if (!((s->s_flags | sd->flags) & MS_RDONLY))
1093                 return 1; /* Reuse an old R/W-mode super_block */
1094
1095         if (s->s_flags & sd->flags & MS_RDONLY) {
1096                 if (down_read_trylock(&s->s_umount)) {
1097                         ret = s->s_root &&
1098                                 (sd->cno == NILFS_SB(s)->s_snapshot_cno);
1099                         up_read(&s->s_umount);
1100                         /*
1101                          * This path is locked with sb_lock by sget().
1102                          * So, drop_super() causes deadlock.
1103                          */
1104                         return ret;
1105                 }
1106         }
1107         return 0;
1108 }
1109
1110 static int
1111 nilfs_get_sb(struct file_system_type *fs_type, int flags,
1112              const char *dev_name, void *data, struct vfsmount *mnt)
1113 {
1114         struct nilfs_super_data sd;
1115         struct super_block *s, *s2;
1116         struct the_nilfs *nilfs = NULL;
1117         int err, need_to_close = 1;
1118
1119         sd.bdev = open_bdev_exclusive(dev_name, flags, fs_type);
1120         if (IS_ERR(sd.bdev))
1121                 return PTR_ERR(sd.bdev);
1122
1123         /*
1124          * To get mount instance using sget() vfs-routine, NILFS needs
1125          * much more information than normal filesystems to identify mount
1126          * instance.  For snapshot mounts, not only a mount type (ro-mount
1127          * or rw-mount) but also a checkpoint number is required.
1128          * The results are passed in sget() using nilfs_super_data.
1129          */
1130         sd.cno = 0;
1131         sd.flags = flags;
1132         if (nilfs_identify((char *)data, &sd)) {
1133                 err = -EINVAL;
1134                 goto failed;
1135         }
1136
1137         /*
1138          * once the super is inserted into the list by sget, s_umount
1139          * will protect the lockfs code from trying to start a snapshot
1140          * while we are mounting
1141          */
1142         down(&sd.bdev->bd_mount_sem);
1143         if (!sd.cno &&
1144             (err = test_exclusive_mount(fs_type, sd.bdev, flags ^ MS_RDONLY))) {
1145                 err = (err < 0) ? : -EBUSY;
1146                 goto failed_unlock;
1147         }
1148
1149         /*
1150          * Phase-1: search any existent instance and get the_nilfs
1151          */
1152         s = sget(fs_type, nilfs_test_bdev_super, nilfs_set_bdev_super, &sd);
1153         if (IS_ERR(s))
1154                 goto error_s;
1155
1156         if (!s->s_root) {
1157                 err = -ENOMEM;
1158                 nilfs = alloc_nilfs(sd.bdev);
1159                 if (!nilfs)
1160                         goto cancel_new;
1161         } else {
1162                 struct nilfs_sb_info *sbi = NILFS_SB(s);
1163
1164                 BUG_ON(!sbi || !sbi->s_nilfs);
1165                 /*
1166                  * s_umount protects super_block from unmount process;
1167                  * It covers pointers of nilfs_sb_info and the_nilfs.
1168                  */
1169                 nilfs = sbi->s_nilfs;
1170                 get_nilfs(nilfs);
1171                 up_write(&s->s_umount);
1172
1173                 /*
1174                  * Phase-2: search specified snapshot or R/W mode super_block
1175                  */
1176                 if (!sd.cno)
1177                         /* trying to get the latest checkpoint.  */
1178                         sd.cno = nilfs_last_cno(nilfs);
1179
1180                 s2 = sget(fs_type, nilfs_test_bdev_super2,
1181                           nilfs_set_bdev_super, &sd);
1182                 deactivate_super(s);
1183                 /*
1184                  * Although deactivate_super() invokes close_bdev_exclusive() at
1185                  * kill_block_super().  Here, s is an existent mount; we need
1186                  * one more close_bdev_exclusive() call.
1187                  */
1188                 s = s2;
1189                 if (IS_ERR(s))
1190                         goto error_s;
1191         }
1192
1193         if (!s->s_root) {
1194                 char b[BDEVNAME_SIZE];
1195
1196                 s->s_flags = flags;
1197                 strlcpy(s->s_id, bdevname(sd.bdev, b), sizeof(s->s_id));
1198                 sb_set_blocksize(s, block_size(sd.bdev));
1199
1200                 err = nilfs_fill_super(s, data, flags & MS_VERBOSE, nilfs);
1201                 if (err)
1202                         goto cancel_new;
1203
1204                 s->s_flags |= MS_ACTIVE;
1205                 need_to_close = 0;
1206         } else if (!(s->s_flags & MS_RDONLY)) {
1207                 err = -EBUSY;
1208         }
1209
1210         up(&sd.bdev->bd_mount_sem);
1211         put_nilfs(nilfs);
1212         if (need_to_close)
1213                 close_bdev_exclusive(sd.bdev, flags);
1214         simple_set_mnt(mnt, s);
1215         return 0;
1216
1217  error_s:
1218         up(&sd.bdev->bd_mount_sem);
1219         if (nilfs)
1220                 put_nilfs(nilfs);
1221         close_bdev_exclusive(sd.bdev, flags);
1222         return PTR_ERR(s);
1223
1224  failed_unlock:
1225         up(&sd.bdev->bd_mount_sem);
1226  failed:
1227         close_bdev_exclusive(sd.bdev, flags);
1228
1229         return err;
1230
1231  cancel_new:
1232         /* Abandoning the newly allocated superblock */
1233         up(&sd.bdev->bd_mount_sem);
1234         if (nilfs)
1235                 put_nilfs(nilfs);
1236         up_write(&s->s_umount);
1237         deactivate_super(s);
1238         /*
1239          * deactivate_super() invokes close_bdev_exclusive().
1240          * We must finish all post-cleaning before this call;
1241          * put_nilfs() and unlocking bd_mount_sem need the block device.
1242          */
1243         return err;
1244 }
1245
1246 static int nilfs_test_bdev_super3(struct super_block *s, void *data)
1247 {
1248         struct nilfs_super_data *sd = data;
1249         int ret;
1250
1251         if (s->s_bdev != sd->bdev)
1252                 return 0;
1253         if (down_read_trylock(&s->s_umount)) {
1254                 ret = (s->s_flags & MS_RDONLY) && s->s_root &&
1255                         nilfs_test_opt(NILFS_SB(s), SNAPSHOT);
1256                 up_read(&s->s_umount);
1257                 if (ret)
1258                         return 0; /* ignore snapshot mounts */
1259         }
1260         return !((sd->flags ^ s->s_flags) & MS_RDONLY);
1261 }
1262
1263 static int __false_bdev_super(struct super_block *s, void *data)
1264 {
1265 #if 0 /* XXX: workaround for lock debug. This is not good idea */
1266         up_write(&s->s_umount);
1267 #endif
1268         return -EFAULT;
1269 }
1270
1271 /**
1272  * test_exclusive_mount - check whether an exclusive RW/RO mount exists or not.
1273  * fs_type: filesystem type
1274  * bdev: block device
1275  * flag: 0 (check rw-mount) or MS_RDONLY (check ro-mount)
1276  * res: pointer to an integer to store result
1277  *
1278  * This function must be called within a section protected by bd_mount_mutex.
1279  */
1280 static int test_exclusive_mount(struct file_system_type *fs_type,
1281                                 struct block_device *bdev, int flags)
1282 {
1283         struct super_block *s;
1284         struct nilfs_super_data sd = { .flags = flags, .bdev = bdev };
1285
1286         s = sget(fs_type, nilfs_test_bdev_super3, __false_bdev_super, &sd);
1287         if (IS_ERR(s)) {
1288                 if (PTR_ERR(s) != -EFAULT)
1289                         return PTR_ERR(s);
1290                 return 0;  /* Not found */
1291         }
1292         up_write(&s->s_umount);
1293         deactivate_super(s);
1294         return 1;  /* Found */
1295 }
1296
1297 struct file_system_type nilfs_fs_type = {
1298         .owner    = THIS_MODULE,
1299         .name     = "nilfs2",
1300         .get_sb   = nilfs_get_sb,
1301         .kill_sb  = kill_block_super,
1302         .fs_flags = FS_REQUIRES_DEV,
1303 };
1304
1305 static int __init init_nilfs_fs(void)
1306 {
1307         int err;
1308
1309         err = nilfs_init_inode_cache();
1310         if (err)
1311                 goto failed;
1312
1313         err = nilfs_init_transaction_cache();
1314         if (err)
1315                 goto failed_inode_cache;
1316
1317         err = nilfs_init_segbuf_cache();
1318         if (err)
1319                 goto failed_transaction_cache;
1320
1321         err = nilfs_btree_path_cache_init();
1322         if (err)
1323                 goto failed_segbuf_cache;
1324
1325         err = register_filesystem(&nilfs_fs_type);
1326         if (err)
1327                 goto failed_btree_path_cache;
1328
1329         return 0;
1330
1331  failed_btree_path_cache:
1332         nilfs_btree_path_cache_destroy();
1333
1334  failed_segbuf_cache:
1335         nilfs_destroy_segbuf_cache();
1336
1337  failed_transaction_cache:
1338         nilfs_destroy_transaction_cache();
1339
1340  failed_inode_cache:
1341         nilfs_destroy_inode_cache();
1342
1343  failed:
1344         return err;
1345 }
1346
1347 static void __exit exit_nilfs_fs(void)
1348 {
1349         nilfs_destroy_segbuf_cache();
1350         nilfs_destroy_transaction_cache();
1351         nilfs_destroy_inode_cache();
1352         nilfs_btree_path_cache_destroy();
1353         unregister_filesystem(&nilfs_fs_type);
1354 }
1355
1356 module_init(init_nilfs_fs)
1357 module_exit(exit_nilfs_fs)