Lines Matching refs:tgt

1246 	unsigned char *tgt, ch;  in blogic_rdconfig()  local
1256 tgt = adapter->model; in blogic_rdconfig()
1257 *tgt++ = 'B'; in blogic_rdconfig()
1258 *tgt++ = 'T'; in blogic_rdconfig()
1259 *tgt++ = '-'; in blogic_rdconfig()
1261 *tgt++ = fpinfo->model[i]; in blogic_rdconfig()
1262 *tgt++ = '\0'; in blogic_rdconfig()
1376 tgt = adapter->model; in blogic_rdconfig()
1377 *tgt++ = 'B'; in blogic_rdconfig()
1378 *tgt++ = 'T'; in blogic_rdconfig()
1379 *tgt++ = '-'; in blogic_rdconfig()
1384 *tgt++ = ch; in blogic_rdconfig()
1386 *tgt++ = '\0'; in blogic_rdconfig()
1390 tgt = adapter->fw_ver; in blogic_rdconfig()
1391 *tgt++ = id.fw_ver_digit1; in blogic_rdconfig()
1392 *tgt++ = '.'; in blogic_rdconfig()
1393 *tgt++ = id.fw_ver_digit2; in blogic_rdconfig()
1395 *tgt++ = fw_ver_digit3; in blogic_rdconfig()
1396 *tgt = '\0'; in blogic_rdconfig()
1407 *tgt++ = fw_ver_letter; in blogic_rdconfig()
1408 *tgt = '\0'; in blogic_rdconfig()
3335 int tgt; in blogic_show_info() local
3347 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3348 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3351 …seq_printf(m, " %2d %s", tgt, (tgt_flags->tagq_ok ? (tgt_flags->tagq_active ? " Active" : (ada… in blogic_show_info()
3355 … %3u %9u %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt].cmds_tried… in blogic_show_info()
3360 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3361 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3364 seq_printf(m, " %2d %9u %9u", tgt, tgt_stats[tgt].read_cmds, tgt_stats[tgt].write_cmds); in blogic_show_info()
3365 if (tgt_stats[tgt].bytesread.billions > 0) in blogic_show_info()
3366 seq_printf(m, " %9u%09u", tgt_stats[tgt].bytesread.billions, tgt_stats[tgt].bytesread.units); in blogic_show_info()
3368 seq_printf(m, " %9u", tgt_stats[tgt].bytesread.units); in blogic_show_info()
3369 if (tgt_stats[tgt].byteswritten.billions > 0) in blogic_show_info()
3370 …seq_printf(m, " %9u%09u\n", tgt_stats[tgt].byteswritten.billions, tgt_stats[tgt].byteswritten.un… in blogic_show_info()
3372 seq_printf(m, " %9u\n", tgt_stats[tgt].byteswritten.units); in blogic_show_info()
3377 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3378 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3382 " %2d Read %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3383 tgt_stats[tgt].read_sz_buckets[0], in blogic_show_info()
3384 …tgt_stats[tgt].read_sz_buckets[1], tgt_stats[tgt].read_sz_buckets[2], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3386 " %2d Write %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3387 tgt_stats[tgt].write_sz_buckets[0], in blogic_show_info()
3388 …tgt_stats[tgt].write_sz_buckets[1], tgt_stats[tgt].write_sz_buckets[2], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3393 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3394 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3398 " %2d Read %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3399 tgt_stats[tgt].read_sz_buckets[5], in blogic_show_info()
3400 …tgt_stats[tgt].read_sz_buckets[6], tgt_stats[tgt].read_sz_buckets[7], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3402 " %2d Write %9u %9u %9u %9u %9u\n", tgt, in blogic_show_info()
3403 tgt_stats[tgt].write_sz_buckets[5], in blogic_show_info()
3404 …tgt_stats[tgt].write_sz_buckets[6], tgt_stats[tgt].write_sz_buckets[7], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3413 for (tgt = 0; tgt < adapter->maxdev; tgt++) { in blogic_show_info()
3414 struct blogic_tgt_flags *tgt_flags = &adapter->tgt_flags[tgt]; in blogic_show_info()
3418 tgt, tgt_stats[tgt].aborts_request, in blogic_show_info()
3419 tgt_stats[tgt].aborts_tried, in blogic_show_info()
3420 tgt_stats[tgt].aborts_done, in blogic_show_info()
3421 tgt_stats[tgt].bdr_request, in blogic_show_info()
3422 tgt_stats[tgt].bdr_tried, in blogic_show_info()
3423 tgt_stats[tgt].bdr_done, in blogic_show_info()
3424 tgt_stats[tgt].adapter_reset_req, in blogic_show_info()
3425 tgt_stats[tgt].adapter_reset_attempt, in blogic_show_info()
3426 tgt_stats[tgt].adapter_reset_done); in blogic_show_info()