Lines Matching refs:srbcmd
2308 struct aac_srb *srbcmd; in aac_send_wellness_command() local
2330 srbcmd = (struct aac_srb *)fib_data(fibptr); in aac_send_wellness_command()
2332 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); in aac_send_wellness_command()
2333 srbcmd->channel = cpu_to_le32(vbus); in aac_send_wellness_command()
2334 srbcmd->id = cpu_to_le32(vid); in aac_send_wellness_command()
2335 srbcmd->lun = 0; in aac_send_wellness_command()
2336 srbcmd->flags = cpu_to_le32(SRB_DataOut); in aac_send_wellness_command()
2337 srbcmd->timeout = cpu_to_le32(10); in aac_send_wellness_command()
2338 srbcmd->retry_limit = 0; in aac_send_wellness_command()
2339 srbcmd->cdb_size = cpu_to_le32(12); in aac_send_wellness_command()
2340 srbcmd->count = cpu_to_le32(datasize); in aac_send_wellness_command()
2342 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb)); in aac_send_wellness_command()
2343 srbcmd->cdb[0] = BMIC_OUT; in aac_send_wellness_command()
2344 srbcmd->cdb[6] = WRITE_HOST_WELLNESS; in aac_send_wellness_command()
2347 sg64 = (struct sgmap64 *)&srbcmd->sg; in aac_send_wellness_command()