eal/ppc: fix prefetch instruction
authorChao Zhu <chaozhu@linux.vnet.ibm.com>
Wed, 30 Mar 2016 15:39:17 +0000 (23:39 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 1 Apr 2016 10:44:58 +0000 (12:44 +0200)
Current prefetch instruction (dcbt) implementation for IBM POWER8 has wrong
Touch Hint(TH) parameter. The current setting of TH=1 indicates to load data from
current cache line and an unlimited number of sequentially following cache lines.
TTH=0 means to load data from current cache line. rte_prefetch0 function is defined
to load one cache line, which means TH=0 is suited here.

Signed-off-by: Chao Zhu <chaozhu@linux.vnet.ibm.com>
lib/librte_eal/common/include/arch/ppc_64/rte_prefetch.h

index bcc7185..9a1995e 100644 (file)
@@ -41,17 +41,17 @@ extern "C" {
 
 static inline void rte_prefetch0(const volatile void *p)
 {
-       asm volatile ("dcbt 0,%[p],1" : : [p] "r" (p));
+       asm volatile ("dcbt 0,%[p],0" : : [p] "r" (p));
 }
 
 static inline void rte_prefetch1(const volatile void *p)
 {
-       asm volatile ("dcbt 0,%[p],1" : : [p] "r" (p));
+       asm volatile ("dcbt 0,%[p],0" : : [p] "r" (p));
 }
 
 static inline void rte_prefetch2(const volatile void *p)
 {
-       asm volatile ("dcbt 0,%[p],1" : : [p] "r" (p));
+       asm volatile ("dcbt 0,%[p],0" : : [p] "r" (p));
 }
 
 static inline void rte_prefetch_non_temporal(const volatile void *p)