Lines Matching defs:pframe
2028 struct mvumi_msg_frame *pframe;
2032 pframe = cmd->frame;
2033 pframe->device_id = ((unsigned short) scmd->device->id) |
2035 pframe->cmd_flag = 0;
2039 pframe->cmd_flag |= CMD_FLAG_NON_DATA;
2042 pframe->cmd_flag |= CMD_FLAG_DATA_IN;
2045 pframe->cmd_flag |= CMD_FLAG_DATA_OUT;
2054 pframe->cdb_length = scmd->cmd_len;
2055 memcpy(pframe->cdb, scmd->cmnd, pframe->cdb_length);
2056 pframe->req_function = CL_FUN_SCSI_CMD;
2058 if (mvumi_make_sgl(mhba, scmd, &pframe->payload[0],
2059 &pframe->sg_counts))
2062 pframe->data_transfer_length = scsi_bufflen(scmd);
2064 pframe->sg_counts = 0;
2065 pframe->data_transfer_length = 0;