diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 02:37:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:49 -0800 |
commit | 7ac6207b2a6a5b828bc333f2530a3bd48197af3e (patch) | |
tree | 5ca70052708db527a5c72dfb96c7280f0eb53618 /drivers/scsi/st.c | |
parent | 7fa95f726aba6033d7baffcfda484c31b8cfe153 (diff) | |
download | linux-stable-7ac6207b2a6a5b828bc333f2530a3bd48197af3e.tar.gz linux-stable-7ac6207b2a6a5b828bc333f2530a3bd48197af3e.tar.bz2 linux-stable-7ac6207b2a6a5b828bc333f2530a3bd48197af3e.zip |
[PATCH] struct path: convert scsi
Signed-off-by: Josef Sipek <jsipek@fsl.cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/scsi/st.c')
-rw-r--r-- | drivers/scsi/st.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index 587274dd7059..e016e0906e1a 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c @@ -922,7 +922,7 @@ static int check_tape(struct scsi_tape *STp, struct file *filp) struct st_modedef *STm; struct st_partstat *STps; char *name = tape_name(STp); - struct inode *inode = filp->f_dentry->d_inode; + struct inode *inode = filp->f_path.dentry->d_inode; int mode = TAPE_MODE(inode); STp->ready = ST_READY; |