Lines Matching full:io
10 atomic64_t max_sgl; /* Max # SGLs for any IO */
11 atomic64_t max_time; /* Max time to process IO */
12 atomic64_t max_qtime; /* Max time to Queue the IO */
13 atomic64_t max_cmpl_time; /* Max time to complete the IO */
15 atomic64_t max_io_sz; /* Max IO Size */
16 atomic64_t compl; /* IO Completions */
17 atomic64_t fail; /* IO Failures */
21 atomic64_t io_not_found; /* IO Not Found */
30 atomic64_t io_not_found;/* Abort IO Not Found */
52 atomic64_t io_errs; /* Firmware IO Firmware Errors */
69 atomic64_t wq_alloc_fail; /* IO WQ desc alloc failure */
80 struct snic_io_stats io; member
91 /* Auxillary function to update active IO counter */
95 struct snic_io_stats *io = &s_stats->io; in snic_stats_update_active_ios() local
98 nr_active_ios = atomic64_read(&io->active); in snic_stats_update_active_ios()
99 if (atomic64_read(&io->max_active) < nr_active_ios) in snic_stats_update_active_ios()
100 atomic64_set(&io->max_active, nr_active_ios); in snic_stats_update_active_ios()
102 atomic64_inc(&io->num_ios); in snic_stats_update_active_ios()
105 /* Auxillary function to update IO completion counter */
109 atomic64_dec(&s_stats->io.active); in snic_stats_update_io_cmpl()
113 atomic64_inc(&s_stats->io.compl); in snic_stats_update_io_cmpl()