diff options
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_file_ops.c')
| -rw-r--r-- | drivers/infiniband/hw/ipath/ipath_file_ops.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_file_ops.c b/drivers/infiniband/hw/ipath/ipath_file_ops.c index 3eb7e454849..aed8afee56d 100644 --- a/drivers/infiniband/hw/ipath/ipath_file_ops.c +++ b/drivers/infiniband/hw/ipath/ipath_file_ops.c @@ -1864,9 +1864,9 @@ static int ipath_assign_port(struct file *fp,  		goto done_chk_sdma;  	} -	i_minor = iminor(fp->f_path.dentry->d_inode) - IPATH_USER_MINOR_BASE; +	i_minor = iminor(file_inode(fp)) - IPATH_USER_MINOR_BASE;  	ipath_cdbg(VERBOSE, "open on dev %lx (minor %d)\n", -		   (long)fp->f_path.dentry->d_inode->i_rdev, i_minor); +		   (long)file_inode(fp)->i_rdev, i_minor);  	if (i_minor)  		ret = find_free_port(i_minor - 1, fp, uinfo);  |