IB/ipath: Fix pointer-to-pointer thinko in ipath_fs.c
The return from lookup_one_len() is assigned to *dentry, so that's what we should be checking with IS_ERR(). Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
committed by
Roland Dreier
parent
061e41fdb5
commit
64f22fa17c
@@ -86,7 +86,7 @@ static int create_file(const char *name, mode_t mode,
|
|||||||
*dentry = NULL;
|
*dentry = NULL;
|
||||||
mutex_lock(&parent->d_inode->i_mutex);
|
mutex_lock(&parent->d_inode->i_mutex);
|
||||||
*dentry = lookup_one_len(name, parent, strlen(name));
|
*dentry = lookup_one_len(name, parent, strlen(name));
|
||||||
if (!IS_ERR(dentry))
|
if (!IS_ERR(*dentry))
|
||||||
error = ipathfs_mknod(parent->d_inode, *dentry,
|
error = ipathfs_mknod(parent->d_inode, *dentry,
|
||||||
mode, fops, data);
|
mode, fops, data);
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user