Home
last modified time | relevance | path

Searched refs:srbcmd (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/scsi/aacraid/
H A Dcommctrl.c483 struct aac_srb *srbcmd = NULL; in aac_send_raw_srb() local
631 srbcmd = (struct aac_srb *) fib_data(srbfib); in aac_send_raw_srb()
635 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); // Force this in aac_send_raw_srb()
636 srbcmd->channel = cpu_to_le32(user_srbcmd->channel); in aac_send_raw_srb()
637 srbcmd->id = cpu_to_le32(user_srbcmd->id); in aac_send_raw_srb()
638 srbcmd->lun = cpu_to_le32(user_srbcmd->lun); in aac_send_raw_srb()
639 srbcmd->timeout = cpu_to_le32(user_srbcmd->timeout); in aac_send_raw_srb()
640 srbcmd->flags = cpu_to_le32(flags); in aac_send_raw_srb()
641 srbcmd->retry_limit = 0; // Obsolete parameter in aac_send_raw_srb()
642 srbcmd->cdb_size = cpu_to_le32(user_srbcmd->cdb_size); in aac_send_raw_srb()
[all …]
H A Daachba.c1494 struct aac_srb * srbcmd; in aac_scsi_common() local
1516 srbcmd = (struct aac_srb*) fib_data(fib); in aac_scsi_common()
1517 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_scsi_common()
1518 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd))); in aac_scsi_common()
1519 srbcmd->id = cpu_to_le32(scmd_id(cmd)); in aac_scsi_common()
1520 srbcmd->lun = cpu_to_le32(cmd->device->lun); in aac_scsi_common()
1521 srbcmd->flags = cpu_to_le32(flag); in aac_scsi_common()
1525 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds in aac_scsi_common()
1526 srbcmd->retry_limit = 0; /* Obsolete parameter */ in aac_scsi_common()
1527 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len); in aac_scsi_common()
[all …]