diff options
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/3w-9xxx.c | 2 | ||||
-rw-r--r-- | drivers/scsi/3w-sas.c | 2 | ||||
-rw-r--r-- | drivers/scsi/3w-xxxx.c | 2 | ||||
-rw-r--r-- | drivers/scsi/csiostor/csio_init.c | 2 | ||||
-rw-r--r-- | drivers/scsi/dpt_i2o.c | 4 | ||||
-rw-r--r-- | drivers/scsi/st.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/drivers/scsi/3w-9xxx.c b/drivers/scsi/3w-9xxx.c index d1f0120cdb98..5e1e12c0cf42 100644 --- a/drivers/scsi/3w-9xxx.c +++ b/drivers/scsi/3w-9xxx.c | |||
@@ -640,7 +640,7 @@ out: | |||
640 | /* This function handles ioctl for the character device */ | 640 | /* This function handles ioctl for the character device */ |
641 | static long twa_chrdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 641 | static long twa_chrdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
642 | { | 642 | { |
643 | struct inode *inode = file->f_path.dentry->d_inode; | 643 | struct inode *inode = file_inode(file); |
644 | long timeout; | 644 | long timeout; |
645 | unsigned long *cpu_addr, data_buffer_length_adjusted = 0, flags = 0; | 645 | unsigned long *cpu_addr, data_buffer_length_adjusted = 0, flags = 0; |
646 | dma_addr_t dma_handle; | 646 | dma_addr_t dma_handle; |
diff --git a/drivers/scsi/3w-sas.c b/drivers/scsi/3w-sas.c index 52a2f0580d97..c845bdbeb6c0 100644 --- a/drivers/scsi/3w-sas.c +++ b/drivers/scsi/3w-sas.c | |||
@@ -757,7 +757,7 @@ static long twl_chrdev_ioctl(struct file *file, unsigned int cmd, unsigned long | |||
757 | dma_addr_t dma_handle; | 757 | dma_addr_t dma_handle; |
758 | int request_id = 0; | 758 | int request_id = 0; |
759 | TW_Ioctl_Driver_Command driver_command; | 759 | TW_Ioctl_Driver_Command driver_command; |
760 | struct inode *inode = file->f_dentry->d_inode; | 760 | struct inode *inode = file_inode(file); |
761 | TW_Ioctl_Buf_Apache *tw_ioctl; | 761 | TW_Ioctl_Buf_Apache *tw_ioctl; |
762 | TW_Command_Full *full_command_packet; | 762 | TW_Command_Full *full_command_packet; |
763 | TW_Device_Extension *tw_dev = twl_device_extension_list[iminor(inode)]; | 763 | TW_Device_Extension *tw_dev = twl_device_extension_list[iminor(inode)]; |
diff --git a/drivers/scsi/3w-xxxx.c b/drivers/scsi/3w-xxxx.c index 62071d2fc1ce..56662ae03dea 100644 --- a/drivers/scsi/3w-xxxx.c +++ b/drivers/scsi/3w-xxxx.c | |||
@@ -889,7 +889,7 @@ static long tw_chrdev_ioctl(struct file *file, unsigned int cmd, unsigned long a | |||
889 | unsigned long flags; | 889 | unsigned long flags; |
890 | unsigned int data_buffer_length = 0; | 890 | unsigned int data_buffer_length = 0; |
891 | unsigned long data_buffer_length_adjusted = 0; | 891 | unsigned long data_buffer_length_adjusted = 0; |
892 | struct inode *inode = file->f_dentry->d_inode; | 892 | struct inode *inode = file_inode(file); |
893 | unsigned long *cpu_addr; | 893 | unsigned long *cpu_addr; |
894 | long timeout; | 894 | long timeout; |
895 | TW_New_Ioctl *tw_ioctl; | 895 | TW_New_Ioctl *tw_ioctl; |
diff --git a/drivers/scsi/csiostor/csio_init.c b/drivers/scsi/csiostor/csio_init.c index b42cbbd3d92d..c323b2030afa 100644 --- a/drivers/scsi/csiostor/csio_init.c +++ b/drivers/scsi/csiostor/csio_init.c | |||
@@ -71,7 +71,7 @@ static ssize_t | |||
71 | csio_mem_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | 71 | csio_mem_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
72 | { | 72 | { |
73 | loff_t pos = *ppos; | 73 | loff_t pos = *ppos; |
74 | loff_t avail = file->f_path.dentry->d_inode->i_size; | 74 | loff_t avail = file_inode(file)->i_size; |
75 | unsigned int mem = (uintptr_t)file->private_data & 3; | 75 | unsigned int mem = (uintptr_t)file->private_data & 3; |
76 | struct csio_hw *hw = file->private_data - mem; | 76 | struct csio_hw *hw = file->private_data - mem; |
77 | 77 | ||
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index b4f6c9a84e71..b6e2700ec1c6 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c | |||
@@ -2161,7 +2161,7 @@ static long adpt_unlocked_ioctl(struct file *file, uint cmd, ulong arg) | |||
2161 | struct inode *inode; | 2161 | struct inode *inode; |
2162 | long ret; | 2162 | long ret; |
2163 | 2163 | ||
2164 | inode = file->f_dentry->d_inode; | 2164 | inode = file_inode(file); |
2165 | 2165 | ||
2166 | mutex_lock(&adpt_mutex); | 2166 | mutex_lock(&adpt_mutex); |
2167 | ret = adpt_ioctl(inode, file, cmd, arg); | 2167 | ret = adpt_ioctl(inode, file, cmd, arg); |
@@ -2177,7 +2177,7 @@ static long compat_adpt_ioctl(struct file *file, | |||
2177 | struct inode *inode; | 2177 | struct inode *inode; |
2178 | long ret; | 2178 | long ret; |
2179 | 2179 | ||
2180 | inode = file->f_dentry->d_inode; | 2180 | inode = file_inode(file); |
2181 | 2181 | ||
2182 | mutex_lock(&adpt_mutex); | 2182 | mutex_lock(&adpt_mutex); |
2183 | 2183 | ||
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index 98156a97c472..3e2b3717cb5c 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c | |||
@@ -977,7 +977,7 @@ static int check_tape(struct scsi_tape *STp, struct file *filp) | |||
977 | struct st_modedef *STm; | 977 | struct st_modedef *STm; |
978 | struct st_partstat *STps; | 978 | struct st_partstat *STps; |
979 | char *name = tape_name(STp); | 979 | char *name = tape_name(STp); |
980 | struct inode *inode = filp->f_path.dentry->d_inode; | 980 | struct inode *inode = file_inode(filp); |
981 | int mode = TAPE_MODE(inode); | 981 | int mode = TAPE_MODE(inode); |
982 | 982 | ||
983 | STp->ready = ST_READY; | 983 | STp->ready = ST_READY; |