diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:37:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:49 -0500 |
commit | 49522c97ac1c19188ff63598cdd0c980ba7f1239 (patch) | |
tree | 0d36bfd7a0b3af0845873e1061c8cd0f3fc0dbf2 /drivers/s390/block | |
parent | 3027795e7b873da643e851d62d17f6bcc43d6e4a (diff) |
[PATCH] struct path: convert s390-drivers
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/s390/block')
-rw-r--r-- | drivers/s390/block/dasd_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/block/dasd_ioctl.c b/drivers/s390/block/dasd_ioctl.c index 8fed3603e9ea..758cfb542865 100644 --- a/drivers/s390/block/dasd_ioctl.c +++ b/drivers/s390/block/dasd_ioctl.c | |||
@@ -430,7 +430,7 @@ dasd_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
430 | int rval; | 430 | int rval; |
431 | 431 | ||
432 | lock_kernel(); | 432 | lock_kernel(); |
433 | rval = dasd_ioctl(filp->f_dentry->d_inode, filp, cmd, arg); | 433 | rval = dasd_ioctl(filp->f_path.dentry->d_inode, filp, cmd, arg); |
434 | unlock_kernel(); | 434 | unlock_kernel(); |
435 | 435 | ||
436 | return (rval == -EINVAL) ? -ENOIOCTLCMD : rval; | 436 | return (rval == -EINVAL) ? -ENOIOCTLCMD : rval; |