• Home
  • Raw
  • Download

Lines Matching +full:io +full:- +full:reset

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 */
49 atomic64_t dev_resets; /* Device Reset Counter */
50 atomic64_t dev_reset_fail; /* Device Reset Failures */
51 atomic64_t dev_reset_aborts; /* Device Reset Aborts */
52 atomic64_t dev_reset_tmo; /* Device Reset Timeout */
53 atomic64_t dev_reset_terms; /* Device Reset terminate */
55 atomic64_t hba_reset_cmpl; /* hba/firmware reset completions */
58 atomic64_t snic_reset_compl; /* snic reset completions */
59 atomic64_t snic_reset_fail; /* snic reset failures */
66 atomic64_t io_errs; /* Firmware IO Firmware Errors */
82 atomic64_t devrst_wq_alloc_fail;/* Device Reset - WQ desc alloc fail */
83 atomic64_t wq_alloc_fail; /* IO WQ desc alloc failure */
94 struct snic_io_stats io; member
96 struct snic_reset_stats reset; 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()
124 if (unlikely(atomic64_read(&s_stats->io_cmpl_skip))) in snic_stats_update_io_cmpl()
125 atomic64_dec(&s_stats->io_cmpl_skip); in snic_stats_update_io_cmpl()
127 atomic64_inc(&s_stats->io.compl); in snic_stats_update_io_cmpl()