commit | 74f3c8aff36ad6552ea609c8b20bfd588fa16f38 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Mon Aug 27 15:38:10 2007 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Tue Oct 21 07:47:14 2008 -0400 |
tree | c046823751971ff37b66499282ca2b2e263cc71a | |
parent | e915e872ed921d707bc32b3f2184d43abfa8c9e2 [diff] [blame] |
[PATCH] switch scsi_cmd_ioctl() to passing fmode_t Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/block/bsg.c b/block/bsg.c index 2d36b12..e8bd247 100644 --- a/block/bsg.c +++ b/block/bsg.c
@@ -914,7 +914,7 @@ case SG_EMULATED_HOST: case SCSI_IOCTL_SEND_COMMAND: { void __user *uarg = (void __user *) arg; - return scsi_cmd_ioctl(file, bd->queue, NULL, cmd, uarg); + return scsi_cmd_ioctl(bd->queue, NULL, file->f_mode, cmd, uarg); } case SG_IO: { struct request *rq;