• Home
  • Raw
  • Download

Lines Matching refs:tgt_stats

2757 			blogic_inc_count(&adapter->tgt_stats[tgt_id].bdr_done);  in blogic_process_ccbs()
2812 adapter->tgt_stats[ccb->tgt_id] in blogic_process_ccbs()
2821 blogic_inc_count(&adapter->tgt_stats[ccb->tgt_id].aborts_done); in blogic_process_ccbs()
2828 adapter->tgt_stats[ccb->tgt_id] in blogic_process_ccbs()
2989 adapter->tgt_stats[ccb->tgt_id].cmds_tried++; in blogic_write_outbox()
3004 struct blogic_tgt_stats *stats = &adapter->tgt_stats[id]; in blogic_hostreset()
3028 struct blogic_tgt_stats *tgt_stats = adapter->tgt_stats; in blogic_qcmd_lck() local
3101 tgt_stats[tgt_id].read_cmds++; in blogic_qcmd_lck()
3102 blogic_addcount(&tgt_stats[tgt_id].bytesread, buflen); in blogic_qcmd_lck()
3103 blogic_incszbucket(tgt_stats[tgt_id].read_sz_buckets, buflen); in blogic_qcmd_lck()
3108 tgt_stats[tgt_id].write_cmds++; in blogic_qcmd_lck()
3109 blogic_addcount(&tgt_stats[tgt_id].byteswritten, buflen); in blogic_qcmd_lck()
3110 blogic_incszbucket(tgt_stats[tgt_id].write_sz_buckets, buflen); in blogic_qcmd_lck()
3225 tgt_stats[tgt_id].cmds_tried++; in blogic_qcmd_lck()
3252 blogic_inc_count(&adapter->tgt_stats[tgt_id].aborts_request); in DEF_SCSI_QCMD()
3292 blogic_inc_count(&adapter->tgt_stats[tgt_id].aborts_tried); in DEF_SCSI_QCMD()
3305 blogic_inc_count(&adapter->tgt_stats[tgt_id].aborts_tried); in DEF_SCSI_QCMD()
3466 struct blogic_tgt_stats *tgt_stats; in blogic_write_info() local
3468 tgt_stats = adapter->tgt_stats; in blogic_write_info()
3471 memset(tgt_stats, 0, BLOGIC_MAXDEV * sizeof(struct blogic_tgt_stats)); in blogic_write_info()
3478 struct blogic_tgt_stats *tgt_stats; in blogic_show_info() local
3481 tgt_stats = adapter->tgt_stats; in blogic_show_info()
3499 … %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt].cmds_tried, tgt_stats[tgt… in blogic_show_info()
3508 seq_printf(m, " %2d %9u %9u", tgt, tgt_stats[tgt].read_cmds, tgt_stats[tgt].write_cmds); in blogic_show_info()
3509 if (tgt_stats[tgt].bytesread.billions > 0) in blogic_show_info()
3510 seq_printf(m, " %9u%09u", tgt_stats[tgt].bytesread.billions, tgt_stats[tgt].bytesread.units); in blogic_show_info()
3512 seq_printf(m, " %9u", tgt_stats[tgt].bytesread.units); in blogic_show_info()
3513 if (tgt_stats[tgt].byteswritten.billions > 0) in blogic_show_info()
3514 …seq_printf(m, " %9u%09u\n", tgt_stats[tgt].byteswritten.billions, tgt_stats[tgt].byteswritten.un… in blogic_show_info()
3516 seq_printf(m, " %9u\n", tgt_stats[tgt].byteswritten.units); in blogic_show_info()
3527 tgt_stats[tgt].read_sz_buckets[0], in blogic_show_info()
3528tgt_stats[tgt].read_sz_buckets[1], tgt_stats[tgt].read_sz_buckets[2], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3531 tgt_stats[tgt].write_sz_buckets[0], in blogic_show_info()
3532tgt_stats[tgt].write_sz_buckets[1], tgt_stats[tgt].write_sz_buckets[2], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3543 tgt_stats[tgt].read_sz_buckets[5], in blogic_show_info()
3544tgt_stats[tgt].read_sz_buckets[6], tgt_stats[tgt].read_sz_buckets[7], tgt_stats[tgt].read_sz_bucke… in blogic_show_info()
3547 tgt_stats[tgt].write_sz_buckets[5], in blogic_show_info()
3548tgt_stats[tgt].write_sz_buckets[6], tgt_stats[tgt].write_sz_buckets[7], tgt_stats[tgt].write_sz_bu… in blogic_show_info()
3562 tgt, tgt_stats[tgt].aborts_request, in blogic_show_info()
3563 tgt_stats[tgt].aborts_tried, in blogic_show_info()
3564 tgt_stats[tgt].aborts_done, in blogic_show_info()
3565 tgt_stats[tgt].bdr_request, in blogic_show_info()
3566 tgt_stats[tgt].bdr_tried, in blogic_show_info()
3567 tgt_stats[tgt].bdr_done, in blogic_show_info()
3568 tgt_stats[tgt].adapter_reset_req, in blogic_show_info()
3569 tgt_stats[tgt].adapter_reset_attempt, in blogic_show_info()
3570 tgt_stats[tgt].adapter_reset_done); in blogic_show_info()