aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/super.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-03-01 15:31:02 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-03-01 15:31:02 -0500
commitc9fd43078f5007c6ca6b3a9cd04c51a8f0e44a20 (patch)
tree5a083b01e88afd591fdcce76ad14c4d7d028ac23 /fs/gfs2/super.c
parente317ffcb7cc26c5e80cab97160a5e2761a4436ec (diff)
[GFS2] Tidy up mount code.
We no longer lookup ".gfs2_admin" in the root directory in order to find it, but instead use the inode number given in the superblock. Both the root directory and the admin directory are now looked up using the same routine, so the redundant code is removed. Also, there is no longer a reference to the root inode in the GFS2 super block. When required this can be retreived via sb->s_root->d_inode instead. Assuming that we introduce a metadata filesystem type for GFS, then this is a first step towards that goal. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/super.c')
-rw-r--r--fs/gfs2/super.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c
index 9ccf0b9c5980..fff5a96f4152 100644
--- a/fs/gfs2/super.c
+++ b/fs/gfs2/super.c
@@ -447,25 +447,6 @@ int gfs2_jdesc_check(struct gfs2_jdesc *jd)
447 return error; 447 return error;
448} 448}
449 449
450int gfs2_lookup_master_dir(struct gfs2_sbd *sdp)
451{
452 struct inode *inode = NULL;
453 struct gfs2_glock *gl;
454 int error;
455
456 error = gfs2_glock_get(sdp,
457 sdp->sd_sb.sb_master_dir.no_addr,
458 &gfs2_inode_glops, CREATE, &gl);
459 if (!error) {
460 error = gfs2_lookup_simple(sdp->sd_root_dir, ".gfs2_admin",
461 &inode);
462 sdp->sd_master_dir = inode;
463 gfs2_glock_put(gl);
464 }
465
466 return error;
467}
468
469/** 450/**
470 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one 451 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one
471 * @sdp: the filesystem 452 * @sdp: the filesystem