Home
last modified time | relevance | path

Searched refs:counter_u64_t (Results 1 – 25 of 89) sorted by relevance

1234

/freebsd/sys/sys/
H A Dvmmeter.h80 counter_u64_t v_swtch; /* (p) context switches */
81 counter_u64_t v_trap; /* (p) calls to trap */
82 counter_u64_t v_syscall; /* (p) calls to syscall() */
83 counter_u64_t v_intr; /* (p) device interrupts */
84 counter_u64_t v_soft; /* (p) software interrupts */
94 counter_u64_t v_swapin; /* (p) swap pager pageins */
95 counter_u64_t v_swapout; /* (p) swap pager pageouts */
110 counter_u64_t v_tfree; /* (p) total pages freed */
114 counter_u64_t v_forks; /* (p) fork() calls */
115 counter_u64_t v_vforks; /* (p) vfork() calls */
[all …]
H A Dcounter.h32 typedef uint64_t *counter_u64_t; typedef
37 counter_u64_t counter_u64_alloc(int);
38 void counter_u64_free(counter_u64_t);
40 void counter_u64_zero(counter_u64_t);
41 uint64_t counter_u64_fetch(counter_u64_t);
67 counter_u64_t cr_rate; /* Events since last second */
82 counter_u64_t __read_mostly c = EARLY_COUNTER; \
H A Dpmc.h562 counter_u64_t pm_intr_ignored; /* #interrupts ignored */
563 counter_u64_t pm_intr_processed; /* #interrupts processed */
564 counter_u64_t pm_intr_bufferfull; /* #interrupts with ENOSPC */
565 counter_u64_t pm_syscalls; /* #syscalls */
566 counter_u64_t pm_syscall_errors; /* #syscalls with errors */
567 counter_u64_t pm_buffer_requests; /* #buffer requests */
568 counter_u64_t pm_buffer_requests_failed; /* #failed buffer requests */
569 counter_u64_t pm_log_sweeps; /* #sample buffer processing
571 counter_u64_t pm_merges; /* merged k+u */
572 counter_u64_t pm_overwrites; /* UR overwrites */
[all …]
/freebsd/sys/dev/ena/
H A Dena.h275 counter_u64_t cnt;
276 counter_u64_t bytes;
279 counter_u64_t doorbells;
282 counter_u64_t collapse;
291 counter_u64_t cnt;
292 counter_u64_t bytes;
294 counter_u64_t csum_bad;
390 counter_u64_t rx_bytes;
391 counter_u64_t tx_bytes;
393 counter_u64_t rx_drops;
[all …]
/freebsd/sys/dev/cxgbe/
H A Dt4_mp_ring.h49 counter_u64_t dropped;
50 counter_u64_t consumer[4];
51 counter_u64_t not_consumer;
52 counter_u64_t abdications;
53 counter_u64_t consumed;
54 counter_u64_t cons_idle;
55 counter_u64_t cons_idle2;
56 counter_u64_t stalls;
H A Dadapter.h681 counter_u64_t rx_iscsi_ddp_setup_ok;
695 counter_u64_t ddp_buffer_alloc;
696 counter_u64_t ddp_buffer_reuse;
697 counter_u64_t ddp_buffer_free;
759 counter_u64_t tx_iscsi_pdus;
760 counter_u64_t tx_iscsi_octets;
761 counter_u64_t tx_iscsi_iso_wrs;
762 counter_u64_t tx_aio_jobs;
763 counter_u64_t tx_aio_octets;
764 counter_u64_t tx_toe_tls_records;
[all …]
/freebsd/sys/kern/
H A Dsubr_counter.c44 counter_u64_zero(counter_u64_t c) in counter_u64_zero()
51 counter_u64_fetch(counter_u64_t c) in counter_u64_fetch()
57 counter_u64_t
65 counter_u64_free(counter_u64_t c) in counter_u64_free()
77 out = counter_u64_fetch(*(counter_u64_t *)arg1); in sysctl_handle_counter_u64()
87 counter_u64_zero(*(counter_u64_t *)arg1); in sysctl_handle_counter_u64()
100 out[i] = counter_u64_fetch(((counter_u64_t *)arg1)[i]); in sysctl_handle_counter_u64_array()
112 counter_u64_zero(((counter_u64_t *)arg1)[i]); in sysctl_handle_counter_u64_array()
176 counter_u64_t *cp; in counter_u64_sysinit()
185 counter_u64_t *cp; in counter_u64_sysuninit()
/freebsd/sys/dev/gve/
H A Dgve.h219 counter_u64_t rbytes;
220 counter_u64_t rpackets;
221 counter_u64_t rx_dropped_pkt;
222 counter_u64_t rx_copybreak_cnt;
223 counter_u64_t rx_frag_flip_cnt;
224 counter_u64_t rx_frag_copy_cnt;
274 counter_u64_t tbytes;
275 counter_u64_t tpackets;
276 counter_u64_t tso_packet_cnt;
277 counter_u64_t tx_dropped_pkt;
[all …]
/freebsd/sys/dev/mana/
H A Dmana.h132 counter_u64_t stop; /* tx */
133 counter_u64_t wakeup; /* tx */
138 counter_u64_t alt_chg; /* tx */
450 counter_u64_t rx_packets;
451 counter_u64_t tx_packets;
453 counter_u64_t rx_bytes;
454 counter_u64_t tx_bytes;
456 counter_u64_t rx_drops;
457 counter_u64_t tx_drops;
459 counter_u64_t stop_queue;
[all …]
/freebsd/sys/net/
H A Dmp_ring.h53 counter_u64_t enqueues;
54 counter_u64_t drops;
55 counter_u64_t starts;
56 counter_u64_t stalls;
57 counter_u64_t restarts; /* recovered after stalling */
58 counter_u64_t abdications;
H A Dbpfdesc.h77 counter_u64_t bd_rcount; /* number of packets received */
78 counter_u64_t bd_dcount; /* number of packets dropped */
96 counter_u64_t bd_fcount; /* number of packets which matched filter */
100 counter_u64_t bd_wcount; /* number of packets written */
101 counter_u64_t bd_wfcount; /* number of packets that matched write filter */
102 counter_u64_t bd_wdcount; /* number of packets dropped during a write */
103 counter_u64_t bd_zcopy; /* number of zero copy operations */
H A Dvnet.h92 VNET_DECLARE(counter_u64_t, name[sizeof(type) / sizeof(uint64_t)])
95 VNET_DEFINE(counter_u64_t, name[sizeof(type) / sizeof(uint64_t)])
97 VNET_DEFINE_STATIC(counter_u64_t, name[sizeof(type) / sizeof(uint64_t)])
101 sizeof(VNET(name)) / sizeof(counter_u64_t), (wait))
104 COUNTER_ARRAY_FREE(VNET(name), sizeof(VNET(name)) / sizeof(counter_u64_t))
137 (sizeof(VNET(array)) / sizeof(counter_u64_t))); \
/freebsd/sys/amd64/include/
H A Dcounter.h46 counter_u64_read_one(counter_u64_t c, int cpu) in counter_u64_read_one()
69 counter_u64_t c; in counter_u64_zero_one_cpu()
77 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
88 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/netgraph/netflow/
H A Dng_netflow.h443 counter_u64_t nfinfo_bytes; /* accounted IPv4 bytes */
444 counter_u64_t nfinfo_packets; /* accounted IPv4 packets */
445 counter_u64_t nfinfo_bytes6; /* accounted IPv6 bytes */
446 counter_u64_t nfinfo_packets6; /* accounted IPv6 packets */
447 counter_u64_t nfinfo_sbytes; /* skipped IPv4 bytes */
448 counter_u64_t nfinfo_spackets; /* skipped IPv4 packets */
449 counter_u64_t nfinfo_sbytes6; /* skipped IPv6 bytes */
450 counter_u64_t nfinfo_spackets6; /* skipped IPv6 packets */
451 counter_u64_t nfinfo_act_exp; /* active expiries */
452 counter_u64_t nfinfo_inact_exp; /* inactive expiries */
/freebsd/sys/powerpc/include/
H A Dcounter.h74 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
85 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
138 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
152 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/riscv/include/
H A Dcounter.h63 *(zpcpu_get((counter_u64_t *)arg)) = 0; in counter_u64_zero_one_cpu()
67 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
78 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/netinet/
H A Dtcp_reass.c127 counter_u64_t reass_entry;
131 counter_u64_t reass_path1;
135 counter_u64_t reass_path2;
139 counter_u64_t reass_path3;
143 counter_u64_t reass_path4;
147 counter_u64_t reass_path5;
151 counter_u64_t reass_path6;
155 counter_u64_t reass_path7;
163 counter_u64_t reass_nospace;
167 counter_u64_t merge_fwd;
[all …]
H A Dtcp_var.h1128 VNET_DECLARE(counter_u64_t, tcps_states[TCP_NSTATES]);
1411 extern counter_u64_t tcp_inp_lro_direct_queue;
1412 extern counter_u64_t tcp_inp_lro_wokeup_queue;
1413 extern counter_u64_t tcp_inp_lro_compressed;
1414 extern counter_u64_t tcp_inp_lro_locks_taken;
1415 extern counter_u64_t tcp_extra_mbuf;
1416 extern counter_u64_t tcp_would_have_but;
1417 extern counter_u64_t tcp_comp_total;
1418 extern counter_u64_t tcp_uncomp_total;
1419 extern counter_u64_t tcp_bad_csums;
/freebsd/sys/arm/include/
H A Dcounter.h70 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
81 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/arm64/include/
H A Dcounter.h72 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
83 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/netgraph/
H A Dng_bridge.c89 counter_u64_t recvOctets; /* total octets rec'd on link */
90 counter_u64_t recvPackets; /* total pkts rec'd on link */
91 counter_u64_t recvMulticasts; /* multicast pkts rec'd on link */
92 counter_u64_t recvBroadcasts; /* broadcast pkts rec'd on link */
93 counter_u64_t recvUnknown; /* pkts rec'd with unknown dest addr */
94 counter_u64_t recvRunts; /* pkts rec'd less than 14 bytes */
96 counter_u64_t xmitOctets; /* total octets xmit'd on link */
97 counter_u64_t xmitPackets; /* total pkts xmit'd on link */
98 counter_u64_t xmitMulticasts; /* multicast pkts xmit'd on link */
99 counter_u64_t xmitBroadcasts; /* broadcast pkts xmit'd on link */
[all …]
/freebsd/sys/i386/include/
H A Dcounter.h161 counter_u64_zero_inline(counter_u64_t c) in counter_u64_zero_inline()
186 counter_u64_add(counter_u64_t c, int64_t inc) in counter_u64_add()
/freebsd/sys/dev/safexcel/
H A Dsafexcel_var.h411 counter_u64_t sc_req_alloc_failures;
412 counter_u64_t sc_cdesc_alloc_failures;
413 counter_u64_t sc_rdesc_alloc_failures;
/freebsd/sys/vm/
H A Duma_int.h471 counter_u64_t uz_xdomain; /* Total number of cross-domain frees */
485 counter_u64_t uz_allocs; /* Total number of allocations */
486 counter_u64_t uz_frees; /* Total number of frees */
487 counter_u64_t uz_fails; /* Total number of alloc failures */
/freebsd/sys/dev/cxgbe/crypto/
H A Dt4_crypto.c173 counter_u64_t stats_queued;
174 counter_u64_t stats_completed;
197 counter_u64_t stats_hash;
198 counter_u64_t stats_hmac;
199 counter_u64_t stats_eta_encrypt;
200 counter_u64_t stats_eta_decrypt;
201 counter_u64_t stats_gcm_encrypt;
205 counter_u64_t stats_wr_nomem;
206 counter_u64_t stats_inflight;
207 counter_u64_t stats_mac_error;
[all …]

1234