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"
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);
85 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
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 atomic_set(&sdp->sd_log_in_flight, 0);
93 init_waitqueue_head(&sdp->sd_log_flush_wait);
95 INIT_LIST_HEAD(&sdp->sd_revoke_list);
97 mutex_init(&sdp->sd_freeze_lock);
102 static void init_vfs(struct super_block *sb, unsigned noatime)
104 struct gfs2_sbd *sdp = sb->s_fs_info;
106 sb->s_magic = GFS2_MAGIC;
107 sb->s_op = &gfs2_super_ops;
108 sb->s_export_op = &gfs2_export_ops;
110 sb->s_maxbytes = MAX_LFS_FILESIZE;
112 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
113 set_bit(noatime, &sdp->sd_flags);
115 /* Don't let the VFS update atimes. GFS2 handles this itself. */
116 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
119 static int init_names(struct gfs2_sbd *sdp, int silent)
124 proto = sdp->sd_args.ar_lockproto;
125 table = sdp->sd_args.ar_locktable;
127 /* Try to autodetect */
129 if (!proto[0] || !table[0]) {
130 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
134 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
139 proto = sdp->sd_sb.sb_lockproto;
141 table = sdp->sd_sb.sb_locktable;
145 table = sdp->sd_vfs->s_id;
147 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
148 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
150 table = sdp->sd_table_name;
151 while ((table = strchr(table, '/')))
158 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
161 struct task_struct *p;
167 for (sdp->sd_glockd_num = 0;
168 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
169 sdp->sd_glockd_num++) {
170 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
173 fs_err(sdp, "can't start glockd thread: %d\n", error);
176 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
179 error = gfs2_glock_nq_num(sdp,
180 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
181 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
184 fs_err(sdp, "can't acquire mount glock: %d\n", error);
188 error = gfs2_glock_nq_num(sdp,
189 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
191 LM_FLAG_NOEXP | GL_EXACT,
194 fs_err(sdp, "can't acquire live glock: %d\n", error);
198 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
199 CREATE, &sdp->sd_rename_gl);
201 fs_err(sdp, "can't create rename glock: %d\n", error);
205 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
206 CREATE, &sdp->sd_trans_gl);
208 fs_err(sdp, "can't create transaction glock: %d\n", error);
211 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
216 gfs2_glock_put(sdp->sd_trans_gl);
218 gfs2_glock_put(sdp->sd_rename_gl);
220 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
222 gfs2_glock_dq_uninit(mount_gh);
224 while (sdp->sd_glockd_num--)
225 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
230 static inline struct inode *gfs2_lookup_root(struct super_block *sb,
233 return gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
236 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
238 struct super_block *sb = sdp->sd_vfs;
239 struct gfs2_holder sb_gh;
252 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
253 LM_ST_SHARED, 0, &sb_gh);
255 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
259 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
261 fs_err(sdp, "can't read superblock: %d\n", error);
265 /* Set up the buffer cache and SB for real */
266 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
268 fs_err(sdp, "FS block size (%u) is too small for device "
270 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
273 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
275 fs_err(sdp, "FS block size (%u) is too big for machine "
277 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
280 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
282 /* Get the root inode */
283 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
284 if (sb->s_type == &gfs2meta_fs_type)
285 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
286 inode = gfs2_lookup_root(sb, no_addr);
288 error = PTR_ERR(inode);
289 fs_err(sdp, "can't read in root inode: %d\n", error);
293 sb->s_root = d_alloc_root(inode);
295 fs_err(sdp, "can't get root dentry\n");
299 sb->s_root->d_op = &gfs2_dops;
302 gfs2_glock_dq_uninit(&sb_gh);
306 static int init_journal(struct gfs2_sbd *sdp, int undo)
308 struct gfs2_holder ji_gh;
309 struct task_struct *p;
310 struct gfs2_inode *ip;
319 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
320 if (IS_ERR(sdp->sd_jindex)) {
321 fs_err(sdp, "can't lookup journal index: %d\n", error);
322 return PTR_ERR(sdp->sd_jindex);
324 ip = GFS2_I(sdp->sd_jindex);
325 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
327 /* Load in the journal index special file */
329 error = gfs2_jindex_hold(sdp, &ji_gh);
331 fs_err(sdp, "can't read journal index: %d\n", error);
336 if (!gfs2_jindex_size(sdp)) {
337 fs_err(sdp, "no journals!\n");
341 if (sdp->sd_args.ar_spectator) {
342 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
343 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
345 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
346 fs_err(sdp, "can't mount journal #%u\n",
347 sdp->sd_lockstruct.ls_jid);
348 fs_err(sdp, "there are only %u journals (0 - %u)\n",
349 gfs2_jindex_size(sdp),
350 gfs2_jindex_size(sdp) - 1);
353 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
355 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
357 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
358 &sdp->sd_journal_gh);
360 fs_err(sdp, "can't acquire journal glock: %d\n", error);
364 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
365 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
366 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
369 fs_err(sdp, "can't acquire journal inode glock: %d\n",
371 goto fail_journal_gh;
374 error = gfs2_jdesc_check(sdp->sd_jdesc);
376 fs_err(sdp, "my journal (%u) is bad: %d\n",
377 sdp->sd_jdesc->jd_jid, error);
380 sdp->sd_log_blks_free = sdp->sd_jdesc->jd_blocks;
383 if (sdp->sd_lockstruct.ls_first) {
385 for (x = 0; x < sdp->sd_journals; x++) {
386 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
388 fs_err(sdp, "error recovering journal %u: %d\n",
394 gfs2_lm_others_may_mount(sdp);
395 } else if (!sdp->sd_args.ar_spectator) {
396 error = gfs2_recover_journal(sdp->sd_jdesc);
398 fs_err(sdp, "error recovering my journal: %d\n", error);
403 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
404 gfs2_glock_dq_uninit(&ji_gh);
407 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
410 fs_err(sdp, "can't start recoverd thread: %d\n", error);
413 sdp->sd_recoverd_process = p;
418 kthread_stop(sdp->sd_recoverd_process);
420 if (!sdp->sd_args.ar_spectator)
421 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
423 if (!sdp->sd_args.ar_spectator)
424 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
426 gfs2_jindex_free(sdp);
428 gfs2_glock_dq_uninit(&ji_gh);
430 iput(sdp->sd_jindex);
435 static int init_inodes(struct gfs2_sbd *sdp, int undo)
438 struct gfs2_inode *ip;
444 inode = gfs2_lookup_root(sdp->sd_vfs, sdp->sd_sb.sb_master_dir.no_addr);
446 error = PTR_ERR(inode);
447 fs_err(sdp, "can't read in master directory: %d\n", error);
450 sdp->sd_master_dir = inode;
452 error = init_journal(sdp, undo);
456 /* Read in the master inode number inode */
457 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
458 if (IS_ERR(sdp->sd_inum_inode)) {
459 error = PTR_ERR(sdp->sd_inum_inode);
460 fs_err(sdp, "can't read in inum inode: %d\n", error);
465 /* Read in the master statfs inode */
466 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
467 if (IS_ERR(sdp->sd_statfs_inode)) {
468 error = PTR_ERR(sdp->sd_statfs_inode);
469 fs_err(sdp, "can't read in statfs inode: %d\n", error);
473 /* Read in the resource index inode */
474 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
475 if (IS_ERR(sdp->sd_rindex)) {
476 error = PTR_ERR(sdp->sd_rindex);
477 fs_err(sdp, "can't get resource index inode: %d\n", error);
480 ip = GFS2_I(sdp->sd_rindex);
481 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
482 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
484 /* Read in the quota inode */
485 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
486 if (IS_ERR(sdp->sd_quota_inode)) {
487 error = PTR_ERR(sdp->sd_quota_inode);
488 fs_err(sdp, "can't get quota file inode: %d\n", error);
494 iput(sdp->sd_quota_inode);
496 gfs2_clear_rgrpd(sdp);
497 iput(sdp->sd_rindex);
499 iput(sdp->sd_statfs_inode);
501 iput(sdp->sd_inum_inode);
503 init_journal(sdp, UNDO);
505 iput(sdp->sd_master_dir);
510 static int init_per_node(struct gfs2_sbd *sdp, int undo)
512 struct inode *pn = NULL;
515 struct gfs2_inode *ip;
517 if (sdp->sd_args.ar_spectator)
523 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
526 fs_err(sdp, "can't find per_node directory: %d\n", error);
530 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
531 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
532 if (IS_ERR(sdp->sd_ir_inode)) {
533 error = PTR_ERR(sdp->sd_ir_inode);
534 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
538 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
539 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
540 if (IS_ERR(sdp->sd_sc_inode)) {
541 error = PTR_ERR(sdp->sd_sc_inode);
542 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
546 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
547 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
548 if (IS_ERR(sdp->sd_qc_inode)) {
549 error = PTR_ERR(sdp->sd_qc_inode);
550 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
557 ip = GFS2_I(sdp->sd_ir_inode);
558 error = gfs2_glock_nq_init(ip->i_gl,
562 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
566 ip = GFS2_I(sdp->sd_sc_inode);
567 error = gfs2_glock_nq_init(ip->i_gl,
571 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
575 ip = GFS2_I(sdp->sd_qc_inode);
576 error = gfs2_glock_nq_init(ip->i_gl,
580 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
587 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
589 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
591 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
593 iput(sdp->sd_qc_inode);
595 iput(sdp->sd_sc_inode);
597 iput(sdp->sd_ir_inode);
604 static int init_threads(struct gfs2_sbd *sdp, int undo)
606 struct task_struct *p;
612 sdp->sd_log_flush_time = jiffies;
613 sdp->sd_jindex_refresh_time = jiffies;
615 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
618 fs_err(sdp, "can't start logd thread: %d\n", error);
621 sdp->sd_logd_process = p;
623 sdp->sd_statfs_sync_time = jiffies;
624 sdp->sd_quota_sync_time = jiffies;
626 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
629 fs_err(sdp, "can't start quotad thread: %d\n", error);
632 sdp->sd_quotad_process = p;
638 kthread_stop(sdp->sd_quotad_process);
640 kthread_stop(sdp->sd_logd_process);
645 * fill_super - Read in superblock
646 * @sb: The VFS superblock
647 * @data: Mount options
648 * @silent: Don't complain if it's not a GFS2 filesystem
653 static int fill_super(struct super_block *sb, void *data, int silent)
655 struct gfs2_sbd *sdp;
656 struct gfs2_holder mount_gh;
661 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
665 error = gfs2_mount_args(sdp, (char *)data, 0);
667 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
671 init_vfs(sb, SDF_NOATIME);
673 /* Set up the buffer cache and fill in some fake block size values
674 to allow us to read-in the on-disk superblock. */
675 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
676 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
677 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
678 GFS2_BASIC_BLOCK_SHIFT;
679 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
681 error = init_names(sdp, silent);
685 gfs2_create_debugfs_file(sdp);
687 error = gfs2_sys_fs_add(sdp);
691 error = gfs2_lm_mount(sdp, silent);
695 error = init_locking(sdp, &mount_gh, DO);
699 error = init_sb(sdp, silent, DO);
703 error = init_inodes(sdp, DO);
707 error = init_per_node(sdp, DO);
711 error = gfs2_statfs_init(sdp);
713 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
717 error = init_threads(sdp, DO);
721 if (!(sb->s_flags & MS_RDONLY)) {
722 error = gfs2_make_fs_rw(sdp);
724 fs_err(sdp, "can't make FS RW: %d\n", error);
729 gfs2_glock_dq_uninit(&mount_gh);
734 init_threads(sdp, UNDO);
736 init_per_node(sdp, UNDO);
738 init_inodes(sdp, UNDO);
740 init_sb(sdp, 0, UNDO);
742 init_locking(sdp, &mount_gh, UNDO);
744 gfs2_gl_hash_clear(sdp, WAIT);
745 gfs2_lm_unmount(sdp);
746 while (invalidate_inodes(sb))
749 gfs2_sys_fs_del(sdp);
751 gfs2_delete_debugfs_file(sdp);
753 sb->s_fs_info = NULL;
757 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
758 const char *dev_name, void *data, struct vfsmount *mnt)
760 struct super_block *sb;
761 struct gfs2_sbd *sdp;
762 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
767 sdp->sd_gfs2mnt = mnt;
772 static int fill_super_meta(struct super_block *sb, struct super_block *new,
773 void *data, int silent)
775 struct gfs2_sbd *sdp = sb->s_fs_info;
779 new->s_fs_info = sdp;
780 sdp->sd_vfs_meta = sb;
782 init_vfs(new, SDF_NOATIME);
784 /* Get the master inode */
785 inode = igrab(sdp->sd_master_dir);
787 new->s_root = d_alloc_root(inode);
789 fs_err(sdp, "can't get root dentry\n");
793 new->s_root->d_op = &gfs2_dops;
798 static int set_bdev_super(struct super_block *s, void *data)
801 s->s_dev = s->s_bdev->bd_dev;
805 static int test_bdev_super(struct super_block *s, void *data)
807 return s->s_bdev == data;
810 static struct super_block* get_gfs2_sb(const char *dev_name)
814 struct file_system_type *fstype;
815 struct super_block *sb = NULL, *s;
818 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
820 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
824 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
826 fstype = get_fs_type("gfs2");
827 list_for_each_entry(s, &fstype->fs_supers, s_instances) {
828 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
829 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
835 printk(KERN_WARNING "GFS2: Unrecognized block device or "
836 "mount point %s\n", dev_name);
844 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
845 const char *dev_name, void *data, struct vfsmount *mnt)
848 struct super_block *sb = NULL, *new;
849 struct gfs2_sbd *sdp;
851 sb = get_gfs2_sb(dev_name);
853 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
858 if (sdp->sd_vfs_meta) {
859 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
863 down(&sb->s_bdev->bd_mount_sem);
864 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
865 up(&sb->s_bdev->bd_mount_sem);
867 error = PTR_ERR(new);
870 module_put(fs_type->owner);
871 new->s_flags = flags;
872 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
873 sb_set_blocksize(new, sb->s_blocksize);
874 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
876 up_write(&new->s_umount);
877 deactivate_super(new);
881 new->s_flags |= MS_ACTIVE;
883 /* Grab a reference to the gfs2 mount point */
884 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
885 return simple_set_mnt(mnt, new);
890 static void gfs2_kill_sb(struct super_block *sb)
893 gfs2_delete_debugfs_file(sb->s_fs_info);
894 gfs2_meta_syncfs(sb->s_fs_info);
896 kill_block_super(sb);
899 static void gfs2_kill_sb_meta(struct super_block *sb)
901 struct gfs2_sbd *sdp = sb->s_fs_info;
902 generic_shutdown_super(sb);
903 sdp->sd_vfs_meta = NULL;
904 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
907 struct file_system_type gfs2_fs_type = {
909 .fs_flags = FS_REQUIRES_DEV,
910 .get_sb = gfs2_get_sb,
911 .kill_sb = gfs2_kill_sb,
912 .owner = THIS_MODULE,
915 struct file_system_type gfs2meta_fs_type = {
917 .fs_flags = FS_REQUIRES_DEV,
918 .get_sb = gfs2_get_sb_meta,
919 .kill_sb = gfs2_kill_sb_meta,
920 .owner = THIS_MODULE,