1. NAME

scsi_ioctl - Dispatch ioctl to scsi device

2. SYNOPSIS

int scsi_ioctl(struct scsi_device *  sdev , int  cmd , void __user *  arg );

3. ARGUMENTS

sdev
    scsi device receiving ioctl

cmd
    which ioctl is it

arg
    data associated with ioctl

4. DESCRIPTION

The scsi_ioctl function differs from most ioctls in that it does not take a major/minor number as the dev field. Rather, it takes a pointer to a struct scsi_device.

5. AUTHORS

James Bottomley <>
    Author.

Rob Landley <>
    Author.

6. COPYRIGHT