1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
4 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
5 */
6
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
9 #include <linux/sched.h>
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/completion.h>
13 #include <linux/buffer_head.h>
14 #include <linux/blkdev.h>
15 #include <linux/kthread.h>
16 #include <linux/export.h>
17 #include <linux/namei.h>
18 #include <linux/mount.h>
19 #include <linux/gfs2_ondisk.h>
20 #include <linux/quotaops.h>
21 #include <linux/lockdep.h>
22 #include <linux/module.h>
23 #include <linux/backing-dev.h>
24 #include <linux/fs_parser.h>
25
26 #include "gfs2.h"
27 #include "incore.h"
28 #include "bmap.h"
29 #include "glock.h"
30 #include "glops.h"
31 #include "inode.h"
32 #include "recovery.h"
33 #include "rgrp.h"
34 #include "super.h"
35 #include "sys.h"
36 #include "util.h"
37 #include "log.h"
38 #include "quota.h"
39 #include "dir.h"
40 #include "meta_io.h"
41 #include "trace_gfs2.h"
42 #include "lops.h"
43
44 #define DO 0
45 #define UNDO 1
46
47 /**
48 * gfs2_tune_init - Fill a gfs2_tune structure with default values
49 * @gt: tune
50 *
51 */
52
gfs2_tune_init(struct gfs2_tune * gt)53 static void gfs2_tune_init(struct gfs2_tune *gt)
54 {
55 spin_lock_init(>->gt_spin);
56
57 gt->gt_quota_warn_period = 10;
58 gt->gt_quota_scale_num = 1;
59 gt->gt_quota_scale_den = 1;
60 gt->gt_new_files_jdata = 0;
61 gt->gt_max_readahead = BIT(18);
62 gt->gt_complain_secs = 10;
63 }
64
free_sbd(struct gfs2_sbd * sdp)65 void free_sbd(struct gfs2_sbd *sdp)
66 {
67 struct super_block *sb = sdp->sd_vfs;
68
69 free_percpu(sdp->sd_lkstats);
70 sb->s_fs_info = NULL;
71 kfree(sdp);
72 }
73
init_sbd(struct super_block * sb)74 static struct gfs2_sbd *init_sbd(struct super_block *sb)
75 {
76 struct gfs2_sbd *sdp;
77
78 sdp = kzalloc(sizeof(struct gfs2_sbd), GFP_KERNEL);
79 if (!sdp)
80 return NULL;
81
82 sdp->sd_vfs = sb;
83 sdp->sd_lkstats = alloc_percpu(struct gfs2_pcpu_lkstats);
84 if (!sdp->sd_lkstats)
85 goto fail;
86 sb->s_fs_info = sdp;
87
88 set_bit(SDF_NOJOURNALID, &sdp->sd_flags);
89 gfs2_tune_init(&sdp->sd_tune);
90
91 init_waitqueue_head(&sdp->sd_kill_wait);
92 init_waitqueue_head(&sdp->sd_async_glock_wait);
93 atomic_set(&sdp->sd_glock_disposal, 0);
94 init_completion(&sdp->sd_locking_init);
95 init_completion(&sdp->sd_wdack);
96 spin_lock_init(&sdp->sd_statfs_spin);
97
98 spin_lock_init(&sdp->sd_rindex_spin);
99 sdp->sd_rindex_tree.rb_node = NULL;
100
101 INIT_LIST_HEAD(&sdp->sd_jindex_list);
102 spin_lock_init(&sdp->sd_jindex_spin);
103 mutex_init(&sdp->sd_jindex_mutex);
104 init_completion(&sdp->sd_journal_ready);
105
106 INIT_LIST_HEAD(&sdp->sd_quota_list);
107 mutex_init(&sdp->sd_quota_sync_mutex);
108 init_waitqueue_head(&sdp->sd_quota_wait);
109 spin_lock_init(&sdp->sd_bitmap_lock);
110
111 INIT_LIST_HEAD(&sdp->sd_sc_inodes_list);
112
113 spin_lock_init(&sdp->sd_log_lock);
114 atomic_set(&sdp->sd_log_pinned, 0);
115 INIT_LIST_HEAD(&sdp->sd_log_revokes);
116 INIT_LIST_HEAD(&sdp->sd_log_ordered);
117 spin_lock_init(&sdp->sd_ordered_lock);
118
119 init_waitqueue_head(&sdp->sd_log_waitq);
120 init_waitqueue_head(&sdp->sd_logd_waitq);
121 spin_lock_init(&sdp->sd_ail_lock);
122 INIT_LIST_HEAD(&sdp->sd_ail1_list);
123 INIT_LIST_HEAD(&sdp->sd_ail2_list);
124
125 init_rwsem(&sdp->sd_log_flush_lock);
126 atomic_set(&sdp->sd_log_in_flight, 0);
127 init_waitqueue_head(&sdp->sd_log_flush_wait);
128 mutex_init(&sdp->sd_freeze_mutex);
129 INIT_LIST_HEAD(&sdp->sd_dead_glocks);
130
131 return sdp;
132
133 fail:
134 free_sbd(sdp);
135 return NULL;
136 }
137
138 /**
139 * gfs2_check_sb - Check superblock
140 * @sdp: the filesystem
141 * @silent: Don't print a message if the check fails
142 *
143 * Checks the version code of the FS is one that we understand how to
144 * read and that the sizes of the various on-disk structures have not
145 * changed.
146 */
147
gfs2_check_sb(struct gfs2_sbd * sdp,int silent)148 static int gfs2_check_sb(struct gfs2_sbd *sdp, int silent)
149 {
150 struct gfs2_sb_host *sb = &sdp->sd_sb;
151
152 if (sb->sb_magic != GFS2_MAGIC ||
153 sb->sb_type != GFS2_METATYPE_SB) {
154 if (!silent)
155 pr_warn("not a GFS2 filesystem\n");
156 return -EINVAL;
157 }
158
159 if (sb->sb_fs_format < GFS2_FS_FORMAT_MIN ||
160 sb->sb_fs_format > GFS2_FS_FORMAT_MAX ||
161 sb->sb_multihost_format != GFS2_FORMAT_MULTI) {
162 fs_warn(sdp, "Unknown on-disk format, unable to mount\n");
163 return -EINVAL;
164 }
165
166 if (sb->sb_bsize < SECTOR_SIZE || sb->sb_bsize > PAGE_SIZE ||
167 (sb->sb_bsize & (sb->sb_bsize - 1))) {
168 pr_warn("Invalid block size\n");
169 return -EINVAL;
170 }
171 if (sb->sb_bsize_shift != ffs(sb->sb_bsize) - 1) {
172 pr_warn("Invalid block size shift\n");
173 return -EINVAL;
174 }
175 return 0;
176 }
177
gfs2_sb_in(struct gfs2_sbd * sdp,const struct gfs2_sb * str)178 static void gfs2_sb_in(struct gfs2_sbd *sdp, const struct gfs2_sb *str)
179 {
180 struct gfs2_sb_host *sb = &sdp->sd_sb;
181 struct super_block *s = sdp->sd_vfs;
182
183 sb->sb_magic = be32_to_cpu(str->sb_header.mh_magic);
184 sb->sb_type = be32_to_cpu(str->sb_header.mh_type);
185 sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
186 sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
187 sb->sb_bsize = be32_to_cpu(str->sb_bsize);
188 sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
189 sb->sb_master_dir.no_addr = be64_to_cpu(str->sb_master_dir.no_addr);
190 sb->sb_master_dir.no_formal_ino = be64_to_cpu(str->sb_master_dir.no_formal_ino);
191 sb->sb_root_dir.no_addr = be64_to_cpu(str->sb_root_dir.no_addr);
192 sb->sb_root_dir.no_formal_ino = be64_to_cpu(str->sb_root_dir.no_formal_ino);
193
194 memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
195 memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
196 super_set_uuid(s, str->sb_uuid, 16);
197 }
198
199 /**
200 * gfs2_read_super - Read the gfs2 super block from disk
201 * @sdp: The GFS2 super block
202 * @sector: The location of the super block
203 * @silent: Don't print a message if the check fails
204 *
205 * This uses the bio functions to read the super block from disk
206 * because we want to be 100% sure that we never read cached data.
207 * A super block is read twice only during each GFS2 mount and is
208 * never written to by the filesystem. The first time its read no
209 * locks are held, and the only details which are looked at are those
210 * relating to the locking protocol. Once locking is up and working,
211 * the sb is read again under the lock to establish the location of
212 * the master directory (contains pointers to journals etc) and the
213 * root directory.
214 *
215 * Returns: 0 on success or error
216 */
217
gfs2_read_super(struct gfs2_sbd * sdp,sector_t sector,int silent)218 static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector, int silent)
219 {
220 struct gfs2_sb *sb;
221 int err;
222
223 sb = kmalloc(PAGE_SIZE, GFP_KERNEL);
224 if (unlikely(!sb))
225 return -ENOMEM;
226 err = bdev_rw_virt(sdp->sd_vfs->s_bdev,
227 sector << (sdp->sd_vfs->s_blocksize_bits - SECTOR_SHIFT),
228 sb, PAGE_SIZE, REQ_OP_READ | REQ_META);
229 if (err) {
230 pr_warn("error %d reading superblock\n", err);
231 kfree(sb);
232 return err;
233 }
234 gfs2_sb_in(sdp, sb);
235 kfree(sb);
236 return gfs2_check_sb(sdp, silent);
237 }
238
239 /**
240 * gfs2_read_sb - Read super block
241 * @sdp: The GFS2 superblock
242 * @silent: Don't print message if mount fails
243 *
244 */
245
gfs2_read_sb(struct gfs2_sbd * sdp,int silent)246 static int gfs2_read_sb(struct gfs2_sbd *sdp, int silent)
247 {
248 u32 hash_blocks, ind_blocks, leaf_blocks;
249 u32 tmp_blocks;
250 unsigned int x;
251 int error;
252
253 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift, silent);
254 if (error) {
255 if (!silent)
256 fs_err(sdp, "can't read superblock\n");
257 return error;
258 }
259
260 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift - SECTOR_SHIFT;
261 sdp->sd_fsb2bb = BIT(sdp->sd_fsb2bb_shift);
262 sdp->sd_diptrs = (sdp->sd_sb.sb_bsize -
263 sizeof(struct gfs2_dinode)) / sizeof(u64);
264 sdp->sd_inptrs = (sdp->sd_sb.sb_bsize -
265 sizeof(struct gfs2_meta_header)) / sizeof(u64);
266 sdp->sd_ldptrs = (sdp->sd_sb.sb_bsize -
267 sizeof(struct gfs2_log_descriptor)) / sizeof(u64);
268 sdp->sd_jbsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_meta_header);
269 sdp->sd_hash_bsize = sdp->sd_sb.sb_bsize / 2;
270 sdp->sd_hash_bsize_shift = sdp->sd_sb.sb_bsize_shift - 1;
271 sdp->sd_hash_ptrs = sdp->sd_hash_bsize / sizeof(u64);
272 sdp->sd_qc_per_block = (sdp->sd_sb.sb_bsize -
273 sizeof(struct gfs2_meta_header)) /
274 sizeof(struct gfs2_quota_change);
275 sdp->sd_blocks_per_bitmap = (sdp->sd_sb.sb_bsize -
276 sizeof(struct gfs2_meta_header))
277 * GFS2_NBBY; /* not the rgrp bitmap, subsequent bitmaps only */
278
279 /*
280 * We always keep at least one block reserved for revokes in
281 * transactions. This greatly simplifies allocating additional
282 * revoke blocks.
283 */
284 atomic_set(&sdp->sd_log_revokes_available, sdp->sd_ldptrs);
285
286 /* Compute maximum reservation required to add a entry to a directory */
287
288 hash_blocks = DIV_ROUND_UP(sizeof(u64) * BIT(GFS2_DIR_MAX_DEPTH),
289 sdp->sd_jbsize);
290
291 ind_blocks = 0;
292 for (tmp_blocks = hash_blocks; tmp_blocks > sdp->sd_diptrs;) {
293 tmp_blocks = DIV_ROUND_UP(tmp_blocks, sdp->sd_inptrs);
294 ind_blocks += tmp_blocks;
295 }
296
297 leaf_blocks = 2 + GFS2_DIR_MAX_DEPTH;
298
299 sdp->sd_max_dirres = hash_blocks + ind_blocks + leaf_blocks;
300
301 sdp->sd_heightsize[0] = sdp->sd_sb.sb_bsize -
302 sizeof(struct gfs2_dinode);
303 sdp->sd_heightsize[1] = sdp->sd_sb.sb_bsize * sdp->sd_diptrs;
304 for (x = 2;; x++) {
305 u64 space, d;
306 u32 m;
307
308 space = sdp->sd_heightsize[x - 1] * sdp->sd_inptrs;
309 d = space;
310 m = do_div(d, sdp->sd_inptrs);
311
312 if (d != sdp->sd_heightsize[x - 1] || m)
313 break;
314 sdp->sd_heightsize[x] = space;
315 }
316 sdp->sd_max_height = x;
317 sdp->sd_heightsize[x] = ~0;
318 gfs2_assert(sdp, sdp->sd_max_height <= GFS2_MAX_META_HEIGHT);
319
320 sdp->sd_max_dents_per_leaf = (sdp->sd_sb.sb_bsize -
321 sizeof(struct gfs2_leaf)) /
322 GFS2_MIN_DIRENT_SIZE;
323 return 0;
324 }
325
init_names(struct gfs2_sbd * sdp,int silent)326 static int init_names(struct gfs2_sbd *sdp, int silent)
327 {
328 char *proto, *table;
329 int error = 0;
330
331 proto = sdp->sd_args.ar_lockproto;
332 table = sdp->sd_args.ar_locktable;
333
334 /* Try to autodetect */
335
336 if (!proto[0] || !table[0]) {
337 error = gfs2_read_super(sdp, GFS2_SB_ADDR >> sdp->sd_fsb2bb_shift, silent);
338 if (error)
339 return error;
340
341 if (!proto[0])
342 proto = sdp->sd_sb.sb_lockproto;
343 if (!table[0])
344 table = sdp->sd_sb.sb_locktable;
345 }
346
347 if (!table[0])
348 table = sdp->sd_vfs->s_id;
349
350 BUILD_BUG_ON(GFS2_LOCKNAME_LEN > GFS2_FSNAME_LEN);
351
352 strscpy(sdp->sd_proto_name, proto, GFS2_LOCKNAME_LEN);
353 strscpy(sdp->sd_table_name, table, GFS2_LOCKNAME_LEN);
354
355 table = sdp->sd_table_name;
356 while ((table = strchr(table, '/')))
357 *table = '_';
358
359 return error;
360 }
361
init_locking(struct gfs2_sbd * sdp,struct gfs2_holder * mount_gh,int undo)362 static int init_locking(struct gfs2_sbd *sdp, struct gfs2_holder *mount_gh,
363 int undo)
364 {
365 int error = 0;
366
367 if (undo)
368 goto fail_trans;
369
370 error = gfs2_glock_nq_num(sdp,
371 GFS2_MOUNT_LOCK, &gfs2_nondisk_glops,
372 LM_ST_EXCLUSIVE,
373 LM_FLAG_NOEXP | GL_NOCACHE | GL_NOPID,
374 mount_gh);
375 if (error) {
376 fs_err(sdp, "can't acquire mount glock: %d\n", error);
377 goto fail;
378 }
379
380 error = gfs2_glock_nq_num(sdp,
381 GFS2_LIVE_LOCK, &gfs2_nondisk_glops,
382 LM_ST_SHARED,
383 LM_FLAG_NOEXP | GL_EXACT | GL_NOPID,
384 &sdp->sd_live_gh);
385 if (error) {
386 fs_err(sdp, "can't acquire live glock: %d\n", error);
387 goto fail_mount;
388 }
389
390 error = gfs2_glock_get(sdp, GFS2_RENAME_LOCK, &gfs2_nondisk_glops,
391 CREATE, &sdp->sd_rename_gl);
392 if (error) {
393 fs_err(sdp, "can't create rename glock: %d\n", error);
394 goto fail_live;
395 }
396
397 error = gfs2_glock_get(sdp, GFS2_FREEZE_LOCK, &gfs2_freeze_glops,
398 CREATE, &sdp->sd_freeze_gl);
399 if (error) {
400 fs_err(sdp, "can't create freeze glock: %d\n", error);
401 goto fail_rename;
402 }
403
404 return 0;
405
406 fail_trans:
407 gfs2_glock_put(sdp->sd_freeze_gl);
408 fail_rename:
409 gfs2_glock_put(sdp->sd_rename_gl);
410 fail_live:
411 gfs2_glock_dq_uninit(&sdp->sd_live_gh);
412 fail_mount:
413 gfs2_glock_dq_uninit(mount_gh);
414 fail:
415 return error;
416 }
417
gfs2_lookup_root(struct super_block * sb,struct dentry ** dptr,u64 no_addr,const char * name)418 static int gfs2_lookup_root(struct super_block *sb, struct dentry **dptr,
419 u64 no_addr, const char *name)
420 {
421 struct gfs2_sbd *sdp = sb->s_fs_info;
422 struct dentry *dentry;
423 struct inode *inode;
424
425 inode = gfs2_inode_lookup(sb, DT_DIR, no_addr, 0,
426 GFS2_BLKST_FREE /* ignore */);
427 if (IS_ERR(inode)) {
428 fs_err(sdp, "can't read in %s inode: %ld\n", name, PTR_ERR(inode));
429 return PTR_ERR(inode);
430 }
431 dentry = d_make_root(inode);
432 if (!dentry) {
433 fs_err(sdp, "can't alloc %s dentry\n", name);
434 return -ENOMEM;
435 }
436 *dptr = dentry;
437 return 0;
438 }
439
init_sb(struct gfs2_sbd * sdp,int silent)440 static int init_sb(struct gfs2_sbd *sdp, int silent)
441 {
442 struct super_block *sb = sdp->sd_vfs;
443 struct gfs2_holder sb_gh;
444 u64 no_addr;
445 int ret;
446
447 ret = gfs2_glock_nq_num(sdp, GFS2_SB_LOCK, &gfs2_meta_glops,
448 LM_ST_SHARED, 0, &sb_gh);
449 if (ret) {
450 fs_err(sdp, "can't acquire superblock glock: %d\n", ret);
451 return ret;
452 }
453
454 ret = gfs2_read_sb(sdp, silent);
455 if (ret) {
456 fs_err(sdp, "can't read superblock: %d\n", ret);
457 goto out;
458 }
459
460 switch(sdp->sd_sb.sb_fs_format) {
461 case GFS2_FS_FORMAT_MAX:
462 sb->s_xattr = gfs2_xattr_handlers_max;
463 break;
464
465 case GFS2_FS_FORMAT_MIN:
466 sb->s_xattr = gfs2_xattr_handlers_min;
467 break;
468
469 default:
470 BUG();
471 }
472
473 /* Set up the buffer cache and SB for real */
474 if (sdp->sd_sb.sb_bsize < bdev_logical_block_size(sb->s_bdev)) {
475 ret = -EINVAL;
476 fs_err(sdp, "FS block size (%u) is too small for device "
477 "block size (%u)\n",
478 sdp->sd_sb.sb_bsize, bdev_logical_block_size(sb->s_bdev));
479 goto out;
480 }
481 if (sdp->sd_sb.sb_bsize > PAGE_SIZE) {
482 ret = -EINVAL;
483 fs_err(sdp, "FS block size (%u) is too big for machine "
484 "page size (%u)\n",
485 sdp->sd_sb.sb_bsize, (unsigned int)PAGE_SIZE);
486 goto out;
487 }
488 ret = -EINVAL;
489 if (!sb_set_blocksize(sb, sdp->sd_sb.sb_bsize))
490 goto out;
491
492 /* Get the root inode */
493 no_addr = sdp->sd_sb.sb_root_dir.no_addr;
494 ret = gfs2_lookup_root(sb, &sdp->sd_root_dir, no_addr, "root");
495 if (ret)
496 goto out;
497
498 /* Get the master inode */
499 no_addr = sdp->sd_sb.sb_master_dir.no_addr;
500 ret = gfs2_lookup_root(sb, &sdp->sd_master_dir, no_addr, "master");
501 if (ret) {
502 dput(sdp->sd_root_dir);
503 goto out;
504 }
505 sb->s_root = dget(sdp->sd_args.ar_meta ? sdp->sd_master_dir : sdp->sd_root_dir);
506 out:
507 gfs2_glock_dq_uninit(&sb_gh);
508 return ret;
509 }
510
gfs2_others_may_mount(struct gfs2_sbd * sdp)511 static void gfs2_others_may_mount(struct gfs2_sbd *sdp)
512 {
513 char *message = "FIRSTMOUNT=Done";
514 char *envp[] = { message, NULL };
515
516 fs_info(sdp, "first mount done, others may mount\n");
517
518 if (sdp->sd_lockstruct.ls_ops->lm_first_done)
519 sdp->sd_lockstruct.ls_ops->lm_first_done(sdp);
520
521 kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp);
522 }
523
524 /**
525 * gfs2_jindex_hold - Grab a lock on the jindex
526 * @sdp: The GFS2 superblock
527 * @ji_gh: the holder for the jindex glock
528 *
529 * Returns: errno
530 */
531
gfs2_jindex_hold(struct gfs2_sbd * sdp,struct gfs2_holder * ji_gh)532 static int gfs2_jindex_hold(struct gfs2_sbd *sdp, struct gfs2_holder *ji_gh)
533 {
534 struct gfs2_inode *dip = GFS2_I(sdp->sd_jindex);
535 struct qstr name;
536 char buf[20];
537 struct gfs2_jdesc *jd;
538 int error;
539
540 name.name = buf;
541
542 mutex_lock(&sdp->sd_jindex_mutex);
543
544 for (;;) {
545 struct gfs2_inode *jip;
546
547 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, ji_gh);
548 if (error)
549 break;
550
551 name.len = sprintf(buf, "journal%u", sdp->sd_journals);
552 name.hash = gfs2_disk_hash(name.name, name.len);
553
554 error = gfs2_dir_check(sdp->sd_jindex, &name, NULL);
555 if (error == -ENOENT) {
556 error = 0;
557 break;
558 }
559
560 gfs2_glock_dq_uninit(ji_gh);
561
562 if (error)
563 break;
564
565 error = -ENOMEM;
566 jd = kzalloc(sizeof(struct gfs2_jdesc), GFP_KERNEL);
567 if (!jd)
568 break;
569
570 INIT_LIST_HEAD(&jd->extent_list);
571 INIT_LIST_HEAD(&jd->jd_revoke_list);
572
573 INIT_WORK(&jd->jd_work, gfs2_recover_func);
574 jd->jd_inode = gfs2_lookupi(sdp->sd_jindex, &name, 1);
575 if (IS_ERR_OR_NULL(jd->jd_inode)) {
576 if (!jd->jd_inode)
577 error = -ENOENT;
578 else
579 error = PTR_ERR(jd->jd_inode);
580 kfree(jd);
581 break;
582 }
583
584 d_mark_dontcache(jd->jd_inode);
585 spin_lock(&sdp->sd_jindex_spin);
586 jd->jd_jid = sdp->sd_journals++;
587 jip = GFS2_I(jd->jd_inode);
588 jd->jd_no_addr = jip->i_no_addr;
589 list_add_tail(&jd->jd_list, &sdp->sd_jindex_list);
590 spin_unlock(&sdp->sd_jindex_spin);
591 }
592
593 mutex_unlock(&sdp->sd_jindex_mutex);
594
595 return error;
596 }
597
598 /**
599 * init_statfs - look up and initialize master and local (per node) statfs inodes
600 * @sdp: The GFS2 superblock
601 *
602 * This should be called after the jindex is initialized in init_journal() and
603 * before gfs2_journal_recovery() is called because we need to be able to write
604 * to these inodes during recovery.
605 *
606 * Returns: errno
607 */
init_statfs(struct gfs2_sbd * sdp)608 static int init_statfs(struct gfs2_sbd *sdp)
609 {
610 int error = 0;
611 struct inode *master = d_inode(sdp->sd_master_dir);
612 struct inode *pn = NULL;
613 char buf[30];
614 struct gfs2_jdesc *jd;
615 struct gfs2_inode *ip;
616
617 sdp->sd_statfs_inode = gfs2_lookup_meta(master, "statfs");
618 if (IS_ERR(sdp->sd_statfs_inode)) {
619 error = PTR_ERR(sdp->sd_statfs_inode);
620 fs_err(sdp, "can't read in statfs inode: %d\n", error);
621 goto out;
622 }
623 if (sdp->sd_args.ar_spectator)
624 goto out;
625
626 pn = gfs2_lookup_meta(master, "per_node");
627 if (IS_ERR(pn)) {
628 error = PTR_ERR(pn);
629 fs_err(sdp, "can't find per_node directory: %d\n", error);
630 goto put_statfs;
631 }
632
633 /* For each jid, lookup the corresponding local statfs inode in the
634 * per_node metafs directory and save it in the sdp->sd_sc_inodes_list. */
635 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
636 struct local_statfs_inode *lsi =
637 kmalloc(sizeof(struct local_statfs_inode), GFP_NOFS);
638 if (!lsi) {
639 error = -ENOMEM;
640 goto free_local;
641 }
642 sprintf(buf, "statfs_change%u", jd->jd_jid);
643 lsi->si_sc_inode = gfs2_lookup_meta(pn, buf);
644 if (IS_ERR(lsi->si_sc_inode)) {
645 error = PTR_ERR(lsi->si_sc_inode);
646 fs_err(sdp, "can't find local \"sc\" file#%u: %d\n",
647 jd->jd_jid, error);
648 kfree(lsi);
649 goto free_local;
650 }
651 lsi->si_jid = jd->jd_jid;
652 if (jd->jd_jid == sdp->sd_jdesc->jd_jid)
653 sdp->sd_sc_inode = lsi->si_sc_inode;
654
655 list_add_tail(&lsi->si_list, &sdp->sd_sc_inodes_list);
656 }
657
658 iput(pn);
659 pn = NULL;
660 ip = GFS2_I(sdp->sd_sc_inode);
661 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_NOPID,
662 &sdp->sd_sc_gh);
663 if (error) {
664 fs_err(sdp, "can't lock local \"sc\" file: %d\n", error);
665 goto free_local;
666 }
667 /* read in the local statfs buffer - other nodes don't change it. */
668 error = gfs2_meta_inode_buffer(ip, &sdp->sd_sc_bh);
669 if (error) {
670 fs_err(sdp, "Cannot read in local statfs: %d\n", error);
671 goto unlock_sd_gh;
672 }
673 return 0;
674
675 unlock_sd_gh:
676 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
677 free_local:
678 free_local_statfs_inodes(sdp);
679 iput(pn);
680 put_statfs:
681 iput(sdp->sd_statfs_inode);
682 out:
683 return error;
684 }
685
686 /* Uninitialize and free up memory used by the list of statfs inodes */
uninit_statfs(struct gfs2_sbd * sdp)687 static void uninit_statfs(struct gfs2_sbd *sdp)
688 {
689 if (!sdp->sd_args.ar_spectator) {
690 brelse(sdp->sd_sc_bh);
691 gfs2_glock_dq_uninit(&sdp->sd_sc_gh);
692 free_local_statfs_inodes(sdp);
693 }
694 iput(sdp->sd_statfs_inode);
695 }
696
init_journal(struct gfs2_sbd * sdp,int undo)697 static int init_journal(struct gfs2_sbd *sdp, int undo)
698 {
699 struct inode *master = d_inode(sdp->sd_master_dir);
700 struct gfs2_holder ji_gh;
701 struct gfs2_inode *ip;
702 int error = 0;
703
704 gfs2_holder_mark_uninitialized(&ji_gh);
705 if (undo)
706 goto fail_statfs;
707
708 sdp->sd_jindex = gfs2_lookup_meta(master, "jindex");
709 if (IS_ERR(sdp->sd_jindex)) {
710 fs_err(sdp, "can't lookup journal index: %d\n", error);
711 return PTR_ERR(sdp->sd_jindex);
712 }
713
714 /* Load in the journal index special file */
715
716 error = gfs2_jindex_hold(sdp, &ji_gh);
717 if (error) {
718 fs_err(sdp, "can't read journal index: %d\n", error);
719 goto fail;
720 }
721
722 error = -EUSERS;
723 if (!gfs2_jindex_size(sdp)) {
724 fs_err(sdp, "no journals!\n");
725 goto fail_jindex;
726 }
727
728 atomic_set(&sdp->sd_log_blks_needed, 0);
729 if (sdp->sd_args.ar_spectator) {
730 sdp->sd_jdesc = gfs2_jdesc_find(sdp, 0);
731 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
732 atomic_set(&sdp->sd_log_thresh1, 2*sdp->sd_jdesc->jd_blocks/5);
733 atomic_set(&sdp->sd_log_thresh2, 4*sdp->sd_jdesc->jd_blocks/5);
734 } else {
735 if (sdp->sd_lockstruct.ls_jid >= gfs2_jindex_size(sdp)) {
736 fs_err(sdp, "can't mount journal #%u\n",
737 sdp->sd_lockstruct.ls_jid);
738 fs_err(sdp, "there are only %u journals (0 - %u)\n",
739 gfs2_jindex_size(sdp),
740 gfs2_jindex_size(sdp) - 1);
741 goto fail_jindex;
742 }
743 sdp->sd_jdesc = gfs2_jdesc_find(sdp, sdp->sd_lockstruct.ls_jid);
744
745 error = gfs2_glock_nq_num(sdp, sdp->sd_lockstruct.ls_jid,
746 &gfs2_journal_glops,
747 LM_ST_EXCLUSIVE,
748 LM_FLAG_NOEXP | GL_NOCACHE | GL_NOPID,
749 &sdp->sd_journal_gh);
750 if (error) {
751 fs_err(sdp, "can't acquire journal glock: %d\n", error);
752 goto fail_jindex;
753 }
754
755 ip = GFS2_I(sdp->sd_jdesc->jd_inode);
756 sdp->sd_jinode_gl = ip->i_gl;
757 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED,
758 LM_FLAG_NOEXP | GL_EXACT |
759 GL_NOCACHE | GL_NOPID,
760 &sdp->sd_jinode_gh);
761 if (error) {
762 fs_err(sdp, "can't acquire journal inode glock: %d\n",
763 error);
764 goto fail_journal_gh;
765 }
766
767 error = gfs2_jdesc_check(sdp->sd_jdesc);
768 if (error) {
769 fs_err(sdp, "my journal (%u) is bad: %d\n",
770 sdp->sd_jdesc->jd_jid, error);
771 goto fail_jinode_gh;
772 }
773 atomic_set(&sdp->sd_log_blks_free, sdp->sd_jdesc->jd_blocks);
774 atomic_set(&sdp->sd_log_thresh1, 2*sdp->sd_jdesc->jd_blocks/5);
775 atomic_set(&sdp->sd_log_thresh2, 4*sdp->sd_jdesc->jd_blocks/5);
776
777 /* Map the extents for this journal's blocks */
778 gfs2_map_journal_extents(sdp, sdp->sd_jdesc);
779 }
780 trace_gfs2_log_blocks(sdp, atomic_read(&sdp->sd_log_blks_free));
781
782 /* Lookup statfs inodes here so journal recovery can use them. */
783 error = init_statfs(sdp);
784 if (error)
785 goto fail_jinode_gh;
786
787 if (sdp->sd_lockstruct.ls_first) {
788 unsigned int x;
789 for (x = 0; x < sdp->sd_journals; x++) {
790 struct gfs2_jdesc *jd = gfs2_jdesc_find(sdp, x);
791
792 if (sdp->sd_args.ar_spectator) {
793 error = check_journal_clean(sdp, jd, true);
794 if (error)
795 goto fail_statfs;
796 continue;
797 }
798 error = gfs2_recover_journal(jd, true);
799 if (error) {
800 fs_err(sdp, "error recovering journal %u: %d\n",
801 x, error);
802 goto fail_statfs;
803 }
804 }
805
806 gfs2_others_may_mount(sdp);
807 } else if (!sdp->sd_args.ar_spectator) {
808 error = gfs2_recover_journal(sdp->sd_jdesc, true);
809 if (error) {
810 fs_err(sdp, "error recovering my journal: %d\n", error);
811 goto fail_statfs;
812 }
813 }
814
815 sdp->sd_log_idle = 1;
816 set_bit(SDF_JOURNAL_CHECKED, &sdp->sd_flags);
817 gfs2_glock_dq_uninit(&ji_gh);
818 INIT_WORK(&sdp->sd_freeze_work, gfs2_freeze_func);
819 return 0;
820
821 fail_statfs:
822 uninit_statfs(sdp);
823 fail_jinode_gh:
824 /* A withdraw may have done dq/uninit so now we need to check it */
825 if (!sdp->sd_args.ar_spectator &&
826 gfs2_holder_initialized(&sdp->sd_jinode_gh))
827 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh);
828 fail_journal_gh:
829 if (!sdp->sd_args.ar_spectator &&
830 gfs2_holder_initialized(&sdp->sd_journal_gh))
831 gfs2_glock_dq_uninit(&sdp->sd_journal_gh);
832 fail_jindex:
833 gfs2_jindex_free(sdp);
834 if (gfs2_holder_initialized(&ji_gh))
835 gfs2_glock_dq_uninit(&ji_gh);
836 fail:
837 iput(sdp->sd_jindex);
838 return error;
839 }
840
841 static struct lock_class_key gfs2_quota_imutex_key;
842
init_inodes(struct gfs2_sbd * sdp,int undo)843 static int init_inodes(struct gfs2_sbd *sdp, int undo)
844 {
845 int error = 0;
846 struct inode *master = d_inode(sdp->sd_master_dir);
847
848 if (undo)
849 goto fail_qinode;
850
851 error = init_journal(sdp, undo);
852 complete_all(&sdp->sd_journal_ready);
853 if (error)
854 goto fail;
855
856 /* Read in the resource index inode */
857 sdp->sd_rindex = gfs2_lookup_meta(master, "rindex");
858 if (IS_ERR(sdp->sd_rindex)) {
859 error = PTR_ERR(sdp->sd_rindex);
860 fs_err(sdp, "can't get resource index inode: %d\n", error);
861 goto fail_journal;
862 }
863 sdp->sd_rindex_uptodate = 0;
864
865 /* Read in the quota inode */
866 sdp->sd_quota_inode = gfs2_lookup_meta(master, "quota");
867 if (IS_ERR(sdp->sd_quota_inode)) {
868 error = PTR_ERR(sdp->sd_quota_inode);
869 fs_err(sdp, "can't get quota file inode: %d\n", error);
870 goto fail_rindex;
871 }
872 /*
873 * i_rwsem on quota files is special. Since this inode is hidden system
874 * file, we are safe to define locking ourselves.
875 */
876 lockdep_set_class(&sdp->sd_quota_inode->i_rwsem,
877 &gfs2_quota_imutex_key);
878
879 error = gfs2_rindex_update(sdp);
880 if (error)
881 goto fail_qinode;
882
883 return 0;
884
885 fail_qinode:
886 iput(sdp->sd_quota_inode);
887 fail_rindex:
888 gfs2_clear_rgrpd(sdp);
889 iput(sdp->sd_rindex);
890 fail_journal:
891 init_journal(sdp, UNDO);
892 fail:
893 return error;
894 }
895
init_per_node(struct gfs2_sbd * sdp,int undo)896 static int init_per_node(struct gfs2_sbd *sdp, int undo)
897 {
898 struct inode *pn = NULL;
899 char buf[30];
900 int error = 0;
901 struct gfs2_inode *ip;
902 struct inode *master = d_inode(sdp->sd_master_dir);
903
904 if (sdp->sd_args.ar_spectator)
905 return 0;
906
907 if (undo)
908 goto fail_qc_gh;
909
910 pn = gfs2_lookup_meta(master, "per_node");
911 if (IS_ERR(pn)) {
912 error = PTR_ERR(pn);
913 fs_err(sdp, "can't find per_node directory: %d\n", error);
914 return error;
915 }
916
917 sprintf(buf, "quota_change%u", sdp->sd_jdesc->jd_jid);
918 sdp->sd_qc_inode = gfs2_lookup_meta(pn, buf);
919 if (IS_ERR(sdp->sd_qc_inode)) {
920 error = PTR_ERR(sdp->sd_qc_inode);
921 fs_err(sdp, "can't find local \"qc\" file: %d\n", error);
922 goto fail_ut_i;
923 }
924
925 iput(pn);
926 pn = NULL;
927
928 ip = GFS2_I(sdp->sd_qc_inode);
929 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_NOPID,
930 &sdp->sd_qc_gh);
931 if (error) {
932 fs_err(sdp, "can't lock local \"qc\" file: %d\n", error);
933 goto fail_qc_i;
934 }
935
936 return 0;
937
938 fail_qc_gh:
939 gfs2_glock_dq_uninit(&sdp->sd_qc_gh);
940 fail_qc_i:
941 iput(sdp->sd_qc_inode);
942 fail_ut_i:
943 iput(pn);
944 return error;
945 }
946
947 static const match_table_t nolock_tokens = {
948 { Opt_jid, "jid=%d", },
949 { Opt_err, NULL },
950 };
951
952 static const struct lm_lockops nolock_ops = {
953 .lm_proto_name = "lock_nolock",
954 .lm_put_lock = gfs2_glock_free,
955 .lm_tokens = &nolock_tokens,
956 };
957
958 /**
959 * gfs2_lm_mount - mount a locking protocol
960 * @sdp: the filesystem
961 * @silent: if 1, don't complain if the FS isn't a GFS2 fs
962 *
963 * Returns: errno
964 */
965
gfs2_lm_mount(struct gfs2_sbd * sdp,int silent)966 static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
967 {
968 const struct lm_lockops *lm;
969 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
970 struct gfs2_args *args = &sdp->sd_args;
971 const char *proto = sdp->sd_proto_name;
972 const char *table = sdp->sd_table_name;
973 char *o, *options;
974 int ret;
975
976 if (!strcmp("lock_nolock", proto)) {
977 lm = &nolock_ops;
978 sdp->sd_args.ar_localflocks = 1;
979 #ifdef CONFIG_GFS2_FS_LOCKING_DLM
980 } else if (!strcmp("lock_dlm", proto)) {
981 lm = &gfs2_dlm_ops;
982 #endif
983 } else {
984 pr_info("can't find protocol %s\n", proto);
985 return -ENOENT;
986 }
987
988 fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
989
990 ls->ls_ops = lm;
991 ls->ls_first = 1;
992
993 for (options = args->ar_hostdata; (o = strsep(&options, ":")); ) {
994 substring_t tmp[MAX_OPT_ARGS];
995 int token, option;
996
997 if (!o || !*o)
998 continue;
999
1000 token = match_token(o, *lm->lm_tokens, tmp);
1001 switch (token) {
1002 case Opt_jid:
1003 ret = match_int(&tmp[0], &option);
1004 if (ret || option < 0)
1005 goto hostdata_error;
1006 if (test_and_clear_bit(SDF_NOJOURNALID, &sdp->sd_flags))
1007 ls->ls_jid = option;
1008 break;
1009 case Opt_id:
1010 case Opt_nodir:
1011 /* Obsolete, but left for backward compat purposes */
1012 break;
1013 case Opt_first:
1014 ret = match_int(&tmp[0], &option);
1015 if (ret || (option != 0 && option != 1))
1016 goto hostdata_error;
1017 ls->ls_first = option;
1018 break;
1019 case Opt_err:
1020 default:
1021 hostdata_error:
1022 fs_info(sdp, "unknown hostdata (%s)\n", o);
1023 return -EINVAL;
1024 }
1025 }
1026
1027 if (lm->lm_mount == NULL) {
1028 fs_info(sdp, "Now mounting FS (format %u)...\n", sdp->sd_sb.sb_fs_format);
1029 complete_all(&sdp->sd_locking_init);
1030 return 0;
1031 }
1032 ret = lm->lm_mount(sdp, table);
1033 if (ret == 0)
1034 fs_info(sdp, "Joined cluster. Now mounting FS (format %u)...\n",
1035 sdp->sd_sb.sb_fs_format);
1036 complete_all(&sdp->sd_locking_init);
1037 return ret;
1038 }
1039
gfs2_lm_unmount(struct gfs2_sbd * sdp)1040 void gfs2_lm_unmount(struct gfs2_sbd *sdp)
1041 {
1042 const struct lm_lockops *lm = sdp->sd_lockstruct.ls_ops;
1043 if (!gfs2_withdrawing_or_withdrawn(sdp) && lm->lm_unmount)
1044 lm->lm_unmount(sdp);
1045 }
1046
wait_on_journal(struct gfs2_sbd * sdp)1047 static int wait_on_journal(struct gfs2_sbd *sdp)
1048 {
1049 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
1050 return 0;
1051
1052 return wait_on_bit(&sdp->sd_flags, SDF_NOJOURNALID, TASK_INTERRUPTIBLE)
1053 ? -EINTR : 0;
1054 }
1055
gfs2_online_uevent(struct gfs2_sbd * sdp)1056 void gfs2_online_uevent(struct gfs2_sbd *sdp)
1057 {
1058 struct super_block *sb = sdp->sd_vfs;
1059 char ro[20];
1060 char spectator[20];
1061 char *envp[] = { ro, spectator, NULL };
1062 sprintf(ro, "RDONLY=%d", sb_rdonly(sb));
1063 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
1064 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ONLINE, envp);
1065 }
1066
init_threads(struct gfs2_sbd * sdp)1067 static int init_threads(struct gfs2_sbd *sdp)
1068 {
1069 struct task_struct *p;
1070 int error = 0;
1071
1072 p = kthread_create(gfs2_logd, sdp, "gfs2_logd/%s", sdp->sd_fsname);
1073 if (IS_ERR(p)) {
1074 error = PTR_ERR(p);
1075 fs_err(sdp, "can't create logd thread: %d\n", error);
1076 return error;
1077 }
1078 get_task_struct(p);
1079 sdp->sd_logd_process = p;
1080
1081 p = kthread_create(gfs2_quotad, sdp, "gfs2_quotad/%s", sdp->sd_fsname);
1082 if (IS_ERR(p)) {
1083 error = PTR_ERR(p);
1084 fs_err(sdp, "can't create quotad thread: %d\n", error);
1085 goto fail;
1086 }
1087 get_task_struct(p);
1088 sdp->sd_quotad_process = p;
1089
1090 wake_up_process(sdp->sd_logd_process);
1091 wake_up_process(sdp->sd_quotad_process);
1092 return 0;
1093
1094 fail:
1095 kthread_stop_put(sdp->sd_logd_process);
1096 sdp->sd_logd_process = NULL;
1097 return error;
1098 }
1099
gfs2_destroy_threads(struct gfs2_sbd * sdp)1100 void gfs2_destroy_threads(struct gfs2_sbd *sdp)
1101 {
1102 if (sdp->sd_logd_process) {
1103 kthread_stop_put(sdp->sd_logd_process);
1104 sdp->sd_logd_process = NULL;
1105 }
1106 if (sdp->sd_quotad_process) {
1107 kthread_stop_put(sdp->sd_quotad_process);
1108 sdp->sd_quotad_process = NULL;
1109 }
1110 }
1111
1112 /**
1113 * gfs2_fill_super - Read in superblock
1114 * @sb: The VFS superblock
1115 * @fc: Mount options and flags
1116 *
1117 * Returns: -errno
1118 */
gfs2_fill_super(struct super_block * sb,struct fs_context * fc)1119 static int gfs2_fill_super(struct super_block *sb, struct fs_context *fc)
1120 {
1121 struct gfs2_args *args = fc->fs_private;
1122 int silent = fc->sb_flags & SB_SILENT;
1123 struct gfs2_sbd *sdp;
1124 struct gfs2_holder mount_gh;
1125 struct address_space *mapping;
1126 int error;
1127
1128 sdp = init_sbd(sb);
1129 if (!sdp) {
1130 pr_warn("can't alloc struct gfs2_sbd\n");
1131 return -ENOMEM;
1132 }
1133 sdp->sd_args = *args;
1134
1135 if (sdp->sd_args.ar_spectator) {
1136 sb->s_flags |= SB_RDONLY;
1137 set_bit(SDF_RORECOVERY, &sdp->sd_flags);
1138 }
1139 if (sdp->sd_args.ar_posix_acl)
1140 sb->s_flags |= SB_POSIXACL;
1141 if (sdp->sd_args.ar_nobarrier)
1142 set_bit(SDF_NOBARRIERS, &sdp->sd_flags);
1143
1144 sb->s_flags |= SB_NOSEC;
1145 sb->s_magic = GFS2_MAGIC;
1146 sb->s_op = &gfs2_super_ops;
1147
1148 set_default_d_op(sb, &gfs2_dops);
1149 sb->s_export_op = &gfs2_export_ops;
1150 sb->s_qcop = &gfs2_quotactl_ops;
1151 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
1152 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
1153 sb->s_time_gran = 1;
1154 sb->s_maxbytes = MAX_LFS_FILESIZE;
1155
1156 /* Set up the buffer cache and fill in some fake block size values
1157 to allow us to read-in the on-disk superblock. */
1158 sdp->sd_sb.sb_bsize = sb_min_blocksize(sb, SECTOR_SIZE);
1159 error = -EINVAL;
1160 if (!sdp->sd_sb.sb_bsize)
1161 goto fail_free;
1162 sdp->sd_sb.sb_bsize_shift = sb->s_blocksize_bits;
1163 sdp->sd_fsb2bb_shift = sdp->sd_sb.sb_bsize_shift - SECTOR_SHIFT;
1164 sdp->sd_fsb2bb = BIT(sdp->sd_fsb2bb_shift);
1165
1166 sdp->sd_tune.gt_logd_secs = sdp->sd_args.ar_commit;
1167 sdp->sd_tune.gt_quota_quantum = sdp->sd_args.ar_quota_quantum;
1168 if (sdp->sd_args.ar_statfs_quantum) {
1169 sdp->sd_tune.gt_statfs_slow = 0;
1170 sdp->sd_tune.gt_statfs_quantum = sdp->sd_args.ar_statfs_quantum;
1171 } else {
1172 sdp->sd_tune.gt_statfs_slow = 1;
1173 sdp->sd_tune.gt_statfs_quantum = 30;
1174 }
1175
1176 /* Set up an address space for metadata writes */
1177 sdp->sd_inode = new_inode(sb);
1178 error = -ENOMEM;
1179 if (!sdp->sd_inode)
1180 goto fail_free;
1181 sdp->sd_inode->i_ino = GFS2_BAD_INO;
1182 sdp->sd_inode->i_size = OFFSET_MAX;
1183
1184 mapping = gfs2_aspace(sdp);
1185 mapping->a_ops = &gfs2_rgrp_aops;
1186 mapping_set_gfp_mask(mapping, GFP_NOFS);
1187
1188 error = init_names(sdp, silent);
1189 if (error)
1190 goto fail_iput;
1191
1192 snprintf(sdp->sd_fsname, sizeof(sdp->sd_fsname), "%s", sdp->sd_table_name);
1193
1194 error = -ENOMEM;
1195 sdp->sd_glock_wq = alloc_workqueue("gfs2-glock/%s",
1196 WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_FREEZABLE, 0,
1197 sdp->sd_fsname);
1198 if (!sdp->sd_glock_wq)
1199 goto fail_iput;
1200
1201 sdp->sd_delete_wq = alloc_workqueue("gfs2-delete/%s",
1202 WQ_MEM_RECLAIM | WQ_FREEZABLE, 0, sdp->sd_fsname);
1203 if (!sdp->sd_delete_wq)
1204 goto fail_glock_wq;
1205
1206 error = gfs2_sys_fs_add(sdp);
1207 if (error)
1208 goto fail_delete_wq;
1209
1210 gfs2_create_debugfs_file(sdp);
1211
1212 error = gfs2_lm_mount(sdp, silent);
1213 if (error)
1214 goto fail_debug;
1215
1216 error = init_locking(sdp, &mount_gh, DO);
1217 if (error)
1218 goto fail_lm;
1219
1220 error = init_sb(sdp, silent);
1221 if (error)
1222 goto fail_locking;
1223
1224 /* Turn rgrplvb on by default if fs format is recent enough */
1225 if (!sdp->sd_args.ar_got_rgrplvb && sdp->sd_sb.sb_fs_format > 1801)
1226 sdp->sd_args.ar_rgrplvb = 1;
1227
1228 error = wait_on_journal(sdp);
1229 if (error)
1230 goto fail_sb;
1231
1232 /*
1233 * If user space has failed to join the cluster or some similar
1234 * failure has occurred, then the journal id will contain a
1235 * negative (error) number. This will then be returned to the
1236 * caller (of the mount syscall). We do this even for spectator
1237 * mounts (which just write a jid of 0 to indicate "ok" even though
1238 * the jid is unused in the spectator case)
1239 */
1240 if (sdp->sd_lockstruct.ls_jid < 0) {
1241 error = sdp->sd_lockstruct.ls_jid;
1242 sdp->sd_lockstruct.ls_jid = 0;
1243 goto fail_sb;
1244 }
1245
1246 if (sdp->sd_args.ar_spectator)
1247 snprintf(sdp->sd_fsname, sizeof(sdp->sd_fsname), "%s.s",
1248 sdp->sd_table_name);
1249 else
1250 snprintf(sdp->sd_fsname, sizeof(sdp->sd_fsname), "%s.%u",
1251 sdp->sd_table_name, sdp->sd_lockstruct.ls_jid);
1252
1253 error = init_inodes(sdp, DO);
1254 if (error)
1255 goto fail_sb;
1256
1257 error = init_per_node(sdp, DO);
1258 if (error)
1259 goto fail_inodes;
1260
1261 error = gfs2_statfs_init(sdp);
1262 if (error) {
1263 fs_err(sdp, "can't initialize statfs subsystem: %d\n", error);
1264 goto fail_per_node;
1265 }
1266
1267 if (!sb_rdonly(sb)) {
1268 error = init_threads(sdp);
1269 if (error)
1270 goto fail_per_node;
1271 }
1272
1273 error = gfs2_freeze_lock_shared(sdp);
1274 if (error)
1275 goto fail_per_node;
1276
1277 if (!sb_rdonly(sb))
1278 error = gfs2_make_fs_rw(sdp);
1279
1280 if (error) {
1281 gfs2_freeze_unlock(sdp);
1282 gfs2_destroy_threads(sdp);
1283 fs_err(sdp, "can't make FS RW: %d\n", error);
1284 goto fail_per_node;
1285 }
1286 gfs2_glock_dq_uninit(&mount_gh);
1287 gfs2_online_uevent(sdp);
1288 return 0;
1289
1290 fail_per_node:
1291 init_per_node(sdp, UNDO);
1292 fail_inodes:
1293 init_inodes(sdp, UNDO);
1294 fail_sb:
1295 if (sdp->sd_root_dir)
1296 dput(sdp->sd_root_dir);
1297 if (sdp->sd_master_dir)
1298 dput(sdp->sd_master_dir);
1299 if (sb->s_root)
1300 dput(sb->s_root);
1301 sb->s_root = NULL;
1302 fail_locking:
1303 init_locking(sdp, &mount_gh, UNDO);
1304 fail_lm:
1305 complete_all(&sdp->sd_journal_ready);
1306 gfs2_gl_hash_clear(sdp);
1307 gfs2_lm_unmount(sdp);
1308 fail_debug:
1309 gfs2_delete_debugfs_file(sdp);
1310 gfs2_sys_fs_del(sdp);
1311 fail_delete_wq:
1312 destroy_workqueue(sdp->sd_delete_wq);
1313 fail_glock_wq:
1314 if (sdp->sd_glock_wq)
1315 destroy_workqueue(sdp->sd_glock_wq);
1316 fail_iput:
1317 iput(sdp->sd_inode);
1318 fail_free:
1319 free_sbd(sdp);
1320 return error;
1321 }
1322
1323 /**
1324 * gfs2_get_tree - Get the GFS2 superblock and root directory
1325 * @fc: The filesystem context
1326 *
1327 * Returns: 0 or -errno on error
1328 */
gfs2_get_tree(struct fs_context * fc)1329 static int gfs2_get_tree(struct fs_context *fc)
1330 {
1331 struct gfs2_args *args = fc->fs_private;
1332 struct gfs2_sbd *sdp;
1333 int error;
1334
1335 error = get_tree_bdev(fc, gfs2_fill_super);
1336 if (error)
1337 return error;
1338
1339 sdp = fc->root->d_sb->s_fs_info;
1340 dput(fc->root);
1341 if (args->ar_meta)
1342 fc->root = dget(sdp->sd_master_dir);
1343 else
1344 fc->root = dget(sdp->sd_root_dir);
1345 return 0;
1346 }
1347
gfs2_fc_free(struct fs_context * fc)1348 static void gfs2_fc_free(struct fs_context *fc)
1349 {
1350 struct gfs2_args *args = fc->fs_private;
1351
1352 kfree(args);
1353 }
1354
1355 enum gfs2_param {
1356 Opt_lockproto,
1357 Opt_locktable,
1358 Opt_hostdata,
1359 Opt_spectator,
1360 Opt_ignore_local_fs,
1361 Opt_localflocks,
1362 Opt_localcaching,
1363 Opt_debug,
1364 Opt_upgrade,
1365 Opt_acl,
1366 Opt_quota,
1367 Opt_quota_flag,
1368 Opt_suiddir,
1369 Opt_data,
1370 Opt_meta,
1371 Opt_discard,
1372 Opt_commit,
1373 Opt_errors,
1374 Opt_statfs_quantum,
1375 Opt_statfs_percent,
1376 Opt_quota_quantum,
1377 Opt_barrier,
1378 Opt_rgrplvb,
1379 Opt_loccookie,
1380 };
1381
1382 static const struct constant_table gfs2_param_quota[] = {
1383 {"off", GFS2_QUOTA_OFF},
1384 {"account", GFS2_QUOTA_ACCOUNT},
1385 {"on", GFS2_QUOTA_ON},
1386 {"quiet", GFS2_QUOTA_QUIET},
1387 {}
1388 };
1389
1390 enum opt_data {
1391 Opt_data_writeback = GFS2_DATA_WRITEBACK,
1392 Opt_data_ordered = GFS2_DATA_ORDERED,
1393 };
1394
1395 static const struct constant_table gfs2_param_data[] = {
1396 {"writeback", Opt_data_writeback },
1397 {"ordered", Opt_data_ordered },
1398 {}
1399 };
1400
1401 enum opt_errors {
1402 Opt_errors_withdraw = GFS2_ERRORS_WITHDRAW,
1403 Opt_errors_panic = GFS2_ERRORS_PANIC,
1404 };
1405
1406 static const struct constant_table gfs2_param_errors[] = {
1407 {"withdraw", Opt_errors_withdraw },
1408 {"panic", Opt_errors_panic },
1409 {}
1410 };
1411
1412 static const struct fs_parameter_spec gfs2_fs_parameters[] = {
1413 fsparam_string ("lockproto", Opt_lockproto),
1414 fsparam_string ("locktable", Opt_locktable),
1415 fsparam_string ("hostdata", Opt_hostdata),
1416 fsparam_flag ("spectator", Opt_spectator),
1417 fsparam_flag ("norecovery", Opt_spectator),
1418 fsparam_flag ("ignore_local_fs", Opt_ignore_local_fs),
1419 fsparam_flag ("localflocks", Opt_localflocks),
1420 fsparam_flag ("localcaching", Opt_localcaching),
1421 fsparam_flag_no("debug", Opt_debug),
1422 fsparam_flag ("upgrade", Opt_upgrade),
1423 fsparam_flag_no("acl", Opt_acl),
1424 fsparam_flag_no("suiddir", Opt_suiddir),
1425 fsparam_enum ("data", Opt_data, gfs2_param_data),
1426 fsparam_flag ("meta", Opt_meta),
1427 fsparam_flag_no("discard", Opt_discard),
1428 fsparam_s32 ("commit", Opt_commit),
1429 fsparam_enum ("errors", Opt_errors, gfs2_param_errors),
1430 fsparam_s32 ("statfs_quantum", Opt_statfs_quantum),
1431 fsparam_s32 ("statfs_percent", Opt_statfs_percent),
1432 fsparam_s32 ("quota_quantum", Opt_quota_quantum),
1433 fsparam_flag_no("barrier", Opt_barrier),
1434 fsparam_flag_no("rgrplvb", Opt_rgrplvb),
1435 fsparam_flag_no("loccookie", Opt_loccookie),
1436 /* quota can be a flag or an enum so it gets special treatment */
1437 fsparam_flag_no("quota", Opt_quota_flag),
1438 fsparam_enum("quota", Opt_quota, gfs2_param_quota),
1439 {}
1440 };
1441
1442 /* Parse a single mount parameter */
gfs2_parse_param(struct fs_context * fc,struct fs_parameter * param)1443 static int gfs2_parse_param(struct fs_context *fc, struct fs_parameter *param)
1444 {
1445 struct gfs2_args *args = fc->fs_private;
1446 struct fs_parse_result result;
1447 int o;
1448
1449 o = fs_parse(fc, gfs2_fs_parameters, param, &result);
1450 if (o < 0)
1451 return o;
1452
1453 switch (o) {
1454 case Opt_lockproto:
1455 strscpy(args->ar_lockproto, param->string, GFS2_LOCKNAME_LEN);
1456 break;
1457 case Opt_locktable:
1458 strscpy(args->ar_locktable, param->string, GFS2_LOCKNAME_LEN);
1459 break;
1460 case Opt_hostdata:
1461 strscpy(args->ar_hostdata, param->string, GFS2_LOCKNAME_LEN);
1462 break;
1463 case Opt_spectator:
1464 args->ar_spectator = 1;
1465 break;
1466 case Opt_ignore_local_fs:
1467 /* Retained for backwards compat only */
1468 break;
1469 case Opt_localflocks:
1470 args->ar_localflocks = 1;
1471 break;
1472 case Opt_localcaching:
1473 /* Retained for backwards compat only */
1474 break;
1475 case Opt_debug:
1476 if (result.boolean && args->ar_errors == GFS2_ERRORS_PANIC)
1477 return invalfc(fc, "-o debug and -o errors=panic are mutually exclusive");
1478 args->ar_debug = result.boolean;
1479 break;
1480 case Opt_upgrade:
1481 /* Retained for backwards compat only */
1482 break;
1483 case Opt_acl:
1484 args->ar_posix_acl = result.boolean;
1485 break;
1486 case Opt_quota_flag:
1487 args->ar_quota = result.negated ? GFS2_QUOTA_OFF : GFS2_QUOTA_ON;
1488 break;
1489 case Opt_quota:
1490 args->ar_quota = result.int_32;
1491 break;
1492 case Opt_suiddir:
1493 args->ar_suiddir = result.boolean;
1494 break;
1495 case Opt_data:
1496 /* The uint_32 result maps directly to GFS2_DATA_* */
1497 args->ar_data = result.uint_32;
1498 break;
1499 case Opt_meta:
1500 args->ar_meta = 1;
1501 break;
1502 case Opt_discard:
1503 args->ar_discard = result.boolean;
1504 break;
1505 case Opt_commit:
1506 if (result.int_32 <= 0)
1507 return invalfc(fc, "commit mount option requires a positive numeric argument");
1508 args->ar_commit = result.int_32;
1509 break;
1510 case Opt_statfs_quantum:
1511 if (result.int_32 < 0)
1512 return invalfc(fc, "statfs_quantum mount option requires a non-negative numeric argument");
1513 args->ar_statfs_quantum = result.int_32;
1514 break;
1515 case Opt_quota_quantum:
1516 if (result.int_32 <= 0)
1517 return invalfc(fc, "quota_quantum mount option requires a positive numeric argument");
1518 args->ar_quota_quantum = result.int_32;
1519 break;
1520 case Opt_statfs_percent:
1521 if (result.int_32 < 0 || result.int_32 > 100)
1522 return invalfc(fc, "statfs_percent mount option requires a numeric argument between 0 and 100");
1523 args->ar_statfs_percent = result.int_32;
1524 break;
1525 case Opt_errors:
1526 if (args->ar_debug && result.uint_32 == GFS2_ERRORS_PANIC)
1527 return invalfc(fc, "-o debug and -o errors=panic are mutually exclusive");
1528 args->ar_errors = result.uint_32;
1529 break;
1530 case Opt_barrier:
1531 args->ar_nobarrier = result.boolean;
1532 break;
1533 case Opt_rgrplvb:
1534 args->ar_rgrplvb = result.boolean;
1535 args->ar_got_rgrplvb = 1;
1536 break;
1537 case Opt_loccookie:
1538 args->ar_loccookie = result.boolean;
1539 break;
1540 default:
1541 return invalfc(fc, "invalid mount option: %s", param->key);
1542 }
1543 return 0;
1544 }
1545
gfs2_reconfigure(struct fs_context * fc)1546 static int gfs2_reconfigure(struct fs_context *fc)
1547 {
1548 struct super_block *sb = fc->root->d_sb;
1549 struct gfs2_sbd *sdp = sb->s_fs_info;
1550 struct gfs2_args *oldargs = &sdp->sd_args;
1551 struct gfs2_args *newargs = fc->fs_private;
1552 struct gfs2_tune *gt = &sdp->sd_tune;
1553 int error = 0;
1554
1555 sync_filesystem(sb);
1556
1557 spin_lock(>->gt_spin);
1558 oldargs->ar_commit = gt->gt_logd_secs;
1559 oldargs->ar_quota_quantum = gt->gt_quota_quantum;
1560 if (gt->gt_statfs_slow)
1561 oldargs->ar_statfs_quantum = 0;
1562 else
1563 oldargs->ar_statfs_quantum = gt->gt_statfs_quantum;
1564 spin_unlock(>->gt_spin);
1565
1566 if (strcmp(newargs->ar_lockproto, oldargs->ar_lockproto)) {
1567 errorfc(fc, "reconfiguration of locking protocol not allowed");
1568 return -EINVAL;
1569 }
1570 if (strcmp(newargs->ar_locktable, oldargs->ar_locktable)) {
1571 errorfc(fc, "reconfiguration of lock table not allowed");
1572 return -EINVAL;
1573 }
1574 if (strcmp(newargs->ar_hostdata, oldargs->ar_hostdata)) {
1575 errorfc(fc, "reconfiguration of host data not allowed");
1576 return -EINVAL;
1577 }
1578 if (newargs->ar_spectator != oldargs->ar_spectator) {
1579 errorfc(fc, "reconfiguration of spectator mode not allowed");
1580 return -EINVAL;
1581 }
1582 if (newargs->ar_localflocks != oldargs->ar_localflocks) {
1583 errorfc(fc, "reconfiguration of localflocks not allowed");
1584 return -EINVAL;
1585 }
1586 if (newargs->ar_meta != oldargs->ar_meta) {
1587 errorfc(fc, "switching between gfs2 and gfs2meta not allowed");
1588 return -EINVAL;
1589 }
1590 if (oldargs->ar_spectator)
1591 fc->sb_flags |= SB_RDONLY;
1592
1593 if ((sb->s_flags ^ fc->sb_flags) & SB_RDONLY) {
1594 if (fc->sb_flags & SB_RDONLY) {
1595 gfs2_make_fs_ro(sdp);
1596 } else {
1597 error = gfs2_make_fs_rw(sdp);
1598 if (error)
1599 errorfc(fc, "unable to remount read-write");
1600 }
1601 }
1602 sdp->sd_args = *newargs;
1603
1604 if (sdp->sd_args.ar_posix_acl)
1605 sb->s_flags |= SB_POSIXACL;
1606 else
1607 sb->s_flags &= ~SB_POSIXACL;
1608 if (sdp->sd_args.ar_nobarrier)
1609 set_bit(SDF_NOBARRIERS, &sdp->sd_flags);
1610 else
1611 clear_bit(SDF_NOBARRIERS, &sdp->sd_flags);
1612 spin_lock(>->gt_spin);
1613 gt->gt_logd_secs = newargs->ar_commit;
1614 gt->gt_quota_quantum = newargs->ar_quota_quantum;
1615 if (newargs->ar_statfs_quantum) {
1616 gt->gt_statfs_slow = 0;
1617 gt->gt_statfs_quantum = newargs->ar_statfs_quantum;
1618 }
1619 else {
1620 gt->gt_statfs_slow = 1;
1621 gt->gt_statfs_quantum = 30;
1622 }
1623 spin_unlock(>->gt_spin);
1624
1625 gfs2_online_uevent(sdp);
1626 return error;
1627 }
1628
1629 static const struct fs_context_operations gfs2_context_ops = {
1630 .free = gfs2_fc_free,
1631 .parse_param = gfs2_parse_param,
1632 .get_tree = gfs2_get_tree,
1633 .reconfigure = gfs2_reconfigure,
1634 };
1635
1636 /* Set up the filesystem mount context */
gfs2_init_fs_context(struct fs_context * fc)1637 static int gfs2_init_fs_context(struct fs_context *fc)
1638 {
1639 struct gfs2_args *args;
1640
1641 args = kmalloc(sizeof(*args), GFP_KERNEL);
1642 if (args == NULL)
1643 return -ENOMEM;
1644
1645 if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE) {
1646 struct gfs2_sbd *sdp = fc->root->d_sb->s_fs_info;
1647
1648 *args = sdp->sd_args;
1649 } else {
1650 memset(args, 0, sizeof(*args));
1651 args->ar_quota = GFS2_QUOTA_DEFAULT;
1652 args->ar_data = GFS2_DATA_DEFAULT;
1653 args->ar_commit = 30;
1654 args->ar_statfs_quantum = 30;
1655 args->ar_quota_quantum = 60;
1656 args->ar_errors = GFS2_ERRORS_DEFAULT;
1657 }
1658 fc->fs_private = args;
1659 fc->ops = &gfs2_context_ops;
1660 return 0;
1661 }
1662
set_meta_super(struct super_block * s,struct fs_context * fc)1663 static int set_meta_super(struct super_block *s, struct fs_context *fc)
1664 {
1665 return -EINVAL;
1666 }
1667
test_meta_super(struct super_block * s,struct fs_context * fc)1668 static int test_meta_super(struct super_block *s, struct fs_context *fc)
1669 {
1670 return (fc->sget_key == s->s_bdev);
1671 }
1672
gfs2_meta_get_tree(struct fs_context * fc)1673 static int gfs2_meta_get_tree(struct fs_context *fc)
1674 {
1675 struct super_block *s;
1676 struct gfs2_sbd *sdp;
1677 struct path path;
1678 int error;
1679
1680 if (!fc->source || !*fc->source)
1681 return -EINVAL;
1682
1683 error = kern_path(fc->source, LOOKUP_FOLLOW, &path);
1684 if (error) {
1685 pr_warn("path_lookup on %s returned error %d\n",
1686 fc->source, error);
1687 return error;
1688 }
1689 fc->fs_type = &gfs2_fs_type;
1690 fc->sget_key = path.dentry->d_sb->s_bdev;
1691 s = sget_fc(fc, test_meta_super, set_meta_super);
1692 path_put(&path);
1693 if (IS_ERR(s)) {
1694 pr_warn("gfs2 mount does not exist\n");
1695 return PTR_ERR(s);
1696 }
1697 if ((fc->sb_flags ^ s->s_flags) & SB_RDONLY) {
1698 deactivate_locked_super(s);
1699 return -EBUSY;
1700 }
1701 sdp = s->s_fs_info;
1702 fc->root = dget(sdp->sd_master_dir);
1703 return 0;
1704 }
1705
1706 static const struct fs_context_operations gfs2_meta_context_ops = {
1707 .free = gfs2_fc_free,
1708 .get_tree = gfs2_meta_get_tree,
1709 };
1710
gfs2_meta_init_fs_context(struct fs_context * fc)1711 static int gfs2_meta_init_fs_context(struct fs_context *fc)
1712 {
1713 int ret = gfs2_init_fs_context(fc);
1714
1715 if (ret)
1716 return ret;
1717
1718 fc->ops = &gfs2_meta_context_ops;
1719 return 0;
1720 }
1721
1722 /**
1723 * gfs2_evict_inodes - evict inodes cooperatively
1724 * @sb: the superblock
1725 *
1726 * When evicting an inode with a zero link count, we are trying to upgrade the
1727 * inode's iopen glock from SH to EX mode in order to determine if we can
1728 * delete the inode. The other nodes are supposed to evict the inode from
1729 * their caches if they can, and to poke the inode's inode glock if they cannot
1730 * do so. Either behavior allows gfs2_upgrade_iopen_glock() to proceed
1731 * quickly, but if the other nodes are not cooperating, the lock upgrading
1732 * attempt will time out. Since inodes are evicted sequentially, this can add
1733 * up quickly.
1734 *
1735 * Function evict_inodes() tries to keep the s_inode_list_lock list locked over
1736 * a long time, which prevents other inodes from being evicted concurrently.
1737 * This precludes the cooperative behavior we are looking for. This special
1738 * version of evict_inodes() avoids that.
1739 *
1740 * Modeled after drop_pagecache_sb().
1741 */
gfs2_evict_inodes(struct super_block * sb)1742 static void gfs2_evict_inodes(struct super_block *sb)
1743 {
1744 struct inode *inode, *toput_inode = NULL;
1745 struct gfs2_sbd *sdp = sb->s_fs_info;
1746
1747 set_bit(SDF_EVICTING, &sdp->sd_flags);
1748
1749 spin_lock(&sb->s_inode_list_lock);
1750 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1751 spin_lock(&inode->i_lock);
1752 if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) &&
1753 !need_resched()) {
1754 spin_unlock(&inode->i_lock);
1755 continue;
1756 }
1757 atomic_inc(&inode->i_count);
1758 spin_unlock(&inode->i_lock);
1759 spin_unlock(&sb->s_inode_list_lock);
1760
1761 iput(toput_inode);
1762 toput_inode = inode;
1763
1764 cond_resched();
1765 spin_lock(&sb->s_inode_list_lock);
1766 }
1767 spin_unlock(&sb->s_inode_list_lock);
1768 iput(toput_inode);
1769 }
1770
gfs2_kill_sb(struct super_block * sb)1771 static void gfs2_kill_sb(struct super_block *sb)
1772 {
1773 struct gfs2_sbd *sdp = sb->s_fs_info;
1774
1775 if (sdp == NULL) {
1776 kill_block_super(sb);
1777 return;
1778 }
1779
1780 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SYNC | GFS2_LFC_KILL_SB);
1781 dput(sdp->sd_root_dir);
1782 dput(sdp->sd_master_dir);
1783 sdp->sd_root_dir = NULL;
1784 sdp->sd_master_dir = NULL;
1785 shrink_dcache_sb(sb);
1786
1787 gfs2_evict_inodes(sb);
1788
1789 /*
1790 * Flush and then drain the delete workqueue here (via
1791 * destroy_workqueue()) to ensure that any delete work that
1792 * may be running will also see the SDF_KILL flag.
1793 */
1794 set_bit(SDF_KILL, &sdp->sd_flags);
1795 gfs2_flush_delete_work(sdp);
1796 destroy_workqueue(sdp->sd_delete_wq);
1797
1798 kill_block_super(sb);
1799 }
1800
1801 struct file_system_type gfs2_fs_type = {
1802 .name = "gfs2",
1803 .fs_flags = FS_REQUIRES_DEV,
1804 .init_fs_context = gfs2_init_fs_context,
1805 .parameters = gfs2_fs_parameters,
1806 .kill_sb = gfs2_kill_sb,
1807 .owner = THIS_MODULE,
1808 };
1809 MODULE_ALIAS_FS("gfs2");
1810
1811 struct file_system_type gfs2meta_fs_type = {
1812 .name = "gfs2meta",
1813 .fs_flags = FS_REQUIRES_DEV,
1814 .init_fs_context = gfs2_meta_init_fs_context,
1815 .owner = THIS_MODULE,
1816 };
1817 MODULE_ALIAS_FS("gfs2meta");
1818