Lines Matching full:io
24 atomic64_t max_sgl; /* Max # SGLs for any IO */
25 atomic64_t max_time; /* Max time to process IO */
26 atomic64_t max_qtime; /* Max time to Queue the IO */
27 atomic64_t max_cmpl_time; /* Max time to complete the IO */
29 atomic64_t max_io_sz; /* Max IO Size */
30 atomic64_t compl; /* IO Completions */
31 atomic64_t fail; /* IO Failures */
35 atomic64_t io_not_found; /* IO Not Found */
44 atomic64_t io_not_found;/* Abort IO Not Found */
66 atomic64_t io_errs; /* Firmware IO Firmware Errors */
83 atomic64_t wq_alloc_fail; /* IO WQ desc alloc failure */
94 struct snic_io_stats io; member
105 /* Auxillary function to update active IO counter */
109 struct snic_io_stats *io = &s_stats->io; in snic_stats_update_active_ios() local
112 nr_active_ios = atomic64_read(&io->active); in snic_stats_update_active_ios()
113 if (atomic64_read(&io->max_active) < nr_active_ios) in snic_stats_update_active_ios()
114 atomic64_set(&io->max_active, nr_active_ios); in snic_stats_update_active_ios()
116 atomic64_inc(&io->num_ios); in snic_stats_update_active_ios()
119 /* Auxillary function to update IO completion counter */
123 atomic64_dec(&s_stats->io.active); in snic_stats_update_io_cmpl()
127 atomic64_inc(&s_stats->io.compl); in snic_stats_update_io_cmpl()