Skip to content

Commit

Permalink
JFS: Initialize dentry->d_op for negative dentries too
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
  • Loading branch information
Dave Kleikamp committed Aug 17, 2005
1 parent cf59001 commit 686762c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fs/jfs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,8 @@ static struct dentry *jfs_lookup(struct inode *dip, struct dentry *dentry, struc

jfs_info("jfs_lookup: name = %s", name);

if (JFS_SBI(dip->i_sb)->mntflag & JFS_OS2)
dentry->d_op = &jfs_ci_dentry_operations;

if ((name[0] == '.') && (len == 1))
inum = dip->i_ino;
Expand Down Expand Up @@ -1417,9 +1419,6 @@ static struct dentry *jfs_lookup(struct inode *dip, struct dentry *dentry, struc
return ERR_PTR(-EACCES);
}

if (JFS_SBI(dip->i_sb)->mntflag & JFS_OS2)
dentry->d_op = &jfs_ci_dentry_operations;

dentry = d_splice_alias(ip, dentry);

if (dentry && (JFS_SBI(dip->i_sb)->mntflag & JFS_OS2))
Expand Down

0 comments on commit 686762c

Please sign in to comment.