2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/blkdev.h>
16 #include <linux/kthread.h>
17 #include <linux/namei.h>
18 #include <linux/mount.h>
19 #include <linux/gfs2_ondisk.h>
20 #include <linux/lm_interface.h>
30 #include "ops_export.h"
31 #include "ops_fstype.h"
32 #include "ops_super.h"
42 extern struct dentry_operations gfs2_dops;
44 static struct gfs2_sbd *init_sbd(struct super_block *sb)
48 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
55 gfs2_tune_init(&sdp->sd_tune);
57 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
58 spin_lock_init(&sdp->sd_reclaim_lock);
59 init_waitqueue_head(&sdp->sd_reclaim_wq);
61 mutex_init(&sdp->sd_inum_mutex);
62 spin_lock_init(&sdp->sd_statfs_spin);
63 mutex_init(&sdp->sd_statfs_mutex);
65 spin_lock_init(&sdp->sd_rindex_spin);
66 mutex_init(&sdp->sd_rindex_mutex);
67 INIT_LIST_HEAD(&sdp->sd_rindex_list);
68 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
69 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
71 INIT_LIST_HEAD(&sdp->sd_jindex_list);
72 spin_lock_init(&sdp->sd_jindex_spin);
73 mutex_init(&sdp->sd_jindex_mutex);
75 INIT_LIST_HEAD(&sdp->sd_quota_list);
76 spin_lock_init(&sdp->sd_quota_spin);
77 mutex_init(&sdp->sd_quota_mutex);
79 spin_lock_init(&sdp->sd_log_lock);
81 INIT_LIST_HEAD(&sdp->sd_log_le_gl);
82 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
83 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
84 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
85 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
87 mutex_init(&sdp->sd_log_reserve_mutex);
88 INIT_LIST_HEAD(&sdp->sd_ail1_list);
89 INIT_LIST_HEAD(&sdp->sd_ail2_list);
91 init_rwsem(&sdp->sd_log_flush_lock);
92 INIT_LIST_HEAD(&sdp->sd_log_flush_list);
94 INIT_LIST_HEAD(&sdp->sd_revoke_list);
96 mutex_init(&sdp->sd_freeze_lock);
101 static void init_vfs(struct super_block *sb, unsigned noatime)
103 struct gfs2_sbd *sdp = sb->s_fs_info;
105 sb->s_magic = GFS2_MAGIC;
106 sb->s_op = &gfs2_super_ops;
107 sb->s_export_op = &gfs2_export_ops;
108 sb->s_maxbytes = MAX_LFS_FILESIZE;
110 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
111 set_bit(noatime, &sdp->sd_flags);
113 /* Don't let the VFS update atimes. GFS2 handles this itself. */
114 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
117 static int init_names(struct gfs2_sbd *sdp, int silent)
119 struct gfs2_sb *sb = NULL;
123 proto = sdp->sd_args.ar_lockproto;
124 table = sdp->sd_args.ar_locktable;
126 /* Try to autodetect */
128 if (!proto[0] || !table[0]) {
129 struct buffer_head *bh;
130 bh = sb_getblk(sdp->sd_vfs,
131 GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
133 clear_buffer_uptodate(bh);
134 clear_buffer_dirty(bh);
136 ll_rw_block(READ, 1, &bh);
139 if (!buffer_uptodate(bh)) {
144 sb = kmalloc(sizeof(struct gfs2_sb), GFP_KERNEL);
149 gfs2_sb_in(sb, bh->b_data);
152 error = gfs2_check_sb(sdp, sb, silent);
157 proto = sb->sb_lockproto;
159 table = sb->sb_locktable;
163 table = sdp->sd_vfs->s_id;
165 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
166 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
173 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
176 struct task_struct *p;
182 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
185 fs_err(sdp, "can't start scand thread: %d\n", error);
188 sdp->sd_scand_process = p;
190 for (sdp->sd_glockd_num = 0;
191 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
192 sdp->sd_glockd_num++) {
193 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
196 fs_err(sdp, "can't start glockd thread: %d\n", error);
199 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
202 error = gfs2_glock_nq_num(sdp,
203 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
204 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
207 fs_err(sdp, "can't acquire mount glock: %d\n", error);
211 error = gfs2_glock_nq_num(sdp,
212 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
214 LM_FLAG_NOEXP | GL_EXACT,
217 fs_err(sdp, "can't acquire live glock: %d\n", error);
221 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
222 CREATE, &sdp->sd_rename_gl);
224 fs_err(sdp, "can't create rename glock: %d\n", error);
228 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
229 CREATE, &sdp->sd_trans_gl);
231 fs_err(sdp, "can't create transaction glock: %d\n", error);
234 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
239 gfs2_glock_put(sdp->sd_trans_gl);
241 gfs2_glock_put(sdp->sd_rename_gl);
243 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
245 gfs2_glock_dq_uninit(mount_gh);
247 while (sdp->sd_glockd_num--)
248 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
250 kthread_stop(sdp->sd_scand_process);
254 static struct inode *gfs2_lookup_root(struct super_block *sb,
255 struct gfs2_inum *inum)
257 return gfs2_inode_lookup(sb, inum, DT_DIR);
260 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
262 struct super_block *sb = sdp->sd_vfs;
263 struct gfs2_holder sb_gh;
264 struct gfs2_inum *inum;
276 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
277 LM_ST_SHARED, 0, &sb_gh);
279 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
283 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
285 fs_err(sdp, "can't read superblock: %d\n", error);
289 /* Set up the buffer cache and SB for real */
290 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
292 fs_err(sdp, "FS block size (%u) is too small for device "
294 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
297 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
299 fs_err(sdp, "FS block size (%u) is too big for machine "
301 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
304 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
306 /* Get the root inode */
307 inum = &sdp->sd_sb.sb_root_dir;
308 if (sb->s_type == &gfs2meta_fs_type)
309 inum = &sdp->sd_sb.sb_master_dir;
310 inode = gfs2_lookup_root(sb, inum);
312 error = PTR_ERR(inode);
313 fs_err(sdp, "can't read in root inode: %d\n", error);
317 sb->s_root = d_alloc_root(inode);
319 fs_err(sdp, "can't get root dentry\n");
323 sb->s_root->d_op = &gfs2_dops;
325 gfs2_glock_dq_uninit(&sb_gh);
329 static int init_journal(struct gfs2_sbd *sdp, int undo)
331 struct gfs2_holder ji_gh;
332 struct task_struct *p;
333 struct gfs2_inode *ip;
342 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
343 if (IS_ERR(sdp->sd_jindex)) {
344 fs_err(sdp, "can't lookup journal index: %d\n", error);
345 return PTR_ERR(sdp->sd_jindex);
347 ip = GFS2_I(sdp->sd_jindex);
348 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
350 /* Load in the journal index special file */
352 error = gfs2_jindex_hold(sdp, &ji_gh);
354 fs_err(sdp, "can't read journal index: %d\n", error);
359 if (!gfs2_jindex_size(sdp)) {
360 fs_err(sdp, "no journals!\n");
364 if (sdp->sd_args.ar_spectator) {
365 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
366 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
368 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
369 fs_err(sdp, "can't mount journal #%u\n",
370 sdp->sd_lockstruct.ls_jid);
371 fs_err(sdp, "there are only %u journals (0 - %u)\n",
372 gfs2_jindex_size(sdp),
373 gfs2_jindex_size(sdp) - 1);
376 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
378 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
380 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
381 &sdp->sd_journal_gh);
383 fs_err(sdp, "can't acquire journal glock: %d\n", error);
387 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
388 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
389 LM_FLAG_NOEXP | GL_EXACT,
392 fs_err(sdp, "can't acquire journal inode glock: %d\n",
394 goto fail_journal_gh;
397 error = gfs2_jdesc_check(sdp->sd_jdesc);
399 fs_err(sdp, "my journal (%u) is bad: %d\n",
400 sdp->sd_jdesc->jd_jid, error);
403 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
406 if (sdp->sd_lockstruct.ls_first) {
408 for (x = 0; x < sdp->sd_journals; x++) {
409 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
411 fs_err(sdp, "error recovering journal %u: %d\n",
417 gfs2_lm_others_may_mount(sdp);
418 } else if (!sdp->sd_args.ar_spectator) {
419 error = gfs2_recover_journal(sdp->sd_jdesc);
421 fs_err(sdp, "error recovering my journal: %d\n", error);
426 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
427 gfs2_glock_dq_uninit(&ji_gh);
430 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
433 fs_err(sdp, "can't start recoverd thread: %d\n", error);
436 sdp->sd_recoverd_process = p;
441 kthread_stop(sdp->sd_recoverd_process);
443 if (!sdp->sd_args.ar_spectator)
444 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
446 if (!sdp->sd_args.ar_spectator)
447 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
449 gfs2_jindex_free(sdp);
451 gfs2_glock_dq_uninit(&ji_gh);
453 iput(sdp->sd_jindex);
458 static int init_inodes(struct gfs2_sbd *sdp, int undo)
461 struct gfs2_inode *ip;
467 inode = gfs2_lookup_root(sdp->sd_vfs, &sdp->sd_sb.sb_master_dir);
469 error = PTR_ERR(inode);
470 fs_err(sdp, "can't read in master directory: %d\n", error);
473 sdp->sd_master_dir = inode;
475 error = init_journal(sdp, undo);
479 /* Read in the master inode number inode */
480 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
481 if (IS_ERR(sdp->sd_inum_inode)) {
482 error = PTR_ERR(sdp->sd_inum_inode);
483 fs_err(sdp, "can't read in inum inode: %d\n", error);
488 /* Read in the master statfs inode */
489 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
490 if (IS_ERR(sdp->sd_statfs_inode)) {
491 error = PTR_ERR(sdp->sd_statfs_inode);
492 fs_err(sdp, "can't read in statfs inode: %d\n", error);
496 /* Read in the resource index inode */
497 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
498 if (IS_ERR(sdp->sd_rindex)) {
499 error = PTR_ERR(sdp->sd_rindex);
500 fs_err(sdp, "can't get resource index inode: %d\n", error);
503 ip = GFS2_I(sdp->sd_rindex);
504 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
505 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
507 /* Read in the quota inode */
508 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
509 if (IS_ERR(sdp->sd_quota_inode)) {
510 error = PTR_ERR(sdp->sd_quota_inode);
511 fs_err(sdp, "can't get quota file inode: %d\n", error);
517 iput(sdp->sd_quota_inode);
519 gfs2_clear_rgrpd(sdp);
520 iput(sdp->sd_rindex);
522 iput(sdp->sd_statfs_inode);
524 iput(sdp->sd_inum_inode);
526 init_journal(sdp, UNDO);
528 iput(sdp->sd_master_dir);
533 static int init_per_node(struct gfs2_sbd *sdp, int undo)
535 struct inode *pn = NULL;
538 struct gfs2_inode *ip;
540 if (sdp->sd_args.ar_spectator)
546 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
549 fs_err(sdp, "can't find per_node directory: %d\n", error);
553 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
554 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
555 if (IS_ERR(sdp->sd_ir_inode)) {
556 error = PTR_ERR(sdp->sd_ir_inode);
557 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
561 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
562 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
563 if (IS_ERR(sdp->sd_sc_inode)) {
564 error = PTR_ERR(sdp->sd_sc_inode);
565 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
569 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
570 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
571 if (IS_ERR(sdp->sd_qc_inode)) {
572 error = PTR_ERR(sdp->sd_qc_inode);
573 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
580 ip = GFS2_I(sdp->sd_ir_inode);
581 error = gfs2_glock_nq_init(ip->i_gl,
585 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
589 ip = GFS2_I(sdp->sd_sc_inode);
590 error = gfs2_glock_nq_init(ip->i_gl,
594 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
598 ip = GFS2_I(sdp->sd_qc_inode);
599 error = gfs2_glock_nq_init(ip->i_gl,
603 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
610 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
612 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
614 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
616 iput(sdp->sd_qc_inode);
618 iput(sdp->sd_sc_inode);
620 iput(sdp->sd_ir_inode);
627 static int init_threads(struct gfs2_sbd *sdp, int undo)
629 struct task_struct *p;
635 sdp->sd_log_flush_time = jiffies;
636 sdp->sd_jindex_refresh_time = jiffies;
638 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
641 fs_err(sdp, "can't start logd thread: %d\n", error);
644 sdp->sd_logd_process = p;
646 sdp->sd_statfs_sync_time = jiffies;
647 sdp->sd_quota_sync_time = jiffies;
649 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
652 fs_err(sdp, "can't start quotad thread: %d\n", error);
655 sdp->sd_quotad_process = p;
661 kthread_stop(sdp->sd_quotad_process);
663 kthread_stop(sdp->sd_logd_process);
668 * fill_super - Read in superblock
669 * @sb: The VFS superblock
670 * @data: Mount options
671 * @silent: Don't complain if it's not a GFS2 filesystem
676 static int fill_super(struct super_block *sb, void *data, int silent)
678 struct gfs2_sbd *sdp;
679 struct gfs2_holder mount_gh;
684 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
688 error = gfs2_mount_args(sdp, (char *)data, 0);
690 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
694 init_vfs(sb, SDF_NOATIME);
696 /* Set up the buffer cache and fill in some fake block size values
697 to allow us to read-in the on-disk superblock. */
698 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
699 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
700 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
701 GFS2_BASIC_BLOCK_SHIFT;
702 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
704 error = init_names(sdp, silent);
708 error = gfs2_sys_fs_add(sdp);
712 error = gfs2_lm_mount(sdp, silent);
716 error = init_locking(sdp, &mount_gh, DO);
720 error = init_sb(sdp, silent, DO);
724 error = init_inodes(sdp, DO);
728 error = init_per_node(sdp, DO);
732 error = gfs2_statfs_init(sdp);
734 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
738 error = init_threads(sdp, DO);
742 if (!(sb->s_flags & MS_RDONLY)) {
743 error = gfs2_make_fs_rw(sdp);
745 fs_err(sdp, "can't make FS RW: %d\n", error);
750 gfs2_glock_dq_uninit(&mount_gh);
755 init_threads(sdp, UNDO);
757 init_per_node(sdp, UNDO);
759 init_inodes(sdp, UNDO);
761 init_sb(sdp, 0, UNDO);
763 init_locking(sdp, &mount_gh, UNDO);
765 gfs2_gl_hash_clear(sdp, WAIT);
766 gfs2_lm_unmount(sdp);
767 while (invalidate_inodes(sb))
770 gfs2_sys_fs_del(sdp);
773 sb->s_fs_info = NULL;
777 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
778 const char *dev_name, void *data, struct vfsmount *mnt)
780 struct super_block *sb;
781 struct gfs2_sbd *sdp;
782 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
787 sdp->sd_gfs2mnt = mnt;
792 static int fill_super_meta(struct super_block *sb, struct super_block *new,
793 void *data, int silent)
795 struct gfs2_sbd *sdp = sb->s_fs_info;
799 new->s_fs_info = sdp;
800 sdp->sd_vfs_meta = sb;
802 init_vfs(new, SDF_NOATIME);
804 /* Get the master inode */
805 inode = igrab(sdp->sd_master_dir);
807 new->s_root = d_alloc_root(inode);
809 fs_err(sdp, "can't get root dentry\n");
813 new->s_root->d_op = &gfs2_dops;
818 static int set_bdev_super(struct super_block *s, void *data)
821 s->s_dev = s->s_bdev->bd_dev;
825 static int test_bdev_super(struct super_block *s, void *data)
827 return s->s_bdev == data;
830 static struct super_block* get_gfs2_sb(const char *dev_name)
834 struct file_system_type *fstype;
835 struct super_block *sb = NULL, *s;
839 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
841 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
845 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
847 fstype = get_fs_type("gfs2");
848 list_for_each(l, &fstype->fs_supers) {
849 s = list_entry(l, struct super_block, s_instances);
850 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
851 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
857 printk(KERN_WARNING "GFS2: Unrecognized block device or "
858 "mount point %s", dev_name);
866 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
867 const char *dev_name, void *data, struct vfsmount *mnt)
870 struct super_block *sb = NULL, *new;
871 struct gfs2_sbd *sdp;
872 char *gfs2mnt = NULL;
874 sb = get_gfs2_sb(dev_name);
876 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
880 sdp = (struct gfs2_sbd*) sb->s_fs_info;
881 if (sdp->sd_vfs_meta) {
882 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
886 mutex_lock(&sb->s_bdev->bd_mount_mutex);
887 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
888 mutex_unlock(&sb->s_bdev->bd_mount_mutex);
890 error = PTR_ERR(new);
893 module_put(fs_type->owner);
894 new->s_flags = flags;
895 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
896 sb_set_blocksize(new, sb->s_blocksize);
897 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
899 up_write(&new->s_umount);
900 deactivate_super(new);
904 new->s_flags |= MS_ACTIVE;
906 /* Grab a reference to the gfs2 mount point */
907 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
908 return simple_set_mnt(mnt, new);
915 static void gfs2_kill_sb(struct super_block *sb)
917 kill_block_super(sb);
920 static void gfs2_kill_sb_meta(struct super_block *sb)
922 struct gfs2_sbd *sdp = sb->s_fs_info;
923 generic_shutdown_super(sb);
924 sdp->sd_vfs_meta = NULL;
925 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
928 struct file_system_type gfs2_fs_type = {
930 .fs_flags = FS_REQUIRES_DEV,
931 .get_sb = gfs2_get_sb,
932 .kill_sb = gfs2_kill_sb,
933 .owner = THIS_MODULE,
936 struct file_system_type gfs2meta_fs_type = {
938 .fs_flags = FS_REQUIRES_DEV,
939 .get_sb = gfs2_get_sb_meta,
940 .kill_sb = gfs2_kill_sb_meta,
941 .owner = THIS_MODULE,