Lines Matching refs:srbcmd
2156 struct aac_srb *srbcmd; in aac_send_wellness_command() local
2178 srbcmd = (struct aac_srb *)fib_data(fibptr); in aac_send_wellness_command()
2180 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_send_wellness_command()
2181 srbcmd->channel = cpu_to_le32(vbus); in aac_send_wellness_command()
2182 srbcmd->id = cpu_to_le32(vid); in aac_send_wellness_command()
2183 srbcmd->lun = 0; in aac_send_wellness_command()
2184 srbcmd->flags = cpu_to_le32(SRB_DataOut); in aac_send_wellness_command()
2185 srbcmd->timeout = cpu_to_le32(10); in aac_send_wellness_command()
2186 srbcmd->retry_limit = 0; in aac_send_wellness_command()
2187 srbcmd->cdb_size = cpu_to_le32(12); in aac_send_wellness_command()
2188 srbcmd->count = cpu_to_le32(datasize); in aac_send_wellness_command()
2190 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb)); in aac_send_wellness_command()
2191 srbcmd->cdb[0] = BMIC_OUT; in aac_send_wellness_command()
2192 srbcmd->cdb[6] = WRITE_HOST_WELLNESS; in aac_send_wellness_command()
2195 sg64 = (struct sgmap64 *)&srbcmd->sg; in aac_send_wellness_command()