Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/scsi/aacraid/
Dcommctrl.c469 struct aac_srb *srbcmd = NULL; in aac_send_raw_srb() local
502 srbcmd = (struct aac_srb*) fib_data(srbfib); in aac_send_raw_srb()
533 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); // Force this in aac_send_raw_srb()
534 srbcmd->channel = cpu_to_le32(user_srbcmd->channel); in aac_send_raw_srb()
535 srbcmd->id = cpu_to_le32(user_srbcmd->id); in aac_send_raw_srb()
536 srbcmd->lun = cpu_to_le32(user_srbcmd->lun); in aac_send_raw_srb()
537 srbcmd->timeout = cpu_to_le32(user_srbcmd->timeout); in aac_send_raw_srb()
538 srbcmd->flags = cpu_to_le32(flags); in aac_send_raw_srb()
539 srbcmd->retry_limit = 0; // Obsolete parameter in aac_send_raw_srb()
540 srbcmd->cdb_size = cpu_to_le32(user_srbcmd->cdb_size); in aac_send_raw_srb()
[all …]
Daachba.c1144 struct aac_srb * srbcmd; in aac_scsi_common() local
1165 srbcmd = (struct aac_srb*) fib_data(fib); in aac_scsi_common()
1166 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_scsi_common()
1167 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd))); in aac_scsi_common()
1168 srbcmd->id = cpu_to_le32(scmd_id(cmd)); in aac_scsi_common()
1169 srbcmd->lun = cpu_to_le32(cmd->device->lun); in aac_scsi_common()
1170 srbcmd->flags = cpu_to_le32(flag); in aac_scsi_common()
1174 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds in aac_scsi_common()
1175 srbcmd->retry_limit = 0; /* Obsolete parameter */ in aac_scsi_common()
1176 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len); in aac_scsi_common()
[all …]