diff options
author | Wendy Cheng <wcheng@redhat.com> | 2007-06-27 17:07:08 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-07-09 03:24:08 -0400 |
commit | bb9bcf061660661c57ddcf31337529f82414b937 (patch) | |
tree | 0876874e5252c4939b8e7bbd62a22a6eb4ad1abf /fs/gfs2/rgrp.c | |
parent | f4fadb23ca49abd2f1387a0b7e78b385ebc760ce (diff) |
[GFS2] Obtaining no_formal_ino from directory entry
GFS2 lookup code doesn't ask for inode shared glock. This implies during
in-memory inode creation for existing file, GFS2 will not disk-read in
the inode contents. This leaves no_formal_ino un-initialized during
lookup time. The un-initialized no_formal_ino is subsequently encoded
into file handle. Clients will get ESTALE error whenever it tries to
access these files.
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/rgrp.c')
-rw-r--r-- | fs/gfs2/rgrp.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 36c523d487a7..7fb74484af63 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c | |||
@@ -860,18 +860,19 @@ static struct inode *try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked) | |||
860 | { | 860 | { |
861 | struct inode *inode; | 861 | struct inode *inode; |
862 | u32 goal = 0; | 862 | u32 goal = 0; |
863 | u64 ino; | 863 | u64 no_addr; |
864 | 864 | ||
865 | for(;;) { | 865 | for(;;) { |
866 | goal = rgblk_search(rgd, goal, GFS2_BLKST_UNLINKED, | 866 | goal = rgblk_search(rgd, goal, GFS2_BLKST_UNLINKED, |
867 | GFS2_BLKST_UNLINKED); | 867 | GFS2_BLKST_UNLINKED); |
868 | if (goal == 0) | 868 | if (goal == 0) |
869 | return 0; | 869 | return 0; |
870 | ino = goal + rgd->rd_data0; | 870 | no_addr = goal + rgd->rd_data0; |
871 | if (ino <= *last_unlinked) | 871 | if (no_addr <= *last_unlinked) |
872 | continue; | 872 | continue; |
873 | *last_unlinked = ino; | 873 | *last_unlinked = no_addr; |
874 | inode = gfs2_inode_lookup(rgd->rd_sbd->sd_vfs, ino, DT_UNKNOWN); | 874 | inode = gfs2_inode_lookup(rgd->rd_sbd->sd_vfs, DT_UNKNOWN, |
875 | no_addr, 0); | ||
875 | if (!IS_ERR(inode)) | 876 | if (!IS_ERR(inode)) |
876 | return inode; | 877 | return inode; |
877 | } | 878 | } |