Skip to content

Commit

Permalink
scsi: scsi_ioctl: Factor SG_IO handling into a helper
Browse files Browse the repository at this point in the history
Split the SG_IO handler from the main scsi_ioctl() routine.

Link: https://lore.kernel.org/r/20210724072033.1284840-24-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
  • Loading branch information
Christoph Hellwig authored and Martin K. Petersen committed Jul 29, 2021
1 parent 2102a5c commit b2123d3
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions drivers/scsi/scsi_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,23 @@ static int scsi_cdrom_send_packet(struct request_queue *q,
return err;
}

static int scsi_ioctl_sg_io(struct request_queue *q, struct gendisk *disk,
fmode_t mode, void __user *argp)
{
struct sg_io_hdr hdr;
int error;

error = get_sg_io_hdr(&hdr, argp);
if (error)
return error;
error = sg_io(q, disk, &hdr, mode);
if (error == -EFAULT)
return error;
if (put_sg_io_hdr(&hdr, argp))
return -EFAULT;
return 0;
}

/**
* scsi_ioctl - Dispatch ioctl to scsi device
* @sdev: scsi device receiving ioctl
Expand All @@ -881,7 +898,6 @@ int scsi_ioctl(struct scsi_device *sdev, struct gendisk *disk, fmode_t mode,
{
struct request_queue *q = sdev->request_queue;
struct scsi_sense_hdr sense_hdr;
int error;

/* Check for deprecated ioctls ... all the ioctls which don't
* follow the new unique numbering scheme are deprecated */
Expand Down Expand Up @@ -912,21 +928,8 @@ int scsi_ioctl(struct scsi_device *sdev, struct gendisk *disk, fmode_t mode,
return sg_set_reserved_size(q, arg);
case SG_EMULATED_HOST:
return sg_emulated_host(q, arg);
case SG_IO: {
struct sg_io_hdr hdr;

error = get_sg_io_hdr(&hdr, arg);
if (error)
return error;

error = sg_io(q, disk, &hdr, mode);
if (error == -EFAULT)
return error;

if (put_sg_io_hdr(&hdr, arg))
return -EFAULT;
return 0;
}
case SG_IO:
return scsi_ioctl_sg_io(q, disk, mode, arg);
case SCSI_IOCTL_SEND_COMMAND:
return sg_scsi_ioctl(q, disk, mode, arg);
case CDROM_SEND_PACKET:
Expand Down

0 comments on commit b2123d3

Please sign in to comment.