Lines Matching refs:tgt

1247 	unsigned char *tgt, ch;  in blogic_rdconfig()  local
1257 tgt = adapter->model; in blogic_rdconfig()
1258 *tgt++ = 'B'; in blogic_rdconfig()
1259 *tgt++ = 'T'; in blogic_rdconfig()
1260 *tgt++ = '-'; in blogic_rdconfig()
1262 *tgt++ = fpinfo->model[i]; in blogic_rdconfig()
1263 *tgt++ = '\0'; in blogic_rdconfig()
1377 tgt = adapter->model; in blogic_rdconfig()
1378 *tgt++ = 'B'; in blogic_rdconfig()
1379 *tgt++ = 'T'; in blogic_rdconfig()
1380 *tgt++ = '-'; in blogic_rdconfig()
1385 *tgt++ = ch; in blogic_rdconfig()
1387 *tgt++ = '\0'; in blogic_rdconfig()
1391 tgt = adapter->fw_ver; in blogic_rdconfig()
1392 *tgt++ = id.fw_ver_digit1; in blogic_rdconfig()
1393 *tgt++ = '.'; in blogic_rdconfig()
1394 *tgt++ = id.fw_ver_digit2; in blogic_rdconfig()
1396 *tgt++ = fw_ver_digit3; in blogic_rdconfig()
1397 *tgt = '\0'; in blogic_rdconfig()
1408 *tgt++ = fw_ver_letter; in blogic_rdconfig()
1409 *tgt = '\0'; in blogic_rdconfig()
3337 int tgt; in blogic_show_info() local
3349 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3350 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3353 …seq_printf(m, " %2d %s", tgt, (tgt_flags->tagq_ok ? (tgt_flags->tagq_active ? " Active" : (ada… in blogic_show_info()
3357 … %3u %9u %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt].cmds_tried… in blogic_show_info()
3362 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3363 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3366 seq_printf(m, " %2d %9u %9u", tgt, tgt_stats[tgt].read_cmds, tgt_stats[tgt].write_cmds); in blogic_show_info()
3367 if (tgt_stats[tgt].bytesread.billions > 0) in blogic_show_info()
3368 seq_printf(m, " %9u%09u", tgt_stats[tgt].bytesread.billions, tgt_stats[tgt].bytesread.units); in blogic_show_info()
3370 seq_printf(m, " %9u", tgt_stats[tgt].bytesread.units); in blogic_show_info()
3371 if (tgt_stats[tgt].byteswritten.billions > 0) in blogic_show_info()
3372 …seq_printf(m, " %9u%09u\n", tgt_stats[tgt].byteswritten.billions, tgt_stats[tgt].byteswritten.un… in blogic_show_info()
3374 seq_printf(m, " %9u\n", tgt_stats[tgt].byteswritten.units); in blogic_show_info()
3379 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3380 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3384 " %2d Read %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3385 tgt_stats[tgt].read_sz_buckets[0], in blogic_show_info()
3386 …tgt_stats[tgt].read_sz_buckets[1], tgt_stats[tgt].read_sz_buckets[2], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3388 " %2d Write %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3389 tgt_stats[tgt].write_sz_buckets[0], in blogic_show_info()
3390 …tgt_stats[tgt].write_sz_buckets[1], tgt_stats[tgt].write_sz_buckets[2], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3395 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3396 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3400 " %2d Read %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3401 tgt_stats[tgt].read_sz_buckets[5], in blogic_show_info()
3402 …tgt_stats[tgt].read_sz_buckets[6], tgt_stats[tgt].read_sz_buckets[7], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3404 " %2d Write %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3405 tgt_stats[tgt].write_sz_buckets[5], in blogic_show_info()
3406 …tgt_stats[tgt].write_sz_buckets[6], tgt_stats[tgt].write_sz_buckets[7], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3415 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3416 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3420 tgt, tgt_stats[tgt].aborts_request, in blogic_show_info()
3421 tgt_stats[tgt].aborts_tried, in blogic_show_info()
3422 tgt_stats[tgt].aborts_done, in blogic_show_info()
3423 tgt_stats[tgt].bdr_request, in blogic_show_info()
3424 tgt_stats[tgt].bdr_tried, in blogic_show_info()
3425 tgt_stats[tgt].bdr_done, in blogic_show_info()
3426 tgt_stats[tgt].adapter_reset_req, in blogic_show_info()
3427 tgt_stats[tgt].adapter_reset_attempt, in blogic_show_info()
3428 tgt_stats[tgt].adapter_reset_done); in blogic_show_info()