X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=urcu%2Farch_ppc.h;h=b0f503001eef91fc3faa85c78e938f78f8440a20;hb=f7a3d9d917966b0acb45399a66d42dd7e7acb0ca;hp=7a217c837dfb1cba0aad10ee0495e4d9adddd6e6;hpb=05dd4b94f48c1717c18e0dcee88830394a5f171c;p=urcu.git diff --git a/urcu/arch_ppc.h b/urcu/arch_ppc.h index 7a217c8..b0f5030 100644 --- a/urcu/arch_ppc.h +++ b/urcu/arch_ppc.h @@ -30,9 +30,9 @@ extern "C" { #endif /* Include size of POWER5+ L3 cache lines: 256 bytes */ -#define CACHE_LINE_SIZE 256 +#define CAA_CACHE_LINE_SIZE 256 -#define mb() asm volatile("sync":::"memory") +#define cmm_mb() asm volatile("sync":::"memory") #define mftbl() \ ({ \ @@ -50,15 +50,15 @@ extern "C" { typedef unsigned long long cycles_t; -static inline cycles_t get_cycles (void) +static inline cycles_t caa_get_cycles (void) { long h, l; for (;;) { h = mftbu(); - barrier(); + cmm_barrier(); l = mftbl(); - barrier(); + cmm_barrier(); if (mftbu() == h) return (((cycles_t) h) << 32) + l; }