diff options
Diffstat (limited to 'fs/coda/inode.c')
-rw-r--r-- | fs/coda/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/coda/inode.c b/fs/coda/inode.c index be2aa4909487..6df708c7b3e8 100644 --- a/fs/coda/inode.c +++ b/fs/coda/inode.c | |||
@@ -129,7 +129,7 @@ static int get_device_index(struct coda_mount_data *data) | |||
129 | f = fdget(data->fd); | 129 | f = fdget(data->fd); |
130 | if (!f.file) | 130 | if (!f.file) |
131 | goto Ebadf; | 131 | goto Ebadf; |
132 | inode = f.file->f_path.dentry->d_inode; | 132 | inode = file_inode(f.file); |
133 | if (!S_ISCHR(inode->i_mode) || imajor(inode) != CODA_PSDEV_MAJOR) { | 133 | if (!S_ISCHR(inode->i_mode) || imajor(inode) != CODA_PSDEV_MAJOR) { |
134 | fdput(f); | 134 | fdput(f); |
135 | goto Ebadf; | 135 | goto Ebadf; |