I was reviewing patches I was integrating into my NFS source base and this one popped up (commit f6488c9b). In reviewing it, it would fix the problem, however, I think it's not the best fix for it. Catching it in nfs_find_actor() is after the horse has left the barn so to speak. I think the problem is in nfs_fhget() when constructing the new inode (inside the if (inode->i_state & I_NEW) {...}) and should be addressed there. The nfs module already has checks to ensure that the expression "((S_IFMT & inode->i_mode) == (S_IFMT & fattr->mode))" is true in nfs_update_inode() and nfs_check_inode_attributes(). I think problem Benny hit was that the equivalent check is missing in nfs_fhget() when constructing a new inode. The same check that's in those other two functions needs to be added to nfs_fhget()'s "if (inode->i_state & I_NEW) {...}" conditional block to prevent the problem of an inconsistent fattr/inode state from occurring in the first place. I can come up with a patch if you'd like, but I wanted to make sure my assertions were valid first. Is removing a check from nfs_find_actor() and adding the check to nfs_fhget() to prevent the inconsistency in the first place a better approach? Quentin On Wed, Feb 27, 2013 at 7:10 PM, Jeff Layton <jlayton@xxxxxxxxxx> wrote: > Benny Halevy reported the following oops when testing RHEL6: [...] > This should fix the oops reported here: > > https://bugzilla.redhat.com/show_bug.cgi?id=913660 > > Reported-by: Benny Halevy <bhalevy@xxxxxxxxxx> > Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx> > --- > fs/nfs/inode.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c > index 6acc73c..f52c99f 100644 > --- a/fs/nfs/inode.c > +++ b/fs/nfs/inode.c > @@ -237,6 +237,8 @@ nfs_find_actor(struct inode *inode, void *opaque) > > if (NFS_FILEID(inode) != fattr->fileid) > return 0; > + if ((S_IFMT & inode->i_mode) != (S_IFMT & fattr->mode)) > + return 0; > if (nfs_compare_fh(NFS_FH(inode), fh)) > return 0; > if (is_bad_inode(inode) || NFS_STALE(inode)) > -- > 1.7.11.7 > > -- -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html