diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:36:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:44 -0500 |
commit | c5a20b6c26efb58c2ba2ebebcc65748f5b92f662 (patch) | |
tree | 5dd1a27835594b7f27620981bfded11255a418ab /block | |
parent | 61a8424ab8f611d199bfc8ca329ec0ea77a4d4ea (diff) |
[PATCH] struct path: convert block
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 'block')
-rw-r--r-- | block/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/ioctl.c b/block/ioctl.c index 9fddb99c3efb..f6962b64660e 100644 --- a/block/ioctl.c +++ b/block/ioctl.c | |||
@@ -290,7 +290,7 @@ int blkdev_ioctl(struct inode *inode, struct file *file, unsigned cmd, | |||
290 | ENOIOCTLCMD for unknown ioctls. */ | 290 | ENOIOCTLCMD for unknown ioctls. */ |
291 | long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg) | 291 | long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg) |
292 | { | 292 | { |
293 | struct block_device *bdev = file->f_dentry->d_inode->i_bdev; | 293 | struct block_device *bdev = file->f_path.dentry->d_inode->i_bdev; |
294 | struct gendisk *disk = bdev->bd_disk; | 294 | struct gendisk *disk = bdev->bd_disk; |
295 | int ret = -ENOIOCTLCMD; | 295 | int ret = -ENOIOCTLCMD; |
296 | if (disk->fops->compat_ioctl) { | 296 | if (disk->fops->compat_ioctl) { |