aboutsummaryrefslogtreecommitdiffstats
path: root/block/bsg.c
diff options
context:
space:
mode:
authorFUJITA Tomonori <tomof@acm.org>2006-12-20 05:20:57 -0500
committerJens Axboe <jens.axboe@oracle.com>2007-07-16 02:52:44 -0400
commit10e8855b945193a62801429af3aab9f7e27ef56a (patch)
treecb58b35ad27f0c9ee6b7d1adab5ce6ca3a5bc918 /block/bsg.c
parent70e36eceaf897da11aa0b4d82b46ca66e65a05f1 (diff)
bsg: add SG_IO to SG v4
This adds SG_IO support to SG v4. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/bsg.c')
-rw-r--r--block/bsg.c23
1 files changed, 21 insertions, 2 deletions
diff --git a/block/bsg.c b/block/bsg.c
index 6d139d20ec99..9dc5d36a52e5 100644
--- a/block/bsg.c
+++ b/block/bsg.c
@@ -945,8 +945,27 @@ bsg_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
945 void __user *uarg = (void __user *) arg; 945 void __user *uarg = (void __user *) arg;
946 return scsi_cmd_ioctl(file, bd->disk, cmd, uarg); 946 return scsi_cmd_ioctl(file, bd->disk, cmd, uarg);
947 } 947 }
948 case SG_IO: 948 case SG_IO: {
949 return -EINVAL; 949 struct request *rq;
950 struct bio *bio;
951 struct sg_io_v4 hdr;
952
953 if (copy_from_user(&hdr, uarg, sizeof(hdr)))
954 return -EFAULT;
955
956 rq = bsg_map_hdr(bd, &hdr);
957 if (IS_ERR(rq))
958 return PTR_ERR(rq);
959
960 bio = rq->bio;
961 blk_execute_rq(bd->queue, bd->disk, rq, 0);
962 blk_complete_sgv4_hdr_rq(rq, &hdr, bio);
963
964 if (copy_to_user(uarg, &hdr, sizeof(hdr)))
965 return -EFAULT;
966 else
967 return 0;
968 }
950 /* 969 /*
951 * block device ioctls 970 * block device ioctls
952 */ 971 */