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)
123 proto = sdp->sd_args.ar_lockproto;
124 table = sdp->sd_args.ar_locktable;
126 /* Try to autodetect */
128 if (!proto[0] || !table[0]) {
130 page = gfs2_read_super(sdp->sd_vfs, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
134 gfs2_sb_in(&sdp->sd_sb, sb);
138 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
143 proto = sdp->sd_sb.sb_lockproto;
145 table = sdp->sd_sb.sb_locktable;
149 table = sdp->sd_vfs->s_id;
151 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
152 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
158 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
161 struct task_struct *p;
167 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
170 fs_err(sdp, "can't start scand thread: %d\n", error);
173 sdp->sd_scand_process = p;
175 for (sdp->sd_glockd_num = 0;
176 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
177 sdp->sd_glockd_num++) {
178 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
181 fs_err(sdp, "can't start glockd thread: %d\n", error);
184 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
187 error = gfs2_glock_nq_num(sdp,
188 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
189 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
192 fs_err(sdp, "can't acquire mount glock: %d\n", error);
196 error = gfs2_glock_nq_num(sdp,
197 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
199 LM_FLAG_NOEXP | GL_EXACT,
202 fs_err(sdp, "can't acquire live glock: %d\n", error);
206 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
207 CREATE, &sdp->sd_rename_gl);
209 fs_err(sdp, "can't create rename glock: %d\n", error);
213 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
214 CREATE, &sdp->sd_trans_gl);
216 fs_err(sdp, "can't create transaction glock: %d\n", error);
219 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
224 gfs2_glock_put(sdp->sd_trans_gl);
226 gfs2_glock_put(sdp->sd_rename_gl);
228 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
230 gfs2_glock_dq_uninit(mount_gh);
232 while (sdp->sd_glockd_num--)
233 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
235 kthread_stop(sdp->sd_scand_process);
239 static struct inode *gfs2_lookup_root(struct super_block *sb,
240 struct gfs2_inum_host *inum)
242 return gfs2_inode_lookup(sb, inum, DT_DIR);
245 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
247 struct super_block *sb = sdp->sd_vfs;
248 struct gfs2_holder sb_gh;
249 struct gfs2_inum_host *inum;
261 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
262 LM_ST_SHARED, 0, &sb_gh);
264 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
268 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
270 fs_err(sdp, "can't read superblock: %d\n", error);
274 /* Set up the buffer cache and SB for real */
275 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
277 fs_err(sdp, "FS block size (%u) is too small for device "
279 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
282 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
284 fs_err(sdp, "FS block size (%u) is too big for machine "
286 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
289 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
291 /* Get the root inode */
292 inum = &sdp->sd_sb.sb_root_dir;
293 if (sb->s_type == &gfs2meta_fs_type)
294 inum = &sdp->sd_sb.sb_master_dir;
295 inode = gfs2_lookup_root(sb, inum);
297 error = PTR_ERR(inode);
298 fs_err(sdp, "can't read in root inode: %d\n", error);
302 sb->s_root = d_alloc_root(inode);
304 fs_err(sdp, "can't get root dentry\n");
308 sb->s_root->d_op = &gfs2_dops;
310 gfs2_glock_dq_uninit(&sb_gh);
314 static int init_journal(struct gfs2_sbd *sdp, int undo)
316 struct gfs2_holder ji_gh;
317 struct task_struct *p;
318 struct gfs2_inode *ip;
327 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
328 if (IS_ERR(sdp->sd_jindex)) {
329 fs_err(sdp, "can't lookup journal index: %d\n", error);
330 return PTR_ERR(sdp->sd_jindex);
332 ip = GFS2_I(sdp->sd_jindex);
333 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
335 /* Load in the journal index special file */
337 error = gfs2_jindex_hold(sdp, &ji_gh);
339 fs_err(sdp, "can't read journal index: %d\n", error);
344 if (!gfs2_jindex_size(sdp)) {
345 fs_err(sdp, "no journals!\n");
349 if (sdp->sd_args.ar_spectator) {
350 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
351 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
353 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
354 fs_err(sdp, "can't mount journal #%u\n",
355 sdp->sd_lockstruct.ls_jid);
356 fs_err(sdp, "there are only %u journals (0 - %u)\n",
357 gfs2_jindex_size(sdp),
358 gfs2_jindex_size(sdp) - 1);
361 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
363 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
365 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
366 &sdp->sd_journal_gh);
368 fs_err(sdp, "can't acquire journal glock: %d\n", error);
372 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
373 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
374 LM_FLAG_NOEXP | GL_EXACT,
377 fs_err(sdp, "can't acquire journal inode glock: %d\n",
379 goto fail_journal_gh;
382 error = gfs2_jdesc_check(sdp->sd_jdesc);
384 fs_err(sdp, "my journal (%u) is bad: %d\n",
385 sdp->sd_jdesc->jd_jid, error);
388 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
391 if (sdp->sd_lockstruct.ls_first) {
393 for (x = 0; x < sdp->sd_journals; x++) {
394 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
396 fs_err(sdp, "error recovering journal %u: %d\n",
402 gfs2_lm_others_may_mount(sdp);
403 } else if (!sdp->sd_args.ar_spectator) {
404 error = gfs2_recover_journal(sdp->sd_jdesc);
406 fs_err(sdp, "error recovering my journal: %d\n", error);
411 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
412 gfs2_glock_dq_uninit(&ji_gh);
415 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
418 fs_err(sdp, "can't start recoverd thread: %d\n", error);
421 sdp->sd_recoverd_process = p;
426 kthread_stop(sdp->sd_recoverd_process);
428 if (!sdp->sd_args.ar_spectator)
429 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
431 if (!sdp->sd_args.ar_spectator)
432 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
434 gfs2_jindex_free(sdp);
436 gfs2_glock_dq_uninit(&ji_gh);
438 iput(sdp->sd_jindex);
443 static int init_inodes(struct gfs2_sbd *sdp, int undo)
446 struct gfs2_inode *ip;
452 inode = gfs2_lookup_root(sdp->sd_vfs, &sdp->sd_sb.sb_master_dir);
454 error = PTR_ERR(inode);
455 fs_err(sdp, "can't read in master directory: %d\n", error);
458 sdp->sd_master_dir = inode;
460 error = init_journal(sdp, undo);
464 /* Read in the master inode number inode */
465 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
466 if (IS_ERR(sdp->sd_inum_inode)) {
467 error = PTR_ERR(sdp->sd_inum_inode);
468 fs_err(sdp, "can't read in inum inode: %d\n", error);
473 /* Read in the master statfs inode */
474 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
475 if (IS_ERR(sdp->sd_statfs_inode)) {
476 error = PTR_ERR(sdp->sd_statfs_inode);
477 fs_err(sdp, "can't read in statfs inode: %d\n", error);
481 /* Read in the resource index inode */
482 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
483 if (IS_ERR(sdp->sd_rindex)) {
484 error = PTR_ERR(sdp->sd_rindex);
485 fs_err(sdp, "can't get resource index inode: %d\n", error);
488 ip = GFS2_I(sdp->sd_rindex);
489 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
490 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
492 /* Read in the quota inode */
493 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
494 if (IS_ERR(sdp->sd_quota_inode)) {
495 error = PTR_ERR(sdp->sd_quota_inode);
496 fs_err(sdp, "can't get quota file inode: %d\n", error);
502 iput(sdp->sd_quota_inode);
504 gfs2_clear_rgrpd(sdp);
505 iput(sdp->sd_rindex);
507 iput(sdp->sd_statfs_inode);
509 iput(sdp->sd_inum_inode);
511 init_journal(sdp, UNDO);
513 iput(sdp->sd_master_dir);
518 static int init_per_node(struct gfs2_sbd *sdp, int undo)
520 struct inode *pn = NULL;
523 struct gfs2_inode *ip;
525 if (sdp->sd_args.ar_spectator)
531 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
534 fs_err(sdp, "can't find per_node directory: %d\n", error);
538 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
539 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
540 if (IS_ERR(sdp->sd_ir_inode)) {
541 error = PTR_ERR(sdp->sd_ir_inode);
542 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
546 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
547 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
548 if (IS_ERR(sdp->sd_sc_inode)) {
549 error = PTR_ERR(sdp->sd_sc_inode);
550 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
554 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
555 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
556 if (IS_ERR(sdp->sd_qc_inode)) {
557 error = PTR_ERR(sdp->sd_qc_inode);
558 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
565 ip = GFS2_I(sdp->sd_ir_inode);
566 error = gfs2_glock_nq_init(ip->i_gl,
570 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
574 ip = GFS2_I(sdp->sd_sc_inode);
575 error = gfs2_glock_nq_init(ip->i_gl,
579 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
583 ip = GFS2_I(sdp->sd_qc_inode);
584 error = gfs2_glock_nq_init(ip->i_gl,
588 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
595 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
597 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
599 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
601 iput(sdp->sd_qc_inode);
603 iput(sdp->sd_sc_inode);
605 iput(sdp->sd_ir_inode);
612 static int init_threads(struct gfs2_sbd *sdp, int undo)
614 struct task_struct *p;
620 sdp->sd_log_flush_time = jiffies;
621 sdp->sd_jindex_refresh_time = jiffies;
623 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
626 fs_err(sdp, "can't start logd thread: %d\n", error);
629 sdp->sd_logd_process = p;
631 sdp->sd_statfs_sync_time = jiffies;
632 sdp->sd_quota_sync_time = jiffies;
634 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
637 fs_err(sdp, "can't start quotad thread: %d\n", error);
640 sdp->sd_quotad_process = p;
646 kthread_stop(sdp->sd_quotad_process);
648 kthread_stop(sdp->sd_logd_process);
653 * fill_super - Read in superblock
654 * @sb: The VFS superblock
655 * @data: Mount options
656 * @silent: Don't complain if it's not a GFS2 filesystem
661 static int fill_super(struct super_block *sb, void *data, int silent)
663 struct gfs2_sbd *sdp;
664 struct gfs2_holder mount_gh;
669 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
673 error = gfs2_mount_args(sdp, (char *)data, 0);
675 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
679 init_vfs(sb, SDF_NOATIME);
681 /* Set up the buffer cache and fill in some fake block size values
682 to allow us to read-in the on-disk superblock. */
683 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
684 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
685 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
686 GFS2_BASIC_BLOCK_SHIFT;
687 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
689 error = init_names(sdp, silent);
693 gfs2_create_debugfs_file(sdp);
695 error = gfs2_sys_fs_add(sdp);
699 error = gfs2_lm_mount(sdp, silent);
703 error = init_locking(sdp, &mount_gh, DO);
707 error = init_sb(sdp, silent, DO);
711 error = init_inodes(sdp, DO);
715 error = init_per_node(sdp, DO);
719 error = gfs2_statfs_init(sdp);
721 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
725 error = init_threads(sdp, DO);
729 if (!(sb->s_flags & MS_RDONLY)) {
730 error = gfs2_make_fs_rw(sdp);
732 fs_err(sdp, "can't make FS RW: %d\n", error);
737 gfs2_glock_dq_uninit(&mount_gh);
742 init_threads(sdp, UNDO);
744 init_per_node(sdp, UNDO);
746 init_inodes(sdp, UNDO);
748 init_sb(sdp, 0, UNDO);
750 init_locking(sdp, &mount_gh, UNDO);
752 gfs2_gl_hash_clear(sdp, WAIT);
753 gfs2_lm_unmount(sdp);
754 while (invalidate_inodes(sb))
757 gfs2_sys_fs_del(sdp);
759 gfs2_delete_debugfs_file(sdp);
761 sb->s_fs_info = NULL;
765 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
766 const char *dev_name, void *data, struct vfsmount *mnt)
768 struct super_block *sb;
769 struct gfs2_sbd *sdp;
770 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
775 sdp->sd_gfs2mnt = mnt;
780 static int fill_super_meta(struct super_block *sb, struct super_block *new,
781 void *data, int silent)
783 struct gfs2_sbd *sdp = sb->s_fs_info;
787 new->s_fs_info = sdp;
788 sdp->sd_vfs_meta = sb;
790 init_vfs(new, SDF_NOATIME);
792 /* Get the master inode */
793 inode = igrab(sdp->sd_master_dir);
795 new->s_root = d_alloc_root(inode);
797 fs_err(sdp, "can't get root dentry\n");
801 new->s_root->d_op = &gfs2_dops;
806 static int set_bdev_super(struct super_block *s, void *data)
809 s->s_dev = s->s_bdev->bd_dev;
813 static int test_bdev_super(struct super_block *s, void *data)
815 return s->s_bdev == data;
818 static struct super_block* get_gfs2_sb(const char *dev_name)
822 struct file_system_type *fstype;
823 struct super_block *sb = NULL, *s;
827 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
829 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
833 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
835 fstype = get_fs_type("gfs2");
836 list_for_each(l, &fstype->fs_supers) {
837 s = list_entry(l, struct super_block, s_instances);
838 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
839 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
845 printk(KERN_WARNING "GFS2: Unrecognized block device or "
846 "mount point %s\n", dev_name);
854 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
855 const char *dev_name, void *data, struct vfsmount *mnt)
858 struct super_block *sb = NULL, *new;
859 struct gfs2_sbd *sdp;
861 sb = get_gfs2_sb(dev_name);
863 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
867 sdp = (struct gfs2_sbd*) sb->s_fs_info;
868 if (sdp->sd_vfs_meta) {
869 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
873 down(&sb->s_bdev->bd_mount_sem);
874 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
875 up(&sb->s_bdev->bd_mount_sem);
877 error = PTR_ERR(new);
880 module_put(fs_type->owner);
881 new->s_flags = flags;
882 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
883 sb_set_blocksize(new, sb->s_blocksize);
884 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
886 up_write(&new->s_umount);
887 deactivate_super(new);
891 new->s_flags |= MS_ACTIVE;
893 /* Grab a reference to the gfs2 mount point */
894 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
895 return simple_set_mnt(mnt, new);
900 static void gfs2_kill_sb(struct super_block *sb)
902 gfs2_delete_debugfs_file(sb->s_fs_info);
903 kill_block_super(sb);
906 static void gfs2_kill_sb_meta(struct super_block *sb)
908 struct gfs2_sbd *sdp = sb->s_fs_info;
909 generic_shutdown_super(sb);
910 sdp->sd_vfs_meta = NULL;
911 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
914 struct file_system_type gfs2_fs_type = {
916 .fs_flags = FS_REQUIRES_DEV,
917 .get_sb = gfs2_get_sb,
918 .kill_sb = gfs2_kill_sb,
919 .owner = THIS_MODULE,
922 struct file_system_type gfs2meta_fs_type = {
924 .fs_flags = FS_REQUIRES_DEV,
925 .get_sb = gfs2_get_sb_meta,
926 .kill_sb = gfs2_kill_sb_meta,
927 .owner = THIS_MODULE,