| 152 | } |
| 153 | |
| 154 | static __rte_always_inline void |
| 155 | rte_write32(uint32_t value, volatile void *addr) |
| 156 | { |
| 157 | rte_io_wmb(); |
| 158 | rte_write32_relaxed(value, addr); |
| 159 | } |
| 160 | |
| 161 | static __rte_always_inline void |
| 162 | rte_write64(uint64_t value, volatile void *addr) |
no test coverage detected