| 42 | #ifdef IN_SUBR_COUNTER_C |
| 43 | |
| 44 | static inline uint64_t |
| 45 | counter_u64_read_one(uint64_t *p, int cpu) |
| 46 | { |
| 47 | |
| 48 | return (atomic_load_64((uint64_t *)((char *)p + UMA_PCPU_ALLOC_SIZE * |
| 49 | cpu))); |
| 50 | } |
| 51 | |
| 52 | static inline uint64_t |
| 53 | counter_u64_fetch_inline(uint64_t *p) |
no test coverage detected