Home
last modified time | relevance | path

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

/drivers/scsi/aacraid/
Dcommctrl.c479 struct aac_srb *srbcmd = NULL; in aac_send_raw_srb() local
514 srbcmd = (struct aac_srb*) fib_data(srbfib); in aac_send_raw_srb()
546 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); // Force this in aac_send_raw_srb()
547 srbcmd->channel = cpu_to_le32(user_srbcmd->channel); in aac_send_raw_srb()
548 srbcmd->id = cpu_to_le32(user_srbcmd->id); in aac_send_raw_srb()
549 srbcmd->lun = cpu_to_le32(user_srbcmd->lun); in aac_send_raw_srb()
550 srbcmd->timeout = cpu_to_le32(user_srbcmd->timeout); in aac_send_raw_srb()
551 srbcmd->flags = cpu_to_le32(flags); in aac_send_raw_srb()
552 srbcmd->retry_limit = 0; // Obsolete parameter in aac_send_raw_srb()
553 srbcmd->cdb_size = cpu_to_le32(user_srbcmd->cdb_size); in aac_send_raw_srb()
[all …]
Daachba.c1402 struct aac_srb * srbcmd; in aac_scsi_common() local
1423 srbcmd = (struct aac_srb*) fib_data(fib); in aac_scsi_common()
1424 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_scsi_common()
1425 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd))); in aac_scsi_common()
1426 srbcmd->id = cpu_to_le32(scmd_id(cmd)); in aac_scsi_common()
1427 srbcmd->lun = cpu_to_le32(cmd->device->lun); in aac_scsi_common()
1428 srbcmd->flags = cpu_to_le32(flag); in aac_scsi_common()
1432 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds in aac_scsi_common()
1433 srbcmd->retry_limit = 0; /* Obsolete parameter */ in aac_scsi_common()
1434 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len); in aac_scsi_common()
[all …]