| 134 | } |
| 135 | |
| 136 | static inline void out_be32(volatile void *__p, u32 val) |
| 137 | { |
| 138 | volatile u32 *p = __p; |
| 139 | *p = rte_cpu_to_be_32(val); |
| 140 | } |
| 141 | |
| 142 | #define hwsync() rte_rmb() |
| 143 | #define lwsync() rte_wmb() |
no outgoing calls
no test coverage detected