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_dentry.h"
32 #include "ops_super.h"
42 static struct gfs2_sbd *init_sbd(struct super_block *sb)
46 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
53 gfs2_tune_init(&sdp->sd_tune);
55 INIT_LIST_HEAD(&sdp->sd_reclaim_list);
56 spin_lock_init(&sdp->sd_reclaim_lock);
57 init_waitqueue_head(&sdp->sd_reclaim_wq);
59 mutex_init(&sdp->sd_inum_mutex);
60 spin_lock_init(&sdp->sd_statfs_spin);
61 mutex_init(&sdp->sd_statfs_mutex);
63 spin_lock_init(&sdp->sd_rindex_spin);
64 mutex_init(&sdp->sd_rindex_mutex);
65 INIT_LIST_HEAD(&sdp->sd_rindex_list);
66 INIT_LIST_HEAD(&sdp->sd_rindex_mru_list);
67 INIT_LIST_HEAD(&sdp->sd_rindex_recent_list);
69 INIT_LIST_HEAD(&sdp->sd_jindex_list);
70 spin_lock_init(&sdp->sd_jindex_spin);
71 mutex_init(&sdp->sd_jindex_mutex);
73 INIT_LIST_HEAD(&sdp->sd_quota_list);
74 spin_lock_init(&sdp->sd_quota_spin);
75 mutex_init(&sdp->sd_quota_mutex);
77 spin_lock_init(&sdp->sd_log_lock);
79 INIT_LIST_HEAD(&sdp->sd_log_le_gl);
80 INIT_LIST_HEAD(&sdp->sd_log_le_buf);
81 INIT_LIST_HEAD(&sdp->sd_log_le_revoke);
82 INIT_LIST_HEAD(&sdp->sd_log_le_rg);
83 INIT_LIST_HEAD(&sdp->sd_log_le_databuf);
85 mutex_init(&sdp->sd_log_reserve_mutex);
86 INIT_LIST_HEAD(&sdp->sd_ail1_list);
87 INIT_LIST_HEAD(&sdp->sd_ail2_list);
89 init_rwsem(&sdp->sd_log_flush_lock);
90 INIT_LIST_HEAD(&sdp->sd_log_flush_list);
92 INIT_LIST_HEAD(&sdp->sd_revoke_list);
94 mutex_init(&sdp->sd_freeze_lock);
99 static void init_vfs(struct super_block *sb, unsigned noatime)
101 struct gfs2_sbd *sdp = sb->s_fs_info;
103 sb->s_magic = GFS2_MAGIC;
104 sb->s_op = &gfs2_super_ops;
105 sb->s_export_op = &gfs2_export_ops;
107 sb->s_maxbytes = MAX_LFS_FILESIZE;
109 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
110 set_bit(noatime, &sdp->sd_flags);
112 /* Don't let the VFS update atimes. GFS2 handles this itself. */
113 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
116 static int init_names(struct gfs2_sbd *sdp, int silent)
121 proto = sdp->sd_args.ar_lockproto;
122 table = sdp->sd_args.ar_locktable;
124 /* Try to autodetect */
126 if (!proto[0] || !table[0]) {
127 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
131 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
136 proto = sdp->sd_sb.sb_lockproto;
138 table = sdp->sd_sb.sb_locktable;
142 table = sdp->sd_vfs->s_id;
144 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
145 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
147 while ((table = strchr(sdp->sd_table_name, '/')))
154 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
157 struct task_struct *p;
163 p = kthread_run(gfs2_scand, sdp, "gfs2_scand");
166 fs_err(sdp, "can't start scand thread: %d\n", error);
169 sdp->sd_scand_process = p;
171 for (sdp->sd_glockd_num = 0;
172 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
173 sdp->sd_glockd_num++) {
174 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
177 fs_err(sdp, "can't start glockd thread: %d\n", error);
180 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
183 error = gfs2_glock_nq_num(sdp,
184 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
185 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
188 fs_err(sdp, "can't acquire mount glock: %d\n", error);
192 error = gfs2_glock_nq_num(sdp,
193 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
195 LM_FLAG_NOEXP | GL_EXACT,
198 fs_err(sdp, "can't acquire live glock: %d\n", error);
202 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
203 CREATE, &sdp->sd_rename_gl);
205 fs_err(sdp, "can't create rename glock: %d\n", error);
209 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
210 CREATE, &sdp->sd_trans_gl);
212 fs_err(sdp, "can't create transaction glock: %d\n", error);
215 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
220 gfs2_glock_put(sdp->sd_trans_gl);
222 gfs2_glock_put(sdp->sd_rename_gl);
224 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
226 gfs2_glock_dq_uninit(mount_gh);
228 while (sdp->sd_glockd_num--)
229 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
231 kthread_stop(sdp->sd_scand_process);
235 static inline struct inode *gfs2_lookup_root(struct super_block *sb,
238 return gfs2_inode_lookup(sb, DT_DIR, no_addr, 0);
241 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
243 struct super_block *sb = sdp->sd_vfs;
244 struct gfs2_holder sb_gh;
257 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
258 LM_ST_SHARED, 0, &sb_gh);
260 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
264 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
266 fs_err(sdp, "can't read superblock: %d\n", error);
270 /* Set up the buffer cache and SB for real */
271 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
273 fs_err(sdp, "FS block size (%u) is too small for device "
275 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
278 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
280 fs_err(sdp, "FS block size (%u) is too big for machine "
282 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
285 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
287 /* Get the root inode */
288 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
289 if (sb->s_type == &gfs2meta_fs_type)
290 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
291 inode = gfs2_lookup_root(sb, no_addr);
293 error = PTR_ERR(inode);
294 fs_err(sdp, "can't read in root inode: %d\n", error);
298 sb->s_root = d_alloc_root(inode);
300 fs_err(sdp, "can't get root dentry\n");
304 sb->s_root->d_op = &gfs2_dops;
306 gfs2_glock_dq_uninit(&sb_gh);
310 static int init_journal(struct gfs2_sbd *sdp, int undo)
312 struct gfs2_holder ji_gh;
313 struct task_struct *p;
314 struct gfs2_inode *ip;
323 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
324 if (IS_ERR(sdp->sd_jindex)) {
325 fs_err(sdp, "can't lookup journal index: %d\n", error);
326 return PTR_ERR(sdp->sd_jindex);
328 ip = GFS2_I(sdp->sd_jindex);
329 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
331 /* Load in the journal index special file */
333 error = gfs2_jindex_hold(sdp, &ji_gh);
335 fs_err(sdp, "can't read journal index: %d\n", error);
340 if (!gfs2_jindex_size(sdp)) {
341 fs_err(sdp, "no journals!\n");
345 if (sdp->sd_args.ar_spectator) {
346 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
347 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
349 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
350 fs_err(sdp, "can't mount journal #%u\n",
351 sdp->sd_lockstruct.ls_jid);
352 fs_err(sdp, "there are only %u journals (0 - %u)\n",
353 gfs2_jindex_size(sdp),
354 gfs2_jindex_size(sdp) - 1);
357 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
359 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
361 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
362 &sdp->sd_journal_gh);
364 fs_err(sdp, "can't acquire journal glock: %d\n", error);
368 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
369 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
370 LM_FLAG_NOEXP | GL_EXACT,
373 fs_err(sdp, "can't acquire journal inode glock: %d\n",
375 goto fail_journal_gh;
378 error = gfs2_jdesc_check(sdp->sd_jdesc);
380 fs_err(sdp, "my journal (%u) is bad: %d\n",
381 sdp->sd_jdesc->jd_jid, error);
384 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
387 if (sdp->sd_lockstruct.ls_first) {
389 for (x = 0; x < sdp->sd_journals; x++) {
390 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
392 fs_err(sdp, "error recovering journal %u: %d\n",
398 gfs2_lm_others_may_mount(sdp);
399 } else if (!sdp->sd_args.ar_spectator) {
400 error = gfs2_recover_journal(sdp->sd_jdesc);
402 fs_err(sdp, "error recovering my journal: %d\n", error);
407 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
408 gfs2_glock_dq_uninit(&ji_gh);
411 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
414 fs_err(sdp, "can't start recoverd thread: %d\n", error);
417 sdp->sd_recoverd_process = p;
422 kthread_stop(sdp->sd_recoverd_process);
424 if (!sdp->sd_args.ar_spectator)
425 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
427 if (!sdp->sd_args.ar_spectator)
428 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
430 gfs2_jindex_free(sdp);
432 gfs2_glock_dq_uninit(&ji_gh);
434 iput(sdp->sd_jindex);
439 static int init_inodes(struct gfs2_sbd *sdp, int undo)
442 struct gfs2_inode *ip;
448 inode = gfs2_lookup_root(sdp->sd_vfs, sdp->sd_sb.sb_master_dir.no_addr);
450 error = PTR_ERR(inode);
451 fs_err(sdp, "can't read in master directory: %d\n", error);
454 sdp->sd_master_dir = inode;
456 error = init_journal(sdp, undo);
460 /* Read in the master inode number inode */
461 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
462 if (IS_ERR(sdp->sd_inum_inode)) {
463 error = PTR_ERR(sdp->sd_inum_inode);
464 fs_err(sdp, "can't read in inum inode: %d\n", error);
469 /* Read in the master statfs inode */
470 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
471 if (IS_ERR(sdp->sd_statfs_inode)) {
472 error = PTR_ERR(sdp->sd_statfs_inode);
473 fs_err(sdp, "can't read in statfs inode: %d\n", error);
477 /* Read in the resource index inode */
478 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
479 if (IS_ERR(sdp->sd_rindex)) {
480 error = PTR_ERR(sdp->sd_rindex);
481 fs_err(sdp, "can't get resource index inode: %d\n", error);
484 ip = GFS2_I(sdp->sd_rindex);
485 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
486 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
488 /* Read in the quota inode */
489 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
490 if (IS_ERR(sdp->sd_quota_inode)) {
491 error = PTR_ERR(sdp->sd_quota_inode);
492 fs_err(sdp, "can't get quota file inode: %d\n", error);
498 iput(sdp->sd_quota_inode);
500 gfs2_clear_rgrpd(sdp);
501 iput(sdp->sd_rindex);
503 iput(sdp->sd_statfs_inode);
505 iput(sdp->sd_inum_inode);
507 init_journal(sdp, UNDO);
509 iput(sdp->sd_master_dir);
514 static int init_per_node(struct gfs2_sbd *sdp, int undo)
516 struct inode *pn = NULL;
519 struct gfs2_inode *ip;
521 if (sdp->sd_args.ar_spectator)
527 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
530 fs_err(sdp, "can't find per_node directory: %d\n", error);
534 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
535 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
536 if (IS_ERR(sdp->sd_ir_inode)) {
537 error = PTR_ERR(sdp->sd_ir_inode);
538 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
542 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
543 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
544 if (IS_ERR(sdp->sd_sc_inode)) {
545 error = PTR_ERR(sdp->sd_sc_inode);
546 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
550 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
551 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
552 if (IS_ERR(sdp->sd_qc_inode)) {
553 error = PTR_ERR(sdp->sd_qc_inode);
554 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
561 ip = GFS2_I(sdp->sd_ir_inode);
562 error = gfs2_glock_nq_init(ip->i_gl,
566 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
570 ip = GFS2_I(sdp->sd_sc_inode);
571 error = gfs2_glock_nq_init(ip->i_gl,
575 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
579 ip = GFS2_I(sdp->sd_qc_inode);
580 error = gfs2_glock_nq_init(ip->i_gl,
584 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
591 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
593 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
595 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
597 iput(sdp->sd_qc_inode);
599 iput(sdp->sd_sc_inode);
601 iput(sdp->sd_ir_inode);
608 static int init_threads(struct gfs2_sbd *sdp, int undo)
610 struct task_struct *p;
616 sdp->sd_log_flush_time = jiffies;
617 sdp->sd_jindex_refresh_time = jiffies;
619 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
622 fs_err(sdp, "can't start logd thread: %d\n", error);
625 sdp->sd_logd_process = p;
627 sdp->sd_statfs_sync_time = jiffies;
628 sdp->sd_quota_sync_time = jiffies;
630 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
633 fs_err(sdp, "can't start quotad thread: %d\n", error);
636 sdp->sd_quotad_process = p;
642 kthread_stop(sdp->sd_quotad_process);
644 kthread_stop(sdp->sd_logd_process);
649 * fill_super - Read in superblock
650 * @sb: The VFS superblock
651 * @data: Mount options
652 * @silent: Don't complain if it's not a GFS2 filesystem
657 static int fill_super(struct super_block *sb, void *data, int silent)
659 struct gfs2_sbd *sdp;
660 struct gfs2_holder mount_gh;
665 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
669 error = gfs2_mount_args(sdp, (char *)data, 0);
671 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
675 init_vfs(sb, SDF_NOATIME);
677 /* Set up the buffer cache and fill in some fake block size values
678 to allow us to read-in the on-disk superblock. */
679 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
680 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
681 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
682 GFS2_BASIC_BLOCK_SHIFT;
683 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
685 error = init_names(sdp, silent);
689 gfs2_create_debugfs_file(sdp);
691 error = gfs2_sys_fs_add(sdp);
695 error = gfs2_lm_mount(sdp, silent);
699 error = init_locking(sdp, &mount_gh, DO);
703 error = init_sb(sdp, silent, DO);
707 error = init_inodes(sdp, DO);
711 error = init_per_node(sdp, DO);
715 error = gfs2_statfs_init(sdp);
717 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
721 error = init_threads(sdp, DO);
725 if (!(sb->s_flags & MS_RDONLY)) {
726 error = gfs2_make_fs_rw(sdp);
728 fs_err(sdp, "can't make FS RW: %d\n", error);
733 gfs2_glock_dq_uninit(&mount_gh);
738 init_threads(sdp, UNDO);
740 init_per_node(sdp, UNDO);
742 init_inodes(sdp, UNDO);
744 init_sb(sdp, 0, UNDO);
746 init_locking(sdp, &mount_gh, UNDO);
748 gfs2_gl_hash_clear(sdp, WAIT);
749 gfs2_lm_unmount(sdp);
750 while (invalidate_inodes(sb))
753 gfs2_sys_fs_del(sdp);
755 gfs2_delete_debugfs_file(sdp);
757 sb->s_fs_info = NULL;
761 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
762 const char *dev_name, void *data, struct vfsmount *mnt)
764 struct super_block *sb;
765 struct gfs2_sbd *sdp;
766 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
771 sdp->sd_gfs2mnt = mnt;
776 static int fill_super_meta(struct super_block *sb, struct super_block *new,
777 void *data, int silent)
779 struct gfs2_sbd *sdp = sb->s_fs_info;
783 new->s_fs_info = sdp;
784 sdp->sd_vfs_meta = sb;
786 init_vfs(new, SDF_NOATIME);
788 /* Get the master inode */
789 inode = igrab(sdp->sd_master_dir);
791 new->s_root = d_alloc_root(inode);
793 fs_err(sdp, "can't get root dentry\n");
797 new->s_root->d_op = &gfs2_dops;
802 static int set_bdev_super(struct super_block *s, void *data)
805 s->s_dev = s->s_bdev->bd_dev;
809 static int test_bdev_super(struct super_block *s, void *data)
811 return s->s_bdev == data;
814 static struct super_block* get_gfs2_sb(const char *dev_name)
818 struct file_system_type *fstype;
819 struct super_block *sb = NULL, *s;
823 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
825 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
829 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
831 fstype = get_fs_type("gfs2");
832 list_for_each(l, &fstype->fs_supers) {
833 s = list_entry(l, struct super_block, s_instances);
834 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
835 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
841 printk(KERN_WARNING "GFS2: Unrecognized block device or "
842 "mount point %s\n", dev_name);
850 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
851 const char *dev_name, void *data, struct vfsmount *mnt)
854 struct super_block *sb = NULL, *new;
855 struct gfs2_sbd *sdp;
857 sb = get_gfs2_sb(dev_name);
859 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
863 sdp = (struct gfs2_sbd*) sb->s_fs_info;
864 if (sdp->sd_vfs_meta) {
865 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
869 down(&sb->s_bdev->bd_mount_sem);
870 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
871 up(&sb->s_bdev->bd_mount_sem);
873 error = PTR_ERR(new);
876 module_put(fs_type->owner);
877 new->s_flags = flags;
878 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
879 sb_set_blocksize(new, sb->s_blocksize);
880 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
882 up_write(&new->s_umount);
883 deactivate_super(new);
887 new->s_flags |= MS_ACTIVE;
889 /* Grab a reference to the gfs2 mount point */
890 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
891 return simple_set_mnt(mnt, new);
896 static void gfs2_kill_sb(struct super_block *sb)
898 gfs2_delete_debugfs_file(sb->s_fs_info);
899 kill_block_super(sb);
902 static void gfs2_kill_sb_meta(struct super_block *sb)
904 struct gfs2_sbd *sdp = sb->s_fs_info;
905 generic_shutdown_super(sb);
906 sdp->sd_vfs_meta = NULL;
907 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
910 struct file_system_type gfs2_fs_type = {
912 .fs_flags = FS_REQUIRES_DEV,
913 .get_sb = gfs2_get_sb,
914 .kill_sb = gfs2_kill_sb,
915 .owner = THIS_MODULE,
918 struct file_system_type gfs2meta_fs_type = {
920 .fs_flags = FS_REQUIRES_DEV,
921 .get_sb = gfs2_get_sb_meta,
922 .kill_sb = gfs2_kill_sb_meta,
923 .owner = THIS_MODULE,