| 91 | } |
| 92 | |
| 93 | static void |
| 94 | counter_u64_fetch_cx8_one(void *arg1) |
| 95 | { |
| 96 | struct counter_u64_fetch_cx8_arg *arg; |
| 97 | uint64_t val; |
| 98 | |
| 99 | arg = arg1; |
| 100 | val = counter_u64_read_one_8b((uint64_t *)((char *)arg->p + |
| 101 | UMA_PCPU_ALLOC_SIZE * PCPU_GET(cpuid))); |
| 102 | atomic_add_64(&arg->res, val); |
| 103 | } |
| 104 | |
| 105 | static inline uint64_t |
| 106 | counter_u64_fetch_inline(uint64_t *p) |
nothing calls this directly
no test coverage detected