Lines Matching defs:tm_req
2272 struct mpi3_scsi_task_mgmt_request tm_req;
2321 memset(&tm_req, 0, sizeof(tm_req));
2331 tm_req.dev_handle = cpu_to_le16(handle);
2332 tm_req.task_type = MPI3_SCSITASKMGMT_TASKTYPE_TARGET_RESET;
2333 tm_req.host_tag = cpu_to_le16(drv_cmd->host_tag);
2334 tm_req.task_host_tag = cpu_to_le16(MPI3MR_HOSTTAG_INVALID);
2335 tm_req.function = MPI3_FUNCTION_SCSI_TASK_MGMT;
2338 retval = mpi3mr_admin_request_post(mrioc, &tm_req, sizeof(tm_req), 1);
3650 struct mpi3_scsi_task_mgmt_request tm_req;
3668 memset(&tm_req, 0, sizeof(tm_req));
3686 tm_req.dev_handle = cpu_to_le16(handle);
3687 tm_req.task_type = tm_type;
3688 tm_req.host_tag = cpu_to_le16(htag);
3690 int_to_scsilun(lun, (struct scsi_lun *)tm_req.lun);
3691 tm_req.function = MPI3_FUNCTION_SCSI_TASK_MGMT;
3717 retval = mpi3mr_admin_request_post(mrioc, &tm_req, sizeof(tm_req), 1);
3732 dprint_dump_req(&tm_req, sizeof(tm_req)/4);