| 645 | } |
| 646 | |
| 647 | static __inline uint64_t |
| 648 | atomic_load_acq_64(volatile uint64_t *p) |
| 649 | { |
| 650 | uint64_t ret; |
| 651 | |
| 652 | ret = atomic_load_64(p); |
| 653 | dmb(); |
| 654 | return (ret); |
| 655 | } |
| 656 | |
| 657 | static __inline u_long |
| 658 | atomic_load_acq_long(volatile u_long *p) |
no test coverage detected