MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_read64_relaxed

Function rte_read64_relaxed

dpdk/lib/eal/arm/include/rte_io_64.h:56–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56static __rte_always_inline uint64_t
57rte_read64_relaxed(const volatile void *addr)
58{
59 uint64_t val;
60
61 asm volatile(
62 "ldr %x[val], [%x[addr]]"
63 : [val] "=r" (val)
64 : [addr] "r" (addr));
65 return val;
66}
67
68static __rte_always_inline void
69rte_write8_relaxed(uint8_t val, volatile void *addr)

Callers 1

rte_read64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected