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_fstype.h"
31 #include "ops_super.h"
41 extern struct dentry_operations gfs2_dops;
43 static struct gfs2_sbd *init_sbd(struct super_block *sb)
47 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
54 gfs2_tune_init(&sdp->sd_tune);
56 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
57 spin_lock_init(&sdp->sd_reclaim_lock);
58 init_waitqueue_head(&sdp->sd_reclaim_wq);
60 mutex_init(&sdp->sd_inum_mutex);
61 spin_lock_init(&sdp->sd_statfs_spin);
62 mutex_init(&sdp->sd_statfs_mutex);
64 spin_lock_init(&sdp->sd_rindex_spin);
65 mutex_init(&sdp->sd_rindex_mutex);
66 INIT_LIST_HEAD(&sdp->sd_rindex_list);
67 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
68 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
70 INIT_LIST_HEAD(&sdp->sd_jindex_list);
71 spin_lock_init(&sdp->sd_jindex_spin);
72 mutex_init(&sdp->sd_jindex_mutex);
74 INIT_LIST_HEAD(&sdp->sd_quota_list);
75 spin_lock_init(&sdp->sd_quota_spin);
76 mutex_init(&sdp->sd_quota_mutex);
78 spin_lock_init(&sdp->sd_log_lock);
80 INIT_LIST_HEAD(&sdp->sd_log_le_gl);
81 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
82 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
83 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
84 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
86 mutex_init(&sdp->sd_log_reserve_mutex);
87 INIT_LIST_HEAD(&sdp->sd_ail1_list);
88 INIT_LIST_HEAD(&sdp->sd_ail2_list);
90 init_rwsem(&sdp->sd_log_flush_lock);
91 INIT_LIST_HEAD(&sdp->sd_log_flush_list);
93 INIT_LIST_HEAD(&sdp->sd_revoke_list);
95 mutex_init(&sdp->sd_freeze_lock);
100 static void init_vfs(struct super_block *sb, unsigned noatime)
102 struct gfs2_sbd *sdp = sb->s_fs_info;
104 sb->s_magic = GFS2_MAGIC;
105 sb->s_op = &gfs2_super_ops;
106 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)
122 proto = sdp->sd_args.ar_lockproto;
123 table = sdp->sd_args.ar_locktable;
125 /* Try to autodetect */
127 if (!proto[0] || !table[0]) {
128 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
132 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
137 proto = sdp->sd_sb.sb_lockproto;
139 table = sdp->sd_sb.sb_locktable;
143 table = sdp->sd_vfs->s_id;
145 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
146 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
148 while ((table = strchr(sdp->sd_table_name, '/')))
155 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
158 struct task_struct *p;
164 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
167 fs_err(sdp, "can't start scand thread: %d\n", error);
170 sdp->sd_scand_process = p;
172 for (sdp->sd_glockd_num = 0;
173 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
174 sdp->sd_glockd_num++) {
175 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
178 fs_err(sdp, "can't start glockd thread: %d\n", error);
181 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
184 error = gfs2_glock_nq_num(sdp,
185 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
186 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
189 fs_err(sdp, "can't acquire mount glock: %d\n", error);
193 error = gfs2_glock_nq_num(sdp,
194 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
196 LM_FLAG_NOEXP | GL_EXACT,
199 fs_err(sdp, "can't acquire live glock: %d\n", error);
203 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
204 CREATE, &sdp->sd_rename_gl);
206 fs_err(sdp, "can't create rename glock: %d\n", error);
210 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
211 CREATE, &sdp->sd_trans_gl);
213 fs_err(sdp, "can't create transaction glock: %d\n", error);
216 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
221 gfs2_glock_put(sdp->sd_trans_gl);
223 gfs2_glock_put(sdp->sd_rename_gl);
225 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
227 gfs2_glock_dq_uninit(mount_gh);
229 while (sdp->sd_glockd_num--)
230 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
232 kthread_stop(sdp->sd_scand_process);
236 static inline struct inode *gfs2_lookup_root(struct super_block *sb,
239 return gfs2_inode_lookup(sb, DT_DIR, no_addr, 0);
242 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
244 struct super_block *sb = sdp->sd_vfs;
245 struct gfs2_holder sb_gh;
258 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
259 LM_ST_SHARED, 0, &sb_gh);
261 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
265 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
267 fs_err(sdp, "can't read superblock: %d\n", error);
271 /* Set up the buffer cache and SB for real */
272 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
274 fs_err(sdp, "FS block size (%u) is too small for device "
276 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
279 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
281 fs_err(sdp, "FS block size (%u) is too big for machine "
283 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
286 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
288 /* Get the root inode */
289 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
290 if (sb->s_type == &gfs2meta_fs_type)
291 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
292 inode = gfs2_lookup_root(sb, no_addr);
294 error = PTR_ERR(inode);
295 fs_err(sdp, "can't read in root inode: %d\n", error);
299 sb->s_root = d_alloc_root(inode);
301 fs_err(sdp, "can't get root dentry\n");
305 sb->s_root->d_op = &gfs2_dops;
307 gfs2_glock_dq_uninit(&sb_gh);
311 static int init_journal(struct gfs2_sbd *sdp, int undo)
313 struct gfs2_holder ji_gh;
314 struct task_struct *p;
315 struct gfs2_inode *ip;
324 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
325 if (IS_ERR(sdp->sd_jindex)) {
326 fs_err(sdp, "can't lookup journal index: %d\n", error);
327 return PTR_ERR(sdp->sd_jindex);
329 ip = GFS2_I(sdp->sd_jindex);
330 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
332 /* Load in the journal index special file */
334 error = gfs2_jindex_hold(sdp, &ji_gh);
336 fs_err(sdp, "can't read journal index: %d\n", error);
341 if (!gfs2_jindex_size(sdp)) {
342 fs_err(sdp, "no journals!\n");
346 if (sdp->sd_args.ar_spectator) {
347 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
348 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
350 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
351 fs_err(sdp, "can't mount journal #%u\n",
352 sdp->sd_lockstruct.ls_jid);
353 fs_err(sdp, "there are only %u journals (0 - %u)\n",
354 gfs2_jindex_size(sdp),
355 gfs2_jindex_size(sdp) - 1);
358 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
360 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
362 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
363 &sdp->sd_journal_gh);
365 fs_err(sdp, "can't acquire journal glock: %d\n", error);
369 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
370 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
371 LM_FLAG_NOEXP | GL_EXACT,
374 fs_err(sdp, "can't acquire journal inode glock: %d\n",
376 goto fail_journal_gh;
379 error = gfs2_jdesc_check(sdp->sd_jdesc);
381 fs_err(sdp, "my journal (%u) is bad: %d\n",
382 sdp->sd_jdesc->jd_jid, error);
385 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
388 if (sdp->sd_lockstruct.ls_first) {
390 for (x = 0; x < sdp->sd_journals; x++) {
391 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
393 fs_err(sdp, "error recovering journal %u: %d\n",
399 gfs2_lm_others_may_mount(sdp);
400 } else if (!sdp->sd_args.ar_spectator) {
401 error = gfs2_recover_journal(sdp->sd_jdesc);
403 fs_err(sdp, "error recovering my journal: %d\n", error);
408 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
409 gfs2_glock_dq_uninit(&ji_gh);
412 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
415 fs_err(sdp, "can't start recoverd thread: %d\n", error);
418 sdp->sd_recoverd_process = p;
423 kthread_stop(sdp->sd_recoverd_process);
425 if (!sdp->sd_args.ar_spectator)
426 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
428 if (!sdp->sd_args.ar_spectator)
429 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
431 gfs2_jindex_free(sdp);
433 gfs2_glock_dq_uninit(&ji_gh);
435 iput(sdp->sd_jindex);
440 static int init_inodes(struct gfs2_sbd *sdp, int undo)
443 struct gfs2_inode *ip;
449 inode = gfs2_lookup_root(sdp->sd_vfs, sdp->sd_sb.sb_master_dir.no_addr);
451 error = PTR_ERR(inode);
452 fs_err(sdp, "can't read in master directory: %d\n", error);
455 sdp->sd_master_dir = inode;
457 error = init_journal(sdp, undo);
461 /* Read in the master inode number inode */
462 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
463 if (IS_ERR(sdp->sd_inum_inode)) {
464 error = PTR_ERR(sdp->sd_inum_inode);
465 fs_err(sdp, "can't read in inum inode: %d\n", error);
470 /* Read in the master statfs inode */
471 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
472 if (IS_ERR(sdp->sd_statfs_inode)) {
473 error = PTR_ERR(sdp->sd_statfs_inode);
474 fs_err(sdp, "can't read in statfs inode: %d\n", error);
478 /* Read in the resource index inode */
479 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
480 if (IS_ERR(sdp->sd_rindex)) {
481 error = PTR_ERR(sdp->sd_rindex);
482 fs_err(sdp, "can't get resource index inode: %d\n", error);
485 ip = GFS2_I(sdp->sd_rindex);
486 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
487 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
489 /* Read in the quota inode */
490 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
491 if (IS_ERR(sdp->sd_quota_inode)) {
492 error = PTR_ERR(sdp->sd_quota_inode);
493 fs_err(sdp, "can't get quota file inode: %d\n", error);
499 iput(sdp->sd_quota_inode);
501 gfs2_clear_rgrpd(sdp);
502 iput(sdp->sd_rindex);
504 iput(sdp->sd_statfs_inode);
506 iput(sdp->sd_inum_inode);
508 init_journal(sdp, UNDO);
510 iput(sdp->sd_master_dir);
515 static int init_per_node(struct gfs2_sbd *sdp, int undo)
517 struct inode *pn = NULL;
520 struct gfs2_inode *ip;
522 if (sdp->sd_args.ar_spectator)
528 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
531 fs_err(sdp, "can't find per_node directory: %d\n", error);
535 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
536 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
537 if (IS_ERR(sdp->sd_ir_inode)) {
538 error = PTR_ERR(sdp->sd_ir_inode);
539 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
543 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
544 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
545 if (IS_ERR(sdp->sd_sc_inode)) {
546 error = PTR_ERR(sdp->sd_sc_inode);
547 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
551 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
552 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
553 if (IS_ERR(sdp->sd_qc_inode)) {
554 error = PTR_ERR(sdp->sd_qc_inode);
555 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
562 ip = GFS2_I(sdp->sd_ir_inode);
563 error = gfs2_glock_nq_init(ip->i_gl,
567 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
571 ip = GFS2_I(sdp->sd_sc_inode);
572 error = gfs2_glock_nq_init(ip->i_gl,
576 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
580 ip = GFS2_I(sdp->sd_qc_inode);
581 error = gfs2_glock_nq_init(ip->i_gl,
585 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
592 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
594 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
596 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
598 iput(sdp->sd_qc_inode);
600 iput(sdp->sd_sc_inode);
602 iput(sdp->sd_ir_inode);
609 static int init_threads(struct gfs2_sbd *sdp, int undo)
611 struct task_struct *p;
617 sdp->sd_log_flush_time = jiffies;
618 sdp->sd_jindex_refresh_time = jiffies;
620 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
623 fs_err(sdp, "can't start logd thread: %d\n", error);
626 sdp->sd_logd_process = p;
628 sdp->sd_statfs_sync_time = jiffies;
629 sdp->sd_quota_sync_time = jiffies;
631 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
634 fs_err(sdp, "can't start quotad thread: %d\n", error);
637 sdp->sd_quotad_process = p;
643 kthread_stop(sdp->sd_quotad_process);
645 kthread_stop(sdp->sd_logd_process);
650 * fill_super - Read in superblock
651 * @sb: The VFS superblock
652 * @data: Mount options
653 * @silent: Don't complain if it's not a GFS2 filesystem
658 static int fill_super(struct super_block *sb, void *data, int silent)
660 struct gfs2_sbd *sdp;
661 struct gfs2_holder mount_gh;
666 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
670 error = gfs2_mount_args(sdp, (char *)data, 0);
672 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
676 init_vfs(sb, SDF_NOATIME);
678 /* Set up the buffer cache and fill in some fake block size values
679 to allow us to read-in the on-disk superblock. */
680 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
681 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
682 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
683 GFS2_BASIC_BLOCK_SHIFT;
684 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
686 error = init_names(sdp, silent);
690 gfs2_create_debugfs_file(sdp);
692 error = gfs2_sys_fs_add(sdp);
696 error = gfs2_lm_mount(sdp, silent);
700 error = init_locking(sdp, &mount_gh, DO);
704 error = init_sb(sdp, silent, DO);
708 error = init_inodes(sdp, DO);
712 error = init_per_node(sdp, DO);
716 error = gfs2_statfs_init(sdp);
718 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
722 error = init_threads(sdp, DO);
726 if (!(sb->s_flags & MS_RDONLY)) {
727 error = gfs2_make_fs_rw(sdp);
729 fs_err(sdp, "can't make FS RW: %d\n", error);
734 gfs2_glock_dq_uninit(&mount_gh);
739 init_threads(sdp, UNDO);
741 init_per_node(sdp, UNDO);
743 init_inodes(sdp, UNDO);
745 init_sb(sdp, 0, UNDO);
747 init_locking(sdp, &mount_gh, UNDO);
749 gfs2_gl_hash_clear(sdp, WAIT);
750 gfs2_lm_unmount(sdp);
751 while (invalidate_inodes(sb))
754 gfs2_sys_fs_del(sdp);
756 gfs2_delete_debugfs_file(sdp);
758 sb->s_fs_info = NULL;
762 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
763 const char *dev_name, void *data, struct vfsmount *mnt)
765 struct super_block *sb;
766 struct gfs2_sbd *sdp;
767 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
772 sdp->sd_gfs2mnt = mnt;
777 static int fill_super_meta(struct super_block *sb, struct super_block *new,
778 void *data, int silent)
780 struct gfs2_sbd *sdp = sb->s_fs_info;
784 new->s_fs_info = sdp;
785 sdp->sd_vfs_meta = sb;
787 init_vfs(new, SDF_NOATIME);
789 /* Get the master inode */
790 inode = igrab(sdp->sd_master_dir);
792 new->s_root = d_alloc_root(inode);
794 fs_err(sdp, "can't get root dentry\n");
798 new->s_root->d_op = &gfs2_dops;
803 static int set_bdev_super(struct super_block *s, void *data)
806 s->s_dev = s->s_bdev->bd_dev;
810 static int test_bdev_super(struct super_block *s, void *data)
812 return s->s_bdev == data;
815 static struct super_block* get_gfs2_sb(const char *dev_name)
819 struct file_system_type *fstype;
820 struct super_block *sb = NULL, *s;
824 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
826 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
830 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
832 fstype = get_fs_type("gfs2");
833 list_for_each(l, &fstype->fs_supers) {
834 s = list_entry(l, struct super_block, s_instances);
835 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
836 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
842 printk(KERN_WARNING "GFS2: Unrecognized block device or "
843 "mount point %s\n", dev_name);
851 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
852 const char *dev_name, void *data, struct vfsmount *mnt)
855 struct super_block *sb = NULL, *new;
856 struct gfs2_sbd *sdp;
858 sb = get_gfs2_sb(dev_name);
860 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
864 sdp = (struct gfs2_sbd*) sb->s_fs_info;
865 if (sdp->sd_vfs_meta) {
866 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
870 down(&sb->s_bdev->bd_mount_sem);
871 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
872 up(&sb->s_bdev->bd_mount_sem);
874 error = PTR_ERR(new);
877 module_put(fs_type->owner);
878 new->s_flags = flags;
879 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
880 sb_set_blocksize(new, sb->s_blocksize);
881 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
883 up_write(&new->s_umount);
884 deactivate_super(new);
888 new->s_flags |= MS_ACTIVE;
890 /* Grab a reference to the gfs2 mount point */
891 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
892 return simple_set_mnt(mnt, new);
897 static void gfs2_kill_sb(struct super_block *sb)
899 gfs2_delete_debugfs_file(sb->s_fs_info);
900 kill_block_super(sb);
903 static void gfs2_kill_sb_meta(struct super_block *sb)
905 struct gfs2_sbd *sdp = sb->s_fs_info;
906 generic_shutdown_super(sb);
907 sdp->sd_vfs_meta = NULL;
908 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
911 struct file_system_type gfs2_fs_type = {
913 .fs_flags = FS_REQUIRES_DEV,
914 .get_sb = gfs2_get_sb,
915 .kill_sb = gfs2_kill_sb,
916 .owner = THIS_MODULE,
919 struct file_system_type gfs2meta_fs_type = {
921 .fs_flags = FS_REQUIRES_DEV,
922 .get_sb = gfs2_get_sb_meta,
923 .kill_sb = gfs2_kill_sb_meta,
924 .owner = THIS_MODULE,