Provides a means to send SSA-SCSI Serial Storage Architecture-Small Computer Systems Interface (SSA-SCSI) commands to an SSA physical disk drive that has been opened with the SSADISK_SCSIMODE extension flag.
The SSADISK_SCSI_CMD operation allows the caller to issue a SSA-SCSI command to a selected physical disk. The caller must be root or have an effective user ID of root to issue this ioctl.
The arg parameter for the SSADISK_ISALMgr_CMD operation is the address of an ssadisk_ioctl_parms structure. This structure is defined in the /usr/include/sys/ssadisk.h file.
The SSADISK_SCSI_CMD operation uses the following fields of the ssadisk_ioctl_parms structure:
The device driver has no knowledge of the contents of the CDB, simply passing it on to the hardware. The user should consult the relevent hardware documentation to determine what CDBs are valid for a particular SSA physical disk.
If the command was successfully sent to the adapter card then this operation returns a value of 0. Otherwise, a value of -1 is returned and the errno global variable set to one of the following values:
EIO | Indicates either an unrecoverable I/O error or that the scsi command was not recognised as valid by the hardware. |
EINVAL | The u0.scsi.cdb_length field in the ssadisk_ioctl_parms structure was set to an invalid length or the u0.scsi.direction field in the ssadisk_ioctl_parms structure was set to an invalid value. |
EPERM | Indicates that caller did not have an effective user ID (EUID) of 0. |
ENOMEM | Indicates that the device driver was unable to allocate or pin enough memory to complete the operation. |
If the return code is 0, the result field of the ssadisk_ioctl_parms structure is valid. This indicates whether the adapter was able to process the command successfully.
/dev/pdisk0, /dev/pdisk1,..., /dev/pdiskn | Provide an interface to allow SSA device drivers to access physical SSA disks. |
/dev/hdisk0, /dev/hdisk1,..., /dev/hdiskn | Provide an interface to allow SSA device drivers to access logical SSA disks. |
The SSA Adapter Device Driver, ssadisk SSA Disk Device Driver, SSA Subsystem Overview.