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/vmalloc.h>
16 #include <linux/blkdev.h>
17 #include <linux/kthread.h>
18 #include <linux/namei.h>
19 #include <linux/mount.h>
20 #include <linux/gfs2_ondisk.h>
23 #include "lm_interface.h"
31 #include "ops_export.h"
32 #include "ops_fstype.h"
33 #include "ops_super.h"
43 extern struct dentry_operations gfs2_dops;
45 static struct gfs2_sbd *init_sbd(struct super_block *sb)
50 sdp = vmalloc(sizeof(struct gfs2_sbd));
54 memset(sdp, 0, sizeof(struct gfs2_sbd));
59 gfs2_tune_init(&sdp->sd_tune);
61 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
62 rwlock_init(&sdp->sd_gl_hash[x].hb_lock);
63 INIT_LIST_HEAD(&sdp->sd_gl_hash[x].hb_list);
65 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
66 spin_lock_init(&sdp->sd_reclaim_lock);
67 init_waitqueue_head(&sdp->sd_reclaim_wq);
69 mutex_init(&sdp->sd_inum_mutex);
70 spin_lock_init(&sdp->sd_statfs_spin);
71 mutex_init(&sdp->sd_statfs_mutex);
73 spin_lock_init(&sdp->sd_rindex_spin);
74 mutex_init(&sdp->sd_rindex_mutex);
75 INIT_LIST_HEAD(&sdp->sd_rindex_list);
76 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
77 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
79 INIT_LIST_HEAD(&sdp->sd_jindex_list);
80 spin_lock_init(&sdp->sd_jindex_spin);
81 mutex_init(&sdp->sd_jindex_mutex);
83 INIT_LIST_HEAD(&sdp->sd_quota_list);
84 spin_lock_init(&sdp->sd_quota_spin);
85 mutex_init(&sdp->sd_quota_mutex);
87 spin_lock_init(&sdp->sd_log_lock);
89 INIT_LIST_HEAD(&sdp->sd_log_le_gl);
90 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
91 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
92 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
93 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
95 mutex_init(&sdp->sd_log_reserve_mutex);
96 INIT_LIST_HEAD(&sdp->sd_ail1_list);
97 INIT_LIST_HEAD(&sdp->sd_ail2_list);
99 init_rwsem(&sdp->sd_log_flush_lock);
100 INIT_LIST_HEAD(&sdp->sd_log_flush_list);
102 INIT_LIST_HEAD(&sdp->sd_revoke_list);
104 mutex_init(&sdp->sd_freeze_lock);
109 static void init_vfs(struct super_block *sb, unsigned noatime)
111 struct gfs2_sbd *sdp = sb->s_fs_info;
113 sb->s_magic = GFS2_MAGIC;
114 sb->s_op = &gfs2_super_ops;
115 sb->s_export_op = &gfs2_export_ops;
116 sb->s_maxbytes = MAX_LFS_FILESIZE;
118 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
119 set_bit(noatime, &sdp->sd_flags);
121 /* Don't let the VFS update atimes. GFS2 handles this itself. */
122 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
125 static int init_names(struct gfs2_sbd *sdp, int silent)
127 struct gfs2_sb *sb = NULL;
131 proto = sdp->sd_args.ar_lockproto;
132 table = sdp->sd_args.ar_locktable;
134 /* Try to autodetect */
136 if (!proto[0] || !table[0]) {
137 struct buffer_head *bh;
138 bh = sb_getblk(sdp->sd_vfs,
139 GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
141 clear_buffer_uptodate(bh);
142 clear_buffer_dirty(bh);
144 ll_rw_block(READ, 1, &bh);
147 if (!buffer_uptodate(bh)) {
152 sb = kmalloc(sizeof(struct gfs2_sb), GFP_KERNEL);
157 gfs2_sb_in(sb, bh->b_data);
160 error = gfs2_check_sb(sdp, sb, silent);
165 proto = sb->sb_lockproto;
167 table = sb->sb_locktable;
171 table = sdp->sd_vfs->s_id;
173 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
174 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
181 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
184 struct task_struct *p;
190 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
193 fs_err(sdp, "can't start scand thread: %d\n", error);
196 sdp->sd_scand_process = p;
198 for (sdp->sd_glockd_num = 0;
199 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
200 sdp->sd_glockd_num++) {
201 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
204 fs_err(sdp, "can't start glockd thread: %d\n", error);
207 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
210 error = gfs2_glock_nq_num(sdp,
211 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
212 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
215 fs_err(sdp, "can't acquire mount glock: %d\n", error);
219 error = gfs2_glock_nq_num(sdp,
220 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
222 LM_FLAG_NOEXP | GL_EXACT,
225 fs_err(sdp, "can't acquire live glock: %d\n", error);
229 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
230 CREATE, &sdp->sd_rename_gl);
232 fs_err(sdp, "can't create rename glock: %d\n", error);
236 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
237 CREATE, &sdp->sd_trans_gl);
239 fs_err(sdp, "can't create transaction glock: %d\n", error);
242 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
247 gfs2_glock_put(sdp->sd_trans_gl);
249 gfs2_glock_put(sdp->sd_rename_gl);
251 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
253 gfs2_glock_dq_uninit(mount_gh);
255 while (sdp->sd_glockd_num--)
256 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
258 kthread_stop(sdp->sd_scand_process);
262 static struct inode *gfs2_lookup_root(struct super_block *sb,
263 struct gfs2_inum *inum)
265 return gfs2_inode_lookup(sb, inum, DT_DIR);
268 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
270 struct super_block *sb = sdp->sd_vfs;
271 struct gfs2_holder sb_gh;
272 struct gfs2_inum *inum;
284 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
285 LM_ST_SHARED, 0, &sb_gh);
287 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
291 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
293 fs_err(sdp, "can't read superblock: %d\n", error);
297 /* Set up the buffer cache and SB for real */
298 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
300 fs_err(sdp, "FS block size (%u) is too small for device "
302 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
305 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
307 fs_err(sdp, "FS block size (%u) is too big for machine "
309 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
312 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
314 /* Get the root inode */
315 inum = &sdp->sd_sb.sb_root_dir;
316 if (sb->s_type == &gfs2meta_fs_type)
317 inum = &sdp->sd_sb.sb_master_dir;
318 inode = gfs2_lookup_root(sb, inum);
320 error = PTR_ERR(inode);
321 fs_err(sdp, "can't read in root inode: %d\n", error);
325 sb->s_root = d_alloc_root(inode);
327 fs_err(sdp, "can't get root dentry\n");
331 sb->s_root->d_op = &gfs2_dops;
333 gfs2_glock_dq_uninit(&sb_gh);
337 static int init_journal(struct gfs2_sbd *sdp, int undo)
339 struct gfs2_holder ji_gh;
340 struct task_struct *p;
341 struct gfs2_inode *ip;
350 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
351 if (IS_ERR(sdp->sd_jindex)) {
352 fs_err(sdp, "can't lookup journal index: %d\n", error);
353 return PTR_ERR(sdp->sd_jindex);
355 ip = GFS2_I(sdp->sd_jindex);
356 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
358 /* Load in the journal index special file */
360 error = gfs2_jindex_hold(sdp, &ji_gh);
362 fs_err(sdp, "can't read journal index: %d\n", error);
367 if (!gfs2_jindex_size(sdp)) {
368 fs_err(sdp, "no journals!\n");
372 if (sdp->sd_args.ar_spectator) {
373 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
374 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
376 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
377 fs_err(sdp, "can't mount journal #%u\n",
378 sdp->sd_lockstruct.ls_jid);
379 fs_err(sdp, "there are only %u journals (0 - %u)\n",
380 gfs2_jindex_size(sdp),
381 gfs2_jindex_size(sdp) - 1);
384 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
386 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
388 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
389 &sdp->sd_journal_gh);
391 fs_err(sdp, "can't acquire journal glock: %d\n", error);
395 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
396 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
397 LM_FLAG_NOEXP | GL_EXACT,
400 fs_err(sdp, "can't acquire journal inode glock: %d\n",
402 goto fail_journal_gh;
405 error = gfs2_jdesc_check(sdp->sd_jdesc);
407 fs_err(sdp, "my journal (%u) is bad: %d\n",
408 sdp->sd_jdesc->jd_jid, error);
411 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
414 if (sdp->sd_lockstruct.ls_first) {
416 for (x = 0; x < sdp->sd_journals; x++) {
417 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
419 fs_err(sdp, "error recovering journal %u: %d\n",
425 gfs2_lm_others_may_mount(sdp);
426 } else if (!sdp->sd_args.ar_spectator) {
427 error = gfs2_recover_journal(sdp->sd_jdesc);
429 fs_err(sdp, "error recovering my journal: %d\n", error);
434 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
435 gfs2_glock_dq_uninit(&ji_gh);
438 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
441 fs_err(sdp, "can't start recoverd thread: %d\n", error);
444 sdp->sd_recoverd_process = p;
449 kthread_stop(sdp->sd_recoverd_process);
451 if (!sdp->sd_args.ar_spectator)
452 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
454 if (!sdp->sd_args.ar_spectator)
455 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
457 gfs2_jindex_free(sdp);
459 gfs2_glock_dq_uninit(&ji_gh);
461 iput(sdp->sd_jindex);
466 static int init_inodes(struct gfs2_sbd *sdp, int undo)
469 struct gfs2_inode *ip;
475 inode = gfs2_lookup_root(sdp->sd_vfs, &sdp->sd_sb.sb_master_dir);
477 error = PTR_ERR(inode);
478 fs_err(sdp, "can't read in master directory: %d\n", error);
481 sdp->sd_master_dir = inode;
483 error = init_journal(sdp, undo);
487 /* Read in the master inode number inode */
488 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
489 if (IS_ERR(sdp->sd_inum_inode)) {
490 error = PTR_ERR(sdp->sd_inum_inode);
491 fs_err(sdp, "can't read in inum inode: %d\n", error);
496 /* Read in the master statfs inode */
497 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
498 if (IS_ERR(sdp->sd_statfs_inode)) {
499 error = PTR_ERR(sdp->sd_statfs_inode);
500 fs_err(sdp, "can't read in statfs inode: %d\n", error);
504 /* Read in the resource index inode */
505 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
506 if (IS_ERR(sdp->sd_rindex)) {
507 error = PTR_ERR(sdp->sd_rindex);
508 fs_err(sdp, "can't get resource index inode: %d\n", error);
511 ip = GFS2_I(sdp->sd_rindex);
512 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
513 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
515 /* Read in the quota inode */
516 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
517 if (IS_ERR(sdp->sd_quota_inode)) {
518 error = PTR_ERR(sdp->sd_quota_inode);
519 fs_err(sdp, "can't get quota file inode: %d\n", error);
525 iput(sdp->sd_quota_inode);
527 gfs2_clear_rgrpd(sdp);
528 iput(sdp->sd_rindex);
530 iput(sdp->sd_statfs_inode);
532 iput(sdp->sd_inum_inode);
534 init_journal(sdp, UNDO);
536 iput(sdp->sd_master_dir);
541 static int init_per_node(struct gfs2_sbd *sdp, int undo)
543 struct inode *pn = NULL;
546 struct gfs2_inode *ip;
548 if (sdp->sd_args.ar_spectator)
554 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
557 fs_err(sdp, "can't find per_node directory: %d\n", error);
561 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
562 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
563 if (IS_ERR(sdp->sd_ir_inode)) {
564 error = PTR_ERR(sdp->sd_ir_inode);
565 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
569 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
570 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
571 if (IS_ERR(sdp->sd_sc_inode)) {
572 error = PTR_ERR(sdp->sd_sc_inode);
573 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
577 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
578 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
579 if (IS_ERR(sdp->sd_qc_inode)) {
580 error = PTR_ERR(sdp->sd_qc_inode);
581 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
588 ip = GFS2_I(sdp->sd_ir_inode);
589 error = gfs2_glock_nq_init(ip->i_gl,
593 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
597 ip = GFS2_I(sdp->sd_sc_inode);
598 error = gfs2_glock_nq_init(ip->i_gl,
602 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
606 ip = GFS2_I(sdp->sd_qc_inode);
607 error = gfs2_glock_nq_init(ip->i_gl,
611 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
618 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
620 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
622 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
624 iput(sdp->sd_qc_inode);
626 iput(sdp->sd_sc_inode);
628 iput(sdp->sd_ir_inode);
635 static int init_threads(struct gfs2_sbd *sdp, int undo)
637 struct task_struct *p;
643 sdp->sd_log_flush_time = jiffies;
644 sdp->sd_jindex_refresh_time = jiffies;
646 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
649 fs_err(sdp, "can't start logd thread: %d\n", error);
652 sdp->sd_logd_process = p;
654 sdp->sd_statfs_sync_time = jiffies;
655 sdp->sd_quota_sync_time = jiffies;
657 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
660 fs_err(sdp, "can't start quotad thread: %d\n", error);
663 sdp->sd_quotad_process = p;
669 kthread_stop(sdp->sd_quotad_process);
671 kthread_stop(sdp->sd_logd_process);
676 * fill_super - Read in superblock
677 * @sb: The VFS superblock
678 * @data: Mount options
679 * @silent: Don't complain if it's not a GFS2 filesystem
684 static int fill_super(struct super_block *sb, void *data, int silent)
686 struct gfs2_sbd *sdp;
687 struct gfs2_holder mount_gh;
692 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
696 error = gfs2_mount_args(sdp, (char *)data, 0);
698 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
702 init_vfs(sb, SDF_NOATIME);
704 /* Set up the buffer cache and fill in some fake block size values
705 to allow us to read-in the on-disk superblock. */
706 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
707 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
708 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
709 GFS2_BASIC_BLOCK_SHIFT;
710 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
712 error = init_names(sdp, silent);
716 error = gfs2_sys_fs_add(sdp);
720 error = gfs2_lm_mount(sdp, silent);
724 error = init_locking(sdp, &mount_gh, DO);
728 error = init_sb(sdp, silent, DO);
732 error = init_inodes(sdp, DO);
736 error = init_per_node(sdp, DO);
740 error = gfs2_statfs_init(sdp);
742 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
746 error = init_threads(sdp, DO);
750 if (!(sb->s_flags & MS_RDONLY)) {
751 error = gfs2_make_fs_rw(sdp);
753 fs_err(sdp, "can't make FS RW: %d\n", error);
758 gfs2_glock_dq_uninit(&mount_gh);
763 init_threads(sdp, UNDO);
765 init_per_node(sdp, UNDO);
767 init_inodes(sdp, UNDO);
769 init_sb(sdp, 0, UNDO);
771 init_locking(sdp, &mount_gh, UNDO);
773 gfs2_gl_hash_clear(sdp, WAIT);
774 gfs2_lm_unmount(sdp);
775 while (invalidate_inodes(sb))
778 gfs2_sys_fs_del(sdp);
781 sb->s_fs_info = NULL;
785 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
786 const char *dev_name, void *data, struct vfsmount *mnt)
788 struct super_block *sb;
789 struct gfs2_sbd *sdp;
790 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
795 sdp->sd_gfs2mnt = mnt;
800 static int fill_super_meta(struct super_block *sb, struct super_block *new,
801 void *data, int silent)
803 struct gfs2_sbd *sdp = sb->s_fs_info;
807 new->s_fs_info = sdp;
808 sdp->sd_vfs_meta = sb;
810 init_vfs(new, SDF_NOATIME);
812 /* Get the master inode */
813 inode = igrab(sdp->sd_master_dir);
815 new->s_root = d_alloc_root(inode);
817 fs_err(sdp, "can't get root dentry\n");
821 new->s_root->d_op = &gfs2_dops;
826 static int set_bdev_super(struct super_block *s, void *data)
829 s->s_dev = s->s_bdev->bd_dev;
833 static int test_bdev_super(struct super_block *s, void *data)
835 return s->s_bdev == data;
838 static struct super_block* get_gfs2_sb(const char *dev_name)
842 struct file_system_type *fstype;
843 struct super_block *sb = NULL, *s;
847 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
849 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
853 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
855 fstype = get_fs_type("gfs2");
856 list_for_each(l, &fstype->fs_supers) {
857 s = list_entry(l, struct super_block, s_instances);
858 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
859 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
865 printk(KERN_WARNING "GFS2: Unrecognized block device or "
866 "mount point %s", dev_name);
874 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
875 const char *dev_name, void *data, struct vfsmount *mnt)
878 struct super_block *sb = NULL, *new;
879 struct gfs2_sbd *sdp;
880 char *gfs2mnt = NULL;
882 sb = get_gfs2_sb(dev_name);
884 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
888 sdp = (struct gfs2_sbd*) sb->s_fs_info;
889 if (sdp->sd_vfs_meta) {
890 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
894 mutex_lock(&sb->s_bdev->bd_mount_mutex);
895 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
896 mutex_unlock(&sb->s_bdev->bd_mount_mutex);
898 error = PTR_ERR(new);
901 module_put(fs_type->owner);
902 new->s_flags = flags;
903 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
904 sb_set_blocksize(new, sb->s_blocksize);
905 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
907 up_write(&new->s_umount);
908 deactivate_super(new);
912 new->s_flags |= MS_ACTIVE;
914 /* Grab a reference to the gfs2 mount point */
915 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
916 return simple_set_mnt(mnt, new);
923 static void gfs2_kill_sb(struct super_block *sb)
925 kill_block_super(sb);
928 static void gfs2_kill_sb_meta(struct super_block *sb)
930 struct gfs2_sbd *sdp = sb->s_fs_info;
931 generic_shutdown_super(sb);
932 sdp->sd_vfs_meta = NULL;
933 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
936 struct file_system_type gfs2_fs_type = {
938 .fs_flags = FS_REQUIRES_DEV,
939 .get_sb = gfs2_get_sb,
940 .kill_sb = gfs2_kill_sb,
941 .owner = THIS_MODULE,
944 struct file_system_type gfs2meta_fs_type = {
946 .fs_flags = FS_REQUIRES_DEV,
947 .get_sb = gfs2_get_sb_meta,
948 .kill_sb = gfs2_kill_sb_meta,
949 .owner = THIS_MODULE,