Lines Matching refs:srbcmd
2284 struct aac_srb *srbcmd; in aac_send_wellness_command() local
2306 srbcmd = (struct aac_srb *)fib_data(fibptr); in aac_send_wellness_command()
2308 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_send_wellness_command()
2309 srbcmd->channel = cpu_to_le32(vbus); in aac_send_wellness_command()
2310 srbcmd->id = cpu_to_le32(vid); in aac_send_wellness_command()
2311 srbcmd->lun = 0; in aac_send_wellness_command()
2312 srbcmd->flags = cpu_to_le32(SRB_DataOut); in aac_send_wellness_command()
2313 srbcmd->timeout = cpu_to_le32(10); in aac_send_wellness_command()
2314 srbcmd->retry_limit = 0; in aac_send_wellness_command()
2315 srbcmd->cdb_size = cpu_to_le32(12); in aac_send_wellness_command()
2316 srbcmd->count = cpu_to_le32(datasize); in aac_send_wellness_command()
2318 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb)); in aac_send_wellness_command()
2319 srbcmd->cdb[0] = BMIC_OUT; in aac_send_wellness_command()
2320 srbcmd->cdb[6] = WRITE_HOST_WELLNESS; in aac_send_wellness_command()
2323 sg64 = (struct sgmap64 *)&srbcmd->sg; in aac_send_wellness_command()