/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_module.h | 74 fmd_stat_t ms_loadtime; /* hrtime at which module was loaded */ 75 fmd_stat_t ms_snaptime; /* hrtime of recent stats snapshot */ 76 fmd_stat_t ms_accepted; /* total events accepted by module */ 77 fmd_stat_t ms_debugdrop; /* dropped debug messages */ 78 fmd_stat_t ms_memtotal; /* total space allocated by module */ 79 fmd_stat_t ms_memlimit; /* limit on space allocated by module */ 80 fmd_stat_t ms_buftotal; /* total space consumed by buffers */ 81 fmd_stat_t ms_buflimit; /* limit on space consumed by buffers */ 82 fmd_stat_t ms_thrtotal; /* total number of auxiliary threads */ 83 fmd_stat_t ms_thrlimit; /* limit on auxiliary threads */ [all …]
|
H A D | fmd_eventq.h | 38 fmd_stat_t eqs_dispatched; /* total events dispatched to queue */ 39 fmd_stat_t eqs_dequeued; /* total events dequeued by consumer */ 40 fmd_stat_t eqs_prdequeued; /* total protocol events dequeued */ 41 fmd_stat_t eqs_dropped; /* total events dropped by queue */ 42 fmd_stat_t eqs_wcnt; /* count of events waiting on queue */ 43 fmd_stat_t eqs_wtime; /* total wait time (pre-dispatch) */ 44 fmd_stat_t eqs_wlentime; /* total wait length * time product */ 45 fmd_stat_t eqs_wlastupdate; /* hrtime of last wait queue update */ 46 fmd_stat_t eqs_dtime; /* total dispatch time */ 47 fmd_stat_t eqs_dlastupdate; /* hrtime of last dispatch */
|
H A D | fmd_xprt.h | 75 fmd_stat_t xs_module; /* module name associated with xprt */ 76 fmd_stat_t xs_authority; /* authority associated with xprt */ 77 fmd_stat_t xs_state; /* state name associated with xprt */ 78 fmd_stat_t xs_received; /* number of events received by xprt */ 79 fmd_stat_t xs_discarded; /* number of events discarded by xprt */ 80 fmd_stat_t xs_retried; /* number of events retried by xprt */ 81 fmd_stat_t xs_replayed; /* number of events replayed by xprt */ 82 fmd_stat_t xs_lost; /* number of events lost by xprt */ 83 fmd_stat_t xs_timeouts; /* number of events recv'd with ttl=0 */ 84 fmd_stat_t xs_subscriptions; /* number of active subscriptions */
|
H A D | fmd.h | 54 fmd_stat_t ds_log_replayed; /* number of events replayed from log */ 55 fmd_stat_t ds_log_partials; /* number of events partially commit */ 56 fmd_stat_t ds_err_enospc; /* number of events w/ ENOSPC errlog */ 57 fmd_stat_t ds_flt_enospc; /* number of events w/ ENOSPC fltlog */ 58 fmd_stat_t ds_oth_enospc; /* number of events w/ ENOSPC others */ 59 fmd_stat_t ds_dr_gen; /* dynamic reconfiguration generation */ 60 fmd_stat_t ds_topo_gen; /* topology snapshot generation */ 61 fmd_stat_t ds_topo_drgen; /* topology DR generation */ 126 fmd_stat_t *d_errstats; /* program-wide error statistics */
|
H A D | fmd_ustat.h | 41 fmd_stat_t *uss_buf; /* array of statistic data */ 47 fmd_stat_t *usc_base; /* base of chunk allocation */ 54 const fmd_stat_t *use_stat; /* pointer to statistic data storage */ 82 extern fmd_stat_t *fmd_ustat_insert(fmd_ustat_t *, 83 uint_t, uint_t, fmd_stat_t *, fmd_stat_t **); 85 extern void fmd_ustat_delete(fmd_ustat_t *, uint_t, fmd_stat_t *);
|
H A D | fmd_ustat.c | 36 fmd_ustat_chunk_init(fmd_ustat_t *usp, fmd_stat_t *base, uint_t len) in fmd_ustat_chunk_init() 71 fmd_free(cp->usc_base, sizeof (fmd_stat_t) * cp->usc_len); in fmd_ustat_chunk_rele() 121 fmd_stat_t *sp; in fmd_ustat_snapshot() 126 uss->uss_buf = sp = malloc(sizeof (fmd_stat_t) * usp->us_nelems); in fmd_ustat_snapshot() 136 bcopy(ep->use_stat, sp, sizeof (fmd_stat_t)); in fmd_ustat_snapshot() 150 fmd_ustat_delete_locked(fmd_ustat_t *usp, uint_t n, fmd_stat_t *sp, int strfree) in fmd_ustat_delete_locked() 180 fmd_stat_t * 182 uint_t n, fmd_stat_t *template, fmd_stat_t **epp) in fmd_ustat_insert() 184 fmd_stat_t *stats, *sp; in fmd_ustat_insert() 193 sp = stats = fmd_alloc(sizeof (fmd_stat_t) * n, FMD_SLEEP); in fmd_ustat_insert() [all …]
|
H A D | fmd_sysevent.c | 72 fmd_stat_t dump_replay; 73 fmd_stat_t dump_lost; 74 fmd_stat_t bad_class; 75 fmd_stat_t bad_attr; 76 fmd_stat_t eagain; 453 sizeof (fmd_stat_t), (fmd_stat_t *)&sysev_stats); in sysev_init()
|
H A D | fmd_api.h | 101 } fmd_stat_t; typedef 167 extern fmd_stat_t *fmd_stat_create(fmd_hdl_t *, uint_t, uint_t, fmd_stat_t *); 168 extern void fmd_stat_destroy(fmd_hdl_t *, uint_t, fmd_stat_t *); 169 extern void fmd_stat_setstr(fmd_hdl_t *, fmd_stat_t *, const char *);
|
H A D | fmd_self.c | 36 fmd_stat_t nosub; 37 fmd_stat_t module; 213 sizeof (fmd_stat_t), (fmd_stat_t *)&self_stats); in self_init()
|
H A D | fmd.c | 373 fmd_stat_t *sp; in fmd_create() 530 sizeof (fmd_stat_t), (fmd_stat_t *)&_fmd_stats, NULL)) == NULL) in fmd_create() 542 dp->d_errstats = sp = fmd_zalloc(sizeof (fmd_stat_t) * in fmd_create() 669 sizeof (fmd_stat_t) * (EFMD_END - EFMD_UNKNOWN)); in fmd_destroy() 747 fmd_stat_t *sp; in fmd_err_replay()
|
/illumos-gate/usr/src/cmd/fm/modules/common/cpumem-retire/ |
H A D | cma.h | 91 fmd_stat_t cpu_flts; /* Successful offlines */ 92 fmd_stat_t cpu_repairs; /* Successful onlines */ 93 fmd_stat_t cpu_fails; /* Failed offlines/onlines */ 94 fmd_stat_t cpu_blfails; /* Failed blacklists */ 95 fmd_stat_t cpu_supp; /* Suppressed offlines/onlines */ 96 fmd_stat_t cpu_blsupp; /* Suppressed blacklists */ 97 fmd_stat_t page_flts; /* Successful page retires */ 98 fmd_stat_t page_repairs; /* Successful page unretires */ 99 fmd_stat_t page_fails; /* Failed page retires/unretires */ 100 fmd_stat_t page_supp; /* Suppressed retires/unretires */ [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/subsidiary/smf/ |
H A D | smf_diag.c | 66 fmd_stat_t swde_smf_diagnosed; 67 fmd_stat_t swde_smf_bad_class; 68 fmd_stat_t swde_smf_no_attr; 69 fmd_stat_t swde_smf_bad_attr; 70 fmd_stat_t swde_smf_bad_fmri; 71 fmd_stat_t swde_smf_no_uuid; 72 fmd_stat_t swde_smf_no_reason_short; 73 fmd_stat_t swde_smf_no_reason_long; 74 fmd_stat_t swde_smf_no_svcname; 75 fmd_stat_t swde_smf_admin_maint_drop; [all …]
|
H A D | smf_response.c | 40 fmd_stat_t swrp_smf_repairs; 41 fmd_stat_t swrp_smf_clears; 42 fmd_stat_t swrp_smf_closed; 43 fmd_stat_t swrp_smf_wrongclass; 44 fmd_stat_t swrp_smf_badlist; 45 fmd_stat_t swrp_smf_badresource; 46 fmd_stat_t swrp_smf_badclrevent; 47 fmd_stat_t swrp_smf_noloop; 48 fmd_stat_t swrp_smf_suppressed; 49 fmd_stat_t swrp_smf_cachefull; [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/subsidiary/panic/ |
H A D | panic_diag.c | 112 fmd_stat_t swde_panic_diagnosed; 113 fmd_stat_t swde_panic_badclass; 114 fmd_stat_t swde_panic_noattr; 115 fmd_stat_t swde_panic_unexpected_fm_panic; 116 fmd_stat_t swde_panic_badattr; 117 fmd_stat_t swde_panic_badfmri; 118 fmd_stat_t swde_panic_noinstance; 119 fmd_stat_t swde_panic_nouuid; 120 fmd_stat_t swde_panic_dupuuid; 121 fmd_stat_t swde_panic_nocase; [all …]
|
/illumos-gate/usr/src/cmd/fm/fmstat/common/ |
H A D | fmstat.c | 49 fmd_stat_t module; 50 fmd_stat_t authority; 51 fmd_stat_t state; 52 fmd_stat_t loadtime; 53 fmd_stat_t snaptime; 54 fmd_stat_t received; 55 fmd_stat_t discarded; 56 fmd_stat_t retried; 57 fmd_stat_t replayed; 58 fmd_stat_t lost; [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/ext-event-transport/ |
H A D | fmevt_outbound.c | 42 fmd_stat_t recv_calls; 43 fmd_stat_t recv_list; 44 fmd_stat_t recv_ireport; 45 fmd_stat_t recv_other; 46 fmd_stat_t fwd_success; 47 fmd_stat_t fwd_failure; 108 sizeof (fmd_stat_t), (fmd_stat_t *)&outbound_stats); in fmevt_init_outbound()
|
H A D | fmevt_inbound.c | 50 fmd_stat_t raw_callbacks; 51 fmd_stat_t raw_noattrlist; 52 fmd_stat_t raw_nodetector; 53 fmd_stat_t pp_bad_ruleset; 54 fmd_stat_t pp_explicitdrop; 55 fmd_stat_t pp_fallthrurule; 56 fmd_stat_t pp_fanoutmax; 57 fmd_stat_t pp_intldrop; 58 fmd_stat_t pp_badclass; 59 fmd_stat_t pp_nvlallocfail; [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/syslog-msgs/ |
H A D | syslog.c | 44 fmd_stat_t bad_vers; 45 fmd_stat_t bad_code; 46 fmd_stat_t log_err; 47 fmd_stat_t msg_err; 48 fmd_stat_t no_msg; 347 sizeof (fmd_stat_t), (fmd_stat_t *)&syslog_stats); in _fmd_init()
|
/illumos-gate/usr/src/cmd/fm/modules/common/event-transport/ |
H A D | etm.c | 128 fmd_stat_t read_ack; 129 fmd_stat_t read_bytes; 130 fmd_stat_t read_msg; 131 fmd_stat_t post_filter; 133 fmd_stat_t write_ack; 134 fmd_stat_t write_bytes; 135 fmd_stat_t write_msg; 136 fmd_stat_t send_filter; 138 fmd_stat_t error_protocol; 139 fmd_stat_t error_drop_read; [all …]
|
/illumos-gate/usr/src/cmd/fm/modules/common/sensor-transport/ |
H A D | sensor_transport.c | 64 fmd_stat_t st_bad_fmri; 65 fmd_stat_t st_topo_errs; 66 fmd_stat_t st_repairs; 469 sizeof (st_stats) / sizeof (fmd_stat_t), in _fmd_init() 470 (fmd_stat_t *)&st_stats); in _fmd_init()
|
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/common/ |
H A D | sw_main_cmn.c | 47 fmd_stat_t sw_recv_total; 48 fmd_stat_t sw_recv_match; 49 fmd_stat_t sw_recv_callback; 377 sizeof (fmd_stat_t), (fmd_stat_t *)&sw_stats); in sw_fmd_init()
|
/illumos-gate/usr/src/cmd/fm/modules/common/zfs-diagnosis/ |
H A D | zfs_de.c | 97 fmd_stat_t old_drops; 98 fmd_stat_t dev_drops; 99 fmd_stat_t vdev_drops; 100 fmd_stat_t import_drops; 101 fmd_stat_t resource_drops; 102 fmd_stat_t pool_drops; 1106 sizeof (fmd_stat_t), (fmd_stat_t *)&zfs_stats); in _fmd_init()
|
/illumos-gate/usr/src/cmd/fm/modules/common/disk-transport/ |
H A D | disk_transport.c | 60 fmd_stat_t dropped; 283 sizeof (dt_stats) / sizeof (fmd_stat_t), in _fmd_init() 284 (fmd_stat_t *)&dt_stats); in _fmd_init()
|
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | stats_impl.h | 36 fmd_stat_t fmd_stats;
|
/illumos-gate/usr/src/cmd/fm/modules/common/ip-transport/ |
H A D | ip.c | 88 fmd_stat_t ips_accfail; /* failed accepts */ 89 fmd_stat_t ips_badmagic; /* invalid packet headers */ 90 fmd_stat_t ips_packfail; /* failed packs */ 91 fmd_stat_t ips_unpackfail; /* failed unpacks */ 964 sizeof (ip_stat) / sizeof (fmd_stat_t), (fmd_stat_t *)&ip_stat); in _fmd_init()
|