Srinivasa Ds 0da3585e1e [GFS2] Mount problem with the GFS2 code
While mounting the gfs2 filesystem,our test team had a problem and we
got this error message.
=======================================================

GFS2: fsid=: Trying to join cluster "lock_nolock", "dasde1"
GFS2: fsid=dasde1.0: Joined cluster. Now mounting FS...
GFS2: not a GFS2 filesystem
GFS2: fsid=dasde1.0: can't read superblock: -22

==========================================================================
On debugging further we found that problem is while reading the super
block(gfs2_read_super) and comparing the magic number in it.
When I  replace the submit_bio() call(present in gfs2_read_super) with
the sb_getblk() and ll_rw_block(), mount operation succeded.
On further analysis we found that before calling submit_bio(),
bio->bi_sector was set to "sector" variable. This "sector" variable has
the same value of bh->b_blocknr(block number). Hence there is a need to
multiply this valuwith (blocksize >> 9)(9 because,sector size
2^9,samething happens in ll_rw_block also, before calling submit_bio()).
So I have developed the patch which solves this problem. Please let me
know your comments.
================================================================

Signed-off-by: Srinivasa DS <srinivasa@in.ibm.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
2006-11-30 10:37:36 -05:00
..
2006-10-11 11:17:06 -07:00
2006-11-30 10:37:32 -05:00
2006-11-30 10:37:32 -05:00
2006-11-30 10:35:49 -05:00
2006-10-20 09:13:40 -04:00
2006-11-30 10:36:42 -05:00
2006-11-30 10:33:32 -05:00
2006-11-30 10:34:14 -05:00
2006-11-30 10:34:52 -05:00
2006-11-30 10:37:18 -05:00
2006-11-30 10:36:42 -05:00
2006-11-30 10:36:42 -05:00
2006-11-30 10:36:30 -05:00
2006-11-30 10:36:24 -05:00
2006-09-25 09:26:04 -04:00
2006-11-30 10:34:55 -05:00
2006-11-30 10:33:14 -05:00
2006-11-06 08:58:52 -05:00
2006-11-30 10:37:32 -05:00
2006-11-30 10:36:42 -05:00
2006-10-12 17:10:15 -04:00
2006-11-30 10:35:53 -05:00
2006-09-05 10:39:21 -04:00
2006-11-30 10:33:46 -05:00