| 84 | } |
| 85 | |
| 86 | static __rte_always_inline void |
| 87 | rte_write32_relaxed(uint32_t val, volatile void *addr) |
| 88 | { |
| 89 | asm volatile( |
| 90 | "str %w[val], [%x[addr]]" |
| 91 | : |
| 92 | : [val] "r" (val), [addr] "r" (addr)); |
| 93 | } |
| 94 | |
| 95 | static __rte_always_inline void |
| 96 | rte_write64_relaxed(uint64_t val, volatile void *addr) |
no outgoing calls
no test coverage detected