| 30 | } |
| 31 | |
| 32 | static inline void rte_prefetch_non_temporal(const volatile void *p) |
| 33 | { |
| 34 | /* non-temporal version not available, fallback to rte_prefetch0 */ |
| 35 | rte_prefetch0(p); |
| 36 | } |
| 37 | |
| 38 | __rte_experimental |
| 39 | static inline void |
no test coverage detected