2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2007 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>
31 #include "ops_fstype.h"
32 #include "ops_dentry.h"
33 #include "ops_super.h"
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);
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_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);
84 INIT_LIST_HEAD(&sdp->sd_log_le_ordered);
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 atomic_set(&sdp->sd_log_in_flight, 0);
92 init_waitqueue_head(&sdp->sd_log_flush_wait);
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;
109 sb->s_maxbytes = MAX_LFS_FILESIZE;
111 if (sb->s_flags & (MS_NOATIME | MS_NODIRATIME))
112 set_bit(noatime, &sdp->sd_flags);
114 /* Don't let the VFS update atimes. GFS2 handles this itself. */
115 sb->s_flags |= MS_NOATIME | MS_NODIRATIME;
118 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]) {
129 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift);
133 error = gfs2_check_sb(sdp, &sdp->sd_sb, silent);
138 proto = sdp->sd_sb.sb_lockproto;
140 table = sdp->sd_sb.sb_locktable;
144 table = sdp->sd_vfs->s_id;
146 snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto);
147 snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table);
149 table = sdp->sd_table_name;
150 while ((table = strchr(table, '/')))
157 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
160 struct task_struct *p;
166 for (sdp->sd_glockd_num = 0;
167 sdp->sd_glockd_num < sdp->sd_args.ar_num_glockd;
168 sdp->sd_glockd_num++) {
169 p = kthread_run(gfs2_glockd, sdp, "gfs2_glockd");
172 fs_err(sdp, "can't start glockd thread: %d\n", error);
175 sdp->sd_glockd_process[sdp->sd_glockd_num] = p;
178 error = gfs2_glock_nq_num(sdp,
179 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
180 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP | GL_NOCACHE,
183 fs_err(sdp, "can't acquire mount glock: %d\n", error);
187 error = gfs2_glock_nq_num(sdp,
188 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
190 LM_FLAG_NOEXP | GL_EXACT,
193 fs_err(sdp, "can't acquire live glock: %d\n", error);
197 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
198 CREATE, &sdp->sd_rename_gl);
200 fs_err(sdp, "can't create rename glock: %d\n", error);
204 error = gfs2_glock_get(sdp, GFS2_TRANS_LOCK, &gfs2_trans_glops,
205 CREATE, &sdp->sd_trans_gl);
207 fs_err(sdp, "can't create transaction glock: %d\n", error);
210 set_bit(GLF_STICKY, &sdp->sd_trans_gl->gl_flags);
215 gfs2_glock_put(sdp->sd_trans_gl);
217 gfs2_glock_put(sdp->sd_rename_gl);
219 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
221 gfs2_glock_dq_uninit(mount_gh);
223 while (sdp->sd_glockd_num--)
224 kthread_stop(sdp->sd_glockd_process[sdp->sd_glockd_num]);
229 static inline struct inode *gfs2_lookup_root(struct super_block *sb,
232 return gfs2_inode_lookup(sb, DT_DIR, no_addr, 0, 0);
235 static int init_sb(struct gfs2_sbd *sdp, int silent, int undo)
237 struct super_block *sb = sdp->sd_vfs;
238 struct gfs2_holder sb_gh;
251 error = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
252 LM_ST_SHARED, 0, &sb_gh);
254 fs_err(sdp, "can't acquire superblock glock: %d\n", error);
258 error = gfs2_read_sb(sdp, sb_gh.gh_gl, silent);
260 fs_err(sdp, "can't read superblock: %d\n", error);
264 /* Set up the buffer cache and SB for real */
265 if (sdp->sd_sb.sb_bsize < bdev_hardsect_size(sb->s_bdev)) {
267 fs_err(sdp, "FS block size (%u) is too small for device "
269 sdp->sd_sb.sb_bsize, bdev_hardsect_size(sb->s_bdev));
272 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
274 fs_err(sdp, "FS block size (%u) is too big for machine "
276 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
279 sb_set_blocksize(sb, sdp->sd_sb.sb_bsize);
281 /* Get the root inode */
282 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
283 if (sb->s_type == &gfs2meta_fs_type)
284 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
285 inode = gfs2_lookup_root(sb, no_addr);
287 error = PTR_ERR(inode);
288 fs_err(sdp, "can't read in root inode: %d\n", error);
292 sb->s_root = d_alloc_root(inode);
294 fs_err(sdp, "can't get root dentry\n");
298 sb->s_root->d_op = &gfs2_dops;
301 gfs2_glock_dq_uninit(&sb_gh);
306 * map_journal_extents - create a reusable "extent" mapping from all logical
307 * blocks to all physical blocks for the given journal. This will save
308 * us time when writing journal blocks. Most journals will have only one
309 * extent that maps all their logical blocks. That's because gfs2.mkfs
310 * arranges the journal blocks sequentially to maximize performance.
311 * So the extent would map the first block for the entire file length.
312 * However, gfs2_jadd can happen while file activity is happening, so
313 * those journals may not be sequential. Less likely is the case where
314 * the users created their own journals by mounting the metafs and
315 * laying it out. But it's still possible. These journals might have
318 * TODO: This should be done in bigger chunks rather than one block at a time,
319 * but since it's only done at mount time, I'm not worried about the
322 static int map_journal_extents(struct gfs2_sbd *sdp)
324 struct gfs2_jdesc *jd = sdp->sd_jdesc;
326 u64 db, prev_db; /* logical block, disk block, prev disk block */
327 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
328 struct gfs2_journal_extent *jext = NULL;
329 struct buffer_head bh;
334 for (lb = 0; lb < ip->i_di.di_size >> sdp->sd_sb.sb_bsize_shift; lb++) {
337 bh.b_size = 1 << ip->i_inode.i_blkbits;
338 rc = gfs2_block_map(jd->jd_inode, lb, &bh, 0);
341 printk(KERN_INFO "GFS2 journal mapping error %d: lb="
342 "%u db=%llu\n", rc, lb, (unsigned long long)db);
345 if (!prev_db || db != prev_db + 1) {
346 jext = kzalloc(sizeof(struct gfs2_journal_extent),
349 printk(KERN_INFO "GFS2 error: out of memory "
350 "mapping journal extents.\n");
357 list_add_tail(&jext->extent_list, &jd->extent_list);
366 static int init_journal(struct gfs2_sbd *sdp, int undo)
368 struct gfs2_holder ji_gh;
369 struct task_struct *p;
370 struct gfs2_inode *ip;
379 sdp->sd_jindex = gfs2_lookup_simple(sdp->sd_master_dir, "jindex");
380 if (IS_ERR(sdp->sd_jindex)) {
381 fs_err(sdp, "can't lookup journal index: %d\n", error);
382 return PTR_ERR(sdp->sd_jindex);
384 ip = GFS2_I(sdp->sd_jindex);
385 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
387 /* Load in the journal index special file */
389 error = gfs2_jindex_hold(sdp, &ji_gh);
391 fs_err(sdp, "can't read journal index: %d\n", error);
396 if (!gfs2_jindex_size(sdp)) {
397 fs_err(sdp, "no journals!\n");
401 if (sdp->sd_args.ar_spectator) {
402 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
403 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
405 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
406 fs_err(sdp, "can't mount journal #%u\n",
407 sdp->sd_lockstruct.ls_jid);
408 fs_err(sdp, "there are only %u journals (0 - %u)\n",
409 gfs2_jindex_size(sdp),
410 gfs2_jindex_size(sdp) - 1);
413 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
415 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
417 LM_ST_EXCLUSIVE, LM_FLAG_NOEXP,
418 &sdp->sd_journal_gh);
420 fs_err(sdp, "can't acquire journal glock: %d\n", error);
424 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
425 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
426 LM_FLAG_NOEXP | GL_EXACT | GL_NOCACHE,
429 fs_err(sdp, "can't acquire journal inode glock: %d\n",
431 goto fail_journal_gh;
434 error = gfs2_jdesc_check(sdp->sd_jdesc);
436 fs_err(sdp, "my journal (%u) is bad: %d\n",
437 sdp->sd_jdesc->jd_jid, error);
440 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
442 /* Map the extents for this journal's blocks */
443 map_journal_extents(sdp);
446 if (sdp->sd_lockstruct.ls_first) {
448 for (x = 0; x < sdp->sd_journals; x++) {
449 error = gfs2_recover_journal(gfs2_jdesc_find(sdp, x));
451 fs_err(sdp, "error recovering journal %u: %d\n",
457 gfs2_lm_others_may_mount(sdp);
458 } else if (!sdp->sd_args.ar_spectator) {
459 error = gfs2_recover_journal(sdp->sd_jdesc);
461 fs_err(sdp, "error recovering my journal: %d\n", error);
466 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
467 gfs2_glock_dq_uninit(&ji_gh);
470 p = kthread_run(gfs2_recoverd, sdp, "gfs2_recoverd");
473 fs_err(sdp, "can't start recoverd thread: %d\n", error);
476 sdp->sd_recoverd_process = p;
481 kthread_stop(sdp->sd_recoverd_process);
483 if (!sdp->sd_args.ar_spectator)
484 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
486 if (!sdp->sd_args.ar_spectator)
487 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
489 gfs2_jindex_free(sdp);
491 gfs2_glock_dq_uninit(&ji_gh);
493 iput(sdp->sd_jindex);
498 static int init_inodes(struct gfs2_sbd *sdp, int undo)
501 struct gfs2_inode *ip;
507 inode = gfs2_lookup_root(sdp->sd_vfs, sdp->sd_sb.sb_master_dir.no_addr);
509 error = PTR_ERR(inode);
510 fs_err(sdp, "can't read in master directory: %d\n", error);
513 sdp->sd_master_dir = inode;
515 error = init_journal(sdp, undo);
519 /* Read in the master inode number inode */
520 sdp->sd_inum_inode = gfs2_lookup_simple(sdp->sd_master_dir, "inum");
521 if (IS_ERR(sdp->sd_inum_inode)) {
522 error = PTR_ERR(sdp->sd_inum_inode);
523 fs_err(sdp, "can't read in inum inode: %d\n", error);
528 /* Read in the master statfs inode */
529 sdp->sd_statfs_inode = gfs2_lookup_simple(sdp->sd_master_dir, "statfs");
530 if (IS_ERR(sdp->sd_statfs_inode)) {
531 error = PTR_ERR(sdp->sd_statfs_inode);
532 fs_err(sdp, "can't read in statfs inode: %d\n", error);
536 /* Read in the resource index inode */
537 sdp->sd_rindex = gfs2_lookup_simple(sdp->sd_master_dir, "rindex");
538 if (IS_ERR(sdp->sd_rindex)) {
539 error = PTR_ERR(sdp->sd_rindex);
540 fs_err(sdp, "can't get resource index inode: %d\n", error);
543 ip = GFS2_I(sdp->sd_rindex);
544 set_bit(GLF_STICKY, &ip->i_gl->gl_flags);
545 sdp->sd_rindex_vn = ip->i_gl->gl_vn - 1;
547 /* Read in the quota inode */
548 sdp->sd_quota_inode = gfs2_lookup_simple(sdp->sd_master_dir, "quota");
549 if (IS_ERR(sdp->sd_quota_inode)) {
550 error = PTR_ERR(sdp->sd_quota_inode);
551 fs_err(sdp, "can't get quota file inode: %d\n", error);
557 iput(sdp->sd_quota_inode);
559 gfs2_clear_rgrpd(sdp);
560 iput(sdp->sd_rindex);
562 iput(sdp->sd_statfs_inode);
564 iput(sdp->sd_inum_inode);
566 init_journal(sdp, UNDO);
568 iput(sdp->sd_master_dir);
573 static int init_per_node(struct gfs2_sbd *sdp, int undo)
575 struct inode *pn = NULL;
578 struct gfs2_inode *ip;
580 if (sdp->sd_args.ar_spectator)
586 pn = gfs2_lookup_simple(sdp->sd_master_dir, "per_node");
589 fs_err(sdp, "can't find per_node directory: %d\n", error);
593 sprintf(buf, "inum_range%u", sdp->sd_jdesc->jd_jid);
594 sdp->sd_ir_inode = gfs2_lookup_simple(pn, buf);
595 if (IS_ERR(sdp->sd_ir_inode)) {
596 error = PTR_ERR(sdp->sd_ir_inode);
597 fs_err(sdp, "can't find local \"ir\" file: %d\n", error);
601 sprintf(buf, "statfs_change%u", sdp->sd_jdesc->jd_jid);
602 sdp->sd_sc_inode = gfs2_lookup_simple(pn, buf);
603 if (IS_ERR(sdp->sd_sc_inode)) {
604 error = PTR_ERR(sdp->sd_sc_inode);
605 fs_err(sdp, "can't find local \"sc\" file: %d\n", error);
609 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
610 sdp->sd_qc_inode = gfs2_lookup_simple(pn, buf);
611 if (IS_ERR(sdp->sd_qc_inode)) {
612 error = PTR_ERR(sdp->sd_qc_inode);
613 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
620 ip = GFS2_I(sdp->sd_ir_inode);
621 error = gfs2_glock_nq_init(ip->i_gl,
625 fs_err(sdp, "can't lock local \"ir\" file: %d\n", error);
629 ip = GFS2_I(sdp->sd_sc_inode);
630 error = gfs2_glock_nq_init(ip->i_gl,
634 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
638 ip = GFS2_I(sdp->sd_qc_inode);
639 error = gfs2_glock_nq_init(ip->i_gl,
643 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
650 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
652 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
654 gfs2_glock_dq_uninit(&sdp->sd_ir_gh);
656 iput(sdp->sd_qc_inode);
658 iput(sdp->sd_sc_inode);
660 iput(sdp->sd_ir_inode);
667 static int init_threads(struct gfs2_sbd *sdp, int undo)
669 struct task_struct *p;
675 sdp->sd_log_flush_time = jiffies;
676 sdp->sd_jindex_refresh_time = jiffies;
678 p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
681 fs_err(sdp, "can't start logd thread: %d\n", error);
684 sdp->sd_logd_process = p;
686 sdp->sd_statfs_sync_time = jiffies;
687 sdp->sd_quota_sync_time = jiffies;
689 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
692 fs_err(sdp, "can't start quotad thread: %d\n", error);
695 sdp->sd_quotad_process = p;
701 kthread_stop(sdp->sd_quotad_process);
703 kthread_stop(sdp->sd_logd_process);
708 * fill_super - Read in superblock
709 * @sb: The VFS superblock
710 * @data: Mount options
711 * @silent: Don't complain if it's not a GFS2 filesystem
716 static int fill_super(struct super_block *sb, void *data, int silent)
718 struct gfs2_sbd *sdp;
719 struct gfs2_holder mount_gh;
724 printk(KERN_WARNING "GFS2: can't alloc struct gfs2_sbd\n");
728 error = gfs2_mount_args(sdp, (char *)data, 0);
730 printk(KERN_WARNING "GFS2: can't parse mount arguments\n");
734 init_vfs(sb, SDF_NOATIME);
736 /* Set up the buffer cache and fill in some fake block size values
737 to allow us to read-in the on-disk superblock. */
738 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, GFS2_BASIC_BLOCK);
739 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
740 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift -
741 GFS2_BASIC_BLOCK_SHIFT;
742 sdp->sd_fsb2bb = 1 << sdp->sd_fsb2bb_shift;
744 error = init_names(sdp, silent);
748 gfs2_create_debugfs_file(sdp);
750 error = gfs2_sys_fs_add(sdp);
754 error = gfs2_lm_mount(sdp, silent);
758 error = init_locking(sdp, &mount_gh, DO);
762 error = init_sb(sdp, silent, DO);
766 error = init_inodes(sdp, DO);
770 error = init_per_node(sdp, DO);
774 error = gfs2_statfs_init(sdp);
776 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
780 error = init_threads(sdp, DO);
784 if (!(sb->s_flags & MS_RDONLY)) {
785 error = gfs2_make_fs_rw(sdp);
787 fs_err(sdp, "can't make FS RW: %d\n", error);
792 gfs2_glock_dq_uninit(&mount_gh);
797 init_threads(sdp, UNDO);
799 init_per_node(sdp, UNDO);
801 init_inodes(sdp, UNDO);
803 init_sb(sdp, 0, UNDO);
805 init_locking(sdp, &mount_gh, UNDO);
807 gfs2_gl_hash_clear(sdp, WAIT);
808 gfs2_lm_unmount(sdp);
809 while (invalidate_inodes(sb))
812 gfs2_sys_fs_del(sdp);
814 gfs2_delete_debugfs_file(sdp);
816 sb->s_fs_info = NULL;
820 static int gfs2_get_sb(struct file_system_type *fs_type, int flags,
821 const char *dev_name, void *data, struct vfsmount *mnt)
823 struct super_block *sb;
824 struct gfs2_sbd *sdp;
825 int error = get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt);
830 sdp->sd_gfs2mnt = mnt;
835 static int fill_super_meta(struct super_block *sb, struct super_block *new,
836 void *data, int silent)
838 struct gfs2_sbd *sdp = sb->s_fs_info;
842 new->s_fs_info = sdp;
843 sdp->sd_vfs_meta = sb;
845 init_vfs(new, SDF_NOATIME);
847 /* Get the master inode */
848 inode = igrab(sdp->sd_master_dir);
850 new->s_root = d_alloc_root(inode);
852 fs_err(sdp, "can't get root dentry\n");
856 new->s_root->d_op = &gfs2_dops;
861 static int set_bdev_super(struct super_block *s, void *data)
864 s->s_dev = s->s_bdev->bd_dev;
868 static int test_bdev_super(struct super_block *s, void *data)
870 return s->s_bdev == data;
873 static struct super_block* get_gfs2_sb(const char *dev_name)
877 struct file_system_type *fstype;
878 struct super_block *sb = NULL, *s;
881 error = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
883 printk(KERN_WARNING "GFS2: path_lookup on %s returned error\n",
887 error = vfs_getattr(nd.mnt, nd.dentry, &stat);
889 fstype = get_fs_type("gfs2");
890 list_for_each_entry(s, &fstype->fs_supers, s_instances) {
891 if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) ||
892 (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) {
898 printk(KERN_WARNING "GFS2: Unrecognized block device or "
899 "mount point %s\n", dev_name);
907 static int gfs2_get_sb_meta(struct file_system_type *fs_type, int flags,
908 const char *dev_name, void *data, struct vfsmount *mnt)
911 struct super_block *sb = NULL, *new;
912 struct gfs2_sbd *sdp;
914 sb = get_gfs2_sb(dev_name);
916 printk(KERN_WARNING "GFS2: gfs2 mount does not exist\n");
921 if (sdp->sd_vfs_meta) {
922 printk(KERN_WARNING "GFS2: gfs2meta mount already exists\n");
926 down(&sb->s_bdev->bd_mount_sem);
927 new = sget(fs_type, test_bdev_super, set_bdev_super, sb->s_bdev);
928 up(&sb->s_bdev->bd_mount_sem);
930 error = PTR_ERR(new);
933 module_put(fs_type->owner);
934 new->s_flags = flags;
935 strlcpy(new->s_id, sb->s_id, sizeof(new->s_id));
936 sb_set_blocksize(new, sb->s_blocksize);
937 error = fill_super_meta(sb, new, data, flags & MS_SILENT ? 1 : 0);
939 up_write(&new->s_umount);
940 deactivate_super(new);
944 new->s_flags |= MS_ACTIVE;
946 /* Grab a reference to the gfs2 mount point */
947 atomic_inc(&sdp->sd_gfs2mnt->mnt_count);
948 return simple_set_mnt(mnt, new);
953 static void gfs2_kill_sb(struct super_block *sb)
956 gfs2_delete_debugfs_file(sb->s_fs_info);
957 gfs2_meta_syncfs(sb->s_fs_info);
959 kill_block_super(sb);
962 static void gfs2_kill_sb_meta(struct super_block *sb)
964 struct gfs2_sbd *sdp = sb->s_fs_info;
965 generic_shutdown_super(sb);
966 sdp->sd_vfs_meta = NULL;
967 atomic_dec(&sdp->sd_gfs2mnt->mnt_count);
970 struct file_system_type gfs2_fs_type = {
972 .fs_flags = FS_REQUIRES_DEV,
973 .get_sb = gfs2_get_sb,
974 .kill_sb = gfs2_kill_sb,
975 .owner = THIS_MODULE,
978 struct file_system_type gfs2meta_fs_type = {
980 .fs_flags = FS_REQUIRES_DEV,
981 .get_sb = gfs2_get_sb_meta,
982 .kill_sb = gfs2_kill_sb_meta,
983 .owner = THIS_MODULE,