Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/scsi/aacraid/
Dcommctrl.c470 struct aac_srb *srbcmd = NULL; in aac_send_raw_srb() local
505 srbcmd = (struct aac_srb*) fib_data(srbfib); in aac_send_raw_srb()
537 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); // Force this in aac_send_raw_srb()
538 srbcmd->channel = cpu_to_le32(user_srbcmd->channel); in aac_send_raw_srb()
539 srbcmd->id = cpu_to_le32(user_srbcmd->id); in aac_send_raw_srb()
540 srbcmd->lun = cpu_to_le32(user_srbcmd->lun); in aac_send_raw_srb()
541 srbcmd->timeout = cpu_to_le32(user_srbcmd->timeout); in aac_send_raw_srb()
542 srbcmd->flags = cpu_to_le32(flags); in aac_send_raw_srb()
543 srbcmd->retry_limit = 0; // Obsolete parameter in aac_send_raw_srb()
544 srbcmd->cdb_size = cpu_to_le32(user_srbcmd->cdb_size); in aac_send_raw_srb()
[all …]
Daachba.c1410 struct aac_srb * srbcmd; in aac_scsi_common() local
1431 srbcmd = (struct aac_srb*) fib_data(fib); in aac_scsi_common()
1432 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_scsi_common()
1433 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd))); in aac_scsi_common()
1434 srbcmd->id = cpu_to_le32(scmd_id(cmd)); in aac_scsi_common()
1435 srbcmd->lun = cpu_to_le32(cmd->device->lun); in aac_scsi_common()
1436 srbcmd->flags = cpu_to_le32(flag); in aac_scsi_common()
1440 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds in aac_scsi_common()
1441 srbcmd->retry_limit = 0; /* Obsolete parameter */ in aac_scsi_common()
1442 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len); in aac_scsi_common()
[all …]