Searched refs:srbcmd (Results 1 – 2 of 2) sorted by relevance
483 struct aac_srb *srbcmd = NULL; in aac_send_raw_srb() local631 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 …]
1494 struct aac_srb * srbcmd; in aac_scsi_common() local1516 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 …]